@gpt-core/client 0.7.51 → 0.7.52
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -1698,6 +1698,12 @@ type Tenant = {
|
|
|
1698
1698
|
* Cost in credits for training on a single document. Field included by default.
|
|
1699
1699
|
*/
|
|
1700
1700
|
training_price_credits: number;
|
|
1701
|
+
/**
|
|
1702
|
+
* Training pricing info for this tenant
|
|
1703
|
+
*/
|
|
1704
|
+
training_pricing?: {
|
|
1705
|
+
[key: string]: unknown;
|
|
1706
|
+
} | null | unknown;
|
|
1701
1707
|
};
|
|
1702
1708
|
id: string;
|
|
1703
1709
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1698,6 +1698,12 @@ type Tenant = {
|
|
|
1698
1698
|
* Cost in credits for training on a single document. Field included by default.
|
|
1699
1699
|
*/
|
|
1700
1700
|
training_price_credits: number;
|
|
1701
|
+
/**
|
|
1702
|
+
* Training pricing info for this tenant
|
|
1703
|
+
*/
|
|
1704
|
+
training_pricing?: {
|
|
1705
|
+
[key: string]: unknown;
|
|
1706
|
+
} | null | unknown;
|
|
1701
1707
|
};
|
|
1702
1708
|
id: string;
|
|
1703
1709
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-core/client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.52",
|
|
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",
|
|
@@ -43,6 +43,14 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"generate": "openapi-ts",
|
|
48
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"test:ui": "vitest --ui",
|
|
52
|
+
"test:coverage": "vitest run --coverage"
|
|
53
|
+
},
|
|
46
54
|
"dependencies": {
|
|
47
55
|
"eventsource-parser": "^3.0.6",
|
|
48
56
|
"zod": "^3.25.76"
|
|
@@ -54,13 +62,5 @@
|
|
|
54
62
|
"tsup": "^8.5.1",
|
|
55
63
|
"typescript": "^5.9.3",
|
|
56
64
|
"vitest": "^4.0.15"
|
|
57
|
-
},
|
|
58
|
-
"scripts": {
|
|
59
|
-
"generate": "openapi-ts",
|
|
60
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
61
|
-
"test": "vitest run",
|
|
62
|
-
"test:watch": "vitest",
|
|
63
|
-
"test:ui": "vitest --ui",
|
|
64
|
-
"test:coverage": "vitest run --coverage"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|