@vrplatform/api 1.3.1-6271 → 1.3.1-6279
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.
|
@@ -568,7 +568,7 @@ export interface paths {
|
|
|
568
568
|
get?: never;
|
|
569
569
|
put?: never;
|
|
570
570
|
/**
|
|
571
|
-
* @description Create or update multiple bank records. Items with a stale Account reference are skipped and returned in issues.
|
|
571
|
+
* @description Create or update multiple bank records. Records before an AccountConnection sync start date are stored inactive without an issue. Items with a stale Account reference are skipped and returned in issues.
|
|
572
572
|
*
|
|
573
573
|
* Required scope: bank-records:write
|
|
574
574
|
*/
|
|
@@ -2226,6 +2226,23 @@ export interface paths {
|
|
|
2226
2226
|
patch?: never;
|
|
2227
2227
|
trace?: never;
|
|
2228
2228
|
};
|
|
2229
|
+
"/internal/files/{id}/abandoned-upload": {
|
|
2230
|
+
parameters: {
|
|
2231
|
+
query?: never;
|
|
2232
|
+
header?: never;
|
|
2233
|
+
path?: never;
|
|
2234
|
+
cookie?: never;
|
|
2235
|
+
};
|
|
2236
|
+
get?: never;
|
|
2237
|
+
put?: never;
|
|
2238
|
+
post?: never;
|
|
2239
|
+
/** @description Claim and remove an abandoned GL raw upload after its 24-hour upload reference window. The object bucket is selected from the persisted regional r2:// ref. Missing rows and objects are safe to retry; non-expired uploads and completed files are preserved. */
|
|
2240
|
+
delete: operations["deleteInternalFilesByIdAbandonedUpload"];
|
|
2241
|
+
options?: never;
|
|
2242
|
+
head?: never;
|
|
2243
|
+
patch?: never;
|
|
2244
|
+
trace?: never;
|
|
2245
|
+
};
|
|
2229
2246
|
"/internal/memberships/{membershipId}": {
|
|
2230
2247
|
parameters: {
|
|
2231
2248
|
query?: never;
|
|
@@ -47987,6 +48004,258 @@ export interface operations {
|
|
|
47987
48004
|
};
|
|
47988
48005
|
};
|
|
47989
48006
|
};
|
|
48007
|
+
deleteInternalFilesByIdAbandonedUpload: {
|
|
48008
|
+
parameters: {
|
|
48009
|
+
query?: never;
|
|
48010
|
+
header?: never;
|
|
48011
|
+
path: {
|
|
48012
|
+
id: string;
|
|
48013
|
+
};
|
|
48014
|
+
cookie?: never;
|
|
48015
|
+
};
|
|
48016
|
+
requestBody?: never;
|
|
48017
|
+
responses: {
|
|
48018
|
+
/** @description Successful response */
|
|
48019
|
+
200: {
|
|
48020
|
+
headers: {
|
|
48021
|
+
[name: string]: unknown;
|
|
48022
|
+
};
|
|
48023
|
+
content: {
|
|
48024
|
+
"application/json": {
|
|
48025
|
+
/** @enum {string} */
|
|
48026
|
+
outcome: "cleaned" | "preserved";
|
|
48027
|
+
/** @constant */
|
|
48028
|
+
status: "deleted";
|
|
48029
|
+
};
|
|
48030
|
+
};
|
|
48031
|
+
};
|
|
48032
|
+
/** @description Bad request */
|
|
48033
|
+
400: {
|
|
48034
|
+
headers: {
|
|
48035
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48036
|
+
"Retry-After"?: number;
|
|
48037
|
+
[name: string]: unknown;
|
|
48038
|
+
};
|
|
48039
|
+
content: {
|
|
48040
|
+
"application/json": {
|
|
48041
|
+
code: string;
|
|
48042
|
+
message: string;
|
|
48043
|
+
links?: {
|
|
48044
|
+
docs: string;
|
|
48045
|
+
schema: string;
|
|
48046
|
+
};
|
|
48047
|
+
issues?: {
|
|
48048
|
+
message: string;
|
|
48049
|
+
path?: (string | number)[];
|
|
48050
|
+
schema?: string;
|
|
48051
|
+
}[];
|
|
48052
|
+
retryable?: boolean;
|
|
48053
|
+
context?: unknown;
|
|
48054
|
+
};
|
|
48055
|
+
};
|
|
48056
|
+
};
|
|
48057
|
+
/** @description Unauthorized */
|
|
48058
|
+
401: {
|
|
48059
|
+
headers: {
|
|
48060
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48061
|
+
"Retry-After"?: number;
|
|
48062
|
+
[name: string]: unknown;
|
|
48063
|
+
};
|
|
48064
|
+
content: {
|
|
48065
|
+
"application/json": {
|
|
48066
|
+
code: string;
|
|
48067
|
+
message: string;
|
|
48068
|
+
links?: {
|
|
48069
|
+
docs: string;
|
|
48070
|
+
schema: string;
|
|
48071
|
+
};
|
|
48072
|
+
issues?: {
|
|
48073
|
+
message: string;
|
|
48074
|
+
path?: (string | number)[];
|
|
48075
|
+
schema?: string;
|
|
48076
|
+
}[];
|
|
48077
|
+
retryable?: boolean;
|
|
48078
|
+
context?: unknown;
|
|
48079
|
+
};
|
|
48080
|
+
};
|
|
48081
|
+
};
|
|
48082
|
+
/** @description Forbidden */
|
|
48083
|
+
403: {
|
|
48084
|
+
headers: {
|
|
48085
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48086
|
+
"Retry-After"?: number;
|
|
48087
|
+
[name: string]: unknown;
|
|
48088
|
+
};
|
|
48089
|
+
content: {
|
|
48090
|
+
"application/json": {
|
|
48091
|
+
code: string;
|
|
48092
|
+
message: string;
|
|
48093
|
+
links?: {
|
|
48094
|
+
docs: string;
|
|
48095
|
+
schema: string;
|
|
48096
|
+
};
|
|
48097
|
+
issues?: {
|
|
48098
|
+
message: string;
|
|
48099
|
+
path?: (string | number)[];
|
|
48100
|
+
schema?: string;
|
|
48101
|
+
}[];
|
|
48102
|
+
retryable?: boolean;
|
|
48103
|
+
context?: unknown;
|
|
48104
|
+
};
|
|
48105
|
+
};
|
|
48106
|
+
};
|
|
48107
|
+
/** @description Not found */
|
|
48108
|
+
404: {
|
|
48109
|
+
headers: {
|
|
48110
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48111
|
+
"Retry-After"?: number;
|
|
48112
|
+
[name: string]: unknown;
|
|
48113
|
+
};
|
|
48114
|
+
content: {
|
|
48115
|
+
"application/json": {
|
|
48116
|
+
code: string;
|
|
48117
|
+
message: string;
|
|
48118
|
+
links?: {
|
|
48119
|
+
docs: string;
|
|
48120
|
+
schema: string;
|
|
48121
|
+
};
|
|
48122
|
+
issues?: {
|
|
48123
|
+
message: string;
|
|
48124
|
+
path?: (string | number)[];
|
|
48125
|
+
schema?: string;
|
|
48126
|
+
}[];
|
|
48127
|
+
retryable?: boolean;
|
|
48128
|
+
context?: unknown;
|
|
48129
|
+
};
|
|
48130
|
+
};
|
|
48131
|
+
};
|
|
48132
|
+
/** @description Conflict */
|
|
48133
|
+
409: {
|
|
48134
|
+
headers: {
|
|
48135
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48136
|
+
"Retry-After"?: number;
|
|
48137
|
+
[name: string]: unknown;
|
|
48138
|
+
};
|
|
48139
|
+
content: {
|
|
48140
|
+
"application/json": {
|
|
48141
|
+
code: string;
|
|
48142
|
+
message: string;
|
|
48143
|
+
links?: {
|
|
48144
|
+
docs: string;
|
|
48145
|
+
schema: string;
|
|
48146
|
+
};
|
|
48147
|
+
issues?: {
|
|
48148
|
+
message: string;
|
|
48149
|
+
path?: (string | number)[];
|
|
48150
|
+
schema?: string;
|
|
48151
|
+
}[];
|
|
48152
|
+
retryable?: boolean;
|
|
48153
|
+
context?: unknown;
|
|
48154
|
+
};
|
|
48155
|
+
};
|
|
48156
|
+
};
|
|
48157
|
+
/** @description Gone */
|
|
48158
|
+
410: {
|
|
48159
|
+
headers: {
|
|
48160
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48161
|
+
"Retry-After"?: number;
|
|
48162
|
+
[name: string]: unknown;
|
|
48163
|
+
};
|
|
48164
|
+
content: {
|
|
48165
|
+
"application/json": {
|
|
48166
|
+
code: string;
|
|
48167
|
+
message: string;
|
|
48168
|
+
links?: {
|
|
48169
|
+
docs: string;
|
|
48170
|
+
schema: string;
|
|
48171
|
+
};
|
|
48172
|
+
issues?: {
|
|
48173
|
+
message: string;
|
|
48174
|
+
path?: (string | number)[];
|
|
48175
|
+
schema?: string;
|
|
48176
|
+
}[];
|
|
48177
|
+
retryable?: boolean;
|
|
48178
|
+
context?: unknown;
|
|
48179
|
+
};
|
|
48180
|
+
};
|
|
48181
|
+
};
|
|
48182
|
+
/** @description Unprocessable content */
|
|
48183
|
+
422: {
|
|
48184
|
+
headers: {
|
|
48185
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48186
|
+
"Retry-After"?: number;
|
|
48187
|
+
[name: string]: unknown;
|
|
48188
|
+
};
|
|
48189
|
+
content: {
|
|
48190
|
+
"application/json": {
|
|
48191
|
+
code: string;
|
|
48192
|
+
message: string;
|
|
48193
|
+
links?: {
|
|
48194
|
+
docs: string;
|
|
48195
|
+
schema: string;
|
|
48196
|
+
};
|
|
48197
|
+
issues?: {
|
|
48198
|
+
message: string;
|
|
48199
|
+
path?: (string | number)[];
|
|
48200
|
+
schema?: string;
|
|
48201
|
+
}[];
|
|
48202
|
+
retryable?: boolean;
|
|
48203
|
+
context?: unknown;
|
|
48204
|
+
};
|
|
48205
|
+
};
|
|
48206
|
+
};
|
|
48207
|
+
/** @description Internal server error */
|
|
48208
|
+
500: {
|
|
48209
|
+
headers: {
|
|
48210
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48211
|
+
"Retry-After"?: number;
|
|
48212
|
+
[name: string]: unknown;
|
|
48213
|
+
};
|
|
48214
|
+
content: {
|
|
48215
|
+
"application/json": {
|
|
48216
|
+
code: string;
|
|
48217
|
+
message: string;
|
|
48218
|
+
links?: {
|
|
48219
|
+
docs: string;
|
|
48220
|
+
schema: string;
|
|
48221
|
+
};
|
|
48222
|
+
issues?: {
|
|
48223
|
+
message: string;
|
|
48224
|
+
path?: (string | number)[];
|
|
48225
|
+
schema?: string;
|
|
48226
|
+
}[];
|
|
48227
|
+
retryable?: boolean;
|
|
48228
|
+
context?: unknown;
|
|
48229
|
+
};
|
|
48230
|
+
};
|
|
48231
|
+
};
|
|
48232
|
+
/** @description Service unavailable */
|
|
48233
|
+
503: {
|
|
48234
|
+
headers: {
|
|
48235
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
48236
|
+
"Retry-After"?: number;
|
|
48237
|
+
[name: string]: unknown;
|
|
48238
|
+
};
|
|
48239
|
+
content: {
|
|
48240
|
+
"application/json": {
|
|
48241
|
+
code: string;
|
|
48242
|
+
message: string;
|
|
48243
|
+
links?: {
|
|
48244
|
+
docs: string;
|
|
48245
|
+
schema: string;
|
|
48246
|
+
};
|
|
48247
|
+
issues?: {
|
|
48248
|
+
message: string;
|
|
48249
|
+
path?: (string | number)[];
|
|
48250
|
+
schema?: string;
|
|
48251
|
+
}[];
|
|
48252
|
+
retryable?: boolean;
|
|
48253
|
+
context?: unknown;
|
|
48254
|
+
};
|
|
48255
|
+
};
|
|
48256
|
+
};
|
|
48257
|
+
};
|
|
48258
|
+
};
|
|
47990
48259
|
getInternalMembershipsByMembershipId: {
|
|
47991
48260
|
parameters: {
|
|
47992
48261
|
query?: never;
|