@gpt-core/client 0.5.2 → 0.5.4
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 +919 -4818
- package/dist/index.d.ts +919 -4818
- package/dist/index.js +463 -0
- package/dist/index.mjs +461 -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,18 @@ 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
|
+
fields: { object: { style: "form" } }
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1543
1751
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1544
1752
|
url: "/training_examples",
|
|
1545
1753
|
...options
|
|
1546
1754
|
});
|
|
1547
1755
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
1756
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1548
1757
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1549
1758
|
url: "/training_examples",
|
|
1550
1759
|
...options,
|
|
@@ -1554,16 +1763,30 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
1554
1763
|
}
|
|
1555
1764
|
});
|
|
1556
1765
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
1766
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1557
1767
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1558
1768
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
1559
1769
|
...options
|
|
1560
1770
|
});
|
|
1771
|
+
var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
1772
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1773
|
+
url: "/agents/{id}/training_stats",
|
|
1774
|
+
...options
|
|
1775
|
+
});
|
|
1561
1776
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
1777
|
+
querySerializer: {
|
|
1778
|
+
parameters: {
|
|
1779
|
+
filter: { object: { style: "form" } },
|
|
1780
|
+
page: { object: { style: "form" } },
|
|
1781
|
+
fields: { object: { style: "form" } }
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1562
1784
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1563
1785
|
url: "/buckets",
|
|
1564
1786
|
...options
|
|
1565
1787
|
});
|
|
1566
1788
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
1789
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1567
1790
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1568
1791
|
url: "/buckets",
|
|
1569
1792
|
...options,
|
|
@@ -1573,11 +1796,19 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
1573
1796
|
}
|
|
1574
1797
|
});
|
|
1575
1798
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
1799
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1576
1800
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1577
1801
|
url: "/plans/{id}",
|
|
1578
1802
|
...options
|
|
1579
1803
|
});
|
|
1804
|
+
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
1805
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1806
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1807
|
+
url: "/tenants/{tenant_id}/stats",
|
|
1808
|
+
...options
|
|
1809
|
+
});
|
|
1580
1810
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
1811
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1581
1812
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1582
1813
|
url: "/wallet/addons",
|
|
1583
1814
|
...options,
|
|
@@ -1587,6 +1818,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
1587
1818
|
}
|
|
1588
1819
|
});
|
|
1589
1820
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
1821
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1590
1822
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1591
1823
|
url: "/users/auth/magic_link/login",
|
|
1592
1824
|
...options,
|
|
@@ -1596,11 +1828,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
1596
1828
|
}
|
|
1597
1829
|
});
|
|
1598
1830
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
1831
|
+
querySerializer: {
|
|
1832
|
+
parameters: {
|
|
1833
|
+
filter: { object: { style: "form" } },
|
|
1834
|
+
page: { object: { style: "form" } },
|
|
1835
|
+
fields: { object: { style: "form" } }
|
|
1836
|
+
}
|
|
1837
|
+
},
|
|
1599
1838
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1600
1839
|
url: "/api_keys",
|
|
1601
1840
|
...options
|
|
1602
1841
|
});
|
|
1603
1842
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
1843
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1604
1844
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1605
1845
|
url: "/api_keys",
|
|
1606
1846
|
...options,
|
|
@@ -1610,21 +1850,25 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
1610
1850
|
}
|
|
1611
1851
|
});
|
|
1612
1852
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
1853
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1613
1854
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1614
1855
|
url: "/agents/{id}",
|
|
1615
1856
|
...options
|
|
1616
1857
|
});
|
|
1617
1858
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
1859
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1618
1860
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1619
1861
|
url: "/api_keys/{id}",
|
|
1620
1862
|
...options
|
|
1621
1863
|
});
|
|
1622
1864
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
1865
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1623
1866
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1624
1867
|
url: "/api_keys/{id}",
|
|
1625
1868
|
...options
|
|
1626
1869
|
});
|
|
1627
1870
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
1871
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1628
1872
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1629
1873
|
url: "/api_keys/{id}",
|
|
1630
1874
|
...options,
|
|
@@ -1634,11 +1878,19 @@ var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
|
1634
1878
|
}
|
|
1635
1879
|
});
|
|
1636
1880
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
1881
|
+
querySerializer: {
|
|
1882
|
+
parameters: {
|
|
1883
|
+
filter: { object: { style: "form" } },
|
|
1884
|
+
page: { object: { style: "form" } },
|
|
1885
|
+
fields: { object: { style: "form" } }
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1637
1888
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1638
1889
|
url: "/ai/conversations",
|
|
1639
1890
|
...options
|
|
1640
1891
|
});
|
|
1641
1892
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
1893
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1642
1894
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1643
1895
|
url: "/ai/conversations",
|
|
1644
1896
|
...options,
|
|
@@ -1648,6 +1900,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
1648
1900
|
}
|
|
1649
1901
|
});
|
|
1650
1902
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
1903
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1651
1904
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1652
1905
|
url: "/ai/search",
|
|
1653
1906
|
...options,
|
|
@@ -1657,11 +1910,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
1657
1910
|
}
|
|
1658
1911
|
});
|
|
1659
1912
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
1913
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1660
1914
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1661
1915
|
url: "/ai/graph/nodes/{id}",
|
|
1662
1916
|
...options
|
|
1663
1917
|
});
|
|
1664
1918
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
1919
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1665
1920
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1666
1921
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
1667
1922
|
...options,
|
|
@@ -1671,16 +1926,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
1671
1926
|
}
|
|
1672
1927
|
});
|
|
1673
1928
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
1929
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1674
1930
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1675
1931
|
url: "/applications/{id}",
|
|
1676
1932
|
...options
|
|
1677
1933
|
});
|
|
1678
1934
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
1935
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1679
1936
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1680
1937
|
url: "/applications/{id}",
|
|
1681
1938
|
...options
|
|
1682
1939
|
});
|
|
1683
1940
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
1941
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1684
1942
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1685
1943
|
url: "/applications/{id}",
|
|
1686
1944
|
...options,
|
|
@@ -1690,21 +1948,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
1690
1948
|
}
|
|
1691
1949
|
});
|
|
1692
1950
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
1951
|
+
querySerializer: {
|
|
1952
|
+
parameters: {
|
|
1953
|
+
filter: { object: { style: "form" } },
|
|
1954
|
+
fields: { object: { style: "form" } }
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1693
1957
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1694
1958
|
url: "/search/health",
|
|
1695
1959
|
...options
|
|
1696
1960
|
});
|
|
1697
1961
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
1962
|
+
querySerializer: {
|
|
1963
|
+
parameters: {
|
|
1964
|
+
filter: { object: { style: "form" } },
|
|
1965
|
+
fields: { object: { style: "form" } }
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1698
1968
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1699
1969
|
url: "/transactions",
|
|
1700
1970
|
...options
|
|
1701
1971
|
});
|
|
1702
1972
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
1973
|
+
querySerializer: {
|
|
1974
|
+
parameters: {
|
|
1975
|
+
filter: { object: { style: "form" } },
|
|
1976
|
+
page: { object: { style: "form" } },
|
|
1977
|
+
fields: { object: { style: "form" } }
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1703
1980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1704
1981
|
url: "/user_profiles",
|
|
1705
1982
|
...options
|
|
1706
1983
|
});
|
|
1707
1984
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
1985
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1708
1986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1709
1987
|
url: "/user_profiles",
|
|
1710
1988
|
...options,
|
|
@@ -1714,6 +1992,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
1714
1992
|
}
|
|
1715
1993
|
});
|
|
1716
1994
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
1995
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1717
1996
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1718
1997
|
url: "/users/{id}/confirm-email",
|
|
1719
1998
|
...options,
|
|
@@ -1723,11 +2002,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
1723
2002
|
}
|
|
1724
2003
|
});
|
|
1725
2004
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2005
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1726
2006
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1727
2007
|
url: "/threads/search",
|
|
1728
2008
|
...options
|
|
1729
2009
|
});
|
|
1730
2010
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2011
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1731
2012
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1732
2013
|
url: "/wallet/plan",
|
|
1733
2014
|
...options,
|
|
@@ -1737,21 +2018,31 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
1737
2018
|
}
|
|
1738
2019
|
});
|
|
1739
2020
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2021
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1740
2022
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1741
2023
|
url: "/plans/slug/{slug}",
|
|
1742
2024
|
...options
|
|
1743
2025
|
});
|
|
1744
2026
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2027
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1745
2028
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1746
2029
|
url: "/llm_analytics/{id}",
|
|
1747
2030
|
...options
|
|
1748
2031
|
});
|
|
1749
2032
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2033
|
+
querySerializer: {
|
|
2034
|
+
parameters: {
|
|
2035
|
+
filter: { object: { style: "form" } },
|
|
2036
|
+
page: { object: { style: "form" } },
|
|
2037
|
+
fields: { object: { style: "form" } }
|
|
2038
|
+
}
|
|
2039
|
+
},
|
|
1750
2040
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1751
2041
|
url: "/extraction/schema-fields",
|
|
1752
2042
|
...options
|
|
1753
2043
|
});
|
|
1754
2044
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2045
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1755
2046
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1756
2047
|
url: "/extraction/schema-fields",
|
|
1757
2048
|
...options,
|
|
@@ -1761,11 +2052,18 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
1761
2052
|
}
|
|
1762
2053
|
});
|
|
1763
2054
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2055
|
+
querySerializer: {
|
|
2056
|
+
parameters: {
|
|
2057
|
+
filter: { object: { style: "form" } },
|
|
2058
|
+
fields: { object: { style: "form" } }
|
|
2059
|
+
}
|
|
2060
|
+
},
|
|
1764
2061
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1765
2062
|
url: "/search/status",
|
|
1766
2063
|
...options
|
|
1767
2064
|
});
|
|
1768
2065
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2066
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1769
2067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1770
2068
|
url: "/api_keys/{id}/allocate",
|
|
1771
2069
|
...options,
|
|
@@ -1775,6 +2073,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
1775
2073
|
}
|
|
1776
2074
|
});
|
|
1777
2075
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2076
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1778
2077
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1779
2078
|
url: "/users/auth/login",
|
|
1780
2079
|
...options,
|
|
@@ -1784,6 +2083,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
1784
2083
|
}
|
|
1785
2084
|
});
|
|
1786
2085
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2086
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1787
2087
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1788
2088
|
url: "/ai/embed",
|
|
1789
2089
|
...options,
|
|
@@ -1793,11 +2093,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
1793
2093
|
}
|
|
1794
2094
|
});
|
|
1795
2095
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2096
|
+
querySerializer: {
|
|
2097
|
+
parameters: {
|
|
2098
|
+
filter: { object: { style: "form" } },
|
|
2099
|
+
fields: { object: { style: "form" } }
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
1796
2102
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1797
2103
|
url: "/workspaces/mine",
|
|
1798
2104
|
...options
|
|
1799
2105
|
});
|
|
1800
2106
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2107
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1801
2108
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1802
2109
|
url: "/search/reindex",
|
|
1803
2110
|
...options,
|
|
@@ -1807,6 +2114,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
1807
2114
|
}
|
|
1808
2115
|
});
|
|
1809
2116
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2117
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1810
2118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1811
2119
|
url: "/extraction/results/{id}/regenerate",
|
|
1812
2120
|
...options,
|
|
@@ -1816,6 +2124,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
1816
2124
|
}
|
|
1817
2125
|
});
|
|
1818
2126
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2127
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1819
2128
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1820
2129
|
url: "/users/auth/confirm",
|
|
1821
2130
|
...options,
|
|
@@ -1825,6 +2134,7 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
1825
2134
|
}
|
|
1826
2135
|
});
|
|
1827
2136
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
2137
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1828
2138
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1829
2139
|
url: "/extraction/schemas",
|
|
1830
2140
|
...options,
|
|
@@ -1834,11 +2144,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
1834
2144
|
}
|
|
1835
2145
|
});
|
|
1836
2146
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
2147
|
+
querySerializer: {
|
|
2148
|
+
parameters: {
|
|
2149
|
+
filter: { object: { style: "form" } },
|
|
2150
|
+
fields: { object: { style: "form" } }
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
1837
2153
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1838
2154
|
url: "/storage/stats",
|
|
1839
2155
|
...options
|
|
1840
2156
|
});
|
|
1841
2157
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
2158
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1842
2159
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1843
2160
|
url: "/tenants/{id}/buy-storage",
|
|
1844
2161
|
...options,
|
|
@@ -1848,11 +2165,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
1848
2165
|
}
|
|
1849
2166
|
});
|
|
1850
2167
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
2168
|
+
querySerializer: {
|
|
2169
|
+
parameters: {
|
|
2170
|
+
filter: { object: { style: "form" } },
|
|
2171
|
+
page: { object: { style: "form" } },
|
|
2172
|
+
fields: { object: { style: "form" } }
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
1851
2175
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1852
2176
|
url: "/workspace-memberships",
|
|
1853
2177
|
...options
|
|
1854
2178
|
});
|
|
1855
2179
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
2180
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1856
2181
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1857
2182
|
url: "/workspace-memberships",
|
|
1858
2183
|
...options,
|
|
@@ -1862,6 +2187,7 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
1862
2187
|
}
|
|
1863
2188
|
});
|
|
1864
2189
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
2190
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1865
2191
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1866
2192
|
url: "/users/auth/magic_link/request",
|
|
1867
2193
|
...options,
|
|
@@ -1871,6 +2197,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
1871
2197
|
}
|
|
1872
2198
|
});
|
|
1873
2199
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
2200
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1874
2201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1875
2202
|
url: "/users/auth/register",
|
|
1876
2203
|
...options,
|
|
@@ -1889,16 +2216,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
1889
2216
|
}
|
|
1890
2217
|
});
|
|
1891
2218
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
2219
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1892
2220
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1893
2221
|
url: "/buckets/{id}",
|
|
1894
2222
|
...options
|
|
1895
2223
|
});
|
|
1896
2224
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
2225
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1897
2226
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1898
2227
|
url: "/buckets/{id}",
|
|
1899
2228
|
...options
|
|
1900
2229
|
});
|
|
1901
2230
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
2231
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1902
2232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1903
2233
|
url: "/buckets/{id}",
|
|
1904
2234
|
...options,
|
|
@@ -1908,11 +2238,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
1908
2238
|
}
|
|
1909
2239
|
});
|
|
1910
2240
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
2241
|
+
querySerializer: {
|
|
2242
|
+
parameters: {
|
|
2243
|
+
filter: { object: { style: "form" } },
|
|
2244
|
+
fields: { object: { style: "form" } }
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
1911
2247
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1912
2248
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
1913
2249
|
...options
|
|
1914
2250
|
});
|
|
1915
2251
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
2252
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1916
2253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1917
2254
|
url: "/extraction/documents/begin_upload",
|
|
1918
2255
|
...options,
|
|
@@ -1922,21 +2259,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
1922
2259
|
}
|
|
1923
2260
|
});
|
|
1924
2261
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
2262
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1925
2263
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1926
2264
|
url: "/ai/graph/edges/{id}",
|
|
1927
2265
|
...options
|
|
1928
2266
|
});
|
|
1929
2267
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
2268
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1930
2269
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1931
2270
|
url: "/tenants/{id}",
|
|
1932
2271
|
...options
|
|
1933
2272
|
});
|
|
1934
2273
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
2274
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1935
2275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1936
2276
|
url: "/tenants/{id}",
|
|
1937
2277
|
...options
|
|
1938
2278
|
});
|
|
1939
2279
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
2280
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1940
2281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1941
2282
|
url: "/tenants/{id}",
|
|
1942
2283
|
...options,
|
|
@@ -1946,16 +2287,25 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
1946
2287
|
}
|
|
1947
2288
|
});
|
|
1948
2289
|
var getPlans = (options) => (options.client ?? client).get({
|
|
2290
|
+
querySerializer: {
|
|
2291
|
+
parameters: {
|
|
2292
|
+
filter: { object: { style: "form" } },
|
|
2293
|
+
page: { object: { style: "form" } },
|
|
2294
|
+
fields: { object: { style: "form" } }
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
1949
2297
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1950
2298
|
url: "/plans",
|
|
1951
2299
|
...options
|
|
1952
2300
|
});
|
|
1953
2301
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
2302
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1954
2303
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1955
2304
|
url: "/extraction/schemas/{id}",
|
|
1956
2305
|
...options
|
|
1957
2306
|
});
|
|
1958
2307
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
2308
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1959
2309
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1960
2310
|
url: "/extraction/schemas/{id}",
|
|
1961
2311
|
...options,
|
|
@@ -1965,6 +2315,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
1965
2315
|
}
|
|
1966
2316
|
});
|
|
1967
2317
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
2318
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1968
2319
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1969
2320
|
url: "/agents/{id}/test",
|
|
1970
2321
|
...options,
|
|
@@ -1974,16 +2325,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1974
2325
|
}
|
|
1975
2326
|
});
|
|
1976
2327
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
2328
|
+
querySerializer: {
|
|
2329
|
+
parameters: {
|
|
2330
|
+
filter: { object: { style: "form" } },
|
|
2331
|
+
fields: { object: { style: "form" } }
|
|
2332
|
+
}
|
|
2333
|
+
},
|
|
1977
2334
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1978
2335
|
url: "/extraction/documents",
|
|
1979
2336
|
...options
|
|
1980
2337
|
});
|
|
1981
2338
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
2339
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1982
2340
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1983
2341
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
1984
2342
|
...options
|
|
1985
2343
|
});
|
|
1986
2344
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
2345
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1987
2346
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1988
2347
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
1989
2348
|
...options,
|
|
@@ -1993,6 +2352,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
1993
2352
|
}
|
|
1994
2353
|
});
|
|
1995
2354
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
2355
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1996
2356
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1997
2357
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
1998
2358
|
...options,
|
|
@@ -2002,11 +2362,19 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2002
2362
|
}
|
|
2003
2363
|
});
|
|
2004
2364
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
2365
|
+
querySerializer: {
|
|
2366
|
+
parameters: {
|
|
2367
|
+
filter: { object: { style: "form" } },
|
|
2368
|
+
page: { object: { style: "form" } },
|
|
2369
|
+
fields: { object: { style: "form" } }
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2005
2372
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2006
2373
|
url: "/ai/messages",
|
|
2007
2374
|
...options
|
|
2008
2375
|
});
|
|
2009
2376
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
2377
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2010
2378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2011
2379
|
url: "/ai/messages",
|
|
2012
2380
|
...options,
|
|
@@ -2016,6 +2384,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2016
2384
|
}
|
|
2017
2385
|
});
|
|
2018
2386
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
2387
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2019
2388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2020
2389
|
url: "/storage/sign_upload",
|
|
2021
2390
|
...options,
|
|
@@ -2025,6 +2394,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2025
2394
|
}
|
|
2026
2395
|
});
|
|
2027
2396
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
2397
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2028
2398
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2029
2399
|
url: "/webhook_deliveries/{id}/retry",
|
|
2030
2400
|
...options,
|
|
@@ -2034,6 +2404,7 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2034
2404
|
}
|
|
2035
2405
|
});
|
|
2036
2406
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
2407
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2037
2408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2038
2409
|
url: "/threads/{id}/summarize",
|
|
2039
2410
|
...options,
|
|
@@ -2043,6 +2414,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2043
2414
|
}
|
|
2044
2415
|
});
|
|
2045
2416
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
2417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2046
2418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2047
2419
|
url: "/configs/{key}",
|
|
2048
2420
|
...options,
|
|
@@ -2052,6 +2424,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2052
2424
|
}
|
|
2053
2425
|
});
|
|
2054
2426
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
2427
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2055
2428
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2056
2429
|
url: "/api_keys/{id}/rotate",
|
|
2057
2430
|
...options,
|
|
@@ -2061,6 +2434,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2061
2434
|
}
|
|
2062
2435
|
});
|
|
2063
2436
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
2437
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2064
2438
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2065
2439
|
url: "/extraction/results",
|
|
2066
2440
|
...options,
|
|
@@ -2070,6 +2444,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2070
2444
|
}
|
|
2071
2445
|
});
|
|
2072
2446
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
2447
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2449
|
url: "/agents/{id}/clone",
|
|
2075
2450
|
...options,
|
|
@@ -2079,26 +2454,31 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2079
2454
|
}
|
|
2080
2455
|
});
|
|
2081
2456
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
2457
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2082
2458
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2083
2459
|
url: "/ai/conversations/{id}",
|
|
2084
2460
|
...options
|
|
2085
2461
|
});
|
|
2086
2462
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
2463
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2087
2464
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2088
2465
|
url: "/ai/conversations/{id}",
|
|
2089
2466
|
...options
|
|
2090
2467
|
});
|
|
2091
2468
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
2469
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2092
2470
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2093
2471
|
url: "/user_profiles/{id}",
|
|
2094
2472
|
...options
|
|
2095
2473
|
});
|
|
2096
2474
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
2475
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2097
2476
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2098
2477
|
url: "/user_profiles/{id}",
|
|
2099
2478
|
...options
|
|
2100
2479
|
});
|
|
2101
2480
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
2481
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2102
2482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2103
2483
|
url: "/user_profiles/{id}",
|
|
2104
2484
|
...options,
|
|
@@ -2108,21 +2488,31 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2108
2488
|
}
|
|
2109
2489
|
});
|
|
2110
2490
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
2491
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2111
2492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2112
2493
|
url: "/objects/{id}",
|
|
2113
2494
|
...options
|
|
2114
2495
|
});
|
|
2115
2496
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
2497
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2116
2498
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2117
2499
|
url: "/objects/{id}",
|
|
2118
2500
|
...options
|
|
2119
2501
|
});
|
|
2120
2502
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
2503
|
+
querySerializer: {
|
|
2504
|
+
parameters: {
|
|
2505
|
+
filter: { object: { style: "form" } },
|
|
2506
|
+
page: { object: { style: "form" } },
|
|
2507
|
+
fields: { object: { style: "form" } }
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2121
2510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2122
2511
|
url: "/webhook_configs",
|
|
2123
2512
|
...options
|
|
2124
2513
|
});
|
|
2125
2514
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
2515
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2126
2516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2127
2517
|
url: "/webhook_configs",
|
|
2128
2518
|
...options,
|
|
@@ -2132,6 +2522,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
2132
2522
|
}
|
|
2133
2523
|
});
|
|
2134
2524
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
2525
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2135
2526
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2136
2527
|
url: "/objects/bulk-destroy",
|
|
2137
2528
|
...options,
|
|
@@ -2141,31 +2532,42 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
2141
2532
|
}
|
|
2142
2533
|
});
|
|
2143
2534
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
2535
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2144
2536
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2145
2537
|
url: "/applications/by-slug/{slug}",
|
|
2146
2538
|
...options
|
|
2147
2539
|
});
|
|
2148
2540
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
2541
|
+
querySerializer: {
|
|
2542
|
+
parameters: {
|
|
2543
|
+
filter: { object: { style: "form" } },
|
|
2544
|
+
fields: { object: { style: "form" } }
|
|
2545
|
+
}
|
|
2546
|
+
},
|
|
2149
2547
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2150
2548
|
url: "/notification_logs",
|
|
2151
2549
|
...options
|
|
2152
2550
|
});
|
|
2153
2551
|
var getWallet = (options) => (options.client ?? client).get({
|
|
2552
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2154
2553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2155
2554
|
url: "/wallet",
|
|
2156
2555
|
...options
|
|
2157
2556
|
});
|
|
2158
2557
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
2558
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2159
2559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2160
2560
|
url: "/messages/{id}",
|
|
2161
2561
|
...options
|
|
2162
2562
|
});
|
|
2163
2563
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
2564
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2164
2565
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2165
2566
|
url: "/messages/{id}",
|
|
2166
2567
|
...options
|
|
2167
2568
|
});
|
|
2168
2569
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
2570
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2169
2571
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2170
2572
|
url: "/messages/{id}",
|
|
2171
2573
|
...options,
|
|
@@ -2175,26 +2577,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
2175
2577
|
}
|
|
2176
2578
|
});
|
|
2177
2579
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
2580
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2178
2581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2179
2582
|
url: "/llm_analytics/usage",
|
|
2180
2583
|
...options
|
|
2181
2584
|
});
|
|
2182
2585
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
2586
|
+
querySerializer: {
|
|
2587
|
+
parameters: {
|
|
2588
|
+
filter: { object: { style: "form" } },
|
|
2589
|
+
fields: { object: { style: "form" } }
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2183
2592
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2184
2593
|
url: "/search/stats",
|
|
2185
2594
|
...options
|
|
2186
2595
|
});
|
|
2187
2596
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
2597
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2188
2598
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2189
2599
|
url: "/notification_preferences/{id}",
|
|
2190
2600
|
...options
|
|
2191
2601
|
});
|
|
2192
2602
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
2603
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2193
2604
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2194
2605
|
url: "/notification_preferences/{id}",
|
|
2195
2606
|
...options
|
|
2196
2607
|
});
|
|
2197
2608
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
2609
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2198
2610
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2199
2611
|
url: "/notification_preferences/{id}",
|
|
2200
2612
|
...options,
|
|
@@ -2204,11 +2616,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
2204
2616
|
}
|
|
2205
2617
|
});
|
|
2206
2618
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
2619
|
+
querySerializer: {
|
|
2620
|
+
parameters: {
|
|
2621
|
+
filter: { object: { style: "form" } },
|
|
2622
|
+
page: { object: { style: "form" } },
|
|
2623
|
+
fields: { object: { style: "form" } }
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2207
2626
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2208
2627
|
url: "/ai/graph/nodes",
|
|
2209
2628
|
...options
|
|
2210
2629
|
});
|
|
2211
2630
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
2631
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2212
2632
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2213
2633
|
url: "/ai/graph/nodes",
|
|
2214
2634
|
...options,
|
|
@@ -2218,11 +2638,18 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
2218
2638
|
}
|
|
2219
2639
|
});
|
|
2220
2640
|
var getAgents = (options) => (options.client ?? client).get({
|
|
2641
|
+
querySerializer: {
|
|
2642
|
+
parameters: {
|
|
2643
|
+
filter: { object: { style: "form" } },
|
|
2644
|
+
fields: { object: { style: "form" } }
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2221
2647
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2222
2648
|
url: "/agents",
|
|
2223
2649
|
...options
|
|
2224
2650
|
});
|
|
2225
2651
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
2652
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2226
2653
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2227
2654
|
url: "/users/register_isv",
|
|
2228
2655
|
...options,
|
|
@@ -2232,16 +2659,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
2232
2659
|
}
|
|
2233
2660
|
});
|
|
2234
2661
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
2662
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2235
2663
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2236
2664
|
url: "/extraction/batches/{id}",
|
|
2237
2665
|
...options
|
|
2238
2666
|
});
|
|
2239
2667
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
2668
|
+
querySerializer: {
|
|
2669
|
+
parameters: {
|
|
2670
|
+
filter: { object: { style: "form" } },
|
|
2671
|
+
page: { object: { style: "form" } },
|
|
2672
|
+
fields: { object: { style: "form" } }
|
|
2673
|
+
}
|
|
2674
|
+
},
|
|
2240
2675
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2241
2676
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2242
2677
|
...options
|
|
2243
2678
|
});
|
|
2244
2679
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
2680
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2245
2681
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2246
2682
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2247
2683
|
...options,
|
|
@@ -2251,11 +2687,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
2251
2687
|
}
|
|
2252
2688
|
});
|
|
2253
2689
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
2690
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2254
2691
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2255
2692
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2256
2693
|
...options
|
|
2257
2694
|
});
|
|
2258
2695
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
2696
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2259
2697
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2260
2698
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2261
2699
|
...options,
|
|
@@ -2265,16 +2703,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
2265
2703
|
}
|
|
2266
2704
|
});
|
|
2267
2705
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
2706
|
+
querySerializer: {
|
|
2707
|
+
parameters: {
|
|
2708
|
+
filter: { object: { style: "form" } },
|
|
2709
|
+
page: { object: { style: "form" } },
|
|
2710
|
+
fields: { object: { style: "form" } }
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2268
2713
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2269
2714
|
url: "/credit-packages",
|
|
2270
2715
|
...options
|
|
2271
2716
|
});
|
|
2272
2717
|
var getUsers = (options) => (options.client ?? client).get({
|
|
2718
|
+
querySerializer: {
|
|
2719
|
+
parameters: {
|
|
2720
|
+
filter: { object: { style: "form" } },
|
|
2721
|
+
page: { object: { style: "form" } },
|
|
2722
|
+
fields: { object: { style: "form" } }
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2273
2725
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2274
2726
|
url: "/users",
|
|
2275
2727
|
...options
|
|
2276
2728
|
});
|
|
2277
2729
|
var getObjects = (options) => (options.client ?? client).get({
|
|
2730
|
+
querySerializer: {
|
|
2731
|
+
parameters: {
|
|
2732
|
+
filter: { object: { style: "form" } },
|
|
2733
|
+
page: { object: { style: "form" } },
|
|
2734
|
+
fields: { object: { style: "form" } }
|
|
2735
|
+
}
|
|
2736
|
+
},
|
|
2278
2737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2279
2738
|
url: "/objects",
|
|
2280
2739
|
...options
|
|
@@ -2667,6 +3126,7 @@ export {
|
|
|
2667
3126
|
deleteWorkspacesById,
|
|
2668
3127
|
getAgents,
|
|
2669
3128
|
getAgentsById,
|
|
3129
|
+
getAgentsByIdTrainingStats,
|
|
2670
3130
|
getAiChunksDocumentByDocumentId,
|
|
2671
3131
|
getAiConversations,
|
|
2672
3132
|
getAiConversationsById,
|
|
@@ -2733,6 +3193,7 @@ export {
|
|
|
2733
3193
|
getTenantMemberships,
|
|
2734
3194
|
getTenants,
|
|
2735
3195
|
getTenantsById,
|
|
3196
|
+
getTenantsByTenantIdStats,
|
|
2736
3197
|
getThreads,
|
|
2737
3198
|
getThreadsById,
|
|
2738
3199
|
getThreadsSearch,
|