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