@gpt-platform/admin 0.2.1 → 0.3.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 +1247 -265
- package/dist/index.d.ts +1247 -265
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/llms.txt +20 -1
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -353,6 +353,19 @@ client.setConfig({
|
|
|
353
353
|
- `postExtractionConfig-enums()` - Create config enums
|
|
354
354
|
- `patchExtractionConfig-enumsById()` - Update config enums
|
|
355
355
|
|
|
356
|
+
## Connector instance
|
|
357
|
+
|
|
358
|
+
- `getConnectors()` - List connectors
|
|
359
|
+
- `getConnectorsById()` - Get connectors
|
|
360
|
+
- `postConnectors()` - Create connectors
|
|
361
|
+
- `postConnectorsFullscriptCheck-patient()` - Create check patient
|
|
362
|
+
- `postConnectorsFullscriptCreate-patient()` - Create create patient
|
|
363
|
+
- `postConnectorsFullscriptSession-grant()` - Create session grant
|
|
364
|
+
- `postConnectorsOauthCallback()` - Create callback
|
|
365
|
+
- `postConnectorsOauthInitiate()` - Create initiate
|
|
366
|
+
- `patchConnectorsById()` - Update connectors
|
|
367
|
+
- `deleteConnectorsById()` - Delete connectors
|
|
368
|
+
|
|
356
369
|
## Consent record
|
|
357
370
|
|
|
358
371
|
- `getConsent-records()` - List consent records
|
|
@@ -401,6 +414,12 @@ client.setConfig({
|
|
|
401
414
|
- `patchCrawlerSite-configsById()` - Update site configs
|
|
402
415
|
- `deleteCrawlerSite-configsById()` - Delete site configs
|
|
403
416
|
|
|
417
|
+
## Credential
|
|
418
|
+
|
|
419
|
+
- `getConnectorsCredentials()` - List credentials
|
|
420
|
+
- `getConnectorsCredentialsById()` - Get credentials
|
|
421
|
+
- `postConnectorsCredentialsByIdRefresh()` - Create refresh
|
|
422
|
+
|
|
404
423
|
## Crm activity
|
|
405
424
|
|
|
406
425
|
- `getCrmActivitiesById()` - Get activities
|
|
@@ -1025,7 +1044,7 @@ client.setConfig({
|
|
|
1025
1044
|
- `getStorage-filesById()` - Get storage files
|
|
1026
1045
|
- `postStorage-files()` - Create storage files
|
|
1027
1046
|
- `patchStorage-filesById()` - Update storage files
|
|
1028
|
-
- `
|
|
1047
|
+
- `patchStorage-filesByIdSoft-delete()` - Update soft delete
|
|
1029
1048
|
|
|
1030
1049
|
## Storage stats
|
|
1031
1050
|
|
package/package.json
CHANGED