@vrplatform/api 1.3.1-stage.2146 → 1.3.1-stage.2147

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.
@@ -580,11 +580,10 @@ export interface paths {
580
580
  path?: never;
581
581
  cookie?: never;
582
582
  };
583
- /** @description Sync connection by uniqueRef and type */
584
- get: operations["syncConnection"];
583
+ get?: never;
585
584
  put?: never;
586
585
  /** @description Sync connection by uniqueRef and type */
587
- post: operations["syncConnectionPost"];
586
+ post: operations["syncConnection"];
588
587
  delete?: never;
589
588
  options?: never;
590
589
  head?: never;
@@ -10564,149 +10563,6 @@ export interface operations {
10564
10563
  };
10565
10564
  };
10566
10565
  syncConnection: {
10567
- parameters: {
10568
- query: {
10569
- uniqueRef: string;
10570
- type: "reservation" | "listing" | "payout";
10571
- };
10572
- header?: never;
10573
- path: {
10574
- id: string;
10575
- };
10576
- cookie?: never;
10577
- };
10578
- requestBody?: never;
10579
- responses: {
10580
- /** @description Successful response */
10581
- 200: {
10582
- headers: {
10583
- [name: string]: unknown;
10584
- };
10585
- content: {
10586
- "application/json": ({
10587
- /** Format: uuid */
10588
- id: string;
10589
- /** @constant */
10590
- status: "completed";
10591
- message: string;
10592
- /** @constant */
10593
- type: "reservation";
10594
- /** Format: uuid */
10595
- reservationId: string;
10596
- } | {
10597
- /** Format: uuid */
10598
- id: string;
10599
- /** @constant */
10600
- status: "completed";
10601
- message: string;
10602
- /** @constant */
10603
- type: "listing";
10604
- /** Format: uuid */
10605
- listingId: string;
10606
- } | {
10607
- /** Format: uuid */
10608
- id: string;
10609
- /** @constant */
10610
- status: "completed";
10611
- message: string;
10612
- /** @constant */
10613
- type: "payout";
10614
- /** Format: uuid */
10615
- paymentId: string;
10616
- }) | {
10617
- /** Format: uuid */
10618
- id: string;
10619
- /** @constant */
10620
- status: "failed";
10621
- message: string;
10622
- /** @enum {string} */
10623
- type: "reservation" | "listing" | "payout";
10624
- };
10625
- };
10626
- };
10627
- /** @description Bad request */
10628
- 400: {
10629
- headers: {
10630
- [name: string]: unknown;
10631
- };
10632
- content: {
10633
- "application/json": {
10634
- code: string;
10635
- message: string;
10636
- issues?: {
10637
- message: string;
10638
- }[];
10639
- context?: unknown;
10640
- };
10641
- };
10642
- };
10643
- /** @description Unauthorized */
10644
- 401: {
10645
- headers: {
10646
- [name: string]: unknown;
10647
- };
10648
- content: {
10649
- "application/json": {
10650
- code: string;
10651
- message: string;
10652
- issues?: {
10653
- message: string;
10654
- }[];
10655
- context?: unknown;
10656
- };
10657
- };
10658
- };
10659
- /** @description Forbidden */
10660
- 403: {
10661
- headers: {
10662
- [name: string]: unknown;
10663
- };
10664
- content: {
10665
- "application/json": {
10666
- code: string;
10667
- message: string;
10668
- issues?: {
10669
- message: string;
10670
- }[];
10671
- context?: unknown;
10672
- };
10673
- };
10674
- };
10675
- /** @description Not found */
10676
- 404: {
10677
- headers: {
10678
- [name: string]: unknown;
10679
- };
10680
- content: {
10681
- "application/json": {
10682
- code: string;
10683
- message: string;
10684
- issues?: {
10685
- message: string;
10686
- }[];
10687
- context?: unknown;
10688
- };
10689
- };
10690
- };
10691
- /** @description Internal server error */
10692
- 500: {
10693
- headers: {
10694
- [name: string]: unknown;
10695
- };
10696
- content: {
10697
- "application/json": {
10698
- code: string;
10699
- message: string;
10700
- issues?: {
10701
- message: string;
10702
- }[];
10703
- context?: unknown;
10704
- };
10705
- };
10706
- };
10707
- };
10708
- };
10709
- syncConnectionPost: {
10710
10566
  parameters: {
10711
10567
  query?: never;
10712
10568
  header?: never;
@@ -10731,45 +10587,7 @@ export interface operations {
10731
10587
  [name: string]: unknown;
10732
10588
  };
10733
10589
  content: {
10734
- "application/json": (({
10735
- /** Format: uuid */
10736
- id: string;
10737
- /** @constant */
10738
- status: "completed";
10739
- message: string;
10740
- /** @constant */
10741
- type: "reservation";
10742
- /** Format: uuid */
10743
- reservationId: string;
10744
- } | {
10745
- /** Format: uuid */
10746
- id: string;
10747
- /** @constant */
10748
- status: "completed";
10749
- message: string;
10750
- /** @constant */
10751
- type: "listing";
10752
- /** Format: uuid */
10753
- listingId: string;
10754
- } | {
10755
- /** Format: uuid */
10756
- id: string;
10757
- /** @constant */
10758
- status: "completed";
10759
- message: string;
10760
- /** @constant */
10761
- type: "payout";
10762
- /** Format: uuid */
10763
- paymentId: string;
10764
- }) | {
10765
- /** Format: uuid */
10766
- id: string;
10767
- /** @constant */
10768
- status: "failed";
10769
- message: string;
10770
- /** @enum {string} */
10771
- type: "reservation" | "listing" | "payout";
10772
- }) | (({
10590
+ "application/json": ({
10773
10591
  /** Format: uuid */
10774
10592
  id: string;
10775
10593
  /** @constant */
@@ -10807,7 +10625,7 @@ export interface operations {
10807
10625
  message: string;
10808
10626
  /** @enum {string} */
10809
10627
  type: "reservation" | "listing" | "payout";
10810
- })[];
10628
+ };
10811
10629
  };
10812
10630
  };
10813
10631
  /** @description Bad request */