@vectorize-io/hindsight-client 0.1.13 → 0.1.15
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/generated/client/client.gen.d.ts +1 -1
- package/dist/generated/client/client.gen.js +43 -43
- package/dist/generated/client/index.d.ts +8 -8
- package/dist/generated/client/types.gen.d.ts +18 -18
- package/dist/generated/client/types.gen.d.ts.map +1 -1
- package/dist/generated/client/utils.gen.d.ts +3 -3
- package/dist/generated/client/utils.gen.d.ts.map +1 -1
- package/dist/generated/client/utils.gen.js +30 -30
- package/dist/generated/client/utils.gen.js.map +1 -1
- package/dist/generated/client.gen.d.ts +2 -2
- package/dist/generated/client.gen.d.ts.map +1 -1
- package/dist/generated/client.gen.js.map +1 -1
- package/dist/generated/core/auth.gen.d.ts +3 -3
- package/dist/generated/core/auth.gen.js +3 -3
- package/dist/generated/core/bodySerializer.gen.d.ts +1 -1
- package/dist/generated/core/bodySerializer.gen.js +3 -3
- package/dist/generated/core/params.gen.d.ts +3 -3
- package/dist/generated/core/params.gen.js +9 -9
- package/dist/generated/core/pathSerializer.gen.d.ts +3 -3
- package/dist/generated/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/generated/core/pathSerializer.gen.js +36 -36
- package/dist/generated/core/pathSerializer.gen.js.map +1 -1
- package/dist/generated/core/queryKeySerializer.gen.js +11 -11
- package/dist/generated/core/serverSentEvents.gen.d.ts +3 -3
- package/dist/generated/core/serverSentEvents.gen.js +18 -18
- package/dist/generated/core/types.gen.d.ts +4 -4
- package/dist/generated/core/utils.gen.d.ts +1 -1
- package/dist/generated/core/utils.gen.js +16 -16
- package/dist/generated/index.d.ts +2 -2
- package/dist/generated/sdk.gen.d.ts +20 -20
- package/dist/generated/sdk.gen.d.ts.map +1 -1
- package/dist/generated/sdk.gen.js +66 -59
- package/dist/generated/sdk.gen.js.map +1 -1
- package/dist/generated/types.gen.d.ts +349 -30
- package/dist/generated/types.gen.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +3 -0
- package/dist/src/index.js.map +1 -1
- package/generated/client/client.gen.ts +50 -50
- package/generated/client/index.ts +8 -8
- package/generated/client/types.gen.ts +38 -37
- package/generated/client/utils.gen.ts +47 -42
- package/generated/client.gen.ts +10 -3
- package/generated/core/auth.gen.ts +6 -6
- package/generated/core/bodySerializer.gen.ts +4 -4
- package/generated/core/params.gen.ts +12 -12
- package/generated/core/pathSerializer.gen.ts +40 -41
- package/generated/core/queryKeySerializer.gen.ts +11 -11
- package/generated/core/serverSentEvents.gen.ts +22 -22
- package/generated/core/types.gen.ts +12 -12
- package/generated/core/utils.gen.ts +18 -18
- package/generated/index.ts +2 -2
- package/generated/sdk.gen.ts +336 -85
- package/generated/types.gen.ts +1352 -990
- package/package.json +1 -1
- package/src/index.ts +5 -2
|
@@ -45,12 +45,12 @@ export type BankListItem = {
|
|
|
45
45
|
/**
|
|
46
46
|
* Name
|
|
47
47
|
*/
|
|
48
|
-
name
|
|
48
|
+
name?: string | null;
|
|
49
49
|
disposition: DispositionTraits;
|
|
50
50
|
/**
|
|
51
51
|
* Background
|
|
52
52
|
*/
|
|
53
|
-
background
|
|
53
|
+
background?: string | null;
|
|
54
54
|
/**
|
|
55
55
|
* Created At
|
|
56
56
|
*/
|
|
@@ -91,12 +91,88 @@ export type BankProfileResponse = {
|
|
|
91
91
|
*/
|
|
92
92
|
background: string;
|
|
93
93
|
};
|
|
94
|
+
/**
|
|
95
|
+
* BankStatsResponse
|
|
96
|
+
*
|
|
97
|
+
* Response model for bank statistics endpoint.
|
|
98
|
+
*/
|
|
99
|
+
export type BankStatsResponse = {
|
|
100
|
+
/**
|
|
101
|
+
* Bank Id
|
|
102
|
+
*/
|
|
103
|
+
bank_id: string;
|
|
104
|
+
/**
|
|
105
|
+
* Total Nodes
|
|
106
|
+
*/
|
|
107
|
+
total_nodes: number;
|
|
108
|
+
/**
|
|
109
|
+
* Total Links
|
|
110
|
+
*/
|
|
111
|
+
total_links: number;
|
|
112
|
+
/**
|
|
113
|
+
* Total Documents
|
|
114
|
+
*/
|
|
115
|
+
total_documents: number;
|
|
116
|
+
/**
|
|
117
|
+
* Nodes By Fact Type
|
|
118
|
+
*/
|
|
119
|
+
nodes_by_fact_type: {
|
|
120
|
+
[key: string]: number;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Links By Link Type
|
|
124
|
+
*/
|
|
125
|
+
links_by_link_type: {
|
|
126
|
+
[key: string]: number;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* Links By Fact Type
|
|
130
|
+
*/
|
|
131
|
+
links_by_fact_type: {
|
|
132
|
+
[key: string]: number;
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* Links Breakdown
|
|
136
|
+
*/
|
|
137
|
+
links_breakdown: {
|
|
138
|
+
[key: string]: {
|
|
139
|
+
[key: string]: number;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Pending Operations
|
|
144
|
+
*/
|
|
145
|
+
pending_operations: number;
|
|
146
|
+
/**
|
|
147
|
+
* Failed Operations
|
|
148
|
+
*/
|
|
149
|
+
failed_operations: number;
|
|
150
|
+
};
|
|
94
151
|
/**
|
|
95
152
|
* Budget
|
|
96
153
|
*
|
|
97
154
|
* Budget levels for recall/reflect operations.
|
|
98
155
|
*/
|
|
99
|
-
export type Budget =
|
|
156
|
+
export type Budget = "low" | "mid" | "high";
|
|
157
|
+
/**
|
|
158
|
+
* CancelOperationResponse
|
|
159
|
+
*
|
|
160
|
+
* Response model for cancel operation endpoint.
|
|
161
|
+
*/
|
|
162
|
+
export type CancelOperationResponse = {
|
|
163
|
+
/**
|
|
164
|
+
* Success
|
|
165
|
+
*/
|
|
166
|
+
success: boolean;
|
|
167
|
+
/**
|
|
168
|
+
* Message
|
|
169
|
+
*/
|
|
170
|
+
message: string;
|
|
171
|
+
/**
|
|
172
|
+
* Operation Id
|
|
173
|
+
*/
|
|
174
|
+
operation_id: string;
|
|
175
|
+
};
|
|
100
176
|
/**
|
|
101
177
|
* ChunkData
|
|
102
178
|
*
|
|
@@ -182,6 +258,29 @@ export type CreateBankRequest = {
|
|
|
182
258
|
*/
|
|
183
259
|
background?: string | null;
|
|
184
260
|
};
|
|
261
|
+
/**
|
|
262
|
+
* DeleteDocumentResponse
|
|
263
|
+
*
|
|
264
|
+
* Response model for delete document endpoint.
|
|
265
|
+
*/
|
|
266
|
+
export type DeleteDocumentResponse = {
|
|
267
|
+
/**
|
|
268
|
+
* Success
|
|
269
|
+
*/
|
|
270
|
+
success: boolean;
|
|
271
|
+
/**
|
|
272
|
+
* Message
|
|
273
|
+
*/
|
|
274
|
+
message: string;
|
|
275
|
+
/**
|
|
276
|
+
* Document Id
|
|
277
|
+
*/
|
|
278
|
+
document_id: string;
|
|
279
|
+
/**
|
|
280
|
+
* Memory Units Deleted
|
|
281
|
+
*/
|
|
282
|
+
memory_units_deleted: number;
|
|
283
|
+
};
|
|
185
284
|
/**
|
|
186
285
|
* DeleteResponse
|
|
187
286
|
*
|
|
@@ -192,6 +291,14 @@ export type DeleteResponse = {
|
|
|
192
291
|
* Success
|
|
193
292
|
*/
|
|
194
293
|
success: boolean;
|
|
294
|
+
/**
|
|
295
|
+
* Message
|
|
296
|
+
*/
|
|
297
|
+
message?: string | null;
|
|
298
|
+
/**
|
|
299
|
+
* Deleted Count
|
|
300
|
+
*/
|
|
301
|
+
deleted_count?: number | null;
|
|
195
302
|
};
|
|
196
303
|
/**
|
|
197
304
|
* DispositionTraits
|
|
@@ -523,6 +630,56 @@ export type MemoryItem = {
|
|
|
523
630
|
*/
|
|
524
631
|
document_id?: string | null;
|
|
525
632
|
};
|
|
633
|
+
/**
|
|
634
|
+
* OperationResponse
|
|
635
|
+
*
|
|
636
|
+
* Response model for a single async operation.
|
|
637
|
+
*/
|
|
638
|
+
export type OperationResponse = {
|
|
639
|
+
/**
|
|
640
|
+
* Id
|
|
641
|
+
*/
|
|
642
|
+
id: string;
|
|
643
|
+
/**
|
|
644
|
+
* Task Type
|
|
645
|
+
*/
|
|
646
|
+
task_type: string;
|
|
647
|
+
/**
|
|
648
|
+
* Items Count
|
|
649
|
+
*/
|
|
650
|
+
items_count: number;
|
|
651
|
+
/**
|
|
652
|
+
* Document Id
|
|
653
|
+
*/
|
|
654
|
+
document_id: string | null;
|
|
655
|
+
/**
|
|
656
|
+
* Created At
|
|
657
|
+
*/
|
|
658
|
+
created_at: string;
|
|
659
|
+
/**
|
|
660
|
+
* Status
|
|
661
|
+
*/
|
|
662
|
+
status: string;
|
|
663
|
+
/**
|
|
664
|
+
* Error Message
|
|
665
|
+
*/
|
|
666
|
+
error_message: string | null;
|
|
667
|
+
};
|
|
668
|
+
/**
|
|
669
|
+
* OperationsListResponse
|
|
670
|
+
*
|
|
671
|
+
* Response model for list operations endpoint.
|
|
672
|
+
*/
|
|
673
|
+
export type OperationsListResponse = {
|
|
674
|
+
/**
|
|
675
|
+
* Bank Id
|
|
676
|
+
*/
|
|
677
|
+
bank_id: string;
|
|
678
|
+
/**
|
|
679
|
+
* Operations
|
|
680
|
+
*/
|
|
681
|
+
operations: Array<OperationResponse>;
|
|
682
|
+
};
|
|
526
683
|
/**
|
|
527
684
|
* RecallRequest
|
|
528
685
|
*
|
|
@@ -793,7 +950,7 @@ export type HealthEndpointHealthGetData = {
|
|
|
793
950
|
body?: never;
|
|
794
951
|
path?: never;
|
|
795
952
|
query?: never;
|
|
796
|
-
url:
|
|
953
|
+
url: "/health";
|
|
797
954
|
};
|
|
798
955
|
export type HealthEndpointHealthGetResponses = {
|
|
799
956
|
/**
|
|
@@ -805,7 +962,7 @@ export type MetricsEndpointMetricsGetData = {
|
|
|
805
962
|
body?: never;
|
|
806
963
|
path?: never;
|
|
807
964
|
query?: never;
|
|
808
|
-
url:
|
|
965
|
+
url: "/metrics";
|
|
809
966
|
};
|
|
810
967
|
export type MetricsEndpointMetricsGetResponses = {
|
|
811
968
|
/**
|
|
@@ -815,6 +972,12 @@ export type MetricsEndpointMetricsGetResponses = {
|
|
|
815
972
|
};
|
|
816
973
|
export type GetGraphData = {
|
|
817
974
|
body?: never;
|
|
975
|
+
headers?: {
|
|
976
|
+
/**
|
|
977
|
+
* Authorization
|
|
978
|
+
*/
|
|
979
|
+
authorization?: string | null;
|
|
980
|
+
};
|
|
818
981
|
path: {
|
|
819
982
|
/**
|
|
820
983
|
* Bank Id
|
|
@@ -827,7 +990,7 @@ export type GetGraphData = {
|
|
|
827
990
|
*/
|
|
828
991
|
type?: string | null;
|
|
829
992
|
};
|
|
830
|
-
url:
|
|
993
|
+
url: "/v1/default/banks/{bank_id}/graph";
|
|
831
994
|
};
|
|
832
995
|
export type GetGraphErrors = {
|
|
833
996
|
/**
|
|
@@ -845,6 +1008,12 @@ export type GetGraphResponses = {
|
|
|
845
1008
|
export type GetGraphResponse = GetGraphResponses[keyof GetGraphResponses];
|
|
846
1009
|
export type ListMemoriesData = {
|
|
847
1010
|
body?: never;
|
|
1011
|
+
headers?: {
|
|
1012
|
+
/**
|
|
1013
|
+
* Authorization
|
|
1014
|
+
*/
|
|
1015
|
+
authorization?: string | null;
|
|
1016
|
+
};
|
|
848
1017
|
path: {
|
|
849
1018
|
/**
|
|
850
1019
|
* Bank Id
|
|
@@ -869,7 +1038,7 @@ export type ListMemoriesData = {
|
|
|
869
1038
|
*/
|
|
870
1039
|
offset?: number;
|
|
871
1040
|
};
|
|
872
|
-
url:
|
|
1041
|
+
url: "/v1/default/banks/{bank_id}/memories/list";
|
|
873
1042
|
};
|
|
874
1043
|
export type ListMemoriesErrors = {
|
|
875
1044
|
/**
|
|
@@ -887,6 +1056,12 @@ export type ListMemoriesResponses = {
|
|
|
887
1056
|
export type ListMemoriesResponse = ListMemoriesResponses[keyof ListMemoriesResponses];
|
|
888
1057
|
export type RecallMemoriesData = {
|
|
889
1058
|
body: RecallRequest;
|
|
1059
|
+
headers?: {
|
|
1060
|
+
/**
|
|
1061
|
+
* Authorization
|
|
1062
|
+
*/
|
|
1063
|
+
authorization?: string | null;
|
|
1064
|
+
};
|
|
890
1065
|
path: {
|
|
891
1066
|
/**
|
|
892
1067
|
* Bank Id
|
|
@@ -894,7 +1069,7 @@ export type RecallMemoriesData = {
|
|
|
894
1069
|
bank_id: string;
|
|
895
1070
|
};
|
|
896
1071
|
query?: never;
|
|
897
|
-
url:
|
|
1072
|
+
url: "/v1/default/banks/{bank_id}/memories/recall";
|
|
898
1073
|
};
|
|
899
1074
|
export type RecallMemoriesErrors = {
|
|
900
1075
|
/**
|
|
@@ -912,6 +1087,12 @@ export type RecallMemoriesResponses = {
|
|
|
912
1087
|
export type RecallMemoriesResponse = RecallMemoriesResponses[keyof RecallMemoriesResponses];
|
|
913
1088
|
export type ReflectData = {
|
|
914
1089
|
body: ReflectRequest;
|
|
1090
|
+
headers?: {
|
|
1091
|
+
/**
|
|
1092
|
+
* Authorization
|
|
1093
|
+
*/
|
|
1094
|
+
authorization?: string | null;
|
|
1095
|
+
};
|
|
915
1096
|
path: {
|
|
916
1097
|
/**
|
|
917
1098
|
* Bank Id
|
|
@@ -919,7 +1100,7 @@ export type ReflectData = {
|
|
|
919
1100
|
bank_id: string;
|
|
920
1101
|
};
|
|
921
1102
|
query?: never;
|
|
922
|
-
url:
|
|
1103
|
+
url: "/v1/default/banks/{bank_id}/reflect";
|
|
923
1104
|
};
|
|
924
1105
|
export type ReflectErrors = {
|
|
925
1106
|
/**
|
|
@@ -937,10 +1118,23 @@ export type ReflectResponses = {
|
|
|
937
1118
|
export type ReflectResponse2 = ReflectResponses[keyof ReflectResponses];
|
|
938
1119
|
export type ListBanksData = {
|
|
939
1120
|
body?: never;
|
|
1121
|
+
headers?: {
|
|
1122
|
+
/**
|
|
1123
|
+
* Authorization
|
|
1124
|
+
*/
|
|
1125
|
+
authorization?: string | null;
|
|
1126
|
+
};
|
|
940
1127
|
path?: never;
|
|
941
1128
|
query?: never;
|
|
942
|
-
url:
|
|
1129
|
+
url: "/v1/default/banks";
|
|
943
1130
|
};
|
|
1131
|
+
export type ListBanksErrors = {
|
|
1132
|
+
/**
|
|
1133
|
+
* Validation Error
|
|
1134
|
+
*/
|
|
1135
|
+
422: HttpValidationError;
|
|
1136
|
+
};
|
|
1137
|
+
export type ListBanksError = ListBanksErrors[keyof ListBanksErrors];
|
|
944
1138
|
export type ListBanksResponses = {
|
|
945
1139
|
/**
|
|
946
1140
|
* Successful Response
|
|
@@ -957,7 +1151,7 @@ export type GetAgentStatsData = {
|
|
|
957
1151
|
bank_id: string;
|
|
958
1152
|
};
|
|
959
1153
|
query?: never;
|
|
960
|
-
url:
|
|
1154
|
+
url: "/v1/default/banks/{bank_id}/stats";
|
|
961
1155
|
};
|
|
962
1156
|
export type GetAgentStatsErrors = {
|
|
963
1157
|
/**
|
|
@@ -970,10 +1164,17 @@ export type GetAgentStatsResponses = {
|
|
|
970
1164
|
/**
|
|
971
1165
|
* Successful Response
|
|
972
1166
|
*/
|
|
973
|
-
200:
|
|
1167
|
+
200: BankStatsResponse;
|
|
974
1168
|
};
|
|
1169
|
+
export type GetAgentStatsResponse = GetAgentStatsResponses[keyof GetAgentStatsResponses];
|
|
975
1170
|
export type ListEntitiesData = {
|
|
976
1171
|
body?: never;
|
|
1172
|
+
headers?: {
|
|
1173
|
+
/**
|
|
1174
|
+
* Authorization
|
|
1175
|
+
*/
|
|
1176
|
+
authorization?: string | null;
|
|
1177
|
+
};
|
|
977
1178
|
path: {
|
|
978
1179
|
/**
|
|
979
1180
|
* Bank Id
|
|
@@ -988,7 +1189,7 @@ export type ListEntitiesData = {
|
|
|
988
1189
|
*/
|
|
989
1190
|
limit?: number;
|
|
990
1191
|
};
|
|
991
|
-
url:
|
|
1192
|
+
url: "/v1/default/banks/{bank_id}/entities";
|
|
992
1193
|
};
|
|
993
1194
|
export type ListEntitiesErrors = {
|
|
994
1195
|
/**
|
|
@@ -1006,6 +1207,12 @@ export type ListEntitiesResponses = {
|
|
|
1006
1207
|
export type ListEntitiesResponse = ListEntitiesResponses[keyof ListEntitiesResponses];
|
|
1007
1208
|
export type GetEntityData = {
|
|
1008
1209
|
body?: never;
|
|
1210
|
+
headers?: {
|
|
1211
|
+
/**
|
|
1212
|
+
* Authorization
|
|
1213
|
+
*/
|
|
1214
|
+
authorization?: string | null;
|
|
1215
|
+
};
|
|
1009
1216
|
path: {
|
|
1010
1217
|
/**
|
|
1011
1218
|
* Bank Id
|
|
@@ -1017,7 +1224,7 @@ export type GetEntityData = {
|
|
|
1017
1224
|
entity_id: string;
|
|
1018
1225
|
};
|
|
1019
1226
|
query?: never;
|
|
1020
|
-
url:
|
|
1227
|
+
url: "/v1/default/banks/{bank_id}/entities/{entity_id}";
|
|
1021
1228
|
};
|
|
1022
1229
|
export type GetEntityErrors = {
|
|
1023
1230
|
/**
|
|
@@ -1035,6 +1242,12 @@ export type GetEntityResponses = {
|
|
|
1035
1242
|
export type GetEntityResponse = GetEntityResponses[keyof GetEntityResponses];
|
|
1036
1243
|
export type RegenerateEntityObservationsData = {
|
|
1037
1244
|
body?: never;
|
|
1245
|
+
headers?: {
|
|
1246
|
+
/**
|
|
1247
|
+
* Authorization
|
|
1248
|
+
*/
|
|
1249
|
+
authorization?: string | null;
|
|
1250
|
+
};
|
|
1038
1251
|
path: {
|
|
1039
1252
|
/**
|
|
1040
1253
|
* Bank Id
|
|
@@ -1046,7 +1259,7 @@ export type RegenerateEntityObservationsData = {
|
|
|
1046
1259
|
entity_id: string;
|
|
1047
1260
|
};
|
|
1048
1261
|
query?: never;
|
|
1049
|
-
url:
|
|
1262
|
+
url: "/v1/default/banks/{bank_id}/entities/{entity_id}/regenerate";
|
|
1050
1263
|
};
|
|
1051
1264
|
export type RegenerateEntityObservationsErrors = {
|
|
1052
1265
|
/**
|
|
@@ -1064,6 +1277,12 @@ export type RegenerateEntityObservationsResponses = {
|
|
|
1064
1277
|
export type RegenerateEntityObservationsResponse = RegenerateEntityObservationsResponses[keyof RegenerateEntityObservationsResponses];
|
|
1065
1278
|
export type ListDocumentsData = {
|
|
1066
1279
|
body?: never;
|
|
1280
|
+
headers?: {
|
|
1281
|
+
/**
|
|
1282
|
+
* Authorization
|
|
1283
|
+
*/
|
|
1284
|
+
authorization?: string | null;
|
|
1285
|
+
};
|
|
1067
1286
|
path: {
|
|
1068
1287
|
/**
|
|
1069
1288
|
* Bank Id
|
|
@@ -1084,7 +1303,7 @@ export type ListDocumentsData = {
|
|
|
1084
1303
|
*/
|
|
1085
1304
|
offset?: number;
|
|
1086
1305
|
};
|
|
1087
|
-
url:
|
|
1306
|
+
url: "/v1/default/banks/{bank_id}/documents";
|
|
1088
1307
|
};
|
|
1089
1308
|
export type ListDocumentsErrors = {
|
|
1090
1309
|
/**
|
|
@@ -1102,6 +1321,12 @@ export type ListDocumentsResponses = {
|
|
|
1102
1321
|
export type ListDocumentsResponse2 = ListDocumentsResponses[keyof ListDocumentsResponses];
|
|
1103
1322
|
export type DeleteDocumentData = {
|
|
1104
1323
|
body?: never;
|
|
1324
|
+
headers?: {
|
|
1325
|
+
/**
|
|
1326
|
+
* Authorization
|
|
1327
|
+
*/
|
|
1328
|
+
authorization?: string | null;
|
|
1329
|
+
};
|
|
1105
1330
|
path: {
|
|
1106
1331
|
/**
|
|
1107
1332
|
* Bank Id
|
|
@@ -1113,7 +1338,7 @@ export type DeleteDocumentData = {
|
|
|
1113
1338
|
document_id: string;
|
|
1114
1339
|
};
|
|
1115
1340
|
query?: never;
|
|
1116
|
-
url:
|
|
1341
|
+
url: "/v1/default/banks/{bank_id}/documents/{document_id}";
|
|
1117
1342
|
};
|
|
1118
1343
|
export type DeleteDocumentErrors = {
|
|
1119
1344
|
/**
|
|
@@ -1126,10 +1351,17 @@ export type DeleteDocumentResponses = {
|
|
|
1126
1351
|
/**
|
|
1127
1352
|
* Successful Response
|
|
1128
1353
|
*/
|
|
1129
|
-
200:
|
|
1354
|
+
200: DeleteDocumentResponse;
|
|
1130
1355
|
};
|
|
1356
|
+
export type DeleteDocumentResponse2 = DeleteDocumentResponses[keyof DeleteDocumentResponses];
|
|
1131
1357
|
export type GetDocumentData = {
|
|
1132
1358
|
body?: never;
|
|
1359
|
+
headers?: {
|
|
1360
|
+
/**
|
|
1361
|
+
* Authorization
|
|
1362
|
+
*/
|
|
1363
|
+
authorization?: string | null;
|
|
1364
|
+
};
|
|
1133
1365
|
path: {
|
|
1134
1366
|
/**
|
|
1135
1367
|
* Bank Id
|
|
@@ -1141,7 +1373,7 @@ export type GetDocumentData = {
|
|
|
1141
1373
|
document_id: string;
|
|
1142
1374
|
};
|
|
1143
1375
|
query?: never;
|
|
1144
|
-
url:
|
|
1376
|
+
url: "/v1/default/banks/{bank_id}/documents/{document_id}";
|
|
1145
1377
|
};
|
|
1146
1378
|
export type GetDocumentErrors = {
|
|
1147
1379
|
/**
|
|
@@ -1159,6 +1391,12 @@ export type GetDocumentResponses = {
|
|
|
1159
1391
|
export type GetDocumentResponse = GetDocumentResponses[keyof GetDocumentResponses];
|
|
1160
1392
|
export type GetChunkData = {
|
|
1161
1393
|
body?: never;
|
|
1394
|
+
headers?: {
|
|
1395
|
+
/**
|
|
1396
|
+
* Authorization
|
|
1397
|
+
*/
|
|
1398
|
+
authorization?: string | null;
|
|
1399
|
+
};
|
|
1162
1400
|
path: {
|
|
1163
1401
|
/**
|
|
1164
1402
|
* Chunk Id
|
|
@@ -1166,7 +1404,7 @@ export type GetChunkData = {
|
|
|
1166
1404
|
chunk_id: string;
|
|
1167
1405
|
};
|
|
1168
1406
|
query?: never;
|
|
1169
|
-
url:
|
|
1407
|
+
url: "/v1/default/chunks/{chunk_id}";
|
|
1170
1408
|
};
|
|
1171
1409
|
export type GetChunkErrors = {
|
|
1172
1410
|
/**
|
|
@@ -1184,6 +1422,12 @@ export type GetChunkResponses = {
|
|
|
1184
1422
|
export type GetChunkResponse = GetChunkResponses[keyof GetChunkResponses];
|
|
1185
1423
|
export type ListOperationsData = {
|
|
1186
1424
|
body?: never;
|
|
1425
|
+
headers?: {
|
|
1426
|
+
/**
|
|
1427
|
+
* Authorization
|
|
1428
|
+
*/
|
|
1429
|
+
authorization?: string | null;
|
|
1430
|
+
};
|
|
1187
1431
|
path: {
|
|
1188
1432
|
/**
|
|
1189
1433
|
* Bank Id
|
|
@@ -1191,7 +1435,7 @@ export type ListOperationsData = {
|
|
|
1191
1435
|
bank_id: string;
|
|
1192
1436
|
};
|
|
1193
1437
|
query?: never;
|
|
1194
|
-
url:
|
|
1438
|
+
url: "/v1/default/banks/{bank_id}/operations";
|
|
1195
1439
|
};
|
|
1196
1440
|
export type ListOperationsErrors = {
|
|
1197
1441
|
/**
|
|
@@ -1204,10 +1448,17 @@ export type ListOperationsResponses = {
|
|
|
1204
1448
|
/**
|
|
1205
1449
|
* Successful Response
|
|
1206
1450
|
*/
|
|
1207
|
-
200:
|
|
1451
|
+
200: OperationsListResponse;
|
|
1208
1452
|
};
|
|
1453
|
+
export type ListOperationsResponse = ListOperationsResponses[keyof ListOperationsResponses];
|
|
1209
1454
|
export type CancelOperationData = {
|
|
1210
1455
|
body?: never;
|
|
1456
|
+
headers?: {
|
|
1457
|
+
/**
|
|
1458
|
+
* Authorization
|
|
1459
|
+
*/
|
|
1460
|
+
authorization?: string | null;
|
|
1461
|
+
};
|
|
1211
1462
|
path: {
|
|
1212
1463
|
/**
|
|
1213
1464
|
* Bank Id
|
|
@@ -1219,7 +1470,7 @@ export type CancelOperationData = {
|
|
|
1219
1470
|
operation_id: string;
|
|
1220
1471
|
};
|
|
1221
1472
|
query?: never;
|
|
1222
|
-
url:
|
|
1473
|
+
url: "/v1/default/banks/{bank_id}/operations/{operation_id}";
|
|
1223
1474
|
};
|
|
1224
1475
|
export type CancelOperationErrors = {
|
|
1225
1476
|
/**
|
|
@@ -1232,10 +1483,17 @@ export type CancelOperationResponses = {
|
|
|
1232
1483
|
/**
|
|
1233
1484
|
* Successful Response
|
|
1234
1485
|
*/
|
|
1235
|
-
200:
|
|
1486
|
+
200: CancelOperationResponse;
|
|
1236
1487
|
};
|
|
1488
|
+
export type CancelOperationResponse2 = CancelOperationResponses[keyof CancelOperationResponses];
|
|
1237
1489
|
export type GetBankProfileData = {
|
|
1238
1490
|
body?: never;
|
|
1491
|
+
headers?: {
|
|
1492
|
+
/**
|
|
1493
|
+
* Authorization
|
|
1494
|
+
*/
|
|
1495
|
+
authorization?: string | null;
|
|
1496
|
+
};
|
|
1239
1497
|
path: {
|
|
1240
1498
|
/**
|
|
1241
1499
|
* Bank Id
|
|
@@ -1243,7 +1501,7 @@ export type GetBankProfileData = {
|
|
|
1243
1501
|
bank_id: string;
|
|
1244
1502
|
};
|
|
1245
1503
|
query?: never;
|
|
1246
|
-
url:
|
|
1504
|
+
url: "/v1/default/banks/{bank_id}/profile";
|
|
1247
1505
|
};
|
|
1248
1506
|
export type GetBankProfileErrors = {
|
|
1249
1507
|
/**
|
|
@@ -1261,6 +1519,12 @@ export type GetBankProfileResponses = {
|
|
|
1261
1519
|
export type GetBankProfileResponse = GetBankProfileResponses[keyof GetBankProfileResponses];
|
|
1262
1520
|
export type UpdateBankDispositionData = {
|
|
1263
1521
|
body: UpdateDispositionRequest;
|
|
1522
|
+
headers?: {
|
|
1523
|
+
/**
|
|
1524
|
+
* Authorization
|
|
1525
|
+
*/
|
|
1526
|
+
authorization?: string | null;
|
|
1527
|
+
};
|
|
1264
1528
|
path: {
|
|
1265
1529
|
/**
|
|
1266
1530
|
* Bank Id
|
|
@@ -1268,7 +1532,7 @@ export type UpdateBankDispositionData = {
|
|
|
1268
1532
|
bank_id: string;
|
|
1269
1533
|
};
|
|
1270
1534
|
query?: never;
|
|
1271
|
-
url:
|
|
1535
|
+
url: "/v1/default/banks/{bank_id}/profile";
|
|
1272
1536
|
};
|
|
1273
1537
|
export type UpdateBankDispositionErrors = {
|
|
1274
1538
|
/**
|
|
@@ -1286,6 +1550,12 @@ export type UpdateBankDispositionResponses = {
|
|
|
1286
1550
|
export type UpdateBankDispositionResponse = UpdateBankDispositionResponses[keyof UpdateBankDispositionResponses];
|
|
1287
1551
|
export type AddBankBackgroundData = {
|
|
1288
1552
|
body: AddBackgroundRequest;
|
|
1553
|
+
headers?: {
|
|
1554
|
+
/**
|
|
1555
|
+
* Authorization
|
|
1556
|
+
*/
|
|
1557
|
+
authorization?: string | null;
|
|
1558
|
+
};
|
|
1289
1559
|
path: {
|
|
1290
1560
|
/**
|
|
1291
1561
|
* Bank Id
|
|
@@ -1293,7 +1563,7 @@ export type AddBankBackgroundData = {
|
|
|
1293
1563
|
bank_id: string;
|
|
1294
1564
|
};
|
|
1295
1565
|
query?: never;
|
|
1296
|
-
url:
|
|
1566
|
+
url: "/v1/default/banks/{bank_id}/background";
|
|
1297
1567
|
};
|
|
1298
1568
|
export type AddBankBackgroundErrors = {
|
|
1299
1569
|
/**
|
|
@@ -1309,8 +1579,45 @@ export type AddBankBackgroundResponses = {
|
|
|
1309
1579
|
200: BackgroundResponse;
|
|
1310
1580
|
};
|
|
1311
1581
|
export type AddBankBackgroundResponse = AddBankBackgroundResponses[keyof AddBankBackgroundResponses];
|
|
1582
|
+
export type DeleteBankData = {
|
|
1583
|
+
body?: never;
|
|
1584
|
+
headers?: {
|
|
1585
|
+
/**
|
|
1586
|
+
* Authorization
|
|
1587
|
+
*/
|
|
1588
|
+
authorization?: string | null;
|
|
1589
|
+
};
|
|
1590
|
+
path: {
|
|
1591
|
+
/**
|
|
1592
|
+
* Bank Id
|
|
1593
|
+
*/
|
|
1594
|
+
bank_id: string;
|
|
1595
|
+
};
|
|
1596
|
+
query?: never;
|
|
1597
|
+
url: "/v1/default/banks/{bank_id}";
|
|
1598
|
+
};
|
|
1599
|
+
export type DeleteBankErrors = {
|
|
1600
|
+
/**
|
|
1601
|
+
* Validation Error
|
|
1602
|
+
*/
|
|
1603
|
+
422: HttpValidationError;
|
|
1604
|
+
};
|
|
1605
|
+
export type DeleteBankError = DeleteBankErrors[keyof DeleteBankErrors];
|
|
1606
|
+
export type DeleteBankResponses = {
|
|
1607
|
+
/**
|
|
1608
|
+
* Successful Response
|
|
1609
|
+
*/
|
|
1610
|
+
200: DeleteResponse;
|
|
1611
|
+
};
|
|
1612
|
+
export type DeleteBankResponse = DeleteBankResponses[keyof DeleteBankResponses];
|
|
1312
1613
|
export type CreateOrUpdateBankData = {
|
|
1313
1614
|
body: CreateBankRequest;
|
|
1615
|
+
headers?: {
|
|
1616
|
+
/**
|
|
1617
|
+
* Authorization
|
|
1618
|
+
*/
|
|
1619
|
+
authorization?: string | null;
|
|
1620
|
+
};
|
|
1314
1621
|
path: {
|
|
1315
1622
|
/**
|
|
1316
1623
|
* Bank Id
|
|
@@ -1318,7 +1625,7 @@ export type CreateOrUpdateBankData = {
|
|
|
1318
1625
|
bank_id: string;
|
|
1319
1626
|
};
|
|
1320
1627
|
query?: never;
|
|
1321
|
-
url:
|
|
1628
|
+
url: "/v1/default/banks/{bank_id}";
|
|
1322
1629
|
};
|
|
1323
1630
|
export type CreateOrUpdateBankErrors = {
|
|
1324
1631
|
/**
|
|
@@ -1336,6 +1643,12 @@ export type CreateOrUpdateBankResponses = {
|
|
|
1336
1643
|
export type CreateOrUpdateBankResponse = CreateOrUpdateBankResponses[keyof CreateOrUpdateBankResponses];
|
|
1337
1644
|
export type ClearBankMemoriesData = {
|
|
1338
1645
|
body?: never;
|
|
1646
|
+
headers?: {
|
|
1647
|
+
/**
|
|
1648
|
+
* Authorization
|
|
1649
|
+
*/
|
|
1650
|
+
authorization?: string | null;
|
|
1651
|
+
};
|
|
1339
1652
|
path: {
|
|
1340
1653
|
/**
|
|
1341
1654
|
* Bank Id
|
|
@@ -1350,7 +1663,7 @@ export type ClearBankMemoriesData = {
|
|
|
1350
1663
|
*/
|
|
1351
1664
|
type?: string | null;
|
|
1352
1665
|
};
|
|
1353
|
-
url:
|
|
1666
|
+
url: "/v1/default/banks/{bank_id}/memories";
|
|
1354
1667
|
};
|
|
1355
1668
|
export type ClearBankMemoriesErrors = {
|
|
1356
1669
|
/**
|
|
@@ -1368,6 +1681,12 @@ export type ClearBankMemoriesResponses = {
|
|
|
1368
1681
|
export type ClearBankMemoriesResponse = ClearBankMemoriesResponses[keyof ClearBankMemoriesResponses];
|
|
1369
1682
|
export type RetainMemoriesData = {
|
|
1370
1683
|
body: RetainRequest;
|
|
1684
|
+
headers?: {
|
|
1685
|
+
/**
|
|
1686
|
+
* Authorization
|
|
1687
|
+
*/
|
|
1688
|
+
authorization?: string | null;
|
|
1689
|
+
};
|
|
1371
1690
|
path: {
|
|
1372
1691
|
/**
|
|
1373
1692
|
* Bank Id
|
|
@@ -1375,7 +1694,7 @@ export type RetainMemoriesData = {
|
|
|
1375
1694
|
bank_id: string;
|
|
1376
1695
|
};
|
|
1377
1696
|
query?: never;
|
|
1378
|
-
url:
|
|
1697
|
+
url: "/v1/default/banks/{bank_id}/memories";
|
|
1379
1698
|
};
|
|
1380
1699
|
export type RetainMemoriesErrors = {
|
|
1381
1700
|
/**
|