@epilot/entity-client 4.25.1 → 4.25.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/openapi.d.ts CHANGED
@@ -6375,6 +6375,16 @@ declare namespace Components {
6375
6375
  * true
6376
6376
  */
6377
6377
  enabled?: boolean;
6378
+ /**
6379
+ * Position of the taxonomy
6380
+ * example:
6381
+ * 10
6382
+ */
6383
+ order?: number;
6384
+ /**
6385
+ * List of locations where the taxonomy is enabled to be used. If empty, it's enabled for all locations.
6386
+ */
6387
+ enabled_locations?: ("email-templates" | "emails" | "contacts" | "orders" | "contracts" | "meters" | "accounts" | "products" | "prices" | "opportunities" | "all_entities")[];
6378
6388
  }
6379
6389
  export interface TaxonomyClassification {
6380
6390
  id?: /**
package/dist/openapi.json CHANGED
@@ -5890,6 +5890,32 @@
5890
5890
  "type": "boolean",
5891
5891
  "description": "Whether the taxonomy is enabled or not",
5892
5892
  "example": true
5893
+ },
5894
+ "order": {
5895
+ "type": "number",
5896
+ "description": "Position of the taxonomy",
5897
+ "example": 10
5898
+ },
5899
+ "enabled_locations": {
5900
+ "description": "List of locations where the taxonomy is enabled to be used. If empty, it's enabled for all locations.",
5901
+ "type": "array",
5902
+ "items": {
5903
+ "type": "string",
5904
+ "enum": [
5905
+ "email-templates",
5906
+ "emails",
5907
+ "contacts",
5908
+ "orders",
5909
+ "contracts",
5910
+ "meters",
5911
+ "accounts",
5912
+ "products",
5913
+ "prices",
5914
+ "opportunities",
5915
+ "all_entities",
5916
+ "files"
5917
+ ]
5918
+ }
5893
5919
  }
5894
5920
  }
5895
5921
  },
@@ -6823,6 +6849,9 @@
6823
6849
  }
6824
6850
  },
6825
6851
  "servers": [
6852
+ {
6853
+ "url": "https://entity.sls.epilot.io"
6854
+ },
6826
6855
  {
6827
6856
  "url": "https://entity.sls.epilot.io"
6828
6857
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "4.25.1",
3
+ "version": "4.25.3",
4
4
  "description": "JavaScript client library for the epilot Core Entity API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",