@epilot/entity-client 4.25.1 → 4.25.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/openapi.d.ts +10 -0
- package/dist/openapi.json +28 -0
- package/package.json +1 -1
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,31 @@
|
|
|
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
|
+
]
|
|
5917
|
+
}
|
|
5893
5918
|
}
|
|
5894
5919
|
}
|
|
5895
5920
|
},
|
|
@@ -6823,6 +6848,9 @@
|
|
|
6823
6848
|
}
|
|
6824
6849
|
},
|
|
6825
6850
|
"servers": [
|
|
6851
|
+
{
|
|
6852
|
+
"url": "https://entity.sls.epilot.io"
|
|
6853
|
+
},
|
|
6826
6854
|
{
|
|
6827
6855
|
"url": "https://entity.sls.epilot.io"
|
|
6828
6856
|
}
|