@gpt-core/admin 0.7.86 → 0.7.87
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -9004,6 +9004,7 @@ type PostAdminInvitationsData = {
|
|
|
9004
9004
|
body: {
|
|
9005
9005
|
data: {
|
|
9006
9006
|
attributes?: {
|
|
9007
|
+
application_id?: string | unknown;
|
|
9007
9008
|
email: string;
|
|
9008
9009
|
inviter_id?: string | unknown;
|
|
9009
9010
|
role: "admin" | "member" | "editor" | "viewer";
|
|
@@ -19151,7 +19152,7 @@ type PatchAdminInvitationsByIdResendData = {
|
|
|
19151
19152
|
body?: {
|
|
19152
19153
|
data: {
|
|
19153
19154
|
attributes?: {
|
|
19154
|
-
|
|
19155
|
+
application_id?: string | unknown;
|
|
19155
19156
|
};
|
|
19156
19157
|
id: string;
|
|
19157
19158
|
relationships?: {
|
|
@@ -25762,6 +25763,7 @@ type PatchAdminInvitationsByIdAcceptData = {
|
|
|
25762
25763
|
body: {
|
|
25763
25764
|
data: {
|
|
25764
25765
|
attributes?: {
|
|
25766
|
+
application_id?: string | unknown;
|
|
25765
25767
|
token: string;
|
|
25766
25768
|
};
|
|
25767
25769
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -9004,6 +9004,7 @@ type PostAdminInvitationsData = {
|
|
|
9004
9004
|
body: {
|
|
9005
9005
|
data: {
|
|
9006
9006
|
attributes?: {
|
|
9007
|
+
application_id?: string | unknown;
|
|
9007
9008
|
email: string;
|
|
9008
9009
|
inviter_id?: string | unknown;
|
|
9009
9010
|
role: "admin" | "member" | "editor" | "viewer";
|
|
@@ -19151,7 +19152,7 @@ type PatchAdminInvitationsByIdResendData = {
|
|
|
19151
19152
|
body?: {
|
|
19152
19153
|
data: {
|
|
19153
19154
|
attributes?: {
|
|
19154
|
-
|
|
19155
|
+
application_id?: string | unknown;
|
|
19155
19156
|
};
|
|
19156
19157
|
id: string;
|
|
19157
19158
|
relationships?: {
|
|
@@ -25762,6 +25763,7 @@ type PatchAdminInvitationsByIdAcceptData = {
|
|
|
25762
25763
|
body: {
|
|
25763
25764
|
data: {
|
|
25764
25765
|
attributes?: {
|
|
25766
|
+
application_id?: string | unknown;
|
|
25765
25767
|
token: string;
|
|
25766
25768
|
};
|
|
25767
25769
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-core/admin",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.87",
|
|
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,15 +42,6 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"generate": "openapi-ts",
|
|
47
|
-
"typecheck": "tsc --noEmit",
|
|
48
|
-
"build": "npm run typecheck && 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
|
-
},
|
|
54
45
|
"dependencies": {
|
|
55
46
|
"zod": "^3.25.76"
|
|
56
47
|
},
|
|
@@ -62,5 +53,14 @@
|
|
|
62
53
|
"tsup": "^8.5.1",
|
|
63
54
|
"typescript": "^5.9.3",
|
|
64
55
|
"vitest": "^4.0.15"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"generate": "openapi-ts",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"build": "npm run typecheck && 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
|
+
}
|