@gpt-core/admin 0.9.31 → 0.9.33
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 +7829 -7818
- package/dist/index.d.ts +7829 -7818
- package/dist/index.js +82 -82
- package/dist/index.mjs +82 -82
- package/llms.txt +101 -101
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -914,64 +914,34 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
|
|
|
914
914
|
...options.headers
|
|
915
915
|
}
|
|
916
916
|
});
|
|
917
|
-
var
|
|
917
|
+
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
918
918
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
919
919
|
security: [{ scheme: "bearer", type: "http" }],
|
|
920
|
-
url: "/admin/
|
|
921
|
-
...options,
|
|
922
|
-
headers: {
|
|
923
|
-
"Content-Type": "application/vnd.api+json",
|
|
924
|
-
...options.headers
|
|
925
|
-
}
|
|
926
|
-
});
|
|
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
|
-
},
|
|
935
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
936
|
-
url: "/admin/webhook_configs",
|
|
920
|
+
url: "/admin/webhook-deliveries/{id}",
|
|
937
921
|
...options
|
|
938
922
|
});
|
|
939
|
-
var
|
|
923
|
+
var getAdminApiKeysById = (options) => (options.client ?? client).get({
|
|
940
924
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
941
925
|
security: [{ scheme: "bearer", type: "http" }],
|
|
942
|
-
url: "/admin/
|
|
943
|
-
...options
|
|
944
|
-
headers: {
|
|
945
|
-
"Content-Type": "application/vnd.api+json",
|
|
946
|
-
...options.headers
|
|
947
|
-
}
|
|
926
|
+
url: "/admin/api-keys/{id}",
|
|
927
|
+
...options
|
|
948
928
|
});
|
|
949
929
|
var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
950
930
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
951
931
|
security: [{ scheme: "bearer", type: "http" }],
|
|
952
|
-
url: "/admin/
|
|
932
|
+
url: "/admin/webhook-configs/{id}",
|
|
953
933
|
...options
|
|
954
934
|
});
|
|
955
935
|
var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
956
936
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
957
937
|
security: [{ scheme: "bearer", type: "http" }],
|
|
958
|
-
url: "/admin/
|
|
938
|
+
url: "/admin/webhook-configs/{id}",
|
|
959
939
|
...options
|
|
960
940
|
});
|
|
961
941
|
var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
962
942
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
963
943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
964
|
-
url: "/admin/
|
|
965
|
-
...options,
|
|
966
|
-
headers: {
|
|
967
|
-
"Content-Type": "application/vnd.api+json",
|
|
968
|
-
...options.headers
|
|
969
|
-
}
|
|
970
|
-
});
|
|
971
|
-
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
972
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
973
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
974
|
-
url: "/admin/webhook_configs/{id}/test",
|
|
944
|
+
url: "/admin/webhook-configs/{id}",
|
|
975
945
|
...options,
|
|
976
946
|
headers: {
|
|
977
947
|
"Content-Type": "application/vnd.api+json",
|
|
@@ -988,6 +958,18 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
|
|
|
988
958
|
...options.headers
|
|
989
959
|
}
|
|
990
960
|
});
|
|
961
|
+
var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
962
|
+
querySerializer: {
|
|
963
|
+
parameters: {
|
|
964
|
+
filter: { object: { style: "form" } },
|
|
965
|
+
page: { object: { style: "form" } },
|
|
966
|
+
fields: { object: { style: "form" } }
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
970
|
+
url: "/admin/api-keys",
|
|
971
|
+
...options
|
|
972
|
+
});
|
|
991
973
|
var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
992
974
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
993
975
|
security: [{ scheme: "bearer", type: "http" }],
|
|
@@ -1023,42 +1005,28 @@ var getAdminAccountsById = (options) => (options.client ?? client).get({
|
|
|
1023
1005
|
url: "/admin/accounts/{id}",
|
|
1024
1006
|
...options
|
|
1025
1007
|
});
|
|
1026
|
-
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1027
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1028
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1029
|
-
url: "/admin/api_keys/{id}/allocate",
|
|
1030
|
-
...options,
|
|
1031
|
-
headers: {
|
|
1032
|
-
"Content-Type": "application/vnd.api+json",
|
|
1033
|
-
...options.headers
|
|
1034
|
-
}
|
|
1035
|
-
});
|
|
1036
1008
|
var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1037
1009
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1038
1010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1039
1011
|
url: "/admin/buckets/{id}/stats",
|
|
1040
1012
|
...options
|
|
1041
1013
|
});
|
|
1042
|
-
var
|
|
1043
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1044
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
1045
|
-
url: "/admin/api_keys/{id}/revoke",
|
|
1046
|
-
...options,
|
|
1047
|
-
headers: {
|
|
1048
|
-
"Content-Type": "application/vnd.api+json",
|
|
1049
|
-
...options.headers
|
|
1050
|
-
}
|
|
1051
|
-
});
|
|
1052
|
-
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
1014
|
+
var getAdminDocumentsStats = (options) => (options.client ?? client).get({
|
|
1053
1015
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1054
1016
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1055
|
-
url: "/admin/
|
|
1017
|
+
url: "/admin/documents/stats",
|
|
1056
1018
|
...options
|
|
1057
1019
|
});
|
|
1058
|
-
var
|
|
1059
|
-
querySerializer: {
|
|
1020
|
+
var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1021
|
+
querySerializer: {
|
|
1022
|
+
parameters: {
|
|
1023
|
+
filter: { object: { style: "form" } },
|
|
1024
|
+
page: { object: { style: "form" } },
|
|
1025
|
+
fields: { object: { style: "form" } }
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1060
1028
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1061
|
-
url: "/admin/
|
|
1029
|
+
url: "/admin/webhook-deliveries",
|
|
1062
1030
|
...options
|
|
1063
1031
|
});
|
|
1064
1032
|
var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
|
|
@@ -1078,7 +1046,17 @@ var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
|
1078
1046
|
url: "/admin/buckets/{id}/objects",
|
|
1079
1047
|
...options
|
|
1080
1048
|
});
|
|
1081
|
-
var
|
|
1049
|
+
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1050
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1051
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1052
|
+
url: "/admin/documents/bulk-delete",
|
|
1053
|
+
...options,
|
|
1054
|
+
headers: {
|
|
1055
|
+
"Content-Type": "application/vnd.api+json",
|
|
1056
|
+
...options.headers
|
|
1057
|
+
}
|
|
1058
|
+
});
|
|
1059
|
+
var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
|
|
1082
1060
|
querySerializer: {
|
|
1083
1061
|
parameters: {
|
|
1084
1062
|
filter: { object: { style: "form" } },
|
|
@@ -1087,24 +1065,38 @@ var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
|
1087
1065
|
}
|
|
1088
1066
|
},
|
|
1089
1067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1090
|
-
url: "/admin/
|
|
1068
|
+
url: "/admin/webhook-configs",
|
|
1091
1069
|
...options
|
|
1092
1070
|
});
|
|
1093
|
-
var
|
|
1071
|
+
var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
1094
1072
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1095
1073
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1096
|
-
url: "/admin/
|
|
1074
|
+
url: "/admin/webhook-configs",
|
|
1097
1075
|
...options,
|
|
1098
1076
|
headers: {
|
|
1099
1077
|
"Content-Type": "application/vnd.api+json",
|
|
1100
1078
|
...options.headers
|
|
1101
1079
|
}
|
|
1102
1080
|
});
|
|
1103
|
-
var
|
|
1081
|
+
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1104
1082
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1105
1083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1106
|
-
url: "/admin/
|
|
1107
|
-
...options
|
|
1084
|
+
url: "/admin/api-keys/{id}/allocate",
|
|
1085
|
+
...options,
|
|
1086
|
+
headers: {
|
|
1087
|
+
"Content-Type": "application/vnd.api+json",
|
|
1088
|
+
...options.headers
|
|
1089
|
+
}
|
|
1090
|
+
});
|
|
1091
|
+
var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1092
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1093
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1094
|
+
url: "/admin/api-keys/{id}/revoke",
|
|
1095
|
+
...options,
|
|
1096
|
+
headers: {
|
|
1097
|
+
"Content-Type": "application/vnd.api+json",
|
|
1098
|
+
...options.headers
|
|
1099
|
+
}
|
|
1108
1100
|
});
|
|
1109
1101
|
var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
1110
1102
|
querySerializer: {
|
|
@@ -1117,33 +1109,41 @@ var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
|
1117
1109
|
url: "/admin/buckets",
|
|
1118
1110
|
...options
|
|
1119
1111
|
});
|
|
1112
|
+
var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
1113
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1114
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1115
|
+
url: "/admin/api-keys/{id}/rotate",
|
|
1116
|
+
...options,
|
|
1117
|
+
headers: {
|
|
1118
|
+
"Content-Type": "application/vnd.api+json",
|
|
1119
|
+
...options.headers
|
|
1120
|
+
}
|
|
1121
|
+
});
|
|
1120
1122
|
var getAdminBucketsById = (options) => (options.client ?? client).get({
|
|
1121
1123
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1122
1124
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1123
1125
|
url: "/admin/buckets/{id}",
|
|
1124
1126
|
...options
|
|
1125
1127
|
});
|
|
1126
|
-
var
|
|
1128
|
+
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
1127
1129
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1128
1130
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1129
|
-
url: "/admin/
|
|
1131
|
+
url: "/admin/webhook-configs/{id}/test",
|
|
1130
1132
|
...options,
|
|
1131
1133
|
headers: {
|
|
1132
1134
|
"Content-Type": "application/vnd.api+json",
|
|
1133
1135
|
...options.headers
|
|
1134
1136
|
}
|
|
1135
1137
|
});
|
|
1136
|
-
var
|
|
1137
|
-
querySerializer: {
|
|
1138
|
-
parameters: {
|
|
1139
|
-
filter: { object: { style: "form" } },
|
|
1140
|
-
page: { object: { style: "form" } },
|
|
1141
|
-
fields: { object: { style: "form" } }
|
|
1142
|
-
}
|
|
1143
|
-
},
|
|
1138
|
+
var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
1139
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1144
1140
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1145
|
-
url: "/admin/
|
|
1146
|
-
...options
|
|
1141
|
+
url: "/admin/webhook-deliveries/{id}/retry",
|
|
1142
|
+
...options,
|
|
1143
|
+
headers: {
|
|
1144
|
+
"Content-Type": "application/vnd.api+json",
|
|
1145
|
+
...options.headers
|
|
1146
|
+
}
|
|
1147
1147
|
});
|
|
1148
1148
|
|
|
1149
1149
|
// src/schemas/requests.ts
|
package/dist/index.mjs
CHANGED
|
@@ -866,64 +866,34 @@ var patchAdminAccountsByIdCredit = (options) => (options.client ?? client).patch
|
|
|
866
866
|
...options.headers
|
|
867
867
|
}
|
|
868
868
|
});
|
|
869
|
-
var
|
|
869
|
+
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
870
870
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
871
871
|
security: [{ scheme: "bearer", type: "http" }],
|
|
872
|
-
url: "/admin/
|
|
873
|
-
...options,
|
|
874
|
-
headers: {
|
|
875
|
-
"Content-Type": "application/vnd.api+json",
|
|
876
|
-
...options.headers
|
|
877
|
-
}
|
|
878
|
-
});
|
|
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
|
-
},
|
|
887
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
888
|
-
url: "/admin/webhook_configs",
|
|
872
|
+
url: "/admin/webhook-deliveries/{id}",
|
|
889
873
|
...options
|
|
890
874
|
});
|
|
891
|
-
var
|
|
875
|
+
var getAdminApiKeysById = (options) => (options.client ?? client).get({
|
|
892
876
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
893
877
|
security: [{ scheme: "bearer", type: "http" }],
|
|
894
|
-
url: "/admin/
|
|
895
|
-
...options
|
|
896
|
-
headers: {
|
|
897
|
-
"Content-Type": "application/vnd.api+json",
|
|
898
|
-
...options.headers
|
|
899
|
-
}
|
|
878
|
+
url: "/admin/api-keys/{id}",
|
|
879
|
+
...options
|
|
900
880
|
});
|
|
901
881
|
var deleteAdminWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
902
882
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
903
883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
904
|
-
url: "/admin/
|
|
884
|
+
url: "/admin/webhook-configs/{id}",
|
|
905
885
|
...options
|
|
906
886
|
});
|
|
907
887
|
var getAdminWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
908
888
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
909
889
|
security: [{ scheme: "bearer", type: "http" }],
|
|
910
|
-
url: "/admin/
|
|
890
|
+
url: "/admin/webhook-configs/{id}",
|
|
911
891
|
...options
|
|
912
892
|
});
|
|
913
893
|
var patchAdminWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
914
894
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
915
895
|
security: [{ scheme: "bearer", type: "http" }],
|
|
916
|
-
url: "/admin/
|
|
917
|
-
...options,
|
|
918
|
-
headers: {
|
|
919
|
-
"Content-Type": "application/vnd.api+json",
|
|
920
|
-
...options.headers
|
|
921
|
-
}
|
|
922
|
-
});
|
|
923
|
-
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
924
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
925
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
926
|
-
url: "/admin/webhook_configs/{id}/test",
|
|
896
|
+
url: "/admin/webhook-configs/{id}",
|
|
927
897
|
...options,
|
|
928
898
|
headers: {
|
|
929
899
|
"Content-Type": "application/vnd.api+json",
|
|
@@ -940,6 +910,18 @@ var patchAdminAccountsByIdDebit = (options) => (options.client ?? client).patch(
|
|
|
940
910
|
...options.headers
|
|
941
911
|
}
|
|
942
912
|
});
|
|
913
|
+
var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
914
|
+
querySerializer: {
|
|
915
|
+
parameters: {
|
|
916
|
+
filter: { object: { style: "form" } },
|
|
917
|
+
page: { object: { style: "form" } },
|
|
918
|
+
fields: { object: { style: "form" } }
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
922
|
+
url: "/admin/api-keys",
|
|
923
|
+
...options
|
|
924
|
+
});
|
|
943
925
|
var getAdminExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
944
926
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
945
927
|
security: [{ scheme: "bearer", type: "http" }],
|
|
@@ -975,42 +957,28 @@ var getAdminAccountsById = (options) => (options.client ?? client).get({
|
|
|
975
957
|
url: "/admin/accounts/{id}",
|
|
976
958
|
...options
|
|
977
959
|
});
|
|
978
|
-
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
979
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
980
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
981
|
-
url: "/admin/api_keys/{id}/allocate",
|
|
982
|
-
...options,
|
|
983
|
-
headers: {
|
|
984
|
-
"Content-Type": "application/vnd.api+json",
|
|
985
|
-
...options.headers
|
|
986
|
-
}
|
|
987
|
-
});
|
|
988
960
|
var getAdminBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
989
961
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
990
962
|
security: [{ scheme: "bearer", type: "http" }],
|
|
991
963
|
url: "/admin/buckets/{id}/stats",
|
|
992
964
|
...options
|
|
993
965
|
});
|
|
994
|
-
var
|
|
995
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
996
|
-
security: [{ scheme: "bearer", type: "http" }],
|
|
997
|
-
url: "/admin/api_keys/{id}/revoke",
|
|
998
|
-
...options,
|
|
999
|
-
headers: {
|
|
1000
|
-
"Content-Type": "application/vnd.api+json",
|
|
1001
|
-
...options.headers
|
|
1002
|
-
}
|
|
1003
|
-
});
|
|
1004
|
-
var getAdminWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
966
|
+
var getAdminDocumentsStats = (options) => (options.client ?? client).get({
|
|
1005
967
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1006
968
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1007
|
-
url: "/admin/
|
|
969
|
+
url: "/admin/documents/stats",
|
|
1008
970
|
...options
|
|
1009
971
|
});
|
|
1010
|
-
var
|
|
1011
|
-
querySerializer: {
|
|
972
|
+
var getAdminWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
973
|
+
querySerializer: {
|
|
974
|
+
parameters: {
|
|
975
|
+
filter: { object: { style: "form" } },
|
|
976
|
+
page: { object: { style: "form" } },
|
|
977
|
+
fields: { object: { style: "form" } }
|
|
978
|
+
}
|
|
979
|
+
},
|
|
1012
980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1013
|
-
url: "/admin/
|
|
981
|
+
url: "/admin/webhook-deliveries",
|
|
1014
982
|
...options
|
|
1015
983
|
});
|
|
1016
984
|
var getAdminExtractionDocuments = (options) => (options.client ?? client).get({
|
|
@@ -1030,7 +998,17 @@ var getAdminBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
|
1030
998
|
url: "/admin/buckets/{id}/objects",
|
|
1031
999
|
...options
|
|
1032
1000
|
});
|
|
1033
|
-
var
|
|
1001
|
+
var postAdminDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1002
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1003
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1004
|
+
url: "/admin/documents/bulk-delete",
|
|
1005
|
+
...options,
|
|
1006
|
+
headers: {
|
|
1007
|
+
"Content-Type": "application/vnd.api+json",
|
|
1008
|
+
...options.headers
|
|
1009
|
+
}
|
|
1010
|
+
});
|
|
1011
|
+
var getAdminWebhookConfigs = (options) => (options.client ?? client).get({
|
|
1034
1012
|
querySerializer: {
|
|
1035
1013
|
parameters: {
|
|
1036
1014
|
filter: { object: { style: "form" } },
|
|
@@ -1039,24 +1017,38 @@ var getAdminApiKeys = (options) => (options.client ?? client).get({
|
|
|
1039
1017
|
}
|
|
1040
1018
|
},
|
|
1041
1019
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1042
|
-
url: "/admin/
|
|
1020
|
+
url: "/admin/webhook-configs",
|
|
1043
1021
|
...options
|
|
1044
1022
|
});
|
|
1045
|
-
var
|
|
1023
|
+
var postAdminWebhookConfigs = (options) => (options.client ?? client).post({
|
|
1046
1024
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1047
1025
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1048
|
-
url: "/admin/
|
|
1026
|
+
url: "/admin/webhook-configs",
|
|
1049
1027
|
...options,
|
|
1050
1028
|
headers: {
|
|
1051
1029
|
"Content-Type": "application/vnd.api+json",
|
|
1052
1030
|
...options.headers
|
|
1053
1031
|
}
|
|
1054
1032
|
});
|
|
1055
|
-
var
|
|
1033
|
+
var patchAdminApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1056
1034
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1057
1035
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1058
|
-
url: "/admin/
|
|
1059
|
-
...options
|
|
1036
|
+
url: "/admin/api-keys/{id}/allocate",
|
|
1037
|
+
...options,
|
|
1038
|
+
headers: {
|
|
1039
|
+
"Content-Type": "application/vnd.api+json",
|
|
1040
|
+
...options.headers
|
|
1041
|
+
}
|
|
1042
|
+
});
|
|
1043
|
+
var patchAdminApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1044
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1045
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1046
|
+
url: "/admin/api-keys/{id}/revoke",
|
|
1047
|
+
...options,
|
|
1048
|
+
headers: {
|
|
1049
|
+
"Content-Type": "application/vnd.api+json",
|
|
1050
|
+
...options.headers
|
|
1051
|
+
}
|
|
1060
1052
|
});
|
|
1061
1053
|
var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
1062
1054
|
querySerializer: {
|
|
@@ -1069,33 +1061,41 @@ var getAdminBuckets = (options) => (options.client ?? client).get({
|
|
|
1069
1061
|
url: "/admin/buckets",
|
|
1070
1062
|
...options
|
|
1071
1063
|
});
|
|
1064
|
+
var patchAdminApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
1065
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1066
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1067
|
+
url: "/admin/api-keys/{id}/rotate",
|
|
1068
|
+
...options,
|
|
1069
|
+
headers: {
|
|
1070
|
+
"Content-Type": "application/vnd.api+json",
|
|
1071
|
+
...options.headers
|
|
1072
|
+
}
|
|
1073
|
+
});
|
|
1072
1074
|
var getAdminBucketsById = (options) => (options.client ?? client).get({
|
|
1073
1075
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1074
1076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1075
1077
|
url: "/admin/buckets/{id}",
|
|
1076
1078
|
...options
|
|
1077
1079
|
});
|
|
1078
|
-
var
|
|
1080
|
+
var postAdminWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
1079
1081
|
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1080
1082
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1081
|
-
url: "/admin/
|
|
1083
|
+
url: "/admin/webhook-configs/{id}/test",
|
|
1082
1084
|
...options,
|
|
1083
1085
|
headers: {
|
|
1084
1086
|
"Content-Type": "application/vnd.api+json",
|
|
1085
1087
|
...options.headers
|
|
1086
1088
|
}
|
|
1087
1089
|
});
|
|
1088
|
-
var
|
|
1089
|
-
querySerializer: {
|
|
1090
|
-
parameters: {
|
|
1091
|
-
filter: { object: { style: "form" } },
|
|
1092
|
-
page: { object: { style: "form" } },
|
|
1093
|
-
fields: { object: { style: "form" } }
|
|
1094
|
-
}
|
|
1095
|
-
},
|
|
1090
|
+
var postAdminWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
1091
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1096
1092
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1097
|
-
url: "/admin/
|
|
1098
|
-
...options
|
|
1093
|
+
url: "/admin/webhook-deliveries/{id}/retry",
|
|
1094
|
+
...options,
|
|
1095
|
+
headers: {
|
|
1096
|
+
"Content-Type": "application/vnd.api+json",
|
|
1097
|
+
...options.headers
|
|
1098
|
+
}
|
|
1099
1099
|
});
|
|
1100
1100
|
|
|
1101
1101
|
// src/schemas/requests.ts
|