@nimee/shared-types 1.0.295 → 1.0.297
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -75,7 +75,7 @@ export interface IBankDetails {
|
|
|
75
75
|
iban: string;
|
|
76
76
|
}
|
|
77
77
|
export type IWalletLayoutFieldKey = "event" | "date" | "attendee" | "ticket_type" | "seat" | "order_number";
|
|
78
|
-
export type IWalletLayoutRow = "header" | "secondary" | "auxiliary" | "back" | "hidden";
|
|
78
|
+
export type IWalletLayoutRow = "header" | "primary" | "secondary" | "auxiliary" | "back" | "hidden";
|
|
79
79
|
export interface IWalletLayoutField {
|
|
80
80
|
key: IWalletLayoutFieldKey;
|
|
81
81
|
row: IWalletLayoutRow;
|
|
@@ -88,7 +88,7 @@ export interface IWalletDesign {
|
|
|
88
88
|
backgroundColor?: string;
|
|
89
89
|
foregroundColor?: string;
|
|
90
90
|
labelColor?: string;
|
|
91
|
-
|
|
91
|
+
walletMarketplaceName?: string;
|
|
92
92
|
layout?: {
|
|
93
93
|
fields: IWalletLayoutField[];
|
|
94
94
|
};
|
|
@@ -61,6 +61,9 @@ export interface IEventOrderModel {
|
|
|
61
61
|
createdByUserId?: string;
|
|
62
62
|
createdByUserName?: string;
|
|
63
63
|
installments?: number;
|
|
64
|
+
clientName?: string;
|
|
65
|
+
clientEmail?: string;
|
|
66
|
+
clientBusinessCode?: string;
|
|
64
67
|
}
|
|
65
68
|
export interface IBasketEventOrder extends IEventOrderModel {
|
|
66
69
|
basketTicketsSummary?: Array<{
|
package/package.json
CHANGED
package/src/account/account.ts
CHANGED
|
@@ -79,7 +79,7 @@ export interface IBankDetails {
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
export type IWalletLayoutFieldKey = "event" | "date" | "attendee" | "ticket_type" | "seat" | "order_number";
|
|
82
|
-
export type IWalletLayoutRow = "header" | "secondary" | "auxiliary" | "back" | "hidden";
|
|
82
|
+
export type IWalletLayoutRow = "header" | "primary" | "secondary" | "auxiliary" | "back" | "hidden";
|
|
83
83
|
|
|
84
84
|
export interface IWalletLayoutField {
|
|
85
85
|
key: IWalletLayoutFieldKey;
|
|
@@ -94,7 +94,7 @@ export interface IWalletDesign {
|
|
|
94
94
|
backgroundColor?: string; // Hex e.g. "#3c4150" — applied to both Apple and Google
|
|
95
95
|
foregroundColor?: string; // Hex — text color, Apple Wallet only
|
|
96
96
|
labelColor?: string; // Hex — label/field title color, Apple Wallet only
|
|
97
|
-
|
|
97
|
+
walletMarketplaceName?: string; // Custom marketplace name shown on subscription wallet passes (falls back to marketplace.name)
|
|
98
98
|
layout?: {
|
|
99
99
|
fields: IWalletLayoutField[];
|
|
100
100
|
};
|
|
@@ -60,6 +60,9 @@ export interface IEventOrderModel {
|
|
|
60
60
|
createdByUserId?: string;
|
|
61
61
|
createdByUserName?: string;
|
|
62
62
|
installments?: number;
|
|
63
|
+
clientName?: string;
|
|
64
|
+
clientEmail?: string;
|
|
65
|
+
clientBusinessCode?: string;
|
|
63
66
|
}
|
|
64
67
|
|
|
65
68
|
export interface IBasketEventOrder extends IEventOrderModel {
|