@epilot/entity-client 6.10.0 → 6.10.1
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/LICENSE +21 -0
- package/dist/openapi.d.ts +9 -3
- package/dist/openapi.json +6 -2
- package/package.json +16 -17
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 epilot GmbH
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
package/dist/openapi.d.ts
CHANGED
|
@@ -7154,7 +7154,7 @@ declare namespace Components {
|
|
|
7154
7154
|
* example:
|
|
7155
7155
|
* NOT is_composite_price:true
|
|
7156
7156
|
*/
|
|
7157
|
-
q: string;
|
|
7157
|
+
q: string | null;
|
|
7158
7158
|
};
|
|
7159
7159
|
/**
|
|
7160
7160
|
* example:
|
|
@@ -7319,6 +7319,12 @@ declare namespace Components {
|
|
|
7319
7319
|
* Organization Id the entity belongs to
|
|
7320
7320
|
*/
|
|
7321
7321
|
org_id?: string;
|
|
7322
|
+
_schema?: /**
|
|
7323
|
+
* URL-friendly identifier for the entity schema
|
|
7324
|
+
* example:
|
|
7325
|
+
* contact
|
|
7326
|
+
*/
|
|
7327
|
+
EntitySlug /* ^[a-zA-Z0-9_-]+$ */;
|
|
7322
7328
|
attribute: string;
|
|
7323
7329
|
_tags?: string[];
|
|
7324
7330
|
/**
|
|
@@ -11036,7 +11042,7 @@ declare namespace Paths {
|
|
|
11036
11042
|
/**
|
|
11037
11043
|
* ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
|
|
11038
11044
|
* example:
|
|
11039
|
-
* 2023-01-01T00:00:
|
|
11045
|
+
* 2023-01-01T00:00:00.000Z
|
|
11040
11046
|
*/
|
|
11041
11047
|
export type CreatedAfter = string; // date-time
|
|
11042
11048
|
/**
|
|
@@ -11062,7 +11068,7 @@ declare namespace Paths {
|
|
|
11062
11068
|
created_after?: /**
|
|
11063
11069
|
* ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).
|
|
11064
11070
|
* example:
|
|
11065
|
-
* 2023-01-01T00:00:
|
|
11071
|
+
* 2023-01-01T00:00:00.000Z
|
|
11066
11072
|
*/
|
|
11067
11073
|
Parameters.CreatedAfter /* date-time */;
|
|
11068
11074
|
sort_pending_first?: /* When true, sorts PENDING status jobs to the top of the results. */ Parameters.SortPendingFirst;
|
package/dist/openapi.json
CHANGED
|
@@ -3398,7 +3398,7 @@
|
|
|
3398
3398
|
"description": "ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).",
|
|
3399
3399
|
"type": "string",
|
|
3400
3400
|
"format": "date-time",
|
|
3401
|
-
"example": "2023-01-01T00:00:
|
|
3401
|
+
"example": "2023-01-01T00:00:00.000Z"
|
|
3402
3402
|
}
|
|
3403
3403
|
},
|
|
3404
3404
|
{
|
|
@@ -5705,7 +5705,8 @@
|
|
|
5705
5705
|
"properties": {
|
|
5706
5706
|
"q": {
|
|
5707
5707
|
"type": "string",
|
|
5708
|
-
"example": "NOT is_composite_price:true"
|
|
5708
|
+
"example": "NOT is_composite_price:true",
|
|
5709
|
+
"nullable": true
|
|
5709
5710
|
}
|
|
5710
5711
|
},
|
|
5711
5712
|
"required": [
|
|
@@ -7381,6 +7382,9 @@
|
|
|
7381
7382
|
"type": "string",
|
|
7382
7383
|
"description": "Organization Id the entity belongs to"
|
|
7383
7384
|
},
|
|
7385
|
+
"_schema": {
|
|
7386
|
+
"$ref": "#/components/schemas/EntitySlug"
|
|
7387
|
+
},
|
|
7384
7388
|
"attribute": {
|
|
7385
7389
|
"type": "string"
|
|
7386
7390
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/entity-client",
|
|
3
|
-
"version": "6.10.
|
|
3
|
+
"version": "6.10.1",
|
|
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",
|
|
@@ -21,19 +21,6 @@
|
|
|
21
21
|
"sdk",
|
|
22
22
|
"entity"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "jest",
|
|
26
|
-
"typescript": "tsc",
|
|
27
|
-
"bundle-definition": "webpack",
|
|
28
|
-
"prepublishOnly": "npm run typegen && npm run build",
|
|
29
|
-
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/entity.yaml",
|
|
30
|
-
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
31
|
-
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
32
|
-
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
33
|
-
"build:watch": "npm run build && tsc -w",
|
|
34
|
-
"release-alpha": "npm version prerelease --preid alpha",
|
|
35
|
-
"lint": "pnpm exec eslint src"
|
|
36
|
-
},
|
|
37
24
|
"files": [
|
|
38
25
|
"*.js",
|
|
39
26
|
"*.d.ts",
|
|
@@ -54,7 +41,7 @@
|
|
|
54
41
|
"@dazn/lambda-powertools-correlation-ids": "^1.28.1",
|
|
55
42
|
"buffer": "^6.0.3",
|
|
56
43
|
"https-browserify": "^1.0.0",
|
|
57
|
-
"openapi-client-axios": "^7.
|
|
44
|
+
"openapi-client-axios": "^7.8.0",
|
|
58
45
|
"stream-http": "^3.1.1",
|
|
59
46
|
"url": "^0.11.0",
|
|
60
47
|
"util": "^0.12.3"
|
|
@@ -73,5 +60,17 @@
|
|
|
73
60
|
"webpack": "^5.18.0",
|
|
74
61
|
"webpack-cli": "^4.4.0"
|
|
75
62
|
},
|
|
76
|
-
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
77
|
-
|
|
63
|
+
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7",
|
|
64
|
+
"scripts": {
|
|
65
|
+
"test": "jest",
|
|
66
|
+
"typescript": "tsc",
|
|
67
|
+
"bundle-definition": "webpack",
|
|
68
|
+
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/entity.yaml",
|
|
69
|
+
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
70
|
+
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
71
|
+
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
72
|
+
"build:watch": "npm run build && tsc -w",
|
|
73
|
+
"release-alpha": "npm version prerelease --preid alpha",
|
|
74
|
+
"lint": "pnpm exec eslint src"
|
|
75
|
+
}
|
|
76
|
+
}
|