@vrplatform/api 1.2.37 → 1.2.39-1038

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.
@@ -4149,55 +4149,24 @@ export interface operations {
4149
4149
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4150
4150
  } | null;
4151
4151
  recurringFee?: {
4152
+ /** Format: uuid */
4152
4153
  id: string;
4153
4154
  uniqueRef: string;
4154
4155
  name: string;
4155
- /** @enum {string} */
4156
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4156
+ type: string;
4157
4157
  } | null;
4158
4158
  transaction?: {
4159
+ /** Format: uuid */
4159
4160
  id: string;
4160
- /** @enum {string} */
4161
- status: "active" | "inactive";
4162
- /** @description Value in cents (100 = 1€) */
4163
4161
  amount: number;
4164
4162
  account?: {
4163
+ /** Format: uuid */
4165
4164
  id: string;
4166
4165
  name: string;
4167
- uniqueRef?: string | null;
4168
- /** @enum {string} */
4169
- status: "active" | "inactive";
4170
4166
  } | null;
4171
4167
  date: string;
4172
- description: string;
4168
+ description?: string | null;
4173
4169
  currency: string;
4174
- /** @enum {string} */
4175
- type: "deposit" | "expense" | "transfer";
4176
- contact?: {
4177
- /** Format: uuid */
4178
- id: string;
4179
- name?: string | null;
4180
- uniqueRef?: string | null;
4181
- } | null;
4182
- connection?: {
4183
- /** Format: uuid */
4184
- id: string;
4185
- name: string;
4186
- /** @enum {string} */
4187
- status: "active" | "inactive";
4188
- uniqueRef?: string | null;
4189
- app: {
4190
- id: string;
4191
- name: string;
4192
- icon?: string | null;
4193
- importers?: string[] | null;
4194
- extractors?: string[] | null;
4195
- };
4196
- } | null;
4197
- uniqueRef?: string | null;
4198
- recurringTemplate?: {
4199
- id: string;
4200
- } | null;
4201
4170
  } | null;
4202
4171
  line?: {
4203
4172
  id: string;
@@ -4210,17 +4179,6 @@ export interface operations {
4210
4179
  /** Format: uuid */
4211
4180
  id: string;
4212
4181
  name: string;
4213
- address?: {
4214
- full?: string | null;
4215
- line1?: string | null;
4216
- line2?: string | null;
4217
- city?: string | null;
4218
- /** @deprecated */
4219
- state?: string | null;
4220
- postalCode?: string | null;
4221
- stateCode?: string | null;
4222
- countryCode?: string | null;
4223
- } | null;
4224
4182
  uniqueRef?: string | null;
4225
4183
  } | null;
4226
4184
  listingConnection?: {
@@ -4283,11 +4241,11 @@ export interface operations {
4283
4241
  status: "active" | "inactive";
4284
4242
  } | null;
4285
4243
  recurringFee?: {
4244
+ /** Format: uuid */
4286
4245
  id: string;
4287
4246
  uniqueRef: string;
4288
4247
  name: string;
4289
- /** @enum {string} */
4290
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4248
+ type: string;
4291
4249
  } | null;
4292
4250
  }[];
4293
4251
  }[];
