@connectedxm/client 7.0.9 → 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 +17 -14
- package/package.json +2 -2
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
|
}[];
|
|
@@ -1607,6 +1608,7 @@ interface BaseInvoice {
|
|
|
1607
1608
|
sentDate: string | null;
|
|
1608
1609
|
dueDate: string;
|
|
1609
1610
|
status: InvoiceStatus;
|
|
1611
|
+
paymentIntegration: BasePaymentIntegration | null;
|
|
1610
1612
|
}
|
|
1611
1613
|
interface Invoice extends BaseInvoice {
|
|
1612
1614
|
lineItems: BaseInvoiceLineItem[];
|
|
@@ -2100,6 +2102,7 @@ interface BaseBookingPlace {
|
|
|
2100
2102
|
timezone: string;
|
|
2101
2103
|
description: string | null;
|
|
2102
2104
|
image: BaseImage | null;
|
|
2105
|
+
paymentIntegration: BasePaymentIntegration | null;
|
|
2103
2106
|
}
|
|
2104
2107
|
interface BookingPlace extends BaseBookingPlace {
|
|
2105
2108
|
address1: string | null;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectedxm/client",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.11",
|
|
4
4
|
"description": "Client API javascript SDK",
|
|
5
5
|
"author": "ConnectedXM Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/connectedxm/client-sdk.git"
|
|
9
|
+
"url": "git+https://github.com/connectedxm/client-sdk.git"
|
|
10
10
|
},
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"private": false,
|