@connectedxm/admin 6.8.1 → 6.8.3

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
@@ -3818,6 +3818,7 @@ interface BaseSurvey {
3818
3818
  id: string;
3819
3819
  slug: string;
3820
3820
  name: string;
3821
+ active: boolean;
3821
3822
  description: string | null;
3822
3823
  image: BaseImage;
3823
3824
  requireAuth: boolean;
@@ -3832,6 +3833,9 @@ interface Survey extends BaseSurvey {
3832
3833
  event: BaseEvent | null;
3833
3834
  sessionId: string | null;
3834
3835
  session: BaseEventSession | null;
3836
+ activationId: string | null;
3837
+ activation: BaseEventActivation | null;
3838
+ passTypes: BaseEventPassType[] | null;
3835
3839
  }
3836
3840
  interface SurveyTranslation {
3837
3841
  id: string;
@@ -3843,6 +3847,7 @@ interface SurveyTranslation {
3843
3847
  }
3844
3848
  interface BaseSurveySubmission {
3845
3849
  id: string;
3850
+ accountId: string | null;
3846
3851
  account: BaseAccount | null;
3847
3852
  status: PurchaseStatus;
3848
3853
  responses: BaseSurveyQuestionResponse[];
@@ -6283,6 +6288,7 @@ interface DashboardWidgetUpdateInputs {
6283
6288
  interface SurveyCreateInputs {
6284
6289
  name: string;
6285
6290
  slug?: string;
6291
+ active?: boolean;
6286
6292
  description?: string | null;
6287
6293
  imageId?: string | null;
6288
6294
  requireAuth?: boolean;
@@ -6291,9 +6297,11 @@ interface SurveyCreateInputs {
6291
6297
  emailBody?: string | null;
6292
6298
  eventId?: string | null;
6293
6299
  sessionId?: string | null;
6300
+ activationId?: string | null;
6294
6301
  }
6295
6302
  interface SurveyUpdateInputs {
6296
6303
  name?: string;
6304
+ active?: boolean;
6297
6305
  slug?: string;
6298
6306
  description?: string | null;
6299
6307
  imageId?: string | null;
@@ -6303,6 +6311,7 @@ interface SurveyUpdateInputs {
6303
6311
  emailBody?: string | null;
6304
6312
  eventId?: string | null;
6305
6313
  sessionId?: string | null;
6314
+ activationId?: string | null;
6306
6315
  }
6307
6316
  interface SurveyTranslationUpdateInputs {
6308
6317
  name?: string | null;
package/dist/index.d.ts CHANGED
@@ -3818,6 +3818,7 @@ interface BaseSurvey {
3818
3818
  id: string;
3819
3819
  slug: string;
3820
3820
  name: string;
3821
+ active: boolean;
3821
3822
  description: string | null;
3822
3823
  image: BaseImage;
3823
3824
  requireAuth: boolean;
@@ -3832,6 +3833,9 @@ interface Survey extends BaseSurvey {
3832
3833
  event: BaseEvent | null;
3833
3834
  sessionId: string | null;
3834
3835
  session: BaseEventSession | null;
3836
+ activationId: string | null;
3837
+ activation: BaseEventActivation | null;
3838
+ passTypes: BaseEventPassType[] | null;
3835
3839
  }
3836
3840
  interface SurveyTranslation {
3837
3841
  id: string;
@@ -3843,6 +3847,7 @@ interface SurveyTranslation {
3843
3847
  }
3844
3848
  interface BaseSurveySubmission {
3845
3849
  id: string;
3850
+ accountId: string | null;
3846
3851
  account: BaseAccount | null;
3847
3852
  status: PurchaseStatus;
3848
3853
  responses: BaseSurveyQuestionResponse[];
@@ -6283,6 +6288,7 @@ interface DashboardWidgetUpdateInputs {
6283
6288
  interface SurveyCreateInputs {
6284
6289
  name: string;
6285
6290
  slug?: string;
6291
+ active?: boolean;
6286
6292
  description?: string | null;
6287
6293
  imageId?: string | null;
6288
6294
  requireAuth?: boolean;
@@ -6291,9 +6297,11 @@ interface SurveyCreateInputs {
6291
6297
  emailBody?: string | null;
6292
6298
  eventId?: string | null;
6293
6299
  sessionId?: string | null;
6300
+ activationId?: string | null;
6294
6301
  }
6295
6302
  interface SurveyUpdateInputs {
6296
6303
  name?: string;
6304
+ active?: boolean;
6297
6305
  slug?: string;
6298
6306
  description?: string | null;
6299
6307
  imageId?: string | null;
@@ -6303,6 +6311,7 @@ interface SurveyUpdateInputs {
6303
6311
  emailBody?: string | null;
6304
6312
  eventId?: string | null;
6305
6313
  sessionId?: string | null;
6314
+ activationId?: string | null;
6306
6315
  }
6307
6316
  interface SurveyTranslationUpdateInputs {
6308
6317
  name?: string | null;
package/openapi.json CHANGED
@@ -87163,6 +87163,9 @@
87163
87163
  "name": {
87164
87164
  "type": "string"
87165
87165
  },
87166
+ "active": {
87167
+ "type": "boolean"
87168
+ },
87166
87169
  "description": {
87167
87170
  "type": "string",
87168
87171
  "nullable": true
@@ -87181,6 +87184,7 @@
87181
87184
  "id",
87182
87185
  "slug",
87183
87186
  "name",
87187
+ "active",
87184
87188
  "description",
87185
87189
  "image",
87186
87190
  "requireAuth",
@@ -87232,6 +87236,25 @@
87232
87236
  }
87233
87237
  ],
87234
87238
  "nullable": true
87239
+ },
87240
+ "activationId": {
87241
+ "type": "string",
87242
+ "nullable": true
87243
+ },
87244
+ "activation": {
87245
+ "allOf": [
87246
+ {
87247
+ "$ref": "#/components/schemas/BaseEventActivation"
87248
+ }
87249
+ ],
87250
+ "nullable": true
87251
+ },
87252
+ "passTypes": {
87253
+ "type": "array",
87254
+ "items": {
87255
+ "$ref": "#/components/schemas/BaseEventPassType"
87256
+ },
87257
+ "nullable": true
87235
87258
  }
87236
87259
  },
87237
87260
  "required": [
@@ -87242,7 +87265,10 @@
87242
87265
  "eventId",
87243
87266
  "event",
87244
87267
  "sessionId",
87245
- "session"
87268
+ "session",
87269
+ "activationId",
87270
+ "activation",
87271
+ "passTypes"
87246
87272
  ]
87247
87273
  }
87248
87274
  ]
@@ -87285,6 +87311,10 @@
87285
87311
  "id": {
87286
87312
  "type": "string"
87287
87313
  },
87314
+ "accountId": {
87315
+ "type": "string",
87316
+ "nullable": true
87317
+ },
87288
87318
  "account": {
87289
87319
  "allOf": [
87290
87320
  {
@@ -87305,6 +87335,7 @@
87305
87335
  },
87306
87336
  "required": [
87307
87337
  "id",
87338
+ "accountId",
87308
87339
  "account",
87309
87340
  "status",
87310
87341
  "responses"
@@ -97494,6 +97525,9 @@
97494
97525
  "slug": {
97495
97526
  "type": "string"
97496
97527
  },
97528
+ "active": {
97529
+ "type": "boolean"
97530
+ },
97497
97531
  "description": {
97498
97532
  "type": "string",
97499
97533
  "nullable": true
@@ -97530,6 +97564,10 @@
97530
97564
  "sessionId": {
97531
97565
  "type": "string",
97532
97566
  "nullable": true
97567
+ },
97568
+ "activationId": {
97569
+ "type": "string",
97570
+ "nullable": true
97533
97571
  }
97534
97572
  },
97535
97573
  "required": [
@@ -97542,6 +97580,9 @@
97542
97580
  "name": {
97543
97581
  "type": "string"
97544
97582
  },
97583
+ "active": {
97584
+ "type": "boolean"
97585
+ },
97545
97586
  "slug": {
97546
97587
  "type": "string"
97547
97588
  },
@@ -97581,6 +97622,10 @@
97581
97622
  "sessionId": {
97582
97623
  "type": "string",
97583
97624
  "nullable": true
97625
+ },
97626
+ "activationId": {
97627
+ "type": "string",
97628
+ "nullable": true
97584
97629
  }
97585
97630
  }
97586
97631
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.8.1",
3
+ "version": "6.8.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",