@gpt-core/admin 0.7.21 → 0.7.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 CHANGED
@@ -5410,7 +5410,7 @@ type PostAdminWebhookConfigsData = {
5410
5410
  body: {
5411
5411
  data: {
5412
5412
  attributes?: {
5413
- application_id: string;
5413
+ application_id?: string | unknown;
5414
5414
  enabled?: boolean | unknown;
5415
5415
  events?: Array<string> | unknown;
5416
5416
  name: string;
package/dist/index.d.ts CHANGED
@@ -5410,7 +5410,7 @@ type PostAdminWebhookConfigsData = {
5410
5410
  body: {
5411
5411
  data: {
5412
5412
  attributes?: {
5413
- application_id: string;
5413
+ application_id?: string | unknown;
5414
5414
  enabled?: boolean | unknown;
5415
5415
  events?: Array<string> | unknown;
5416
5416
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.7.21",
3
+ "version": "0.7.22",
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
+ }