@vrplatform/api 1.2.33-955 → 1.2.33-958

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