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