@connectedxm/admin 6.9.9 → 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 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;
@@ -2555,6 +2558,7 @@ interface BaseEventBlock {
2555
2558
  description: string | null;
2556
2559
  limit: number;
2557
2560
  grouped: boolean;
2561
+ collapsed: boolean;
2558
2562
  }
2559
2563
  interface EventBlock extends BaseEventBlock {
2560
2564
  event: BaseEvent;
@@ -5176,6 +5180,7 @@ interface EventSessionCreateInputs {
5176
5180
  taxIncluded?: boolean;
5177
5181
  taxLocation?: keyof typeof TaxLocationType;
5178
5182
  meetingId?: string | null;
5183
+ activationId?: string | null;
5179
5184
  }
5180
5185
  interface EventSessionAccessUpdateInputs {
5181
5186
  status?: PurchaseStatus;
@@ -5214,6 +5219,7 @@ interface EventSessionUpdateInputs {
5214
5219
  taxIncluded?: boolean;
5215
5220
  taxLocation?: keyof typeof TaxLocationType;
5216
5221
  meetingId?: string | null;
5222
+ activationId?: string | null;
5217
5223
  }
5218
5224
  interface EventSessionLocationCreateInputs {
5219
5225
  name: string;
@@ -5336,12 +5342,14 @@ interface EventBlockCreateInputs {
5336
5342
  description?: string;
5337
5343
  limit?: number;
5338
5344
  grouped?: boolean;
5345
+ collapsed?: boolean;
5339
5346
  }
5340
5347
  interface EventBlockUpdateInputs {
5341
5348
  name?: string;
5342
5349
  description?: string | null;
5343
5350
  limit?: number;
5344
5351
  grouped?: boolean;
5352
+ collapsed?: boolean;
5345
5353
  }
5346
5354
  interface EventSpeakerCreateInputs {
5347
5355
  firstName: 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;
@@ -2555,6 +2558,7 @@ interface BaseEventBlock {
2555
2558
  description: string | null;
2556
2559
  limit: number;
2557
2560
  grouped: boolean;
2561
+ collapsed: boolean;
2558
2562
  }
2559
2563
  interface EventBlock extends BaseEventBlock {
2560
2564
  event: BaseEvent;
@@ -5176,6 +5180,7 @@ interface EventSessionCreateInputs {
5176
5180
  taxIncluded?: boolean;
5177
5181
  taxLocation?: keyof typeof TaxLocationType;
5178
5182
  meetingId?: string | null;
5183
+ activationId?: string | null;
5179
5184
  }
5180
5185
  interface EventSessionAccessUpdateInputs {
5181
5186
  status?: PurchaseStatus;
@@ -5214,6 +5219,7 @@ interface EventSessionUpdateInputs {
5214
5219
  taxIncluded?: boolean;
5215
5220
  taxLocation?: keyof typeof TaxLocationType;
5216
5221
  meetingId?: string | null;
5222
+ activationId?: string | null;
5217
5223
  }
5218
5224
  interface EventSessionLocationCreateInputs {
5219
5225
  name: string;
@@ -5336,12 +5342,14 @@ interface EventBlockCreateInputs {
5336
5342
  description?: string;
5337
5343
  limit?: number;
5338
5344
  grouped?: boolean;
5345
+ collapsed?: boolean;
5339
5346
  }
5340
5347
  interface EventBlockUpdateInputs {
5341
5348
  name?: string;
5342
5349
  description?: string | null;
5343
5350
  limit?: number;
5344
5351
  grouped?: boolean;
5352
+ collapsed?: boolean;
5345
5353
  }
5346
5354
  interface EventSpeakerCreateInputs {
5347
5355
  firstName: 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
  ]
@@ -82773,6 +82796,9 @@
82773
82796
  },
82774
82797
  "grouped": {
82775
82798
  "type": "boolean"
82799
+ },
82800
+ "collapsed": {
82801
+ "type": "boolean"
82776
82802
  }
82777
82803
  },
82778
82804
  "required": [
@@ -82780,7 +82806,8 @@
82780
82806
  "name",
82781
82807
  "description",
82782
82808
  "limit",
82783
- "grouped"
82809
+ "grouped",
82810
+ "collapsed"
82784
82811
  ]
82785
82812
  },
82786
82813
  "EventBlock": {
@@ -93731,6 +93758,10 @@
93731
93758
  "meetingId": {
93732
93759
  "type": "string",
93733
93760
  "nullable": true
93761
+ },
93762
+ "activationId": {
93763
+ "type": "string",
93764
+ "nullable": true
93734
93765
  }
93735
93766
  },
93736
93767
  "required": [
@@ -93887,6 +93918,10 @@
93887
93918
  "meetingId": {
93888
93919
  "type": "string",
93889
93920
  "nullable": true
93921
+ },
93922
+ "activationId": {
93923
+ "type": "string",
93924
+ "nullable": true
93890
93925
  }
93891
93926
  }
93892
93927
  },
@@ -94444,6 +94479,9 @@
94444
94479
  },
94445
94480
  "grouped": {
94446
94481
  "type": "boolean"
94482
+ },
94483
+ "collapsed": {
94484
+ "type": "boolean"
94447
94485
  }
94448
94486
  },
94449
94487
  "required": [
@@ -94465,6 +94503,9 @@
94465
94503
  },
94466
94504
  "grouped": {
94467
94505
  "type": "boolean"
94506
+ },
94507
+ "collapsed": {
94508
+ "type": "boolean"
94468
94509
  }
94469
94510
  }
94470
94511
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.9.9",
3
+ "version": "6.9.11",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",