@connectedxm/client 7.0.10 → 7.0.11
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 +15 -14
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -345,20 +345,6 @@ interface Group extends BaseGroup {
|
|
|
345
345
|
};
|
|
346
346
|
}
|
|
347
347
|
declare const isTypeGroup: (group: BaseGroup | Group) => group is Group;
|
|
348
|
-
interface BaseEvent {
|
|
349
|
-
id: string;
|
|
350
|
-
slug: string;
|
|
351
|
-
name: string;
|
|
352
|
-
shortDescription: string;
|
|
353
|
-
featured: boolean;
|
|
354
|
-
timezone: string | null;
|
|
355
|
-
eventStart: string;
|
|
356
|
-
eventEnd: string;
|
|
357
|
-
image: BaseImage | null;
|
|
358
|
-
squareImage: BaseImage | null;
|
|
359
|
-
series: BaseSeries | null;
|
|
360
|
-
paymentIntegration: BasePaymentIntegration | null;
|
|
361
|
-
}
|
|
362
348
|
interface BasePaymentIntegration {
|
|
363
349
|
id: number;
|
|
364
350
|
currencyCode: string;
|
|
@@ -373,6 +359,19 @@ declare enum EventType {
|
|
|
373
359
|
virtual = "virtual",
|
|
374
360
|
hybrid = "hybrid"
|
|
375
361
|
}
|
|
362
|
+
interface BaseEvent {
|
|
363
|
+
id: string;
|
|
364
|
+
slug: string;
|
|
365
|
+
name: string;
|
|
366
|
+
shortDescription: string;
|
|
367
|
+
featured: boolean;
|
|
368
|
+
timezone: string | null;
|
|
369
|
+
eventStart: string;
|
|
370
|
+
eventEnd: string;
|
|
371
|
+
image: BaseImage | null;
|
|
372
|
+
squareImage: BaseImage | null;
|
|
373
|
+
series: BaseSeries | null;
|
|
374
|
+
}
|
|
376
375
|
interface Event extends BaseEvent {
|
|
377
376
|
eventType: EventType;
|
|
378
377
|
longDescription: string | null;
|
|
@@ -418,6 +417,7 @@ interface Event extends BaseEvent {
|
|
|
418
417
|
options: Record<string, any> | null;
|
|
419
418
|
meeting: BaseMeeting | null;
|
|
420
419
|
streams: BaseStreamInput[];
|
|
420
|
+
paymentIntegration: BasePaymentIntegration | null;
|
|
421
421
|
_count: {
|
|
422
422
|
activations: number;
|
|
423
423
|
sessions: number;
|
|
@@ -441,6 +441,7 @@ interface RegistrationEventDetails extends BaseEvent {
|
|
|
441
441
|
splitPaymentPercentage: number;
|
|
442
442
|
splitPaymentNetDays: number | null;
|
|
443
443
|
splitPaymentDueDate: string | null;
|
|
444
|
+
paymentIntegration: BasePaymentIntegration | null;
|
|
444
445
|
tickets: {
|
|
445
446
|
enableCoupons: boolean;
|
|
446
447
|
}[];
|