@vrplatform/api 1.3.1-stage.4010 → 1.3.1-stage.4012
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
|
@@ -2818,6 +2818,40 @@ export interface paths {
|
|
|
2818
2818
|
patch?: never;
|
|
2819
2819
|
trace?: never;
|
|
2820
2820
|
};
|
|
2821
|
+
"/statements/layouts/listing-mappings": {
|
|
2822
|
+
parameters: {
|
|
2823
|
+
query?: never;
|
|
2824
|
+
header?: never;
|
|
2825
|
+
path?: never;
|
|
2826
|
+
cookie?: never;
|
|
2827
|
+
};
|
|
2828
|
+
/** @description List statement layout listing mappings */
|
|
2829
|
+
get: operations["getStatementsLayoutsListingMappings"];
|
|
2830
|
+
put?: never;
|
|
2831
|
+
post?: never;
|
|
2832
|
+
delete?: never;
|
|
2833
|
+
options?: never;
|
|
2834
|
+
head?: never;
|
|
2835
|
+
patch?: never;
|
|
2836
|
+
trace?: never;
|
|
2837
|
+
};
|
|
2838
|
+
"/statements/layouts/listing-mappings/{listingId}": {
|
|
2839
|
+
parameters: {
|
|
2840
|
+
query?: never;
|
|
2841
|
+
header?: never;
|
|
2842
|
+
path?: never;
|
|
2843
|
+
cookie?: never;
|
|
2844
|
+
};
|
|
2845
|
+
get?: never;
|
|
2846
|
+
/** @description Update statement layout listing mapping */
|
|
2847
|
+
put: operations["putStatementsLayoutsListingMappingsByListingId"];
|
|
2848
|
+
post?: never;
|
|
2849
|
+
delete?: never;
|
|
2850
|
+
options?: never;
|
|
2851
|
+
head?: never;
|
|
2852
|
+
patch?: never;
|
|
2853
|
+
trace?: never;
|
|
2854
|
+
};
|
|
2821
2855
|
"/statements/layouts/{id}": {
|
|
2822
2856
|
parameters: {
|
|
2823
2857
|
query?: never;
|
|
@@ -25209,6 +25243,8 @@ export interface operations {
|
|
|
25209
25243
|
query?: {
|
|
25210
25244
|
recurringFeeId?: string;
|
|
25211
25245
|
listingId?: string;
|
|
25246
|
+
/** @description Controls listingId filter expansion. withChildren includes direct child listings when a parent listing is selected; exact only matches the selected listing id. */
|
|
25247
|
+
listingScope?: "exact" | "withChildren";
|
|
25212
25248
|
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
25213
25249
|
date?: string;
|
|
25214
25250
|
recurringFeeType?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
@@ -45316,6 +45352,262 @@ export interface operations {
|
|
|
45316
45352
|
};
|
|
45317
45353
|
};
|
|
45318
45354
|
};
|
|
45355
|
+
getStatementsLayoutsListingMappings: {
|
|
45356
|
+
parameters: {
|
|
45357
|
+
query?: {
|
|
45358
|
+
layoutId?: string;
|
|
45359
|
+
search?: string;
|
|
45360
|
+
limit?: number;
|
|
45361
|
+
page?: number;
|
|
45362
|
+
};
|
|
45363
|
+
header?: never;
|
|
45364
|
+
path?: never;
|
|
45365
|
+
cookie?: never;
|
|
45366
|
+
};
|
|
45367
|
+
requestBody?: never;
|
|
45368
|
+
responses: {
|
|
45369
|
+
/** @description Successful response */
|
|
45370
|
+
200: {
|
|
45371
|
+
headers: {
|
|
45372
|
+
[name: string]: unknown;
|
|
45373
|
+
};
|
|
45374
|
+
content: {
|
|
45375
|
+
"application/json": {
|
|
45376
|
+
data: {
|
|
45377
|
+
listing: {
|
|
45378
|
+
/** Format: uuid */
|
|
45379
|
+
id: string;
|
|
45380
|
+
name: string;
|
|
45381
|
+
children: {
|
|
45382
|
+
/** Format: uuid */
|
|
45383
|
+
id: string;
|
|
45384
|
+
name: string;
|
|
45385
|
+
}[];
|
|
45386
|
+
};
|
|
45387
|
+
layout: {
|
|
45388
|
+
/** Format: uuid */
|
|
45389
|
+
id: string;
|
|
45390
|
+
name: string;
|
|
45391
|
+
} | null;
|
|
45392
|
+
}[];
|
|
45393
|
+
pagination: {
|
|
45394
|
+
/** @default 100 */
|
|
45395
|
+
limit: number;
|
|
45396
|
+
/** @default 1 */
|
|
45397
|
+
page: number;
|
|
45398
|
+
total: number;
|
|
45399
|
+
totalPage: number;
|
|
45400
|
+
nextPage?: number;
|
|
45401
|
+
};
|
|
45402
|
+
};
|
|
45403
|
+
};
|
|
45404
|
+
};
|
|
45405
|
+
/** @description Bad request */
|
|
45406
|
+
400: {
|
|
45407
|
+
headers: {
|
|
45408
|
+
[name: string]: unknown;
|
|
45409
|
+
};
|
|
45410
|
+
content: {
|
|
45411
|
+
"application/json": {
|
|
45412
|
+
code: string;
|
|
45413
|
+
message: string;
|
|
45414
|
+
issues?: {
|
|
45415
|
+
message: string;
|
|
45416
|
+
}[];
|
|
45417
|
+
context?: unknown;
|
|
45418
|
+
};
|
|
45419
|
+
};
|
|
45420
|
+
};
|
|
45421
|
+
/** @description Unauthorized */
|
|
45422
|
+
401: {
|
|
45423
|
+
headers: {
|
|
45424
|
+
[name: string]: unknown;
|
|
45425
|
+
};
|
|
45426
|
+
content: {
|
|
45427
|
+
"application/json": {
|
|
45428
|
+
code: string;
|
|
45429
|
+
message: string;
|
|
45430
|
+
issues?: {
|
|
45431
|
+
message: string;
|
|
45432
|
+
}[];
|
|
45433
|
+
context?: unknown;
|
|
45434
|
+
};
|
|
45435
|
+
};
|
|
45436
|
+
};
|
|
45437
|
+
/** @description Forbidden */
|
|
45438
|
+
403: {
|
|
45439
|
+
headers: {
|
|
45440
|
+
[name: string]: unknown;
|
|
45441
|
+
};
|
|
45442
|
+
content: {
|
|
45443
|
+
"application/json": {
|
|
45444
|
+
code: string;
|
|
45445
|
+
message: string;
|
|
45446
|
+
issues?: {
|
|
45447
|
+
message: string;
|
|
45448
|
+
}[];
|
|
45449
|
+
context?: unknown;
|
|
45450
|
+
};
|
|
45451
|
+
};
|
|
45452
|
+
};
|
|
45453
|
+
/** @description Not found */
|
|
45454
|
+
404: {
|
|
45455
|
+
headers: {
|
|
45456
|
+
[name: string]: unknown;
|
|
45457
|
+
};
|
|
45458
|
+
content: {
|
|
45459
|
+
"application/json": {
|
|
45460
|
+
code: string;
|
|
45461
|
+
message: string;
|
|
45462
|
+
issues?: {
|
|
45463
|
+
message: string;
|
|
45464
|
+
}[];
|
|
45465
|
+
context?: unknown;
|
|
45466
|
+
};
|
|
45467
|
+
};
|
|
45468
|
+
};
|
|
45469
|
+
/** @description Internal server error */
|
|
45470
|
+
500: {
|
|
45471
|
+
headers: {
|
|
45472
|
+
[name: string]: unknown;
|
|
45473
|
+
};
|
|
45474
|
+
content: {
|
|
45475
|
+
"application/json": {
|
|
45476
|
+
code: string;
|
|
45477
|
+
message: string;
|
|
45478
|
+
issues?: {
|
|
45479
|
+
message: string;
|
|
45480
|
+
}[];
|
|
45481
|
+
context?: unknown;
|
|
45482
|
+
};
|
|
45483
|
+
};
|
|
45484
|
+
};
|
|
45485
|
+
};
|
|
45486
|
+
};
|
|
45487
|
+
putStatementsLayoutsListingMappingsByListingId: {
|
|
45488
|
+
parameters: {
|
|
45489
|
+
query?: never;
|
|
45490
|
+
header?: never;
|
|
45491
|
+
path: {
|
|
45492
|
+
listingId: string;
|
|
45493
|
+
};
|
|
45494
|
+
cookie?: never;
|
|
45495
|
+
};
|
|
45496
|
+
requestBody?: {
|
|
45497
|
+
content: {
|
|
45498
|
+
"application/json": {
|
|
45499
|
+
layoutId: string | null;
|
|
45500
|
+
};
|
|
45501
|
+
};
|
|
45502
|
+
};
|
|
45503
|
+
responses: {
|
|
45504
|
+
/** @description Successful response */
|
|
45505
|
+
200: {
|
|
45506
|
+
headers: {
|
|
45507
|
+
[name: string]: unknown;
|
|
45508
|
+
};
|
|
45509
|
+
content: {
|
|
45510
|
+
"application/json": {
|
|
45511
|
+
listing: {
|
|
45512
|
+
/** Format: uuid */
|
|
45513
|
+
id: string;
|
|
45514
|
+
name: string;
|
|
45515
|
+
children: {
|
|
45516
|
+
/** Format: uuid */
|
|
45517
|
+
id: string;
|
|
45518
|
+
name: string;
|
|
45519
|
+
}[];
|
|
45520
|
+
};
|
|
45521
|
+
layout: {
|
|
45522
|
+
/** Format: uuid */
|
|
45523
|
+
id: string;
|
|
45524
|
+
name: string;
|
|
45525
|
+
} | null;
|
|
45526
|
+
};
|
|
45527
|
+
};
|
|
45528
|
+
};
|
|
45529
|
+
/** @description Bad request */
|
|
45530
|
+
400: {
|
|
45531
|
+
headers: {
|
|
45532
|
+
[name: string]: unknown;
|
|
45533
|
+
};
|
|
45534
|
+
content: {
|
|
45535
|
+
"application/json": {
|
|
45536
|
+
code: string;
|
|
45537
|
+
message: string;
|
|
45538
|
+
issues?: {
|
|
45539
|
+
message: string;
|
|
45540
|
+
}[];
|
|
45541
|
+
context?: unknown;
|
|
45542
|
+
};
|
|
45543
|
+
};
|
|
45544
|
+
};
|
|
45545
|
+
/** @description Unauthorized */
|
|
45546
|
+
401: {
|
|
45547
|
+
headers: {
|
|
45548
|
+
[name: string]: unknown;
|
|
45549
|
+
};
|
|
45550
|
+
content: {
|
|
45551
|
+
"application/json": {
|
|
45552
|
+
code: string;
|
|
45553
|
+
message: string;
|
|
45554
|
+
issues?: {
|
|
45555
|
+
message: string;
|
|
45556
|
+
}[];
|
|
45557
|
+
context?: unknown;
|
|
45558
|
+
};
|
|
45559
|
+
};
|
|
45560
|
+
};
|
|
45561
|
+
/** @description Forbidden */
|
|
45562
|
+
403: {
|
|
45563
|
+
headers: {
|
|
45564
|
+
[name: string]: unknown;
|
|
45565
|
+
};
|
|
45566
|
+
content: {
|
|
45567
|
+
"application/json": {
|
|
45568
|
+
code: string;
|
|
45569
|
+
message: string;
|
|
45570
|
+
issues?: {
|
|
45571
|
+
message: string;
|
|
45572
|
+
}[];
|
|
45573
|
+
context?: unknown;
|
|
45574
|
+
};
|
|
45575
|
+
};
|
|
45576
|
+
};
|
|
45577
|
+
/** @description Not found */
|
|
45578
|
+
404: {
|
|
45579
|
+
headers: {
|
|
45580
|
+
[name: string]: unknown;
|
|
45581
|
+
};
|
|
45582
|
+
content: {
|
|
45583
|
+
"application/json": {
|
|
45584
|
+
code: string;
|
|
45585
|
+
message: string;
|
|
45586
|
+
issues?: {
|
|
45587
|
+
message: string;
|
|
45588
|
+
}[];
|
|
45589
|
+
context?: unknown;
|
|
45590
|
+
};
|
|
45591
|
+
};
|
|
45592
|
+
};
|
|
45593
|
+
/** @description Internal server error */
|
|
45594
|
+
500: {
|
|
45595
|
+
headers: {
|
|
45596
|
+
[name: string]: unknown;
|
|
45597
|
+
};
|
|
45598
|
+
content: {
|
|
45599
|
+
"application/json": {
|
|
45600
|
+
code: string;
|
|
45601
|
+
message: string;
|
|
45602
|
+
issues?: {
|
|
45603
|
+
message: string;
|
|
45604
|
+
}[];
|
|
45605
|
+
context?: unknown;
|
|
45606
|
+
};
|
|
45607
|
+
};
|
|
45608
|
+
};
|
|
45609
|
+
};
|
|
45610
|
+
};
|
|
45319
45611
|
getStatementsLayoutsById: {
|
|
45320
45612
|
parameters: {
|
|
45321
45613
|
query?: never;
|