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

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