@vrplatform/api 1.3.1-1903 → 1.3.1-1916

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.
@@ -10896,6 +10896,8 @@ export interface operations {
10896
10896
  id: string;
10897
10897
  startAt: string;
10898
10898
  endAt?: string | null;
10899
+ /** @description Value in cents (100 = 1€) */
10900
+ reserve: number;
10899
10901
  members: {
10900
10902
  contactId?: string | null;
10901
10903
  split?: number | null;
@@ -11113,6 +11115,7 @@ export interface operations {
11113
11115
  initialOwnership?: {
11114
11116
  startAt?: string | null;
11115
11117
  endAt?: string | null;
11118
+ reserve?: number | null;
11116
11119
  members?: {
11117
11120
  contactId?: string | null;
11118
11121
  split?: number | null;
@@ -11157,6 +11160,8 @@ export interface operations {
11157
11160
  id: string;
11158
11161
  startAt: string;
11159
11162
  endAt?: string | null;
11163
+ /** @description Value in cents (100 = 1€) */
11164
+ reserve: number;
11160
11165
  members: {
11161
11166
  contactId?: string | null;
11162
11167
  split?: number | null;
@@ -11605,6 +11610,8 @@ export interface operations {
11605
11610
  endAt?: string | null;
11606
11611
  setListingInactive?: boolean | null;
11607
11612
  businessModel: ("managed" | "co_host" | "co_host_airbnb") | null;
11613
+ /** @description Value in cents (100 = 1€) */
11614
+ reserve: number;
11608
11615
  members: {
11609
11616
  contactId?: string | null;
11610
11617
  split?: number | null;
@@ -11720,6 +11727,7 @@ export interface operations {
11720
11727
  listingId: string;
11721
11728
  startAt?: string;
11722
11729
  endAt?: string | null;
11730
+ reserve?: number | null;
11723
11731
  members: {
11724
11732
  contactId?: string | null;
11725
11733
  split?: number | null;
@@ -11744,6 +11752,8 @@ export interface operations {
11744
11752
  endAt?: string | null;
11745
11753
  setListingInactive?: boolean | null;
11746
11754
  businessModel: ("managed" | "co_host" | "co_host_airbnb") | null;
11755
+ /** @description Value in cents (100 = 1€) */
11756
+ reserve: number;
11747
11757
  members: {
11748
11758
  contactId?: string | null;
11749
11759
  split?: number | null;
@@ -11859,6 +11869,8 @@ export interface operations {
11859
11869
  endAt?: string | null;
11860
11870
  setListingInactive?: boolean | null;
11861
11871
  businessModel: ("managed" | "co_host" | "co_host_airbnb") | null;
11872
+ /** @description Value in cents (100 = 1€) */
11873
+ reserve: number;
11862
11874
  members: {
11863
11875
  contactId?: string | null;
11864
11876
  split?: number | null;
@@ -11966,6 +11978,7 @@ export interface operations {
11966
11978
  listingId?: string;
11967
11979
  startAt?: string;
11968
11980
  endAt?: string | null;
11981
+ reserve?: number | null;
11969
11982
  members?: {
11970
11983
  contactId?: string | null;
11971
11984
  split?: number | null;
@@ -11990,6 +12003,8 @@ export interface operations {
11990
12003
  endAt?: string | null;
11991
12004
  setListingInactive?: boolean | null;
11992
12005
  businessModel: ("managed" | "co_host" | "co_host_airbnb") | null;
12006
+ /** @description Value in cents (100 = 1€) */
12007
+ reserve: number;
11993
12008
  members: {
11994
12009
  contactId?: string | null;
11995
12010
  split?: number | null;
@@ -12236,6 +12251,8 @@ export interface operations {
12236
12251
  id: string;
12237
12252
  startAt: string;
12238
12253
  endAt?: string | null;
12254
+ /** @description Value in cents (100 = 1€) */
12255
+ reserve: number;
12239
12256
  members: {
12240
12257
  contactId?: string | null;
12241
12258
  split?: number | null;
@@ -12445,6 +12462,7 @@ export interface operations {
12445
12462
  initialOwnership?: {
12446
12463
  startAt?: string | null;
12447
12464
  endAt?: string | null;
12465
+ reserve?: number | null;
12448
12466
  members?: {
12449
12467
  contactId?: string | null;
12450
12468
  split?: number | null;
@@ -12489,6 +12507,8 @@ export interface operations {
12489
12507
  id: string;
12490
12508
  startAt: string;
12491
12509
  endAt?: string | null;
12510
+ /** @description Value in cents (100 = 1€) */
12511
+ reserve: number;
12492
12512
  members: {
12493
12513
  contactId?: string | null;
12494
12514
  split?: number | null;
@@ -17859,6 +17879,14 @@ export interface operations {
17859
17879
  context: {
17860
17880
  accountId?: string | null;
17861
17881
  };
17882
+ } | {
17883
+ /** @constant */
17884
+ code: "transactionInactive";
17885
+ /** @constant */
17886
+ severity: "warning";
17887
+ context: {
17888
+ transactionId?: string | null;
17889
+ };
17862
17890
  } | {
17863
17891
  /** @constant */
17864
17892
  code: "unknownInactiveReason";
@@ -18733,6 +18761,14 @@ export interface operations {
18733
18761
  context: {
18734
18762
  accountId?: string | null;
18735
18763
  };
18764
+ } | {
18765
+ /** @constant */
18766
+ code: "transactionInactive";
18767
+ /** @constant */
18768
+ severity: "warning";
18769
+ context: {
18770
+ transactionId?: string | null;
18771
+ };
18736
18772
  } | {
18737
18773
  /** @constant */
18738
18774
  code: "unknownInactiveReason";
@@ -25425,6 +25461,8 @@ export interface operations {
25425
25461
  id: string;
25426
25462
  startAt: string;
25427
25463
  endAt: string | null;
25464
+ /** @description Value in cents (100 = 1€) */
25465
+ reserve: number;
25428
25466
  members: {
25429
25467
  id: string;
25430
25468
  ownerId: string | null;
@@ -25768,6 +25806,8 @@ export interface operations {
25768
25806
  id: string;
25769
25807
  startAt: string;
25770
25808
  endAt: string | null;
25809
+ /** @description Value in cents (100 = 1€) */
25810
+ reserve: number;
25771
25811
  members: {
25772
25812
  id: string;
25773
25813
  ownerId: string | null;
@@ -26328,6 +26368,8 @@ export interface operations {
26328
26368
  id: string;
26329
26369
  startAt: string;
26330
26370
  endAt: string | null;
26371
+ /** @description Value in cents (100 = 1€) */
26372
+ reserve: number;
26331
26373
  members: {
26332
26374
  id: string;
26333
26375
  ownerId: string | null;
@@ -28821,6 +28863,8 @@ export interface operations {
28821
28863
  id: string;
28822
28864
  startAt: string;
28823
28865
  endAt: string | null;
28866
+ /** @description Value in cents (100 = 1€) */
28867
+ reserve: number;
28824
28868
  members: {
28825
28869
  id: string;
28826
28870
  ownerId: string | null;
@@ -29386,6 +29430,8 @@ export interface operations {
29386
29430
  id: string;
29387
29431
  startAt: string;
29388
29432
  endAt: string | null;
29433
+ /** @description Value in cents (100 = 1€) */
29434
+ reserve: number;
29389
29435
  members: {
29390
29436
  id: string;
29391
29437
  ownerId: string | null;