@vrplatform/api 1.3.1-1706 → 1.3.1-1723

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.
@@ -359,7 +359,8 @@ export interface paths {
359
359
  /** @description Sync connection by uniqueRef and type */
360
360
  get: operations["syncConnection"];
361
361
  put?: never;
362
- post?: never;
362
+ /** @description Sync connection by uniqueRef and type */
363
+ post: operations["syncConnectionPost"];
363
364
  delete?: never;
364
365
  options?: never;
365
366
  head?: never;
@@ -3506,6 +3507,18 @@ export interface operations {
3506
3507
  shortRef?: string | null;
3507
3508
  } | null;
3508
3509
  matchStatus?: string | null;
3510
+ appliedAmount?: {
3511
+ taxBehavior?: ("excluded" | "included") | null;
3512
+ taxRate?: {
3513
+ id: string;
3514
+ name: string;
3515
+ /**
3516
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
3517
+ * @example 100000
3518
+ */
3519
+ basisPoints: number;
3520
+ } | null;
3521
+ } | null;
3509
3522
  markup?: {
3510
3523
  amount?: number | null;
3511
3524
  taxBehavior?: ("excluded" | "included") | null;
@@ -6475,11 +6488,197 @@ export interface operations {
6475
6488
  };
6476
6489
  };
6477
6490
  };
