@gpt-core/client 0.8.20 → 0.8.22
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/index.d.mts +1275 -9172
- package/dist/index.d.ts +1275 -9172
- package/dist/index.js +710 -0
- package/dist/index.mjs +708 -0
- package/llms.txt +8 -0
- package/package.json +11 -11
package/llms.txt
CHANGED
|
@@ -228,6 +228,14 @@ client.setConfig({
|
|
|
228
228
|
- `patchExtractionResultsByIdCorrections()` - Update corrections
|
|
229
229
|
- `patchExtractionResultsByIdRegenerate()` - Update regenerate
|
|
230
230
|
|
|
231
|
+
## Field mapping confirmation
|
|
232
|
+
|
|
233
|
+
- `postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping()` - Create mapping
|
|
234
|
+
|
|
235
|
+
## Field mapping result
|
|
236
|
+
|
|
237
|
+
- `getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping()` - Get mapping
|
|
238
|
+
|
|
231
239
|
## Field Templates
|
|
232
240
|
|
|
233
241
|
- `getFieldTemplates()` - List field templates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-core/client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.22",
|
|
4
4
|
"description": "TypeScript SDK for GPT Core Client API - Document extraction, AI agents, and workspace management",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -52,15 +52,6 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"generate": "openapi-ts",
|
|
57
|
-
"typecheck": "tsc --noEmit",
|
|
58
|
-
"build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
|
|
59
|
-
"test": "vitest run",
|
|
60
|
-
"test:watch": "vitest",
|
|
61
|
-
"test:ui": "vitest --ui",
|
|
62
|
-
"test:coverage": "vitest run --coverage"
|
|
63
|
-
},
|
|
64
55
|
"dependencies": {
|
|
65
56
|
"eventsource-parser": "^3.0.6",
|
|
66
57
|
"zod": "^3.25.76"
|
|
@@ -72,5 +63,14 @@
|
|
|
72
63
|
"tsup": "^8.5.1",
|
|
73
64
|
"typescript": "^5.9.3",
|
|
74
65
|
"vitest": "^4.0.15"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"generate": "openapi-ts",
|
|
69
|
+
"typecheck": "tsc --noEmit",
|
|
70
|
+
"build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"test:ui": "vitest --ui",
|
|
74
|
+
"test:coverage": "vitest run --coverage"
|
|
75
75
|
}
|
|
76
|
-
}
|
|
76
|
+
}
|