@epilot/entity-client 5.1.0 → 6.0.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.d.ts CHANGED
@@ -10583,10 +10583,13 @@ declare namespace Paths {
10583
10583
  * The maximum number of jobs to return (defaults to 20)
10584
10584
  */
10585
10585
  export type Size = number;
10586
- export type Status = /* The status of the bulk job */ Components.Schemas.TaxonomyBulkJobStatus;
10586
+ /**
10587
+ * A comma separated list of job statuses to return
10588
+ */
10589
+ export type Status = /* The status of the bulk job */ Components.Schemas.TaxonomyBulkJobStatus[];
10587
10590
  }
10588
10591
  export interface QueryParameters {
10589
- status?: Parameters.Status;
10592
+ status?: /* A comma separated list of job statuses to return */ Parameters.Status;
10590
10593
  size?: /* The maximum number of jobs to return (defaults to 20) */ Parameters.Size;
10591
10594
  }
10592
10595
  namespace Responses {
package/dist/openapi.json CHANGED
@@ -3217,7 +3217,11 @@
3217
3217
  "description": "The status of the jobs to return",
3218
3218
  "name": "status",
3219
3219
  "schema": {
3220
- "$ref": "#/components/schemas/TaxonomyBulkJobStatus"
3220
+ "description": "A comma separated list of job statuses to return",
3221
+ "type": "array",
3222
+ "items": {
3223
+ "$ref": "#/components/schemas/TaxonomyBulkJobStatus"
3224
+ }
3221
3225
  }
3222
3226
  },
3223
3227
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "5.1.0",
3
+ "version": "6.0.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",