@epilot/entity-client 4.18.0 → 4.18.1-rc.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.json CHANGED
@@ -1265,6 +1265,9 @@
1265
1265
  },
1266
1266
  {
1267
1267
  "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
1268
+ },
1269
+ {
1270
+ "$ref": "#/components/parameters/EntityRelationsModeQueryParam"
1268
1271
  }
1269
1272
  ],
1270
1273
  "responses": {
@@ -3777,10 +3780,6 @@
3777
3780
  "description": "Enable the thumbnail column",
3778
3781
  "type": "boolean",
3779
3782
  "default": false
3780
- },
3781
- "classic_view": {
3782
- "type": "string",
3783
- "format": "uri-reference"
3784
3783
  }
3785
3784
  }
3786
3785
  },
@@ -4878,6 +4877,16 @@
4878
4877
  }
4879
4878
  }
4880
4879
  },
4880
+ "EntityRelationsModeQueryParam": {
4881
+ "name": "mode",
4882
+ "description": "Return relations based on direct, reverse, or both mode",
4883
+ "in": "query",
4884
+ "required": false,
4885
+ "example": "<url>/<operation>?mode=direct",
4886
+ "schema": {
4887
+ "type": "string"
4888
+ }
4889
+ },
4881
4890
  "DryRunQueryParam": {
4882
4891
  "name": "dry_run",
4883
4892
  "description": "Dry Run mode = return results but does not perform the operation.",
@@ -5504,5 +5513,10 @@
5504
5513
  }
5505
5514
  }
5506
5515
  }
5507
- }
5516
+ },
5517
+ "servers": [
5518
+ {
5519
+ "url": "https://entity.sls.epilot.io"
5520
+ }
5521
+ ]
5508
5522
  }
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "4.18.0",
3
+ "version": "4.18.1-rc.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,7 +25,7 @@
25
25
  "typescript": "tsc",
26
26
  "bundle-definition": "webpack",
27
27
  "openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/entity.yaml",
28
- "typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ../../../entity-api/lambda/ApiHandlerFunction/openapi.yml >> src/openapi.d.ts",
28
+ "typegen": "echo '/* eslint-disable */' > src/openapi.d.ts && typegen ./src/openapi.json >> src/openapi.d.ts",
29
29
  "build": "tsc && npm run bundle-definition",
30
30
  "build:watch": "npm run build && tsc -w",
31
31
  "release-alpha": "npm version prerelease --preid alpha",