@connectedxm/client 7.5.8 → 7.6.0
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 +4 -0
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -450,6 +450,7 @@ interface Event extends BaseEvent {
|
|
|
450
450
|
}
|
|
451
451
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
452
452
|
interface RegistrationEventDetails extends BaseEvent {
|
|
453
|
+
externalMeetingUrl: string | null;
|
|
453
454
|
reservationDescription: string | null;
|
|
454
455
|
externalUrl: string | null;
|
|
455
456
|
registration: boolean;
|
|
@@ -582,6 +583,7 @@ interface RegistrationFollowup extends BaseRegistrationFollowup {
|
|
|
582
583
|
}
|
|
583
584
|
interface EventListing extends Event {
|
|
584
585
|
visible: boolean;
|
|
586
|
+
externalMeetingUrl: string | null;
|
|
585
587
|
newActivityCreatorEmailNotification: boolean;
|
|
586
588
|
newActivityCreatorPushNotification: boolean;
|
|
587
589
|
registrationLimit: number;
|
|
@@ -3739,6 +3741,7 @@ interface CreateListingInput {
|
|
|
3739
3741
|
zip?: string;
|
|
3740
3742
|
country?: string;
|
|
3741
3743
|
externalUrl?: string;
|
|
3744
|
+
externalMeetingUrl?: string;
|
|
3742
3745
|
registration?: boolean;
|
|
3743
3746
|
registrationLimit?: number | null;
|
|
3744
3747
|
groupOnly?: boolean;
|
|
@@ -3841,6 +3844,7 @@ interface UpdateListingValues {
|
|
|
3841
3844
|
zip?: string | null;
|
|
3842
3845
|
country?: string | null;
|
|
3843
3846
|
externalUrl?: string | null;
|
|
3847
|
+
externalMeetingUrl?: string | null;
|
|
3844
3848
|
registration?: boolean;
|
|
3845
3849
|
publicRegistrants?: boolean;
|
|
3846
3850
|
registrationLimit?: number | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectedxm/client",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.6.0",
|
|
4
4
|
"description": "Client API javascript SDK",
|
|
5
5
|
"author": "ConnectedXM Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"upgrade": "ncu -i --format group"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"axios": "^1.13.
|
|
27
|
-
"immer": "^
|
|
26
|
+
"axios": "^1.13.6",
|
|
27
|
+
"immer": "^11.1.4"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@tanstack/react-query": "^5.0.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@swc/core": "^1.15.
|
|
51
|
-
"@tanstack/react-query": "^5.90.
|
|
52
|
-
"@types/react": "^19.2.
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
54
|
-
"@typescript-eslint/parser": "^8.
|
|
50
|
+
"@swc/core": "^1.15.18",
|
|
51
|
+
"@tanstack/react-query": "^5.90.21",
|
|
52
|
+
"@types/react": "^19.2.14",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^8.57.0",
|
|
54
|
+
"@typescript-eslint/parser": "^8.57.0",
|
|
55
55
|
"eslint": "^9.39.2",
|
|
56
56
|
"eslint-plugin-react": "^7.37.5",
|
|
57
57
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"react-use-websocket": "^4.13.0",
|
|
60
60
|
"tsup": "^8.5.1",
|
|
61
61
|
"typescript": "^5.9.3",
|
|
62
|
-
"vitest": "^
|
|
62
|
+
"vitest": "^4.1.0"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|
|
65
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
65
|
+
"@rollup/rollup-linux-x64-gnu": "4.59.0"
|
|
66
66
|
}
|
|
67
67
|
}
|