@connectedxm/admin 6.14.0 → 6.14.2

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/.prettierrc ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "arrowParens": "always",
3
+ "bracketSpacing": true,
4
+ "endOfLine": "lf",
5
+ "htmlWhitespaceSensitivity": "css",
6
+ "insertPragma": false,
7
+ "singleAttributePerLine": false,
8
+ "bracketSameLine": false,
9
+ "jsxBracketSameLine": false,
10
+ "jsxSingleQuote": false,
11
+ "printWidth": 80,
12
+ "proseWrap": "preserve",
13
+ "quoteProps": "as-needed",
14
+ "requirePragma": false,
15
+ "semi": true,
16
+ "singleQuote": false,
17
+ "tabWidth": 2,
18
+ "trailingComma": "es5",
19
+ "useTabs": false,
20
+ "embeddedLanguageFormatting": "auto",
21
+ "vueIndentScriptAndStyle": false,
22
+ "experimentalTernaries": false
23
+ }
package/dist/index.cjs CHANGED
@@ -38664,7 +38664,7 @@ var UpdateSeriesRegistrationResponses = async ({
38664
38664
  const connectedXM = await GetAdminAPI(adminApiParams);
38665
38665
  const { data } = await connectedXM.put(
38666
38666
  `/series/${seriesId}/registrations/${registrationId}/responses`,
38667
- { responses }
38667
+ responses
38668
38668
  );
38669
38669
  if (queryClient && data.status === "ok") {
38670
38670
  queryClient.invalidateQueries({
package/dist/index.d.cts CHANGED
@@ -1038,6 +1038,7 @@ interface Event extends BaseEvent {
1038
1038
  meeting: BaseMeeting | null;
1039
1039
  continuousScanning: boolean;
1040
1040
  scanType: OnSiteScanType;
1041
+ activationsDescription: string | null;
1041
1042
  options: object | null;
1042
1043
  }
1043
1044
  interface EventTranslation {
@@ -1049,6 +1050,7 @@ interface EventTranslation {
1049
1050
  reservationDescription: string | null;
1050
1051
  imageId: string | null;
1051
1052
  image: BaseImage | null;
1053
+ activationsDescription: string | null;
1052
1054
  createdAt: string;
1053
1055
  updatedAt: string;
1054
1056
  }
@@ -5119,6 +5121,7 @@ interface EventCreateInputs {
5119
5121
  meetingId?: string | null;
5120
5122
  continuousScanning?: boolean;
5121
5123
  scanType?: keyof typeof OnSiteScanType | null;
5124
+ activationsDescription?: string | null;
5122
5125
  }
5123
5126
  interface EventUpdateInputs {
5124
5127
  featured?: boolean;
@@ -5179,6 +5182,7 @@ interface EventUpdateInputs {
5179
5182
  meetingId?: string | null;
5180
5183
  continuousScanning?: boolean;
5181
5184
  scanType?: keyof typeof OnSiteScanType | null;
5185
+ activationsDescription?: string | null;
5182
5186
  }
5183
5187
  interface EventEmailUpdateInputs {
5184
5188
  body?: string | null;
@@ -5602,6 +5606,7 @@ interface EventTranslationUpdateInputs {
5602
5606
  longDescription?: string | null;
5603
5607
  reservationDescription?: string | null;
5604
5608
  imageId?: string | null;
5609
+ activationsDescription?: string | null;
5605
5610
  }
5606
5611
  interface FileUpdateInputs {
5607
5612
  name?: string;
@@ -30238,7 +30243,7 @@ declare const useUpdateSeriesRegistration: (options?: Omit<ConnectedXMMutationOp
30238
30243
  interface UpdateSeriesRegistrationResponsesParams extends MutationParams {
30239
30244
  seriesId: string;
30240
30245
  registrationId: string;
30241
- responses: SeriesRegistrationResponsesUpdateInputs["responses"];
30246
+ responses: SeriesRegistrationResponsesUpdateInputs;
30242
30247
  }
30243
30248
  /**
30244
30249
  * @category Methods
package/dist/index.d.ts CHANGED
@@ -1038,6 +1038,7 @@ interface Event extends BaseEvent {
1038
1038
  meeting: BaseMeeting | null;
1039
1039
  continuousScanning: boolean;
1040
1040
  scanType: OnSiteScanType;
1041
+ activationsDescription: string | null;
1041
1042
  options: object | null;
1042
1043
  }
1043
1044
  interface EventTranslation {
@@ -1049,6 +1050,7 @@ interface EventTranslation {
1049
1050
  reservationDescription: string | null;
1050
1051
  imageId: string | null;
1051
1052
  image: BaseImage | null;
1053
+ activationsDescription: string | null;
1052
1054
  createdAt: string;
1053
1055
  updatedAt: string;
1054
1056
  }
@@ -5119,6 +5121,7 @@ interface EventCreateInputs {
5119
5121
  meetingId?: string | null;
5120
5122
  continuousScanning?: boolean;
5121
5123
  scanType?: keyof typeof OnSiteScanType | null;
5124
+ activationsDescription?: string | null;
5122
5125
  }
5123
5126
  interface EventUpdateInputs {
5124
5127
  featured?: boolean;
@@ -5179,6 +5182,7 @@ interface EventUpdateInputs {
5179
5182
  meetingId?: string | null;
5180
5183
  continuousScanning?: boolean;
5181
5184
  scanType?: keyof typeof OnSiteScanType | null;
5185
+ activationsDescription?: string | null;
5182
5186
  }
5183
5187
  interface EventEmailUpdateInputs {
5184
5188
  body?: string | null;
@@ -5602,6 +5606,7 @@ interface EventTranslationUpdateInputs {
5602
5606
  longDescription?: string | null;
5603
5607
  reservationDescription?: string | null;
5604
5608
  imageId?: string | null;
5609
+ activationsDescription?: string | null;
5605
5610
  }
5606
5611
  interface FileUpdateInputs {
5607
5612
  name?: string;
@@ -30238,7 +30243,7 @@ declare const useUpdateSeriesRegistration: (options?: Omit<ConnectedXMMutationOp
30238
30243
  interface UpdateSeriesRegistrationResponsesParams extends MutationParams {
30239
30244
  seriesId: string;
30240
30245
  registrationId: string;
30241
- responses: SeriesRegistrationResponsesUpdateInputs["responses"];
30246
+ responses: SeriesRegistrationResponsesUpdateInputs;
30242
30247
  }
30243
30248
  /**
30244
30249
  * @category Methods
package/dist/index.js CHANGED
@@ -35229,7 +35229,7 @@ var UpdateSeriesRegistrationResponses = async ({
35229
35229
  const connectedXM = await GetAdminAPI(adminApiParams);
35230
35230
  const { data } = await connectedXM.put(
35231
35231
  `/series/${seriesId}/registrations/${registrationId}/responses`,
35232
- { responses }
35232
+ responses
35233
35233
  );
35234
35234
  if (queryClient && data.status === "ok") {
35235
35235
  queryClient.invalidateQueries({
package/openapi.json CHANGED
@@ -64483,17 +64483,18 @@
64483
64483
  },
64484
64484
  "description": "The registration identifier",
64485
64485
  "required": true
64486
- },
64487
- {
64488
- "in": "query",
64489
- "name": "responses",
64490
- "schema": {
64491
- "$ref": "#/components/schemas/SeriesRegistrationResponsesUpdateInputs[\"responses\"]"
64492
- },
64493
- "description": "Filter by responses",
64494
- "required": true
64495
64486
  }
64496
64487
  ],
64488
+ "requestBody": {
64489
+ "required": true,
64490
+ "content": {
64491
+ "application/json": {
64492
+ "schema": {
64493
+ "$ref": "#/components/schemas/SeriesRegistrationResponsesUpdateInputs"
64494
+ }
64495
+ }
64496
+ }
64497
+ },
64497
64498
  "responses": {
64498
64499
  "200": {
64499
64500
  "description": "Successful response",
@@ -64513,7 +64514,7 @@
64513
64514
  "example": "Success message."
64514
64515
  },
64515
64516
  "data": {
64516
- "nullable": true
64517
+ "type": "object"
64517
64518
  }
64518
64519
  },
64519
64520
  "required": [
@@ -78347,6 +78348,10 @@
78347
78348
  "scanType": {
78348
78349
  "$ref": "#/components/schemas/OnSiteScanType"
78349
78350
  },
78351
+ "activationsDescription": {
78352
+ "type": "string",
78353
+ "nullable": true
78354
+ },
78350
78355
  "options": {
78351
78356
  "type": "object",
78352
78357
  "nullable": true
@@ -78392,6 +78397,7 @@
78392
78397
  "meeting",
78393
78398
  "continuousScanning",
78394
78399
  "scanType",
78400
+ "activationsDescription",
78395
78401
  "options"
78396
78402
  ]
78397
78403
  }
@@ -78432,6 +78438,10 @@
78432
78438
  ],
78433
78439
  "nullable": true
78434
78440
  },
78441
+ "activationsDescription": {
78442
+ "type": "string",
78443
+ "nullable": true
78444
+ },
78435
78445
  "createdAt": {
78436
78446
  "type": "string"
78437
78447
  },
@@ -78448,6 +78458,7 @@
78448
78458
  "reservationDescription",
78449
78459
  "imageId",
78450
78460
  "image",
78461
+ "activationsDescription",
78451
78462
  "createdAt",
78452
78463
  "updatedAt"
78453
78464
  ]
@@ -95561,6 +95572,10 @@
95561
95572
  }
95562
95573
  ],
95563
95574
  "nullable": true
95575
+ },
95576
+ "activationsDescription": {
95577
+ "type": "string",
95578
+ "nullable": true
95564
95579
  }
95565
95580
  },
95566
95581
  "required": [
@@ -95833,6 +95848,10 @@
95833
95848
  }
95834
95849
  ],
95835
95850
  "nullable": true
95851
+ },
95852
+ "activationsDescription": {
95853
+ "type": "string",
95854
+ "nullable": true
95836
95855
  }
95837
95856
  }
95838
95857
  },
@@ -97618,6 +97637,10 @@
97618
97637
  "imageId": {
97619
97638
  "type": "string",
97620
97639
  "nullable": true
97640
+ },
97641
+ "activationsDescription": {
97642
+ "type": "string",
97643
+ "nullable": true
97621
97644
  }
97622
97645
  }
97623
97646
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.14.0",
3
+ "version": "6.14.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",