@connectedxm/admin 6.9.9 → 6.9.10

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
@@ -2555,6 +2555,7 @@ interface BaseEventBlock {
2555
2555
  description: string | null;
2556
2556
  limit: number;
2557
2557
  grouped: boolean;
2558
+ collapsed: boolean;
2558
2559
  }
2559
2560
  interface EventBlock extends BaseEventBlock {
2560
2561
  event: BaseEvent;
@@ -5336,12 +5337,14 @@ interface EventBlockCreateInputs {
5336
5337
  description?: string;
5337
5338
  limit?: number;
5338
5339
  grouped?: boolean;
5340
+ collapsed?: boolean;
5339
5341
  }
5340
5342
  interface EventBlockUpdateInputs {
5341
5343
  name?: string;
5342
5344
  description?: string | null;
5343
5345
  limit?: number;
5344
5346
  grouped?: boolean;
5347
+ collapsed?: boolean;
5345
5348
  }
5346
5349
  interface EventSpeakerCreateInputs {
5347
5350
  firstName: string;
package/dist/index.d.ts CHANGED
@@ -2555,6 +2555,7 @@ interface BaseEventBlock {
2555
2555
  description: string | null;
2556
2556
  limit: number;
2557
2557
  grouped: boolean;
2558
+ collapsed: boolean;
2558
2559
  }
2559
2560
  interface EventBlock extends BaseEventBlock {
2560
2561
  event: BaseEvent;
@@ -5336,12 +5337,14 @@ interface EventBlockCreateInputs {
5336
5337
  description?: string;
5337
5338
  limit?: number;
5338
5339
  grouped?: boolean;
5340
+ collapsed?: boolean;
5339
5341
  }
5340
5342
  interface EventBlockUpdateInputs {
5341
5343
  name?: string;
5342
5344
  description?: string | null;
5343
5345
  limit?: number;
5344
5346
  grouped?: boolean;
5347
+ collapsed?: boolean;
5345
5348
  }
5346
5349
  interface EventSpeakerCreateInputs {
5347
5350
  firstName: string;
package/openapi.json CHANGED
@@ -82773,6 +82773,9 @@
82773
82773
  },
82774
82774
  "grouped": {
82775
82775
  "type": "boolean"
82776
+ },
82777
+ "collapsed": {
82778
+ "type": "boolean"
82776
82779
  }
82777
82780
  },
82778
82781
  "required": [
@@ -82780,7 +82783,8 @@
82780
82783
  "name",
82781
82784
  "description",
82782
82785
  "limit",
82783
- "grouped"
82786
+ "grouped",
82787
+ "collapsed"
82784
82788
  ]
82785
82789
  },
82786
82790
  "EventBlock": {
@@ -94444,6 +94448,9 @@
94444
94448
  },
94445
94449
  "grouped": {
94446
94450
  "type": "boolean"
94451
+ },
94452
+ "collapsed": {
94453
+ "type": "boolean"
94447
94454
  }
94448
94455
  },
94449
94456
  "required": [
@@ -94465,6 +94472,9 @@
94465
94472
  },
94466
94473
  "grouped": {
94467
94474
  "type": "boolean"
94475
+ },
94476
+ "collapsed": {
94477
+ "type": "boolean"
94468
94478
  }
94469
94479
  }
94470
94480
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.9.9",
3
+ "version": "6.9.10",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",