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