@vrplatform/api 1.3.1-stage.4956 → 1.3.1-stage.4973
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.
|
@@ -781,7 +781,7 @@ export interface paths {
|
|
|
781
781
|
get?: never;
|
|
782
782
|
put?: never;
|
|
783
783
|
/**
|
|
784
|
-
* @description Trigger extract workflows for connections.
|
|
784
|
+
* @description Trigger extract workflows for connections. Manual extracts for credential-broken connections return CONNECTION_RECONNECT_REQUIRED with the connection identity in context.
|
|
785
785
|
*
|
|
786
786
|
* Required scope: integrations:execute
|
|
787
787
|
*/
|
|
@@ -6206,7 +6206,7 @@ export interface operations {
|
|
|
6206
6206
|
sourceId?: string | null;
|
|
6207
6207
|
message: string;
|
|
6208
6208
|
/** @enum {string} */
|
|
6209
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
6209
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
6210
6210
|
context?: unknown;
|
|
6211
6211
|
}[];
|
|
6212
6212
|
};
|
|
@@ -15280,7 +15280,7 @@ export interface operations {
|
|
|
15280
15280
|
sourceId?: string | null;
|
|
15281
15281
|
message: string;
|
|
15282
15282
|
/** @enum {string} */
|
|
15283
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
15283
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
15284
15284
|
context?: unknown;
|
|
15285
15285
|
}[];
|
|
15286
15286
|
};
|
|
@@ -21413,16 +21413,15 @@ export interface operations {
|
|
|
21413
21413
|
};
|
|
21414
21414
|
};
|
|
21415
21415
|
};
|
|
21416
|
-
/** @description
|
|
21416
|
+
/** @description The connection must be re-authenticated before fetching */
|
|
21417
21417
|
409: {
|
|
21418
21418
|
headers: {
|
|
21419
|
-
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
21420
|
-
"Retry-After"?: number;
|
|
21421
21419
|
[name: string]: unknown;
|
|
21422
21420
|
};
|
|
21423
21421
|
content: {
|
|
21424
21422
|
"application/json": {
|
|
21425
|
-
|
|
21423
|
+
/** @constant */
|
|
21424
|
+
code: "CONNECTION_RECONNECT_REQUIRED";
|
|
21426
21425
|
message: string;
|
|
21427
21426
|
links?: {
|
|
21428
21427
|
docs: string;
|
|
@@ -21434,7 +21433,11 @@ export interface operations {
|
|
|
21434
21433
|
schema?: string;
|
|
21435
21434
|
}[];
|
|
21436
21435
|
retryable?: boolean;
|
|
21437
|
-
context
|
|
21436
|
+
context: {
|
|
21437
|
+
/** Format: uuid */
|
|
21438
|
+
connectionId: string;
|
|
21439
|
+
connectionName: string | null;
|
|
21440
|
+
};
|
|
21438
21441
|
};
|
|
21439
21442
|
};
|
|
21440
21443
|
};
|
|
@@ -25220,7 +25223,7 @@ export interface operations {
|
|
|
25220
25223
|
sourceId?: string | null;
|
|
25221
25224
|
message: string;
|
|
25222
25225
|
/** @enum {string} */
|
|
25223
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
25226
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
25224
25227
|
context?: unknown;
|
|
25225
25228
|
}[];
|
|
25226
25229
|
};
|
|
@@ -47964,7 +47967,7 @@ export interface operations {
|
|
|
47964
47967
|
sourceId?: string | null;
|
|
47965
47968
|
message: string;
|
|
47966
47969
|
/** @enum {string} */
|
|
47967
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
47970
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
47968
47971
|
context?: unknown;
|
|
47969
47972
|
}[];
|
|
47970
47973
|
};
|
|
@@ -49729,7 +49732,7 @@ export interface operations {
|
|
|
49729
49732
|
sourceId?: string | null;
|
|
49730
49733
|
message: string;
|
|
49731
49734
|
/** @enum {string} */
|
|
49732
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
49735
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
49733
49736
|
context?: unknown;
|
|
49734
49737
|
}[];
|
|
49735
49738
|
};
|
|
@@ -86243,7 +86246,7 @@ export interface operations {
|
|
|
86243
86246
|
sourceId?: string | null;
|
|
86244
86247
|
message: string;
|
|
86245
86248
|
/** @enum {string} */
|
|
86246
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
86249
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
86247
86250
|
context?: unknown;
|
|
86248
86251
|
}[];
|
|
86249
86252
|
};
|
|
@@ -118385,7 +118388,7 @@ export interface operations {
|
|
|
118385
118388
|
sourceId?: string | null;
|
|
118386
118389
|
message: string;
|
|
118387
118390
|
/** @enum {string} */
|
|
118388
|
-
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
118391
|
+
code?: "USER_ERROR" | "NOT_FOUND" | "FORBIDDEN" | "CONFLICT" | "RATE_LIMITED" | "SERVICE_UNAVAILABLE" | "INTERNAL_VALIDATION_ERROR" | "INTERNAL_ERROR" | "CONNECTION_RECONNECT_REQUIRED" | "INVALID_PLAID_CONNECT_MODE" | "PLAID_CONNECTION_NOT_FOUND" | "PLAID_CONNECT_IN_PROGRESS" | "PLAID_CONNECT_CONFIGURATION_CHANGED" | "PLAID_CONNECT_EXPIRED" | "PLAID_CONNECT_REQUIRES_NEW_LINK" | "PLAID_PROVIDER_UNAVAILABLE";
|
|
118389
118392
|
context?: unknown;
|
|
118390
118393
|
}[];
|
|
118391
118394
|
};
|