6491
+ syncConnectionPost: {
6492
+ parameters: {
6493
+ query?: never;
6494
+ header?: never;
6495
+ path: {
6496
+ id: string;
6497
+ };
6498
+ cookie?: never;
6499
+ };
6500
+ requestBody?: {
6501
+ content: {
6502
+ "application/json": {
6503
+ uniqueRef: string;
6504
+ /** @enum {string} */
6505
+ type: "reservation" | "listing" | "payout";
6506
+ };
6507
+ };
6508
+ };
6509
+ responses: {
6510
+ /** @description Successful response */
6511
+ 200: {
6512
+ headers: {
6513
+ [name: string]: unknown;
6514
+ };
6515
+ content: {
6516
+ "application/json": (({
6517
+ /** Format: uuid */
6518
+ id: string;
6519
+ /** @constant */
6520
+ status: "completed";
6521
+ message: string;
6522
+ /** @constant */
6523
+ type: "reservation";
6524
+ /** Format: uuid */
6525
+ reservationId: string;
6526
+ } | {
6527
+ /** Format: uuid */
6528
+ id: string;
6529
+ /** @constant */
6530
+ status: "completed";
6531
+ message: string;
6532
+ /** @constant */
6533
+ type: "listing";
6534
+ /** Format: uuid */
6535
+ listingId: string;
6536
+ } | {
6537
+ /** Format: uuid */
6538
+ id: string;
6539
+ /** @constant */
6540
+ status: "completed";
6541
+ message: string;
6542
+ /** @constant */
6543
+ type: "payout";
6544
+ /** Format: uuid */
6545
+ paymentId: string;
6546
+ }) | {
6547
+ /** Format: uuid */
6548
+ id: string;
6549
+ /** @constant */
6550
+ status: "failed";
6551
+ message: string;
6552
+ /** @enum {string} */
6553
+ type: "reservation" | "listing" | "payout";
6554
+ }) | (({
6555
+ /** Format: uuid */
6556
+ id: string;
6557
+ /** @constant */
6558
+ status: "completed";
6559
+ message: string;
6560
+ /** @constant */
6561
+ type: "reservation";
6562
+ /** Format: uuid */
6563
+ reservationId: string;
6564
+ } | {
6565
+ /** Format: uuid */
6566
+ id: string;
6567
+ /** @constant */
6568
+ status: "completed";
6569
+ message: string;
6570
+ /** @constant */
6571
+ type: "listing";
6572
+ /** Format: uuid */
6573
+ listingId: string;
6574
+ } | {
6575
+ /** Format: uuid */
6576
+ id: string;
6577
+ /** @constant */
6578
+ status: "completed";
6579
+ message: string;
6580
+ /** @constant */
6581
+ type: "payout";
6582
+ /** Format: uuid */
6583
+ paymentId: string;
6584
+ }) | {
6585
+ /** Format: uuid */
6586
+ id: string;
6587
+ /** @constant */
6588
+ status: "failed";
6589
+ message: string;
6590
+ /** @enum {string} */
6591
+ type: "reservation" | "listing" | "payout";
6592
+ })[];
6593
+ };
6594
+ };
6595
+ /** @description Bad request */
6596
+ 400: {
6597
+ headers: {
6598
+ [name: string]: unknown;
6599
+ };
6600
+ content: {
6601
+ "application/json": {
6602
+ code: string;
6603
+ message: string;
6604
+ issues?: {
6605
+ message: string;
6606
+ }[];
6607
+ context?: unknown;
6608
+ };
6609
+ };
6610
+ };
6611
+ /** @description Unauthorized */
6612
+ 401: {
6613
+ headers: {
6614
+ [name: string]: unknown;
6615
+ };
6616
+ content: {
6617
+ "application/json": {
6618
+ code: string;
6619
+ message: string;
6620
+ issues?: {
6621
+ message: string;
6622
+ }[];
6623
+ context?: unknown;
6624
+ };
6625
+ };
6626
+ };
6627
+ /** @description Forbidden */
6628
+ 403: {
6629
+ headers: {
6630
+ [name: string]: unknown;
6631
+ };
6632
+ content: {
6633
+ "application/json": {
6634
+ code: string;
6635
+ message: string;
6636
+ issues?: {
6637
+ message: string;
6638
+ }[];
6639
+ context?: unknown;
6640
+ };
6641
+ };
6642
+ };
6643
+ /** @description Not found */
6644
+ 404: {
6645
+ headers: {
6646
+ [name: string]: unknown;
6647
+ };
6648
+ content: {
6649
+ "application/json": {
6650
+ code: string;
6651
+ message: string;
6652
+ issues?: {
6653
+ message: string;
6654
+ }[];
6655
+ context?: unknown;
6656
+ };
6657
+ };
6658
+ };
6659
+ /** @description Internal server error */
6660
+ 500: {
6661
+ headers: {
6662
+ [name: string]: unknown;
6663
+ };
6664
+ content: {
6665
+ "application/json": {
6666
+ code: string;
6667
+ message: string;
6668
+ issues?: {
6669
+ message: string;
6670
+ }[];
6671
+ context?: unknown;
6672
+ };
6673
+ };
6674
+ };
6675
+ };
6676
+ };
6478
6677
  getContacts: {
6479
6678
  parameters: {
6480
6679
  query?: {
6481
6680
  search?: string;
6482
- status?: ("active" | "inactive") | "pending";
6681
+ status?: "active" | "inactive" | "pending";
6483
6682
  type?: "owner" | "vendor";
6484
6683
  companyType?: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
6485
6684
  isIndividual?: boolean;
@@ -6523,7 +6722,8 @@ export interface operations {
6523
6722
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
6524
6723
  taxIdentifier?: string | null;
6525
6724
  uniqueRef?: string | null;
6526
- status: ("active" | "inactive") | "pending";
6725
+ /** @enum {string} */
6726
+ status: "active" | "inactive" | "pending";
6527
6727
  payoutAccountId?: string | null;
6528
6728
  /** Format: uuid */
6529
6729
  id: string;
@@ -6708,7 +6908,8 @@ export interface operations {
6708
6908
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
6709
6909
  taxIdentifier?: string | null;
6710
6910
  uniqueRef?: string | null;
6711
- status: ("active" | "inactive") | "pending";
6911
+ /** @enum {string} */
6912
+ status: "active" | "inactive" | "pending";
6712
6913
  payoutAccountId?: string | null;
6713
6914
  /** Format: uuid */
6714
6915
  id: string;
@@ -6969,7 +7170,7 @@ export interface operations {
6969
7170
  parameters: {
6970
7171
  query?: {
6971
7172
  search?: string;
6972
- status?: ("active" | "inactive") | "pending";
7173
+ status?: "active" | "inactive" | "pending";
6973
7174
  type?: "owner" | "vendor";
6974
7175
  companyType?: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
6975
7176
  isIndividual?: boolean;
@@ -7114,7 +7315,8 @@ export interface operations {
7114
7315
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
7115
7316
  taxIdentifier?: string | null;
7116
7317
  uniqueRef?: string | null;
7117
- status: ("active" | "inactive") | "pending";
7318
+ /** @enum {string} */
7319
+ status: "active" | "inactive" | "pending";
7118
7320
  payoutAccountId?: string | null;
7119
7321
  /** Format: uuid */
7120
7322
  id: string;
@@ -7290,7 +7492,8 @@ export interface operations {
7290
7492
  companyType?: ("c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate") | null;
7291
7493
  taxIdentifier?: string | null;
7292
7494
  uniqueRef?: string | null;
7293
- status: ("active" | "inactive") | "pending";
7495
+ /** @enum {string} */
7496
+ status: "active" | "inactive" | "pending";
7294
7497
  payoutAccountId?: string | null;
7295
7498
  /** Format: uuid */
7296
7499
  id: string;
@@ -17208,7 +17411,7 @@ export interface operations {
17208
17411
  /** Format: uuid */
17209
17412
  ownershipPeriodId: string;
17210
17413
  /** @enum {string} */
17211
- status: "draft" | "inReview" | "void" | "published";
17414
+ status: "draft" | "inReview" | "published";
17212
17415
  /** @description Date in format YYYY-MM */
17213
17416
  month: string;
17214
17417
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
@@ -17242,7 +17445,7 @@ export interface operations {
17242
17445
  /** Format: uuid */
17243
17446
  ownershipPeriodId: string;
17244
17447
  /** @enum {string} */
17245
- status: "draft" | "inReview" | "void" | "published";
17448
+ status: "draft" | "inReview" | "published";
17246
17449
  /** @description Date in format YYYY-MM */
17247
17450
  month: string;
17248
17451
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
@@ -17275,7 +17478,7 @@ export interface operations {
17275
17478
  /** Format: uuid */
17276
17479
  ownershipPeriodId: string;
17277
17480
  /** @enum {string} */
17278
- status: "draft" | "inReview" | "void" | "published";
17481
+ status: "draft" | "inReview" | "published";
17279
17482
  /** @description Date in format YYYY-MM */
17280
17483
  month: string;
17281
17484
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
@@ -18509,7 +18712,7 @@ export interface operations {
18509
18712
  type: "listings";
18510
18713
  listings: {
18511
18714
  id: string;
18512
- listingId: string;
18715
+ listingId: string | null;
18513
18716
  ownershipPeriodId: string | null;
18514
18717
  name: string;
18515
18718
  total: number;
@@ -22940,7 +23143,7 @@ export interface operations {
22940
23143
  /** @description Date in format YYYY-MM */
22941
23144
  month?: string;
22942
23145
  search?: string;
22943
- status?: ("draft" | "inReview" | "void" | "published") | "all";
23146
+ status?: ("draft" | "inReview" | "published") | "all";
22944
23147
  /** @description comma separated owners */
22945
23148
  ownerIds?: string;
22946
23149
  /** @description comma separated owners */
@@ -23137,7 +23340,7 @@ export interface operations {
23137
23340
  uniqueRef: string | null;
23138
23341
  };
23139
23342
  /** @enum {string} */
23140
- status: "draft" | "inReview" | "void" | "published";
23343
+ status: "draft" | "inReview" | "published";
23141
23344
  ownership: {
23142
23345
  id: string;
23143
23346
  startAt: string;
@@ -23480,7 +23683,7 @@ export interface operations {
23480
23683
  uniqueRef: string | null;
23481
23684
  };
23482
23685
  /** @enum {string} */
23483
- status: "draft" | "inReview" | "void" | "published";
23686
+ status: "draft" | "inReview" | "published";
23484
23687
  ownership: {
23485
23688
  id: string;
23486
23689
  startAt: string;
@@ -24028,7 +24231,7 @@ export interface operations {
24028
24231
  uniqueRef: string | null;
24029
24232
  };
24030
24233
  /** @enum {string} */
24031
- status: "draft" | "inReview" | "void" | "published";
24234
+ status: "draft" | "inReview" | "published";
24032
24235
  ownership: {
24033
24236
  id: string;
24034
24237
  startAt: string;
@@ -25694,6 +25897,18 @@ export interface operations {
25694
25897
  shortRef?: string | null;
25695
25898
  } | null;
25696
25899
  matchStatus?: string | null;
25900
+ appliedAmount?: {
25901
+ taxBehavior?: ("excluded" | "included") | null;
25902
+ taxRate?: {
25903
+ id: string;
25904
+ name: string;
25905
+ /**
25906
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
25907
+ * @example 100000
25908
+ */
25909
+ basisPoints: number;
25910
+ } | null;
25911
+ } | null;
25697
25912
  markup?: {
25698
25913
  amount?: number | null;
25699
25914
  taxBehavior?: ("excluded" | "included") | null;
@@ -26146,7 +26361,7 @@ export interface operations {
26146
26361
  listingIds?: string;
26147
26362
  /** @description comma separated owners */
26148
26363
  ownerIds?: string;
26149
- status?: ("draft" | "inReview" | "void" | "published") | "all";
26364
+ status?: ("draft" | "inReview" | "published") | "all";
26150
26365
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
26151
26366
  currency?: string;
26152
26367
  search?: string;
@@ -26460,7 +26675,7 @@ export interface operations {
26460
26675
  uniqueRef: string | null;
26461
26676
  };
26462
26677
  /** @enum {string} */
26463
- status: "draft" | "inReview" | "void" | "published";
26678
+ status: "draft" | "inReview" | "published";
26464
26679
  ownership: {
26465
26680
  id: string;
26466
26681
  startAt: string;
@@ -27013,7 +27228,7 @@ export interface operations {
27013
27228
  uniqueRef: string | null;
27014
27229
  };
27015
27230
  /** @enum {string} */
27016
- status: "draft" | "inReview" | "void" | "published";
27231
+ status: "draft" | "inReview" | "published";
27017
27232
  ownership: {
27018
27233
  id: string;
27019
27234
  startAt: string;
@@ -28714,6 +28929,17 @@ export interface operations {
28714
28929
  name?: string | null;
28715
28930
  firstName?: string | null;
28716
28931
  }[] | null;
28932
+ extractableConnections?: {
28933
+ [key: string]: {
28934
+ connections: {
28935
+ /** Format: uuid */
28936
+ id: string;
28937
+ name: string;
28938
+ appId: string;
28939
+ urlExample?: string | null;
28940
+ }[];
28941
+ };
28942
+ } | null;
28717
28943
  }[];
28718
28944
  pagination: {
28719
28945
  /** @default 100 */
@@ -28958,6 +29184,17 @@ export interface operations {
28958
29184
  name?: string | null;
28959
29185
  firstName?: string | null;
28960
29186
  }[] | null;
29187
+ extractableConnections?: {
29188
+ [key: string]: {
29189
+ connections: {
29190
+ /** Format: uuid */
29191
+ id: string;
29192
+ name: string;
29193
+ appId: string;
29194
+ urlExample?: string | null;
29195
+ }[];
29196
+ };
29197
+ } | null;
28961
29198
  };
28962
29199
  };
28963
29200
  };
@@ -29729,6 +29966,17 @@ export interface operations {
29729
29966
  name?: string | null;
29730
29967
  firstName?: string | null;
29731
29968
  }[] | null;
29969
+ extractableConnections?: {
29970
+ [key: string]: {
29971
+ connections: {
29972
+ /** Format: uuid */
29973
+ id: string;
29974
+ name: string;
29975
+ appId: string;
29976
+ urlExample?: string | null;
29977
+ }[];
29978
+ };
29979
+ } | null;
29732
29980
  };
29733
29981
  };
29734
29982
  };
@@ -29970,6 +30218,17 @@ export interface operations {
29970
30218
  name?: string | null;
29971
30219
  firstName?: string | null;
29972
30220
  }[] | null;
30221
+ extractableConnections?: {
30222
+ [key: string]: {
30223
+ connections: {
30224
+ /** Format: uuid */
30225
+ id: string;
30226
+ name: string;
30227
+ appId: string;
30228
+ urlExample?: string | null;
30229
+ }[];
30230
+ };
30231
+ } | null;
29973
30232
  };
29974
30233
  };
29975
30234
  };
@@ -30485,6 +30744,17 @@ export interface operations {
30485
30744
  name?: string | null;
30486
30745
  firstName?: string | null;
30487
30746
  }[] | null;
30747
+ extractableConnections?: {
30748
+ [key: string]: {
30749
+ connections: {
30750
+ /** Format: uuid */
30751
+ id: string;
30752
+ name: string;
30753
+ appId: string;
30754
+ urlExample?: string | null;
30755
+ }[];
30756
+ };
30757
+ } | null;
30488
30758
  };
30489
30759
  };
30490
30760
  };
@@ -30680,6 +30950,18 @@ export interface operations {
30680
30950
  shortRef?: string | null;
30681
30951
  } | null;
30682
30952
  matchStatus?: string | null;
30953
+ appliedAmount?: {
30954
+ taxBehavior?: ("excluded" | "included") | null;
30955
+ taxRate?: {
30956
+ id: string;
30957
+ name: string;
30958
+ /**
30959
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
30960
+ * @example 100000
30961
+ */
30962
+ basisPoints: number;
30963
+ } | null;
30964
+ } | null;
30683
30965
  markup?: {
30684
30966
  amount?: number | null;
30685
30967
  taxBehavior?: ("excluded" | "included") | null;
@@ -30936,6 +31218,10 @@ export interface operations {
30936
31218
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
30937
31219
  /** @description Value in cents (100 = 1€) */
30938
31220
  amount: number;
31221
+ appliedAmount?: {
31222
+ taxRateId?: string | null;
31223
+ taxBehavior?: ("excluded" | "included") | null;
31224
+ } | null;
30939
31225
  markup?: {
30940
31226
  amount?: number | null;
30941
31227
  taxRateId?: string | null;
@@ -31061,6 +31347,18 @@ export interface operations {
31061
31347
  shortRef?: string | null;
31062
31348
  } | null;
31063
31349
  matchStatus?: string | null;
31350
+ appliedAmount?: {
31351
+ taxBehavior?: ("excluded" | "included") | null;
31352
+ taxRate?: {
31353
+ id: string;
31354
+ name: string;
31355
+ /**
31356
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
31357
+ * @example 100000
31358
+ */
31359
+ basisPoints: number;
31360
+ } | null;
31361
+ } | null;
31064
31362
  markup?: {
31065
31363
  amount?: number | null;
31066
31364
  taxBehavior?: ("excluded" | "included") | null;
@@ -31310,6 +31608,10 @@ export interface operations {
31310
31608
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
31311
31609
  /** @description Value in cents (100 = 1€) */
31312
31610
  amount: number;
31611
+ appliedAmount?: {
31612
+ taxRateId?: string | null;
31613
+ taxBehavior?: ("excluded" | "included") | null;
31614
+ } | null;
31313
31615
  markup?: {
31314
31616
  amount?: number | null;
31315
31617
  taxRateId?: string | null;
@@ -32425,6 +32727,18 @@ export interface operations {
32425
32727
  shortRef?: string | null;
32426
32728
  } | null;
32427
32729
  matchStatus?: string | null;
32730
+ appliedAmount?: {
32731
+ taxBehavior?: ("excluded" | "included") | null;
32732
+ taxRate?: {
32733
+ id: string;
32734
+ name: string;
32735
+ /**
32736
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
32737
+ * @example 100000
32738
+ */
32739
+ basisPoints: number;
32740
+ } | null;
32741
+ } | null;
32428
32742
  markup?: {
32429
32743
  amount?: number | null;
32430
32744
  taxBehavior?: ("excluded" | "included") | null;
@@ -32722,6 +33036,18 @@ export interface operations {
32722
33036
  shortRef?: string | null;
32723
33037
  } | null;
32724
33038
  matchStatus?: string | null;
33039
+ appliedAmount?: {
33040
+ taxBehavior?: ("excluded" | "included") | null;
33041
+ taxRate?: {
33042
+ id: string;
33043
+ name: string;
33044
+ /**
33045
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
33046
+ * @example 100000
33047
+ */
33048
+ basisPoints: number;
33049
+ } | null;
33050
+ } | null;
32725
33051
  markup?: {
32726
33052
  amount?: number | null;
32727
33053
  taxBehavior?: ("excluded" | "included") | null;
@@ -33094,6 +33420,18 @@ export interface operations {
33094
33420
  shortRef?: string | null;
33095
33421
  } | null;
33096
33422
  matchStatus?: string | null;
33423
+ appliedAmount?: {
33424
+ taxBehavior?: ("excluded" | "included") | null;
33425
+ taxRate?: {
33426
+ id: string;
33427
+ name: string;
33428
+ /**
33429
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
33430
+ * @example 100000
33431
+ */
33432
+ basisPoints: number;
33433
+ } | null;
33434
+ } | null;
33097
33435
  markup?: {
33098
33436
  amount?: number | null;
33099
33437
  taxBehavior?: ("excluded" | "included") | null;
@@ -33384,6 +33722,18 @@ export interface operations {
33384
33722
  shortRef?: string | null;
33385
33723
  } | null;
33386
33724
  matchStatus?: string | null;
33725
+ appliedAmount?: {
33726
+ taxBehavior?: ("excluded" | "included") | null;
33727
+ taxRate?: {
33728
+ id: string;
33729
+ name: string;
33730
+ /**
33731
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
33732
+ * @example 100000
33733
+ */
33734
+ basisPoints: number;
33735
+ } | null;
33736
+ } | null;
33387
33737
  markup?: {
33388
33738
  amount?: number | null;
33389
33739
  taxBehavior?: ("excluded" | "included") | null;
@@ -33722,6 +34072,18 @@ export interface operations {
33722
34072
  shortRef?: string | null;
33723
34073
  } | null;
33724
34074
  matchStatus?: string | null;
34075
+ appliedAmount?: {
34076
+ taxBehavior?: ("excluded" | "included") | null;
34077
+ taxRate?: {
34078
+ id: string;
34079
+ name: string;
34080
+ /**
34081
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
34082
+ * @example 100000
34083
+ */
34084
+ basisPoints: number;
34085
+ } | null;
34086
+ } | null;
33725
34087
  markup?: {
33726
34088
  amount?: number | null;
33727
34089
  taxBehavior?: ("excluded" | "included") | null;
@@ -34153,6 +34515,18 @@ export interface operations {
34153
34515
  shortRef?: string | null;
34154
34516
  } | null;
34155
34517
  matchStatus?: string | null;
34518
+ appliedAmount?: {
34519
+ taxBehavior?: ("excluded" | "included") | null;
34520
+ taxRate?: {
34521
+ id: string;
34522
+ name: string;
34523
+ /**
34524
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
34525
+ * @example 100000
34526
+ */
34527
+ basisPoints: number;
34528
+ } | null;
34529
+ } | null;
34156
34530
  markup?: {
34157
34531
  amount?: number | null;
34158
34532
  taxBehavior?: ("excluded" | "included") | null;
@@ -34431,6 +34805,10 @@ export interface operations {
34431
34805
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
34432
34806
  /** @description Value in cents (100 = 1€) */
34433
34807
  amount?: number;
34808
+ appliedAmount?: {
34809
+ taxRateId?: string | null;
34810
+ taxBehavior?: ("excluded" | "included") | null;
34811
+ } | null;
34434
34812
  markup?: {
34435
34813
  amount?: number | null;
34436
34814
  taxRateId?: string | null;
@@ -34457,6 +34835,10 @@ export interface operations {
34457
34835
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
34458
34836
  /** @description Value in cents (100 = 1€) */
34459
34837
  amount: number;
34838
+ appliedAmount?: {
34839
+ taxRateId?: string | null;
34840
+ taxBehavior?: ("excluded" | "included") | null;
34841
+ } | null;
34460
34842
  markup?: {
34461
34843
  amount?: number | null;
34462
34844
  taxRateId?: string | null;
@@ -34483,6 +34865,10 @@ export interface operations {
34483
34865
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
34484
34866
  /** @description Value in cents (100 = 1€) */
34485
34867
  amount?: number;
34868
+ appliedAmount?: {
34869
+ taxRateId?: string | null;
34870
+ taxBehavior?: ("excluded" | "included") | null;
34871
+ } | null;
34486
34872
  markup?: {
34487
34873
  amount?: number | null;
34488
34874
  taxRateId?: string | null;
@@ -34582,6 +34968,18 @@ export interface operations {
34582
34968
  shortRef?: string | null;
34583
34969
  } | null;
34584
34970
  matchStatus?: string | null;
34971
+ appliedAmount?: {
34972
+ taxBehavior?: ("excluded" | "included") | null;
34973
+ taxRate?: {
34974
+ id: string;
34975
+ name: string;
34976
+ /**
34977
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
34978
+ * @example 100000
34979
+ */
34980
+ basisPoints: number;
34981
+ } | null;
34982
+ } | null;
34585
34983
  markup?: {
34586
34984
  amount?: number | null;
34587
34985
  taxBehavior?: ("excluded" | "included") | null;
@@ -34932,6 +35330,10 @@ export interface operations {
34932
35330
  assignment?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer") | null;
34933
35331
  /** @description Value in cents (100 = 1€) */
34934
35332
  amount?: number;
35333
+ appliedAmount?: {
35334
+ taxRateId?: string | null;
35335
+ taxBehavior?: ("excluded" | "included") | null;
35336
+ } | null;
34935
35337
  markup?: {
34936
35338
  amount?: number | null;
34937
35339
  taxRateId?: string | null;
@@ -35026,6 +35428,18 @@ export interface operations {
35026
35428
  shortRef?: string | null;
35027
35429
  } | null;
35028
35430
  matchStatus?: string | null;
35431
+ appliedAmount?: {
35432
+ taxBehavior?: ("excluded" | "included") | null;
35433
+ taxRate?: {
35434
+ id: string;
35435
+ name: string;
35436
+ /**
35437
+ * @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%)
35438
+ * @example 100000
35439
+ */
35440
+ basisPoints: number;
35441
+ } | null;
35442
+ } | null;
35029
35443
  markup?: {
35030
35444
  amount?: number | null;
35031
35445
  taxBehavior?: ("excluded" | "included") | null;