@connectedxm/admin 6.9.10 → 6.9.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.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/openapi.json +33 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -431,6 +431,7 @@ interface BaseEventActivation {
|
|
|
431
431
|
type: keyof typeof EventActivationType;
|
|
432
432
|
accessLevel: keyof typeof PassTypeAccessLevel;
|
|
433
433
|
survey: BaseSurvey | null;
|
|
434
|
+
session: BaseEventSession | null;
|
|
434
435
|
}
|
|
435
436
|
interface EventActivation extends BaseEventActivation {
|
|
436
437
|
eventId: string;
|
|
@@ -2338,6 +2339,8 @@ interface EventSession extends BaseEventSession {
|
|
|
2338
2339
|
meetingId: string | null;
|
|
2339
2340
|
meeting: BaseMeeting | null;
|
|
2340
2341
|
blocks: BaseEventBlock[] | null;
|
|
2342
|
+
activationId: string | null;
|
|
2343
|
+
activation: BaseEventActivation | null;
|
|
2341
2344
|
}
|
|
2342
2345
|
interface EventSessionTranslation {
|
|
2343
2346
|
id: number;
|
|
@@ -5177,6 +5180,7 @@ interface EventSessionCreateInputs {
|
|
|
5177
5180
|
taxIncluded?: boolean;
|
|
5178
5181
|
taxLocation?: keyof typeof TaxLocationType;
|
|
5179
5182
|
meetingId?: string | null;
|
|
5183
|
+
activationId?: string | null;
|
|
5180
5184
|
}
|
|
5181
5185
|
interface EventSessionAccessUpdateInputs {
|
|
5182
5186
|
status?: PurchaseStatus;
|
|
@@ -5215,6 +5219,7 @@ interface EventSessionUpdateInputs {
|
|
|
5215
5219
|
taxIncluded?: boolean;
|
|
5216
5220
|
taxLocation?: keyof typeof TaxLocationType;
|
|
5217
5221
|
meetingId?: string | null;
|
|
5222
|
+
activationId?: string | null;
|
|
5218
5223
|
}
|
|
5219
5224
|
interface EventSessionLocationCreateInputs {
|
|
5220
5225
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -431,6 +431,7 @@ interface BaseEventActivation {
|
|
|
431
431
|
type: keyof typeof EventActivationType;
|
|
432
432
|
accessLevel: keyof typeof PassTypeAccessLevel;
|
|
433
433
|
survey: BaseSurvey | null;
|
|
434
|
+
session: BaseEventSession | null;
|
|
434
435
|
}
|
|
435
436
|
interface EventActivation extends BaseEventActivation {
|
|
436
437
|
eventId: string;
|
|
@@ -2338,6 +2339,8 @@ interface EventSession extends BaseEventSession {
|
|
|
2338
2339
|
meetingId: string | null;
|
|
2339
2340
|
meeting: BaseMeeting | null;
|
|
2340
2341
|
blocks: BaseEventBlock[] | null;
|
|
2342
|
+
activationId: string | null;
|
|
2343
|
+
activation: BaseEventActivation | null;
|
|
2341
2344
|
}
|
|
2342
2345
|
interface EventSessionTranslation {
|
|
2343
2346
|
id: number;
|
|
@@ -5177,6 +5180,7 @@ interface EventSessionCreateInputs {
|
|
|
5177
5180
|
taxIncluded?: boolean;
|
|
5178
5181
|
taxLocation?: keyof typeof TaxLocationType;
|
|
5179
5182
|
meetingId?: string | null;
|
|
5183
|
+
activationId?: string | null;
|
|
5180
5184
|
}
|
|
5181
5185
|
interface EventSessionAccessUpdateInputs {
|
|
5182
5186
|
status?: PurchaseStatus;
|
|
@@ -5215,6 +5219,7 @@ interface EventSessionUpdateInputs {
|
|
|
5215
5219
|
taxIncluded?: boolean;
|
|
5216
5220
|
taxLocation?: keyof typeof TaxLocationType;
|
|
5217
5221
|
meetingId?: string | null;
|
|
5222
|
+
activationId?: string | null;
|
|
5218
5223
|
}
|
|
5219
5224
|
interface EventSessionLocationCreateInputs {
|
|
5220
5225
|
name: string;
|
package/openapi.json
CHANGED
|
@@ -73415,6 +73415,14 @@
|
|
|
73415
73415
|
}
|
|
73416
73416
|
],
|
|
73417
73417
|
"nullable": true
|
|
73418
|
+
},
|
|
73419
|
+
"session": {
|
|
73420
|
+
"allOf": [
|
|
73421
|
+
{
|
|
73422
|
+
"$ref": "#/components/schemas/BaseEventSession"
|
|
73423
|
+
}
|
|
73424
|
+
],
|
|
73425
|
+
"nullable": true
|
|
73418
73426
|
}
|
|
73419
73427
|
},
|
|
73420
73428
|
"required": [
|
|
@@ -73427,7 +73435,8 @@
|
|
|
73427
73435
|
"startAfter",
|
|
73428
73436
|
"type",
|
|
73429
73437
|
"accessLevel",
|
|
73430
|
-
"survey"
|
|
73438
|
+
"survey",
|
|
73439
|
+
"session"
|
|
73431
73440
|
]
|
|
73432
73441
|
},
|
|
73433
73442
|
"EventActivation": {
|
|
@@ -81805,6 +81814,18 @@
|
|
|
81805
81814
|
"$ref": "#/components/schemas/BaseEventBlock"
|
|
81806
81815
|
},
|
|
81807
81816
|
"nullable": true
|
|
81817
|
+
},
|
|
81818
|
+
"activationId": {
|
|
81819
|
+
"type": "string",
|
|
81820
|
+
"nullable": true
|
|
81821
|
+
},
|
|
81822
|
+
"activation": {
|
|
81823
|
+
"allOf": [
|
|
81824
|
+
{
|
|
81825
|
+
"$ref": "#/components/schemas/BaseEventActivation"
|
|
81826
|
+
}
|
|
81827
|
+
],
|
|
81828
|
+
"nullable": true
|
|
81808
81829
|
}
|
|
81809
81830
|
},
|
|
81810
81831
|
"required": [
|
|
@@ -81816,7 +81837,9 @@
|
|
|
81816
81837
|
"speakers",
|
|
81817
81838
|
"meetingId",
|
|
81818
81839
|
"meeting",
|
|
81819
|
-
"blocks"
|
|
81840
|
+
"blocks",
|
|
81841
|
+
"activationId",
|
|
81842
|
+
"activation"
|
|
81820
81843
|
]
|
|
81821
81844
|
}
|
|
81822
81845
|
]
|
|
@@ -93735,6 +93758,10 @@
|
|
|
93735
93758
|
"meetingId": {
|
|
93736
93759
|
"type": "string",
|
|
93737
93760
|
"nullable": true
|
|
93761
|
+
},
|
|
93762
|
+
"activationId": {
|
|
93763
|
+
"type": "string",
|
|
93764
|
+
"nullable": true
|
|
93738
93765
|
}
|
|
93739
93766
|
},
|
|
93740
93767
|
"required": [
|
|
@@ -93891,6 +93918,10 @@
|
|
|
93891
93918
|
"meetingId": {
|
|
93892
93919
|
"type": "string",
|
|
93893
93920
|
"nullable": true
|
|
93921
|
+
},
|
|
93922
|
+
"activationId": {
|
|
93923
|
+
"type": "string",
|
|
93924
|
+
"nullable": true
|
|
93894
93925
|
}
|
|
93895
93926
|
}
|
|
93896
93927
|
},
|