@connectedxm/client 5.0.2 → 5.0.4
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.
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -368,6 +368,11 @@ interface RegistrationEventDetails extends BaseEvent {
|
|
|
368
368
|
registrationLimit: number;
|
|
369
369
|
registrationStart: string;
|
|
370
370
|
registrationEnd: string;
|
|
371
|
+
allowMultipleRegistrations: boolean;
|
|
372
|
+
allowSplitPayment: boolean;
|
|
373
|
+
splitPaymentPercentage: number;
|
|
374
|
+
splitPaymentNetDays: number | null;
|
|
375
|
+
splitPaymentDueDate: string | null;
|
|
371
376
|
tickets: {
|
|
372
377
|
enableCoupons: boolean;
|
|
373
378
|
}[];
|
|
@@ -1238,6 +1243,8 @@ interface BasePayment {
|
|
|
1238
1243
|
createdAt: string;
|
|
1239
1244
|
}
|
|
1240
1245
|
interface Payment extends BasePayment {
|
|
1246
|
+
refunds: BasePayment[];
|
|
1247
|
+
refunded: BasePayment | null;
|
|
1241
1248
|
addOns: BaseEventAddOn[];
|
|
1242
1249
|
purchases: BasePass[];
|
|
1243
1250
|
coupons: BaseCoupon[];
|