@@ -4349,6 +4307,7 @@ export interface operations {
4349
4307
  requestBody: {
4350
4308
  content: {
4351
4309
  "application/json": {
4310
+ dangerouslyAllowLocked?: boolean;
4352
4311
  ids?: string[];
4353
4312
  listingIds?: string[];
4354
4313
  connectionIds?: string[];
@@ -4527,55 +4486,24 @@ export interface operations {
4527
4486
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4528
4487
  } | null;
4529
4488
  recurringFee?: {
4489
+ /** Format: uuid */
4530
4490
  id: string;
4531
4491
  uniqueRef: string;
4532
4492
  name: string;
4533
- /** @enum {string} */
4534
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4493
+ type: string;
4535
4494
  } | null;
4536
4495
  transaction?: {
4496
+ /** Format: uuid */
4537
4497
  id: string;
4538
- /** @enum {string} */
4539
- status: "active" | "inactive";
4540
- /** @description Value in cents (100 = 1€) */
4541
4498
  amount: number;
4542
4499
  account?: {
4500
+ /** Format: uuid */
4543
4501
  id: string;
4544
4502
  name: string;
4545
- uniqueRef?: string | null;
4546
- /** @enum {string} */
4547
- status: "active" | "inactive";
4548
4503
  } | null;
4549
4504
  date: string;
4550
- description: string;
4505
+ description?: string | null;
4551
4506
  currency: string;
4552
- /** @enum {string} */
4553
- type: "deposit" | "expense" | "transfer";
4554
- contact?: {
4555
- /** Format: uuid */
4556
- id: string;
4557
- name?: string | null;
4558
- uniqueRef?: string | null;
4559
- } | null;
4560
- connection?: {
4561
- /** Format: uuid */
4562
- id: string;
4563
- name: string;
4564
- /** @enum {string} */
4565
- status: "active" | "inactive";
4566
- uniqueRef?: string | null;
4567
- app: {
4568
- id: string;
4569
- name: string;
4570
- icon?: string | null;
4571
- importers?: string[] | null;
4572
- extractors?: string[] | null;
4573
- };
4574
- } | null;
4575
- uniqueRef?: string | null;
4576
- recurringTemplate?: {
4577
- id: string;
4578
- } | null;
4579
4507
  } | null;
4580
4508
  line?: {
4581
4509
  id: string;
@@ -4588,17 +4516,6 @@ export interface operations {
4588
4516
  /** Format: uuid */
4589
4517
  id: string;
4590
4518
  name: string;
4591
- address?: {
4592
- full?: string | null;
4593
- line1?: string | null;
4594
- line2?: string | null;
4595
- city?: string | null;
4596
- /** @deprecated */
4597
- state?: string | null;
4598
- postalCode?: string | null;
4599
- stateCode?: string | null;
4600
- countryCode?: string | null;
4601
- } | null;
4602
4519
  uniqueRef?: string | null;
4603
4520
  } | null;
4604
4521
  listingConnection?: {
@@ -4661,11 +4578,11 @@ export interface operations {
4661
4578
  status: "active" | "inactive";
4662
4579
  } | null;
4663
4580
  recurringFee?: {
4581
+ /** Format: uuid */
4664
4582
  id: string;
4665
4583
  uniqueRef: string;
4666
4584
  name: string;
4667
- /** @enum {string} */
4668
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4585
+ type: string;
4669
4586
  } | null;
4670
4587
  }[];
4671
4588
  };
@@ -4986,55 +4903,24 @@ export interface operations {
4986
4903
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4987
4904
  } | null;
4988
4905
  recurringFee?: {
4906
+ /** Format: uuid */
4989
4907
  id: string;
4990
4908
  uniqueRef: string;
4991
4909
  name: string;
4992
- /** @enum {string} */
4993
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4910
+ type: string;
4994
4911
  } | null;
4995
4912
  transaction?: {
4913
+ /** Format: uuid */
4996
4914
  id: string;
4997
- /** @enum {string} */
4998
- status: "active" | "inactive";
4999
- /** @description Value in cents (100 = 1€) */
5000
4915
  amount: number;
5001
4916
  account?: {
4917
+ /** Format: uuid */
5002
4918
  id: string;
5003
4919
  name: string;
5004
- uniqueRef?: string | null;
5005
- /** @enum {string} */
5006
- status: "active" | "inactive";
5007
4920
  } | null;
5008
4921
  date: string;
5009
- description: string;
4922
+ description?: string | null;
5010
4923
  currency: string;
5011
- /** @enum {string} */
5012
- type: "deposit" | "expense" | "transfer";
5013
- contact?: {
5014
- /** Format: uuid */
5015
- id: string;
5016
- name?: string | null;
5017
- uniqueRef?: string | null;
5018
- } | null;
5019
- connection?: {
5020
- /** Format: uuid */
5021
- id: string;
5022
- name: string;
5023
- /** @enum {string} */
5024
- status: "active" | "inactive";
5025
- uniqueRef?: string | null;
5026
- app: {
5027
- id: string;
5028
- name: string;
5029
- icon?: string | null;
5030
- importers?: string[] | null;
5031
- extractors?: string[] | null;
5032
- };
5033
- } | null;
5034
- uniqueRef?: string | null;
5035
- recurringTemplate?: {
5036
- id: string;
5037
- } | null;
5038
4924
  } | null;
5039
4925
  line?: {
5040
4926
  id: string;
@@ -5047,17 +4933,6 @@ export interface operations {
5047
4933
  /** Format: uuid */
5048
4934
  id: string;
5049
4935
  name: string;
5050
- address?: {
5051
- full?: string | null;
5052
- line1?: string | null;
5053
- line2?: string | null;
5054
- city?: string | null;
5055
- /** @deprecated */
5056
- state?: string | null;
5057
- postalCode?: string | null;
5058
- stateCode?: string | null;
5059
- countryCode?: string | null;
5060
- } | null;
5061
4936
  uniqueRef?: string | null;
5062
4937
  } | null;
5063
4938
  listingConnection?: {
@@ -5120,11 +4995,11 @@ export interface operations {
5120
4995
  status: "active" | "inactive";
5121
4996
  } | null;
5122
4997
  recurringFee?: {
4998
+ /** Format: uuid */
5123
4999
  id: string;
5124
5000
  uniqueRef: string;
5125
5001
  name: string;
5126
- /** @enum {string} */
5127
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5002
+ type: string;
5128
5003
  } | null;
5129
5004
  }[];
5130
5005
  };
@@ -5359,17 +5234,6 @@ export interface operations {
5359
5234
  /** Format: uuid */
5360
5235
  id: string;
5361
5236
  name: string;
5362
- address?: {
5363
- full?: string | null;
5364
- line1?: string | null;
5365
- line2?: string | null;
5366
- city?: string | null;
5367
- /** @deprecated */
5368
- state?: string | null;
5369
- postalCode?: string | null;
5370
- stateCode?: string | null;
5371
- countryCode?: string | null;
5372
- } | null;
5373
5237
  uniqueRef?: string | null;
5374
5238
  } | null;
5375
5239
  listingConnection?: {
@@ -5659,55 +5523,24 @@ export interface operations {
5659
5523
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
5660
5524
  } | null;
5661
5525
  recurringFee?: {
5526
+ /** Format: uuid */
5662
5527
  id: string;
5663
5528
  uniqueRef: string;
5664
5529
  name: string;
5665
- /** @enum {string} */
5666
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5530
+ type: string;
5667
5531
  } | null;
5668
5532
  transaction?: {
5533
+ /** Format: uuid */
5669
5534
  id: string;
5670
- /** @enum {string} */
5671
- status: "active" | "inactive";
5672
- /** @description Value in cents (100 = 1€) */
5673
5535
  amount: number;
5674
5536
  account?: {
5537
+ /** Format: uuid */
5675
5538
  id: string;
5676
5539
  name: string;
5677
- uniqueRef?: string | null;
5678
- /** @enum {string} */
5679
- status: "active" | "inactive";
5680
5540
  } | null;
5681
5541
  date: string;
5682
- description: string;
5542
+ description?: string | null;
5683
5543
  currency: string;
5684
- /** @enum {string} */
5685
- type: "deposit" | "expense" | "transfer";
5686
- contact?: {
5687
- /** Format: uuid */
5688
- id: string;
5689
- name?: string | null;
5690
- uniqueRef?: string | null;
5691
- } | null;
5692
- connection?: {
5693
- /** Format: uuid */
5694
- id: string;
5695
- name: string;
5696
- /** @enum {string} */
5697
- status: "active" | "inactive";
5698
- uniqueRef?: string | null;
5699
- app: {
5700
- id: string;
5701
- name: string;
5702
- icon?: string | null;
5703
- importers?: string[] | null;
5704
- extractors?: string[] | null;
5705
- };
5706
- } | null;
5707
- uniqueRef?: string | null;
5708
- recurringTemplate?: {
5709
- id: string;
5710
- } | null;
5711
5544
  } | null;
5712
5545
  line?: {
5713
5546
  id: string;
@@ -5720,17 +5553,6 @@ export interface operations {
5720
5553
  /** Format: uuid */
5721
5554
  id: string;
5722
5555
  name: string;
5723
- address?: {
5724
- full?: string | null;
5725
- line1?: string | null;
5726
- line2?: string | null;
5727
- city?: string | null;
5728
- /** @deprecated */
5729
- state?: string | null;
5730
- postalCode?: string | null;
5731
- stateCode?: string | null;
5732
- countryCode?: string | null;
5733
- } | null;
5734
5556
  uniqueRef?: string | null;
5735
5557
  } | null;
5736
5558
  listingConnection?: {
@@ -5793,11 +5615,11 @@ export interface operations {
5793
5615
  status: "active" | "inactive";
5794
5616
  } | null;
5795
5617
  recurringFee?: {
5618
+ /** Format: uuid */
5796
5619
  id: string;
5797
5620
  uniqueRef: string;
5798
5621
  name: string;
5799
- /** @enum {string} */
5800
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5622
+ type: string;
5801
5623
  } | null;
5802
5624
  }[];
5803
5625
  };
@@ -5864,7 +5686,7 @@ export interface operations {
5864
5686
  data: {
5865
5687
  /** Format: uuid */
5866
5688
  listingId: string;
5867
- /** @default 2025-11-11 */
5689
+ /** @default 2025-11-12 */
5868
5690
  startAt: string;
5869
5691
  endAt?: string | null;
5870
5692
  setListingInactive?: boolean | null;
@@ -5946,7 +5768,7 @@ export interface operations {
5946
5768
  "application/json": {
5947
5769
  /** Format: uuid */
5948
5770
  listingId: string;
5949
- /** @default 2025-11-11 */
5771
+ /** @default 2025-11-12 */
5950
5772
  startAt?: string;
5951
5773
  endAt?: string | null;
5952
5774
  members: {
@@ -5980,7 +5802,7 @@ export interface operations {
5980
5802
  "application/json": {
5981
5803
  /** Format: uuid */
5982
5804
  listingId: string;
5983
- /** @default 2025-11-11 */
5805
+ /** @default 2025-11-12 */
5984
5806
  startAt: string;
5985
5807
  endAt?: string | null;
5986
5808
  setListingInactive?: boolean | null;
@@ -6060,7 +5882,7 @@ export interface operations {
6060
5882
  "application/json": {
6061
5883
  /** Format: uuid */
6062
5884
  listingId: string;
6063
- /** @default 2025-11-11 */
5885
+ /** @default 2025-11-12 */
6064
5886
  startAt: string;
6065
5887
  endAt?: string | null;
6066
5888
  setListingInactive?: boolean | null;
@@ -6143,7 +5965,7 @@ export interface operations {
6143
5965
  "application/json": {
6144
5966
  /** Format: uuid */
6145
5967
  listingId?: string;
6146
- /** @default 2025-11-11 */
5968
+ /** @default 2025-11-12 */
6147
5969
  startAt?: string;
6148
5970
  endAt?: string | null;
6149
5971
  members?: {
@@ -6177,7 +5999,7 @@ export interface operations {
6177
5999
  "application/json": {
6178
6000
  /** Format: uuid */
6179
6001
  listingId: string;
6180
- /** @default 2025-11-11 */
6002
+ /** @default 2025-11-12 */
6181
6003
  startAt: string;
6182
6004
  endAt?: string | null;
6183
6005
  setListingInactive?: boolean | null;
@@ -6363,7 +6185,7 @@ export interface operations {
6363
6185
  /** Format: uuid */
6364
6186
  sourceId?: string | null;
6365
6187
  initialOwnership?: {
6366
- /** @default 2025-11-11 */
6188
+ /** @default 2025-11-12 */
6367
6189
  startAt?: string;
6368
6190
  endAt?: string | null;
6369
6191
  members: {
@@ -6421,7 +6243,7 @@ export interface operations {
6421
6243
  status: "active" | "inactive";
6422
6244
  defaultCurrency?: string | null;
6423
6245
  activeOwnership?: {
6424
- /** @default 2025-11-11 */
6246
+ /** @default 2025-11-12 */
6425
6247
  startAt: string;
6426
6248
  endAt?: string | null;
6427
6249
  setListingInactive?: boolean | null;
@@ -6662,7 +6484,7 @@ export interface operations {
6662
6484
  status: "active" | "inactive";
6663
6485
  defaultCurrency?: string | null;
6664
6486
  activeOwnership?: {
6665
- /** @default 2025-11-11 */
6487
+ /** @default 2025-11-12 */
6666
6488
  startAt: string;
6667
6489
  endAt?: string | null;
6668
6490
  setListingInactive?: boolean | null;
@@ -6801,7 +6623,7 @@ export interface operations {
6801
6623
  /** Format: uuid */
6802
6624
  sourceId?: string | null;
6803
6625
  initialOwnership?: {
6804
- /** @default 2025-11-11 */
6626
+ /** @default 2025-11-12 */
6805
6627
  startAt?: string;
6806
6628
  endAt?: string | null;
6807
6629
  members: {
@@ -6855,7 +6677,7 @@ export interface operations {
6855
6677
  status: "active" | "inactive";
6856
6678
  defaultCurrency?: string | null;
6857
6679
  activeOwnership?: {
6858
- /** @default 2025-11-11 */
6680
+ /** @default 2025-11-12 */
6859
6681
  startAt: string;
6860
6682
  endAt?: string | null;
6861
6683
  setListingInactive?: boolean | null;
@@ -7072,7 +6894,7 @@ export interface operations {
7072
6894
  status: "active" | "inactive";
7073
6895
  defaultCurrency?: string | null;
7074
6896
  activeOwnership?: {
7075
- /** @default 2025-11-11 */
6897
+ /** @default 2025-11-12 */
7076
6898
  startAt: string;
7077
6899
  endAt?: string | null;
7078
6900
  setListingInactive?: boolean | null;
@@ -7219,7 +7041,7 @@ export interface operations {
7219
7041
  /** Format: uuid */
7220
7042
  sourceId?: string | null;
7221
7043
  initialOwnership?: {
7222
- /** @default 2025-11-11 */
7044
+ /** @default 2025-11-12 */
7223
7045
  startAt?: string;
7224
7046
  endAt?: string | null;
7225
7047
  members: {
@@ -7273,7 +7095,7 @@ export interface operations {
7273
7095
  status: "active" | "inactive";
7274
7096
  defaultCurrency?: string | null;
7275
7097
  activeOwnership?: {
7276
- /** @default 2025-11-11 */
7098
+ /** @default 2025-11-12 */
7277
7099
  startAt: string;
7278
7100
  endAt?: string | null;
7279
7101
  setListingInactive?: boolean | null;
@@ -9013,55 +8835,24 @@ export interface operations {
9013
8835
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
9014
8836
  } | null;
9015
8837
  recurringFee?: {
8838
+ /** Format: uuid */
9016
8839
  id: string;
9017
8840
  uniqueRef: string;
9018
8841
  name: string;
9019
- /** @enum {string} */
9020
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
8842
+ type: string;
9021
8843
  } | null;
9022
8844
  transaction?: {
8845
+ /** Format: uuid */
9023
8846
  id: string;
9024
- /** @enum {string} */
9025
- status: "active" | "inactive";
9026
- /** @description Value in cents (100 = 1€) */
9027
8847
  amount: number;
9028
8848
  account?: {
8849
+ /** Format: uuid */
9029
8850
  id: string;
9030
8851
  name: string;
9031
- uniqueRef?: string | null;
9032
- /** @enum {string} */
9033
- status: "active" | "inactive";
9034
8852
  } | null;
9035
8853
  date: string;
9036
- description: string;
8854
+ description?: string | null;
9037
8855
  currency: string;
9038
- /** @enum {string} */
9039
- type: "deposit" | "expense" | "transfer";
9040
- contact?: {
9041
- /** Format: uuid */
9042
- id: string;
9043
- name?: string | null;
9044
- uniqueRef?: string | null;
9045
- } | null;
9046
- connection?: {
9047
- /** Format: uuid */
9048
- id: string;
9049
- name: string;
9050
- /** @enum {string} */
9051
- status: "active" | "inactive";
9052
- uniqueRef?: string | null;
9053
- app: {
9054
- id: string;
9055
- name: string;
9056
- icon?: string | null;
9057
- importers?: string[] | null;
9058
- extractors?: string[] | null;
9059
- };
9060
- } | null;
9061
- uniqueRef?: string | null;
9062
- recurringTemplate?: {
9063
- id: string;
9064
- } | null;
9065
8856
  } | null;
9066
8857
  line?: {
9067
8858
  id: string;
@@ -21352,7 +21143,7 @@ export interface operations {
21352
21143
  /** Format: uuid */
21353
21144
  id: string;
21354
21145
  /** @enum {string} */
21355
- effectType: "REFRESH_RESERVATION_JOURNAL" | "REFRESH_TRANSACTION_JOURNAL" | "CREATE_RECURRING_TRANSACTION_INSTANCE" | "UPDATE_RECURRING_TRANSACTION_INSTANCES" | "DEACTIVATE_RECURRING_TEMPLATE" | "UPDATE_RESERVATION_PAYMENTS" | "MATCH_TRANSACTION_LINE_TO_RESERVATION" | "MATCH_RESERVATION_TO_STRIPE_DEPOSIT" | "TEST_EFFECT" | "TENANT_HYPERLINE_SYNC" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_LINEAR_WEBHOOK" | "TENANT_SUSPENSION_EMAIL" | "TENANT_STATUS_TRACK" | "CALENDAR_BLOCK_ACTION";
21146
+ effectType: "REFRESH_RESERVATION_JOURNAL" | "REFRESH_TRANSACTION_JOURNAL" | "CREATE_RECURRING_TRANSACTION_INSTANCE" | "UPDATE_RECURRING_TRANSACTION_INSTANCES" | "DEACTIVATE_RECURRING_TEMPLATE" | "UPDATE_RESERVATION_PAYMENTS" | "UPDATE_RESERVATION_LINKABLES" | "MATCH_TRANSACTION_LINE_TO_RESERVATION" | "MATCH_RESERVATION_TO_STRIPE_DEPOSIT" | "TEST_EFFECT" | "TENANT_HYPERLINE_SYNC" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_LINEAR_WEBHOOK" | "TENANT_SUSPENSION_EMAIL" | "TENANT_STATUS_TRACK" | "CALENDAR_BLOCK_ACTION";
21356
21147
  payload?: unknown;
21357
21148
  /** @enum {string} */
21358
21149
  status: "pending" | "claimed" | "running" | "completed" | "failed" | "dead_letter";
@@ -22505,6 +22296,7 @@ export interface operations {
22505
22296
  parameters: {
22506
22297
  query?: {
22507
22298
  txnCode?: string;
22299
+ published?: boolean;
22508
22300
  status?: "active" | "inactive";
22509
22301
  types?: string;
22510
22302
  classifications?: string;
@@ -22516,6 +22308,9 @@ export interface operations {
22516
22308
  isDateRangeEndInclusive?: boolean;
22517
22309
  reservationIds?: string;
22518
22310
  transactionIds?: string;
22311
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
22312
+ currency?: string;
22313
+ excludeApAppendix?: boolean;
22519
22314
  /** @description listing uuids comma separated or "unmapped" */
22520
22315
  listingIds?: string;
22521
22316
  /** @description comma separated accounts */
@@ -23184,8 +22979,10 @@ export interface operations {
23184
22979
  getOwnerStatementSummariesReport: {
23185
22980
  parameters: {
23186
22981
  query: {
23187
- /** @description Year in format YYYY */
23188
- year: number;
22982
+ startAt: string;
22983
+ endAt: string;
22984
+ /** @description comma separated listings */
22985
+ listingIds?: string;
23189
22986
  };
23190
22987
  header?: {
23191
22988
  "X-Team-Id"?: string;
@@ -23274,8 +23071,10 @@ export interface operations {
23274
23071
  getOwnerStatementSummariesReportCsv: {
23275
23072
  parameters: {
23276
23073
  query: {
23277
- /** @description Year in format YYYY */
23278
- year: number;
23074
+ startAt: string;
23075
+ endAt: string;
23076
+ /** @description comma separated listings */
23077
+ listingIds?: string;
23279
23078
  };
23280
23079
  header?: {
23281
23080
  "X-Team-Id"?: string;
@@ -23347,9 +23146,10 @@ export interface operations {
23347
23146
  parameters: {
23348
23147
  query: {
23349
23148
  view: "listing" | "month" | "reservation" | "bookingChannel";
23350
- /** @description Year in format YYYY */
23351
- year: number;
23352
- listingId?: string;
23149
+ startAt: string;
23150
+ endAt: string;
23151
+ /** @description comma separated listings */
23152
+ listingIds?: string;
23353
23153
  currency?: string;
23354
23154
  viewAs?: "owner" | "manager";
23355
23155
  };
@@ -23501,9 +23301,10 @@ export interface operations {
23501
23301
  parameters: {
23502
23302
  query: {
23503
23303
  view: "listing" | "month" | "reservation" | "bookingChannel";
23504
- /** @description Year in format YYYY */
23505
- year: number;
23506
- listingId?: string;
23304
+ startAt: string;
23305
+ endAt: string;
23306
+ /** @description comma separated listings */
23307
+ listingIds?: string;
23507
23308
  currency?: string;
23508
23309
  viewAs?: "owner" | "manager";
23509
23310
  };