@vrplatform/api 1.2.40-1046 → 1.2.40-stage.1047

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.
@@ -680,6 +680,26 @@ export interface paths {
680
680
  patch?: never;
681
681
  trace?: never;
682
682
  };
683
+ "/statements/totals": {
684
+ parameters: {
685
+ query?: never;
686
+ header?: never;
687
+ path?: never;
688
+ cookie?: never;
689
+ };
690
+ /**
691
+ * Aggregated owner statement totals without pagination effects
692
+ * @description Get statement totals for a month
693
+ */
694
+ get: operations["getOwnerStatementTotals"];
695
+ put?: never;
696
+ post?: never;
697
+ delete?: never;
698
+ options?: never;
699
+ head?: never;
700
+ patch?: never;
701
+ trace?: never;
702
+ };
683
703
  "/statements/{id}": {
684
704
  parameters: {
685
705
  query?: never;
@@ -1406,7 +1426,7 @@ export interface paths {
1406
1426
  patch?: never;
1407
1427
  trace?: never;
1408
1428
  };
1409
- "/store-actions/{id}": {
1429
+ "/dispatch/{id}": {
1410
1430
  parameters: {
1411
1431
  query?: never;
1412
1432
  header?: never;
@@ -1414,24 +1434,7 @@ export interface paths {
1414
1434
  cookie?: never;
1415
1435
  };
1416
1436
  /** @description Retrieve a dispatched action and queued effects for progress tracking */
1417
- get: operations["getStoreAction"];
1418
- put?: never;
1419
- post?: never;
1420
- delete?: never;
1421
- options?: never;
1422
- head?: never;
1423
- patch?: never;
1424
- trace?: never;
1425
- };
1426
- "/reviews": {
1427
- parameters: {
1428
- query?: never;
1429
- header?: never;
1430
- path?: never;
1431
- cookie?: never;
1432
- };
1433
- /** @description Reviews list */
1434
- get: operations["getReviews"];
1437
+ get: operations["getDispatchAction"];
1435
1438
  put?: never;
1436
1439
  post?: never;
1437
1440
  delete?: never;
@@ -2332,19 +2335,19 @@ export interface components {
2332
2335
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2333
2336
  * @enum {string|null}
2334
2337
  */
2335
- type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2338
+ type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2336
2339
  filter: string | null;
2337
2340
  value: components["schemas"]["FlowMappingResolvedEntityValue"];
2338
2341
  };
2339
2342
  /** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
2340
2343
  FlowMappingResolvedEntityValue: {
2341
- id: string;
2344
+ id: string | number;
2342
2345
  name: string;
2343
2346
  /**
2344
2347
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2345
2348
  * @enum {string}
2346
2349
  */
2347
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2350
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2348
2351
  };
2349
2352
  /** @description Collection of settings after mutation with normalized { id, name, type } value payloads. */
2350
2353
  FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
@@ -2363,7 +2366,7 @@ export interface components {
2363
2366
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2364
2367
  * @enum {string|null}
2365
2368
  */
2366
- type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2369
+ type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2367
2370
  filter: string | null;
2368
2371
  value: components["schemas"]["FlowMappingResolvedEntityValue"];
2369
2372
  };
@@ -4147,55 +4150,24 @@ export interface operations {
4147
4150
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4148
4151
  } | null;
4149
4152
  recurringFee?: {
4153
+ /** Format: uuid */
4150
4154
  id: string;
4151
4155
  uniqueRef: string;
4152
4156
  name: string;
4153
- /** @enum {string} */
4154
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4157
+ type: string;
4155
4158
  } | null;
4156
4159
  transaction?: {
4160
+ /** Format: uuid */
4157
4161
  id: string;
4158
- /** @enum {string} */
4159
- status: "active" | "inactive";
4160
- /** @description Value in cents (100 = 1€) */
4161
4162
  amount: number;
4162
4163
  account?: {
4164
+ /** Format: uuid */
4163
4165
  id: string;
4164
4166
  name: string;
4165
- uniqueRef?: string | null;
4166
- /** @enum {string} */
4167
- status: "active" | "inactive";
4168
4167
  } | null;
4169
4168
  date: string;
4170
- description: string;
4169
+ description?: string | null;
4171
4170
  currency: string;
4172
- /** @enum {string} */
4173
- type: "deposit" | "expense" | "transfer";
4174
- contact?: {
4175
- /** Format: uuid */
4176
- id: string;
4177
- name?: string | null;
4178
- uniqueRef?: string | null;
4179
- } | null;
4180
- connection?: {
4181
- /** Format: uuid */
4182
- id: string;
4183
- name: string;
4184
- /** @enum {string} */
4185
- status: "active" | "inactive";
4186
- uniqueRef?: string | null;
4187
- app: {
4188
- id: string;
4189
- name: string;
4190
- icon?: string | null;
4191
- importers?: string[] | null;
4192
- extractors?: string[] | null;
4193
- };
4194
- } | null;
4195
- uniqueRef?: string | null;
4196
- recurringTemplate?: {
4197
- id: string;
4198
- } | null;
4199
4171
  } | null;
4200
4172
  line?: {
4201
4173
  id: string;
@@ -4208,17 +4180,6 @@ export interface operations {
4208
4180
  /** Format: uuid */
4209
4181
  id: string;
4210
4182
  name: string;
4211
- address?: {
4212
- full?: string | null;
4213
- line1?: string | null;
4214
- line2?: string | null;
4215
- city?: string | null;
4216
- /** @deprecated */
4217
- state?: string | null;
4218
- postalCode?: string | null;
4219
- stateCode?: string | null;
4220
- countryCode?: string | null;
4221
- } | null;
4222
4183
  uniqueRef?: string | null;
4223
4184
  } | null;
4224
4185
  listingConnection?: {
@@ -4281,11 +4242,11 @@ export interface operations {
4281
4242
  status: "active" | "inactive";
4282
4243
  } | null;
4283
4244
  recurringFee?: {
4245
+ /** Format: uuid */
4284
4246
  id: string;
4285
4247
  uniqueRef: string;
4286
4248
  name: string;
4287
- /** @enum {string} */
4288
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4249
+ type: string;
4289
4250
  } | null;
4290
4251
  }[];
4291
4252
  }[];
@@ -4347,6 +4308,7 @@ export interface operations {
4347
4308
  requestBody: {
4348
4309
  content: {
4349
4310
  "application/json": {
4311
+ dangerouslyAllowLocked?: boolean;
4350
4312
  ids?: string[];
4351
4313
  listingIds?: string[];
4352
4314
  connectionIds?: string[];
@@ -4525,55 +4487,24 @@ export interface operations {
4525
4487
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4526
4488
  } | null;
4527
4489
  recurringFee?: {
4490
+ /** Format: uuid */
4528
4491
  id: string;
4529
4492
  uniqueRef: string;
4530
4493
  name: string;
4531
- /** @enum {string} */
4532
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4494
+ type: string;
4533
4495
  } | null;
4534
4496
  transaction?: {
4497
+ /** Format: uuid */
4535
4498
  id: string;
4536
- /** @enum {string} */
4537
- status: "active" | "inactive";
4538
- /** @description Value in cents (100 = 1€) */
4539
4499
  amount: number;
4540
4500
  account?: {
4501
+ /** Format: uuid */
4541
4502
  id: string;
4542
4503
  name: string;
4543
- uniqueRef?: string | null;
4544
- /** @enum {string} */
4545
- status: "active" | "inactive";
4546
4504
  } | null;
4547
4505
  date: string;
4548
- description: string;
4506
+ description?: string | null;
4549
4507
  currency: string;
4550
- /** @enum {string} */
4551
- type: "deposit" | "expense" | "transfer";
4552
- contact?: {
4553
- /** Format: uuid */
4554
- id: string;
4555
- name?: string | null;
4556
- uniqueRef?: string | null;
4557
- } | null;
4558
- connection?: {
4559
- /** Format: uuid */
4560
- id: string;
4561
- name: string;
4562
- /** @enum {string} */
4563
- status: "active" | "inactive";
4564
- uniqueRef?: string | null;
4565
- app: {
4566
- id: string;
4567
- name: string;
4568
- icon?: string | null;
4569
- importers?: string[] | null;
4570
- extractors?: string[] | null;
4571
- };
4572
- } | null;
4573
- uniqueRef?: string | null;
4574
- recurringTemplate?: {
4575
- id: string;
4576
- } | null;
4577
4508
  } | null;
4578
4509
  line?: {
4579
4510
  id: string;
@@ -4586,17 +4517,6 @@ export interface operations {
4586
4517
  /** Format: uuid */
4587
4518
  id: string;
4588
4519
  name: string;
4589
- address?: {
4590
- full?: string | null;
4591
- line1?: string | null;
4592
- line2?: string | null;
4593
- city?: string | null;
4594
- /** @deprecated */
4595
- state?: string | null;
4596
- postalCode?: string | null;
4597
- stateCode?: string | null;
4598
- countryCode?: string | null;
4599
- } | null;
4600
4520
  uniqueRef?: string | null;
4601
4521
  } | null;
4602
4522
  listingConnection?: {
@@ -4659,11 +4579,11 @@ export interface operations {
4659
4579
  status: "active" | "inactive";
4660
4580
  } | null;
4661
4581
  recurringFee?: {
4582
+ /** Format: uuid */
4662
4583
  id: string;
4663
4584
  uniqueRef: string;
4664
4585
  name: string;
4665
- /** @enum {string} */
4666
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4586
+ type: string;
4667
4587
  } | null;
4668
4588
  }[];
4669
4589
  };
@@ -4984,55 +4904,24 @@ export interface operations {
4984
4904
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
4985
4905
  } | null;
4986
4906
  recurringFee?: {
4907
+ /** Format: uuid */
4987
4908
  id: string;
4988
4909
  uniqueRef: string;
4989
4910
  name: string;
4990
- /** @enum {string} */
4991
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
4911
+ type: string;
4992
4912
  } | null;
4993
4913
  transaction?: {
4914
+ /** Format: uuid */
4994
4915
  id: string;
4995
- /** @enum {string} */
4996
- status: "active" | "inactive";
4997
- /** @description Value in cents (100 = 1€) */
4998
4916
  amount: number;
4999
4917
  account?: {
4918
+ /** Format: uuid */
5000
4919
  id: string;
5001
4920
  name: string;
5002
- uniqueRef?: string | null;
5003
- /** @enum {string} */
5004
- status: "active" | "inactive";
5005
4921
  } | null;
5006
4922
  date: string;
5007
- description: string;
4923
+ description?: string | null;
5008
4924
  currency: string;
5009
- /** @enum {string} */
5010
- type: "deposit" | "expense" | "transfer";
5011
- contact?: {
5012
- /** Format: uuid */
5013
- id: string;
5014
- name?: string | null;
5015
- uniqueRef?: string | null;
5016
- } | null;
5017
- connection?: {
5018
- /** Format: uuid */
5019
- id: string;
5020
- name: string;
5021
- /** @enum {string} */
5022
- status: "active" | "inactive";
5023
- uniqueRef?: string | null;
5024
- app: {
5025
- id: string;
5026
- name: string;
5027
- icon?: string | null;
5028
- importers?: string[] | null;
5029
- extractors?: string[] | null;
5030
- };
5031
- } | null;
5032
- uniqueRef?: string | null;
5033
- recurringTemplate?: {
5034
- id: string;
5035
- } | null;
5036
4925
  } | null;
5037
4926
  line?: {
5038
4927
  id: string;
@@ -5045,17 +4934,6 @@ export interface operations {
5045
4934
  /** Format: uuid */
5046
4935
  id: string;
5047
4936
  name: string;
5048
- address?: {
5049
- full?: string | null;
5050
- line1?: string | null;
5051
- line2?: string | null;
5052
- city?: string | null;
5053
- /** @deprecated */
5054
- state?: string | null;
5055
- postalCode?: string | null;
5056
- stateCode?: string | null;
5057
- countryCode?: string | null;
5058
- } | null;
5059
4937
  uniqueRef?: string | null;
5060
4938
  } | null;
5061
4939
  listingConnection?: {
@@ -5118,11 +4996,11 @@ export interface operations {
5118
4996
  status: "active" | "inactive";
5119
4997
  } | null;
5120
4998
  recurringFee?: {
4999
+ /** Format: uuid */
5121
5000
  id: string;
5122
5001
  uniqueRef: string;
5123
5002
  name: string;
5124
- /** @enum {string} */
5125
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5003
+ type: string;
5126
5004
  } | null;
5127
5005
  }[];
5128
5006
  };
@@ -5357,17 +5235,6 @@ export interface operations {
5357
5235
  /** Format: uuid */
5358
5236
  id: string;
5359
5237
  name: string;
5360
- address?: {
5361
- full?: string | null;
5362
- line1?: string | null;
5363
- line2?: string | null;
5364
- city?: string | null;
5365
- /** @deprecated */
5366
- state?: string | null;
5367
- postalCode?: string | null;
5368
- stateCode?: string | null;
5369
- countryCode?: string | null;
5370
- } | null;
5371
5238
  uniqueRef?: string | null;
5372
5239
  } | null;
5373
5240
  listingConnection?: {
@@ -5657,55 +5524,24 @@ export interface operations {
5657
5524
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
5658
5525
  } | null;
5659
5526
  recurringFee?: {
5527
+ /** Format: uuid */
5660
5528
  id: string;
5661
5529
  uniqueRef: string;
5662
5530
  name: string;
5663
- /** @enum {string} */
5664
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5531
+ type: string;
5665
5532
  } | null;
5666
5533
  transaction?: {
5534
+ /** Format: uuid */
5667
5535
  id: string;
5668
- /** @enum {string} */
5669
- status: "active" | "inactive";
5670
- /** @description Value in cents (100 = 1€) */
5671
5536
  amount: number;
5672
5537
  account?: {
5538
+ /** Format: uuid */
5673
5539
  id: string;
5674
5540
  name: string;
5675
- uniqueRef?: string | null;
5676
- /** @enum {string} */
5677
- status: "active" | "inactive";
5678
5541
  } | null;
5679
5542
  date: string;
5680
- description: string;
5543
+ description?: string | null;
5681
5544
  currency: string;
5682
- /** @enum {string} */
5683
- type: "deposit" | "expense" | "transfer";
5684
- contact?: {
5685
- /** Format: uuid */
5686
- id: string;
5687
- name?: string | null;
5688
- uniqueRef?: string | null;
5689
- } | null;
5690
- connection?: {
5691
- /** Format: uuid */
5692
- id: string;
5693
- name: string;
5694
- /** @enum {string} */
5695
- status: "active" | "inactive";
5696
- uniqueRef?: string | null;
5697
- app: {
5698
- id: string;
5699
- name: string;
5700
- icon?: string | null;
5701
- importers?: string[] | null;
5702
- extractors?: string[] | null;
5703
- };
5704
- } | null;
5705
- uniqueRef?: string | null;
5706
- recurringTemplate?: {
5707
- id: string;
5708
- } | null;
5709
5545
  } | null;
5710
5546
  line?: {
5711
5547
  id: string;
@@ -5718,17 +5554,6 @@ export interface operations {
5718
5554
  /** Format: uuid */
5719
5555
  id: string;
5720
5556
  name: string;
5721
- address?: {
5722
- full?: string | null;
5723
- line1?: string | null;
5724
- line2?: string | null;
5725
- city?: string | null;
5726
- /** @deprecated */
5727
- state?: string | null;
5728
- postalCode?: string | null;
5729
- stateCode?: string | null;
5730
- countryCode?: string | null;
5731
- } | null;
5732
5557
  uniqueRef?: string | null;
5733
5558
  } | null;
5734
5559
  listingConnection?: {
@@ -5791,11 +5616,11 @@ export interface operations {
5791
5616
  status: "active" | "inactive";
5792
5617
  } | null;
5793
5618
  recurringFee?: {
5619
+ /** Format: uuid */
5794
5620
  id: string;
5795
5621
  uniqueRef: string;
5796
5622
  name: string;
5797
- /** @enum {string} */
5798
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
5623
+ type: string;
5799
5624
  } | null;
5800
5625
  }[];
5801
5626
  };
@@ -7930,7 +7755,7 @@ export interface operations {
7930
7755
  /** @enum {string} */
7931
7756
  type: "partner" | "admin" | "propertyManager";
7932
7757
  /** @enum {string} */
7933
- status: "active" | "inactive";
7758
+ status: "active" | "inactive" | "deleted" | "onboarding";
7934
7759
  billingSubscriptionStatus?: string | null;
7935
7760
  billingPlan?: string | null;
7936
7761
  createdAt?: string | null;
@@ -8139,7 +7964,7 @@ export interface operations {
8139
7964
  /** @enum {string} */
8140
7965
  type: "partner" | "admin" | "propertyManager";
8141
7966
  /** @enum {string} */
8142
- status: "active" | "inactive";
7967
+ status: "active" | "inactive" | "deleted" | "onboarding";
8143
7968
  billingSubscriptionStatus?: string | null;
8144
7969
  billingPlan?: string | null;
8145
7970
  createdAt?: string | null;
@@ -8359,7 +8184,7 @@ export interface operations {
8359
8184
  /** @enum {string} */
8360
8185
  type: "partner" | "admin" | "propertyManager";
8361
8186
  /** @enum {string} */
8362
- status: "active" | "inactive";
8187
+ status: "active" | "inactive" | "deleted" | "onboarding";
8363
8188
  billingSubscriptionStatus?: string | null;
8364
8189
  billingPlan?: string | null;
8365
8190
  createdAt?: string | null;
@@ -8491,7 +8316,7 @@ export interface operations {
8491
8316
  /** @enum {string} */
8492
8317
  type?: "partner" | "admin" | "propertyManager";
8493
8318
  /** @enum {string} */
8494
- status?: "active" | "inactive";
8319
+ status?: "active" | "inactive" | "deleted" | "onboarding";
8495
8320
  billingSubscriptionStatus?: string | null;
8496
8321
  billingPlan?: string | null;
8497
8322
  trialUntil?: string | null;
@@ -8569,7 +8394,7 @@ export interface operations {
8569
8394
  /** @enum {string} */
8570
8395
  type: "partner" | "admin" | "propertyManager";
8571
8396
  /** @enum {string} */
8572
- status: "active" | "inactive";
8397
+ status: "active" | "inactive" | "deleted" | "onboarding";
8573
8398
  billingSubscriptionStatus?: string | null;
8574
8399
  billingPlan?: string | null;
8575
8400
  createdAt?: string | null;
@@ -8713,7 +8538,7 @@ export interface operations {
8713
8538
  /** @enum {string} */
8714
8539
  type: "partner" | "admin" | "propertyManager";
8715
8540
  /** @enum {string} */
8716
- status: "active" | "inactive";
8541
+ status: "active" | "inactive" | "deleted" | "onboarding";
8717
8542
  billingSubscriptionStatus?: string | null;
8718
8543
  billingPlan?: string | null;
8719
8544
  createdAt?: string | null;
@@ -9011,55 +8836,24 @@ export interface operations {
9011
8836
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
9012
8837
  } | null;
9013
8838
  recurringFee?: {
8839
+ /** Format: uuid */
9014
8840
  id: string;
9015
8841
  uniqueRef: string;
9016
8842
  name: string;
9017
- /** @enum {string} */
9018
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
8843
+ type: string;
9019
8844
  } | null;
9020
8845
  transaction?: {
8846
+ /** Format: uuid */
9021
8847
  id: string;
9022
- /** @enum {string} */
9023
- status: "active" | "inactive";
9024
- /** @description Value in cents (100 = 1€) */
9025
8848
  amount: number;
9026
8849
  account?: {
8850
+ /** Format: uuid */
9027
8851
  id: string;
9028
8852
  name: string;
9029
- uniqueRef?: string | null;
9030
- /** @enum {string} */
9031
- status: "active" | "inactive";
9032
8853
  } | null;
9033
8854
  date: string;
9034
- description: string;
8855
+ description?: string | null;
9035
8856
  currency: string;
9036
- /** @enum {string} */
9037
- type: "deposit" | "expense" | "transfer";
9038
- contact?: {
9039
- /** Format: uuid */
9040
- id: string;
9041
- name?: string | null;
9042
- uniqueRef?: string | null;
9043
- } | null;
9044
- connection?: {
9045
- /** Format: uuid */
9046
- id: string;
9047
- name: string;
9048
- /** @enum {string} */
9049
- status: "active" | "inactive";
9050
- uniqueRef?: string | null;
9051
- app: {
9052
- id: string;
9053
- name: string;
9054
- icon?: string | null;
9055
- importers?: string[] | null;
9056
- extractors?: string[] | null;
9057
- };
9058
- } | null;
9059
- uniqueRef?: string | null;
9060
- recurringTemplate?: {
9061
- id: string;
9062
- } | null;
9063
8857
  } | null;
9064
8858
  line?: {
9065
8859
  id: string;
@@ -9617,21 +9411,10 @@ export interface operations {
9617
9411
  status: "active" | "inactive";
9618
9412
  }[];
9619
9413
  taxRate?: {
9414
+ id: string;
9620
9415
  name: string;
9621
- countryCode?: string | null;
9622
- currency?: string | null;
9623
9416
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9624
9417
  basisPoints: number;
9625
- /** @enum {string|null} */
9626
- type?: "markup" | "tax" | null;
9627
- uniqueRef?: string | null;
9628
- /** @enum {string|null} */
9629
- status?: "active" | "inactive" | null;
9630
- /** Format: uuid */
9631
- accountId?: string | null;
9632
- /** Format: uuid */
9633
- debitAccountId?: string | null;
9634
- id: string;
9635
9418
  } | null;
9636
9419
  };
9637
9420
  };
@@ -9786,21 +9569,10 @@ export interface operations {
9786
9569
  status: "active" | "inactive";
9787
9570
  }[];
9788
9571
  taxRate?: {
9572
+ id: string;
9789
9573
  name: string;
9790
- countryCode?: string | null;
9791
- currency?: string | null;
9792
9574
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9793
9575
  basisPoints: number;
9794
- /** @enum {string|null} */
9795
- type?: "markup" | "tax" | null;
9796
- uniqueRef?: string | null;
9797
- /** @enum {string|null} */
9798
- status?: "active" | "inactive" | null;
9799
- /** Format: uuid */
9800
- accountId?: string | null;
9801
- /** Format: uuid */
9802
- debitAccountId?: string | null;
9803
- id: string;
9804
9576
  } | null;
9805
9577
  };
9806
9578
  };
@@ -9994,21 +9766,10 @@ export interface operations {
9994
9766
  status: "active" | "inactive";
9995
9767
  }[];
9996
9768
  taxRate?: {
9769
+ id: string;
9997
9770
  name: string;
9998
- countryCode?: string | null;
9999
- currency?: string | null;
10000
9771
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10001
9772
  basisPoints: number;
10002
- /** @enum {string|null} */
10003
- type?: "markup" | "tax" | null;
10004
- uniqueRef?: string | null;
10005
- /** @enum {string|null} */
10006
- status?: "active" | "inactive" | null;
10007
- /** Format: uuid */
10008
- accountId?: string | null;
10009
- /** Format: uuid */
10010
- debitAccountId?: string | null;
10011
- id: string;
10012
9773
  } | null;
10013
9774
  }[];
10014
9775
  pagination: {
@@ -10171,21 +9932,10 @@ export interface operations {
10171
9932
  status: "active" | "inactive";
10172
9933
  }[];
10173
9934
  taxRate?: {
9935
+ id: string;
10174
9936
  name: string;
10175
- countryCode?: string | null;
10176
- currency?: string | null;
10177
9937
  /** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
10178
9938
  basisPoints: number;
10179
- /** @enum {string|null} */
10180
- type?: "markup" | "tax" | null;
10181
- uniqueRef?: string | null;
10182
- /** @enum {string|null} */
10183
- status?: "active" | "inactive" | null;
10184
- /** Format: uuid */
10185
- accountId?: string | null;
10186
- /** Format: uuid */
10187
- debitAccountId?: string | null;
10188
- id: string;
10189
9939
  } | null;
10190
9940
  };
10191
9941
  };
@@ -10259,13 +10009,13 @@ export interface operations {
10259
10009
  name: string;
10260
10010
  locked?: boolean | null;
10261
10011
  /** @enum {string|null} */
10262
- visible?: "all" | "manager" | "none" | null;
10012
+ visible?: "all" | "manager" | "owner" | "none" | null;
10263
10013
  columns: ({
10264
10014
  id?: string | null;
10265
10015
  name: string;
10266
10016
  locked?: boolean | null;
10267
10017
  /** @enum {string|null} */
10268
- visible?: "all" | "manager" | "none" | null;
10018
+ visible?: "all" | "manager" | "owner" | "none" | null;
10269
10019
  /** @enum {string} */
10270
10020
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10271
10021
  value: string;
@@ -10274,7 +10024,7 @@ export interface operations {
10274
10024
  name: string;
10275
10025
  locked?: boolean | null;
10276
10026
  /** @enum {string|null} */
10277
- visible?: "all" | "manager" | "none" | null;
10027
+ visible?: "all" | "manager" | "owner" | "none" | null;
10278
10028
  /** @enum {string} */
10279
10029
  type: "accounts";
10280
10030
  value: string[];
@@ -10285,13 +10035,13 @@ export interface operations {
10285
10035
  name: string;
10286
10036
  locked?: boolean | null;
10287
10037
  /** @enum {string|null} */
10288
- visible?: "all" | "manager" | "none" | null;
10038
+ visible?: "all" | "manager" | "owner" | "none" | null;
10289
10039
  columns: ({
10290
10040
  id?: string | null;
10291
10041
  name: string;
10292
10042
  locked?: boolean | null;
10293
10043
  /** @enum {string|null} */
10294
- visible?: "all" | "manager" | "none" | null;
10044
+ visible?: "all" | "manager" | "owner" | "none" | null;
10295
10045
  /** @enum {string} */
10296
10046
  type: "field";
10297
10047
  value: string;
@@ -10300,7 +10050,7 @@ export interface operations {
10300
10050
  name: string;
10301
10051
  locked?: boolean | null;
10302
10052
  /** @enum {string|null} */
10303
- visible?: "all" | "manager" | "none" | null;
10053
+ visible?: "all" | "manager" | "owner" | "none" | null;
10304
10054
  /** @enum {string} */
10305
10055
  type: "accounts";
10306
10056
  value: string[];
@@ -10324,13 +10074,13 @@ export interface operations {
10324
10074
  name: string;
10325
10075
  locked?: boolean | null;
10326
10076
  /** @enum {string|null} */
10327
- visible?: "all" | "manager" | "none" | null;
10077
+ visible?: "all" | "manager" | "owner" | "none" | null;
10328
10078
  columns: ({
10329
10079
  id?: string | null;
10330
10080
  name: string;
10331
10081
  locked?: boolean | null;
10332
10082
  /** @enum {string|null} */
10333
- visible?: "all" | "manager" | "none" | null;
10083
+ visible?: "all" | "manager" | "owner" | "none" | null;
10334
10084
  /** @enum {string} */
10335
10085
  type: "field";
10336
10086
  value: string;
@@ -10339,7 +10089,7 @@ export interface operations {
10339
10089
  name: string;
10340
10090
  locked?: boolean | null;
10341
10091
  /** @enum {string|null} */
10342
- visible?: "all" | "manager" | "none" | null;
10092
+ visible?: "all" | "manager" | "owner" | "none" | null;
10343
10093
  /** @enum {string} */
10344
10094
  type: "accounts";
10345
10095
  value: string[];
@@ -10427,13 +10177,13 @@ export interface operations {
10427
10177
  name: string;
10428
10178
  locked?: boolean | null;
10429
10179
  /** @enum {string|null} */
10430
- visible?: "all" | "manager" | "none" | null;
10180
+ visible?: "all" | "manager" | "owner" | "none" | null;
10431
10181
  columns: ({
10432
10182
  id?: string | null;
10433
10183
  name: string;
10434
10184
  locked?: boolean | null;
10435
10185
  /** @enum {string|null} */
10436
- visible?: "all" | "manager" | "none" | null;
10186
+ visible?: "all" | "manager" | "owner" | "none" | null;
10437
10187
  /** @enum {string} */
10438
10188
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10439
10189
  value: string;
@@ -10442,7 +10192,7 @@ export interface operations {
10442
10192
  name: string;
10443
10193
  locked?: boolean | null;
10444
10194
  /** @enum {string|null} */
10445
- visible?: "all" | "manager" | "none" | null;
10195
+ visible?: "all" | "manager" | "owner" | "none" | null;
10446
10196
  /** @enum {string} */
10447
10197
  type: "accounts";
10448
10198
  value: string[];
@@ -10453,13 +10203,13 @@ export interface operations {
10453
10203
  name: string;
10454
10204
  locked?: boolean | null;
10455
10205
  /** @enum {string|null} */
10456
- visible?: "all" | "manager" | "none" | null;
10206
+ visible?: "all" | "manager" | "owner" | "none" | null;
10457
10207
  columns: ({
10458
10208
  id?: string | null;
10459
10209
  name: string;
10460
10210
  locked?: boolean | null;
10461
10211
  /** @enum {string|null} */
10462
- visible?: "all" | "manager" | "none" | null;
10212
+ visible?: "all" | "manager" | "owner" | "none" | null;
10463
10213
  /** @enum {string} */
10464
10214
  type: "field";
10465
10215
  value: string;
@@ -10468,7 +10218,7 @@ export interface operations {
10468
10218
  name: string;
10469
10219
  locked?: boolean | null;
10470
10220
  /** @enum {string|null} */
10471
- visible?: "all" | "manager" | "none" | null;
10221
+ visible?: "all" | "manager" | "owner" | "none" | null;
10472
10222
  /** @enum {string} */
10473
10223
  type: "accounts";
10474
10224
  value: string[];
@@ -10494,13 +10244,13 @@ export interface operations {
10494
10244
  name: string;
10495
10245
  locked?: boolean | null;
10496
10246
  /** @enum {string|null} */
10497
- visible?: "all" | "manager" | "none" | null;
10247
+ visible?: "all" | "manager" | "owner" | "none" | null;
10498
10248
  columns: ({
10499
10249
  id?: string | null;
10500
10250
  name: string;
10501
10251
  locked?: boolean | null;
10502
10252
  /** @enum {string|null} */
10503
- visible?: "all" | "manager" | "none" | null;
10253
+ visible?: "all" | "manager" | "owner" | "none" | null;
10504
10254
  /** @enum {string} */
10505
10255
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10506
10256
  value: string;
@@ -10509,7 +10259,7 @@ export interface operations {
10509
10259
  name: string;
10510
10260
  locked?: boolean | null;
10511
10261
  /** @enum {string|null} */
10512
- visible?: "all" | "manager" | "none" | null;
10262
+ visible?: "all" | "manager" | "owner" | "none" | null;
10513
10263
  /** @enum {string} */
10514
10264
  type: "accounts";
10515
10265
  value: string[];
@@ -10520,13 +10270,13 @@ export interface operations {
10520
10270
  name: string;
10521
10271
  locked?: boolean | null;
10522
10272
  /** @enum {string|null} */
10523
- visible?: "all" | "manager" | "none" | null;
10273
+ visible?: "all" | "manager" | "owner" | "none" | null;
10524
10274
  columns: ({
10525
10275
  id?: string | null;
10526
10276
  name: string;
10527
10277
  locked?: boolean | null;
10528
10278
  /** @enum {string|null} */
10529
- visible?: "all" | "manager" | "none" | null;
10279
+ visible?: "all" | "manager" | "owner" | "none" | null;
10530
10280
  /** @enum {string} */
10531
10281
  type: "field";
10532
10282
  value: string;
@@ -10535,7 +10285,7 @@ export interface operations {
10535
10285
  name: string;
10536
10286
  locked?: boolean | null;
10537
10287
  /** @enum {string|null} */
10538
- visible?: "all" | "manager" | "none" | null;
10288
+ visible?: "all" | "manager" | "owner" | "none" | null;
10539
10289
  /** @enum {string} */
10540
10290
  type: "accounts";
10541
10291
  value: string[];
@@ -10559,13 +10309,13 @@ export interface operations {
10559
10309
  name: string;
10560
10310
  locked?: boolean | null;
10561
10311
  /** @enum {string|null} */
10562
- visible?: "all" | "manager" | "none" | null;
10312
+ visible?: "all" | "manager" | "owner" | "none" | null;
10563
10313
  columns: ({
10564
10314
  id?: string | null;
10565
10315
  name: string;
10566
10316
  locked?: boolean | null;
10567
10317
  /** @enum {string|null} */
10568
- visible?: "all" | "manager" | "none" | null;
10318
+ visible?: "all" | "manager" | "owner" | "none" | null;
10569
10319
  /** @enum {string} */
10570
10320
  type: "field";
10571
10321
  value: string;
@@ -10574,7 +10324,7 @@ export interface operations {
10574
10324
  name: string;
10575
10325
  locked?: boolean | null;
10576
10326
  /** @enum {string|null} */
10577
- visible?: "all" | "manager" | "none" | null;
10327
+ visible?: "all" | "manager" | "owner" | "none" | null;
10578
10328
  /** @enum {string} */
10579
10329
  type: "accounts";
10580
10330
  value: string[];
@@ -10650,13 +10400,13 @@ export interface operations {
10650
10400
  name: string;
10651
10401
  locked?: boolean | null;
10652
10402
  /** @enum {string|null} */
10653
- visible?: "all" | "manager" | "none" | null;
10403
+ visible?: "all" | "manager" | "owner" | "none" | null;
10654
10404
  columns: ({
10655
10405
  id?: string | null;
10656
10406
  name: string;
10657
10407
  locked?: boolean | null;
10658
10408
  /** @enum {string|null} */
10659
- visible?: "all" | "manager" | "none" | null;
10409
+ visible?: "all" | "manager" | "owner" | "none" | null;
10660
10410
  /** @enum {string} */
10661
10411
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10662
10412
  value: string;
@@ -10665,7 +10415,7 @@ export interface operations {
10665
10415
  name: string;
10666
10416
  locked?: boolean | null;
10667
10417
  /** @enum {string|null} */
10668
- visible?: "all" | "manager" | "none" | null;
10418
+ visible?: "all" | "manager" | "owner" | "none" | null;
10669
10419
  /** @enum {string} */
10670
10420
  type: "accounts";
10671
10421
  value: string[];
@@ -10676,13 +10426,13 @@ export interface operations {
10676
10426
  name: string;
10677
10427
  locked?: boolean | null;
10678
10428
  /** @enum {string|null} */
10679
- visible?: "all" | "manager" | "none" | null;
10429
+ visible?: "all" | "manager" | "owner" | "none" | null;
10680
10430
  columns: ({
10681
10431
  id?: string | null;
10682
10432
  name: string;
10683
10433
  locked?: boolean | null;
10684
10434
  /** @enum {string|null} */
10685
- visible?: "all" | "manager" | "none" | null;
10435
+ visible?: "all" | "manager" | "owner" | "none" | null;
10686
10436
  /** @enum {string} */
10687
10437
  type: "field";
10688
10438
  value: string;
@@ -10691,7 +10441,7 @@ export interface operations {
10691
10441
  name: string;
10692
10442
  locked?: boolean | null;
10693
10443
  /** @enum {string|null} */
10694
- visible?: "all" | "manager" | "none" | null;
10444
+ visible?: "all" | "manager" | "owner" | "none" | null;
10695
10445
  /** @enum {string} */
10696
10446
  type: "accounts";
10697
10447
  value: string[];
@@ -10715,13 +10465,13 @@ export interface operations {
10715
10465
  name: string;
10716
10466
  locked?: boolean | null;
10717
10467
  /** @enum {string|null} */
10718
- visible?: "all" | "manager" | "none" | null;
10468
+ visible?: "all" | "manager" | "owner" | "none" | null;
10719
10469
  columns: ({
10720
10470
  id?: string | null;
10721
10471
  name: string;
10722
10472
  locked?: boolean | null;
10723
10473
  /** @enum {string|null} */
10724
- visible?: "all" | "manager" | "none" | null;
10474
+ visible?: "all" | "manager" | "owner" | "none" | null;
10725
10475
  /** @enum {string} */
10726
10476
  type: "field";
10727
10477
  value: string;
@@ -10730,7 +10480,7 @@ export interface operations {
10730
10480
  name: string;
10731
10481
  locked?: boolean | null;
10732
10482
  /** @enum {string|null} */
10733
- visible?: "all" | "manager" | "none" | null;
10483
+ visible?: "all" | "manager" | "owner" | "none" | null;
10734
10484
  /** @enum {string} */
10735
10485
  type: "accounts";
10736
10486
  value: string[];
@@ -10810,13 +10560,13 @@ export interface operations {
10810
10560
  name: string;
10811
10561
  locked?: boolean | null;
10812
10562
  /** @enum {string|null} */
10813
- visible?: "all" | "manager" | "none" | null;
10563
+ visible?: "all" | "manager" | "owner" | "none" | null;
10814
10564
  columns: ({
10815
10565
  id?: string | null;
10816
10566
  name: string;
10817
10567
  locked?: boolean | null;
10818
10568
  /** @enum {string|null} */
10819
- visible?: "all" | "manager" | "none" | null;
10569
+ visible?: "all" | "manager" | "owner" | "none" | null;
10820
10570
  /** @enum {string} */
10821
10571
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10822
10572
  value: string;
@@ -10825,7 +10575,7 @@ export interface operations {
10825
10575
  name: string;
10826
10576
  locked?: boolean | null;
10827
10577
  /** @enum {string|null} */
10828
- visible?: "all" | "manager" | "none" | null;
10578
+ visible?: "all" | "manager" | "owner" | "none" | null;
10829
10579
  /** @enum {string} */
10830
10580
  type: "accounts";
10831
10581
  value: string[];
@@ -10836,13 +10586,13 @@ export interface operations {
10836
10586
  name: string;
10837
10587
  locked?: boolean | null;
10838
10588
  /** @enum {string|null} */
10839
- visible?: "all" | "manager" | "none" | null;
10589
+ visible?: "all" | "manager" | "owner" | "none" | null;
10840
10590
  columns: ({
10841
10591
  id?: string | null;
10842
10592
  name: string;
10843
10593
  locked?: boolean | null;
10844
10594
  /** @enum {string|null} */
10845
- visible?: "all" | "manager" | "none" | null;
10595
+ visible?: "all" | "manager" | "owner" | "none" | null;
10846
10596
  /** @enum {string} */
10847
10597
  type: "field";
10848
10598
  value: string;
@@ -10851,7 +10601,7 @@ export interface operations {
10851
10601
  name: string;
10852
10602
  locked?: boolean | null;
10853
10603
  /** @enum {string|null} */
10854
- visible?: "all" | "manager" | "none" | null;
10604
+ visible?: "all" | "manager" | "owner" | "none" | null;
10855
10605
  /** @enum {string} */
10856
10606
  type: "accounts";
10857
10607
  value: string[];
@@ -10877,13 +10627,13 @@ export interface operations {
10877
10627
  name: string;
10878
10628
  locked?: boolean | null;
10879
10629
  /** @enum {string|null} */
10880
- visible?: "all" | "manager" | "none" | null;
10630
+ visible?: "all" | "manager" | "owner" | "none" | null;
10881
10631
  columns: ({
10882
10632
  id?: string | null;
10883
10633
  name: string;
10884
10634
  locked?: boolean | null;
10885
10635
  /** @enum {string|null} */
10886
- visible?: "all" | "manager" | "none" | null;
10636
+ visible?: "all" | "manager" | "owner" | "none" | null;
10887
10637
  /** @enum {string} */
10888
10638
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
10889
10639
  value: string;
@@ -10892,7 +10642,7 @@ export interface operations {
10892
10642
  name: string;
10893
10643
  locked?: boolean | null;
10894
10644
  /** @enum {string|null} */
10895
- visible?: "all" | "manager" | "none" | null;
10645
+ visible?: "all" | "manager" | "owner" | "none" | null;
10896
10646
  /** @enum {string} */
10897
10647
  type: "accounts";
10898
10648
  value: string[];
@@ -10903,13 +10653,13 @@ export interface operations {
10903
10653
  name: string;
10904
10654
  locked?: boolean | null;
10905
10655
  /** @enum {string|null} */
10906
- visible?: "all" | "manager" | "none" | null;
10656
+ visible?: "all" | "manager" | "owner" | "none" | null;
10907
10657
  columns: ({
10908
10658
  id?: string | null;
10909
10659
  name: string;
10910
10660
  locked?: boolean | null;
10911
10661
  /** @enum {string|null} */
10912
- visible?: "all" | "manager" | "none" | null;
10662
+ visible?: "all" | "manager" | "owner" | "none" | null;
10913
10663
  /** @enum {string} */
10914
10664
  type: "field";
10915
10665
  value: string;
@@ -10918,7 +10668,7 @@ export interface operations {
10918
10668
  name: string;
10919
10669
  locked?: boolean | null;
10920
10670
  /** @enum {string|null} */
10921
- visible?: "all" | "manager" | "none" | null;
10671
+ visible?: "all" | "manager" | "owner" | "none" | null;
10922
10672
  /** @enum {string} */
10923
10673
  type: "accounts";
10924
10674
  value: string[];
@@ -10942,13 +10692,13 @@ export interface operations {
10942
10692
  name: string;
10943
10693
  locked?: boolean | null;
10944
10694
  /** @enum {string|null} */
10945
- visible?: "all" | "manager" | "none" | null;
10695
+ visible?: "all" | "manager" | "owner" | "none" | null;
10946
10696
  columns: ({
10947
10697
  id?: string | null;
10948
10698
  name: string;
10949
10699
  locked?: boolean | null;
10950
10700
  /** @enum {string|null} */
10951
- visible?: "all" | "manager" | "none" | null;
10701
+ visible?: "all" | "manager" | "owner" | "none" | null;
10952
10702
  /** @enum {string} */
10953
10703
  type: "field";
10954
10704
  value: string;
@@ -10957,7 +10707,7 @@ export interface operations {
10957
10707
  name: string;
10958
10708
  locked?: boolean | null;
10959
10709
  /** @enum {string|null} */
10960
- visible?: "all" | "manager" | "none" | null;
10710
+ visible?: "all" | "manager" | "owner" | "none" | null;
10961
10711
  /** @enum {string} */
10962
10712
  type: "accounts";
10963
10713
  value: string[];
@@ -11531,13 +11281,13 @@ export interface operations {
11531
11281
  name: string;
11532
11282
  locked?: boolean | null;
11533
11283
  /** @enum {string|null} */
11534
- visible?: "all" | "manager" | "none" | null;
11284
+ visible?: "all" | "manager" | "owner" | "none" | null;
11535
11285
  columns: ({
11536
11286
  id?: string | null;
11537
11287
  name: string;
11538
11288
  locked?: boolean | null;
11539
11289
  /** @enum {string|null} */
11540
- visible?: "all" | "manager" | "none" | null;
11290
+ visible?: "all" | "manager" | "owner" | "none" | null;
11541
11291
  /** @enum {string} */
11542
11292
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
11543
11293
  value: string;
@@ -11546,7 +11296,7 @@ export interface operations {
11546
11296
  name: string;
11547
11297
  locked?: boolean | null;
11548
11298
  /** @enum {string|null} */
11549
- visible?: "all" | "manager" | "none" | null;
11299
+ visible?: "all" | "manager" | "owner" | "none" | null;
11550
11300
  /** @enum {string} */
11551
11301
  type: "accounts";
11552
11302
  value: string[];
@@ -11557,13 +11307,13 @@ export interface operations {
11557
11307
  name: string;
11558
11308
  locked?: boolean | null;
11559
11309
  /** @enum {string|null} */
11560
- visible?: "all" | "manager" | "none" | null;
11310
+ visible?: "all" | "manager" | "owner" | "none" | null;
11561
11311
  columns: ({
11562
11312
  id?: string | null;
11563
11313
  name: string;
11564
11314
  locked?: boolean | null;
11565
11315
  /** @enum {string|null} */
11566
- visible?: "all" | "manager" | "none" | null;
11316
+ visible?: "all" | "manager" | "owner" | "none" | null;
11567
11317
  /** @enum {string} */
11568
11318
  type: "field";
11569
11319
  value: string;
@@ -11572,7 +11322,7 @@ export interface operations {
11572
11322
  name: string;
11573
11323
  locked?: boolean | null;
11574
11324
  /** @enum {string|null} */
11575
- visible?: "all" | "manager" | "none" | null;
11325
+ visible?: "all" | "manager" | "owner" | "none" | null;
11576
11326
  /** @enum {string} */
11577
11327
  type: "accounts";
11578
11328
  value: string[];
@@ -11596,13 +11346,13 @@ export interface operations {
11596
11346
  name: string;
11597
11347
  locked?: boolean | null;
11598
11348
  /** @enum {string|null} */
11599
- visible?: "all" | "manager" | "none" | null;
11349
+ visible?: "all" | "manager" | "owner" | "none" | null;
11600
11350
  columns: ({
11601
11351
  id?: string | null;
11602
11352
  name: string;
11603
11353
  locked?: boolean | null;
11604
11354
  /** @enum {string|null} */
11605
- visible?: "all" | "manager" | "none" | null;
11355
+ visible?: "all" | "manager" | "owner" | "none" | null;
11606
11356
  /** @enum {string} */
11607
11357
  type: "field";
11608
11358
  value: string;
@@ -11611,7 +11361,7 @@ export interface operations {
11611
11361
  name: string;
11612
11362
  locked?: boolean | null;
11613
11363
  /** @enum {string|null} */
11614
- visible?: "all" | "manager" | "none" | null;
11364
+ visible?: "all" | "manager" | "owner" | "none" | null;
11615
11365
  /** @enum {string} */
11616
11366
  type: "accounts";
11617
11367
  value: string[];
@@ -11831,6 +11581,103 @@ export interface operations {
11831
11581
  };
11832
11582
  };
11833
11583
  };
11584
+ getOwnerStatementTotals: {
11585
+ parameters: {
11586
+ query: {
11587
+ /** @description Date in format YYYY-MM */
11588
+ month: string;
11589
+ /** @description comma separated listings */
11590
+ listingIds?: string;
11591
+ /** @description comma separated owners */
11592
+ ownerIds?: string;
11593
+ status?: ("draft" | "inReview" | "void" | "published") | "all";
11594
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
11595
+ currency?: string;
11596
+ search?: string;
11597
+ includePreviousUnattached?: boolean;
11598
+ };
11599
+ header?: {
11600
+ "X-Team-Id"?: string;
11601
+ };
11602
+ path?: never;
11603
+ cookie?: never;
11604
+ };
11605
+ requestBody?: never;
11606
+ responses: {
11607
+ /** @description Successful response */
11608
+ 200: {
11609
+ headers: {
11610
+ [name: string]: unknown;
11611
+ };
11612
+ content: {
11613
+ "application/json": {
11614
+ aggregates: {
11615
+ /** @description Value in cents (100 = 1€) */
11616
+ balanceStart: number;
11617
+ /** @description Value in cents (100 = 1€) */
11618
+ netRevenue: number;
11619
+ /** @description Value in cents (100 = 1€) */
11620
+ expenses: number;
11621
+ /** @description Value in cents (100 = 1€) */
11622
+ netIncome: number;
11623
+ /** @description Value in cents (100 = 1€) */
11624
+ transfers: number;
11625
+ /** @description Value in cents (100 = 1€) */
11626
+ balanceEnd: number;
11627
+ currency: string;
11628
+ }[];
11629
+ total: number;
11630
+ defaultCurrency: string;
11631
+ };
11632
+ };
11633
+ };
11634
+ /** @description Invalid input data */
11635
+ 400: {
11636
+ headers: {
11637
+ [name: string]: unknown;
11638
+ };
11639
+ content: {
11640
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
11641
+ };
11642
+ };
11643
+ /** @description Authorization not provided */
11644
+ 401: {
11645
+ headers: {
11646
+ [name: string]: unknown;
11647
+ };
11648
+ content: {
11649
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
11650
+ };
11651
+ };
11652
+ /** @description Insufficient access */
11653
+ 403: {
11654
+ headers: {
11655
+ [name: string]: unknown;
11656
+ };
11657
+ content: {
11658
+ "application/json": components["schemas"]["error.FORBIDDEN"];
11659
+ };
11660
+ };
11661
+ /** @description Not found */
11662
+ 404: {
11663
+ headers: {
11664
+ [name: string]: unknown;
11665
+ };
11666
+ content: {
11667
+ "application/json": components["schemas"]["error.NOT_FOUND"];
11668
+ };
11669
+ };
11670
+ /** @description Internal server error */
11671
+ 500: {
11672
+ headers: {
11673
+ [name: string]: unknown;
11674
+ };
11675
+ content: {
11676
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
11677
+ };
11678
+ };
11679
+ };
11680
+ };
11834
11681
  getOwnerStatement: {
11835
11682
  parameters: {
11836
11683
  query?: {
@@ -11984,13 +11831,13 @@ export interface operations {
11984
11831
  name: string;
11985
11832
  locked?: boolean | null;
11986
11833
  /** @enum {string|null} */
11987
- visible?: "all" | "manager" | "none" | null;
11834
+ visible?: "all" | "manager" | "owner" | "none" | null;
11988
11835
  columns: ({
11989
11836
  id?: string | null;
11990
11837
  name: string;
11991
11838
  locked?: boolean | null;
11992
11839
  /** @enum {string|null} */
11993
- visible?: "all" | "manager" | "none" | null;
11840
+ visible?: "all" | "manager" | "owner" | "none" | null;
11994
11841
  /** @enum {string} */
11995
11842
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
11996
11843
  value: string;
@@ -11999,7 +11846,7 @@ export interface operations {
11999
11846
  name: string;
12000
11847
  locked?: boolean | null;
12001
11848
  /** @enum {string|null} */
12002
- visible?: "all" | "manager" | "none" | null;
11849
+ visible?: "all" | "manager" | "owner" | "none" | null;
12003
11850
  /** @enum {string} */
12004
11851
  type: "accounts";
12005
11852
  value: string[];
@@ -12010,13 +11857,13 @@ export interface operations {
12010
11857
  name: string;
12011
11858
  locked?: boolean | null;
12012
11859
  /** @enum {string|null} */
12013
- visible?: "all" | "manager" | "none" | null;
11860
+ visible?: "all" | "manager" | "owner" | "none" | null;
12014
11861
  columns: ({
12015
11862
  id?: string | null;
12016
11863
  name: string;
12017
11864
  locked?: boolean | null;
12018
11865
  /** @enum {string|null} */
12019
- visible?: "all" | "manager" | "none" | null;
11866
+ visible?: "all" | "manager" | "owner" | "none" | null;
12020
11867
  /** @enum {string} */
12021
11868
  type: "field";
12022
11869
  value: string;
@@ -12025,7 +11872,7 @@ export interface operations {
12025
11872
  name: string;
12026
11873
  locked?: boolean | null;
12027
11874
  /** @enum {string|null} */
12028
- visible?: "all" | "manager" | "none" | null;
11875
+ visible?: "all" | "manager" | "owner" | "none" | null;
12029
11876
  /** @enum {string} */
12030
11877
  type: "accounts";
12031
11878
  value: string[];
@@ -12049,13 +11896,13 @@ export interface operations {
12049
11896
  name: string;
12050
11897
  locked?: boolean | null;
12051
11898
  /** @enum {string|null} */
12052
- visible?: "all" | "manager" | "none" | null;
11899
+ visible?: "all" | "manager" | "owner" | "none" | null;
12053
11900
  columns: ({
12054
11901
  id?: string | null;
12055
11902
  name: string;
12056
11903
  locked?: boolean | null;
12057
11904
  /** @enum {string|null} */
12058
- visible?: "all" | "manager" | "none" | null;
11905
+ visible?: "all" | "manager" | "owner" | "none" | null;
12059
11906
  /** @enum {string} */
12060
11907
  type: "field";
12061
11908
  value: string;
@@ -12064,7 +11911,7 @@ export interface operations {
12064
11911
  name: string;
12065
11912
  locked?: boolean | null;
12066
11913
  /** @enum {string|null} */
12067
- visible?: "all" | "manager" | "none" | null;
11914
+ visible?: "all" | "manager" | "owner" | "none" | null;
12068
11915
  /** @enum {string} */
12069
11916
  type: "accounts";
12070
11917
  value: string[];
@@ -12446,13 +12293,13 @@ export interface operations {
12446
12293
  name: string;
12447
12294
  locked?: boolean | null;
12448
12295
  /** @enum {string|null} */
12449
- visible?: "all" | "manager" | "none" | null;
12296
+ visible?: "all" | "manager" | "owner" | "none" | null;
12450
12297
  columns: ({
12451
12298
  id?: string | null;
12452
12299
  name: string;
12453
12300
  locked?: boolean | null;
12454
12301
  /** @enum {string|null} */
12455
- visible?: "all" | "manager" | "none" | null;
12302
+ visible?: "all" | "manager" | "owner" | "none" | null;
12456
12303
  /** @enum {string} */
12457
12304
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
12458
12305
  value: string;
@@ -12461,7 +12308,7 @@ export interface operations {
12461
12308
  name: string;
12462
12309
  locked?: boolean | null;
12463
12310
  /** @enum {string|null} */
12464
- visible?: "all" | "manager" | "none" | null;
12311
+ visible?: "all" | "manager" | "owner" | "none" | null;
12465
12312
  /** @enum {string} */
12466
12313
  type: "accounts";
12467
12314
  value: string[];
@@ -12472,13 +12319,13 @@ export interface operations {
12472
12319
  name: string;
12473
12320
  locked?: boolean | null;
12474
12321
  /** @enum {string|null} */
12475
- visible?: "all" | "manager" | "none" | null;
12322
+ visible?: "all" | "manager" | "owner" | "none" | null;
12476
12323
  columns: ({
12477
12324
  id?: string | null;
12478
12325
  name: string;
12479
12326
  locked?: boolean | null;
12480
12327
  /** @enum {string|null} */
12481
- visible?: "all" | "manager" | "none" | null;
12328
+ visible?: "all" | "manager" | "owner" | "none" | null;
12482
12329
  /** @enum {string} */
12483
12330
  type: "field";
12484
12331
  value: string;
@@ -12487,7 +12334,7 @@ export interface operations {
12487
12334
  name: string;
12488
12335
  locked?: boolean | null;
12489
12336
  /** @enum {string|null} */
12490
- visible?: "all" | "manager" | "none" | null;
12337
+ visible?: "all" | "manager" | "owner" | "none" | null;
12491
12338
  /** @enum {string} */
12492
12339
  type: "accounts";
12493
12340
  value: string[];
@@ -12511,13 +12358,13 @@ export interface operations {
12511
12358
  name: string;
12512
12359
  locked?: boolean | null;
12513
12360
  /** @enum {string|null} */
12514
- visible?: "all" | "manager" | "none" | null;
12361
+ visible?: "all" | "manager" | "owner" | "none" | null;
12515
12362
  columns: ({
12516
12363
  id?: string | null;
12517
12364
  name: string;
12518
12365
  locked?: boolean | null;
12519
12366
  /** @enum {string|null} */
12520
- visible?: "all" | "manager" | "none" | null;
12367
+ visible?: "all" | "manager" | "owner" | "none" | null;
12521
12368
  /** @enum {string} */
12522
12369
  type: "field";
12523
12370
  value: string;
@@ -12526,7 +12373,7 @@ export interface operations {
12526
12373
  name: string;
12527
12374
  locked?: boolean | null;
12528
12375
  /** @enum {string|null} */
12529
- visible?: "all" | "manager" | "none" | null;
12376
+ visible?: "all" | "manager" | "owner" | "none" | null;
12530
12377
  /** @enum {string} */
12531
12378
  type: "accounts";
12532
12379
  value: string[];
@@ -13237,13 +13084,13 @@ export interface operations {
13237
13084
  name: string;
13238
13085
  locked?: boolean | null;
13239
13086
  /** @enum {string|null} */
13240
- visible?: "all" | "manager" | "none" | null;
13087
+ visible?: "all" | "manager" | "owner" | "none" | null;
13241
13088
  columns: ({
13242
13089
  id?: string | null;
13243
13090
  name: string;
13244
13091
  locked?: boolean | null;
13245
13092
  /** @enum {string|null} */
13246
- visible?: "all" | "manager" | "none" | null;
13093
+ visible?: "all" | "manager" | "owner" | "none" | null;
13247
13094
  /** @enum {string} */
13248
13095
  type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
13249
13096
  value: string;
@@ -13252,7 +13099,7 @@ export interface operations {
13252
13099
  name: string;
13253
13100
  locked?: boolean | null;
13254
13101
  /** @enum {string|null} */
13255
- visible?: "all" | "manager" | "none" | null;
13102
+ visible?: "all" | "manager" | "owner" | "none" | null;
13256
13103
  /** @enum {string} */
13257
13104
  type: "accounts";
13258
13105
  value: string[];
@@ -13263,13 +13110,13 @@ export interface operations {
13263
13110
  name: string;
13264
13111
  locked?: boolean | null;
13265
13112
  /** @enum {string|null} */
13266
- visible?: "all" | "manager" | "none" | null;
13113
+ visible?: "all" | "manager" | "owner" | "none" | null;
13267
13114
  columns: ({
13268
13115
  id?: string | null;
13269
13116
  name: string;
13270
13117
  locked?: boolean | null;
13271
13118
  /** @enum {string|null} */
13272
- visible?: "all" | "manager" | "none" | null;
13119
+ visible?: "all" | "manager" | "owner" | "none" | null;
13273
13120
  /** @enum {string} */
13274
13121
  type: "field";
13275
13122
  value: string;
@@ -13278,7 +13125,7 @@ export interface operations {
13278
13125
  name: string;
13279
13126
  locked?: boolean | null;
13280
13127
  /** @enum {string|null} */
13281
- visible?: "all" | "manager" | "none" | null;
13128
+ visible?: "all" | "manager" | "owner" | "none" | null;
13282
13129
  /** @enum {string} */
13283
13130
  type: "accounts";
13284
13131
  value: string[];
@@ -13302,13 +13149,13 @@ export interface operations {
13302
13149
  name: string;
13303
13150
  locked?: boolean | null;
13304
13151
  /** @enum {string|null} */
13305
- visible?: "all" | "manager" | "none" | null;
13152
+ visible?: "all" | "manager" | "owner" | "none" | null;
13306
13153
  columns: ({
13307
13154
  id?: string | null;
13308
13155
  name: string;
13309
13156
  locked?: boolean | null;
13310
13157
  /** @enum {string|null} */
13311
- visible?: "all" | "manager" | "none" | null;
13158
+ visible?: "all" | "manager" | "owner" | "none" | null;
13312
13159
  /** @enum {string} */
13313
13160
  type: "field";
13314
13161
  value: string;
@@ -13317,7 +13164,7 @@ export interface operations {
13317
13164
  name: string;
13318
13165
  locked?: boolean | null;
13319
13166
  /** @enum {string|null} */
13320
- visible?: "all" | "manager" | "none" | null;
13167
+ visible?: "all" | "manager" | "owner" | "none" | null;
13321
13168
  /** @enum {string} */
13322
13169
  type: "accounts";
13323
13170
  value: string[];
@@ -17661,6 +17508,7 @@ export interface operations {
17661
17508
  status?: "active" | "inactive";
17662
17509
  /** @enum {string} */
17663
17510
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
17511
+ uniqueRef?: string | null;
17664
17512
  id: string;
17665
17513
  offsetAccount?: {
17666
17514
  id: string;
@@ -17799,6 +17647,7 @@ export interface operations {
17799
17647
  last4?: string | null;
17800
17648
  currency?: string | null;
17801
17649
  } | null;
17650
+ uniqueRef?: string | null;
17802
17651
  };
17803
17652
  };
17804
17653
  };
@@ -17815,6 +17664,7 @@ export interface operations {
17815
17664
  status?: "active" | "inactive";
17816
17665
  /** @enum {string} */
17817
17666
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
17667
+ uniqueRef?: string | null;
17818
17668
  id: string;
17819
17669
  offsetAccount?: {
17820
17670
  id: string;
@@ -18030,6 +17880,7 @@ export interface operations {
18030
17880
  status?: "active" | "inactive";
18031
17881
  /** @enum {string} */
18032
17882
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
17883
+ uniqueRef?: string | null;
18033
17884
  id: string;
18034
17885
  offsetAccount?: {
18035
17886
  id: string;
@@ -18176,6 +18027,7 @@ export interface operations {
18176
18027
  last4?: string | null;
18177
18028
  currency?: string | null;
18178
18029
  } | null;
18030
+ uniqueRef?: string | null;
18179
18031
  };
18180
18032
  };
18181
18033
  };
@@ -18192,6 +18044,7 @@ export interface operations {
18192
18044
  status?: "active" | "inactive";
18193
18045
  /** @enum {string} */
18194
18046
  type: "ledger" | "bank" | "recurringFee" | "nonPosting";
18047
+ uniqueRef?: string | null;
18195
18048
  id: string;
18196
18049
  offsetAccount?: {
18197
18050
  id: string;
@@ -19217,6 +19070,8 @@ export interface operations {
19217
19070
  requestBody: {
19218
19071
  content: {
19219
19072
  "application/json": {
19073
+ /** Format: uuid */
19074
+ connectionId: string;
19220
19075
  data: {
19221
19076
  address?: {
19222
19077
  full?: string | null;
@@ -19244,14 +19099,12 @@ export interface operations {
19244
19099
  uniqueRef?: string | null;
19245
19100
  /** @enum {string|null} */
19246
19101
  status?: "active" | "inactive" | null;
19247
- invite?: boolean | null;
19248
19102
  /** Format: uuid */
19249
19103
  payoutAccountId?: string | null;
19250
19104
  /** Format: uuid */
19251
19105
  id?: string | null;
19106
+ invite?: boolean | null;
19252
19107
  }[];
19253
- /** Format: uuid */
19254
- connectionId: string;
19255
19108
  };
19256
19109
  };
19257
19110
  };
@@ -19288,7 +19141,6 @@ export interface operations {
19288
19141
  uniqueRef?: string | null;
19289
19142
  /** @enum {string} */
19290
19143
  status: "active" | "inactive";
19291
- invite?: boolean | null;
19292
19144
  /** Format: uuid */
19293
19145
  payoutAccountId?: string | null;
19294
19146
  /** Format: uuid */
@@ -19403,7 +19255,6 @@ export interface operations {
19403
19255
  uniqueRef?: string | null;
19404
19256
  /** @enum {string} */
19405
19257
  status: "active" | "inactive";
19406
- invite?: boolean | null;
19407
19258
  /** Format: uuid */
19408
19259
  payoutAccountId?: string | null;
19409
19260
  /** Format: uuid */
@@ -19517,7 +19368,6 @@ export interface operations {
19517
19368
  uniqueRef?: string | null;
19518
19369
  /** @enum {string|null} */
19519
19370
  status?: "active" | "inactive" | null;
19520
- invite?: boolean | null;
19521
19371
  /** Format: uuid */
19522
19372
  payoutAccountId?: string | null;
19523
19373
  };
@@ -19555,7 +19405,6 @@ export interface operations {
19555
19405
  uniqueRef?: string | null;
19556
19406
  /** @enum {string} */
19557
19407
  status: "active" | "inactive";
19558
- invite?: boolean | null;
19559
19408
  /** Format: uuid */
19560
19409
  payoutAccountId?: string | null;
19561
19410
  /** Format: uuid */
@@ -19752,7 +19601,6 @@ export interface operations {
19752
19601
  uniqueRef?: string | null;
19753
19602
  /** @enum {string} */
19754
19603
  status: "active" | "inactive";
19755
- invite?: boolean | null;
19756
19604
  /** Format: uuid */
19757
19605
  payoutAccountId?: string | null;
19758
19606
  /** Format: uuid */
@@ -19874,9 +19722,9 @@ export interface operations {
19874
19722
  uniqueRef?: string | null;
19875
19723
  /** @enum {string|null} */
19876
19724
  status?: "active" | "inactive" | null;
19877
- invite?: boolean | null;
19878
19725
  /** Format: uuid */
19879
19726
  payoutAccountId?: string | null;
19727
+ invite?: boolean | null;
19880
19728
  };
19881
19729
  };
19882
19730
  };
@@ -19912,7 +19760,6 @@ export interface operations {
19912
19760
  uniqueRef?: string | null;
19913
19761
  /** @enum {string} */
19914
19762
  status: "active" | "inactive";
19915
- invite?: boolean | null;
19916
19763
  /** Format: uuid */
19917
19764
  payoutAccountId?: string | null;
19918
19765
  /** Format: uuid */
@@ -21263,7 +21110,7 @@ export interface operations {
21263
21110
  };
21264
21111
  };
21265
21112
  };
21266
- getStoreAction: {
21113
+ getDispatchAction: {
21267
21114
  parameters: {
21268
21115
  query?: never;
21269
21116
  header?: {
@@ -21297,7 +21144,7 @@ export interface operations {
21297
21144
  /** Format: uuid */
21298
21145
  id: string;
21299
21146
  /** @enum {string} */
21300
- 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";
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";
21301
21148
  payload?: unknown;
21302
21149
  /** @enum {string} */
21303
21150
  status: "pending" | "claimed" | "running" | "completed" | "failed" | "dead_letter";
@@ -21375,260 +21222,6 @@ export interface operations {
21375
21222
  };
21376
21223
  };
21377
21224
  };
21378
- getReviews: {
21379
- parameters: {
21380
- query?: {
21381
- date?: string;
21382
- connectionId?: string;
21383
- type?: string;
21384
- listingId?: string;
21385
- listingConnectionId?: string;
21386
- limit?: number;
21387
- page?: number;
21388
- };
21389
- header?: {
21390
- "X-Team-Id"?: string;
21391
- };
21392
- path?: never;
21393
- cookie?: never;
21394
- };
21395
- requestBody?: never;
21396
- responses: {
21397
- /** @description Successful response */
21398
- 200: {
21399
- headers: {
21400
- [name: string]: unknown;
21401
- };
21402
- content: {
21403
- "application/json": {
21404
- data: {
21405
- id: string;
21406
- uniqueRef: string;
21407
- comments?: string | null;
21408
- privateFeedback?: string | null;
21409
- totalRating: number;
21410
- tags: {
21411
- type: string;
21412
- description: string;
21413
- }[];
21414
- ratings: {
21415
- type: string;
21416
- comments: string;
21417
- rating?: number | null;
21418
- }[];
21419
- reservation: {
21420
- currency: string | null;
21421
- uniqueRef?: string | null;
21422
- guestName?: string | null;
21423
- bookerName?: string | null;
21424
- checkIn?: string | null;
21425
- checkOut?: string | null;
21426
- generalLedgerPostingAt?: string | null;
21427
- bookedAt?: string | null;
21428
- cancelledAt?: string | null;
21429
- bookingPlatform?: string | null;
21430
- confirmationCode?: string | null;
21431
- pmsReferenceCode?: string | null;
21432
- guests?: number | null;
21433
- userdata: {
21434
- [key: string]: unknown;
21435
- } | null;
21436
- /** Format: uuid */
21437
- id: string;
21438
- issues: ({
21439
- /** @enum {string} */
21440
- code: "unassignedAccount";
21441
- /** @enum {string} */
21442
- severity: "error";
21443
- context: {
21444
- accountIds: string[];
21445
- };
21446
- } | {
21447
- /** @enum {string} */
21448
- code: "priorToStartDate";
21449
- /** @enum {string} */
21450
- severity: "warning";
21451
- context: {
21452
- startDate?: string | null;
21453
- };
21454
- } | {
21455
- /** @enum {string} */
21456
- code: "inactiveListing";
21457
- /** @enum {string} */
21458
- severity: "warning";
21459
- context: {
21460
- startDate?: string | null;
21461
- };
21462
- } | {
21463
- /** @enum {string} */
21464
- code: "inactiveConnection";
21465
- /** @enum {string} */
21466
- severity: "warning";
21467
- context: Record<string, never>;
21468
- })[];
21469
- connection?: {
21470
- /** Format: uuid */
21471
- id: string;
21472
- name: string;
21473
- /** @enum {string} */
21474
- status: "active" | "inactive";
21475
- uniqueRef?: string | null;
21476
- app: {
21477
- id: string;
21478
- name: string;
21479
- icon?: string | null;
21480
- importers?: string[] | null;
21481
- extractors?: string[] | null;
21482
- };
21483
- } | null;
21484
- nights?: number | null;
21485
- /** @enum {string|null} */
21486
- status?: "booked" | "canceled" | "inactive" | null;
21487
- listing?: {
21488
- /** Format: uuid */
21489
- id: string;
21490
- name: string;
21491
- address?: {
21492
- full?: string | null;
21493
- line1?: string | null;
21494
- line2?: string | null;
21495
- city?: string | null;
21496
- /** @deprecated */
21497
- state?: string | null;
21498
- postalCode?: string | null;
21499
- stateCode?: string | null;
21500
- countryCode?: string | null;
21501
- } | null;
21502
- uniqueRef?: string | null;
21503
- } | null;
21504
- listingConnection?: {
21505
- /** Format: uuid */
21506
- id: string;
21507
- name: string;
21508
- uniqueRef?: string | null;
21509
- } | null;
21510
- payment: {
21511
- expected: number;
21512
- received: number;
21513
- status: ("unpaid" | "underpaid" | "overpaid" | "paid") | "coHost";
21514
- };
21515
- source?: {
21516
- /** Format: uuid */
21517
- id: string;
21518
- type: string;
21519
- /** @enum {string|null} */
21520
- status?: "active" | "inactive" | null;
21521
- } | null;
21522
- lines: {
21523
- /** Format: uuid */
21524
- id: string;
21525
- uniqueRef?: string | null;
21526
- type: string;
21527
- description?: string | null;
21528
- /** @description Value in cents (100 = 1€) */
21529
- amount: number;
21530
- connectionId?: string | null;
21531
- metadata?: {
21532
- [key: string]: unknown;
21533
- } | null;
21534
- account?: {
21535
- id: string;
21536
- name: string;
21537
- uniqueRef?: string | null;
21538
- /** @enum {string} */
21539
- status: "active" | "inactive";
21540
- } | null;
21541
- isExcluded?: boolean | null;
21542
- }[];
21543
- /** @description Adjustments are manually added financial lines that are not part of the booking platform */
21544
- adjustments: {
21545
- /** Format: uuid */
21546
- id: string;
21547
- type?: string;
21548
- description?: string | null;
21549
- /** @description Value in cents (100 = 1€) */
21550
- amount: number;
21551
- metadata?: {
21552
- [key: string]: unknown;
21553
- } | null;
21554
- /** @enum {string|null} */
21555
- party?: "owners" | "manager" | null;
21556
- account?: {
21557
- id: string;
21558
- name: string;
21559
- uniqueRef?: string | null;
21560
- /** @enum {string} */
21561
- status: "active" | "inactive";
21562
- } | null;
21563
- recurringFee?: {
21564
- id: string;
21565
- uniqueRef: string;
21566
- name: string;
21567
- /** @enum {string} */
21568
- type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
21569
- } | null;
21570
- }[];
21571
- };
21572
- }[];
21573
- pagination: {
21574
- /** @default 100 */
21575
- limit: number;
21576
- /** @default 1 */
21577
- page: number;
21578
- total: number;
21579
- totalPage: number;
21580
- nextPage?: number;
21581
- };
21582
- };
21583
- };
21584
- };
21585
- /** @description Invalid input data */
21586
- 400: {
21587
- headers: {
21588
- [name: string]: unknown;
21589
- };
21590
- content: {
21591
- "application/json": components["schemas"]["error.BAD_REQUEST"];
21592
- };
21593
- };
21594
- /** @description Authorization not provided */
21595
- 401: {
21596
- headers: {
21597
- [name: string]: unknown;
21598
- };
21599
- content: {
21600
- "application/json": components["schemas"]["error.UNAUTHORIZED"];
21601
- };
21602
- };
21603
- /** @description Insufficient access */
21604
- 403: {
21605
- headers: {
21606
- [name: string]: unknown;
21607
- };
21608
- content: {
21609
- "application/json": components["schemas"]["error.FORBIDDEN"];
21610
- };
21611
- };
21612
- /** @description Not found */
21613
- 404: {
21614
- headers: {
21615
- [name: string]: unknown;
21616
- };
21617
- content: {
21618
- "application/json": components["schemas"]["error.NOT_FOUND"];
21619
- };
21620
- };
21621
- /** @description Internal server error */
21622
- 500: {
21623
- headers: {
21624
- [name: string]: unknown;
21625
- };
21626
- content: {
21627
- "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
21628
- };
21629
- };
21630
- };
21631
- };
21632
21225
  plaidConnectComplete: {
21633
21226
  parameters: {
21634
21227
  query?: never;
@@ -22702,22 +22295,31 @@ export interface operations {
22702
22295
  };
22703
22296
  getJournalEntriesReport: {
22704
22297
  parameters: {
22705
- query: {
22706
- startAt: string;
22707
- endAt: string;
22298
+ query?: {
22299
+ /** @description comma separated journal entry ids */
22300
+ ids?: string;
22301
+ txnCode?: string;
22302
+ published?: boolean;
22303
+ status?: "active" | "inactive";
22304
+ startAt?: string;
22305
+ endAt?: string;
22708
22306
  search?: string;
22709
22307
  date?: string;
22710
22308
  amount?: string;
22711
22309
  isDateRangeEndInclusive?: boolean;
22712
- /** @description listing uuids comma separated or "unmapped" */
22310
+ reservationIds?: string;
22311
+ transactionIds?: string;
22312
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
22313
+ currency?: string;
22314
+ /** @description listing ids comma separated or "unmapped" */
22713
22315
  listingIds?: string;
22714
- /** @description comma separated accounts */
22316
+ /** @description account ids comma separated accounts or "unmapped" */
22715
22317
  accountIds?: string;
22716
22318
  /** @description comma separated categories */
22717
22319
  categoryIds?: string;
22718
- classification?: ("asset" | "liability" | "revenue" | "expense") | ("asset" | "liability" | "revenue" | "expense")[];
22719
- type?: ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment") | ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment")[];
22720
- relation?: "reservation" | "deposit" | "expense" | "recurringFee" | "transfer";
22320
+ classifications?: ("asset" | "liability" | "revenue" | "expense") | ("asset" | "liability" | "revenue" | "expense")[];
22321
+ types?: ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment") | ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment")[];
22322
+ entityTypes?: ("reservation" | "deposit" | "expense" | "recurringFee" | "transfer") | ("reservation" | "deposit" | "expense" | "recurringFee" | "transfer")[];
22721
22323
  party?: "owners" | "manager";
22722
22324
  limit?: number;
22723
22325
  page?: number;
@@ -22739,6 +22341,9 @@ export interface operations {
22739
22341
  "application/json": {
22740
22342
  data: {
22741
22343
  id: string;
22344
+ /** @enum {string} */
22345
+ active: "active" | "inactive";
22346
+ txnCode: string;
22742
22347
  txnAt: string;
22743
22348
  description: string;
22744
22349
  centTotal: number;
@@ -23030,21 +22635,31 @@ export interface operations {
23030
22635
  };
23031
22636
  getManagerStatementReportJournalEntries: {
23032
22637
  parameters: {
23033
- query: {
23034
- startAt: string;
23035
- endAt: string;
22638
+ query?: {
22639
+ /** @description comma separated journal entry ids */
22640
+ ids?: string;
22641
+ txnCode?: string;
22642
+ published?: boolean;
22643
+ status?: "active" | "inactive";
22644
+ startAt?: string;
22645
+ endAt?: string;
23036
22646
  search?: string;
23037
22647
  date?: string;
23038
22648
  amount?: string;
23039
- /** @description Use a listing uuid or "unmapped" */
22649
+ isDateRangeEndInclusive?: boolean;
22650
+ reservationIds?: string;
22651
+ transactionIds?: string;
22652
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
22653
+ currency?: string;
22654
+ /** @description listing ids comma separated or "unmapped" */
23040
22655
  listingIds?: string;
23041
- /** @description comma separated accounts */
22656
+ /** @description account ids comma separated accounts or "unmapped" */
23042
22657
  accountIds?: string;
23043
22658
  /** @description comma separated categories */
23044
22659
  categoryIds?: string;
23045
- classification?: ("asset" | "liability" | "revenue" | "expense") | ("asset" | "liability" | "revenue" | "expense")[];
23046
- type?: ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment") | ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment")[];
23047
- relation?: "reservation" | "deposit" | "expense" | "recurringFee" | "transfer";
22660
+ classifications?: ("asset" | "liability" | "revenue" | "expense") | ("asset" | "liability" | "revenue" | "expense")[];
22661
+ types?: ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment") | ("reservation" | "reservation_adjustment" | "reservation_adjustment_cancellation" | "reservation_fee" | "reservation_fee_adjustment" | "reservation_fee_tax" | "transaction_transfer" | "transaction_transfer_line" | "reservation_line" | "transaction_deposit" | "transaction_deposit_channelFee" | "transaction_deposit_line" | "transaction_deposit_coHost" | "transaction_deposit_merchantFee" | "transaction_deposit_vat" | "transaction_deposit_reserve" | "transaction_deposit_openingBalance" | "transaction_deposit_openingAdvance" | "transaction_deposit_refund" | "transaction_expense" | "transaction_expense_line" | "transaction_expense_markup" | "transaction_expense_markup_tax" | "transaction_expense_payment")[];
22662
+ entityTypes?: ("reservation" | "deposit" | "expense" | "recurringFee" | "transfer") | ("reservation" | "deposit" | "expense" | "recurringFee" | "transfer")[];
23048
22663
  limit?: number;
23049
22664
  page?: number;
23050
22665
  };
@@ -23065,6 +22680,9 @@ export interface operations {
23065
22680
  "application/json": {
23066
22681
  data: {
23067
22682
  id: string;
22683
+ /** @enum {string} */
22684
+ active: "active" | "inactive";
22685
+ txnCode: string;
23068
22686
  txnAt: string;
23069
22687
  description: string;
23070
22688
  centTotal: number;
@@ -23371,8 +22989,10 @@ export interface operations {
23371
22989
  getOwnerStatementSummariesReport: {
23372
22990
  parameters: {
23373
22991
  query: {
23374
- /** @description Year in format YYYY */
23375
- year: number;
22992
+ startAt: string;
22993
+ endAt: string;
22994
+ /** @description comma separated listings */
22995
+ listingIds?: string;
23376
22996
  };
23377
22997
  header?: {
23378
22998
  "X-Team-Id"?: string;
@@ -23392,10 +23012,10 @@ export interface operations {
23392
23012
  data: {
23393
23013
  contact: {
23394
23014
  contactId: string;
23395
- name?: string | null;
23396
- firstName?: string | null;
23397
- email?: string | null;
23398
- phone?: string | null;
23015
+ name?: string;
23016
+ firstName?: string;
23017
+ email?: string;
23018
+ phone?: string;
23399
23019
  };
23400
23020
  currency: string;
23401
23021
  financials: {
@@ -23461,8 +23081,10 @@ export interface operations {
23461
23081
  getOwnerStatementSummariesReportCsv: {
23462
23082
  parameters: {
23463
23083
  query: {
23464
- /** @description Year in format YYYY */
23465
- year: number;
23084
+ startAt: string;
23085
+ endAt: string;
23086
+ /** @description comma separated listings */
23087
+ listingIds?: string;
23466
23088
  };
23467
23089
  header?: {
23468
23090
  "X-Team-Id"?: string;
@@ -23534,10 +23156,12 @@ export interface operations {
23534
23156
  parameters: {
23535
23157
  query: {
23536
23158
  view: "listing" | "month" | "reservation" | "bookingChannel";
23537
- /** @description Year in format YYYY */
23538
- year: number;
23539
- listingId?: string;
23159
+ startAt: string;
23160
+ endAt: string;
23161
+ /** @description comma separated listings */
23162
+ listingIds?: string;
23540
23163
  currency?: string;
23164
+ viewAs?: "owner" | "manager";
23541
23165
  };
23542
23166
  header?: {
23543
23167
  "X-Team-Id"?: string;
@@ -23556,30 +23180,83 @@ export interface operations {
23556
23180
  };
23557
23181
  content: {
23558
23182
  "application/json": {
23183
+ currency: string;
23184
+ contact: {
23185
+ contactId: string;
23186
+ name?: string;
23187
+ firstName?: string;
23188
+ email?: string;
23189
+ phone?: string;
23190
+ };
23191
+ financials: {
23192
+ balanceStart: number;
23193
+ netRevenue: number;
23194
+ expenses: number;
23195
+ transfers: number;
23196
+ netIncome: number;
23197
+ currentBalance: number;
23198
+ balanceEnd: number;
23199
+ };
23559
23200
  netRevenueSection: {
23560
23201
  title: string;
23561
23202
  rows: {
23562
23203
  title: string;
23563
- statementIds: string[];
23204
+ statementIds?: string[];
23564
23205
  columns: {
23565
23206
  title: string;
23566
23207
  value: number | string;
23567
23208
  formatted: string;
23568
23209
  }[];
23569
23210
  }[];
23211
+ subtotal?: {
23212
+ title: string;
23213
+ columns: {
23214
+ title: string;
23215
+ value: number | string;
23216
+ formatted: string;
23217
+ }[];
23218
+ };
23570
23219
  };
23571
23220
  otherSections: {
23572
23221
  title: string;
23573
23222
  rows: {
23574
23223
  title: string;
23575
- statementIds: string[];
23224
+ statementIds?: string[];
23576
23225
  columns: {
23577
23226
  title: string;
23578
23227
  value: number | string;
23579
23228
  formatted: string;
23580
23229
  }[];
23581
23230
  }[];
23231
+ subtotal?: {
23232
+ title: string;
23233
+ columns: {
23234
+ title: string;
23235
+ value: number | string;
23236
+ formatted: string;
23237
+ }[];
23238
+ };
23582
23239
  }[];
23240
+ transfersSection?: {
23241
+ title: string;
23242
+ rows: {
23243
+ title: string;
23244
+ statementIds?: string[];
23245
+ columns: {
23246
+ title: string;
23247
+ value: number | string;
23248
+ formatted: string;
23249
+ }[];
23250
+ }[];
23251
+ subtotal?: {
23252
+ title: string;
23253
+ columns: {
23254
+ title: string;
23255
+ value: number | string;
23256
+ formatted: string;
23257
+ }[];
23258
+ };
23259
+ };
23583
23260
  };
23584
23261
  };
23585
23262
  };
@@ -23634,10 +23311,12 @@ export interface operations {
23634
23311
  parameters: {
23635
23312
  query: {
23636
23313
  view: "listing" | "month" | "reservation" | "bookingChannel";
23637
- /** @description Year in format YYYY */
23638
- year: number;
23639
- listingId?: string;
23314
+ startAt: string;
23315
+ endAt: string;
23316
+ /** @description comma separated listings */
23317
+ listingIds?: string;
23640
23318
  currency?: string;
23319
+ viewAs?: "owner" | "manager";
23641
23320
  };
23642
23321
  header?: {
23643
23322
  "X-Team-Id"?: string;
@@ -23710,9 +23389,9 @@ export interface operations {
23710
23389
  getCalendar: {
23711
23390
  parameters: {
23712
23391
  query: {
23392
+ listingId: string;
23713
23393
  startDate: string;
23714
23394
  endDate: string;
23715
- listingId: string;
23716
23395
  };
23717
23396
  header?: {
23718
23397
  "X-Team-Id"?: string;
@@ -23734,7 +23413,6 @@ export interface operations {
23734
23413
  /** @enum {string} */
23735
23414
  blockReason: "ownerBlock" | "maintenance";
23736
23415
  description?: string;
23737
- id?: string;
23738
23416
  user?: {
23739
23417
  email: string;
23740
23418
  firstName: string;
@@ -23804,9 +23482,9 @@ export interface operations {
23804
23482
  requestBody: {
23805
23483
  content: {
23806
23484
  "application/json": {
23485
+ listingId: string;
23807
23486
  startDate: string;
23808
23487
  endDate: string;
23809
- listingId: string;
23810
23488
  description?: string;
23811
23489
  };
23812
23490
  };
@@ -23824,7 +23502,6 @@ export interface operations {
23824
23502
  /** @enum {string} */
23825
23503
  blockReason: "ownerBlock" | "maintenance";
23826
23504
  description?: string;
23827
- id?: string;
23828
23505
  user?: {
23829
23506
  email: string;
23830
23507
  firstName: string;
@@ -23879,6 +23556,7 @@ export interface operations {
23879
23556
  listingId: string;
23880
23557
  startDate: string;
23881
23558
  endDate: string;
23559
+ description?: string;
23882
23560
  };
23883
23561
  header?: {
23884
23562
  "X-Team-Id"?: string;
@@ -23900,7 +23578,6 @@ export interface operations {
23900
23578
  /** @enum {string} */
23901
23579
  blockReason: "ownerBlock" | "maintenance";
23902
23580
  description?: string;
23903
- id?: string;
23904
23581
  user?: {
23905
23582
  email: string;
23906
23583
  firstName: string;
@@ -24003,7 +23680,7 @@ export interface operations {
24003
23680
  * @description Internal semantic type
24004
23681
  * @enum {string}
24005
23682
  */
24006
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23683
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24007
23684
  /** @description Optional JSONB filter for internal data */
24008
23685
  filter?: string;
24009
23686
  };
@@ -24027,7 +23704,7 @@ export interface operations {
24027
23704
  * @description Semantic type of the setting value
24028
23705
  * @enum {string}
24029
23706
  */
24030
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23707
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24031
23708
  /** @description Optional JSONB filter for available values */
24032
23709
  filter?: string;
24033
23710
  };
@@ -24124,7 +23801,7 @@ export interface operations {
24124
23801
  * @description Internal semantic type
24125
23802
  * @enum {string}
24126
23803
  */
24127
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23804
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24128
23805
  /** @description Optional JSONB filter for internal data */
24129
23806
  filter?: string;
24130
23807
  };
@@ -24148,7 +23825,7 @@ export interface operations {
24148
23825
  * @description Semantic type of the setting value
24149
23826
  * @enum {string}
24150
23827
  */
24151
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23828
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24152
23829
  /** @description Optional JSONB filter for available values */
24153
23830
  filter?: string;
24154
23831
  };
@@ -24248,7 +23925,7 @@ export interface operations {
24248
23925
  * @description Internal semantic type
24249
23926
  * @enum {string}
24250
23927
  */
24251
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23928
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24252
23929
  /** @description Optional JSONB filter for internal data */
24253
23930
  filter?: string;
24254
23931
  };
@@ -24272,7 +23949,7 @@ export interface operations {
24272
23949
  * @description Semantic type of the setting value
24273
23950
  * @enum {string}
24274
23951
  */
24275
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23952
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24276
23953
  /** @description Optional JSONB filter for available values */
24277
23954
  filter?: string;
24278
23955
  };
@@ -24359,7 +24036,7 @@ export interface operations {
24359
24036
  * @description Internal semantic type
24360
24037
  * @enum {string}
24361
24038
  */
24362
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24039
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24363
24040
  /** @description Optional JSONB filter for internal data */
24364
24041
  filter?: string;
24365
24042
  };
@@ -24383,7 +24060,7 @@ export interface operations {
24383
24060
  * @description Semantic type of the setting value
24384
24061
  * @enum {string}
24385
24062
  */
24386
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24063
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24387
24064
  /** @description Optional JSONB filter for available values */
24388
24065
  filter?: string;
24389
24066
  };
@@ -24423,7 +24100,7 @@ export interface operations {
24423
24100
  * @description Internal semantic type
24424
24101
  * @enum {string}
24425
24102
  */
24426
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24103
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24427
24104
  /** @description Optional JSONB filter for internal data */
24428
24105
  filter?: string;
24429
24106
  };
@@ -24447,7 +24124,7 @@ export interface operations {
24447
24124
  * @description Semantic type of the setting value
24448
24125
  * @enum {string}
24449
24126
  */
24450
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24127
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24451
24128
  /** @description Optional JSONB filter for available values */
24452
24129
  filter?: string;
24453
24130
  };