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