@connectedxm/admin 6.9.8 → 6.9.9

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
@@ -264,6 +264,7 @@ interface BaseAccountAttribute {
264
264
  public: boolean;
265
265
  includedInDashboards: boolean;
266
266
  sortOrder: number;
267
+ locationOption: keyof typeof LocationQuestionOption;
267
268
  }
268
269
  interface AccountAttribute extends BaseAccountAttribute {
269
270
  createdAt: string;
@@ -6651,6 +6652,7 @@ interface AccountAttributeCreateInputs {
6651
6652
  sortOrder?: number | string | null;
6652
6653
  searchListId?: string | null;
6653
6654
  options?: string[] | null;
6655
+ locationOption?: keyof typeof LocationQuestionOption;
6654
6656
  }
6655
6657
  interface AccountAttributeUpdateInputs {
6656
6658
  label?: string | null;
@@ -6663,6 +6665,7 @@ interface AccountAttributeUpdateInputs {
6663
6665
  sortOrder?: number | string | null;
6664
6666
  searchListId?: string | null;
6665
6667
  options?: string[] | null;
6668
+ locationOption?: keyof typeof LocationQuestionOption;
6666
6669
  }
6667
6670
  interface WebhookCreateInputs {
6668
6671
  name?: string | null;
package/dist/index.d.ts CHANGED
@@ -264,6 +264,7 @@ interface BaseAccountAttribute {
264
264
  public: boolean;
265
265
  includedInDashboards: boolean;
266
266
  sortOrder: number;
267
+ locationOption: keyof typeof LocationQuestionOption;
267
268
  }
268
269
  interface AccountAttribute extends BaseAccountAttribute {
269
270
  createdAt: string;
@@ -6651,6 +6652,7 @@ interface AccountAttributeCreateInputs {
6651
6652
  sortOrder?: number | string | null;
6652
6653
  searchListId?: string | null;
6653
6654
  options?: string[] | null;
6655
+ locationOption?: keyof typeof LocationQuestionOption;
6654
6656
  }
6655
6657
  interface AccountAttributeUpdateInputs {
6656
6658
  label?: string | null;
@@ -6663,6 +6665,7 @@ interface AccountAttributeUpdateInputs {
6663
6665
  sortOrder?: number | string | null;
6664
6666
  searchListId?: string | null;
6665
6667
  options?: string[] | null;
6668
+ locationOption?: keyof typeof LocationQuestionOption;
6666
6669
  }
6667
6670
  interface WebhookCreateInputs {
6668
6671
  name?: string | null;
package/openapi.json CHANGED
@@ -72641,6 +72641,9 @@
72641
72641
  },
72642
72642
  "sortOrder": {
72643
72643
  "type": "number"
72644
+ },
72645
+ "locationOption": {
72646
+ "$ref": "#/components/schemas/LocationQuestionOption"
72644
72647
  }
72645
72648
  },
72646
72649
  "required": [
@@ -72654,7 +72657,8 @@
72654
72657
  "editable",
72655
72658
  "public",
72656
72659
  "includedInDashboards",
72657
- "sortOrder"
72660
+ "sortOrder",
72661
+ "locationOption"
72658
72662
  ]
72659
72663
  },
72660
72664
  "AccountAttribute": {
@@ -99767,6 +99771,9 @@
99767
99771
  "type": "string"
99768
99772
  },
99769
99773
  "nullable": true
99774
+ },
99775
+ "locationOption": {
99776
+ "$ref": "#/components/schemas/LocationQuestionOption"
99770
99777
  }
99771
99778
  },
99772
99779
  "required": [
@@ -99822,6 +99829,9 @@
99822
99829
  "type": "string"
99823
99830
  },
99824
99831
  "nullable": true
99832
+ },
99833
+ "locationOption": {
99834
+ "$ref": "#/components/schemas/LocationQuestionOption"
99825
99835
  }
99826
99836
  }
99827
99837
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.9.8",
3
+ "version": "6.9.9",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",