@gpt-core/admin 0.8.26 → 0.9.0
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 +508 -324
- package/dist/index.d.ts +508 -324
- package/llms.txt +0 -24
- package/package.json +11 -11
- package/dist/index.cjs +0 -1606
package/llms.txt
CHANGED
|
@@ -47,7 +47,6 @@ client.setConfig({
|
|
|
47
47
|
- `getAgentsByIdStats()` - Get stats
|
|
48
48
|
- `getAgentsByIdTrainingStats()` - Get training stats
|
|
49
49
|
- `getAgentsByIdUsage()` - Get usage
|
|
50
|
-
- `getAgentsUsage()` - List usage
|
|
51
50
|
- `getAgentVersions()` - List agent versions
|
|
52
51
|
- `getAgentVersionsById()` - Get agent versions
|
|
53
52
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
@@ -64,9 +63,6 @@ client.setConfig({
|
|
|
64
63
|
- `postAgentsImport()` - Create import
|
|
65
64
|
- `postAgentsPredict()` - Create predict
|
|
66
65
|
- `postAgentVersions()` - Create agent versions
|
|
67
|
-
- `postAgentVersionsByIdAddSystemField()` - Create add system field
|
|
68
|
-
- `postAgentVersionsByIdRemoveSystemField()` - Create remove system field
|
|
69
|
-
- `postAgentVersionsByIdSetSystemFields()` - Create set system fields
|
|
70
66
|
- `patchAgentsByIdSchemaVersionsByVersionId()` - Update schema versions
|
|
71
67
|
- `deleteAgentVersionsById()` - Delete agent versions
|
|
72
68
|
|
|
@@ -379,14 +375,8 @@ client.setConfig({
|
|
|
379
375
|
- `getPayment-methodsById()` - Get payment methods
|
|
380
376
|
- `postPayment-methods()` - Create payment methods
|
|
381
377
|
- `patchPayment-methodsById()` - Update payment methods
|
|
382
|
-
- `patchPayment-methodsByIdDefault()` - Update default
|
|
383
378
|
- `deletePayment-methodsById()` - Delete payment methods
|
|
384
379
|
|
|
385
|
-
## Permission
|
|
386
|
-
|
|
387
|
-
- `getPermissions()` - List permissions
|
|
388
|
-
- `getPermissionsPresets()` - List presets
|
|
389
|
-
|
|
390
380
|
## Presigned url
|
|
391
381
|
|
|
392
382
|
- `postDocumentsPresignedUpload()` - Create presigned upload
|
|
@@ -465,16 +455,6 @@ client.setConfig({
|
|
|
465
455
|
- `getStorageStats()` - List stats
|
|
466
456
|
- `getStorageStatsTenantByTenantId()` - Get tenant
|
|
467
457
|
|
|
468
|
-
## System message
|
|
469
|
-
|
|
470
|
-
- `getSystem-messages()` - List system messages
|
|
471
|
-
- `getSystem-messagesById()` - Get system messages
|
|
472
|
-
- `postSystem-messages()` - Create system messages
|
|
473
|
-
- `patchSystem-messagesById()` - Update system messages
|
|
474
|
-
- `patchSystem-messagesByIdPublish()` - Update publish
|
|
475
|
-
- `patchSystem-messagesByIdUnpublish()` - Update unpublish
|
|
476
|
-
- `deleteSystem-messagesById()` - Delete system messages
|
|
477
|
-
|
|
478
458
|
## Tenant document stats
|
|
479
459
|
|
|
480
460
|
- `getTenantsByTenantIdDocumentStats()` - Get document stats
|
|
@@ -535,7 +515,6 @@ client.setConfig({
|
|
|
535
515
|
|
|
536
516
|
## Training analytics
|
|
537
517
|
|
|
538
|
-
- `getWorkspacesAnalytics-batch()` - List analytics batch
|
|
539
518
|
- `getWorkspacesByWorkspaceIdTrainingAnalytics()` - Get analytics
|
|
540
519
|
|
|
541
520
|
## Transaction
|
|
@@ -572,9 +551,6 @@ client.setConfig({
|
|
|
572
551
|
- `postUsersAuthResend-confirmation()` - Create resend confirmation
|
|
573
552
|
- `postUsersRegisterIsv()` - Create register isv
|
|
574
553
|
- `patchUserProfilesById()` - Update user profiles
|
|
575
|
-
- `patchUserProfilesByIdAccept-tos()` - Update accept tos
|
|
576
|
-
- `patchUserProfilesByIdDismiss-announcement()` - Update dismiss announcement
|
|
577
|
-
- `patchUserProfilesByIdDismiss-welcome()` - Update dismiss welcome
|
|
578
554
|
- `patchUsersAuthPasswordChange()` - Update change
|
|
579
555
|
- `patchUsersAuthReset-password()` - Update reset password
|
|
580
556
|
- `patchUsersById()` - Update admin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-core/admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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",
|
|
@@ -51,15 +51,6 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"generate": "openapi-ts",
|
|
56
|
-
"typecheck": "tsc --noEmit",
|
|
57
|
-
"build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
|
|
58
|
-
"test": "vitest run",
|
|
59
|
-
"test:watch": "vitest",
|
|
60
|
-
"test:ui": "vitest --ui",
|
|
61
|
-
"test:coverage": "vitest run --coverage"
|
|
62
|
-
},
|
|
63
54
|
"dependencies": {
|
|
64
55
|
"zod": "^3.25.76"
|
|
65
56
|
},
|
|
@@ -71,5 +62,14 @@
|
|
|
71
62
|
"tsup": "^8.5.1",
|
|
72
63
|
"typescript": "^5.9.3",
|
|
73
64
|
"vitest": "^4.0.15"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"generate": "openapi-ts",
|
|
68
|
+
"typecheck": "tsc --noEmit",
|
|
69
|
+
"build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest",
|
|
72
|
+
"test:ui": "vitest --ui",
|
|
73
|
+
"test:coverage": "vitest run --coverage"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|