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