@gpt-platform/client 0.1.1 → 0.1.2
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/README.md +1 -1
- package/dist/index.d.mts +9363 -10620
- package/dist/index.d.ts +9363 -10620
- package/dist/index.js +9003 -7285
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +8889 -7160
- package/dist/index.mjs.map +1 -0
- package/llms.txt +29 -0
- package/package.json +3 -4
package/llms.txt
CHANGED
|
@@ -537,6 +537,7 @@ client.setConfig({
|
|
|
537
537
|
- `getExtractionResultsById()` - Get results
|
|
538
538
|
- `getExtractionResultsDocumentByDocumentId()` - Get document
|
|
539
539
|
- `getExtractionResultsDocumentByDocumentIdHistory()` - Get history
|
|
540
|
+
- `getExtractionResultsDocumentByDocumentIdPartial()` - Get partial
|
|
540
541
|
- `getExtractionResultsWorkspaceByWorkspaceId()` - Get workspace
|
|
541
542
|
- `patchExtractionResultsById()` - Update results
|
|
542
543
|
- `patchExtractionResultsByIdRegenerate()` - Update regenerate
|
|
@@ -788,6 +789,34 @@ client.setConfig({
|
|
|
788
789
|
- `deleteBucketsById()` - Delete buckets
|
|
789
790
|
- `deleteObjectsById()` - Delete objects
|
|
790
791
|
|
|
792
|
+
## Support tag
|
|
793
|
+
|
|
794
|
+
- `getSupportTagsWorkspaceByWorkspaceId()` - Get workspace
|
|
795
|
+
- `postSupportTags()` - Create tags
|
|
796
|
+
- `deleteSupportTagsById()` - Delete tags
|
|
797
|
+
|
|
798
|
+
## Support ticket
|
|
799
|
+
|
|
800
|
+
- `getSupportTicketsById()` - Get tickets
|
|
801
|
+
- `getSupportTicketsWorkspaceByWorkspaceId()` - Get workspace
|
|
802
|
+
- `postSupportTickets()` - Create tickets
|
|
803
|
+
- `patchSupportTicketsById()` - Update tickets
|
|
804
|
+
- `deleteSupportTicketsById()` - Delete tickets
|
|
805
|
+
|
|
806
|
+
## Support ticket attachment
|
|
807
|
+
|
|
808
|
+
- `getSupportTicket-attachmentsMessageByTicketMessageId()` - Get message
|
|
809
|
+
- `postSupportTicket-attachments()` - Create ticket attachments
|
|
810
|
+
|
|
811
|
+
## Support ticket message
|
|
812
|
+
|
|
813
|
+
- `getSupportTicket-messagesTicketByTicketId()` - Get ticket
|
|
814
|
+
- `postSupportTicket-messages()` - Create ticket messages
|
|
815
|
+
|
|
816
|
+
## Support ticket rating
|
|
817
|
+
|
|
818
|
+
- `postSupportTicket-ratings()` - Create ticket ratings
|
|
819
|
+
|
|
791
820
|
## Tenant document stats
|
|
792
821
|
|
|
793
822
|
- `getTenantsByTenantIdDocumentStats()` - Get document stats
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-platform/client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "TypeScript SDK for GPT Platform Client API - Document extraction, AI agents, and workspace management",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -46,10 +46,9 @@
|
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/GPT-Integrators/gpt-
|
|
50
|
-
"directory": "sdks/ts/packages/client"
|
|
49
|
+
"url": "git+https://github.com/GPT-Integrators/gpt-platform-client-sdk.git"
|
|
51
50
|
},
|
|
52
|
-
"homepage": "https://
|
|
51
|
+
"homepage": "https://github.com/GPT-Integrators/gpt-platform-client-sdk",
|
|
53
52
|
"publishConfig": {
|
|
54
53
|
"access": "public"
|
|
55
54
|
},
|