@vrplatform/api 1.2.32 → 1.2.33-stage.664
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/build/main/generated/v1.d.ts +14 -101
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +14 -101
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +14 -101
- package/build/main/fetcher.d.ts +0 -18
- package/build/main/fetcher.js +0 -68
- package/build/main/fetcher.js.map +0 -1
- package/build/main/headers.d.ts +0 -18
- package/build/main/headers.js +0 -25
- package/build/main/headers.js.map +0 -1
- package/build/main/retryable-errors.d.ts +0 -9
- package/build/main/retryable-errors.js +0 -38
- package/build/main/retryable-errors.js.map +0 -1
- package/build/module/fetcher.d.ts +0 -18
- package/build/module/fetcher.js +0 -63
- package/build/module/fetcher.js.map +0 -1
- package/build/module/headers.d.ts +0 -18
- package/build/module/headers.js +0 -23
- package/build/module/headers.js.map +0 -1
- package/build/module/retryable-errors.d.ts +0 -9
- package/build/module/retryable-errors.js +0 -34
- package/build/module/retryable-errors.js.map +0 -1
|
@@ -37,23 +37,6 @@ export interface paths {
|
|
|
37
37
|
patch?: never;
|
|
38
38
|
trace?: never;
|
|
39
39
|
};
|
|
40
|
-
"/healthz": {
|
|
41
|
-
parameters: {
|
|
42
|
-
query?: never;
|
|
43
|
-
header?: never;
|
|
44
|
-
path?: never;
|
|
45
|
-
cookie?: never;
|
|
46
|
-
};
|
|
47
|
-
/** @description HealthZ Endpoint */
|
|
48
|
-
get: operations["healthz"];
|
|
49
|
-
put?: never;
|
|
50
|
-
post?: never;
|
|
51
|
-
delete?: never;
|
|
52
|
-
options?: never;
|
|
53
|
-
head?: never;
|
|
54
|
-
patch?: never;
|
|
55
|
-
trace?: never;
|
|
56
|
-
};
|
|
57
40
|
"/legacy/payouts": {
|
|
58
41
|
parameters: {
|
|
59
42
|
query?: never;
|
|
@@ -2187,76 +2170,6 @@ export interface operations {
|
|
|
2187
2170
|
};
|
|
2188
2171
|
};
|
|
2189
2172
|
};
|
|
2190
|
-
healthz: {
|
|
2191
|
-
parameters: {
|
|
2192
|
-
query?: never;
|
|
2193
|
-
header?: {
|
|
2194
|
-
"X-Team-Id"?: string;
|
|
2195
|
-
};
|
|
2196
|
-
path?: never;
|
|
2197
|
-
cookie?: never;
|
|
2198
|
-
};
|
|
2199
|
-
requestBody?: never;
|
|
2200
|
-
responses: {
|
|
2201
|
-
/** @description Successful response */
|
|
2202
|
-
200: {
|
|
2203
|
-
headers: {
|
|
2204
|
-
[name: string]: unknown;
|
|
2205
|
-
};
|
|
2206
|
-
content: {
|
|
2207
|
-
"application/json": {
|
|
2208
|
-
status: string;
|
|
2209
|
-
metadata?: unknown;
|
|
2210
|
-
};
|
|
2211
|
-
};
|
|
2212
|
-
};
|
|
2213
|
-
/** @description Invalid input data */
|
|
2214
|
-
400: {
|
|
2215
|
-
headers: {
|
|
2216
|
-
[name: string]: unknown;
|
|
2217
|
-
};
|
|
2218
|
-
content: {
|
|
2219
|
-
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
2220
|
-
};
|
|
2221
|
-
};
|
|
2222
|
-
/** @description Authorization not provided */
|
|
2223
|
-
401: {
|
|
2224
|
-
headers: {
|
|
2225
|
-
[name: string]: unknown;
|
|
2226
|
-
};
|
|
2227
|
-
content: {
|
|
2228
|
-
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
2229
|
-
};
|
|
2230
|
-
};
|
|
2231
|
-
/** @description Insufficient access */
|
|
2232
|
-
403: {
|
|
2233
|
-
headers: {
|
|
2234
|
-
[name: string]: unknown;
|
|
2235
|
-
};
|
|
2236
|
-
content: {
|
|
2237
|
-
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
2238
|
-
};
|
|
2239
|
-
};
|
|
2240
|
-
/** @description Not found */
|
|
2241
|
-
404: {
|
|
2242
|
-
headers: {
|
|
2243
|
-
[name: string]: unknown;
|
|
2244
|
-
};
|
|
2245
|
-
content: {
|
|
2246
|
-
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
2247
|
-
};
|
|
2248
|
-
};
|
|
2249
|
-
/** @description Internal server error */
|
|
2250
|
-
500: {
|
|
2251
|
-
headers: {
|
|
2252
|
-
[name: string]: unknown;
|
|
2253
|
-
};
|
|
2254
|
-
content: {
|
|
2255
|
-
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
2256
|
-
};
|
|
2257
|
-
};
|
|
2258
|
-
};
|
|
2259
|
-
};
|
|
2260
2173
|
getLegacyPayouts: {
|
|
2261
2174
|
parameters: {
|
|
2262
2175
|
query?: {
|
|
@@ -6216,7 +6129,7 @@ export interface operations {
|
|
|
6216
6129
|
data: {
|
|
6217
6130
|
/** Format: uuid */
|
|
6218
6131
|
listingId: string;
|
|
6219
|
-
/** @default 2025-09-
|
|
6132
|
+
/** @default 2025-09-29 */
|
|
6220
6133
|
startAt: string;
|
|
6221
6134
|
endAt?: string | null;
|
|
6222
6135
|
setListingInactive?: boolean | null;
|
|
@@ -6298,7 +6211,7 @@ export interface operations {
|
|
|
6298
6211
|
"application/json": {
|
|
6299
6212
|
/** Format: uuid */
|
|
6300
6213
|
listingId: string;
|
|
6301
|
-
/** @default 2025-09-
|
|
6214
|
+
/** @default 2025-09-29 */
|
|
6302
6215
|
startAt?: string;
|
|
6303
6216
|
endAt?: string | null;
|
|
6304
6217
|
members: {
|
|
@@ -6332,7 +6245,7 @@ export interface operations {
|
|
|
6332
6245
|
"application/json": {
|
|
6333
6246
|
/** Format: uuid */
|
|
6334
6247
|
listingId: string;
|
|
6335
|
-
/** @default 2025-09-
|
|
6248
|
+
/** @default 2025-09-29 */
|
|
6336
6249
|
startAt: string;
|
|
6337
6250
|
endAt?: string | null;
|
|
6338
6251
|
setListingInactive?: boolean | null;
|
|
@@ -6412,7 +6325,7 @@ export interface operations {
|
|
|
6412
6325
|
"application/json": {
|
|
6413
6326
|
/** Format: uuid */
|
|
6414
6327
|
listingId: string;
|
|
6415
|
-
/** @default 2025-09-
|
|
6328
|
+
/** @default 2025-09-29 */
|
|
6416
6329
|
startAt: string;
|
|
6417
6330
|
endAt?: string | null;
|
|
6418
6331
|
setListingInactive?: boolean | null;
|
|
@@ -6495,7 +6408,7 @@ export interface operations {
|
|
|
6495
6408
|
"application/json": {
|
|
6496
6409
|
/** Format: uuid */
|
|
6497
6410
|
listingId?: string;
|
|
6498
|
-
/** @default 2025-09-
|
|
6411
|
+
/** @default 2025-09-29 */
|
|
6499
6412
|
startAt?: string;
|
|
6500
6413
|
endAt?: string | null;
|
|
6501
6414
|
members?: {
|
|
@@ -6524,7 +6437,7 @@ export interface operations {
|
|
|
6524
6437
|
"application/json": {
|
|
6525
6438
|
/** Format: uuid */
|
|
6526
6439
|
listingId: string;
|
|
6527
|
-
/** @default 2025-09-
|
|
6440
|
+
/** @default 2025-09-29 */
|
|
6528
6441
|
startAt: string;
|
|
6529
6442
|
endAt?: string | null;
|
|
6530
6443
|
setListingInactive?: boolean | null;
|
|
@@ -6710,7 +6623,7 @@ export interface operations {
|
|
|
6710
6623
|
/** Format: uuid */
|
|
6711
6624
|
sourceId?: string | null;
|
|
6712
6625
|
initialOwnership?: {
|
|
6713
|
-
/** @default 2025-09-
|
|
6626
|
+
/** @default 2025-09-29 */
|
|
6714
6627
|
startAt?: string;
|
|
6715
6628
|
endAt?: string | null;
|
|
6716
6629
|
members: {
|
|
@@ -6768,7 +6681,7 @@ export interface operations {
|
|
|
6768
6681
|
status: "active" | "inactive";
|
|
6769
6682
|
defaultCurrency?: string | null;
|
|
6770
6683
|
activeOwnership?: {
|
|
6771
|
-
/** @default 2025-09-
|
|
6684
|
+
/** @default 2025-09-29 */
|
|
6772
6685
|
startAt: string;
|
|
6773
6686
|
endAt?: string | null;
|
|
6774
6687
|
setListingInactive?: boolean | null;
|
|
@@ -7000,7 +6913,7 @@ export interface operations {
|
|
|
7000
6913
|
status: "active" | "inactive";
|
|
7001
6914
|
defaultCurrency?: string | null;
|
|
7002
6915
|
activeOwnership?: {
|
|
7003
|
-
/** @default 2025-09-
|
|
6916
|
+
/** @default 2025-09-29 */
|
|
7004
6917
|
startAt: string;
|
|
7005
6918
|
endAt?: string | null;
|
|
7006
6919
|
setListingInactive?: boolean | null;
|
|
@@ -7130,7 +7043,7 @@ export interface operations {
|
|
|
7130
7043
|
/** Format: uuid */
|
|
7131
7044
|
sourceId?: string | null;
|
|
7132
7045
|
initialOwnership?: {
|
|
7133
|
-
/** @default 2025-09-
|
|
7046
|
+
/** @default 2025-09-29 */
|
|
7134
7047
|
startAt?: string;
|
|
7135
7048
|
endAt?: string | null;
|
|
7136
7049
|
members: {
|
|
@@ -7184,7 +7097,7 @@ export interface operations {
|
|
|
7184
7097
|
status: "active" | "inactive";
|
|
7185
7098
|
defaultCurrency?: string | null;
|
|
7186
7099
|
activeOwnership?: {
|
|
7187
|
-
/** @default 2025-09-
|
|
7100
|
+
/** @default 2025-09-29 */
|
|
7188
7101
|
startAt: string;
|
|
7189
7102
|
endAt?: string | null;
|
|
7190
7103
|
setListingInactive?: boolean | null;
|
|
@@ -7392,7 +7305,7 @@ export interface operations {
|
|
|
7392
7305
|
status: "active" | "inactive";
|
|
7393
7306
|
defaultCurrency?: string | null;
|
|
7394
7307
|
activeOwnership?: {
|
|
7395
|
-
/** @default 2025-09-
|
|
7308
|
+
/** @default 2025-09-29 */
|
|
7396
7309
|
startAt: string;
|
|
7397
7310
|
endAt?: string | null;
|
|
7398
7311
|
setListingInactive?: boolean | null;
|
|
@@ -7530,7 +7443,7 @@ export interface operations {
|
|
|
7530
7443
|
/** Format: uuid */
|
|
7531
7444
|
sourceId?: string | null;
|
|
7532
7445
|
initialOwnership?: {
|
|
7533
|
-
/** @default 2025-09-
|
|
7446
|
+
/** @default 2025-09-29 */
|
|
7534
7447
|
startAt?: string;
|
|
7535
7448
|
endAt?: string | null;
|
|
7536
7449
|
members: {
|
|
@@ -7584,7 +7497,7 @@ export interface operations {
|
|
|
7584
7497
|
status: "active" | "inactive";
|
|
7585
7498
|
defaultCurrency?: string | null;
|
|
7586
7499
|
activeOwnership?: {
|
|
7587
|
-
/** @default 2025-09-
|
|
7500
|
+
/** @default 2025-09-29 */
|
|
7588
7501
|
startAt: string;
|
|
7589
7502
|
endAt?: string | null;
|
|
7590
7503
|
setListingInactive?: boolean | null;
|