@vrplatform/api 1.2.33-955 → 1.2.33-956

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.
@@ -1002,6 +1002,23 @@ export interface paths {
1002
1002
  patch?: never;
1003
1003
  trace?: never;
1004
1004
  };
1005
+ "/connections/extract": {
1006
+ parameters: {
1007
+ query?: never;
1008
+ header?: never;
1009
+ path?: never;
1010
+ cookie?: never;
1011
+ };
1012
+ get?: never;
1013
+ put?: never;
1014
+ /** @description Trigger extract workflows for connections. */
1015
+ post: operations["extractConnections"];
1016
+ delete?: never;
1017
+ options?: never;
1018
+ head?: never;
1019
+ patch?: never;
1020
+ trace?: never;
1021
+ };
1005
1022
  "/accounts/{id}/banking-init": {
1006
1023
  parameters: {
1007
1024
  query?: never;
@@ -1266,23 +1283,6 @@ export interface paths {
1266
1283
  patch?: never;
1267
1284
  trace?: never;
1268
1285
  };
1269
- "/extract": {
1270
- parameters: {
1271
- query?: never;
1272
- header?: never;
1273
- path?: never;
1274
- cookie?: never;
1275
- };
1276
- get?: never;
1277
- put?: never;
1278
- /** @description Trigger extract workflows for connections. */
1279
- post: operations["extract"];
1280
- delete?: never;
1281
- options?: never;
1282
- head?: never;
1283
- patch?: never;
1284
- trace?: never;
1285
- };
1286
1286
  "/syncs/{id}": {
1287
1287
  parameters: {
1288
1288
  query?: never;
@@ -17240,6 +17240,97 @@ export interface operations {
17240
17240
  };
17241
17241
  };
17242
17242
  };
17243
+ extractConnections: {
17244
+ parameters: {
17245
+ query?: never;
17246
+ header?: {
17247
+ "X-Team-Id"?: string;
17248
+ };
17249
+ path?: never;
17250
+ cookie?: never;
17251
+ };
17252
+ requestBody: {
17253
+ content: {
17254
+ "application/json": {
17255
+ isInitial?: boolean;
17256
+ connections: {
17257
+ /** Format: uuid */
17258
+ connectionId: string;
17259
+ params?: unknown;
17260
+ type?: string;
17261
+ range?: {
17262
+ start?: string;
17263
+ end?: string;
17264
+ };
17265
+ forceUpdate?: boolean;
17266
+ }[];
17267
+ };
17268
+ };
17269
+ };
17270
+ responses: {
17271
+ /** @description Successful response */
17272
+ 200: {
17273
+ headers: {
17274
+ [name: string]: unknown;
17275
+ };
17276
+ content: {
17277
+ "application/json": {
17278
+ data: {
17279
+ /** Format: uuid */
17280
+ runId: string;
17281
+ /** Format: uuid */
17282
+ workflowId: string;
17283
+ /** Format: uuid */
17284
+ taskId: string;
17285
+ /** Format: uuid */
17286
+ syncId: string;
17287
+ data?: unknown;
17288
+ error?: {
17289
+ message: string;
17290
+ error?: string;
17291
+ };
17292
+ }[];
17293
+ };
17294
+ };
17295
+ };
17296
+ /** @description Invalid input data */
17297
+ 400: {
17298
+ headers: {
17299
+ [name: string]: unknown;
17300
+ };
17301
+ content: {
17302
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
17303
+ };
17304
+ };
17305
+ /** @description Authorization not provided */
17306
+ 401: {
17307
+ headers: {
17308
+ [name: string]: unknown;
17309
+ };
17310
+ content: {
17311
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
17312
+ };
17313
+ };
17314
+ /** @description Insufficient access */
17315
+ 403: {
17316
+ headers: {
17317
+ [name: string]: unknown;
17318
+ };
17319
+ content: {
17320
+ "application/json": components["schemas"]["error.FORBIDDEN"];
17321
+ };
17322
+ };
17323
+ /** @description Internal server error */
17324
+ 500: {
17325
+ headers: {
17326
+ [name: string]: unknown;
17327
+ };
17328
+ content: {
17329
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
17330
+ };
17331
+ };
17332
+ };
17333
+ };
17243
17334
  initBankAccount: {
17244
17335
  parameters: {
17245
17336
  query?: never;
@@ -20162,97 +20253,6 @@ export interface operations {
20162
20253
  };
20163
20254
  };
20164
20255
  };
20165
- extract: {
20166
- parameters: {
20167
- query?: never;
20168
- header?: {
20169
- "X-Team-Id"?: string;
20170
- };
20171
- path?: never;
20172
- cookie?: never;
20173
- };
20174
- requestBody: {
20175
- content: {
20176
- "application/json": {
20177
- isInitial?: boolean;
20178
- connections: {
20179
- /** Format: uuid */
20180
- connectionId: string;
20181
- params?: unknown;
20182
- type?: string;
20183
- range?: {
20184
- start?: string;
20185
- end?: string;
20186
- };
20187
- forceUpdate?: boolean;
20188
- }[];
20189
- };
20190
- };
20191
- };
20192
- responses: {
20193
- /** @description Successful response */
20194
- 200: {
20195
- headers: {
20196
- [name: string]: unknown;
20197
- };
20198
- content: {
20199
- "application/json": {
20200
- data: {
20201
- /** Format: uuid */
20202
- runId: string;
20203
- /** Format: uuid */
20204
- workflowId: string;
20205
- /** Format: uuid */
20206
- taskId: string;
20207
- /** Format: uuid */
20208
- syncId: string;
20209
- data?: unknown;
20210
- error?: {
20211
- message: string;
20212
- error?: string;
20213
- };
20214
- }[];
20215
- };
20216
- };
20217
- };
20218
- /** @description Invalid input data */
20219
- 400: {
20220
- headers: {
20221
- [name: string]: unknown;
20222
- };
20223
- content: {
20224
- "application/json": components["schemas"]["error.BAD_REQUEST"];
20225
- };
20226
- };
20227
- /** @description Authorization not provided */
20228
- 401: {
20229
- headers: {
20230
- [name: string]: unknown;
20231
- };
20232
- content: {
20233
- "application/json": components["schemas"]["error.UNAUTHORIZED"];
20234
- };
20235
- };
20236
- /** @description Insufficient access */
20237
- 403: {
20238
- headers: {
20239
- [name: string]: unknown;
20240
- };
20241
- content: {
20242
- "application/json": components["schemas"]["error.FORBIDDEN"];
20243
- };
20244
- };
20245
- /** @description Internal server error */
20246
- 500: {
20247
- headers: {
20248
- [name: string]: unknown;
20249
- };
20250
- content: {
20251
- "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
20252
- };
20253
- };
20254
- };
20255
- };
20256
20256
  getSync: {
20257
20257
  parameters: {
20258
20258
  query?: never;