@vrplatform/api 1.2.33-stage.692 → 1.2.33-stage.693

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.
@@ -15428,9 +15428,44 @@ export interface operations {
15428
15428
  };
15429
15429
  content: {
15430
15430
  "application/json": {
15431
- description: string;
15431
+ id: string;
15432
+ /** @enum {string} */
15433
+ status: "active" | "inactive";
15432
15434
  uniqueRef: string;
15435
+ description: string;
15433
15436
  date: string;
15437
+ currency: string;
15438
+ amount: number;
15439
+ pattern: {
15440
+ /** @enum {string} */
15441
+ frequency: "daily" | "weekly" | "monthly" | "yearly";
15442
+ interval?: number | null;
15443
+ weekDays?: number[] | null;
15444
+ monthDays?: number[] | null;
15445
+ months?: number[] | null;
15446
+ count?: number | null;
15447
+ endDate?: string | null;
15448
+ };
15449
+ /** @enum {string} */
15450
+ paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
15451
+ patternFormatted?: string | null;
15452
+ nextTransactionInstanceAt?: string | null;
15453
+ instancesCount: number;
15454
+ account?: {
15455
+ id: string;
15456
+ name: string;
15457
+ bankAccount?: {
15458
+ /** Format: uuid */
15459
+ id?: string | null;
15460
+ name: string;
15461
+ } | null;
15462
+ } | null;
15463
+ contact?: {
15464
+ /** Format: uuid */
15465
+ id: string;
15466
+ name?: string | null;
15467
+ uniqueRef?: string | null;
15468
+ } | null;
15434
15469
  lines: {
15435
15470
  uniqueRef?: string | null;
15436
15471
  description: string;
@@ -15475,8 +15510,6 @@ export interface operations {
15475
15510
  account?: {
15476
15511
  id: string;
15477
15512
  name: string;
15478
- /** @enum {string|null} */
15479
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
15480
15513
  } | null;
15481
15514
  /** @enum {string} */
15482
15515
  party: "owners" | "manager";
@@ -15503,11 +15536,6 @@ export interface operations {
15503
15536
  } | null;
15504
15537
  } | null;
15505
15538
  }[];
15506
- /** Format: uuid */
15507
- recurringTemplateId?: string | null;
15508
- /** @enum {string} */
15509
- status: "active" | "inactive";
15510
- id: string;
15511
15539
  issues: ({
15512
15540
  /** @enum {string} */
15513
15541
  code: "missingInstances";
@@ -15525,41 +15553,6 @@ export interface operations {
15525
15553
  ids: string[];
15526
15554
  };
15527
15555
  })[];
15528
- currency: string;
15529
- /** @description Value in cents (100 = 1€) */
15530
- amount: number;
15531
- account?: {
15532
- id: string;
15533
- name: string;
15534
- /** @enum {string|null} */
15535
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
15536
- bankAccount?: {
15537
- /** Format: uuid */
15538
- id?: string | null;
15539
- name: string;
15540
- } | null;
15541
- } | null;
15542
- contact?: {
15543
- /** Format: uuid */
15544
- id: string;
15545
- name?: string | null;
15546
- uniqueRef?: string | null;
15547
- } | null;
15548
- pattern: {
15549
- /** @enum {string} */
15550
- frequency: "daily" | "weekly" | "monthly" | "yearly";
15551
- interval?: number | null;
15552
- weekDays?: number[] | null;
15553
- monthDays?: number[] | null;
15554
- months?: number[] | null;
15555
- count?: number | null;
15556
- endDate?: string | null;
15557
- };
15558
- /** @enum {string} */
15559
- paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
15560
- nextTransactionInstanceAt?: string | null;
15561
- patternFormatted?: string | null;
15562
- instancesCount: number;
15563
15556
  };
15564
15557
  };
15565
15558
  };
