@gpt-platform/admin 0.1.1 → 0.1.3
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 +80481 -87271
- package/dist/index.d.ts +80481 -87271
- package/dist/index.js +531 -544
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +503 -511
- package/dist/index.mjs.map +1 -0
- package/llms.txt +17 -3
- package/package.json +2 -3
package/llms.txt
CHANGED
|
@@ -193,7 +193,6 @@ client.setConfig({
|
|
|
193
193
|
- `patchWalletAddonsByAddonSlugCancel()` - Update cancel
|
|
194
194
|
- `patchWalletCredits()` - Update credits
|
|
195
195
|
- `patchWalletPlan()` - Update plan
|
|
196
|
-
- `patchWalletStorage()` - Update storage
|
|
197
196
|
- `deleteCredit-packagesById()` - Delete credit packages
|
|
198
197
|
- `deletePlansById()` - Delete plans
|
|
199
198
|
- `deleteSubscriptionsById()` - Delete subscriptions
|
|
@@ -682,12 +681,21 @@ client.setConfig({
|
|
|
682
681
|
- `getExtractionResultsById()` - Get results
|
|
683
682
|
- `getExtractionResultsDocumentByDocumentId()` - Get document
|
|
684
683
|
- `getExtractionResultsDocumentByDocumentIdHistory()` - Get history
|
|
684
|
+
- `getExtractionResultsDocumentByDocumentIdPartial()` - Get partial
|
|
685
685
|
- `getExtractionResultsWorkspaceByWorkspaceId()` - Get workspace
|
|
686
686
|
- `patchExtractionResultsById()` - Update results
|
|
687
687
|
- `patchExtractionResultsByIdRegenerate()` - Update regenerate
|
|
688
688
|
- `patchExtractionResultsByIdSave-corrections()` - Update save corrections
|
|
689
689
|
- `deleteExtractionResultsById()` - Delete results
|
|
690
690
|
|
|
691
|
+
## Extraction workflow
|
|
692
|
+
|
|
693
|
+
- `getExtraction-workflows()` - List extraction workflows
|
|
694
|
+
- `getExtraction-workflowsById()` - Get extraction workflows
|
|
695
|
+
- `postExtraction-workflows()` - Create extraction workflows
|
|
696
|
+
- `patchExtraction-workflowsById()` - Update extraction workflows
|
|
697
|
+
- `deleteExtraction-workflowsById()` - Delete extraction workflows
|
|
698
|
+
|
|
691
699
|
## Field mapping confirmation
|
|
692
700
|
|
|
693
701
|
- `postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping()` - Create mapping
|
|
@@ -835,6 +843,14 @@ client.setConfig({
|
|
|
835
843
|
- `patchPlatform-pricing-configsById()` - Update platform pricing configs
|
|
836
844
|
- `deletePlatform-pricing-configsById()` - Delete platform pricing configs
|
|
837
845
|
|
|
846
|
+
## Post processing hook
|
|
847
|
+
|
|
848
|
+
- `getPost-processing-hooks()` - List post processing hooks
|
|
849
|
+
- `getPost-processing-hooksById()` - Get post processing hooks
|
|
850
|
+
- `postPost-processing-hooks()` - Create post processing hooks
|
|
851
|
+
- `patchPost-processing-hooksById()` - Update post processing hooks
|
|
852
|
+
- `deletePost-processing-hooksById()` - Delete post processing hooks
|
|
853
|
+
|
|
838
854
|
## Presigned url
|
|
839
855
|
|
|
840
856
|
- `postDocumentsPresigned-upload()` - Create presigned upload
|
|
@@ -1045,9 +1061,7 @@ client.setConfig({
|
|
|
1045
1061
|
- `getTenants()` - List tenants
|
|
1046
1062
|
- `getTenantsById()` - Get tenants
|
|
1047
1063
|
- `postTenants()` - Create tenants
|
|
1048
|
-
- `postTenantsByIdBuy-storage()` - Create buy storage
|
|
1049
1064
|
- `postTenantsByIdCredit()` - Create credit
|
|
1050
|
-
- `postTenantsByIdRemove-storage()` - Create remove storage
|
|
1051
1065
|
- `postTenantsByIdSchedule-purge()` - Create schedule purge
|
|
1052
1066
|
- `postTenantsIsv()` - Create isv
|
|
1053
1067
|
- `patchTenantsById()` - Update tenants
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-platform/admin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "TypeScript SDK for GPT Platform Admin API - Platform administration and ISV management",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -45,8 +45,7 @@
|
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"repository": {
|
|
47
47
|
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/GPT-Integrators/gpt-
|
|
49
|
-
"directory": "sdks/ts/packages/admin"
|
|
48
|
+
"url": "git+https://github.com/GPT-Integrators/gpt-platform-admin-sdk.git"
|
|
50
49
|
},
|
|
51
50
|
"publishConfig": {
|
|
52
51
|
"access": "public"
|