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