@vrplatform/api 1.3.1-stage.6272 → 1.3.1-stage.6274
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
package/src/generated/v1.ts
CHANGED
|
@@ -4486,6 +4486,27 @@ export interface paths {
|
|
|
4486
4486
|
patch?: never;
|
|
4487
4487
|
trace?: never;
|
|
4488
4488
|
};
|
|
4489
|
+
"/reports/trust-reconciliation/by-listing/pdf": {
|
|
4490
|
+
parameters: {
|
|
4491
|
+
query?: never;
|
|
4492
|
+
header?: never;
|
|
4493
|
+
path?: never;
|
|
4494
|
+
cookie?: never;
|
|
4495
|
+
};
|
|
4496
|
+
/**
|
|
4497
|
+
* @description Trust reconciliation grouped by listing (PDF)
|
|
4498
|
+
*
|
|
4499
|
+
* Required scope: reports:read, reports:export
|
|
4500
|
+
*/
|
|
4501
|
+
get: operations["getTrustReconciliationReportByListingPdf"];
|
|
4502
|
+
put?: never;
|
|
4503
|
+
post?: never;
|
|
4504
|
+
delete?: never;
|
|
4505
|
+
options?: never;
|
|
4506
|
+
head?: never;
|
|
4507
|
+
patch?: never;
|
|
4508
|
+
trace?: never;
|
|
4509
|
+
};
|
|
4489
4510
|
"/reports/trust-reconciliation/csv": {
|
|
4490
4511
|
parameters: {
|
|
4491
4512
|
query?: never;
|
|
@@ -4507,6 +4528,27 @@ export interface paths {
|
|
|
4507
4528
|
patch?: never;
|
|
4508
4529
|
trace?: never;
|
|
4509
4530
|
};
|
|
4531
|
+
"/reports/trust-reconciliation/pdf": {
|
|
4532
|
+
parameters: {
|
|
4533
|
+
query?: never;
|
|
4534
|
+
header?: never;
|
|
4535
|
+
path?: never;
|
|
4536
|
+
cookie?: never;
|
|
4537
|
+
};
|
|
4538
|
+
/**
|
|
4539
|
+
* @description Trust reconciliation report (PDF)
|
|
4540
|
+
*
|
|
4541
|
+
* Required scope: reports:read, reports:export
|
|
4542
|
+
*/
|
|
4543
|
+
get: operations["getTrustReconciliationReportPdf"];
|
|
4544
|
+
put?: never;
|
|
4545
|
+
post?: never;
|
|
4546
|
+
delete?: never;
|
|
4547
|
+
options?: never;
|
|
4548
|
+
head?: never;
|
|
4549
|
+
patch?: never;
|
|
4550
|
+
trace?: never;
|
|
4551
|
+
};
|
|
4510
4552
|
"/reservations": {
|
|
4511
4553
|
parameters: {
|
|
4512
4554
|
query?: never;
|
|
@@ -91284,6 +91326,263 @@ export interface operations {
|
|
|
91284
91326
|
};
|
|
91285
91327
|
};
|
|
91286
91328
|
};
|
|
91329
|
+
getTrustReconciliationReportByListingPdf: {
|
|
91330
|
+
parameters: {
|
|
91331
|
+
query?: {
|
|
91332
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. Deprecated: use dateRange instead. */
|
|
91333
|
+
endDate?: string;
|
|
91334
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD` (legacy comma separator also accepted). Single values expand to the full year, month, or day. */
|
|
91335
|
+
dateRange?: string;
|
|
91336
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
91337
|
+
isDateRangeEndInclusive?: boolean;
|
|
91338
|
+
/** @description PDF exports support parent and group totals only. Defaults to parentRollup. */
|
|
91339
|
+
listingDisplay?: "parentRollup";
|
|
91340
|
+
};
|
|
91341
|
+
header?: never;
|
|
91342
|
+
path?: never;
|
|
91343
|
+
cookie?: never;
|
|
91344
|
+
};
|
|
91345
|
+
requestBody?: never;
|
|
91346
|
+
responses: {
|
|
91347
|
+
/** @description Successful response */
|
|
91348
|
+
200: {
|
|
91349
|
+
headers: {
|
|
91350
|
+
[name: string]: unknown;
|
|
91351
|
+
};
|
|
91352
|
+
content: {
|
|
91353
|
+
"application/json": {
|
|
91354
|
+
url: string;
|
|
91355
|
+
expIn: number;
|
|
91356
|
+
};
|
|
91357
|
+
};
|
|
91358
|
+
};
|
|
91359
|
+
/** @description Bad request */
|
|
91360
|
+
400: {
|
|
91361
|
+
headers: {
|
|
91362
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91363
|
+
"Retry-After"?: number;
|
|
91364
|
+
[name: string]: unknown;
|
|
91365
|
+
};
|
|
91366
|
+
content: {
|
|
91367
|
+
"application/json": {
|
|
91368
|
+
code: string;
|
|
91369
|
+
message: string;
|
|
91370
|
+
links?: {
|
|
91371
|
+
docs: string;
|
|
91372
|
+
schema: string;
|
|
91373
|
+
};
|
|
91374
|
+
issues?: {
|
|
91375
|
+
message: string;
|
|
91376
|
+
path?: (string | number)[];
|
|
91377
|
+
schema?: string;
|
|
91378
|
+
}[];
|
|
91379
|
+
retryable?: boolean;
|
|
91380
|
+
context?: unknown;
|
|
91381
|
+
};
|
|
91382
|
+
};
|
|
91383
|
+
};
|
|
91384
|
+
/** @description Unauthorized */
|
|
91385
|
+
401: {
|
|
91386
|
+
headers: {
|
|
91387
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91388
|
+
"Retry-After"?: number;
|
|
91389
|
+
[name: string]: unknown;
|
|
91390
|
+
};
|
|
91391
|
+
content: {
|
|
91392
|
+
"application/json": {
|
|
91393
|
+
code: string;
|
|
91394
|
+
message: string;
|
|
91395
|
+
links?: {
|
|
91396
|
+
docs: string;
|
|
91397
|
+
schema: string;
|
|
91398
|
+
};
|
|
91399
|
+
issues?: {
|
|
91400
|
+
message: string;
|
|
91401
|
+
path?: (string | number)[];
|
|
91402
|
+
schema?: string;
|
|
91403
|
+
}[];
|
|
91404
|
+
retryable?: boolean;
|
|
91405
|
+
context?: unknown;
|
|
91406
|
+
};
|
|
91407
|
+
};
|
|
91408
|
+
};
|
|
91409
|
+
/** @description Forbidden */
|
|
91410
|
+
403: {
|
|
91411
|
+
headers: {
|
|
91412
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91413
|
+
"Retry-After"?: number;
|
|
91414
|
+
[name: string]: unknown;
|
|
91415
|
+
};
|
|
91416
|
+
content: {
|
|
91417
|
+
"application/json": {
|
|
91418
|
+
code: string;
|
|
91419
|
+
message: string;
|
|
91420
|
+
links?: {
|
|
91421
|
+
docs: string;
|
|
91422
|
+
schema: string;
|
|
91423
|
+
};
|
|
91424
|
+
issues?: {
|
|
91425
|
+
message: string;
|
|
91426
|
+
path?: (string | number)[];
|
|
91427
|
+
schema?: string;
|
|
91428
|
+
}[];
|
|
91429
|
+
retryable?: boolean;
|
|
91430
|
+
context?: unknown;
|
|
91431
|
+
};
|
|
91432
|
+
};
|
|
91433
|
+
};
|
|
91434
|
+
/** @description Not found */
|
|
91435
|
+
404: {
|
|
91436
|
+
headers: {
|
|
91437
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91438
|
+
"Retry-After"?: number;
|
|
91439
|
+
[name: string]: unknown;
|
|
91440
|
+
};
|
|
91441
|
+
content: {
|
|
91442
|
+
"application/json": {
|
|
91443
|
+
code: string;
|
|
91444
|
+
message: string;
|
|
91445
|
+
links?: {
|
|
91446
|
+
docs: string;
|
|
91447
|
+
schema: string;
|
|
91448
|
+
};
|
|
91449
|
+
issues?: {
|
|
91450
|
+
message: string;
|
|
91451
|
+
path?: (string | number)[];
|
|
91452
|
+
schema?: string;
|
|
91453
|
+
}[];
|
|
91454
|
+
retryable?: boolean;
|
|
91455
|
+
context?: unknown;
|
|
91456
|
+
};
|
|
91457
|
+
};
|
|
91458
|
+
};
|
|
91459
|
+
/** @description Conflict */
|
|
91460
|
+
409: {
|
|
91461
|
+
headers: {
|
|
91462
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91463
|
+
"Retry-After"?: number;
|
|
91464
|
+
[name: string]: unknown;
|
|
91465
|
+
};
|
|
91466
|
+
content: {
|
|
91467
|
+
"application/json": {
|
|
91468
|
+
code: string;
|
|
91469
|
+
message: string;
|
|
91470
|
+
links?: {
|
|
91471
|
+
docs: string;
|
|
91472
|
+
schema: string;
|
|
91473
|
+
};
|
|
91474
|
+
issues?: {
|
|
91475
|
+
message: string;
|
|
91476
|
+
path?: (string | number)[];
|
|
91477
|
+
schema?: string;
|
|
91478
|
+
}[];
|
|
91479
|
+
retryable?: boolean;
|
|
91480
|
+
context?: unknown;
|
|
91481
|
+
};
|
|
91482
|
+
};
|
|
91483
|
+
};
|
|
91484
|
+
/** @description Gone */
|
|
91485
|
+
410: {
|
|
91486
|
+
headers: {
|
|
91487
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91488
|
+
"Retry-After"?: number;
|
|
91489
|
+
[name: string]: unknown;
|
|
91490
|
+
};
|
|
91491
|
+
content: {
|
|
91492
|
+
"application/json": {
|
|
91493
|
+
code: string;
|
|
91494
|
+
message: string;
|
|
91495
|
+
links?: {
|
|
91496
|
+
docs: string;
|
|
91497
|
+
schema: string;
|
|
91498
|
+
};
|
|
91499
|
+
issues?: {
|
|
91500
|
+
message: string;
|
|
91501
|
+
path?: (string | number)[];
|
|
91502
|
+
schema?: string;
|
|
91503
|
+
}[];
|
|
91504
|
+
retryable?: boolean;
|
|
91505
|
+
context?: unknown;
|
|
91506
|
+
};
|
|
91507
|
+
};
|
|
91508
|
+
};
|
|
91509
|
+
/** @description Unprocessable content */
|
|
91510
|
+
422: {
|
|
91511
|
+
headers: {
|
|
91512
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91513
|
+
"Retry-After"?: number;
|
|
91514
|
+
[name: string]: unknown;
|
|
91515
|
+
};
|
|
91516
|
+
content: {
|
|
91517
|
+
"application/json": {
|
|
91518
|
+
code: string;
|
|
91519
|
+
message: string;
|
|
91520
|
+
links?: {
|
|
91521
|
+
docs: string;
|
|
91522
|
+
schema: string;
|
|
91523
|
+
};
|
|
91524
|
+
issues?: {
|
|
91525
|
+
message: string;
|
|
91526
|
+
path?: (string | number)[];
|
|
91527
|
+
schema?: string;
|
|
91528
|
+
}[];
|
|
91529
|
+
retryable?: boolean;
|
|
91530
|
+
context?: unknown;
|
|
91531
|
+
};
|
|
91532
|
+
};
|
|
91533
|
+
};
|
|
91534
|
+
/** @description Internal server error */
|
|
91535
|
+
500: {
|
|
91536
|
+
headers: {
|
|
91537
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91538
|
+
"Retry-After"?: number;
|
|
91539
|
+
[name: string]: unknown;
|
|
91540
|
+
};
|
|
91541
|
+
content: {
|
|
91542
|
+
"application/json": {
|
|
91543
|
+
code: string;
|
|
91544
|
+
message: string;
|
|
91545
|
+
links?: {
|
|
91546
|
+
docs: string;
|
|
91547
|
+
schema: string;
|
|
91548
|
+
};
|
|
91549
|
+
issues?: {
|
|
91550
|
+
message: string;
|
|
91551
|
+
path?: (string | number)[];
|
|
91552
|
+
schema?: string;
|
|
91553
|
+
}[];
|
|
91554
|
+
retryable?: boolean;
|
|
91555
|
+
context?: unknown;
|
|
91556
|
+
};
|
|
91557
|
+
};
|
|
91558
|
+
};
|
|
91559
|
+
/** @description Service unavailable */
|
|
91560
|
+
503: {
|
|
91561
|
+
headers: {
|
|
91562
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91563
|
+
"Retry-After"?: number;
|
|
91564
|
+
[name: string]: unknown;
|
|
91565
|
+
};
|
|
91566
|
+
content: {
|
|
91567
|
+
"application/json": {
|
|
91568
|
+
code: string;
|
|
91569
|
+
message: string;
|
|
91570
|
+
links?: {
|
|
91571
|
+
docs: string;
|
|
91572
|
+
schema: string;
|
|
91573
|
+
};
|
|
91574
|
+
issues?: {
|
|
91575
|
+
message: string;
|
|
91576
|
+
path?: (string | number)[];
|
|
91577
|
+
schema?: string;
|
|
91578
|
+
}[];
|
|
91579
|
+
retryable?: boolean;
|
|
91580
|
+
context?: unknown;
|
|
91581
|
+
};
|
|
91582
|
+
};
|
|
91583
|
+
};
|
|
91584
|
+
};
|
|
91585
|
+
};
|
|
91287
91586
|
getTrustReconciliationReportCsv: {
|
|
91288
91587
|
parameters: {
|
|
91289
91588
|
query?: {
|
|
@@ -91539,6 +91838,262 @@ export interface operations {
|
|
|
91539
91838
|
};
|
|
91540
91839
|
};
|
|
91541
91840
|
};
|
|
91841
|
+
getTrustReconciliationReportPdf: {
|
|
91842
|
+
parameters: {
|
|
91843
|
+
query?: {
|
|
91844
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. Deprecated: use dateRange instead. */
|
|
91845
|
+
endDate?: string;
|
|
91846
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD` (legacy comma separator also accepted). Single values expand to the full year, month, or day. */
|
|
91847
|
+
dateRange?: string;
|
|
91848
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
91849
|
+
isDateRangeEndInclusive?: boolean;
|
|
91850
|
+
listingId?: string;
|
|
91851
|
+
};
|
|
91852
|
+
header?: never;
|
|
91853
|
+
path?: never;
|
|
91854
|
+
cookie?: never;
|
|
91855
|
+
};
|
|
91856
|
+
requestBody?: never;
|
|
91857
|
+
responses: {
|
|
91858
|
+
/** @description Successful response */
|
|
91859
|
+
200: {
|
|
91860
|
+
headers: {
|
|
91861
|
+
[name: string]: unknown;
|
|
91862
|
+
};
|
|
91863
|
+
content: {
|
|
91864
|
+
"application/json": {
|
|
91865
|
+
url: string;
|
|
91866
|
+
expIn: number;
|
|
91867
|
+
};
|
|
91868
|
+
};
|
|
91869
|
+
};
|
|
91870
|
+
/** @description Bad request */
|
|
91871
|
+
400: {
|
|
91872
|
+
headers: {
|
|
91873
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91874
|
+
"Retry-After"?: number;
|
|
91875
|
+
[name: string]: unknown;
|
|
91876
|
+
};
|
|
91877
|
+
content: {
|
|
91878
|
+
"application/json": {
|
|
91879
|
+
code: string;
|
|
91880
|
+
message: string;
|
|
91881
|
+
links?: {
|
|
91882
|
+
docs: string;
|
|
91883
|
+
schema: string;
|
|
91884
|
+
};
|
|
91885
|
+
issues?: {
|
|
91886
|
+
message: string;
|
|
91887
|
+
path?: (string | number)[];
|
|
91888
|
+
schema?: string;
|
|
91889
|
+
}[];
|
|
91890
|
+
retryable?: boolean;
|
|
91891
|
+
context?: unknown;
|
|
91892
|
+
};
|
|
91893
|
+
};
|
|
91894
|
+
};
|
|
91895
|
+
/** @description Unauthorized */
|
|
91896
|
+
401: {
|
|
91897
|
+
headers: {
|
|
91898
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91899
|
+
"Retry-After"?: number;
|
|
91900
|
+
[name: string]: unknown;
|
|
91901
|
+
};
|
|
91902
|
+
content: {
|
|
91903
|
+
"application/json": {
|
|
91904
|
+
code: string;
|
|
91905
|
+
message: string;
|
|
91906
|
+
links?: {
|
|
91907
|
+
docs: string;
|
|
91908
|
+
schema: string;
|
|
91909
|
+
};
|
|
91910
|
+
issues?: {
|
|
91911
|
+
message: string;
|
|
91912
|
+
path?: (string | number)[];
|
|
91913
|
+
schema?: string;
|
|
91914
|
+
}[];
|
|
91915
|
+
retryable?: boolean;
|
|
91916
|
+
context?: unknown;
|
|
91917
|
+
};
|
|
91918
|
+
};
|
|
91919
|
+
};
|
|
91920
|
+
/** @description Forbidden */
|
|
91921
|
+
403: {
|
|
91922
|
+
headers: {
|
|
91923
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91924
|
+
"Retry-After"?: number;
|
|
91925
|
+
[name: string]: unknown;
|
|
91926
|
+
};
|
|
91927
|
+
content: {
|
|
91928
|
+
"application/json": {
|
|
91929
|
+
code: string;
|
|
91930
|
+
message: string;
|
|
91931
|
+
links?: {
|
|
91932
|
+
docs: string;
|
|
91933
|
+
schema: string;
|
|
91934
|
+
};
|
|
91935
|
+
issues?: {
|
|
91936
|
+
message: string;
|
|
91937
|
+
path?: (string | number)[];
|
|
91938
|
+
schema?: string;
|
|
91939
|
+
}[];
|
|
91940
|
+
retryable?: boolean;
|
|
91941
|
+
context?: unknown;
|
|
91942
|
+
};
|
|
91943
|
+
};
|
|
91944
|
+
};
|
|
91945
|
+
/** @description Not found */
|
|
91946
|
+
404: {
|
|
91947
|
+
headers: {
|
|
91948
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91949
|
+
"Retry-After"?: number;
|
|
91950
|
+
[name: string]: unknown;
|
|
91951
|
+
};
|
|
91952
|
+
content: {
|
|
91953
|
+
"application/json": {
|
|
91954
|
+
code: string;
|
|
91955
|
+
message: string;
|
|
91956
|
+
links?: {
|
|
91957
|
+
docs: string;
|
|
91958
|
+
schema: string;
|
|
91959
|
+
};
|
|
91960
|
+
issues?: {
|
|
91961
|
+
message: string;
|
|
91962
|
+
path?: (string | number)[];
|
|
91963
|
+
schema?: string;
|
|
91964
|
+
}[];
|
|
91965
|
+
retryable?: boolean;
|
|
91966
|
+
context?: unknown;
|
|
91967
|
+
};
|
|
91968
|
+
};
|
|
91969
|
+
};
|
|
91970
|
+
/** @description Conflict */
|
|
91971
|
+
409: {
|
|
91972
|
+
headers: {
|
|
91973
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91974
|
+
"Retry-After"?: number;
|
|
91975
|
+
[name: string]: unknown;
|
|
91976
|
+
};
|
|
91977
|
+
content: {
|
|
91978
|
+
"application/json": {
|
|
91979
|
+
code: string;
|
|
91980
|
+
message: string;
|
|
91981
|
+
links?: {
|
|
91982
|
+
docs: string;
|
|
91983
|
+
schema: string;
|
|
91984
|
+
};
|
|
91985
|
+
issues?: {
|
|
91986
|
+
message: string;
|
|
91987
|
+
path?: (string | number)[];
|
|
91988
|
+
schema?: string;
|
|
91989
|
+
}[];
|
|
91990
|
+
retryable?: boolean;
|
|
91991
|
+
context?: unknown;
|
|
91992
|
+
};
|
|
91993
|
+
};
|
|
91994
|
+
};
|
|
91995
|
+
/** @description Gone */
|
|
91996
|
+
410: {
|
|
91997
|
+
headers: {
|
|
91998
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
91999
|
+
"Retry-After"?: number;
|
|
92000
|
+
[name: string]: unknown;
|
|
92001
|
+
};
|
|
92002
|
+
content: {
|
|
92003
|
+
"application/json": {
|
|
92004
|
+
code: string;
|
|
92005
|
+
message: string;
|
|
92006
|
+
links?: {
|
|
92007
|
+
docs: string;
|
|
92008
|
+
schema: string;
|
|
92009
|
+
};
|
|
92010
|
+
issues?: {
|
|
92011
|
+
message: string;
|
|
92012
|
+
path?: (string | number)[];
|
|
92013
|
+
schema?: string;
|
|
92014
|
+
}[];
|
|
92015
|
+
retryable?: boolean;
|
|
92016
|
+
context?: unknown;
|
|
92017
|
+
};
|
|
92018
|
+
};
|
|
92019
|
+
};
|
|
92020
|
+
/** @description Unprocessable content */
|
|
92021
|
+
422: {
|
|
92022
|
+
headers: {
|
|
92023
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
92024
|
+
"Retry-After"?: number;
|
|
92025
|
+
[name: string]: unknown;
|
|
92026
|
+
};
|
|
92027
|
+
content: {
|
|
92028
|
+
"application/json": {
|
|
92029
|
+
code: string;
|
|
92030
|
+
message: string;
|
|
92031
|
+
links?: {
|
|
92032
|
+
docs: string;
|
|
92033
|
+
schema: string;
|
|
92034
|
+
};
|
|
92035
|
+
issues?: {
|
|
92036
|
+
message: string;
|
|
92037
|
+
path?: (string | number)[];
|
|
92038
|
+
schema?: string;
|
|
92039
|
+
}[];
|
|
92040
|
+
retryable?: boolean;
|
|
92041
|
+
context?: unknown;
|
|
92042
|
+
};
|
|
92043
|
+
};
|
|
92044
|
+
};
|
|
92045
|
+
/** @description Internal server error */
|
|
92046
|
+
500: {
|
|
92047
|
+
headers: {
|
|
92048
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
92049
|
+
"Retry-After"?: number;
|
|
92050
|
+
[name: string]: unknown;
|
|
92051
|
+
};
|
|
92052
|
+
content: {
|
|
92053
|
+
"application/json": {
|
|
92054
|
+
code: string;
|
|
92055
|
+
message: string;
|
|
92056
|
+
links?: {
|
|
92057
|
+
docs: string;
|
|
92058
|
+
schema: string;
|
|
92059
|
+
};
|
|
92060
|
+
issues?: {
|
|
92061
|
+
message: string;
|
|
92062
|
+
path?: (string | number)[];
|
|
92063
|
+
schema?: string;
|
|
92064
|
+
}[];
|
|
92065
|
+
retryable?: boolean;
|
|
92066
|
+
context?: unknown;
|
|
92067
|
+
};
|
|
92068
|
+
};
|
|
92069
|
+
};
|
|
92070
|
+
/** @description Service unavailable */
|
|
92071
|
+
503: {
|
|
92072
|
+
headers: {
|
|
92073
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
92074
|
+
"Retry-After"?: number;
|
|
92075
|
+
[name: string]: unknown;
|
|
92076
|
+
};
|
|
92077
|
+
content: {
|
|
92078
|
+
"application/json": {
|
|
92079
|
+
code: string;
|
|
92080
|
+
message: string;
|
|
92081
|
+
links?: {
|
|
92082
|
+
docs: string;
|
|
92083
|
+
schema: string;
|
|
92084
|
+
};
|
|
92085
|
+
issues?: {
|
|
92086
|
+
message: string;
|
|
92087
|
+
path?: (string | number)[];
|
|
92088
|
+
schema?: string;
|
|
92089
|
+
}[];
|
|
92090
|
+
retryable?: boolean;
|
|
92091
|
+
context?: unknown;
|
|
92092
|
+
};
|
|
92093
|
+
};
|
|
92094
|
+
};
|
|
92095
|
+
};
|
|
92096
|
+
};
|
|
91542
92097
|
getReservations: {
|
|
91543
92098
|
parameters: {
|
|
91544
92099
|
query?: {
|