@gpt-core/admin 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 CHANGED
@@ -1473,6 +1473,12 @@ type Tenant = {
1473
1473
  * Cost in credits for training on a single document. Field included by default.
1474
1474
  */
1475
1475
  training_price_credits: number;
1476
+ /**
1477
+ * Training pricing info for this tenant
1478
+ */
1479
+ training_pricing?: {
1480
+ [key: string]: unknown;
1481
+ } | null | unknown;
1476
1482
  };
1477
1483
  id: string;
1478
1484
  /**
package/dist/index.d.ts CHANGED
@@ -1473,6 +1473,12 @@ type Tenant = {
1473
1473
  * Cost in credits for training on a single document. Field included by default.
1474
1474
  */
1475
1475
  training_price_credits: number;
1476
+ /**
1477
+ * Training pricing info for this tenant
1478
+ */
1479
+ training_pricing?: {
1480
+ [key: string]: unknown;
1481
+ } | null | unknown;
1476
1482
  };
1477
1483
  id: string;
1478
1484
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.7.51",
3
+ "version": "0.7.52",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -42,6 +42,14 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
+ "scripts": {
46
+ "generate": "openapi-ts",
47
+ "build": "tsup src/index.ts --format cjs,esm --dts",
48
+ "test": "vitest run",
49
+ "test:watch": "vitest",
50
+ "test:ui": "vitest --ui",
51
+ "test:coverage": "vitest run --coverage"
52
+ },
45
53
  "dependencies": {
46
54
  "zod": "^3.25.76"
47
55
  },
@@ -53,13 +61,5 @@
53
61
  "tsup": "^8.5.1",
54
62
  "typescript": "^5.9.3",
55
63
  "vitest": "^4.0.15"
56
- },
57
- "scripts": {
58
- "generate": "openapi-ts",
59
- "build": "tsup src/index.ts --format cjs,esm --dts",
60
- "test": "vitest run",
61
- "test:watch": "vitest",
62
- "test:ui": "vitest --ui",
63
- "test:coverage": "vitest run --coverage"
64
64
  }
65
- }
65
+ }