@@ -15624,47 +15617,12 @@ export interface operations {
15624
15617
  requestBody: {
15625
15618
  content: {
15626
15619
  "application/json": {
15627
- description?: string;
15628
- accountId?: string | null;
15629
- contactId?: string | null;
15630
15620
  uniqueRef?: string;
15621
+ description?: string;
15631
15622
  date?: string;
15632
15623
  currency?: string | null;
15633
- lines?: {
15634
- recurringTemplateId?: string | null;
15635
- uniqueRef?: string | null;
15636
- description: string;
15637
- accountId?: string | null;
15638
- /** @enum {string|null} */
15639
- assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
15640
- /** @description Value in cents (100 = 1€) */
15641
- amount: number;
15642
- markup?: {
15643
- /** @description Value in cents (100 = 1€) */
15644
- amount?: number | null;
15645
- /** Format: uuid */
15646
- taxRateId?: string | null;
15647
- /**
15648
- * @default excluded
15649
- * @enum {string|null}
15650
- */
15651
- taxBehavior?: "excluded" | "included" | null;
15652
- } | null;
15653
- listingId?: string | null;
15654
- reservationId?: string | null;
15655
- /** Format: uuid */
15656
- ownerStatementId?: string | null;
15657
- /** @enum {string|null} */
15658
- party?: "owners" | "manager" | null;
15659
- contactId?: string | null;
15660
- matchers?: {
15661
- confirmationCode?: string | null;
15662
- customerId?: string | null;
15663
- lineType?: string | null;
15664
- } | null;
15665
- }[];
15666
- /** @enum {string|null} */
15667
- status?: "active" | "inactive" | null;
15624
+ accountId?: string | null;
15625
+ contactId?: string | null;
15668
15626
  pattern?: {
15669
15627
  /** @enum {string} */
15670
15628
  frequency: "daily" | "weekly" | "monthly" | "yearly";
@@ -15677,6 +15635,17 @@ export interface operations {
15677
15635
  };
15678
15636
  /** @enum {string} */
15679
15637
  paymentStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
15638
+ lines?: {
15639
+ description: string;
15640
+ accountId?: string | null;
15641
+ amount: number;
15642
+ listingId?: string | null;
15643
+ party?: string | null;
15644
+ contactId?: string | null;
15645
+ }[];
15646
+ skipInitialInstance?: boolean;
15647
+ /** @enum {string|null} */
15648
+ status?: "active" | "inactive" | null;
15680
15649
  };
15681
15650
  };
15682
15651
  };
@@ -15688,9 +15657,44 @@ export interface operations {
15688
15657
  };
15689
15658
  content: {
15690
15659
  "application/json": {
15691
- description: string;
15660
+ id: string;
15661
+ /** @enum {string} */
15662
+ status: "active" | "inactive";
15692
15663
  uniqueRef: string;
15664
+ description: string;
15693
15665
  date: string;
15666
+ currency: string;
15667
+ amount: number;
15668
+ pattern: {
15669
+ /** @enum {string} */
15670
+ frequency: "daily" | "weekly" | "monthly" | "yearly";
15671
+ interval?: number | null;
15672
+ weekDays?: number[] | null;
15673
+ monthDays?: number[] | null;
15674
+ months?: number[] | null;
15675
+ count?: number | null;
15676
+ endDate?: string | null;
15677
+ };
15678
+ /** @enum {string} */
15679
+ paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
15680
+ patternFormatted?: string | null;
15681
+ nextTransactionInstanceAt?: string | null;
15682
+ instancesCount: number;
15683
+ account?: {
15684
+ id: string;
15685
+ name: string;
15686
+ bankAccount?: {
15687
+ /** Format: uuid */
15688
+ id?: string | null;
15689
+ name: string;
15690
+ } | null;
15691
+ } | null;
15692
+ contact?: {
15693
+ /** Format: uuid */
15694
+ id: string;
15695
+ name?: string | null;
15696
+ uniqueRef?: string | null;
15697
+ } | null;
15694
15698
  lines: {
15695
15699
  uniqueRef?: string | null;
15696
15700
  description: string;
@@ -15735,8 +15739,6 @@ export interface operations {
15735
15739
  account?: {
15736
15740
  id: string;
15737
15741
  name: string;
15738
- /** @enum {string|null} */
15739
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
15740
15742
  } | null;
15741
15743
  /** @enum {string} */
15742
15744
  party: "owners" | "manager";
@@ -15763,11 +15765,6 @@ export interface operations {
15763
15765
  } | null;
15764
15766
  } | null;
15765
15767
  }[];
15766
- /** Format: uuid */
15767
- recurringTemplateId?: string | null;
15768
- /** @enum {string} */
15769
- status: "active" | "inactive";
15770
- id: string;
15771
15768
  issues: ({
15772
15769
  /** @enum {string} */
15773
15770
  code: "missingInstances";
@@ -15785,41 +15782,6 @@ export interface operations {
15785
15782
  ids: string[];
15786
15783
  };
15787
15784
  })[];
15788
- currency: string;
15789
- /** @description Value in cents (100 = 1€) */
15790
- amount: number;
15791
- account?: {
15792
- id: string;
15793
- name: string;
15794
- /** @enum {string|null} */
15795
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
15796
- bankAccount?: {
15797
- /** Format: uuid */
15798
- id?: string | null;
15799
- name: string;
15800
- } | null;
15801
- } | null;
15802
- contact?: {
15803
- /** Format: uuid */
15804
- id: string;
15805
- name?: string | null;
15806
- uniqueRef?: string | null;
15807
- } | null;
15808
- pattern: {
15809
- /** @enum {string} */
15810
- frequency: "daily" | "weekly" | "monthly" | "yearly";
15811
- interval?: number | null;
15812
- weekDays?: number[] | null;
15813
- monthDays?: number[] | null;
15814
- months?: number[] | null;
15815
- count?: number | null;
15816
- endDate?: string | null;
15817
- };
15818
- /** @enum {string} */
15819
- paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
15820
- nextTransactionInstanceAt?: string | null;
15821
- patternFormatted?: string | null;
15822
- instancesCount: number;
15823
15785
  };
15824
15786
  };
15825
15787
  };
@@ -15968,9 +15930,44 @@ export interface operations {
15968
15930
  content: {
15969
15931
  "application/json": {
15970
15932
  data: {
15971
- description: string;
15933
+ id: string;
15934
+ /** @enum {string} */
15935
+ status: "active" | "inactive";
15972
15936
  uniqueRef: string;
15937
+ description: string;
15973
15938
  date: string;
15939
+ currency: string;
15940
+ amount: number;
15941
+ pattern: {
15942
+ /** @enum {string} */
15943
+ frequency: "daily" | "weekly" | "monthly" | "yearly";
15944
+ interval?: number | null;
15945
+ weekDays?: number[] | null;
15946
+ monthDays?: number[] | null;
15947
+ months?: number[] | null;
15948
+ count?: number | null;
15949
+ endDate?: string | null;
15950
+ };
15951
+ /** @enum {string} */
15952
+ paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
15953
+ patternFormatted?: string | null;
15954
+ nextTransactionInstanceAt?: string | null;
15955
+ instancesCount: number;
15956
+ account?: {
15957
+ id: string;
15958
+ name: string;
15959
+ bankAccount?: {
15960
+ /** Format: uuid */
15961
+ id?: string | null;
15962
+ name: string;
15963
+ } | null;
15964
+ } | null;
15965
+ contact?: {
15966
+ /** Format: uuid */
15967
+ id: string;
15968
+ name?: string | null;
15969
+ uniqueRef?: string | null;
15970
+ } | null;
15974
15971
  lines: {
15975
15972
  uniqueRef?: string | null;
15976
15973
  description: string;
@@ -16015,8 +16012,6 @@ export interface operations {
16015
16012
  account?: {
16016
16013
  id: string;
16017
16014
  name: string;
16018
- /** @enum {string|null} */
16019
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
16020
16015
  } | null;
16021
16016
  /** @enum {string} */
16022
16017
  party: "owners" | "manager";
@@ -16043,11 +16038,6 @@ export interface operations {
16043
16038
  } | null;
16044
16039
  } | null;
16045
16040
  }[];
16046
- /** Format: uuid */
16047
- recurringTemplateId?: string | null;
16048
- /** @enum {string} */
16049
- status: "active" | "inactive";
16050
- id: string;
16051
16041
  issues: ({
16052
16042
  /** @enum {string} */
16053
16043
  code: "missingInstances";
@@ -16065,41 +16055,6 @@ export interface operations {
16065
16055
  ids: string[];
16066
16056
  };
16067
16057
  })[];
16068
- currency: string;
16069
- /** @description Value in cents (100 = 1€) */
16070
- amount: number;
16071
- account?: {
16072
- id: string;
16073
- name: string;
16074
- /** @enum {string|null} */
16075
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
16076
- bankAccount?: {
16077
- /** Format: uuid */
16078
- id?: string | null;
16079
- name: string;
16080
- } | null;
16081
- } | null;
16082
- contact?: {
16083
- /** Format: uuid */
16084
- id: string;
16085
- name?: string | null;
16086
- uniqueRef?: string | null;
16087
- } | null;
16088
- pattern: {
16089
- /** @enum {string} */
16090
- frequency: "daily" | "weekly" | "monthly" | "yearly";
16091
- interval?: number | null;
16092
- weekDays?: number[] | null;
16093
- monthDays?: number[] | null;
16094
- months?: number[] | null;
16095
- count?: number | null;
16096
- endDate?: string | null;
16097
- };
16098
- /** @enum {string} */
16099
- paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
16100
- nextTransactionInstanceAt?: string | null;
16101
- patternFormatted?: string | null;
16102
- instancesCount: number;
16103
16058
  }[];
16104
16059
  pagination: {
16105
16060
  /** @default 100 */
@@ -16172,47 +16127,12 @@ export interface operations {
16172
16127
  requestBody: {
16173
16128
  content: {
16174
16129
  "application/json": {
16175
- description: string;
16176
- accountId?: string | null;
16177
- contactId?: string | null;
16178
16130
  uniqueRef: string;
16131
+ description: string;
16179
16132
  date: string;
16180
16133
  currency?: string | null;
16181
- lines: {
16182
- recurringTemplateId?: string | null;
16183
- uniqueRef?: string | null;
16184
- description: string;
16185
- accountId?: string | null;
16186
- /** @enum {string|null} */
16187
- assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
16188
- /** @description Value in cents (100 = 1€) */
16189
- amount: number;
16190
- markup?: {
16191
- /** @description Value in cents (100 = 1€) */
16192
- amount?: number | null;
16193
- /** Format: uuid */
16194
- taxRateId?: string | null;
16195
- /**
16196
- * @default excluded
16197
- * @enum {string|null}
16198
- */
16199
- taxBehavior?: "excluded" | "included" | null;
16200
- } | null;
16201
- listingId?: string | null;
16202
- reservationId?: string | null;
16203
- /** Format: uuid */
16204
- ownerStatementId?: string | null;
16205
- /** @enum {string|null} */
16206
- party?: "owners" | "manager" | null;
16207
- contactId?: string | null;
16208
- matchers?: {
16209
- confirmationCode?: string | null;
16210
- customerId?: string | null;
16211
- lineType?: string | null;
16212
- } | null;
16213
- }[];
16214
- /** @enum {string|null} */
16215
- status?: "active" | "inactive" | null;
16134
+ accountId?: string | null;
16135
+ contactId?: string | null;
16216
16136
  pattern: {
16217
16137
  /** @enum {string} */
16218
16138
  frequency: "daily" | "weekly" | "monthly" | "yearly";
@@ -16225,6 +16145,15 @@ export interface operations {
16225
16145
  };
16226
16146
  /** @enum {string} */
16227
16147
  paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
16148
+ lines: {
16149
+ description: string;
16150
+ accountId?: string | null;
16151
+ amount: number;
16152
+ listingId?: string | null;
16153
+ party?: string | null;
16154
+ contactId?: string | null;
16155
+ }[];
16156
+ skipInitialInstance?: boolean;
16228
16157
  };
16229
16158
  };
16230
16159
  };
@@ -16236,9 +16165,44 @@ export interface operations {
16236
16165
  };
16237
16166
  content: {
16238
16167
  "application/json": {
16239
- description: string;
16168
+ id: string;
16169
+ /** @enum {string} */
16170
+ status: "active" | "inactive";
16240
16171
  uniqueRef: string;
16172
+ description: string;
16241
16173
  date: string;
16174
+ currency: string;
16175
+ amount: number;
16176
+ pattern: {
16177
+ /** @enum {string} */
16178
+ frequency: "daily" | "weekly" | "monthly" | "yearly";
16179
+ interval?: number | null;
16180
+ weekDays?: number[] | null;
16181
+ monthDays?: number[] | null;
16182
+ months?: number[] | null;
16183
+ count?: number | null;
16184
+ endDate?: string | null;
16185
+ };
16186
+ /** @enum {string} */
16187
+ paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
16188
+ patternFormatted?: string | null;
16189
+ nextTransactionInstanceAt?: string | null;
16190
+ instancesCount: number;
16191
+ account?: {
16192
+ id: string;
16193
+ name: string;
16194
+ bankAccount?: {
16195
+ /** Format: uuid */
16196
+ id?: string | null;
16197
+ name: string;
16198
+ } | null;
16199
+ } | null;
16200
+ contact?: {
16201
+ /** Format: uuid */
16202
+ id: string;
16203
+ name?: string | null;
16204
+ uniqueRef?: string | null;
16205
+ } | null;
16242
16206
  lines: {
16243
16207
  uniqueRef?: string | null;
16244
16208
  description: string;
@@ -16283,8 +16247,6 @@ export interface operations {
16283
16247
  account?: {
16284
16248
  id: string;
16285
16249
  name: string;
16286
- /** @enum {string|null} */
16287
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
16288
16250
  } | null;
16289
16251
  /** @enum {string} */
16290
16252
  party: "owners" | "manager";
@@ -16311,11 +16273,6 @@ export interface operations {
16311
16273
  } | null;
16312
16274
  } | null;
16313
16275
  }[];
16314
- /** Format: uuid */
16315
- recurringTemplateId?: string | null;
16316
- /** @enum {string} */
16317
- status: "active" | "inactive";
16318
- id: string;
16319
16276
  issues: ({
16320
16277
  /** @enum {string} */
16321
16278
  code: "missingInstances";
@@ -16333,41 +16290,6 @@ export interface operations {
16333
16290
  ids: string[];
16334
16291
  };
16335
16292
  })[];
16336
- currency: string;
16337
- /** @description Value in cents (100 = 1€) */
16338
- amount: number;
16339
- account?: {
16340
- id: string;
16341
- name: string;
16342
- /** @enum {string|null} */
16343
- type?: "ledger" | "bank" | "recurringFee" | "nonPosting" | null;
16344
- bankAccount?: {
16345
- /** Format: uuid */
16346
- id?: string | null;
16347
- name: string;
16348
- } | null;
16349
- } | null;
16350
- contact?: {
16351
- /** Format: uuid */
16352
- id: string;
16353
- name?: string | null;
16354
- uniqueRef?: string | null;
16355
- } | null;
16356
- pattern: {
16357
- /** @enum {string} */
16358
- frequency: "daily" | "weekly" | "monthly" | "yearly";
16359
- interval?: number | null;
16360
- weekDays?: number[] | null;
16361
- monthDays?: number[] | null;
16362
- months?: number[] | null;
16363
- count?: number | null;
16364
- endDate?: string | null;
16365
- };
16366
- /** @enum {string} */
16367
- paymentStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
16368
- nextTransactionInstanceAt?: string | null;
16369
- patternFormatted?: string | null;
16370
- instancesCount: number;
16371
16293
  };
16372
16294
  };
16373
16295
  };