@gpt-platform/admin 0.1.3 → 0.1.5
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 +250 -1278
- package/dist/index.d.ts +250 -1278
- package/dist/index.js +42 -287
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +41 -276
- package/dist/index.mjs.map +1 -1
- package/llms.txt +1 -10
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -854,8 +854,6 @@ client.setConfig({
|
|
|
854
854
|
## Presigned url
|
|
855
855
|
|
|
856
856
|
- `postDocumentsPresigned-upload()` - Create presigned upload
|
|
857
|
-
- `postStorageSign-download()` - Create sign download
|
|
858
|
-
- `postStorageSign-upload()` - Create sign upload
|
|
859
857
|
|
|
860
858
|
## Pricing rule
|
|
861
859
|
|
|
@@ -1005,18 +1003,10 @@ client.setConfig({
|
|
|
1005
1003
|
- `getBuckets()` - List buckets
|
|
1006
1004
|
- `getBucketsAll()` - List all
|
|
1007
1005
|
- `getBucketsById()` - Get buckets
|
|
1008
|
-
- `getBucketsByIdObjects()` - Get objects
|
|
1009
1006
|
- `getBucketsByIdStats()` - Get stats
|
|
1010
|
-
- `getObjects()` - List objects
|
|
1011
|
-
- `getObjectsById()` - Get objects
|
|
1012
1007
|
- `postBuckets()` - Create buckets
|
|
1013
|
-
- `postObjectsBulk-destroy()` - Create bulk destroy
|
|
1014
|
-
- `postObjectsCopy()` - Create copy
|
|
1015
|
-
- `postObjectsMove()` - Create move
|
|
1016
|
-
- `postObjectsRegister()` - Create register
|
|
1017
1008
|
- `patchBucketsById()` - Update buckets
|
|
1018
1009
|
- `deleteBucketsById()` - Delete buckets
|
|
1019
|
-
- `deleteObjectsById()` - Delete objects
|
|
1020
1010
|
|
|
1021
1011
|
## Storage stats
|
|
1022
1012
|
|
|
@@ -1132,6 +1122,7 @@ client.setConfig({
|
|
|
1132
1122
|
- `postUsersAuthRegister()` - Create register
|
|
1133
1123
|
- `postUsersAuthRegister-with-oidc()` - Create register with oidc
|
|
1134
1124
|
- `postUsersAuthResend-confirmation()` - Create resend confirmation
|
|
1125
|
+
- `postUsersAuthReset-passwordRequest()` - Create request
|
|
1135
1126
|
- `postUsersRegister-isv()` - Create register isv
|
|
1136
1127
|
- `patchUser-profilesById()` - Update user profiles
|
|
1137
1128
|
- `patchUser-profilesByIdAccept-tos()` - Update accept tos
|
package/package.json
CHANGED