@epilot/entity-client 6.4.0 → 6.4.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 CHANGED
@@ -2258,6 +2258,12 @@ declare namespace Components {
2258
2258
  * Manifest ID used to create/update the schema capabilility
2259
2259
  */
2260
2260
  _manifest?: string /* uuid */[] | null;
2261
+ /**
2262
+ * ID of the app if the capability is provided by an app
2263
+ * example:
2264
+ * 123e4567-e89b-12d3-a456-426614174000
2265
+ */
2266
+ app_id?: string;
2261
2267
  ui_config?: {
2262
2268
  /**
2263
2269
  * Whether the capability is filterable
@@ -2385,6 +2391,12 @@ declare namespace Components {
2385
2391
  * Manifest ID used to create/update the schema capabilility
2386
2392
  */
2387
2393
  _manifest?: string /* uuid */[] | null;
2394
+ /**
2395
+ * ID of the app if the capability is provided by an app
2396
+ * example:
2397
+ * 123e4567-e89b-12d3-a456-426614174000
2398
+ */
2399
+ app_id?: string;
2388
2400
  ui_config?: {
2389
2401
  /**
2390
2402
  * Whether the capability is filterable
@@ -10823,7 +10835,7 @@ declare namespace Paths {
10823
10835
  /**
10824
10836
  * ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
10825
10837
  * example:
10826
- * 2023-01-01T00:00:00Z
10838
+ * 2023-01-01T00:00:00.000Z
10827
10839
  */
10828
10840
  export type CreatedAfter = string; // date-time
10829
10841
  /**
@@ -10849,7 +10861,7 @@ declare namespace Paths {
10849
10861
  created_after?: /**
10850
10862
  * ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
10851
10863
  * example:
10852
- * 2023-01-01T00:00:00Z
10864
+ * 2023-01-01T00:00:00.000Z
10853
10865
  */
10854
10866
  Parameters.CreatedAfter /* date-time */;
10855
10867
  sort_pending_first?: /* When true, sorts PENDING status jobs to the top of the results. */ Parameters.SortPendingFirst;
package/dist/openapi.json CHANGED
@@ -3360,7 +3360,7 @@
3360
3360
  "description": "ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).",
3361
3361
  "type": "string",
3362
3362
  "format": "date-time",
3363
- "example": "2023-01-01T00:00:00Z"
3363
+ "example": "2023-01-01T00:00:00.000Z"
3364
3364
  }
3365
3365
  },
3366
3366
  {
@@ -6489,6 +6489,11 @@
6489
6489
  },
6490
6490
  "nullable": true
6491
6491
  },
6492
+ "app_id": {
6493
+ "type": "string",
6494
+ "description": "ID of the app if the capability is provided by an app",
6495
+ "example": "123e4567-e89b-12d3-a456-426614174000"
6496
+ },
6492
6497
  "ui_config": {
6493
6498
  "type": "object",
6494
6499
  "properties": {
@@ -9514,6 +9519,9 @@
9514
9519
  }
9515
9520
  },
9516
9521
  "servers": [
9522
+ {
9523
+ "url": "https://entity.sls.epilot.io"
9524
+ },
9517
9525
  {
9518
9526
  "url": "https://entity.sls.epilot.io"
9519
9527
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "6.4.0",
3
+ "version": "6.4.2",
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",
@@ -25,6 +25,7 @@
25
25
  "test": "jest",
26
26
  "typescript": "tsc",
27
27
  "bundle-definition": "webpack",
28
+ "prepublishOnly": "npm run typegen && npm run build",
28
29
  "openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/entity.yaml",
29
30
  "typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
30
31
  "build": "tsc && npm run build:patch && npm run bundle-definition",