@connectedxm/admin 3.3.0 → 3.3.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/dist/index.d.cts CHANGED
@@ -1250,7 +1250,9 @@ interface BaseSearchList {
1250
1250
  interface SearchList extends BaseSearchList {
1251
1251
  createdAt: string;
1252
1252
  updatedAt: string;
1253
- values: SearchListValue[];
1253
+ _count: {
1254
+ values: number;
1255
+ };
1254
1256
  }
1255
1257
  interface BaseSearchListValue {
1256
1258
  id: string;
@@ -1832,6 +1834,7 @@ interface BaseRegistrationQuestion {
1832
1834
  label: string | null;
1833
1835
  placeholder: string | null;
1834
1836
  default: string | null;
1837
+ searchListId: string | null;
1835
1838
  span: number;
1836
1839
  mutable: boolean;
1837
1840
  min: string | null;
@@ -2225,6 +2228,7 @@ interface BaseEventSessionQuestion {
2225
2228
  label: string | null;
2226
2229
  placeholder: string | null;
2227
2230
  default: string | null;
2231
+ searchListId: string | null;
2228
2232
  mutable: boolean;
2229
2233
  min: string | null;
2230
2234
  max: string | null;
@@ -3448,6 +3452,7 @@ interface BaseSurveyQuestion {
3448
3452
  label: string | null;
3449
3453
  placeholder: string | null;
3450
3454
  default: string | null;
3455
+ searchListId: string | null;
3451
3456
  mutable: boolean;
3452
3457
  min: string | null;
3453
3458
  max: string | null;
package/dist/index.d.ts CHANGED
@@ -1250,7 +1250,9 @@ interface BaseSearchList {
1250
1250
  interface SearchList extends BaseSearchList {
1251
1251
  createdAt: string;
1252
1252
  updatedAt: string;
1253
- values: SearchListValue[];
1253
+ _count: {
1254
+ values: number;
1255
+ };
1254
1256
  }
1255
1257
  interface BaseSearchListValue {
1256
1258
  id: string;
@@ -1832,6 +1834,7 @@ interface BaseRegistrationQuestion {
1832
1834
  label: string | null;
1833
1835
  placeholder: string | null;
1834
1836
  default: string | null;
1837
+ searchListId: string | null;
1835
1838
  span: number;
1836
1839
  mutable: boolean;
1837
1840
  min: string | null;
@@ -2225,6 +2228,7 @@ interface BaseEventSessionQuestion {
2225
2228
  label: string | null;
2226
2229
  placeholder: string | null;
2227
2230
  default: string | null;
2231
+ searchListId: string | null;
2228
2232
  mutable: boolean;
2229
2233
  min: string | null;
2230
2234
  max: string | null;
@@ -3448,6 +3452,7 @@ interface BaseSurveyQuestion {
3448
3452
  label: string | null;
3449
3453
  placeholder: string | null;
3450
3454
  default: string | null;
3455
+ searchListId: string | null;
3451
3456
  mutable: boolean;
3452
3457
  min: string | null;
3453
3458
  max: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",