@connectedxm/admin 6.27.0 → 6.27.1

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
@@ -2423,6 +2423,7 @@ interface BaseEventSession {
2423
2423
  startTime: string;
2424
2424
  endTime: string;
2425
2425
  registrationEnd?: string;
2426
+ onsiteRegistration: boolean;
2426
2427
  allowQuickRegister: boolean;
2427
2428
  tracks: BaseEventTrack[];
2428
2429
  nonSession: boolean;
@@ -5506,6 +5507,7 @@ interface EventSessionCreateInputs {
5506
5507
  visibility?: keyof typeof EventSessionVisibility;
5507
5508
  sortOrder?: number | string | null;
5508
5509
  registrationEnabled?: boolean;
5510
+ onsiteRegistration?: boolean;
5509
5511
  allowQuickRegister?: boolean;
5510
5512
  limit?: number | string | null;
5511
5513
  price?: number | string | null;
@@ -5546,6 +5548,7 @@ interface EventSessionUpdateInputs {
5546
5548
  visibility?: keyof typeof EventSessionVisibility;
5547
5549
  sortOrder?: number | string | null;
5548
5550
  registrationEnabled?: boolean;
5551
+ onsiteRegistration?: boolean;
5549
5552
  allowQuickRegister?: boolean;
5550
5553
  limit?: number | string | null;
5551
5554
  price?: number | string | null;
package/dist/index.d.ts CHANGED
@@ -2423,6 +2423,7 @@ interface BaseEventSession {
2423
2423
  startTime: string;
2424
2424
  endTime: string;
2425
2425
  registrationEnd?: string;
2426
+ onsiteRegistration: boolean;
2426
2427
  allowQuickRegister: boolean;
2427
2428
  tracks: BaseEventTrack[];
2428
2429
  nonSession: boolean;
@@ -5506,6 +5507,7 @@ interface EventSessionCreateInputs {
5506
5507
  visibility?: keyof typeof EventSessionVisibility;
5507
5508
  sortOrder?: number | string | null;
5508
5509
  registrationEnabled?: boolean;
5510
+ onsiteRegistration?: boolean;
5509
5511
  allowQuickRegister?: boolean;
5510
5512
  limit?: number | string | null;
5511
5513
  price?: number | string | null;
@@ -5546,6 +5548,7 @@ interface EventSessionUpdateInputs {
5546
5548
  visibility?: keyof typeof EventSessionVisibility;
5547
5549
  sortOrder?: number | string | null;
5548
5550
  registrationEnabled?: boolean;
5551
+ onsiteRegistration?: boolean;
5549
5552
  allowQuickRegister?: boolean;
5550
5553
  limit?: number | string | null;
5551
5554
  price?: number | string | null;
package/openapi.json CHANGED
@@ -102333,6 +102333,9 @@
102333
102333
  "registrationEnd": {
102334
102334
  "type": "string"
102335
102335
  },
102336
+ "onsiteRegistration": {
102337
+ "type": "boolean"
102338
+ },
102336
102339
  "allowQuickRegister": {
102337
102340
  "type": "boolean"
102338
102341
  },
@@ -102394,6 +102397,7 @@
102394
102397
  "image",
102395
102398
  "startTime",
102396
102399
  "endTime",
102400
+ "onsiteRegistration",
102397
102401
  "allowQuickRegister",
102398
102402
  "tracks",
102399
102403
  "nonSession",
@@ -115330,6 +115334,9 @@
115330
115334
  "registrationEnabled": {
115331
115335
  "type": "boolean"
115332
115336
  },
115337
+ "onsiteRegistration": {
115338
+ "type": "boolean"
115339
+ },
115333
115340
  "allowQuickRegister": {
115334
115341
  "type": "boolean"
115335
115342
  },
@@ -115498,6 +115505,9 @@
115498
115505
  "registrationEnabled": {
115499
115506
  "type": "boolean"
115500
115507
  },
115508
+ "onsiteRegistration": {
115509
+ "type": "boolean"
115510
+ },
115501
115511
  "allowQuickRegister": {
115502
115512
  "type": "boolean"
115503
115513
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.27.0",
3
+ "version": "6.27.1",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",