@vrplatform/api 1.3.1-stage.2039 → 1.3.1-stage.2043
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/generated/v1.d.ts +158 -52
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +158 -52
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +158 -52
package/src/generated/v1.ts
CHANGED
|
@@ -1010,15 +1010,15 @@ export interface paths {
|
|
|
1010
1010
|
patch?: never;
|
|
1011
1011
|
trace?: never;
|
|
1012
1012
|
};
|
|
1013
|
-
"/metrics/listing-
|
|
1013
|
+
"/metrics/listing-revenue": {
|
|
1014
1014
|
parameters: {
|
|
1015
1015
|
query?: never;
|
|
1016
1016
|
header?: never;
|
|
1017
1017
|
path?: never;
|
|
1018
1018
|
cookie?: never;
|
|
1019
1019
|
};
|
|
1020
|
-
/** @description Listing
|
|
1021
|
-
get: operations["
|
|
1020
|
+
/** @description Listing revenue split by lock state and party */
|
|
1021
|
+
get: operations["getMetricListingRevenue"];
|
|
1022
1022
|
put?: never;
|
|
1023
1023
|
post?: never;
|
|
1024
1024
|
delete?: never;
|
|
@@ -5509,11 +5509,16 @@ export interface operations {
|
|
|
5509
5509
|
query: {
|
|
5510
5510
|
rootEntityType: string;
|
|
5511
5511
|
rootEntityId: string;
|
|
5512
|
+
/** @description Timeline item type filter. Accepts repeated `types=value` query params or one comma-separated string. */
|
|
5512
5513
|
types?: ("action" | "effect" | "effect_attempt" | "mutation" | "journal_delta")[];
|
|
5514
|
+
/** @description Temporal boundary string parsed by the API. Prefer `YYYY-MM-DD` for day-granularity filters or an ISO 8601 timestamp for exact time bounds. */
|
|
5513
5515
|
from?: string;
|
|
5516
|
+
/** @description Temporal boundary string parsed by the API. Prefer `YYYY-MM-DD` for day-granularity filters or an ISO 8601 timestamp for exact time bounds. */
|
|
5514
5517
|
to?: string;
|
|
5518
|
+
/** @description When true, include diff payloads in audit timeline journal delta entries. */
|
|
5515
5519
|
includeDiff?: boolean;
|
|
5516
5520
|
limit?: number;
|
|
5521
|
+
/** @description Opaque pagination cursor returned by a previous response. Pass it back unchanged. */
|
|
5517
5522
|
cursor?: string;
|
|
5518
5523
|
};
|
|
5519
5524
|
header?: never;
|
|
@@ -6045,9 +6050,9 @@ export interface operations {
|
|
|
6045
6050
|
search?: string;
|
|
6046
6051
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
6047
6052
|
amount?: string;
|
|
6048
|
-
/** @description Date range
|
|
6053
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
6049
6054
|
dateRange?: string;
|
|
6050
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
6055
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
6051
6056
|
isDateRangeEndInclusive?: boolean;
|
|
6052
6057
|
bankAccountId?: string;
|
|
6053
6058
|
accountId?: string;
|
|
@@ -6403,9 +6408,9 @@ export interface operations {
|
|
|
6403
6408
|
search?: string;
|
|
6404
6409
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
6405
6410
|
amount?: string;
|
|
6406
|
-
/** @description Date range
|
|
6411
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
6407
6412
|
dateRange?: string;
|
|
6408
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
6413
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
6409
6414
|
isDateRangeEndInclusive?: boolean;
|
|
6410
6415
|
bankAccountId?: string;
|
|
6411
6416
|
accountId?: string;
|
|
@@ -11618,13 +11623,15 @@ export interface operations {
|
|
|
11618
11623
|
query?: {
|
|
11619
11624
|
status?: "active" | "inactive";
|
|
11620
11625
|
connectionId?: string;
|
|
11621
|
-
/** @description
|
|
11626
|
+
/** @description Comma-separated listing ids. */
|
|
11622
11627
|
ids?: string;
|
|
11623
11628
|
search?: string;
|
|
11624
11629
|
contactId?: string;
|
|
11625
|
-
/** @description
|
|
11630
|
+
/** @description Comma-separated listing short refs. */
|
|
11626
11631
|
shortRefs?: string;
|
|
11632
|
+
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
11627
11633
|
activeOwnership?: boolean;
|
|
11634
|
+
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
11628
11635
|
activeRecurringFeePeriods?: string;
|
|
11629
11636
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
11630
11637
|
openingBalance?: boolean;
|
|
@@ -12246,13 +12253,15 @@ export interface operations {
|
|
|
12246
12253
|
query?: {
|
|
12247
12254
|
status?: "active" | "inactive";
|
|
12248
12255
|
connectionId?: string;
|
|
12249
|
-
/** @description
|
|
12256
|
+
/** @description Comma-separated listing ids. */
|
|
12250
12257
|
ids?: string;
|
|
12251
12258
|
search?: string;
|
|
12252
12259
|
contactId?: string;
|
|
12253
|
-
/** @description
|
|
12260
|
+
/** @description Comma-separated listing short refs. */
|
|
12254
12261
|
shortRefs?: string;
|
|
12262
|
+
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
12255
12263
|
activeOwnership?: boolean;
|
|
12264
|
+
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
12256
12265
|
activeRecurringFeePeriods?: string;
|
|
12257
12266
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
12258
12267
|
openingBalance?: boolean;
|
|
@@ -12363,13 +12372,15 @@ export interface operations {
|
|
|
12363
12372
|
query?: {
|
|
12364
12373
|
status?: "active" | "inactive";
|
|
12365
12374
|
connectionId?: string;
|
|
12366
|
-
/** @description
|
|
12375
|
+
/** @description Comma-separated listing ids. */
|
|
12367
12376
|
ids?: string;
|
|
12368
12377
|
search?: string;
|
|
12369
12378
|
contactId?: string;
|
|
12370
|
-
/** @description
|
|
12379
|
+
/** @description Comma-separated listing short refs. */
|
|
12371
12380
|
shortRefs?: string;
|
|
12381
|
+
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
12372
12382
|
activeOwnership?: boolean;
|
|
12383
|
+
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
12373
12384
|
activeRecurringFeePeriods?: string;
|
|
12374
12385
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
12375
12386
|
openingBalance?: boolean;
|
|
@@ -13940,7 +13951,9 @@ export interface operations {
|
|
|
13940
13951
|
getMetricActiveListings: {
|
|
13941
13952
|
parameters: {
|
|
13942
13953
|
query: {
|
|
13954
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
13943
13955
|
startDate: string;
|
|
13956
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
13944
13957
|
endDate: string;
|
|
13945
13958
|
};
|
|
13946
13959
|
header?: never;
|
|
@@ -14050,7 +14063,9 @@ export interface operations {
|
|
|
14050
14063
|
getMetricAverageDailyRate: {
|
|
14051
14064
|
parameters: {
|
|
14052
14065
|
query: {
|
|
14066
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14053
14067
|
startDate: string;
|
|
14068
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14054
14069
|
endDate: string;
|
|
14055
14070
|
};
|
|
14056
14071
|
header?: never;
|
|
@@ -14161,7 +14176,9 @@ export interface operations {
|
|
|
14161
14176
|
parameters: {
|
|
14162
14177
|
query: {
|
|
14163
14178
|
dimension?: "month" | "week" | "day" | "year";
|
|
14179
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14164
14180
|
startDate: string;
|
|
14181
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14165
14182
|
endDate: string;
|
|
14166
14183
|
};
|
|
14167
14184
|
header?: never;
|
|
@@ -14271,7 +14288,9 @@ export interface operations {
|
|
|
14271
14288
|
getMetricCheckinCounts: {
|
|
14272
14289
|
parameters: {
|
|
14273
14290
|
query: {
|
|
14291
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14274
14292
|
startDate: string;
|
|
14293
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14275
14294
|
endDate: string;
|
|
14276
14295
|
};
|
|
14277
14296
|
header?: never;
|
|
@@ -14382,7 +14401,9 @@ export interface operations {
|
|
|
14382
14401
|
parameters: {
|
|
14383
14402
|
query: {
|
|
14384
14403
|
dimension?: "month" | "week" | "day" | "year";
|
|
14404
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14385
14405
|
startDate: string;
|
|
14406
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14386
14407
|
endDate: string;
|
|
14387
14408
|
};
|
|
14388
14409
|
header?: never;
|
|
@@ -14488,13 +14509,15 @@ export interface operations {
|
|
|
14488
14509
|
};
|
|
14489
14510
|
};
|
|
14490
14511
|
};
|
|
14491
|
-
|
|
14512
|
+
getMetricListingRevenue: {
|
|
14492
14513
|
parameters: {
|
|
14493
14514
|
query: {
|
|
14494
14515
|
listingId: string;
|
|
14495
14516
|
party: "owners" | "manager";
|
|
14496
14517
|
dimension?: "month" | "week" | "day" | "year";
|
|
14518
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14497
14519
|
startDate: string;
|
|
14520
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14498
14521
|
endDate: string;
|
|
14499
14522
|
};
|
|
14500
14523
|
header?: never;
|
|
@@ -14512,7 +14535,8 @@ export interface operations {
|
|
|
14512
14535
|
"application/json": {
|
|
14513
14536
|
data: {
|
|
14514
14537
|
date: string;
|
|
14515
|
-
|
|
14538
|
+
lockedRevenue?: number;
|
|
14539
|
+
unlockedRevenue: number;
|
|
14516
14540
|
currency: string;
|
|
14517
14541
|
}[];
|
|
14518
14542
|
};
|
|
@@ -14604,7 +14628,9 @@ export interface operations {
|
|
|
14604
14628
|
parameters: {
|
|
14605
14629
|
query: {
|
|
14606
14630
|
dimension?: "month" | "week" | "day" | "year";
|
|
14631
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14607
14632
|
startDate: string;
|
|
14633
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14608
14634
|
endDate: string;
|
|
14609
14635
|
};
|
|
14610
14636
|
header?: never;
|
|
@@ -14715,7 +14741,9 @@ export interface operations {
|
|
|
14715
14741
|
parameters: {
|
|
14716
14742
|
query: {
|
|
14717
14743
|
ownerId: string;
|
|
14744
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14718
14745
|
startDate: string;
|
|
14746
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14719
14747
|
endDate: string;
|
|
14720
14748
|
currency?: string;
|
|
14721
14749
|
};
|
|
@@ -14825,7 +14853,9 @@ export interface operations {
|
|
|
14825
14853
|
getMetricReservationCount: {
|
|
14826
14854
|
parameters: {
|
|
14827
14855
|
query: {
|
|
14856
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14828
14857
|
startDate: string;
|
|
14858
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
14829
14859
|
endDate: string;
|
|
14830
14860
|
};
|
|
14831
14861
|
header?: never;
|
|
@@ -14936,9 +14966,9 @@ export interface operations {
|
|
|
14936
14966
|
parameters: {
|
|
14937
14967
|
query?: {
|
|
14938
14968
|
dimension?: "month" | "week" | "day" | "year";
|
|
14939
|
-
/** @description Date range
|
|
14969
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
14940
14970
|
dateRange?: string;
|
|
14941
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
14971
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
14942
14972
|
isDateRangeEndInclusive?: boolean;
|
|
14943
14973
|
};
|
|
14944
14974
|
header?: never;
|
|
@@ -15048,7 +15078,9 @@ export interface operations {
|
|
|
15048
15078
|
parameters: {
|
|
15049
15079
|
query: {
|
|
15050
15080
|
dimension?: "month" | "week" | "day" | "year";
|
|
15081
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
15051
15082
|
startDate: string;
|
|
15083
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
15052
15084
|
endDate: string;
|
|
15053
15085
|
};
|
|
15054
15086
|
header?: never;
|
|
@@ -15160,9 +15192,9 @@ export interface operations {
|
|
|
15160
15192
|
dimension?: "month" | "week" | "day" | "year";
|
|
15161
15193
|
connectionId: string;
|
|
15162
15194
|
view: "automate" | "extract";
|
|
15163
|
-
/** @description Date range
|
|
15195
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
15164
15196
|
dateRange?: string;
|
|
15165
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
15197
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
15166
15198
|
isDateRangeEndInclusive?: boolean;
|
|
15167
15199
|
};
|
|
15168
15200
|
header?: never;
|
|
@@ -15285,7 +15317,9 @@ export interface operations {
|
|
|
15285
15317
|
parameters: {
|
|
15286
15318
|
query: {
|
|
15287
15319
|
dimension?: "month" | "week" | "day" | "year";
|
|
15320
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
15288
15321
|
startDate: string;
|
|
15322
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
15289
15323
|
endDate: string;
|
|
15290
15324
|
};
|
|
15291
15325
|
header?: never;
|
|
@@ -16909,6 +16943,7 @@ export interface operations {
|
|
|
16909
16943
|
query?: {
|
|
16910
16944
|
recurringFeeId?: string;
|
|
16911
16945
|
listingId?: string;
|
|
16946
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
16912
16947
|
date?: string;
|
|
16913
16948
|
recurringFeeType?: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
16914
16949
|
limit?: number;
|
|
@@ -18864,7 +18899,7 @@ export interface operations {
|
|
|
18864
18899
|
search?: string;
|
|
18865
18900
|
date?: string;
|
|
18866
18901
|
amount?: string;
|
|
18867
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
18902
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
18868
18903
|
isDateRangeEndInclusive?: boolean;
|
|
18869
18904
|
/** @description comma separated reservation ids */
|
|
18870
18905
|
reservationIds?: string;
|
|
@@ -19121,7 +19156,7 @@ export interface operations {
|
|
|
19121
19156
|
search?: string;
|
|
19122
19157
|
date?: string;
|
|
19123
19158
|
amount?: string;
|
|
19124
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
19159
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
19125
19160
|
isDateRangeEndInclusive?: boolean;
|
|
19126
19161
|
/** @description comma separated reservation ids */
|
|
19127
19162
|
reservationIds?: string;
|
|
@@ -19747,7 +19782,7 @@ export interface operations {
|
|
|
19747
19782
|
search?: string;
|
|
19748
19783
|
date?: string;
|
|
19749
19784
|
amount?: string;
|
|
19750
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
19785
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
19751
19786
|
isDateRangeEndInclusive?: boolean;
|
|
19752
19787
|
/** @description comma separated reservation ids */
|
|
19753
19788
|
reservationIds?: string;
|
|
@@ -20003,7 +20038,7 @@ export interface operations {
|
|
|
20003
20038
|
search?: string;
|
|
20004
20039
|
date?: string;
|
|
20005
20040
|
amount?: string;
|
|
20006
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
20041
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
20007
20042
|
isDateRangeEndInclusive?: boolean;
|
|
20008
20043
|
/** @description comma separated reservation ids */
|
|
20009
20044
|
reservationIds?: string;
|
|
@@ -20541,7 +20576,11 @@ export interface operations {
|
|
|
20541
20576
|
ownershipPeriodId: string;
|
|
20542
20577
|
/** @enum {string} */
|
|
20543
20578
|
status: "draft" | "inReview" | "published";
|
|
20544
|
-
/**
|
|
20579
|
+
/**
|
|
20580
|
+
* Format: vrp-month
|
|
20581
|
+
* @description Month string in format `YYYY-MM`.
|
|
20582
|
+
* @example 2024-01
|
|
20583
|
+
*/
|
|
20545
20584
|
month: string;
|
|
20546
20585
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
20547
20586
|
currency: string;
|
|
@@ -20575,7 +20614,11 @@ export interface operations {
|
|
|
20575
20614
|
ownershipPeriodId: string;
|
|
20576
20615
|
/** @enum {string} */
|
|
20577
20616
|
status: "draft" | "inReview" | "published";
|
|
20578
|
-
/**
|
|
20617
|
+
/**
|
|
20618
|
+
* Format: vrp-month
|
|
20619
|
+
* @description Month string in format `YYYY-MM`.
|
|
20620
|
+
* @example 2024-01
|
|
20621
|
+
*/
|
|
20579
20622
|
month: string;
|
|
20580
20623
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
20581
20624
|
currency: string;
|
|
@@ -20608,7 +20651,11 @@ export interface operations {
|
|
|
20608
20651
|
ownershipPeriodId: string;
|
|
20609
20652
|
/** @enum {string} */
|
|
20610
20653
|
status: "draft" | "inReview" | "published";
|
|
20611
|
-
/**
|
|
20654
|
+
/**
|
|
20655
|
+
* Format: vrp-month
|
|
20656
|
+
* @description Month string in format `YYYY-MM`.
|
|
20657
|
+
* @example 2024-01
|
|
20658
|
+
*/
|
|
20612
20659
|
month: string;
|
|
20613
20660
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
20614
20661
|
currency: string;
|
|
@@ -21198,7 +21245,9 @@ export interface operations {
|
|
|
21198
21245
|
getSalesTaxLiabilityReport: {
|
|
21199
21246
|
parameters: {
|
|
21200
21247
|
query: {
|
|
21248
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
21201
21249
|
startDate: string;
|
|
21250
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
21202
21251
|
endDate: string;
|
|
21203
21252
|
taxableLineIds: string;
|
|
21204
21253
|
channels?: string;
|
|
@@ -21330,7 +21379,9 @@ export interface operations {
|
|
|
21330
21379
|
getSalesTaxLiabilityReportCsv: {
|
|
21331
21380
|
parameters: {
|
|
21332
21381
|
query: {
|
|
21382
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
21333
21383
|
startDate: string;
|
|
21384
|
+
/** @description Date boundary string. Accepted syntax: `YYYY`, `YYYY-MM`, or `YYYY-MM-DD`. */
|
|
21334
21385
|
endDate: string;
|
|
21335
21386
|
taxableLineIds: string;
|
|
21336
21387
|
channels?: string;
|
|
@@ -22167,14 +22218,16 @@ export interface operations {
|
|
|
22167
22218
|
getReservations: {
|
|
22168
22219
|
parameters: {
|
|
22169
22220
|
query?: {
|
|
22170
|
-
/** @description
|
|
22221
|
+
/** @description Comma-separated reservation ids. Prefix with `!` to exclude matching ids. */
|
|
22171
22222
|
ids?: string;
|
|
22172
|
-
/** @description
|
|
22223
|
+
/** @description Comma-separated reservation short refs. */
|
|
22173
22224
|
shortRefs?: string;
|
|
22174
22225
|
status?: "booked" | "canceled" | "inactive";
|
|
22175
22226
|
generalLedgerStatus?: "active" | "inactive";
|
|
22176
22227
|
listingId?: string;
|
|
22228
|
+
/** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
22177
22229
|
date?: string;
|
|
22230
|
+
/** @description Choose which reservation date field the `date` filter applies to. */
|
|
22178
22231
|
dateField?: "bookedAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
22179
22232
|
search?: string;
|
|
22180
22233
|
/** @description unpaid, underpaid, overpaid, paid, !unpaid, !underpaid, !overpaid, !paid */
|
|
@@ -22185,6 +22238,7 @@ export interface operations {
|
|
|
22185
22238
|
businessModel?: "managed" | "co_host" | "co_host_airbnb";
|
|
22186
22239
|
/** @description Filter by reservation line type (paymentLine.effectiveType), only when not excluded */
|
|
22187
22240
|
lineType?: string;
|
|
22241
|
+
/** @description When true, include nested line items in each returned reservation. */
|
|
22188
22242
|
includeLines?: boolean;
|
|
22189
22243
|
limit?: number;
|
|
22190
22244
|
page?: number;
|
|
@@ -23147,14 +23201,16 @@ export interface operations {
|
|
|
23147
23201
|
getReservationsCsv: {
|
|
23148
23202
|
parameters: {
|
|
23149
23203
|
query?: {
|
|
23150
|
-
/** @description
|
|
23204
|
+
/** @description Comma-separated reservation ids. Prefix with `!` to exclude matching ids. */
|
|
23151
23205
|
ids?: string;
|
|
23152
|
-
/** @description
|
|
23206
|
+
/** @description Comma-separated reservation short refs. */
|
|
23153
23207
|
shortRefs?: string;
|
|
23154
23208
|
status?: "booked" | "canceled" | "inactive";
|
|
23155
23209
|
generalLedgerStatus?: "active" | "inactive";
|
|
23156
23210
|
listingId?: string;
|
|
23211
|
+
/** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
23157
23212
|
date?: string;
|
|
23213
|
+
/** @description Choose which reservation date field the `date` filter applies to. */
|
|
23158
23214
|
dateField?: "bookedAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
23159
23215
|
search?: string;
|
|
23160
23216
|
/** @description unpaid, underpaid, overpaid, paid, !unpaid, !underpaid, !overpaid, !paid */
|
|
@@ -23165,6 +23221,7 @@ export interface operations {
|
|
|
23165
23221
|
businessModel?: "managed" | "co_host" | "co_host_airbnb";
|
|
23166
23222
|
/** @description Filter by reservation line type (paymentLine.effectiveType), only when not excluded */
|
|
23167
23223
|
lineType?: string;
|
|
23224
|
+
/** @description When true, include nested line items in each returned reservation. */
|
|
23168
23225
|
includeLines?: boolean;
|
|
23169
23226
|
};
|
|
23170
23227
|
header?: never;
|
|
@@ -26500,14 +26557,14 @@ export interface operations {
|
|
|
26500
26557
|
year?: number;
|
|
26501
26558
|
listingIds?: string;
|
|
26502
26559
|
statementIds?: string;
|
|
26503
|
-
/** @description
|
|
26560
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
26504
26561
|
month?: string;
|
|
26505
26562
|
search?: string;
|
|
26506
26563
|
status?: ("draft" | "inReview" | "published") | "all";
|
|
26507
26564
|
ownerIds?: string;
|
|
26508
26565
|
listingCollectionIds?: string;
|
|
26509
26566
|
recurringFeeIds?: string;
|
|
26510
|
-
/** @description Date range
|
|
26567
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
26511
26568
|
dateRange?: string;
|
|
26512
26569
|
isDateRangeEndInclusive?: boolean;
|
|
26513
26570
|
};
|
|
@@ -26858,7 +26915,11 @@ export interface operations {
|
|
|
26858
26915
|
requestBody?: {
|
|
26859
26916
|
content: {
|
|
26860
26917
|
"application/json": {
|
|
26861
|
-
/**
|
|
26918
|
+
/**
|
|
26919
|
+
* Format: vrp-month
|
|
26920
|
+
* @description Month string in format `YYYY-MM`.
|
|
26921
|
+
* @example 2024-01
|
|
26922
|
+
*/
|
|
26862
26923
|
month: string;
|
|
26863
26924
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
26864
26925
|
currency?: string;
|
|
@@ -27455,7 +27516,7 @@ export interface operations {
|
|
|
27455
27516
|
query: {
|
|
27456
27517
|
viewAs?: "owner" | "manager";
|
|
27457
27518
|
ownershipPeriodId: string;
|
|
27458
|
-
/** @description
|
|
27519
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
27459
27520
|
month: string;
|
|
27460
27521
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
27461
27522
|
currency?: string;
|
|
@@ -28044,7 +28105,7 @@ export interface operations {
|
|
|
28044
28105
|
query: {
|
|
28045
28106
|
viewAs?: "owner" | "manager";
|
|
28046
28107
|
ownershipPeriodId: string;
|
|
28047
|
-
/** @description
|
|
28108
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
28048
28109
|
month: string;
|
|
28049
28110
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
28050
28111
|
currency?: string;
|
|
@@ -28157,14 +28218,14 @@ export interface operations {
|
|
|
28157
28218
|
year?: number;
|
|
28158
28219
|
listingIds?: string;
|
|
28159
28220
|
statementIds?: string;
|
|
28160
|
-
/** @description
|
|
28221
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
28161
28222
|
month?: string;
|
|
28162
28223
|
search?: string;
|
|
28163
28224
|
status?: ("draft" | "inReview" | "published") | "all";
|
|
28164
28225
|
ownerIds?: string;
|
|
28165
28226
|
listingCollectionIds?: string;
|
|
28166
28227
|
recurringFeeIds?: string;
|
|
28167
|
-
/** @description Date range
|
|
28228
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
28168
28229
|
dateRange?: string;
|
|
28169
28230
|
isDateRangeEndInclusive?: boolean;
|
|
28170
28231
|
};
|
|
@@ -29617,7 +29678,7 @@ export interface operations {
|
|
|
29617
29678
|
query: {
|
|
29618
29679
|
viewAs?: "owner" | "manager";
|
|
29619
29680
|
ownershipPeriodId: string;
|
|
29620
|
-
/** @description
|
|
29681
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
29621
29682
|
month: string;
|
|
29622
29683
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
29623
29684
|
currency?: string;
|
|
@@ -29731,12 +29792,12 @@ export interface operations {
|
|
|
29731
29792
|
query?: {
|
|
29732
29793
|
/** @description comma separated ownership periods */
|
|
29733
29794
|
ownershipPeriodIds?: string;
|
|
29734
|
-
/** @description
|
|
29795
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
29735
29796
|
month?: string;
|
|
29736
29797
|
listingId?: string;
|
|
29737
|
-
/** @description
|
|
29798
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
29738
29799
|
startMonth?: string;
|
|
29739
|
-
/** @description
|
|
29800
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
29740
29801
|
endMonth?: string;
|
|
29741
29802
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
29742
29803
|
currency?: string;
|
|
@@ -29844,7 +29905,7 @@ export interface operations {
|
|
|
29844
29905
|
getStatementsTotals: {
|
|
29845
29906
|
parameters: {
|
|
29846
29907
|
query: {
|
|
29847
|
-
/** @description
|
|
29908
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
29848
29909
|
month: string;
|
|
29849
29910
|
/** @description comma separated listings */
|
|
29850
29911
|
listingIds?: string;
|
|
@@ -35402,28 +35463,37 @@ export interface operations {
|
|
|
35402
35463
|
type?: "deposit" | "expense" | "transfer";
|
|
35403
35464
|
isOpeningBalance?: boolean;
|
|
35404
35465
|
status?: "active" | "inactive";
|
|
35466
|
+
/** @description When true, include nested line items in each returned transaction. */
|
|
35405
35467
|
includeLines?: boolean;
|
|
35406
35468
|
accountId?: string;
|
|
35407
35469
|
last4?: string;
|
|
35470
|
+
/** @description Filter by lock state. True returns locked rows; false returns unlocked rows. */
|
|
35408
35471
|
isLocked?: boolean;
|
|
35472
|
+
/** @description Filter by whether the transaction has at least one active journal entry. */
|
|
35409
35473
|
hasActiveJournalEntries?: boolean;
|
|
35410
35474
|
/** @description connection id or 'null' */
|
|
35411
35475
|
connectionId?: string;
|
|
35412
35476
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
35413
35477
|
amount?: string;
|
|
35478
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
35414
35479
|
paidAtRange?: string;
|
|
35415
|
-
/** @description Date range
|
|
35480
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
35416
35481
|
dateRange?: string;
|
|
35417
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
35482
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
35418
35483
|
isDateRangeEndInclusive?: boolean;
|
|
35484
|
+
/** @description Comma-separated transaction unique refs. */
|
|
35419
35485
|
uniqueRefs?: string;
|
|
35486
|
+
/** @description Comma-separated transaction short refs. */
|
|
35420
35487
|
shortRefs?: string;
|
|
35488
|
+
/** @description Comma-separated transaction ids. */
|
|
35421
35489
|
ids?: string;
|
|
35422
35490
|
search?: string;
|
|
35423
35491
|
recurringTemplateId?: string;
|
|
35424
35492
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
|
|
35493
|
+
/** @description Filter by reconciled state. True returns reconciled rows; false returns unreconciled rows. */
|
|
35425
35494
|
reconciled?: boolean;
|
|
35426
35495
|
contactId?: string;
|
|
35496
|
+
/** @description Comma-separated listing ids. */
|
|
35427
35497
|
listingIds?: string;
|
|
35428
35498
|
limit?: number;
|
|
35429
35499
|
page?: number;
|
|
@@ -36492,28 +36562,37 @@ export interface operations {
|
|
|
36492
36562
|
type?: "deposit" | "expense" | "transfer";
|
|
36493
36563
|
isOpeningBalance?: boolean;
|
|
36494
36564
|
status?: "active" | "inactive";
|
|
36565
|
+
/** @description When true, include nested line items in each returned transaction. */
|
|
36495
36566
|
includeLines?: boolean;
|
|
36496
36567
|
accountId?: string;
|
|
36497
36568
|
last4?: string;
|
|
36569
|
+
/** @description Filter by lock state. True returns locked rows; false returns unlocked rows. */
|
|
36498
36570
|
isLocked?: boolean;
|
|
36571
|
+
/** @description Filter by whether the transaction has at least one active journal entry. */
|
|
36499
36572
|
hasActiveJournalEntries?: boolean;
|
|
36500
36573
|
/** @description connection id or 'null' */
|
|
36501
36574
|
connectionId?: string;
|
|
36502
36575
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
36503
36576
|
amount?: string;
|
|
36577
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36504
36578
|
paidAtRange?: string;
|
|
36505
|
-
/** @description Date range
|
|
36579
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36506
36580
|
dateRange?: string;
|
|
36507
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
36581
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
36508
36582
|
isDateRangeEndInclusive?: boolean;
|
|
36583
|
+
/** @description Comma-separated transaction unique refs. */
|
|
36509
36584
|
uniqueRefs?: string;
|
|
36585
|
+
/** @description Comma-separated transaction short refs. */
|
|
36510
36586
|
shortRefs?: string;
|
|
36587
|
+
/** @description Comma-separated transaction ids. */
|
|
36511
36588
|
ids?: string;
|
|
36512
36589
|
search?: string;
|
|
36513
36590
|
recurringTemplateId?: string;
|
|
36514
36591
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
|
|
36592
|
+
/** @description Filter by reconciled state. True returns reconciled rows; false returns unreconciled rows. */
|
|
36515
36593
|
reconciled?: boolean;
|
|
36516
36594
|
contactId?: string;
|
|
36595
|
+
/** @description Comma-separated listing ids. */
|
|
36517
36596
|
listingIds?: string;
|
|
36518
36597
|
};
|
|
36519
36598
|
header?: never;
|
|
@@ -36621,28 +36700,37 @@ export interface operations {
|
|
|
36621
36700
|
type?: "deposit" | "expense" | "transfer";
|
|
36622
36701
|
isOpeningBalance?: boolean;
|
|
36623
36702
|
status?: "active" | "inactive";
|
|
36703
|
+
/** @description When true, include nested line items in each returned transaction. */
|
|
36624
36704
|
includeLines?: boolean;
|
|
36625
36705
|
accountId?: string;
|
|
36626
36706
|
last4?: string;
|
|
36707
|
+
/** @description Filter by lock state. True returns locked rows; false returns unlocked rows. */
|
|
36627
36708
|
isLocked?: boolean;
|
|
36709
|
+
/** @description Filter by whether the transaction has at least one active journal entry. */
|
|
36628
36710
|
hasActiveJournalEntries?: boolean;
|
|
36629
36711
|
/** @description connection id or 'null' */
|
|
36630
36712
|
connectionId?: string;
|
|
36631
36713
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
36632
36714
|
amount?: string;
|
|
36715
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36633
36716
|
paidAtRange?: string;
|
|
36634
|
-
/** @description Date range
|
|
36717
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36635
36718
|
dateRange?: string;
|
|
36636
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
36719
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
36637
36720
|
isDateRangeEndInclusive?: boolean;
|
|
36721
|
+
/** @description Comma-separated transaction unique refs. */
|
|
36638
36722
|
uniqueRefs?: string;
|
|
36723
|
+
/** @description Comma-separated transaction short refs. */
|
|
36639
36724
|
shortRefs?: string;
|
|
36725
|
+
/** @description Comma-separated transaction ids. */
|
|
36640
36726
|
ids?: string;
|
|
36641
36727
|
search?: string;
|
|
36642
36728
|
recurringTemplateId?: string;
|
|
36643
36729
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
|
|
36730
|
+
/** @description Filter by reconciled state. True returns reconciled rows; false returns unreconciled rows. */
|
|
36644
36731
|
reconciled?: boolean;
|
|
36645
36732
|
contactId?: string;
|
|
36733
|
+
/** @description Comma-separated listing ids. */
|
|
36646
36734
|
listingIds?: string;
|
|
36647
36735
|
};
|
|
36648
36736
|
header?: never;
|
|
@@ -36750,28 +36838,37 @@ export interface operations {
|
|
|
36750
36838
|
type?: "deposit" | "expense" | "transfer";
|
|
36751
36839
|
isOpeningBalance?: boolean;
|
|
36752
36840
|
status?: "active" | "inactive";
|
|
36841
|
+
/** @description When true, include nested line items in each returned transaction. */
|
|
36753
36842
|
includeLines?: boolean;
|
|
36754
36843
|
accountId?: string;
|
|
36755
36844
|
last4?: string;
|
|
36845
|
+
/** @description Filter by lock state. True returns locked rows; false returns unlocked rows. */
|
|
36756
36846
|
isLocked?: boolean;
|
|
36847
|
+
/** @description Filter by whether the transaction has at least one active journal entry. */
|
|
36757
36848
|
hasActiveJournalEntries?: boolean;
|
|
36758
36849
|
/** @description connection id or 'null' */
|
|
36759
36850
|
connectionId?: string;
|
|
36760
36851
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
36761
36852
|
amount?: string;
|
|
36853
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36762
36854
|
paidAtRange?: string;
|
|
36763
|
-
/** @description Date range
|
|
36855
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
36764
36856
|
dateRange?: string;
|
|
36765
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
36857
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
36766
36858
|
isDateRangeEndInclusive?: boolean;
|
|
36859
|
+
/** @description Comma-separated transaction unique refs. */
|
|
36767
36860
|
uniqueRefs?: string;
|
|
36861
|
+
/** @description Comma-separated transaction short refs. */
|
|
36768
36862
|
shortRefs?: string;
|
|
36863
|
+
/** @description Comma-separated transaction ids. */
|
|
36769
36864
|
ids?: string;
|
|
36770
36865
|
search?: string;
|
|
36771
36866
|
recurringTemplateId?: string;
|
|
36772
36867
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
|
|
36868
|
+
/** @description Filter by reconciled state. True returns reconciled rows; false returns unreconciled rows. */
|
|
36773
36869
|
reconciled?: boolean;
|
|
36774
36870
|
contactId?: string;
|
|
36871
|
+
/** @description Comma-separated listing ids. */
|
|
36775
36872
|
listingIds?: string;
|
|
36776
36873
|
};
|
|
36777
36874
|
header?: never;
|
|
@@ -38942,28 +39039,37 @@ export interface operations {
|
|
|
38942
39039
|
type?: "deposit" | "expense" | "transfer";
|
|
38943
39040
|
isOpeningBalance?: boolean;
|
|
38944
39041
|
status?: "active" | "inactive";
|
|
39042
|
+
/** @description When true, include nested line items in each returned transaction. */
|
|
38945
39043
|
includeLines?: boolean;
|
|
38946
39044
|
accountId?: string;
|
|
38947
39045
|
last4?: string;
|
|
39046
|
+
/** @description Filter by lock state. True returns locked rows; false returns unlocked rows. */
|
|
38948
39047
|
isLocked?: boolean;
|
|
39048
|
+
/** @description Filter by whether the transaction has at least one active journal entry. */
|
|
38949
39049
|
hasActiveJournalEntries?: boolean;
|
|
38950
39050
|
/** @description connection id or 'null' */
|
|
38951
39051
|
connectionId?: string;
|
|
38952
39052
|
/** @description Amount in cents, also accepts ranges like 100...200 */
|
|
38953
39053
|
amount?: string;
|
|
39054
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
38954
39055
|
paidAtRange?: string;
|
|
38955
|
-
/** @description Date range
|
|
39056
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
38956
39057
|
dateRange?: string;
|
|
38957
|
-
/** @description Whether the end date is inclusive or exclusive */
|
|
39058
|
+
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
38958
39059
|
isDateRangeEndInclusive?: boolean;
|
|
39060
|
+
/** @description Comma-separated transaction unique refs. */
|
|
38959
39061
|
uniqueRefs?: string;
|
|
39062
|
+
/** @description Comma-separated transaction short refs. */
|
|
38960
39063
|
shortRefs?: string;
|
|
39064
|
+
/** @description Comma-separated transaction ids. */
|
|
38961
39065
|
ids?: string;
|
|
38962
39066
|
search?: string;
|
|
38963
39067
|
recurringTemplateId?: string;
|
|
38964
39068
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
|
|
39069
|
+
/** @description Filter by reconciled state. True returns reconciled rows; false returns unreconciled rows. */
|
|
38965
39070
|
reconciled?: boolean;
|
|
38966
39071
|
contactId?: string;
|
|
39072
|
+
/** @description Comma-separated listing ids. */
|
|
38967
39073
|
listingIds?: string;
|
|
38968
39074
|
};
|
|
38969
39075
|
header?: never;
|