@connectedxm/admin 7.2.5 → 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;
@@ -5520,6 +5521,7 @@ interface EventSessionCreateInputs {
5520
5521
  nonSession?: boolean;
5521
5522
  imageId?: string | null;
5522
5523
  visibility?: keyof typeof EventSessionVisibility;
5524
+ featured?: boolean;
5523
5525
  sortOrder?: number | string | null;
5524
5526
  registrationEnabled?: boolean;
5525
5527
  onsiteRegistration?: boolean;
@@ -5563,6 +5565,7 @@ interface EventSessionUpdateInputs {
5563
5565
  nonSession?: boolean;
5564
5566
  imageId?: string | null;
5565
5567
  visibility?: keyof typeof EventSessionVisibility;
5568
+ featured?: boolean;
5566
5569
  sortOrder?: number | string | null;
5567
5570
  registrationEnabled?: boolean;
5568
5571
  onsiteRegistration?: boolean;
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;
@@ -5520,6 +5521,7 @@ interface EventSessionCreateInputs {
5520
5521
  nonSession?: boolean;
5521
5522
  imageId?: string | null;
5522
5523
  visibility?: keyof typeof EventSessionVisibility;
5524
+ featured?: boolean;
5523
5525
  sortOrder?: number | string | null;
5524
5526
  registrationEnabled?: boolean;
5525
5527
  onsiteRegistration?: boolean;
@@ -5563,6 +5565,7 @@ interface EventSessionUpdateInputs {
5563
5565
  nonSession?: boolean;
5564
5566
  imageId?: string | null;
5565
5567
  visibility?: keyof typeof EventSessionVisibility;
5568
+ featured?: boolean;
5566
5569
  sortOrder?: number | string | null;
5567
5570
  registrationEnabled?: boolean;
5568
5571
  onsiteRegistration?: boolean;
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",
@@ -115984,6 +115988,9 @@
115984
115988
  "visibility": {
115985
115989
  "$ref": "#/components/schemas/EventSessionVisibility"
115986
115990
  },
115991
+ "featured": {
115992
+ "type": "boolean"
115993
+ },
115987
115994
  "sortOrder": {
115988
115995
  "oneOf": [
115989
115996
  {
@@ -116162,6 +116169,9 @@
116162
116169
  "visibility": {
116163
116170
  "$ref": "#/components/schemas/EventSessionVisibility"
116164
116171
  },
116172
+ "featured": {
116173
+ "type": "boolean"
116174
+ },
116165
116175
  "sortOrder": {
116166
116176
  "oneOf": [
116167
116177
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "7.2.5",
3
+ "version": "7.2.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",