@connectedxm/admin 7.2.4 → 7.2.6

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
@@ -2456,6 +2456,7 @@ interface BaseEventSession {
2456
2456
  tracks: BaseEventTrack[];
2457
2457
  nonSession: boolean;
2458
2458
  visibility: EventSessionVisibility;
2459
+ featured: boolean;
2459
2460
  location: BaseEventSessionLocation | null;
2460
2461
  registrationEnabled: boolean;
2461
2462
  price: number | null;
@@ -2638,8 +2639,6 @@ interface BaseEventSessionQuestion {
2638
2639
  sortOrder: number;
2639
2640
  featured: boolean;
2640
2641
  choices: BaseEventSessionQuestionChoice[];
2641
- price: number | null;
2642
- supply: number | null;
2643
2642
  }
2644
2643
  interface EventSessionQuestion extends BaseEventSessionQuestion {
2645
2644
  sections: BaseEventSessionSectionQuestion[];
@@ -5522,6 +5521,7 @@ interface EventSessionCreateInputs {
5522
5521
  nonSession?: boolean;
5523
5522
  imageId?: string | null;
5524
5523
  visibility?: keyof typeof EventSessionVisibility;
5524
+ featured?: boolean;
5525
5525
  sortOrder?: number | string | null;
5526
5526
  registrationEnabled?: boolean;
5527
5527
  onsiteRegistration?: boolean;
@@ -5565,6 +5565,7 @@ interface EventSessionUpdateInputs {
5565
5565
  nonSession?: boolean;
5566
5566
  imageId?: string | null;
5567
5567
  visibility?: keyof typeof EventSessionVisibility;
5568
+ featured?: boolean;
5568
5569
  sortOrder?: number | string | null;
5569
5570
  registrationEnabled?: boolean;
5570
5571
  onsiteRegistration?: boolean;
@@ -5651,8 +5652,6 @@ interface EventSessionQuestionCreateInputs {
5651
5652
  sortOrder?: number | string | null;
5652
5653
  featured?: boolean;
5653
5654
  choices?: string[] | null;
5654
- price?: number | string | null;
5655
- supply?: number | string | null;
5656
5655
  searchListId?: string | null;
5657
5656
  masked?: boolean;
5658
5657
  }
@@ -5680,8 +5679,6 @@ interface EventSessionQuestionUpdateInputs {
5680
5679
  locationOption?: LocationQuestionOption | null;
5681
5680
  sortOrder?: number | string | null;
5682
5681
  featured?: boolean;
5683
- price?: number | string | null;
5684
- supply?: number | string | null;
5685
5682
  searchListId?: string | null;
5686
5683
  }
5687
5684
  interface EventSessionSectionCreateInputs {
package/dist/index.d.ts CHANGED
@@ -2456,6 +2456,7 @@ interface BaseEventSession {
2456
2456
  tracks: BaseEventTrack[];
2457
2457
  nonSession: boolean;
2458
2458
  visibility: EventSessionVisibility;
2459
+ featured: boolean;
2459
2460
  location: BaseEventSessionLocation | null;
2460
2461
  registrationEnabled: boolean;
2461
2462
  price: number | null;
@@ -2638,8 +2639,6 @@ interface BaseEventSessionQuestion {
2638
2639
  sortOrder: number;
2639
2640
  featured: boolean;
2640
2641
  choices: BaseEventSessionQuestionChoice[];
2641
- price: number | null;
2642
- supply: number | null;
2643
2642
  }
2644
2643
  interface EventSessionQuestion extends BaseEventSessionQuestion {
2645
2644
  sections: BaseEventSessionSectionQuestion[];
@@ -5522,6 +5521,7 @@ interface EventSessionCreateInputs {
5522
5521
  nonSession?: boolean;
5523
5522
  imageId?: string | null;
5524
5523
  visibility?: keyof typeof EventSessionVisibility;
5524
+ featured?: boolean;
5525
5525
  sortOrder?: number | string | null;
5526
5526
  registrationEnabled?: boolean;
5527
5527
  onsiteRegistration?: boolean;
@@ -5565,6 +5565,7 @@ interface EventSessionUpdateInputs {
5565
5565
  nonSession?: boolean;
5566
5566
  imageId?: string | null;
5567
5567
  visibility?: keyof typeof EventSessionVisibility;
5568
+ featured?: boolean;
5568
5569
  sortOrder?: number | string | null;
5569
5570
  registrationEnabled?: boolean;
5570
5571
  onsiteRegistration?: boolean;
@@ -5651,8 +5652,6 @@ interface EventSessionQuestionCreateInputs {
5651
5652
  sortOrder?: number | string | null;
5652
5653
  featured?: boolean;
5653
5654
  choices?: string[] | null;
5654
- price?: number | string | null;
5655
- supply?: number | string | null;
5656
5655
  searchListId?: string | null;
5657
5656
  masked?: boolean;
5658
5657
  }
@@ -5680,8 +5679,6 @@ interface EventSessionQuestionUpdateInputs {
5680
5679
  locationOption?: LocationQuestionOption | null;
5681
5680
  sortOrder?: number | string | null;
5682
5681
  featured?: boolean;
5683
- price?: number | string | null;
5684
- supply?: number | string | null;
5685
5682
  searchListId?: string | null;
5686
5683
  }
5687
5684
  interface EventSessionSectionCreateInputs {
package/openapi.json CHANGED
@@ -103022,6 +103022,9 @@
103022
103022
  "visibility": {
103023
103023
  "$ref": "#/components/schemas/EventSessionVisibility"
103024
103024
  },
103025
+ "featured": {
103026
+ "type": "boolean"
103027
+ },
103025
103028
  "location": {
103026
103029
  "allOf": [
103027
103030
  {
@@ -103079,6 +103082,7 @@
103079
103082
  "tracks",
103080
103083
  "nonSession",
103081
103084
  "visibility",
103085
+ "featured",
103082
103086
  "location",
103083
103087
  "registrationEnabled",
103084
103088
  "price",
@@ -103851,14 +103855,6 @@
103851
103855
  "items": {
103852
103856
  "$ref": "#/components/schemas/BaseEventSessionQuestionChoice"
103853
103857
  }
103854
- },
103855
- "price": {
103856
- "type": "number",
103857
- "nullable": true
103858
- },
103859
- "supply": {
103860
- "type": "number",
103861
- "nullable": true
103862
103858
  }
103863
103859
  },
103864
103860
  "required": [
@@ -103882,9 +103878,7 @@
103882
103878
  "locationOption",
103883
103879
  "sortOrder",
103884
103880
  "featured",
103885
- "choices",
103886
- "price",
103887
- "supply"
103881
+ "choices"
103888
103882
  ]
103889
103883
  },
103890
103884
  "EventSessionQuestion": {
@@ -115994,6 +115988,9 @@
115994
115988
  "visibility": {
115995
115989
  "$ref": "#/components/schemas/EventSessionVisibility"
115996
115990
  },
115991
+ "featured": {
115992
+ "type": "boolean"
115993
+ },
115997
115994
  "sortOrder": {
115998
115995
  "oneOf": [
115999
115996
  {
@@ -116172,6 +116169,9 @@
116172
116169
  "visibility": {
116173
116170
  "$ref": "#/components/schemas/EventSessionVisibility"
116174
116171
  },
116172
+ "featured": {
116173
+ "type": "boolean"
116174
+ },
116175
116175
  "sortOrder": {
116176
116176
  "oneOf": [
116177
116177
  {
@@ -116561,28 +116561,6 @@
116561
116561
  },
116562
116562
  "nullable": true
116563
116563
  },
116564
- "price": {
116565
- "oneOf": [
116566
- {
116567
- "type": "number"
116568
- },
116569
- {
116570
- "type": "string"
116571
- }
116572
- ],
116573
- "nullable": true
116574
- },
116575
- "supply": {
116576
- "oneOf": [
116577
- {
116578
- "type": "number"
116579
- },
116580
- {
116581
- "type": "string"
116582
- }
116583
- ],
116584
- "nullable": true
116585
- },
116586
116564
  "searchListId": {
116587
116565
  "type": "string",
116588
116566
  "nullable": true
@@ -116705,28 +116683,6 @@
116705
116683
  "featured": {
116706
116684
  "type": "boolean"
116707
116685
  },
116708
- "price": {
116709
- "oneOf": [
116710
- {
116711
- "type": "number"
116712
- },
116713
- {
116714
- "type": "string"
116715
- }
116716
- ],
116717
- "nullable": true
116718
- },
116719
- "supply": {
116720
- "oneOf": [
116721
- {
116722
- "type": "number"
116723
- },
116724
- {
116725
- "type": "string"
116726
- }
116727
- ],
116728
- "nullable": true
116729
- },
116730
116686
  "searchListId": {
116731
116687
  "type": "string",
116732
116688
  "nullable": true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "7.2.4",
3
+ "version": "7.2.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",