mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 16:25:21 +00:00
Renamed Schem< Personalization file to Personalize
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
import Joi from "joi";
|
import Joi from "joi";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see https://developer.apple.com/documentation/walletpasses/personalize
|
||||||
|
* @TODO Rename "Personalization" in "Personalize". This will be done in v3.0
|
||||||
|
*/
|
||||||
|
|
||||||
export interface Personalization {
|
export interface Personalization {
|
||||||
description: string;
|
description: string;
|
||||||
requiredPersonalizationFields: RequiredPersonalizationFields[];
|
requiredPersonalizationFields: RequiredPersonalizationFields[];
|
||||||
@@ -5,7 +5,7 @@ export * from "./PassFieldContent";
|
|||||||
export * from "./NFC";
|
export * from "./NFC";
|
||||||
export * from "./SemanticTags";
|
export * from "./SemanticTags";
|
||||||
export * from "./PassFields";
|
export * from "./PassFields";
|
||||||
export * from "./personalization";
|
export * from "./Personalize";
|
||||||
|
|
||||||
import Joi from "joi";
|
import Joi from "joi";
|
||||||
import debug from "debug";
|
import debug from "debug";
|
||||||
@@ -16,7 +16,7 @@ import { Beacon } from "./Beacons";
|
|||||||
import { NFC } from "./NFC";
|
import { NFC } from "./NFC";
|
||||||
import { Field } from "./PassFieldContent";
|
import { Field } from "./PassFieldContent";
|
||||||
import { PassFields, TransitType } from "./PassFields";
|
import { PassFields, TransitType } from "./PassFields";
|
||||||
import { Personalization } from "./personalization";
|
import { Personalization } from "./Personalize";
|
||||||
import { Semantics } from "./SemanticTags";
|
import { Semantics } from "./SemanticTags";
|
||||||
|
|
||||||
const schemaDebug = debug("Schema");
|
const schemaDebug = debug("Schema");
|
||||||
|
|||||||
Reference in New Issue
Block a user