@epilot/entity-client 4.37.0 → 4.38.0-alpha.0

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.json CHANGED
@@ -2901,11 +2901,19 @@
2901
2901
  {
2902
2902
  "in": "query",
2903
2903
  "name": "archived",
2904
- "description": "Filter by archived status",
2904
+ "description": "Filter by archived status. Deprecated. Use `include_archived` instead.",
2905
+ "deprecated": true,
2905
2906
  "schema": {
2906
2907
  "type": "boolean",
2907
2908
  "example": false
2908
2909
  }
2910
+ },
2911
+ {
2912
+ "in": "query",
2913
+ "name": "include_archived",
2914
+ "schema": {
2915
+ "$ref": "#/components/schemas/TaxonomySearchIncludeArchivedParam"
2916
+ }
2909
2917
  }
2910
2918
  ],
2911
2919
  "requestBody": {
@@ -7777,6 +7785,16 @@
7777
7785
  "comment"
7778
7786
  ]
7779
7787
  },
7788
+ "TaxonomySearchIncludeArchivedParam": {
7789
+ "type": "string",
7790
+ "enum": [
7791
+ "true",
7792
+ "false",
7793
+ "only"
7794
+ ],
7795
+ "description": "Whether to include archived labels in the search results\n- `true`: include archived labels\n- `false`: exclude archived labels\n- `only`: include only archived labels\n\nBy default, no archived labels are included in the search results.\n",
7796
+ "default": "false"
7797
+ },
7780
7798
  "TaxonomyClassification": {
7781
7799
  "type": "object",
7782
7800
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "4.37.0",
3
+ "version": "4.38.0-alpha.0",
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",