@gpt-core/client 0.5.1 → 0.5.3
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 +648 -4813
- package/dist/index.d.ts +648 -4813
- package/dist/index.js +449 -0
- package/dist/index.mjs +449 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -829,6 +829,7 @@ var client = createClient(
|
|
|
829
829
|
|
|
830
830
|
// src/_internal/sdk.gen.ts
|
|
831
831
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
832
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
832
833
|
security: [{ scheme: "bearer", type: "http" }],
|
|
833
834
|
url: "/ai/search/advanced",
|
|
834
835
|
...options,
|
|
@@ -838,21 +839,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
838
839
|
}
|
|
839
840
|
});
|
|
840
841
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
842
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
841
843
|
security: [{ scheme: "bearer", type: "http" }],
|
|
842
844
|
url: "/extraction/documents/{id}",
|
|
843
845
|
...options
|
|
844
846
|
});
|
|
845
847
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
848
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
846
849
|
security: [{ scheme: "bearer", type: "http" }],
|
|
847
850
|
url: "/extraction/documents/{id}",
|
|
848
851
|
...options
|
|
849
852
|
});
|
|
850
853
|
var getThreads = (options) => (options.client ?? client).get({
|
|
854
|
+
querySerializer: {
|
|
855
|
+
parameters: {
|
|
856
|
+
filter: { object: { style: "form" } },
|
|
857
|
+
page: { object: { style: "form" } },
|
|
858
|
+
fields: { object: { style: "form" } }
|
|
859
|
+
}
|
|
860
|
+
},
|
|
851
861
|
security: [{ scheme: "bearer", type: "http" }],
|
|
852
862
|
url: "/threads",
|
|
853
863
|
...options
|
|
854
864
|
});
|
|
855
865
|
var postThreads = (options) => (options.client ?? client).post({
|
|
866
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
856
867
|
security: [{ scheme: "bearer", type: "http" }],
|
|
857
868
|
url: "/threads",
|
|
858
869
|
...options,
|
|
@@ -862,26 +873,36 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
862
873
|
}
|
|
863
874
|
});
|
|
864
875
|
var getExtractionSchemasWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
876
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
865
877
|
security: [{ scheme: "bearer", type: "http" }],
|
|
866
878
|
url: "/extraction/schemas/workspace/{workspace_id}",
|
|
867
879
|
...options
|
|
868
880
|
});
|
|
869
881
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
882
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
870
883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
871
884
|
url: "/llm_analytics/costs",
|
|
872
885
|
...options
|
|
873
886
|
});
|
|
874
887
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
888
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
875
889
|
security: [{ scheme: "bearer", type: "http" }],
|
|
876
890
|
url: "/ai/chunks/document/{document_id}",
|
|
877
891
|
...options
|
|
878
892
|
});
|
|
879
893
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
894
|
+
querySerializer: {
|
|
895
|
+
parameters: {
|
|
896
|
+
filter: { object: { style: "form" } },
|
|
897
|
+
fields: { object: { style: "form" } }
|
|
898
|
+
}
|
|
899
|
+
},
|
|
880
900
|
security: [{ scheme: "bearer", type: "http" }],
|
|
881
901
|
url: "/workspaces",
|
|
882
902
|
...options
|
|
883
903
|
});
|
|
884
904
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
905
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
885
906
|
security: [{ scheme: "bearer", type: "http" }],
|
|
886
907
|
url: "/workspaces",
|
|
887
908
|
...options,
|
|
@@ -891,11 +912,13 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
891
912
|
}
|
|
892
913
|
});
|
|
893
914
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
915
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
894
916
|
security: [{ scheme: "bearer", type: "http" }],
|
|
895
917
|
url: "/documents/stats",
|
|
896
918
|
...options
|
|
897
919
|
});
|
|
898
920
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
921
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
899
922
|
security: [{ scheme: "bearer", type: "http" }],
|
|
900
923
|
url: "/objects/register",
|
|
901
924
|
...options,
|
|
@@ -905,21 +928,30 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
905
928
|
}
|
|
906
929
|
});
|
|
907
930
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
931
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
908
932
|
security: [{ scheme: "bearer", type: "http" }],
|
|
909
933
|
url: "/llm_analytics/workspace",
|
|
910
934
|
...options
|
|
911
935
|
});
|
|
912
936
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
937
|
+
querySerializer: {
|
|
938
|
+
parameters: {
|
|
939
|
+
filter: { object: { style: "form" } },
|
|
940
|
+
fields: { object: { style: "form" } }
|
|
941
|
+
}
|
|
942
|
+
},
|
|
913
943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
914
944
|
url: "/search/indexes",
|
|
915
945
|
...options
|
|
916
946
|
});
|
|
917
947
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
948
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
918
949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
919
950
|
url: "/credit-packages/slug/{slug}",
|
|
920
951
|
...options
|
|
921
952
|
});
|
|
922
953
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
923
955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
924
956
|
url: "/extraction/batches",
|
|
925
957
|
...options,
|
|
@@ -929,11 +961,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
929
961
|
}
|
|
930
962
|
});
|
|
931
963
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
964
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
932
965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
933
966
|
url: "/llm_analytics/platform",
|
|
934
967
|
...options
|
|
935
968
|
});
|
|
936
969
|
var postPayments = (options) => (options.client ?? client).post({
|
|
970
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
937
971
|
security: [{ scheme: "bearer", type: "http" }],
|
|
938
972
|
url: "/payments",
|
|
939
973
|
...options,
|
|
@@ -943,11 +977,18 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
943
977
|
}
|
|
944
978
|
});
|
|
945
979
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
980
|
+
querySerializer: {
|
|
981
|
+
parameters: {
|
|
982
|
+
filter: { object: { style: "form" } },
|
|
983
|
+
fields: { object: { style: "form" } }
|
|
984
|
+
}
|
|
985
|
+
},
|
|
946
986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
947
987
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
948
988
|
...options
|
|
949
989
|
});
|
|
950
990
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
991
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
951
992
|
security: [{ scheme: "bearer", type: "http" }],
|
|
952
993
|
url: "/api_keys/{id}/revoke",
|
|
953
994
|
...options,
|
|
@@ -957,16 +998,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
957
998
|
}
|
|
958
999
|
});
|
|
959
1000
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1001
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
960
1002
|
security: [{ scheme: "bearer", type: "http" }],
|
|
961
1003
|
url: "/invitations/consume/{token}",
|
|
962
1004
|
...options
|
|
963
1005
|
});
|
|
964
1006
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1007
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
965
1008
|
security: [{ scheme: "bearer", type: "http" }],
|
|
966
1009
|
url: "/extraction/documents/{id}/status",
|
|
967
1010
|
...options
|
|
968
1011
|
});
|
|
969
1012
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1013
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
970
1014
|
security: [{ scheme: "bearer", type: "http" }],
|
|
971
1015
|
url: "/extraction/documents/{id}/status",
|
|
972
1016
|
...options,
|
|
@@ -976,6 +1020,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
976
1020
|
}
|
|
977
1021
|
});
|
|
978
1022
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1023
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
979
1024
|
security: [{ scheme: "bearer", type: "http" }],
|
|
980
1025
|
url: "/extraction/documents/{id}/finish_upload",
|
|
981
1026
|
...options,
|
|
@@ -985,6 +1030,7 @@ var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? c
|
|
|
985
1030
|
}
|
|
986
1031
|
});
|
|
987
1032
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1033
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
988
1034
|
security: [{ scheme: "bearer", type: "http" }],
|
|
989
1035
|
url: "/workspaces/{id}/allocate",
|
|
990
1036
|
...options,
|
|
@@ -994,6 +1040,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
994
1040
|
}
|
|
995
1041
|
});
|
|
996
1042
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1043
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
997
1044
|
security: [{ scheme: "bearer", type: "http" }],
|
|
998
1045
|
url: "/threads/active",
|
|
999
1046
|
...options,
|
|
@@ -1003,6 +1050,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1003
1050
|
}
|
|
1004
1051
|
});
|
|
1005
1052
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1053
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1006
1054
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1007
1055
|
url: "/invitations/{id}/revoke",
|
|
1008
1056
|
...options,
|
|
@@ -1012,11 +1060,19 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1012
1060
|
}
|
|
1013
1061
|
});
|
|
1014
1062
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1063
|
+
querySerializer: {
|
|
1064
|
+
parameters: {
|
|
1065
|
+
filter: { object: { style: "form" } },
|
|
1066
|
+
page: { object: { style: "form" } },
|
|
1067
|
+
fields: { object: { style: "form" } }
|
|
1068
|
+
}
|
|
1069
|
+
},
|
|
1015
1070
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1016
1071
|
url: "/configs",
|
|
1017
1072
|
...options
|
|
1018
1073
|
});
|
|
1019
1074
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1075
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1020
1076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1021
1077
|
url: "/configs",
|
|
1022
1078
|
...options,
|
|
@@ -1026,6 +1082,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1026
1082
|
}
|
|
1027
1083
|
});
|
|
1028
1084
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1085
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1029
1086
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1030
1087
|
url: "/tokens",
|
|
1031
1088
|
...options,
|
|
@@ -1035,16 +1092,19 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1035
1092
|
}
|
|
1036
1093
|
});
|
|
1037
1094
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1095
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1038
1096
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1039
1097
|
url: "/training_examples/{id}",
|
|
1040
1098
|
...options
|
|
1041
1099
|
});
|
|
1042
1100
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1101
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1043
1102
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1044
1103
|
url: "/training_examples/{id}",
|
|
1045
1104
|
...options
|
|
1046
1105
|
});
|
|
1047
1106
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1107
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1048
1108
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1049
1109
|
url: "/training_examples/{id}",
|
|
1050
1110
|
...options,
|
|
@@ -1054,11 +1114,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1054
1114
|
}
|
|
1055
1115
|
});
|
|
1056
1116
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1117
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1057
1118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1058
1119
|
url: "/search/saved/{id}",
|
|
1059
1120
|
...options
|
|
1060
1121
|
});
|
|
1061
1122
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1123
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1062
1124
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1063
1125
|
url: "/users/auth/reset-password",
|
|
1064
1126
|
...options,
|
|
@@ -1068,16 +1130,19 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1068
1130
|
}
|
|
1069
1131
|
});
|
|
1070
1132
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1133
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1071
1134
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1072
1135
|
url: "/buckets/{id}/stats",
|
|
1073
1136
|
...options
|
|
1074
1137
|
});
|
|
1075
1138
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1139
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1076
1140
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1077
1141
|
url: "/buckets/{id}/objects",
|
|
1078
1142
|
...options
|
|
1079
1143
|
});
|
|
1080
1144
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1145
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1081
1146
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1082
1147
|
url: "/invitations/{id}/resend",
|
|
1083
1148
|
...options,
|
|
@@ -1087,11 +1152,18 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1087
1152
|
}
|
|
1088
1153
|
});
|
|
1089
1154
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1155
|
+
querySerializer: {
|
|
1156
|
+
parameters: {
|
|
1157
|
+
filter: { object: { style: "form" } },
|
|
1158
|
+
fields: { object: { style: "form" } }
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1090
1161
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1091
1162
|
url: "/search/saved",
|
|
1092
1163
|
...options
|
|
1093
1164
|
});
|
|
1094
1165
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1166
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1095
1167
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1096
1168
|
url: "/search/saved",
|
|
1097
1169
|
...options,
|
|
@@ -1101,11 +1173,13 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1101
1173
|
}
|
|
1102
1174
|
});
|
|
1103
1175
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1176
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1104
1177
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1105
1178
|
url: "/user_profiles/me",
|
|
1106
1179
|
...options
|
|
1107
1180
|
});
|
|
1108
1181
|
var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
1182
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1109
1183
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1110
1184
|
url: "/invitations/invite",
|
|
1111
1185
|
...options,
|
|
@@ -1115,16 +1189,19 @@ var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
|
1115
1189
|
}
|
|
1116
1190
|
});
|
|
1117
1191
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1192
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1118
1193
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1119
1194
|
url: "/webhook_configs/{id}",
|
|
1120
1195
|
...options
|
|
1121
1196
|
});
|
|
1122
1197
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1198
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1123
1199
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1124
1200
|
url: "/webhook_configs/{id}",
|
|
1125
1201
|
...options
|
|
1126
1202
|
});
|
|
1127
1203
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1204
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1128
1205
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1129
1206
|
url: "/webhook_configs/{id}",
|
|
1130
1207
|
...options,
|
|
@@ -1134,6 +1211,7 @@ var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
|
1134
1211
|
}
|
|
1135
1212
|
});
|
|
1136
1213
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1214
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1137
1215
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1138
1216
|
url: "/invitations/accept_by_token",
|
|
1139
1217
|
...options,
|
|
@@ -1143,11 +1221,13 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1143
1221
|
}
|
|
1144
1222
|
});
|
|
1145
1223
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1224
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1146
1225
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1147
1226
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1148
1227
|
...options
|
|
1149
1228
|
});
|
|
1150
1229
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1230
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1151
1231
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1152
1232
|
url: "/documents/bulk_delete",
|
|
1153
1233
|
...options,
|
|
@@ -1157,6 +1237,7 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1157
1237
|
}
|
|
1158
1238
|
});
|
|
1159
1239
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1240
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1160
1241
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1161
1242
|
url: "/ai/chunks/search",
|
|
1162
1243
|
...options,
|
|
@@ -1166,6 +1247,7 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1166
1247
|
}
|
|
1167
1248
|
});
|
|
1168
1249
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1250
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1169
1251
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1170
1252
|
url: "/threads/{id}/messages",
|
|
1171
1253
|
...options,
|
|
@@ -1175,6 +1257,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1175
1257
|
}
|
|
1176
1258
|
});
|
|
1177
1259
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
1260
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1178
1261
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1179
1262
|
url: "/agents/clone_for_workspace",
|
|
1180
1263
|
...options,
|
|
@@ -1184,6 +1267,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1184
1267
|
}
|
|
1185
1268
|
});
|
|
1186
1269
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
1270
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1187
1271
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1188
1272
|
url: "/invitations/{id}/accept",
|
|
1189
1273
|
...options,
|
|
@@ -1193,16 +1277,19 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1193
1277
|
}
|
|
1194
1278
|
});
|
|
1195
1279
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
1280
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1196
1281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1197
1282
|
url: "/credit-packages/{id}",
|
|
1198
1283
|
...options
|
|
1199
1284
|
});
|
|
1200
1285
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
1286
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1201
1287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1202
1288
|
url: "/users/{id}",
|
|
1203
1289
|
...options
|
|
1204
1290
|
});
|
|
1205
1291
|
var patchUsersById = (options) => (options.client ?? client).patch({
|
|
1292
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1206
1293
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1207
1294
|
url: "/users/{id}",
|
|
1208
1295
|
...options,
|
|
@@ -1212,11 +1299,13 @@ var patchUsersById = (options) => (options.client ?? client).patch({
|
|
|
1212
1299
|
}
|
|
1213
1300
|
});
|
|
1214
1301
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
1302
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1215
1303
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1216
1304
|
url: "/extraction/results/{id}",
|
|
1217
1305
|
...options
|
|
1218
1306
|
});
|
|
1219
1307
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
1308
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1220
1309
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1221
1310
|
url: "/agents/{id}/validate",
|
|
1222
1311
|
...options,
|
|
@@ -1226,6 +1315,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
1226
1315
|
}
|
|
1227
1316
|
});
|
|
1228
1317
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
1318
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1229
1319
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1230
1320
|
url: "/webhook_configs/{id}/test",
|
|
1231
1321
|
...options,
|
|
@@ -1235,11 +1325,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1235
1325
|
}
|
|
1236
1326
|
});
|
|
1237
1327
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
1328
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1238
1329
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1239
1330
|
url: "/users/me",
|
|
1240
1331
|
...options
|
|
1241
1332
|
});
|
|
1242
1333
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
1334
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1243
1335
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1244
1336
|
url: "/users/auth/register_with_oidc",
|
|
1245
1337
|
...options,
|
|
@@ -1249,16 +1341,25 @@ var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post
|
|
|
1249
1341
|
}
|
|
1250
1342
|
});
|
|
1251
1343
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
1344
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1252
1345
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1253
1346
|
url: "/transactions/{id}",
|
|
1254
1347
|
...options
|
|
1255
1348
|
});
|
|
1256
1349
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
1350
|
+
querySerializer: {
|
|
1351
|
+
parameters: {
|
|
1352
|
+
filter: { object: { style: "form" } },
|
|
1353
|
+
page: { object: { style: "form" } },
|
|
1354
|
+
fields: { object: { style: "form" } }
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1257
1357
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1258
1358
|
url: "/tenant-memberships",
|
|
1259
1359
|
...options
|
|
1260
1360
|
});
|
|
1261
1361
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
1362
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1262
1363
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1263
1364
|
url: "/tenant-memberships",
|
|
1264
1365
|
...options,
|
|
@@ -1277,21 +1378,25 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
1277
1378
|
}
|
|
1278
1379
|
});
|
|
1279
1380
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
1381
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1280
1382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1281
1383
|
url: "/llm_analytics/summary",
|
|
1282
1384
|
...options
|
|
1283
1385
|
});
|
|
1284
1386
|
var deleteExtractionSchemaFieldsById = (options) => (options.client ?? client).delete({
|
|
1387
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1285
1388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1286
1389
|
url: "/extraction/schema-fields/{id}",
|
|
1287
1390
|
...options
|
|
1288
1391
|
});
|
|
1289
1392
|
var getExtractionSchemaFieldsById = (options) => (options.client ?? client).get({
|
|
1393
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1290
1394
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1291
1395
|
url: "/extraction/schema-fields/{id}",
|
|
1292
1396
|
...options
|
|
1293
1397
|
});
|
|
1294
1398
|
var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).patch({
|
|
1399
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1295
1400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1296
1401
|
url: "/extraction/schema-fields/{id}",
|
|
1297
1402
|
...options,
|
|
@@ -1301,6 +1406,7 @@ var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).pa
|
|
|
1301
1406
|
}
|
|
1302
1407
|
});
|
|
1303
1408
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
1409
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1304
1410
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1305
1411
|
url: "/storage/sign_download",
|
|
1306
1412
|
...options,
|
|
@@ -1310,31 +1416,64 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
1310
1416
|
}
|
|
1311
1417
|
});
|
|
1312
1418
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1419
|
+
querySerializer: {
|
|
1420
|
+
parameters: {
|
|
1421
|
+
filter: { object: { style: "form" } },
|
|
1422
|
+
page: { object: { style: "form" } },
|
|
1423
|
+
fields: { object: { style: "form" } }
|
|
1424
|
+
}
|
|
1425
|
+
},
|
|
1313
1426
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1314
1427
|
url: "/webhook_deliveries",
|
|
1315
1428
|
...options
|
|
1316
1429
|
});
|
|
1317
1430
|
var getSearch = (options) => (options.client ?? client).get({
|
|
1431
|
+
querySerializer: {
|
|
1432
|
+
parameters: {
|
|
1433
|
+
filter: { object: { style: "form" } },
|
|
1434
|
+
fields: { object: { style: "form" } }
|
|
1435
|
+
}
|
|
1436
|
+
},
|
|
1318
1437
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1319
1438
|
url: "/search",
|
|
1320
1439
|
...options
|
|
1321
1440
|
});
|
|
1322
1441
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
1442
|
+
querySerializer: {
|
|
1443
|
+
parameters: {
|
|
1444
|
+
filter: { object: { style: "form" } },
|
|
1445
|
+
fields: { object: { style: "form" } }
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1323
1448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1324
1449
|
url: "/invitations",
|
|
1325
1450
|
...options
|
|
1326
1451
|
});
|
|
1327
1452
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
1453
|
+
querySerializer: {
|
|
1454
|
+
parameters: {
|
|
1455
|
+
filter: { object: { style: "form" } },
|
|
1456
|
+
fields: { object: { style: "form" } }
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1328
1459
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1329
1460
|
url: "/search/semantic",
|
|
1330
1461
|
...options
|
|
1331
1462
|
});
|
|
1332
1463
|
var getMessages = (options) => (options.client ?? client).get({
|
|
1464
|
+
querySerializer: {
|
|
1465
|
+
parameters: {
|
|
1466
|
+
filter: { object: { style: "form" } },
|
|
1467
|
+
page: { object: { style: "form" } },
|
|
1468
|
+
fields: { object: { style: "form" } }
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1333
1471
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1334
1472
|
url: "/messages",
|
|
1335
1473
|
...options
|
|
1336
1474
|
});
|
|
1337
1475
|
var postMessages = (options) => (options.client ?? client).post({
|
|
1476
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1338
1477
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1339
1478
|
url: "/messages",
|
|
1340
1479
|
...options,
|
|
@@ -1344,11 +1483,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
1344
1483
|
}
|
|
1345
1484
|
});
|
|
1346
1485
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
1486
|
+
querySerializer: {
|
|
1487
|
+
parameters: {
|
|
1488
|
+
filter: { object: { style: "form" } },
|
|
1489
|
+
page: { object: { style: "form" } },
|
|
1490
|
+
fields: { object: { style: "form" } }
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1347
1493
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1348
1494
|
url: "/notification_preferences",
|
|
1349
1495
|
...options
|
|
1350
1496
|
});
|
|
1351
1497
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
1498
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1352
1499
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1353
1500
|
url: "/notification_preferences",
|
|
1354
1501
|
...options,
|
|
@@ -1358,11 +1505,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
1358
1505
|
}
|
|
1359
1506
|
});
|
|
1360
1507
|
var getApplications = (options) => (options.client ?? client).get({
|
|
1508
|
+
querySerializer: {
|
|
1509
|
+
parameters: {
|
|
1510
|
+
filter: { object: { style: "form" } },
|
|
1511
|
+
page: { object: { style: "form" } },
|
|
1512
|
+
fields: { object: { style: "form" } }
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1361
1515
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1362
1516
|
url: "/applications",
|
|
1363
1517
|
...options
|
|
1364
1518
|
});
|
|
1365
1519
|
var postApplications = (options) => (options.client ?? client).post({
|
|
1520
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1366
1521
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1367
1522
|
url: "/applications",
|
|
1368
1523
|
...options,
|
|
@@ -1381,16 +1536,19 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
1381
1536
|
}
|
|
1382
1537
|
});
|
|
1383
1538
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
1539
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1384
1540
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1385
1541
|
url: "/threads/{id}",
|
|
1386
1542
|
...options
|
|
1387
1543
|
});
|
|
1388
1544
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
1545
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1389
1546
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1390
1547
|
url: "/threads/{id}",
|
|
1391
1548
|
...options
|
|
1392
1549
|
});
|
|
1393
1550
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
1551
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1394
1552
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1395
1553
|
url: "/threads/{id}",
|
|
1396
1554
|
...options,
|
|
@@ -1400,11 +1558,19 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
1400
1558
|
}
|
|
1401
1559
|
});
|
|
1402
1560
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
1561
|
+
querySerializer: {
|
|
1562
|
+
parameters: {
|
|
1563
|
+
filter: { object: { style: "form" } },
|
|
1564
|
+
page: { object: { style: "form" } },
|
|
1565
|
+
fields: { object: { style: "form" } }
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1403
1568
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1404
1569
|
url: "/llm_analytics",
|
|
1405
1570
|
...options
|
|
1406
1571
|
});
|
|
1407
1572
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
1573
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1408
1574
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1409
1575
|
url: "/llm_analytics",
|
|
1410
1576
|
...options,
|
|
@@ -1414,6 +1580,7 @@ var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
|
1414
1580
|
}
|
|
1415
1581
|
});
|
|
1416
1582
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
1583
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1417
1584
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1418
1585
|
url: "/users/{id}/reset-password",
|
|
1419
1586
|
...options,
|
|
@@ -1423,6 +1590,7 @@ var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1423
1590
|
}
|
|
1424
1591
|
});
|
|
1425
1592
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
1593
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1426
1594
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1427
1595
|
url: "/documents/presigned_upload",
|
|
1428
1596
|
...options,
|
|
@@ -1432,11 +1600,13 @@ var postDocumentsPresignedUpload = (options) => (options.client ?? client).post(
|
|
|
1432
1600
|
}
|
|
1433
1601
|
});
|
|
1434
1602
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
1603
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1435
1604
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1436
1605
|
url: "/messages/search",
|
|
1437
1606
|
...options
|
|
1438
1607
|
});
|
|
1439
1608
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
1609
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1440
1610
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1441
1611
|
url: "/extraction/documents/upload",
|
|
1442
1612
|
...options,
|
|
@@ -1446,6 +1616,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
1446
1616
|
}
|
|
1447
1617
|
});
|
|
1448
1618
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
1619
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1449
1620
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1450
1621
|
url: "/extraction/results/{id}/corrections",
|
|
1451
1622
|
...options,
|
|
@@ -1455,21 +1626,25 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
1455
1626
|
}
|
|
1456
1627
|
});
|
|
1457
1628
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1629
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1458
1630
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1459
1631
|
url: "/extraction/results/document/{document_id}",
|
|
1460
1632
|
...options
|
|
1461
1633
|
});
|
|
1462
1634
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
1635
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1463
1636
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1464
1637
|
url: "/workspaces/{id}",
|
|
1465
1638
|
...options
|
|
1466
1639
|
});
|
|
1467
1640
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
1641
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1468
1642
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1469
1643
|
url: "/workspaces/{id}",
|
|
1470
1644
|
...options
|
|
1471
1645
|
});
|
|
1472
1646
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
1647
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1473
1648
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1474
1649
|
url: "/workspaces/{id}",
|
|
1475
1650
|
...options,
|
|
@@ -1479,11 +1654,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
1479
1654
|
}
|
|
1480
1655
|
});
|
|
1481
1656
|
var getTenants = (options) => (options.client ?? client).get({
|
|
1657
|
+
querySerializer: {
|
|
1658
|
+
parameters: {
|
|
1659
|
+
filter: { object: { style: "form" } },
|
|
1660
|
+
page: { object: { style: "form" } },
|
|
1661
|
+
fields: { object: { style: "form" } }
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1482
1664
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1483
1665
|
url: "/tenants",
|
|
1484
1666
|
...options
|
|
1485
1667
|
});
|
|
1486
1668
|
var postTenants = (options) => (options.client ?? client).post({
|
|
1669
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1487
1670
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1488
1671
|
url: "/tenants",
|
|
1489
1672
|
...options,
|
|
@@ -1493,6 +1676,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
1493
1676
|
}
|
|
1494
1677
|
});
|
|
1495
1678
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
1679
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1496
1680
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1497
1681
|
url: "/tenants/{id}/remove-storage",
|
|
1498
1682
|
...options,
|
|
@@ -1502,11 +1686,13 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
1502
1686
|
}
|
|
1503
1687
|
});
|
|
1504
1688
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
1689
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1505
1690
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1506
1691
|
url: "/notification_logs/{id}",
|
|
1507
1692
|
...options
|
|
1508
1693
|
});
|
|
1509
1694
|
var postExtractionDocumentsByIdView = (options) => (options.client ?? client).post({
|
|
1695
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1510
1696
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1511
1697
|
url: "/extraction/documents/{id}/view",
|
|
1512
1698
|
...options,
|
|
@@ -1516,21 +1702,37 @@ var postExtractionDocumentsByIdView = (options) => (options.client ?? client).po
|
|
|
1516
1702
|
}
|
|
1517
1703
|
});
|
|
1518
1704
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
1705
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1519
1706
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1520
1707
|
url: "/webhook_deliveries/{id}",
|
|
1521
1708
|
...options
|
|
1522
1709
|
});
|
|
1523
1710
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
1711
|
+
querySerializer: {
|
|
1712
|
+
parameters: {
|
|
1713
|
+
filter: { object: { style: "form" } },
|
|
1714
|
+
page: { object: { style: "form" } },
|
|
1715
|
+
fields: { object: { style: "form" } }
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1524
1718
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1525
1719
|
url: "/audit-logs",
|
|
1526
1720
|
...options
|
|
1527
1721
|
});
|
|
1528
1722
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
1723
|
+
querySerializer: {
|
|
1724
|
+
parameters: {
|
|
1725
|
+
filter: { object: { style: "form" } },
|
|
1726
|
+
page: { object: { style: "form" } },
|
|
1727
|
+
fields: { object: { style: "form" } }
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1529
1730
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1530
1731
|
url: "/ai/graph/edges",
|
|
1531
1732
|
...options
|
|
1532
1733
|
});
|
|
1533
1734
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
1735
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1534
1736
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1535
1737
|
url: "/ai/graph/edges",
|
|
1536
1738
|
...options,
|
|
@@ -1540,11 +1742,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
1540
1742
|
}
|
|
1541
1743
|
});
|
|
1542
1744
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
1745
|
+
querySerializer: {
|
|
1746
|
+
parameters: {
|
|
1747
|
+
filter: { object: { style: "form" } },
|
|
1748
|
+
page: { object: { style: "form" } },
|
|
1749
|
+
fields: { object: { style: "form" } }
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1543
1752
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1544
1753
|
url: "/training_examples",
|
|
1545
1754
|
...options
|
|
1546
1755
|
});
|
|
1547
1756
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
1757
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1548
1758
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1549
1759
|
url: "/training_examples",
|
|
1550
1760
|
...options,
|
|
@@ -1554,16 +1764,25 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
1554
1764
|
}
|
|
1555
1765
|
});
|
|
1556
1766
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
1767
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1557
1768
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1558
1769
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
1559
1770
|
...options
|
|
1560
1771
|
});
|
|
1561
1772
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
1773
|
+
querySerializer: {
|
|
1774
|
+
parameters: {
|
|
1775
|
+
filter: { object: { style: "form" } },
|
|
1776
|
+
page: { object: { style: "form" } },
|
|
1777
|
+
fields: { object: { style: "form" } }
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1562
1780
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1563
1781
|
url: "/buckets",
|
|
1564
1782
|
...options
|
|
1565
1783
|
});
|
|
1566
1784
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
1785
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1567
1786
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1568
1787
|
url: "/buckets",
|
|
1569
1788
|
...options,
|
|
@@ -1573,11 +1792,13 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
1573
1792
|
}
|
|
1574
1793
|
});
|
|
1575
1794
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
1795
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1576
1796
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1577
1797
|
url: "/plans/{id}",
|
|
1578
1798
|
...options
|
|
1579
1799
|
});
|
|
1580
1800
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
1801
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1581
1802
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1582
1803
|
url: "/wallet/addons",
|
|
1583
1804
|
...options,
|
|
@@ -1587,6 +1808,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
1587
1808
|
}
|
|
1588
1809
|
});
|
|
1589
1810
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
1811
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1590
1812
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1591
1813
|
url: "/users/auth/magic_link/login",
|
|
1592
1814
|
...options,
|
|
@@ -1596,11 +1818,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
1596
1818
|
}
|
|
1597
1819
|
});
|
|
1598
1820
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
1821
|
+
querySerializer: {
|
|
1822
|
+
parameters: {
|
|
1823
|
+
filter: { object: { style: "form" } },
|
|
1824
|
+
page: { object: { style: "form" } },
|
|
1825
|
+
fields: { object: { style: "form" } }
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1599
1828
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1600
1829
|
url: "/api_keys",
|
|
1601
1830
|
...options
|
|
1602
1831
|
});
|
|
1603
1832
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
1833
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1604
1834
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1605
1835
|
url: "/api_keys",
|
|
1606
1836
|
...options,
|
|
@@ -1610,21 +1840,25 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
1610
1840
|
}
|
|
1611
1841
|
});
|
|
1612
1842
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
1843
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1613
1844
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1614
1845
|
url: "/agents/{id}",
|
|
1615
1846
|
...options
|
|
1616
1847
|
});
|
|
1617
1848
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
1849
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1618
1850
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1619
1851
|
url: "/api_keys/{id}",
|
|
1620
1852
|
...options
|
|
1621
1853
|
});
|
|
1622
1854
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
1855
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1623
1856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1624
1857
|
url: "/api_keys/{id}",
|
|
1625
1858
|
...options
|
|
1626
1859
|
});
|
|
1627
1860
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
1861
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1628
1862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1629
1863
|
url: "/api_keys/{id}",
|
|
1630
1864
|
...options,
|
|
@@ -1634,11 +1868,19 @@ var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
|
1634
1868
|
}
|
|
1635
1869
|
});
|
|
1636
1870
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
1871
|
+
querySerializer: {
|
|
1872
|
+
parameters: {
|
|
1873
|
+
filter: { object: { style: "form" } },
|
|
1874
|
+
page: { object: { style: "form" } },
|
|
1875
|
+
fields: { object: { style: "form" } }
|
|
1876
|
+
}
|
|
1877
|
+
},
|
|
1637
1878
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1638
1879
|
url: "/ai/conversations",
|
|
1639
1880
|
...options
|
|
1640
1881
|
});
|
|
1641
1882
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
1883
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1642
1884
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1643
1885
|
url: "/ai/conversations",
|
|
1644
1886
|
...options,
|
|
@@ -1648,6 +1890,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
1648
1890
|
}
|
|
1649
1891
|
});
|
|
1650
1892
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
1893
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1651
1894
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1652
1895
|
url: "/ai/search",
|
|
1653
1896
|
...options,
|
|
@@ -1657,11 +1900,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
1657
1900
|
}
|
|
1658
1901
|
});
|
|
1659
1902
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
1903
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1660
1904
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1661
1905
|
url: "/ai/graph/nodes/{id}",
|
|
1662
1906
|
...options
|
|
1663
1907
|
});
|
|
1664
1908
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
1909
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1665
1910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1666
1911
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
1667
1912
|
...options,
|
|
@@ -1671,16 +1916,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
1671
1916
|
}
|
|
1672
1917
|
});
|
|
1673
1918
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
1919
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1674
1920
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1675
1921
|
url: "/applications/{id}",
|
|
1676
1922
|
...options
|
|
1677
1923
|
});
|
|
1678
1924
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
1925
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1679
1926
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1680
1927
|
url: "/applications/{id}",
|
|
1681
1928
|
...options
|
|
1682
1929
|
});
|
|
1683
1930
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
1931
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1684
1932
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1685
1933
|
url: "/applications/{id}",
|
|
1686
1934
|
...options,
|
|
@@ -1690,21 +1938,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
1690
1938
|
}
|
|
1691
1939
|
});
|
|
1692
1940
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
1941
|
+
querySerializer: {
|
|
1942
|
+
parameters: {
|
|
1943
|
+
filter: { object: { style: "form" } },
|
|
1944
|
+
fields: { object: { style: "form" } }
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1693
1947
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1694
1948
|
url: "/search/health",
|
|
1695
1949
|
...options
|
|
1696
1950
|
});
|
|
1697
1951
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
1952
|
+
querySerializer: {
|
|
1953
|
+
parameters: {
|
|
1954
|
+
filter: { object: { style: "form" } },
|
|
1955
|
+
fields: { object: { style: "form" } }
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1698
1958
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1699
1959
|
url: "/transactions",
|
|
1700
1960
|
...options
|
|
1701
1961
|
});
|
|
1702
1962
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
1963
|
+
querySerializer: {
|
|
1964
|
+
parameters: {
|
|
1965
|
+
filter: { object: { style: "form" } },
|
|
1966
|
+
page: { object: { style: "form" } },
|
|
1967
|
+
fields: { object: { style: "form" } }
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1703
1970
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1704
1971
|
url: "/user_profiles",
|
|
1705
1972
|
...options
|
|
1706
1973
|
});
|
|
1707
1974
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
1975
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1708
1976
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1709
1977
|
url: "/user_profiles",
|
|
1710
1978
|
...options,
|
|
@@ -1714,6 +1982,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
1714
1982
|
}
|
|
1715
1983
|
});
|
|
1716
1984
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
1985
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1717
1986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1718
1987
|
url: "/users/{id}/confirm-email",
|
|
1719
1988
|
...options,
|
|
@@ -1723,11 +1992,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
1723
1992
|
}
|
|
1724
1993
|
});
|
|
1725
1994
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
1995
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1726
1996
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1727
1997
|
url: "/threads/search",
|
|
1728
1998
|
...options
|
|
1729
1999
|
});
|
|
1730
2000
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2001
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1731
2002
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1732
2003
|
url: "/wallet/plan",
|
|
1733
2004
|
...options,
|
|
@@ -1737,21 +2008,31 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
1737
2008
|
}
|
|
1738
2009
|
});
|
|
1739
2010
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2011
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1740
2012
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1741
2013
|
url: "/plans/slug/{slug}",
|
|
1742
2014
|
...options
|
|
1743
2015
|
});
|
|
1744
2016
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2017
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1745
2018
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1746
2019
|
url: "/llm_analytics/{id}",
|
|
1747
2020
|
...options
|
|
1748
2021
|
});
|
|
1749
2022
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2023
|
+
querySerializer: {
|
|
2024
|
+
parameters: {
|
|
2025
|
+
filter: { object: { style: "form" } },
|
|
2026
|
+
page: { object: { style: "form" } },
|
|
2027
|
+
fields: { object: { style: "form" } }
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
1750
2030
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1751
2031
|
url: "/extraction/schema-fields",
|
|
1752
2032
|
...options
|
|
1753
2033
|
});
|
|
1754
2034
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2035
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1755
2036
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1756
2037
|
url: "/extraction/schema-fields",
|
|
1757
2038
|
...options,
|
|
@@ -1761,11 +2042,18 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
1761
2042
|
}
|
|
1762
2043
|
});
|
|
1763
2044
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2045
|
+
querySerializer: {
|
|
2046
|
+
parameters: {
|
|
2047
|
+
filter: { object: { style: "form" } },
|
|
2048
|
+
fields: { object: { style: "form" } }
|
|
2049
|
+
}
|
|
2050
|
+
},
|
|
1764
2051
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1765
2052
|
url: "/search/status",
|
|
1766
2053
|
...options
|
|
1767
2054
|
});
|
|
1768
2055
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2056
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1769
2057
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1770
2058
|
url: "/api_keys/{id}/allocate",
|
|
1771
2059
|
...options,
|
|
@@ -1775,6 +2063,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
1775
2063
|
}
|
|
1776
2064
|
});
|
|
1777
2065
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2066
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1778
2067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1779
2068
|
url: "/users/auth/login",
|
|
1780
2069
|
...options,
|
|
@@ -1784,6 +2073,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
1784
2073
|
}
|
|
1785
2074
|
});
|
|
1786
2075
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2076
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1787
2077
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1788
2078
|
url: "/ai/embed",
|
|
1789
2079
|
...options,
|
|
@@ -1793,11 +2083,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
1793
2083
|
}
|
|
1794
2084
|
});
|
|
1795
2085
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2086
|
+
querySerializer: {
|
|
2087
|
+
parameters: {
|
|
2088
|
+
filter: { object: { style: "form" } },
|
|
2089
|
+
fields: { object: { style: "form" } }
|
|
2090
|
+
}
|
|
2091
|
+
},
|
|
1796
2092
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1797
2093
|
url: "/workspaces/mine",
|
|
1798
2094
|
...options
|
|
1799
2095
|
});
|
|
1800
2096
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2097
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1801
2098
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1802
2099
|
url: "/search/reindex",
|
|
1803
2100
|
...options,
|
|
@@ -1807,6 +2104,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
1807
2104
|
}
|
|
1808
2105
|
});
|
|
1809
2106
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2107
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1810
2108
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1811
2109
|
url: "/extraction/results/{id}/regenerate",
|
|
1812
2110
|
...options,
|
|
@@ -1816,6 +2114,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
1816
2114
|
}
|
|
1817
2115
|
});
|
|
1818
2116
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2117
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1819
2118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1820
2119
|
url: "/users/auth/confirm",
|
|
1821
2120
|
...options,
|
|
@@ -1825,6 +2124,7 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
1825
2124
|
}
|
|
1826
2125
|
});
|
|
1827
2126
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
2127
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1828
2128
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1829
2129
|
url: "/extraction/schemas",
|
|
1830
2130
|
...options,
|
|
@@ -1834,11 +2134,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
1834
2134
|
}
|
|
1835
2135
|
});
|
|
1836
2136
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
2137
|
+
querySerializer: {
|
|
2138
|
+
parameters: {
|
|
2139
|
+
filter: { object: { style: "form" } },
|
|
2140
|
+
fields: { object: { style: "form" } }
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
1837
2143
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1838
2144
|
url: "/storage/stats",
|
|
1839
2145
|
...options
|
|
1840
2146
|
});
|
|
1841
2147
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
2148
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1842
2149
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1843
2150
|
url: "/tenants/{id}/buy-storage",
|
|
1844
2151
|
...options,
|
|
@@ -1848,11 +2155,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
1848
2155
|
}
|
|
1849
2156
|
});
|
|
1850
2157
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
2158
|
+
querySerializer: {
|
|
2159
|
+
parameters: {
|
|
2160
|
+
filter: { object: { style: "form" } },
|
|
2161
|
+
page: { object: { style: "form" } },
|
|
2162
|
+
fields: { object: { style: "form" } }
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
1851
2165
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1852
2166
|
url: "/workspace-memberships",
|
|
1853
2167
|
...options
|
|
1854
2168
|
});
|
|
1855
2169
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
2170
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1856
2171
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1857
2172
|
url: "/workspace-memberships",
|
|
1858
2173
|
...options,
|
|
@@ -1862,6 +2177,7 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
1862
2177
|
}
|
|
1863
2178
|
});
|
|
1864
2179
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
2180
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1865
2181
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1866
2182
|
url: "/users/auth/magic_link/request",
|
|
1867
2183
|
...options,
|
|
@@ -1871,6 +2187,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
1871
2187
|
}
|
|
1872
2188
|
});
|
|
1873
2189
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
2190
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1874
2191
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1875
2192
|
url: "/users/auth/register",
|
|
1876
2193
|
...options,
|
|
@@ -1889,16 +2206,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
1889
2206
|
}
|
|
1890
2207
|
});
|
|
1891
2208
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
2209
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1892
2210
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1893
2211
|
url: "/buckets/{id}",
|
|
1894
2212
|
...options
|
|
1895
2213
|
});
|
|
1896
2214
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
2215
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1897
2216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1898
2217
|
url: "/buckets/{id}",
|
|
1899
2218
|
...options
|
|
1900
2219
|
});
|
|
1901
2220
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
2221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1902
2222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1903
2223
|
url: "/buckets/{id}",
|
|
1904
2224
|
...options,
|
|
@@ -1908,11 +2228,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
1908
2228
|
}
|
|
1909
2229
|
});
|
|
1910
2230
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
2231
|
+
querySerializer: {
|
|
2232
|
+
parameters: {
|
|
2233
|
+
filter: { object: { style: "form" } },
|
|
2234
|
+
fields: { object: { style: "form" } }
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
1911
2237
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1912
2238
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
1913
2239
|
...options
|
|
1914
2240
|
});
|
|
1915
2241
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
2242
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1916
2243
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1917
2244
|
url: "/extraction/documents/begin_upload",
|
|
1918
2245
|
...options,
|
|
@@ -1922,21 +2249,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
1922
2249
|
}
|
|
1923
2250
|
});
|
|
1924
2251
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
2252
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1925
2253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1926
2254
|
url: "/ai/graph/edges/{id}",
|
|
1927
2255
|
...options
|
|
1928
2256
|
});
|
|
1929
2257
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
2258
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1930
2259
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1931
2260
|
url: "/tenants/{id}",
|
|
1932
2261
|
...options
|
|
1933
2262
|
});
|
|
1934
2263
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
2264
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1935
2265
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1936
2266
|
url: "/tenants/{id}",
|
|
1937
2267
|
...options
|
|
1938
2268
|
});
|
|
1939
2269
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
2270
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1940
2271
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1941
2272
|
url: "/tenants/{id}",
|
|
1942
2273
|
...options,
|
|
@@ -1946,16 +2277,25 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
1946
2277
|
}
|
|
1947
2278
|
});
|
|
1948
2279
|
var getPlans = (options) => (options.client ?? client).get({
|
|
2280
|
+
querySerializer: {
|
|
2281
|
+
parameters: {
|
|
2282
|
+
filter: { object: { style: "form" } },
|
|
2283
|
+
page: { object: { style: "form" } },
|
|
2284
|
+
fields: { object: { style: "form" } }
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
1949
2287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1950
2288
|
url: "/plans",
|
|
1951
2289
|
...options
|
|
1952
2290
|
});
|
|
1953
2291
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
2292
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1954
2293
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1955
2294
|
url: "/extraction/schemas/{id}",
|
|
1956
2295
|
...options
|
|
1957
2296
|
});
|
|
1958
2297
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
2298
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1959
2299
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1960
2300
|
url: "/extraction/schemas/{id}",
|
|
1961
2301
|
...options,
|
|
@@ -1965,6 +2305,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
1965
2305
|
}
|
|
1966
2306
|
});
|
|
1967
2307
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
2308
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1968
2309
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1969
2310
|
url: "/agents/{id}/test",
|
|
1970
2311
|
...options,
|
|
@@ -1974,16 +2315,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1974
2315
|
}
|
|
1975
2316
|
});
|
|
1976
2317
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
2318
|
+
querySerializer: {
|
|
2319
|
+
parameters: {
|
|
2320
|
+
filter: { object: { style: "form" } },
|
|
2321
|
+
fields: { object: { style: "form" } }
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
1977
2324
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1978
2325
|
url: "/extraction/documents",
|
|
1979
2326
|
...options
|
|
1980
2327
|
});
|
|
1981
2328
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
2329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1982
2330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1983
2331
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
1984
2332
|
...options
|
|
1985
2333
|
});
|
|
1986
2334
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
2335
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1987
2336
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1988
2337
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
1989
2338
|
...options,
|
|
@@ -1993,6 +2342,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
1993
2342
|
}
|
|
1994
2343
|
});
|
|
1995
2344
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
2345
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1996
2346
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1997
2347
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
1998
2348
|
...options,
|
|
@@ -2002,11 +2352,19 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2002
2352
|
}
|
|
2003
2353
|
});
|
|
2004
2354
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
2355
|
+
querySerializer: {
|
|
2356
|
+
parameters: {
|
|
2357
|
+
filter: { object: { style: "form" } },
|
|
2358
|
+
page: { object: { style: "form" } },
|
|
2359
|
+
fields: { object: { style: "form" } }
|
|
2360
|
+
}
|
|
2361
|
+
},
|
|
2005
2362
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2006
2363
|
url: "/ai/messages",
|
|
2007
2364
|
...options
|
|
2008
2365
|
});
|
|
2009
2366
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
2367
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2010
2368
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2011
2369
|
url: "/ai/messages",
|
|
2012
2370
|
...options,
|
|
@@ -2016,6 +2374,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2016
2374
|
}
|
|
2017
2375
|
});
|
|
2018
2376
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
2377
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2019
2378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2020
2379
|
url: "/storage/sign_upload",
|
|
2021
2380
|
...options,
|
|
@@ -2025,6 +2384,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2025
2384
|
}
|
|
2026
2385
|
});
|
|
2027
2386
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
2387
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2028
2388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2029
2389
|
url: "/webhook_deliveries/{id}/retry",
|
|
2030
2390
|
...options,
|
|
@@ -2034,6 +2394,7 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2034
2394
|
}
|
|
2035
2395
|
});
|
|
2036
2396
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
2397
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2037
2398
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2038
2399
|
url: "/threads/{id}/summarize",
|
|
2039
2400
|
...options,
|
|
@@ -2043,6 +2404,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2043
2404
|
}
|
|
2044
2405
|
});
|
|
2045
2406
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
2407
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2046
2408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2047
2409
|
url: "/configs/{key}",
|
|
2048
2410
|
...options,
|
|
@@ -2052,6 +2414,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2052
2414
|
}
|
|
2053
2415
|
});
|
|
2054
2416
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
2417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2055
2418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2056
2419
|
url: "/api_keys/{id}/rotate",
|
|
2057
2420
|
...options,
|
|
@@ -2061,6 +2424,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2061
2424
|
}
|
|
2062
2425
|
});
|
|
2063
2426
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
2427
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2064
2428
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2065
2429
|
url: "/extraction/results",
|
|
2066
2430
|
...options,
|
|
@@ -2070,6 +2434,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2070
2434
|
}
|
|
2071
2435
|
});
|
|
2072
2436
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
2437
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2438
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2439
|
url: "/agents/{id}/clone",
|
|
2075
2440
|
...options,
|
|
@@ -2079,26 +2444,31 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2079
2444
|
}
|
|
2080
2445
|
});
|
|
2081
2446
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
2447
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2082
2448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2083
2449
|
url: "/ai/conversations/{id}",
|
|
2084
2450
|
...options
|
|
2085
2451
|
});
|
|
2086
2452
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
2453
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2087
2454
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2088
2455
|
url: "/ai/conversations/{id}",
|
|
2089
2456
|
...options
|
|
2090
2457
|
});
|
|
2091
2458
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
2459
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2092
2460
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2093
2461
|
url: "/user_profiles/{id}",
|
|
2094
2462
|
...options
|
|
2095
2463
|
});
|
|
2096
2464
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
2465
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2097
2466
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2098
2467
|
url: "/user_profiles/{id}",
|
|
2099
2468
|
...options
|
|
2100
2469
|
});
|
|
2101
2470
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
2471
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2102
2472
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2103
2473
|
url: "/user_profiles/{id}",
|
|
2104
2474
|
...options,
|
|
@@ -2108,21 +2478,31 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2108
2478
|
}
|
|
2109
2479
|
});
|
|
2110
2480
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
2481
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2111
2482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2112
2483
|
url: "/objects/{id}",
|
|
2113
2484
|
...options
|
|
2114
2485
|
});
|
|
2115
2486
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
2487
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2116
2488
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2117
2489
|
url: "/objects/{id}",
|
|
2118
2490
|
...options
|
|
2119
2491
|
});
|
|
2120
2492
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
2493
|
+
querySerializer: {
|
|
2494
|
+
parameters: {
|
|
2495
|
+
filter: { object: { style: "form" } },
|
|
2496
|
+
page: { object: { style: "form" } },
|
|
2497
|
+
fields: { object: { style: "form" } }
|
|
2498
|
+
}
|
|
2499
|
+
},
|
|
2121
2500
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2122
2501
|
url: "/webhook_configs",
|
|
2123
2502
|
...options
|
|
2124
2503
|
});
|
|
2125
2504
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
2505
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2126
2506
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2127
2507
|
url: "/webhook_configs",
|
|
2128
2508
|
...options,
|
|
@@ -2132,6 +2512,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
2132
2512
|
}
|
|
2133
2513
|
});
|
|
2134
2514
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
2515
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2135
2516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2136
2517
|
url: "/objects/bulk-destroy",
|
|
2137
2518
|
...options,
|
|
@@ -2141,31 +2522,42 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
2141
2522
|
}
|
|
2142
2523
|
});
|
|
2143
2524
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
2525
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2144
2526
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2145
2527
|
url: "/applications/by-slug/{slug}",
|
|
2146
2528
|
...options
|
|
2147
2529
|
});
|
|
2148
2530
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
2531
|
+
querySerializer: {
|
|
2532
|
+
parameters: {
|
|
2533
|
+
filter: { object: { style: "form" } },
|
|
2534
|
+
fields: { object: { style: "form" } }
|
|
2535
|
+
}
|
|
2536
|
+
},
|
|
2149
2537
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2150
2538
|
url: "/notification_logs",
|
|
2151
2539
|
...options
|
|
2152
2540
|
});
|
|
2153
2541
|
var getWallet = (options) => (options.client ?? client).get({
|
|
2542
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2154
2543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2155
2544
|
url: "/wallet",
|
|
2156
2545
|
...options
|
|
2157
2546
|
});
|
|
2158
2547
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
2548
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2159
2549
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2160
2550
|
url: "/messages/{id}",
|
|
2161
2551
|
...options
|
|
2162
2552
|
});
|
|
2163
2553
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
2554
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2164
2555
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2165
2556
|
url: "/messages/{id}",
|
|
2166
2557
|
...options
|
|
2167
2558
|
});
|
|
2168
2559
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
2560
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2169
2561
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2170
2562
|
url: "/messages/{id}",
|
|
2171
2563
|
...options,
|
|
@@ -2175,26 +2567,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
2175
2567
|
}
|
|
2176
2568
|
});
|
|
2177
2569
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
2570
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2178
2571
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2179
2572
|
url: "/llm_analytics/usage",
|
|
2180
2573
|
...options
|
|
2181
2574
|
});
|
|
2182
2575
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
2576
|
+
querySerializer: {
|
|
2577
|
+
parameters: {
|
|
2578
|
+
filter: { object: { style: "form" } },
|
|
2579
|
+
fields: { object: { style: "form" } }
|
|
2580
|
+
}
|
|
2581
|
+
},
|
|
2183
2582
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2184
2583
|
url: "/search/stats",
|
|
2185
2584
|
...options
|
|
2186
2585
|
});
|
|
2187
2586
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
2587
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2188
2588
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2189
2589
|
url: "/notification_preferences/{id}",
|
|
2190
2590
|
...options
|
|
2191
2591
|
});
|
|
2192
2592
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
2593
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2193
2594
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2194
2595
|
url: "/notification_preferences/{id}",
|
|
2195
2596
|
...options
|
|
2196
2597
|
});
|
|
2197
2598
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
2599
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2198
2600
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2199
2601
|
url: "/notification_preferences/{id}",
|
|
2200
2602
|
...options,
|
|
@@ -2204,11 +2606,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
2204
2606
|
}
|
|
2205
2607
|
});
|
|
2206
2608
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
2609
|
+
querySerializer: {
|
|
2610
|
+
parameters: {
|
|
2611
|
+
filter: { object: { style: "form" } },
|
|
2612
|
+
page: { object: { style: "form" } },
|
|
2613
|
+
fields: { object: { style: "form" } }
|
|
2614
|
+
}
|
|
2615
|
+
},
|
|
2207
2616
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2208
2617
|
url: "/ai/graph/nodes",
|
|
2209
2618
|
...options
|
|
2210
2619
|
});
|
|
2211
2620
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
2621
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2212
2622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2213
2623
|
url: "/ai/graph/nodes",
|
|
2214
2624
|
...options,
|
|
@@ -2218,11 +2628,18 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
2218
2628
|
}
|
|
2219
2629
|
});
|
|
2220
2630
|
var getAgents = (options) => (options.client ?? client).get({
|
|
2631
|
+
querySerializer: {
|
|
2632
|
+
parameters: {
|
|
2633
|
+
filter: { object: { style: "form" } },
|
|
2634
|
+
fields: { object: { style: "form" } }
|
|
2635
|
+
}
|
|
2636
|
+
},
|
|
2221
2637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2222
2638
|
url: "/agents",
|
|
2223
2639
|
...options
|
|
2224
2640
|
});
|
|
2225
2641
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
2642
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2226
2643
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2227
2644
|
url: "/users/register_isv",
|
|
2228
2645
|
...options,
|
|
@@ -2232,16 +2649,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
2232
2649
|
}
|
|
2233
2650
|
});
|
|
2234
2651
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
2652
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2235
2653
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2236
2654
|
url: "/extraction/batches/{id}",
|
|
2237
2655
|
...options
|
|
2238
2656
|
});
|
|
2239
2657
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
2658
|
+
querySerializer: {
|
|
2659
|
+
parameters: {
|
|
2660
|
+
filter: { object: { style: "form" } },
|
|
2661
|
+
page: { object: { style: "form" } },
|
|
2662
|
+
fields: { object: { style: "form" } }
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2240
2665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2241
2666
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2242
2667
|
...options
|
|
2243
2668
|
});
|
|
2244
2669
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
2670
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2245
2671
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2246
2672
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2247
2673
|
...options,
|
|
@@ -2251,11 +2677,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
2251
2677
|
}
|
|
2252
2678
|
});
|
|
2253
2679
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
2680
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2254
2681
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2255
2682
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2256
2683
|
...options
|
|
2257
2684
|
});
|
|
2258
2685
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
2686
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2259
2687
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2260
2688
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2261
2689
|
...options,
|
|
@@ -2265,16 +2693,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
2265
2693
|
}
|
|
2266
2694
|
});
|
|
2267
2695
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
2696
|
+
querySerializer: {
|
|
2697
|
+
parameters: {
|
|
2698
|
+
filter: { object: { style: "form" } },
|
|
2699
|
+
page: { object: { style: "form" } },
|
|
2700
|
+
fields: { object: { style: "form" } }
|
|
2701
|
+
}
|
|
2702
|
+
},
|
|
2268
2703
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2269
2704
|
url: "/credit-packages",
|
|
2270
2705
|
...options
|
|
2271
2706
|
});
|
|
2272
2707
|
var getUsers = (options) => (options.client ?? client).get({
|
|
2708
|
+
querySerializer: {
|
|
2709
|
+
parameters: {
|
|
2710
|
+
filter: { object: { style: "form" } },
|
|
2711
|
+
page: { object: { style: "form" } },
|
|
2712
|
+
fields: { object: { style: "form" } }
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2273
2715
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2274
2716
|
url: "/users",
|
|
2275
2717
|
...options
|
|
2276
2718
|
});
|
|
2277
2719
|
var getObjects = (options) => (options.client ?? client).get({
|
|
2720
|
+
querySerializer: {
|
|
2721
|
+
parameters: {
|
|
2722
|
+
filter: { object: { style: "form" } },
|
|
2723
|
+
page: { object: { style: "form" } },
|
|
2724
|
+
fields: { object: { style: "form" } }
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2278
2727
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2279
2728
|
url: "/objects",
|
|
2280
2729
|
...options
|