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