@gpt-core/admin 0.9.30 → 0.9.32
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 +5658 -17540
- package/dist/index.d.ts +5658 -17540
- package/dist/index.js +75 -9
- package/dist/index.mjs +75 -9
- package/llms.txt +39 -34
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -905,6 +905,7 @@ var BaseClient = class {
|
|
|
905
905
|
|
|
906
906
|
// src/_internal/sdk.gen.ts
|
|
907
907
|
var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch({
|
|
908
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
908
909
|
security: [{ scheme: "bearer", type: "http" }],
|
|
909
910
|
url: "/admin/accounts/{id}/credit",
|
|
910
911
|
...options,
|
|
@@ -914,6 +915,7 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
|
|
|
914
915
|
}
|
|
915
916
|
});
|
|
916
917
|
var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
918
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
917
919
|
security: [{ scheme: "bearer", type: "http" }],
|
|
918
920
|
url: "/admin/api_keys/{id}/rotate",
|
|
919
921
|
...options,
|
|
@@ -923,11 +925,19 @@ var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch(
|
|
|
923
925
|
}
|
|
924
926
|
});
|
|
925
927
|
var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
|
|
928
|
+
querySerializer: {
|
|
929
|
+
parameters: {
|
|
930
|
+
filter: { object: { style: "form" } },
|
|
931
|
+
page: { object: { style: "form" } },
|
|
932
|
+
fields: { object: { style: "form" } }
|
|
933
|
+
}
|
|
934
|
+
},
|
|
926
935
|
security: [{ scheme: "bearer", type: "http" }],
|
|
927
936
|
url: "/admin/webhook_configs",
|
|
928
937
|
...options
|
|
929
938
|
});
|
|
930
939
|
var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
940
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
931
941
|
security: [{ scheme: "bearer", type: "http" }],
|
|
932
942
|
url: "/admin/webhook_configs",
|
|
933
943
|
...options,
|
|
@@ -937,16 +947,19 @@ var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
937
947
|
}
|
|
938
948
|
});
|
|
939
949
|
var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
950
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
940
951
|
security: [{ scheme: "bearer", type: "http" }],
|
|
941
952
|
url: "/admin/webhook_configs/{id}",
|
|
942
953
|
...options
|
|
943
954
|
});
|
|
944
955
|
var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
956
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
945
957
|
security: [{ scheme: "bearer", type: "http" }],
|
|
946
958
|
url: "/admin/webhook_configs/{id}",
|
|
947
959
|
...options
|
|
948
960
|
});
|
|
949
961
|
var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
962
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
950
963
|
security: [{ scheme: "bearer", type: "http" }],
|
|
951
964
|
url: "/admin/webhook_configs/{id}",
|
|
952
965
|
...options,
|
|
@@ -956,6 +969,7 @@ var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch
|
|
|
956
969
|
}
|
|
957
970
|
});
|
|
958
971
|
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
972
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
959
973
|
security: [{ scheme: "bearer", type: "http" }],
|
|
960
974
|
url: "/admin/webhook_configs/{id}/test",
|
|
961
975
|
...options,
|
|
@@ -965,6 +979,7 @@ var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).po
|
|
|
965
979
|
}
|
|
966
980
|
});
|
|
967
981
|
var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch({
|
|
982
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
968
983
|
security: [{ scheme: "bearer", type: "http" }],
|
|
969
984
|
url: "/admin/accounts/{id}/debit",
|
|
970
985
|
...options,
|
|
@@ -974,35 +989,42 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
|
|
|
974
989
|
}
|
|
975
990
|
});
|
|
976
991
|
var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
992
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
977
993
|
security: [{ scheme: "bearer", type: "http" }],
|
|
978
994
|
url: "/admin/extraction/documents/{id}",
|
|
979
995
|
...options
|
|
980
996
|
});
|
|
981
997
|
var getAdminAccounts = (options) => (options.client ?? client).get({
|
|
998
|
+
querySerializer: {
|
|
999
|
+
parameters: {
|
|
1000
|
+
filter: { object: { style: "form" } },
|
|
1001
|
+
page: { object: { style: "form" } },
|
|
1002
|
+
fields: { object: { style: "form" } }
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
982
1005
|
security: [{ scheme: "bearer", type: "http" }],
|
|
983
1006
|
url: "/admin/accounts",
|
|
984
1007
|
...options
|
|
985
1008
|
});
|
|
986
1009
|
var getAdminStorageStats = (options) => (options.client ?? client).get({
|
|
1010
|
+
querySerializer: {
|
|
1011
|
+
parameters: {
|
|
1012
|
+
filter: { object: { style: "form" } },
|
|
1013
|
+
fields: { object: { style: "form" } }
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
987
1016
|
security: [{ scheme: "bearer", type: "http" }],
|
|
988
1017
|
url: "/admin/storage/stats",
|
|
989
1018
|
...options
|
|
990
1019
|
});
|
|
991
1020
|
var getAdminAccountsById = (options) => (options.client ?? client).get({
|
|
1021
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
992
1022
|
security: [{ scheme: "bearer", type: "http" }],
|
|
993
1023
|
url: "/admin/accounts/{id}",
|
|
994
1024
|
...options
|
|
995
1025
|
});
|
|
996
|
-
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
997
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
998
|
-
url: "/admin/documents/bulk_delete",
|
|
999
|
-
...options,
|
|
1000
|
-
headers: {
|
|
1001
|
-
"Content-Type": "application/vnd.api+json",
|
|
1002
|
-
...options.headers
|
|
1003
|
-
}
|
|
1004
|
-
});
|
|
1005
1026
|
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1027
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1006
1028
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1007
1029
|
url: "/admin/api_keys/{id}/allocate",
|
|
1008
1030
|
...options,
|
|
@@ -1012,11 +1034,13 @@ var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patc
|
|
|
1012
1034
|
}
|
|
1013
1035
|
});
|
|
1014
1036
|
var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1037
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1015
1038
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1016
1039
|
url: "/admin/buckets/{id}/stats",
|
|
1017
1040
|
...options
|
|
1018
1041
|
});
|
|
1019
1042
|
var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1043
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1020
1044
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1021
1045
|
url: "/admin/api_keys/{id}/revoke",
|
|
1022
1046
|
...options,
|
|
@@ -1026,46 +1050,81 @@ var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch(
|
|
|
1026
1050
|
}
|
|
1027
1051
|
});
|
|
1028
1052
|
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
1053
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1029
1054
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1030
1055
|
url: "/admin/webhook_deliveries/{id}",
|
|
1031
1056
|
...options
|
|
1032
1057
|
});
|
|
1033
1058
|
var getAdminDocumentsStats = (options) => (options.client ?? client).get({
|
|
1059
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1034
1060
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1035
1061
|
url: "/admin/documents/stats",
|
|
1036
1062
|
...options
|
|
1037
1063
|
});
|
|
1038
1064
|
var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
|
|
1065
|
+
querySerializer: {
|
|
1066
|
+
parameters: {
|
|
1067
|
+
filter: { object: { style: "form" } },
|
|
1068
|
+
fields: { object: { style: "form" } }
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1039
1071
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1040
1072
|
url: "/admin/extraction/documents",
|
|
1041
1073
|
...options
|
|
1042
1074
|
});
|
|
1043
1075
|
var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1076
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1044
1077
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1045
1078
|
url: "/admin/buckets/{id}/objects",
|
|
1046
1079
|
...options
|
|
1047
1080
|
});
|
|
1048
1081
|
var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
1082
|
+
querySerializer: {
|
|
1083
|
+
parameters: {
|
|
1084
|
+
filter: { object: { style: "form" } },
|
|
1085
|
+
page: { object: { style: "form" } },
|
|
1086
|
+
fields: { object: { style: "form" } }
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1049
1089
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1050
1090
|
url: "/admin/api_keys",
|
|
1051
1091
|
...options
|
|
1052
1092
|
});
|
|
1093
|
+
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1094
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1095
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1096
|
+
url: "/admin/documents/bulk-delete",
|
|
1097
|
+
...options,
|
|
1098
|
+
headers: {
|
|
1099
|
+
"Content-Type": "application/vnd.api+json",
|
|
1100
|
+
...options.headers
|
|
1101
|
+
}
|
|
1102
|
+
});
|
|
1053
1103
|
var getAdminApiKeysById = (options) => (options.client ?? client).get({
|
|
1104
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1054
1105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1055
1106
|
url: "/admin/api_keys/{id}",
|
|
1056
1107
|
...options
|
|
1057
1108
|
});
|
|
1058
1109
|
var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
1110
|
+
querySerializer: {
|
|
1111
|
+
parameters: {
|
|
1112
|
+
filter: { object: { style: "form" } },
|
|
1113
|
+
fields: { object: { style: "form" } }
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1059
1116
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1060
1117
|
url: "/admin/buckets",
|
|
1061
1118
|
...options
|
|
1062
1119
|
});
|
|
1063
1120
|
var getAdminBucketsById = (options) => (options.client ?? client).get({
|
|
1121
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1064
1122
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1065
1123
|
url: "/admin/buckets/{id}",
|
|
1066
1124
|
...options
|
|
1067
1125
|
});
|
|
1068
1126
|
var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
1127
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1069
1128
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1070
1129
|
url: "/admin/webhook_deliveries/{id}/retry",
|
|
1071
1130
|
...options,
|
|
@@ -1075,6 +1134,13 @@ var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client
|
|
|
1075
1134
|
}
|
|
1076
1135
|
});
|
|
1077
1136
|
var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1137
|
+
querySerializer: {
|
|
1138
|
+
parameters: {
|
|
1139
|
+
filter: { object: { style: "form" } },
|
|
1140
|
+
page: { object: { style: "form" } },
|
|
1141
|
+
fields: { object: { style: "form" } }
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1078
1144
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1079
1145
|
url: "/admin/webhook_deliveries",
|
|
1080
1146
|
...options
|
package/dist/index.mjs
CHANGED
|
@@ -857,6 +857,7 @@ var BaseClient = class {
|
|
|
857
857
|
|
|
858
858
|
// src/_internal/sdk.gen.ts
|
|
859
859
|
var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch({
|
|
860
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
860
861
|
security: [{ scheme: "bearer", type: "http" }],
|
|
861
862
|
url: "/admin/accounts/{id}/credit",
|
|
862
863
|
...options,
|
|
@@ -866,6 +867,7 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
|
|
|
866
867
|
}
|
|
867
868
|
});
|
|
868
869
|
var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
870
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
869
871
|
security: [{ scheme: "bearer", type: "http" }],
|
|
870
872
|
url: "/admin/api_keys/{id}/rotate",
|
|
871
873
|
...options,
|
|
@@ -875,11 +877,19 @@ var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch(
|
|
|
875
877
|
}
|
|
876
878
|
});
|
|
877
879
|
var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
|
|
880
|
+
querySerializer: {
|
|
881
|
+
parameters: {
|
|
882
|
+
filter: { object: { style: "form" } },
|
|
883
|
+
page: { object: { style: "form" } },
|
|
884
|
+
fields: { object: { style: "form" } }
|
|
885
|
+
}
|
|
886
|
+
},
|
|
878
887
|
security: [{ scheme: "bearer", type: "http" }],
|
|
879
888
|
url: "/admin/webhook_configs",
|
|
880
889
|
...options
|
|
881
890
|
});
|
|
882
891
|
var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
892
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
883
893
|
security: [{ scheme: "bearer", type: "http" }],
|
|
884
894
|
url: "/admin/webhook_configs",
|
|
885
895
|
...options,
|
|
@@ -889,16 +899,19 @@ var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
889
899
|
}
|
|
890
900
|
});
|
|
891
901
|
var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
902
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
892
903
|
security: [{ scheme: "bearer", type: "http" }],
|
|
893
904
|
url: "/admin/webhook_configs/{id}",
|
|
894
905
|
...options
|
|
895
906
|
});
|
|
896
907
|
var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
908
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
897
909
|
security: [{ scheme: "bearer", type: "http" }],
|
|
898
910
|
url: "/admin/webhook_configs/{id}",
|
|
899
911
|
...options
|
|
900
912
|
});
|
|
901
913
|
var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
914
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
902
915
|
security: [{ scheme: "bearer", type: "http" }],
|
|
903
916
|
url: "/admin/webhook_configs/{id}",
|
|
904
917
|
...options,
|
|
@@ -908,6 +921,7 @@ var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch
|
|
|
908
921
|
}
|
|
909
922
|
});
|
|
910
923
|
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
924
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
911
925
|
security: [{ scheme: "bearer", type: "http" }],
|
|
912
926
|
url: "/admin/webhook_configs/{id}/test",
|
|
913
927
|
...options,
|
|
@@ -917,6 +931,7 @@ var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).po
|
|
|
917
931
|
}
|
|
918
932
|
});
|
|
919
933
|
var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch({
|
|
934
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
920
935
|
security: [{ scheme: "bearer", type: "http" }],
|
|
921
936
|
url: "/admin/accounts/{id}/debit",
|
|
922
937
|
...options,
|
|
@@ -926,35 +941,42 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
|
|
|
926
941
|
}
|
|
927
942
|
});
|
|
928
943
|
var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
944
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
929
945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
930
946
|
url: "/admin/extraction/documents/{id}",
|
|
931
947
|
...options
|
|
932
948
|
});
|
|
933
949
|
var getAdminAccounts = (options) => (options.client ?? client).get({
|
|
950
|
+
querySerializer: {
|
|
951
|
+
parameters: {
|
|
952
|
+
filter: { object: { style: "form" } },
|
|
953
|
+
page: { object: { style: "form" } },
|
|
954
|
+
fields: { object: { style: "form" } }
|
|
955
|
+
}
|
|
956
|
+
},
|
|
934
957
|
security: [{ scheme: "bearer", type: "http" }],
|
|
935
958
|
url: "/admin/accounts",
|
|
936
959
|
...options
|
|
937
960
|
});
|
|
938
961
|
var getAdminStorageStats = (options) => (options.client ?? client).get({
|
|
962
|
+
querySerializer: {
|
|
963
|
+
parameters: {
|
|
964
|
+
filter: { object: { style: "form" } },
|
|
965
|
+
fields: { object: { style: "form" } }
|
|
966
|
+
}
|
|
967
|
+
},
|
|
939
968
|
security: [{ scheme: "bearer", type: "http" }],
|
|
940
969
|
url: "/admin/storage/stats",
|
|
941
970
|
...options
|
|
942
971
|
});
|
|
943
972
|
var getAdminAccountsById = (options) => (options.client ?? client).get({
|
|
973
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
944
974
|
security: [{ scheme: "bearer", type: "http" }],
|
|
945
975
|
url: "/admin/accounts/{id}",
|
|
946
976
|
...options
|
|
947
977
|
});
|
|
948
|
-
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
949
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
950
|
-
url: "/admin/documents/bulk_delete",
|
|
951
|
-
...options,
|
|
952
|
-
headers: {
|
|
953
|
-
"Content-Type": "application/vnd.api+json",
|
|
954
|
-
...options.headers
|
|
955
|
-
}
|
|
956
|
-
});
|
|
957
978
|
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
979
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
958
980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
959
981
|
url: "/admin/api_keys/{id}/allocate",
|
|
960
982
|
...options,
|
|
@@ -964,11 +986,13 @@ var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patc
|
|
|
964
986
|
}
|
|
965
987
|
});
|
|
966
988
|
var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
989
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
967
990
|
security: [{ scheme: "bearer", type: "http" }],
|
|
968
991
|
url: "/admin/buckets/{id}/stats",
|
|
969
992
|
...options
|
|
970
993
|
});
|
|
971
994
|
var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
995
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
972
996
|
security: [{ scheme: "bearer", type: "http" }],
|
|
973
997
|
url: "/admin/api_keys/{id}/revoke",
|
|
974
998
|
...options,
|
|
@@ -978,46 +1002,81 @@ var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch(
|
|
|
978
1002
|
}
|
|
979
1003
|
});
|
|
980
1004
|
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
1005
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
981
1006
|
security: [{ scheme: "bearer", type: "http" }],
|
|
982
1007
|
url: "/admin/webhook_deliveries/{id}",
|
|
983
1008
|
...options
|
|
984
1009
|
});
|
|
985
1010
|
var getAdminDocumentsStats = (options) => (options.client ?? client).get({
|
|
1011
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
986
1012
|
security: [{ scheme: "bearer", type: "http" }],
|
|
987
1013
|
url: "/admin/documents/stats",
|
|
988
1014
|
...options
|
|
989
1015
|
});
|
|
990
1016
|
var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
|
|
1017
|
+
querySerializer: {
|
|
1018
|
+
parameters: {
|
|
1019
|
+
filter: { object: { style: "form" } },
|
|
1020
|
+
fields: { object: { style: "form" } }
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
991
1023
|
security: [{ scheme: "bearer", type: "http" }],
|
|
992
1024
|
url: "/admin/extraction/documents",
|
|
993
1025
|
...options
|
|
994
1026
|
});
|
|
995
1027
|
var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1028
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
996
1029
|
security: [{ scheme: "bearer", type: "http" }],
|
|
997
1030
|
url: "/admin/buckets/{id}/objects",
|
|
998
1031
|
...options
|
|
999
1032
|
});
|
|
1000
1033
|
var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
1034
|
+
querySerializer: {
|
|
1035
|
+
parameters: {
|
|
1036
|
+
filter: { object: { style: "form" } },
|
|
1037
|
+
page: { object: { style: "form" } },
|
|
1038
|
+
fields: { object: { style: "form" } }
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1001
1041
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1002
1042
|
url: "/admin/api_keys",
|
|
1003
1043
|
...options
|
|
1004
1044
|
});
|
|
1045
|
+
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1046
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1047
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1048
|
+
url: "/admin/documents/bulk-delete",
|
|
1049
|
+
...options,
|
|
1050
|
+
headers: {
|
|
1051
|
+
"Content-Type": "application/vnd.api+json",
|
|
1052
|
+
...options.headers
|
|
1053
|
+
}
|
|
1054
|
+
});
|
|
1005
1055
|
var getAdminApiKeysById = (options) => (options.client ?? client).get({
|
|
1056
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1006
1057
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1007
1058
|
url: "/admin/api_keys/{id}",
|
|
1008
1059
|
...options
|
|
1009
1060
|
});
|
|
1010
1061
|
var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
1062
|
+
querySerializer: {
|
|
1063
|
+
parameters: {
|
|
1064
|
+
filter: { object: { style: "form" } },
|
|
1065
|
+
fields: { object: { style: "form" } }
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1011
1068
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1012
1069
|
url: "/admin/buckets",
|
|
1013
1070
|
...options
|
|
1014
1071
|
});
|
|
1015
1072
|
var getAdminBucketsById = (options) => (options.client ?? client).get({
|
|
1073
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1016
1074
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1017
1075
|
url: "/admin/buckets/{id}",
|
|
1018
1076
|
...options
|
|
1019
1077
|
});
|
|
1020
1078
|
var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
1079
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1021
1080
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1022
1081
|
url: "/admin/webhook_deliveries/{id}/retry",
|
|
1023
1082
|
...options,
|
|
@@ -1027,6 +1086,13 @@ var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client
|
|
|
1027
1086
|
}
|
|
1028
1087
|
});
|
|
1029
1088
|
var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1089
|
+
querySerializer: {
|
|
1090
|
+
parameters: {
|
|
1091
|
+
filter: { object: { style: "form" } },
|
|
1092
|
+
page: { object: { style: "form" } },
|
|
1093
|
+
fields: { object: { style: "form" } }
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1030
1096
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1031
1097
|
url: "/admin/webhook_deliveries",
|
|
1032
1098
|
...options
|
package/llms.txt
CHANGED
|
@@ -41,7 +41,7 @@ client.setConfig({
|
|
|
41
41
|
|
|
42
42
|
## Agent training stats
|
|
43
43
|
|
|
44
|
-
- `
|
|
44
|
+
- `getAgentsByIdTraining-stats()` - Get training stats
|
|
45
45
|
|
|
46
46
|
## Agent usage
|
|
47
47
|
|
|
@@ -62,20 +62,24 @@ client.setConfig({
|
|
|
62
62
|
- `getAgents()` - List agents
|
|
63
63
|
- `getAgentsById()` - Get agents
|
|
64
64
|
- `getAgentsByIdSchemaVersions()` - Get schema versions
|
|
65
|
+
- `getAgentsByIdTraining-examples()` - Get training examples
|
|
65
66
|
- `getAgentVersions()` - List agent versions
|
|
66
67
|
- `getAgentVersionsById()` - Get agent versions
|
|
67
68
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
68
69
|
- `getAgentVersionsByIdRevisions()` - Get revisions
|
|
70
|
+
- `postAgentsByIdAnalyze-training()` - Create analyze training
|
|
69
71
|
- `postAgentsByIdClone()` - Create clone
|
|
70
72
|
- `postAgentsByIdDiscoverSchema()` - Create discover schema
|
|
71
73
|
- `postAgentsByIdExport()` - Create export
|
|
72
|
-
- `
|
|
74
|
+
- `postAgentsByIdPublish-version()` - Create publish version
|
|
75
|
+
- `postAgentsByIdRestore-version()` - Create restore version
|
|
73
76
|
- `postAgentsByIdSchemaVersions()` - Create schema versions
|
|
74
77
|
- `postAgentsByIdSchemaVersionsByVersionIdActivate()` - Create activate
|
|
75
78
|
- `postAgentsByIdTeach()` - Create teach
|
|
76
79
|
- `postAgentsByIdTest()` - Create test
|
|
77
80
|
- `postAgentsByIdValidate()` - Create validate
|
|
78
|
-
- `
|
|
81
|
+
- `postAgentsClone-for-workspace()` - Create clone for workspace
|
|
82
|
+
- `postAgentsDiscover-schema()` - Create discover schema
|
|
79
83
|
- `postAgentsImport()` - Create import
|
|
80
84
|
- `postAgentsPredict()` - Create predict
|
|
81
85
|
- `postAgentVersions()` - Create agent versions
|
|
@@ -83,6 +87,7 @@ client.setConfig({
|
|
|
83
87
|
- `postAgentVersionsByIdRemoveSystemField()` - Create remove system field
|
|
84
88
|
- `postAgentVersionsByIdSetSystemFields()` - Create set system fields
|
|
85
89
|
- `patchAgentsByIdSchemaVersionsByVersionId()` - Update schema versions
|
|
90
|
+
- `deleteAgentsByIdTraining-examplesByExampleId()` - Delete training examples
|
|
86
91
|
- `deleteAgentVersionsById()` - Delete agent versions
|
|
87
92
|
|
|
88
93
|
## Ai config
|
|
@@ -94,16 +99,16 @@ client.setConfig({
|
|
|
94
99
|
|
|
95
100
|
## AI Training
|
|
96
101
|
|
|
97
|
-
- `
|
|
98
|
-
- `
|
|
102
|
+
- `getTraining-examples()` - List training examples
|
|
103
|
+
- `getTraining-examplesById()` - Get training examples
|
|
99
104
|
- `getTrainingSessionsAgentsByAgentIdSessions()` - Get sessions
|
|
100
105
|
- `getTrainingSessionsById()` - Get training sessions
|
|
101
|
-
- `
|
|
102
|
-
- `
|
|
103
|
-
- `
|
|
104
|
-
- `
|
|
105
|
-
- `
|
|
106
|
-
- `
|
|
106
|
+
- `postTraining-examples()` - Create training examples
|
|
107
|
+
- `postTraining-examplesBulk()` - Create bulk
|
|
108
|
+
- `postTraining-examplesBulk-delete()` - Create bulk delete
|
|
109
|
+
- `postTraining-examplesSearch()` - Create search
|
|
110
|
+
- `patchTraining-examplesById()` - Update training examples
|
|
111
|
+
- `deleteTraining-examplesById()` - Delete training examples
|
|
107
112
|
- `deleteTrainingSessionsById()` - Delete training sessions
|
|
108
113
|
|
|
109
114
|
## Analytics
|
|
@@ -129,7 +134,7 @@ client.setConfig({
|
|
|
129
134
|
- `patchApiKeysByIdReset-period()` - Update reset period
|
|
130
135
|
- `patchApiKeysByIdRevoke()` - Update revoke
|
|
131
136
|
- `patchApiKeysByIdRotate()` - Update rotate
|
|
132
|
-
- `
|
|
137
|
+
- `patchApiKeysByIdSet-budget()` - Update set budget
|
|
133
138
|
- `deleteApiKeysById()` - Delete api keys
|
|
134
139
|
|
|
135
140
|
## Applications
|
|
@@ -166,9 +171,9 @@ client.setConfig({
|
|
|
166
171
|
- `getSubscriptionsBy-tenantByTenantId()` - Get by tenant
|
|
167
172
|
- `getSubscriptionsById()` - Get subscriptions
|
|
168
173
|
- `getWallet()` - List wallet
|
|
169
|
-
- `
|
|
174
|
+
- `getWalletStorage-breakdown()` - List storage breakdown
|
|
170
175
|
- `getWalletUsage()` - List usage
|
|
171
|
-
- `
|
|
176
|
+
- `getWalletUsage-breakdown()` - List usage breakdown
|
|
172
177
|
- `postCreditPackages()` - Create credit packages
|
|
173
178
|
- `postPlans()` - Create plans
|
|
174
179
|
- `postSubscriptions()` - Create subscriptions
|
|
@@ -233,21 +238,21 @@ client.setConfig({
|
|
|
233
238
|
- `getExtractionDocumentsByIdStatus()` - Get status
|
|
234
239
|
- `getExtractionDocumentsByIdView()` - Get view
|
|
235
240
|
- `getExtractionDocumentsWorkspaceByWorkspaceId()` - Get workspace
|
|
236
|
-
- `
|
|
241
|
+
- `getExtractionDocumentsWorkspaceByWorkspaceIdBy-statusByStatus()` - Get by status
|
|
237
242
|
- `getExtractionDocumentsWorkspaceByWorkspaceIdExcluded()` - Get excluded
|
|
238
|
-
- `
|
|
243
|
+
- `getExtractionDocumentsWorkspaceByWorkspaceIdReview-queue()` - Get review queue
|
|
239
244
|
- `getExtractionDocumentsWorkspaceByWorkspaceIdTrained()` - Get trained
|
|
240
245
|
- `getExtractionDocumentsWorkspaceByWorkspaceIdTrashed()` - Get trashed
|
|
241
|
-
- `
|
|
242
|
-
- `
|
|
246
|
+
- `postExtractionDocumentsBegin-upload()` - Create begin upload
|
|
247
|
+
- `postExtractionDocumentsFind-or-begin-upload()` - Create find or begin upload
|
|
243
248
|
- `postExtractionDocumentsUpload()` - Create upload
|
|
244
249
|
- `patchExtractionDocumentsByIdCancel()` - Update cancel
|
|
245
250
|
- `patchExtractionDocumentsByIdDismiss()` - Update dismiss
|
|
246
251
|
- `patchExtractionDocumentsByIdDismiss-training()` - Update dismiss training
|
|
247
252
|
- `patchExtractionDocumentsByIdExclude()` - Update exclude
|
|
248
|
-
- `
|
|
253
|
+
- `patchExtractionDocumentsByIdFinish-upload()` - Update finish upload
|
|
249
254
|
- `patchExtractionDocumentsByIdInclude()` - Update include
|
|
250
|
-
- `
|
|
255
|
+
- `patchExtractionDocumentsByIdMark-trained()` - Update mark trained
|
|
251
256
|
- `patchExtractionDocumentsByIdReprocess()` - Update reprocess
|
|
252
257
|
- `patchExtractionDocumentsByIdRestore()` - Update restore
|
|
253
258
|
- `patchExtractionDocumentsByIdStatus()` - Update status
|
|
@@ -294,7 +299,7 @@ client.setConfig({
|
|
|
294
299
|
- `getExtractionResultsWorkspaceByWorkspaceId()` - Get workspace
|
|
295
300
|
- `patchExtractionResultsById()` - Update results
|
|
296
301
|
- `patchExtractionResultsByIdRegenerate()` - Update regenerate
|
|
297
|
-
- `
|
|
302
|
+
- `patchExtractionResultsByIdSave-corrections()` - Update save corrections
|
|
298
303
|
- `deleteExtractionResultsById()` - Delete results
|
|
299
304
|
|
|
300
305
|
## Field mapping confirmation
|
|
@@ -318,7 +323,7 @@ client.setConfig({
|
|
|
318
323
|
- `getInvitationsConsumeByToken()` - Get consume
|
|
319
324
|
- `getInvitationsMe()` - List me
|
|
320
325
|
- `postInvitations()` - Create invitations
|
|
321
|
-
- `
|
|
326
|
+
- `postInvitationsAccept-by-token()` - Create accept by token
|
|
322
327
|
- `patchInvitationsByIdAccept()` - Update accept
|
|
323
328
|
- `patchInvitationsByIdAccept-by-user()` - Update accept by user
|
|
324
329
|
- `patchInvitationsByIdDecline()` - Update decline
|
|
@@ -342,7 +347,7 @@ client.setConfig({
|
|
|
342
347
|
|
|
343
348
|
- `getAiGraphEdges()` - List edges
|
|
344
349
|
- `getAiGraphNodes()` - List nodes
|
|
345
|
-
- `
|
|
350
|
+
- `getAiGraphNodesBySource-node-idRelated()` - Get related
|
|
346
351
|
- `getAiGraphNodesLabelByLabel()` - Get label
|
|
347
352
|
- `postAiGraphEdges()` - Create edges
|
|
348
353
|
- `postAiGraphNodes()` - Create nodes
|
|
@@ -381,8 +386,8 @@ client.setConfig({
|
|
|
381
386
|
- `getNotificationMethodsById()` - Get notification methods
|
|
382
387
|
- `postNotificationMethods()` - Create notification methods
|
|
383
388
|
- `patchNotificationMethodsById()` - Update notification methods
|
|
384
|
-
- `
|
|
385
|
-
- `
|
|
389
|
+
- `patchNotificationMethodsByIdSend-verification()` - Update send verification
|
|
390
|
+
- `patchNotificationMethodsByIdSet-primary()` - Update set primary
|
|
386
391
|
- `patchNotificationMethodsByIdVerify()` - Update verify
|
|
387
392
|
- `deleteNotificationMethodsById()` - Delete notification methods
|
|
388
393
|
|
|
@@ -396,7 +401,7 @@ client.setConfig({
|
|
|
396
401
|
|
|
397
402
|
## Operation success
|
|
398
403
|
|
|
399
|
-
- `
|
|
404
|
+
- `postDocumentsBulk-delete()` - Create bulk delete
|
|
400
405
|
|
|
401
406
|
## Payment method
|
|
402
407
|
|
|
@@ -423,9 +428,9 @@ client.setConfig({
|
|
|
423
428
|
|
|
424
429
|
## Presigned url
|
|
425
430
|
|
|
426
|
-
- `
|
|
427
|
-
- `
|
|
428
|
-
- `
|
|
431
|
+
- `postDocumentsPresigned-upload()` - Create presigned upload
|
|
432
|
+
- `postStorageSign-download()` - Create sign download
|
|
433
|
+
- `postStorageSign-upload()` - Create sign upload
|
|
429
434
|
|
|
430
435
|
## Pricing rule
|
|
431
436
|
|
|
@@ -611,12 +616,12 @@ client.setConfig({
|
|
|
611
616
|
- `postUserProfiles()` - Create user profiles
|
|
612
617
|
- `postUsersAuthConfirm()` - Create confirm
|
|
613
618
|
- `postUsersAuthLogin()` - Create login
|
|
614
|
-
- `
|
|
615
|
-
- `
|
|
619
|
+
- `postUsersAuthMagic-linkLogin()` - Create login
|
|
620
|
+
- `postUsersAuthMagic-linkRequest()` - Create request
|
|
616
621
|
- `postUsersAuthRegister()` - Create register
|
|
617
|
-
- `
|
|
622
|
+
- `postUsersAuthRegister-with-oidc()` - Create register with oidc
|
|
618
623
|
- `postUsersAuthResend-confirmation()` - Create resend confirmation
|
|
619
|
-
- `
|
|
624
|
+
- `postUsersRegister-isv()` - Create register isv
|
|
620
625
|
- `patchUserProfilesById()` - Update user profiles
|
|
621
626
|
- `patchUserProfilesByIdAccept-tos()` - Update accept tos
|
|
622
627
|
- `patchUserProfilesByIdDismiss-announcement()` - Update dismiss announcement
|
|
@@ -647,7 +652,7 @@ client.setConfig({
|
|
|
647
652
|
- `postWebhookDeliveriesBulkRetry()` - Create bulk retry
|
|
648
653
|
- `postWebhookDeliveriesByIdRetry()` - Create retry
|
|
649
654
|
- `patchWebhookConfigsById()` - Update webhook configs
|
|
650
|
-
- `
|
|
655
|
+
- `patchWebhookConfigsByIdRotate-secret()` - Update rotate secret
|
|
651
656
|
- `deleteWebhookConfigsById()` - Delete webhook configs
|
|
652
657
|
|
|
653
658
|
## Wholesale-agreement
|