@api-client/core 0.20.2 → 0.20.4
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/build/src/modeling/Semantics.d.ts +0 -252
- package/build/src/modeling/Semantics.d.ts.map +1 -1
- package/build/src/modeling/Semantics.js +0 -356
- package/build/src/modeling/Semantics.js.map +1 -1
- package/build/src/modeling/ai/tools/Semantic.tools.d.ts +0 -3
- package/build/src/modeling/ai/tools/Semantic.tools.d.ts.map +1 -1
- package/build/src/modeling/types.d.ts +50 -0
- package/build/src/modeling/types.d.ts.map +1 -1
- package/build/src/modeling/types.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/src/modeling/Semantics.ts +40 -520
- package/src/modeling/types.ts +52 -0
- package/tests/unit/modeling/client_ip_address_semantic.spec.ts +0 -22
- package/tests/unit/modeling/semantics.spec.ts +0 -65
- package/tests/unit/modeling/username_semantic.spec.ts +0 -32
- package/build/src/runtime/modeling/Semantics.d.ts +0 -84
- package/build/src/runtime/modeling/Semantics.d.ts.map +0 -1
- package/build/src/runtime/modeling/Semantics.js +0 -124
- package/build/src/runtime/modeling/Semantics.js.map +0 -1
- package/src/runtime/modeling/Semantics.ts +0 -196
- package/tests/unit/modeling/semantic_runtime.spec.ts +0 -113
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api-client/core",
|
|
3
3
|
"description": "The API Client's core client library. Works in NodeJS and in a ES enabled browser.",
|
|
4
|
-
"version": "0.20.
|
|
4
|
+
"version": "0.20.4",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./browser.js": {
|
|
@@ -139,11 +139,11 @@
|
|
|
139
139
|
"get-port": "^7.0.0",
|
|
140
140
|
"globals": "^17.0.0",
|
|
141
141
|
"husky": "^9.0.11",
|
|
142
|
-
"lint-staged": "^
|
|
142
|
+
"lint-staged": "^17.0.2",
|
|
143
143
|
"oauth2-mock-server": "^8.0.0",
|
|
144
144
|
"prettier": "^3.5.1",
|
|
145
145
|
"schema-org-json-schemas": "^2.1.4",
|
|
146
|
-
"sinon": "^
|
|
146
|
+
"sinon": "^22.0.0",
|
|
147
147
|
"ts-node-maintained": "^10.9.5",
|
|
148
148
|
"typescript": "^6.0.2",
|
|
149
149
|
"typescript-eslint": "^8.24.1"
|
|
@@ -154,7 +154,8 @@
|
|
|
154
154
|
"build:node": "tsc --project tsconfig.node.json",
|
|
155
155
|
"build": "npm run build:ts && npm run copy:assets",
|
|
156
156
|
"prepare": "husky && npm run build:ts",
|
|
157
|
-
"tsc": "tsc",
|
|
157
|
+
"tsc": "tsc --project tsconfig.json",
|
|
158
|
+
"typecheck": "tsc --noEmit --project tsconfig.json",
|
|
158
159
|
"tsc:tests": "tsc --project tsconfig.browser.json",
|
|
159
160
|
"tsc:watch": "tsc --watch --project tsconfig.json",
|
|
160
161
|
"test:browser": "wtr --playwright --browsers chromium",
|