mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 22:25:24 +00:00
Added comments to specify how poster event ticket Live Activity is activated
This commit is contained in:
@@ -135,7 +135,16 @@ export interface PassProps {
|
|||||||
stripColor?: string;
|
stripColor?: string;
|
||||||
|
|
||||||
nfc?: NFC;
|
nfc?: NFC;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSChange 18
|
||||||
|
* Use this to also trigger Live Activities
|
||||||
|
* in poster event ticket passes. At least one
|
||||||
|
* of "relevantDates", "location" and "beacons"
|
||||||
|
* must be available to trigger Live Activities.
|
||||||
|
*/
|
||||||
beacons?: Beacon[];
|
beacons?: Beacon[];
|
||||||
|
|
||||||
barcodes?: Barcode[];
|
barcodes?: Barcode[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -144,9 +153,24 @@ export interface PassProps {
|
|||||||
*/
|
*/
|
||||||
relevantDate?: string;
|
relevantDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSVersion 18
|
||||||
|
* Use this to also trigger Live Activities
|
||||||
|
* in poster event ticket passes. At least one
|
||||||
|
* of "relevantDates", "location" and "beacons"
|
||||||
|
* must be available to trigger Live Activities.
|
||||||
|
*/
|
||||||
relevantDates?: RelevantDate[];
|
relevantDates?: RelevantDate[];
|
||||||
|
|
||||||
expirationDate?: string;
|
expirationDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @iOSChange 18
|
||||||
|
* Use this to also trigger Live Activities
|
||||||
|
* in poster event ticket passes. At least one
|
||||||
|
* of "relevantDates", "location" and "beacons"
|
||||||
|
* must be available to trigger Live Activities.
|
||||||
|
*/
|
||||||
locations?: Location[];
|
locations?: Location[];
|
||||||
|
|
||||||
boardingPass?: PassFields & { transitType: TransitType };
|
boardingPass?: PassFields & { transitType: TransitType };
|
||||||
|
|||||||
Reference in New Issue
Block a user