@vrplatform/api 1.2.39 → 1.2.40-1046
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 +465 -337
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +465 -337
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +3 -3
- package/src/generated/v1.ts +465 -337
- package/build/main/ingest-compat/index.d.ts +0 -13
- package/build/main/ingest-compat/index.js +0 -92
- package/build/main/ingest-compat/index.js.map +0 -1
- package/build/main/ingest-compat/map.d.ts +0 -6
- package/build/main/ingest-compat/map.js +0 -67
- package/build/main/ingest-compat/map.js.map +0 -1
- package/build/main/ingest-compat/types.d.ts +0 -7
- package/build/main/ingest-compat/types.js +0 -3
- package/build/main/ingest-compat/types.js.map +0 -1
- package/build/module/ingest-compat/index.d.ts +0 -13
- package/build/module/ingest-compat/index.js +0 -75
- package/build/module/ingest-compat/index.js.map +0 -1
- package/build/module/ingest-compat/map.d.ts +0 -6
- package/build/module/ingest-compat/map.js +0 -64
- package/build/module/ingest-compat/map.js.map +0 -1
- package/build/module/ingest-compat/types.d.ts +0 -7
- package/build/module/ingest-compat/types.js +0 -2
- package/build/module/ingest-compat/types.js.map +0 -1
|
@@ -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
|
};
|
|
@@ -4349,7 +4346,6 @@ export interface operations {
|
|
|
4349
4346
|
requestBody: {
|
|
4350
4347
|
content: {
|
|
4351
4348
|
"application/json": {
|
|
4352
|
-
dangerouslyAllowLocked?: boolean;
|
|
4353
4349
|
ids?: string[];
|
|
4354
4350
|
listingIds?: string[];
|
|
4355
4351
|
connectionIds?: string[];
|
|
@@ -5865,7 +5861,7 @@ export interface operations {
|
|
|
5865
5861
|
data: {
|
|
5866
5862
|
/** Format: uuid */
|
|
5867
5863
|
listingId: string;
|
|
5868
|
-
/** @default 2025-11-
|
|
5864
|
+
/** @default 2025-11-13 */
|
|
5869
5865
|
startAt: string;
|
|
5870
5866
|
endAt?: string | null;
|
|
5871
5867
|
setListingInactive?: boolean | null;
|
|
@@ -5947,7 +5943,7 @@ export interface operations {
|
|
|
5947
5943
|
"application/json": {
|
|
5948
5944
|
/** Format: uuid */
|
|
5949
5945
|
listingId: string;
|
|
5950
|
-
/** @default 2025-11-
|
|
5946
|
+
/** @default 2025-11-13 */
|
|
5951
5947
|
startAt?: string;
|
|
5952
5948
|
endAt?: string | null;
|
|
5953
5949
|
members: {
|
|
@@ -5981,7 +5977,7 @@ export interface operations {
|
|
|
5981
5977
|
"application/json": {
|
|
5982
5978
|
/** Format: uuid */
|
|
5983
5979
|
listingId: string;
|
|
5984
|
-
/** @default 2025-11-
|
|
5980
|
+
/** @default 2025-11-13 */
|
|
5985
5981
|
startAt: string;
|
|
5986
5982
|
endAt?: string | null;
|
|
5987
5983
|
setListingInactive?: boolean | null;
|
|
@@ -6061,7 +6057,7 @@ export interface operations {
|
|
|
6061
6057
|
"application/json": {
|
|
6062
6058
|
/** Format: uuid */
|
|
6063
6059
|
listingId: string;
|
|
6064
|
-
/** @default 2025-11-
|
|
6060
|
+
/** @default 2025-11-13 */
|
|
6065
6061
|
startAt: string;
|
|
6066
6062
|
endAt?: string | null;
|
|
6067
6063
|
setListingInactive?: boolean | null;
|
|
@@ -6144,7 +6140,7 @@ export interface operations {
|
|
|
6144
6140
|
"application/json": {
|
|
6145
6141
|
/** Format: uuid */
|
|
6146
6142
|
listingId?: string;
|
|
6147
|
-
/** @default 2025-11-
|
|
6143
|
+
/** @default 2025-11-13 */
|
|
6148
6144
|
startAt?: string;
|
|
6149
6145
|
endAt?: string | null;
|
|
6150
6146
|
members?: {
|
|
@@ -6178,7 +6174,7 @@ export interface operations {
|
|
|
6178
6174
|
"application/json": {
|
|
6179
6175
|
/** Format: uuid */
|
|
6180
6176
|
listingId: string;
|
|
6181
|
-
/** @default 2025-11-
|
|
6177
|
+
/** @default 2025-11-13 */
|
|
6182
6178
|
startAt: string;
|
|
6183
6179
|
endAt?: string | null;
|
|
6184
6180
|
setListingInactive?: boolean | null;
|
|
@@ -6364,7 +6360,7 @@ export interface operations {
|
|
|
6364
6360
|
/** Format: uuid */
|
|
6365
6361
|
sourceId?: string | null;
|
|
6366
6362
|
initialOwnership?: {
|
|
6367
|
-
/** @default 2025-11-
|
|
6363
|
+
/** @default 2025-11-13 */
|
|
6368
6364
|
startAt?: string;
|
|
6369
6365
|
endAt?: string | null;
|
|
6370
6366
|
members: {
|
|
@@ -6422,7 +6418,7 @@ export interface operations {
|
|
|
6422
6418
|
status: "active" | "inactive";
|
|
6423
6419
|
defaultCurrency?: string | null;
|
|
6424
6420
|
activeOwnership?: {
|
|
6425
|
-
/** @default 2025-11-
|
|
6421
|
+
/** @default 2025-11-13 */
|
|
6426
6422
|
startAt: string;
|
|
6427
6423
|
endAt?: string | null;
|
|
6428
6424
|
setListingInactive?: boolean | null;
|
|
@@ -6663,7 +6659,7 @@ export interface operations {
|
|
|
6663
6659
|
status: "active" | "inactive";
|
|
6664
6660
|
defaultCurrency?: string | null;
|
|
6665
6661
|
activeOwnership?: {
|
|
6666
|
-
/** @default 2025-11-
|
|
6662
|
+
/** @default 2025-11-13 */
|
|
6667
6663
|
startAt: string;
|
|
6668
6664
|
endAt?: string | null;
|
|
6669
6665
|
setListingInactive?: boolean | null;
|
|
@@ -6802,7 +6798,7 @@ export interface operations {
|
|
|
6802
6798
|
/** Format: uuid */
|
|
6803
6799
|
sourceId?: string | null;
|
|
6804
6800
|
initialOwnership?: {
|
|
6805
|
-
/** @default 2025-11-
|
|
6801
|
+
/** @default 2025-11-13 */
|
|
6806
6802
|
startAt?: string;
|
|
6807
6803
|
endAt?: string | null;
|
|
6808
6804
|
members: {
|
|
@@ -6856,7 +6852,7 @@ export interface operations {
|
|
|
6856
6852
|
status: "active" | "inactive";
|
|
6857
6853
|
defaultCurrency?: string | null;
|
|
6858
6854
|
activeOwnership?: {
|
|
6859
|
-
/** @default 2025-11-
|
|
6855
|
+
/** @default 2025-11-13 */
|
|
6860
6856
|
startAt: string;
|
|
6861
6857
|
endAt?: string | null;
|
|
6862
6858
|
setListingInactive?: boolean | null;
|
|
@@ -7073,7 +7069,7 @@ export interface operations {
|
|
|
7073
7069
|
status: "active" | "inactive";
|
|
7074
7070
|
defaultCurrency?: string | null;
|
|
7075
7071
|
activeOwnership?: {
|
|
7076
|
-
/** @default 2025-11-
|
|
7072
|
+
/** @default 2025-11-13 */
|
|
7077
7073
|
startAt: string;
|
|
7078
7074
|
endAt?: string | null;
|
|
7079
7075
|
setListingInactive?: boolean | null;
|
|
@@ -7220,7 +7216,7 @@ export interface operations {
|
|
|
7220
7216
|
/** Format: uuid */
|
|
7221
7217
|
sourceId?: string | null;
|
|
7222
7218
|
initialOwnership?: {
|
|
7223
|
-
/** @default 2025-11-
|
|
7219
|
+
/** @default 2025-11-13 */
|
|
7224
7220
|
startAt?: string;
|
|
7225
7221
|
endAt?: string | null;
|
|
7226
7222
|
members: {
|
|
@@ -7274,7 +7270,7 @@ export interface operations {
|
|
|
7274
7270
|
status: "active" | "inactive";
|
|
7275
7271
|
defaultCurrency?: string | null;
|
|
7276
7272
|
activeOwnership?: {
|
|
7277
|
-
/** @default 2025-11-
|
|
7273
|
+
/** @default 2025-11-13 */
|
|
7278
7274
|
startAt: string;
|
|
7279
7275
|
endAt?: string | null;
|
|
7280
7276
|
setListingInactive?: boolean | null;
|
|
@@ -7933,7 +7929,7 @@ export interface operations {
|
|
|
7933
7929
|
/** @enum {string} */
|
|
7934
7930
|
type: "partner" | "admin" | "propertyManager";
|
|
7935
7931
|
/** @enum {string} */
|
|
7936
|
-
status: "active" | "inactive"
|
|
7932
|
+
status: "active" | "inactive";
|
|
7937
7933
|
billingSubscriptionStatus?: string | null;
|
|
7938
7934
|
billingPlan?: string | null;
|
|
7939
7935
|
createdAt?: string | null;
|
|
@@ -8142,7 +8138,7 @@ export interface operations {
|
|
|
8142
8138
|
/** @enum {string} */
|
|
8143
8139
|
type: "partner" | "admin" | "propertyManager";
|
|
8144
8140
|
/** @enum {string} */
|
|
8145
|
-
status: "active" | "inactive"
|
|
8141
|
+
status: "active" | "inactive";
|
|
8146
8142
|
billingSubscriptionStatus?: string | null;
|
|
8147
8143
|
billingPlan?: string | null;
|
|
8148
8144
|
createdAt?: string | null;
|
|
@@ -8362,7 +8358,7 @@ export interface operations {
|
|
|
8362
8358
|
/** @enum {string} */
|
|
8363
8359
|
type: "partner" | "admin" | "propertyManager";
|
|
8364
8360
|
/** @enum {string} */
|
|
8365
|
-
status: "active" | "inactive"
|
|
8361
|
+
status: "active" | "inactive";
|
|
8366
8362
|
billingSubscriptionStatus?: string | null;
|
|
8367
8363
|
billingPlan?: string | null;
|
|
8368
8364
|
createdAt?: string | null;
|
|
@@ -8494,7 +8490,7 @@ export interface operations {
|
|
|
8494
8490
|
/** @enum {string} */
|
|
8495
8491
|
type?: "partner" | "admin" | "propertyManager";
|
|
8496
8492
|
/** @enum {string} */
|
|
8497
|
-
status?: "active" | "inactive"
|
|
8493
|
+
status?: "active" | "inactive";
|
|
8498
8494
|
billingSubscriptionStatus?: string | null;
|
|
8499
8495
|
billingPlan?: string | null;
|
|
8500
8496
|
trialUntil?: string | null;
|
|
@@ -8572,7 +8568,7 @@ export interface operations {
|
|
|
8572
8568
|
/** @enum {string} */
|
|
8573
8569
|
type: "partner" | "admin" | "propertyManager";
|
|
8574
8570
|
/** @enum {string} */
|
|
8575
|
-
status: "active" | "inactive"
|
|
8571
|
+
status: "active" | "inactive";
|
|
8576
8572
|
billingSubscriptionStatus?: string | null;
|
|
8577
8573
|
billingPlan?: string | null;
|
|
8578
8574
|
createdAt?: string | null;
|
|
@@ -8716,7 +8712,7 @@ export interface operations {
|
|
|
8716
8712
|
/** @enum {string} */
|
|
8717
8713
|
type: "partner" | "admin" | "propertyManager";
|
|
8718
8714
|
/** @enum {string} */
|
|
8719
|
-
status: "active" | "inactive"
|
|
8715
|
+
status: "active" | "inactive";
|
|
8720
8716
|
billingSubscriptionStatus?: string | null;
|
|
8721
8717
|
billingPlan?: string | null;
|
|
8722
8718
|
createdAt?: string | null;
|
|
@@ -9620,10 +9616,21 @@ export interface operations {
|
|
|
9620
9616
|
status: "active" | "inactive";
|
|
9621
9617
|
}[];
|
|
9622
9618
|
taxRate?: {
|
|
9623
|
-
id: string;
|
|
9624
9619
|
name: string;
|
|
9620
|
+
countryCode?: string | null;
|
|
9621
|
+
currency?: string | null;
|
|
9625
9622
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9626
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;
|
|
9627
9634
|
} | null;
|
|
9628
9635
|
};
|
|
9629
9636
|
};
|
|
@@ -9778,10 +9785,21 @@ export interface operations {
|
|
|
9778
9785
|
status: "active" | "inactive";
|
|
9779
9786
|
}[];
|
|
9780
9787
|
taxRate?: {
|
|
9781
|
-
id: string;
|
|
9782
9788
|
name: string;
|
|
9789
|
+
countryCode?: string | null;
|
|
9790
|
+
currency?: string | null;
|
|
9783
9791
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9784
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;
|
|
9785
9803
|
} | null;
|
|
9786
9804
|
};
|
|
9787
9805
|
};
|
|
@@ -9975,10 +9993,21 @@ export interface operations {
|
|
|
9975
9993
|
status: "active" | "inactive";
|
|
9976
9994
|
}[];
|
|
9977
9995
|
taxRate?: {
|
|
9978
|
-
id: string;
|
|
9979
9996
|
name: string;
|
|
9997
|
+
countryCode?: string | null;
|
|
9998
|
+
currency?: string | null;
|
|
9980
9999
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9981
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;
|
|
9982
10011
|
} | null;
|
|
9983
10012
|
}[];
|
|
9984
10013
|
pagination: {
|
|
@@ -10141,10 +10170,21 @@ export interface operations {
|
|
|
10141
10170
|
status: "active" | "inactive";
|
|
10142
10171
|
}[];
|
|
10143
10172
|
taxRate?: {
|
|
10144
|
-
id: string;
|
|
10145
10173
|
name: string;
|
|
10174
|
+
countryCode?: string | null;
|
|
10175
|
+
currency?: string | null;
|
|
10146
10176
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
10147
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;
|
|
10148
10188
|
} | null;
|
|
10149
10189
|
};
|
|
10150
10190
|
};
|
|
@@ -10218,13 +10258,13 @@ export interface operations {
|
|
|
10218
10258
|
name: string;
|
|
10219
10259
|
locked?: boolean | null;
|
|
10220
10260
|
/** @enum {string|null} */
|
|
10221
|
-
visible?: "all" | "manager" | "
|
|
10261
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10222
10262
|
columns: ({
|
|
10223
10263
|
id?: string | null;
|
|
10224
10264
|
name: string;
|
|
10225
10265
|
locked?: boolean | null;
|
|
10226
10266
|
/** @enum {string|null} */
|
|
10227
|
-
visible?: "all" | "manager" | "
|
|
10267
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10228
10268
|
/** @enum {string} */
|
|
10229
10269
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10230
10270
|
value: string;
|
|
@@ -10233,7 +10273,7 @@ export interface operations {
|
|
|
10233
10273
|
name: string;
|
|
10234
10274
|
locked?: boolean | null;
|
|
10235
10275
|
/** @enum {string|null} */
|
|
10236
|
-
visible?: "all" | "manager" | "
|
|
10276
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10237
10277
|
/** @enum {string} */
|
|
10238
10278
|
type: "accounts";
|
|
10239
10279
|
value: string[];
|
|
@@ -10244,13 +10284,13 @@ export interface operations {
|
|
|
10244
10284
|
name: string;
|
|
10245
10285
|
locked?: boolean | null;
|
|
10246
10286
|
/** @enum {string|null} */
|
|
10247
|
-
visible?: "all" | "manager" | "
|
|
10287
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10248
10288
|
columns: ({
|
|
10249
10289
|
id?: string | null;
|
|
10250
10290
|
name: string;
|
|
10251
10291
|
locked?: boolean | null;
|
|
10252
10292
|
/** @enum {string|null} */
|
|
10253
|
-
visible?: "all" | "manager" | "
|
|
10293
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10254
10294
|
/** @enum {string} */
|
|
10255
10295
|
type: "field";
|
|
10256
10296
|
value: string;
|
|
@@ -10259,7 +10299,7 @@ export interface operations {
|
|
|
10259
10299
|
name: string;
|
|
10260
10300
|
locked?: boolean | null;
|
|
10261
10301
|
/** @enum {string|null} */
|
|
10262
|
-
visible?: "all" | "manager" | "
|
|
10302
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10263
10303
|
/** @enum {string} */
|
|
10264
10304
|
type: "accounts";
|
|
10265
10305
|
value: string[];
|
|
@@ -10283,13 +10323,13 @@ export interface operations {
|
|
|
10283
10323
|
name: string;
|
|
10284
10324
|
locked?: boolean | null;
|
|
10285
10325
|
/** @enum {string|null} */
|
|
10286
|
-
visible?: "all" | "manager" | "
|
|
10326
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10287
10327
|
columns: ({
|
|
10288
10328
|
id?: string | null;
|
|
10289
10329
|
name: string;
|
|
10290
10330
|
locked?: boolean | null;
|
|
10291
10331
|
/** @enum {string|null} */
|
|
10292
|
-
visible?: "all" | "manager" | "
|
|
10332
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10293
10333
|
/** @enum {string} */
|
|
10294
10334
|
type: "field";
|
|
10295
10335
|
value: string;
|
|
@@ -10298,7 +10338,7 @@ export interface operations {
|
|
|
10298
10338
|
name: string;
|
|
10299
10339
|
locked?: boolean | null;
|
|
10300
10340
|
/** @enum {string|null} */
|
|
10301
|
-
visible?: "all" | "manager" | "
|
|
10341
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10302
10342
|
/** @enum {string} */
|
|
10303
10343
|
type: "accounts";
|
|
10304
10344
|
value: string[];
|
|
@@ -10386,13 +10426,13 @@ export interface operations {
|
|
|
10386
10426
|
name: string;
|
|
10387
10427
|
locked?: boolean | null;
|
|
10388
10428
|
/** @enum {string|null} */
|
|
10389
|
-
visible?: "all" | "manager" | "
|
|
10429
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10390
10430
|
columns: ({
|
|
10391
10431
|
id?: string | null;
|
|
10392
10432
|
name: string;
|
|
10393
10433
|
locked?: boolean | null;
|
|
10394
10434
|
/** @enum {string|null} */
|
|
10395
|
-
visible?: "all" | "manager" | "
|
|
10435
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10396
10436
|
/** @enum {string} */
|
|
10397
10437
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10398
10438
|
value: string;
|
|
@@ -10401,7 +10441,7 @@ export interface operations {
|
|
|
10401
10441
|
name: string;
|
|
10402
10442
|
locked?: boolean | null;
|
|
10403
10443
|
/** @enum {string|null} */
|
|
10404
|
-
visible?: "all" | "manager" | "
|
|
10444
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10405
10445
|
/** @enum {string} */
|
|
10406
10446
|
type: "accounts";
|
|
10407
10447
|
value: string[];
|
|
@@ -10412,13 +10452,13 @@ export interface operations {
|
|
|
10412
10452
|
name: string;
|
|
10413
10453
|
locked?: boolean | null;
|
|
10414
10454
|
/** @enum {string|null} */
|
|
10415
|
-
visible?: "all" | "manager" | "
|
|
10455
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10416
10456
|
columns: ({
|
|
10417
10457
|
id?: string | null;
|
|
10418
10458
|
name: string;
|
|
10419
10459
|
locked?: boolean | null;
|
|
10420
10460
|
/** @enum {string|null} */
|
|
10421
|
-
visible?: "all" | "manager" | "
|
|
10461
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10422
10462
|
/** @enum {string} */
|
|
10423
10463
|
type: "field";
|
|
10424
10464
|
value: string;
|
|
@@ -10427,7 +10467,7 @@ export interface operations {
|
|
|
10427
10467
|
name: string;
|
|
10428
10468
|
locked?: boolean | null;
|
|
10429
10469
|
/** @enum {string|null} */
|
|
10430
|
-
visible?: "all" | "manager" | "
|
|
10470
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10431
10471
|
/** @enum {string} */
|
|
10432
10472
|
type: "accounts";
|
|
10433
10473
|
value: string[];
|
|
@@ -10453,13 +10493,13 @@ export interface operations {
|
|
|
10453
10493
|
name: string;
|
|
10454
10494
|
locked?: boolean | null;
|
|
10455
10495
|
/** @enum {string|null} */
|
|
10456
|
-
visible?: "all" | "manager" | "
|
|
10496
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10457
10497
|
columns: ({
|
|
10458
10498
|
id?: string | null;
|
|
10459
10499
|
name: string;
|
|
10460
10500
|
locked?: boolean | null;
|
|
10461
10501
|
/** @enum {string|null} */
|
|
10462
|
-
visible?: "all" | "manager" | "
|
|
10502
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10463
10503
|
/** @enum {string} */
|
|
10464
10504
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10465
10505
|
value: string;
|
|
@@ -10468,7 +10508,7 @@ export interface operations {
|
|
|
10468
10508
|
name: string;
|
|
10469
10509
|
locked?: boolean | null;
|
|
10470
10510
|
/** @enum {string|null} */
|
|
10471
|
-
visible?: "all" | "manager" | "
|
|
10511
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10472
10512
|
/** @enum {string} */
|
|
10473
10513
|
type: "accounts";
|
|
10474
10514
|
value: string[];
|
|
@@ -10479,13 +10519,13 @@ export interface operations {
|
|
|
10479
10519
|
name: string;
|
|
10480
10520
|
locked?: boolean | null;
|
|
10481
10521
|
/** @enum {string|null} */
|
|
10482
|
-
visible?: "all" | "manager" | "
|
|
10522
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10483
10523
|
columns: ({
|
|
10484
10524
|
id?: string | null;
|
|
10485
10525
|
name: string;
|
|
10486
10526
|
locked?: boolean | null;
|
|
10487
10527
|
/** @enum {string|null} */
|
|
10488
|
-
visible?: "all" | "manager" | "
|
|
10528
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10489
10529
|
/** @enum {string} */
|
|
10490
10530
|
type: "field";
|
|
10491
10531
|
value: string;
|
|
@@ -10494,7 +10534,7 @@ export interface operations {
|
|
|
10494
10534
|
name: string;
|
|
10495
10535
|
locked?: boolean | null;
|
|
10496
10536
|
/** @enum {string|null} */
|
|
10497
|
-
visible?: "all" | "manager" | "
|
|
10537
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10498
10538
|
/** @enum {string} */
|
|
10499
10539
|
type: "accounts";
|
|
10500
10540
|
value: string[];
|
|
@@ -10518,13 +10558,13 @@ export interface operations {
|
|
|
10518
10558
|
name: string;
|
|
10519
10559
|
locked?: boolean | null;
|
|
10520
10560
|
/** @enum {string|null} */
|
|
10521
|
-
visible?: "all" | "manager" | "
|
|
10561
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10522
10562
|
columns: ({
|
|
10523
10563
|
id?: string | null;
|
|
10524
10564
|
name: string;
|
|
10525
10565
|
locked?: boolean | null;
|
|
10526
10566
|
/** @enum {string|null} */
|
|
10527
|
-
visible?: "all" | "manager" | "
|
|
10567
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10528
10568
|
/** @enum {string} */
|
|
10529
10569
|
type: "field";
|
|
10530
10570
|
value: string;
|
|
@@ -10533,7 +10573,7 @@ export interface operations {
|
|
|
10533
10573
|
name: string;
|
|
10534
10574
|
locked?: boolean | null;
|
|
10535
10575
|
/** @enum {string|null} */
|
|
10536
|
-
visible?: "all" | "manager" | "
|
|
10576
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10537
10577
|
/** @enum {string} */
|
|
10538
10578
|
type: "accounts";
|
|
10539
10579
|
value: string[];
|
|
@@ -10609,13 +10649,13 @@ export interface operations {
|
|
|
10609
10649
|
name: string;
|
|
10610
10650
|
locked?: boolean | null;
|
|
10611
10651
|
/** @enum {string|null} */
|
|
10612
|
-
visible?: "all" | "manager" | "
|
|
10652
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10613
10653
|
columns: ({
|
|
10614
10654
|
id?: string | null;
|
|
10615
10655
|
name: string;
|
|
10616
10656
|
locked?: boolean | null;
|
|
10617
10657
|
/** @enum {string|null} */
|
|
10618
|
-
visible?: "all" | "manager" | "
|
|
10658
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10619
10659
|
/** @enum {string} */
|
|
10620
10660
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10621
10661
|
value: string;
|
|
@@ -10624,7 +10664,7 @@ export interface operations {
|
|
|
10624
10664
|
name: string;
|
|
10625
10665
|
locked?: boolean | null;
|
|
10626
10666
|
/** @enum {string|null} */
|
|
10627
|
-
visible?: "all" | "manager" | "
|
|
10667
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10628
10668
|
/** @enum {string} */
|
|
10629
10669
|
type: "accounts";
|
|
10630
10670
|
value: string[];
|
|
@@ -10635,13 +10675,13 @@ export interface operations {
|
|
|
10635
10675
|
name: string;
|
|
10636
10676
|
locked?: boolean | null;
|
|
10637
10677
|
/** @enum {string|null} */
|
|
10638
|
-
visible?: "all" | "manager" | "
|
|
10678
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10639
10679
|
columns: ({
|
|
10640
10680
|
id?: string | null;
|
|
10641
10681
|
name: string;
|
|
10642
10682
|
locked?: boolean | null;
|
|
10643
10683
|
/** @enum {string|null} */
|
|
10644
|
-
visible?: "all" | "manager" | "
|
|
10684
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10645
10685
|
/** @enum {string} */
|
|
10646
10686
|
type: "field";
|
|
10647
10687
|
value: string;
|
|
@@ -10650,7 +10690,7 @@ export interface operations {
|
|
|
10650
10690
|
name: string;
|
|
10651
10691
|
locked?: boolean | null;
|
|
10652
10692
|
/** @enum {string|null} */
|
|
10653
|
-
visible?: "all" | "manager" | "
|
|
10693
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10654
10694
|
/** @enum {string} */
|
|
10655
10695
|
type: "accounts";
|
|
10656
10696
|
value: string[];
|
|
@@ -10674,13 +10714,13 @@ export interface operations {
|
|
|
10674
10714
|
name: string;
|
|
10675
10715
|
locked?: boolean | null;
|
|
10676
10716
|
/** @enum {string|null} */
|
|
10677
|
-
visible?: "all" | "manager" | "
|
|
10717
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10678
10718
|
columns: ({
|
|
10679
10719
|
id?: string | null;
|
|
10680
10720
|
name: string;
|
|
10681
10721
|
locked?: boolean | null;
|
|
10682
10722
|
/** @enum {string|null} */
|
|
10683
|
-
visible?: "all" | "manager" | "
|
|
10723
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10684
10724
|
/** @enum {string} */
|
|
10685
10725
|
type: "field";
|
|
10686
10726
|
value: string;
|
|
@@ -10689,7 +10729,7 @@ export interface operations {
|
|
|
10689
10729
|
name: string;
|
|
10690
10730
|
locked?: boolean | null;
|
|
10691
10731
|
/** @enum {string|null} */
|
|
10692
|
-
visible?: "all" | "manager" | "
|
|
10732
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10693
10733
|
/** @enum {string} */
|
|
10694
10734
|
type: "accounts";
|
|
10695
10735
|
value: string[];
|
|
@@ -10769,13 +10809,13 @@ export interface operations {
|
|
|
10769
10809
|
name: string;
|
|
10770
10810
|
locked?: boolean | null;
|
|
10771
10811
|
/** @enum {string|null} */
|
|
10772
|
-
visible?: "all" | "manager" | "
|
|
10812
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10773
10813
|
columns: ({
|
|
10774
10814
|
id?: string | null;
|
|
10775
10815
|
name: string;
|
|
10776
10816
|
locked?: boolean | null;
|
|
10777
10817
|
/** @enum {string|null} */
|
|
10778
|
-
visible?: "all" | "manager" | "
|
|
10818
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10779
10819
|
/** @enum {string} */
|
|
10780
10820
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10781
10821
|
value: string;
|
|
@@ -10784,7 +10824,7 @@ export interface operations {
|
|
|
10784
10824
|
name: string;
|
|
10785
10825
|
locked?: boolean | null;
|
|
10786
10826
|
/** @enum {string|null} */
|
|
10787
|
-
visible?: "all" | "manager" | "
|
|
10827
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10788
10828
|
/** @enum {string} */
|
|
10789
10829
|
type: "accounts";
|
|
10790
10830
|
value: string[];
|
|
@@ -10795,13 +10835,13 @@ export interface operations {
|
|
|
10795
10835
|
name: string;
|
|
10796
10836
|
locked?: boolean | null;
|
|
10797
10837
|
/** @enum {string|null} */
|
|
10798
|
-
visible?: "all" | "manager" | "
|
|
10838
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10799
10839
|
columns: ({
|
|
10800
10840
|
id?: string | null;
|
|
10801
10841
|
name: string;
|
|
10802
10842
|
locked?: boolean | null;
|
|
10803
10843
|
/** @enum {string|null} */
|
|
10804
|
-
visible?: "all" | "manager" | "
|
|
10844
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10805
10845
|
/** @enum {string} */
|
|
10806
10846
|
type: "field";
|
|
10807
10847
|
value: string;
|
|
@@ -10810,7 +10850,7 @@ export interface operations {
|
|
|
10810
10850
|
name: string;
|
|
10811
10851
|
locked?: boolean | null;
|
|
10812
10852
|
/** @enum {string|null} */
|
|
10813
|
-
visible?: "all" | "manager" | "
|
|
10853
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10814
10854
|
/** @enum {string} */
|
|
10815
10855
|
type: "accounts";
|
|
10816
10856
|
value: string[];
|
|
@@ -10836,13 +10876,13 @@ export interface operations {
|
|
|
10836
10876
|
name: string;
|
|
10837
10877
|
locked?: boolean | null;
|
|
10838
10878
|
/** @enum {string|null} */
|
|
10839
|
-
visible?: "all" | "manager" | "
|
|
10879
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10840
10880
|
columns: ({
|
|
10841
10881
|
id?: string | null;
|
|
10842
10882
|
name: string;
|
|
10843
10883
|
locked?: boolean | null;
|
|
10844
10884
|
/** @enum {string|null} */
|
|
10845
|
-
visible?: "all" | "manager" | "
|
|
10885
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10846
10886
|
/** @enum {string} */
|
|
10847
10887
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10848
10888
|
value: string;
|
|
@@ -10851,7 +10891,7 @@ export interface operations {
|
|
|
10851
10891
|
name: string;
|
|
10852
10892
|
locked?: boolean | null;
|
|
10853
10893
|
/** @enum {string|null} */
|
|
10854
|
-
visible?: "all" | "manager" | "
|
|
10894
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10855
10895
|
/** @enum {string} */
|
|
10856
10896
|
type: "accounts";
|
|
10857
10897
|
value: string[];
|
|
@@ -10862,13 +10902,13 @@ export interface operations {
|
|
|
10862
10902
|
name: string;
|
|
10863
10903
|
locked?: boolean | null;
|
|
10864
10904
|
/** @enum {string|null} */
|
|
10865
|
-
visible?: "all" | "manager" | "
|
|
10905
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10866
10906
|
columns: ({
|
|
10867
10907
|
id?: string | null;
|
|
10868
10908
|
name: string;
|
|
10869
10909
|
locked?: boolean | null;
|
|
10870
10910
|
/** @enum {string|null} */
|
|
10871
|
-
visible?: "all" | "manager" | "
|
|
10911
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10872
10912
|
/** @enum {string} */
|
|
10873
10913
|
type: "field";
|
|
10874
10914
|
value: string;
|
|
@@ -10877,7 +10917,7 @@ export interface operations {
|
|
|
10877
10917
|
name: string;
|
|
10878
10918
|
locked?: boolean | null;
|
|
10879
10919
|
/** @enum {string|null} */
|
|
10880
|
-
visible?: "all" | "manager" | "
|
|
10920
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10881
10921
|
/** @enum {string} */
|
|
10882
10922
|
type: "accounts";
|
|
10883
10923
|
value: string[];
|
|
@@ -10901,13 +10941,13 @@ export interface operations {
|
|
|
10901
10941
|
name: string;
|
|
10902
10942
|
locked?: boolean | null;
|
|
10903
10943
|
/** @enum {string|null} */
|
|
10904
|
-
visible?: "all" | "manager" | "
|
|
10944
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10905
10945
|
columns: ({
|
|
10906
10946
|
id?: string | null;
|
|
10907
10947
|
name: string;
|
|
10908
10948
|
locked?: boolean | null;
|
|
10909
10949
|
/** @enum {string|null} */
|
|
10910
|
-
visible?: "all" | "manager" | "
|
|
10950
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10911
10951
|
/** @enum {string} */
|
|
10912
10952
|
type: "field";
|
|
10913
10953
|
value: string;
|
|
@@ -10916,7 +10956,7 @@ export interface operations {
|
|
|
10916
10956
|
name: string;
|
|
10917
10957
|
locked?: boolean | null;
|
|
10918
10958
|
/** @enum {string|null} */
|
|
10919
|
-
visible?: "all" | "manager" | "
|
|
10959
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10920
10960
|
/** @enum {string} */
|
|
10921
10961
|
type: "accounts";
|
|
10922
10962
|
value: string[];
|
|
@@ -11490,13 +11530,13 @@ export interface operations {
|
|
|
11490
11530
|
name: string;
|
|
11491
11531
|
locked?: boolean | null;
|
|
11492
11532
|
/** @enum {string|null} */
|
|
11493
|
-
visible?: "all" | "manager" | "
|
|
11533
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11494
11534
|
columns: ({
|
|
11495
11535
|
id?: string | null;
|
|
11496
11536
|
name: string;
|
|
11497
11537
|
locked?: boolean | null;
|
|
11498
11538
|
/** @enum {string|null} */
|
|
11499
|
-
visible?: "all" | "manager" | "
|
|
11539
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11500
11540
|
/** @enum {string} */
|
|
11501
11541
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
11502
11542
|
value: string;
|
|
@@ -11505,7 +11545,7 @@ export interface operations {
|
|
|
11505
11545
|
name: string;
|
|
11506
11546
|
locked?: boolean | null;
|
|
11507
11547
|
/** @enum {string|null} */
|
|
11508
|
-
visible?: "all" | "manager" | "
|
|
11548
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11509
11549
|
/** @enum {string} */
|
|
11510
11550
|
type: "accounts";
|
|
11511
11551
|
value: string[];
|
|
@@ -11516,13 +11556,13 @@ export interface operations {
|
|
|
11516
11556
|
name: string;
|
|
11517
11557
|
locked?: boolean | null;
|
|
11518
11558
|
/** @enum {string|null} */
|
|
11519
|
-
visible?: "all" | "manager" | "
|
|
11559
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11520
11560
|
columns: ({
|
|
11521
11561
|
id?: string | null;
|
|
11522
11562
|
name: string;
|
|
11523
11563
|
locked?: boolean | null;
|
|
11524
11564
|
/** @enum {string|null} */
|
|
11525
|
-
visible?: "all" | "manager" | "
|
|
11565
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11526
11566
|
/** @enum {string} */
|
|
11527
11567
|
type: "field";
|
|
11528
11568
|
value: string;
|
|
@@ -11531,7 +11571,7 @@ export interface operations {
|
|
|
11531
11571
|
name: string;
|
|
11532
11572
|
locked?: boolean | null;
|
|
11533
11573
|
/** @enum {string|null} */
|
|
11534
|
-
visible?: "all" | "manager" | "
|
|
11574
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11535
11575
|
/** @enum {string} */
|
|
11536
11576
|
type: "accounts";
|
|
11537
11577
|
value: string[];
|
|
@@ -11555,13 +11595,13 @@ export interface operations {
|
|
|
11555
11595
|
name: string;
|
|
11556
11596
|
locked?: boolean | null;
|
|
11557
11597
|
/** @enum {string|null} */
|
|
11558
|
-
visible?: "all" | "manager" | "
|
|
11598
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11559
11599
|
columns: ({
|
|
11560
11600
|
id?: string | null;
|
|
11561
11601
|
name: string;
|
|
11562
11602
|
locked?: boolean | null;
|
|
11563
11603
|
/** @enum {string|null} */
|
|
11564
|
-
visible?: "all" | "manager" | "
|
|
11604
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11565
11605
|
/** @enum {string} */
|
|
11566
11606
|
type: "field";
|
|
11567
11607
|
value: string;
|
|
@@ -11570,7 +11610,7 @@ export interface operations {
|
|
|
11570
11610
|
name: string;
|
|
11571
11611
|
locked?: boolean | null;
|
|
11572
11612
|
/** @enum {string|null} */
|
|
11573
|
-
visible?: "all" | "manager" | "
|
|
11613
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11574
11614
|
/** @enum {string} */
|
|
11575
11615
|
type: "accounts";
|
|
11576
11616
|
value: string[];
|
|
@@ -11790,103 +11830,6 @@ export interface operations {
|
|
|
11790
11830
|
};
|
|
11791
11831
|
};
|
|
11792
11832
|
};
|
|
11793
|
-
getOwnerStatementTotals: {
|
|
11794
|
-
parameters: {
|
|
11795
|
-
query: {
|
|
11796
|
-
/** @description Date in format YYYY-MM */
|
|
11797
|
-
month: string;
|
|
11798
|
-
/** @description comma separated listings */
|
|
11799
|
-
listingIds?: string;
|
|
11800
|
-
/** @description comma separated owners */
|
|
11801
|
-
ownerIds?: string;
|
|
11802
|
-
status?: ("draft" | "inReview" | "void" | "published") | "all";
|
|
11803
|
-
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
11804
|
-
currency?: string;
|
|
11805
|
-
search?: string;
|
|
11806
|
-
includePreviousUnattached?: boolean;
|
|
11807
|
-
};
|
|
11808
|
-
header?: {
|
|
11809
|
-
"X-Team-Id"?: string;
|
|
11810
|
-
};
|
|
11811
|
-
path?: never;
|
|
11812
|
-
cookie?: never;
|
|
11813
|
-
};
|
|
11814
|
-
requestBody?: never;
|
|
11815
|
-
responses: {
|
|
11816
|
-
/** @description Successful response */
|
|
11817
|
-
200: {
|
|
11818
|
-
headers: {
|
|
11819
|
-
[name: string]: unknown;
|
|
11820
|
-
};
|
|
11821
|
-
content: {
|
|
11822
|
-
"application/json": {
|
|
11823
|
-
aggregates: {
|
|
11824
|
-
/** @description Value in cents (100 = 1€) */
|
|
11825
|
-
balanceStart: number;
|
|
11826
|
-
/** @description Value in cents (100 = 1€) */
|
|
11827
|
-
netRevenue: number;
|
|
11828
|
-
/** @description Value in cents (100 = 1€) */
|
|
11829
|
-
expenses: number;
|
|
11830
|
-
/** @description Value in cents (100 = 1€) */
|
|
11831
|
-
netIncome: number;
|
|
11832
|
-
/** @description Value in cents (100 = 1€) */
|
|
11833
|
-
transfers: number;
|
|
11834
|
-
/** @description Value in cents (100 = 1€) */
|
|
11835
|
-
balanceEnd: number;
|
|
11836
|
-
currency: string;
|
|
11837
|
-
}[];
|
|
11838
|
-
total: number;
|
|
11839
|
-
defaultCurrency: string;
|
|
11840
|
-
};
|
|
11841
|
-
};
|
|
11842
|
-
};
|
|
11843
|
-
/** @description Invalid input data */
|
|
11844
|
-
400: {
|
|
11845
|
-
headers: {
|
|
11846
|
-
[name: string]: unknown;
|
|
11847
|
-
};
|
|
11848
|
-
content: {
|
|
11849
|
-
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
11850
|
-
};
|
|
11851
|
-
};
|
|
11852
|
-
/** @description Authorization not provided */
|
|
11853
|
-
401: {
|
|
11854
|
-
headers: {
|
|
11855
|
-
[name: string]: unknown;
|
|
11856
|
-
};
|
|
11857
|
-
content: {
|
|
11858
|
-
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
11859
|
-
};
|
|
11860
|
-
};
|
|
11861
|
-
/** @description Insufficient access */
|
|
11862
|
-
403: {
|
|
11863
|
-
headers: {
|
|
11864
|
-
[name: string]: unknown;
|
|
11865
|
-
};
|
|
11866
|
-
content: {
|
|
11867
|
-
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
11868
|
-
};
|
|
11869
|
-
};
|
|
11870
|
-
/** @description Not found */
|
|
11871
|
-
404: {
|
|
11872
|
-
headers: {
|
|
11873
|
-
[name: string]: unknown;
|
|
11874
|
-
};
|
|
11875
|
-
content: {
|
|
11876
|
-
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
11877
|
-
};
|
|
11878
|
-
};
|
|
11879
|
-
/** @description Internal server error */
|
|
11880
|
-
500: {
|
|
11881
|
-
headers: {
|
|
11882
|
-
[name: string]: unknown;
|
|
11883
|
-
};
|
|
11884
|
-
content: {
|
|
11885
|
-
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
11886
|
-
};
|
|
11887
|
-
};
|
|
11888
|
-
};
|
|
11889
|
-
};
|
|
11890
11833
|
getOwnerStatement: {
|
|
11891
11834
|
parameters: {
|
|
11892
11835
|
query?: {
|
|
@@ -12040,13 +11983,13 @@ export interface operations {
|
|
|
12040
11983
|
name: string;
|
|
12041
11984
|
locked?: boolean | null;
|
|
12042
11985
|
/** @enum {string|null} */
|
|
12043
|
-
visible?: "all" | "manager" | "
|
|
11986
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12044
11987
|
columns: ({
|
|
12045
11988
|
id?: string | null;
|
|
12046
11989
|
name: string;
|
|
12047
11990
|
locked?: boolean | null;
|
|
12048
11991
|
/** @enum {string|null} */
|
|
12049
|
-
visible?: "all" | "manager" | "
|
|
11992
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12050
11993
|
/** @enum {string} */
|
|
12051
11994
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
12052
11995
|
value: string;
|
|
@@ -12055,7 +11998,7 @@ export interface operations {
|
|
|
12055
11998
|
name: string;
|
|
12056
11999
|
locked?: boolean | null;
|
|
12057
12000
|
/** @enum {string|null} */
|
|
12058
|
-
visible?: "all" | "manager" | "
|
|
12001
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12059
12002
|
/** @enum {string} */
|
|
12060
12003
|
type: "accounts";
|
|
12061
12004
|
value: string[];
|
|
@@ -12066,13 +12009,13 @@ export interface operations {
|
|
|
12066
12009
|
name: string;
|
|
12067
12010
|
locked?: boolean | null;
|
|
12068
12011
|
/** @enum {string|null} */
|
|
12069
|
-
visible?: "all" | "manager" | "
|
|
12012
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12070
12013
|
columns: ({
|
|
12071
12014
|
id?: string | null;
|
|
12072
12015
|
name: string;
|
|
12073
12016
|
locked?: boolean | null;
|
|
12074
12017
|
/** @enum {string|null} */
|
|
12075
|
-
visible?: "all" | "manager" | "
|
|
12018
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12076
12019
|
/** @enum {string} */
|
|
12077
12020
|
type: "field";
|
|
12078
12021
|
value: string;
|
|
@@ -12081,7 +12024,7 @@ export interface operations {
|
|
|
12081
12024
|
name: string;
|
|
12082
12025
|
locked?: boolean | null;
|
|
12083
12026
|
/** @enum {string|null} */
|
|
12084
|
-
visible?: "all" | "manager" | "
|
|
12027
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12085
12028
|
/** @enum {string} */
|
|
12086
12029
|
type: "accounts";
|
|
12087
12030
|
value: string[];
|
|
@@ -12105,13 +12048,13 @@ export interface operations {
|
|
|
12105
12048
|
name: string;
|
|
12106
12049
|
locked?: boolean | null;
|
|
12107
12050
|
/** @enum {string|null} */
|
|
12108
|
-
visible?: "all" | "manager" | "
|
|
12051
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12109
12052
|
columns: ({
|
|
12110
12053
|
id?: string | null;
|
|
12111
12054
|
name: string;
|
|
12112
12055
|
locked?: boolean | null;
|
|
12113
12056
|
/** @enum {string|null} */
|
|
12114
|
-
visible?: "all" | "manager" | "
|
|
12057
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12115
12058
|
/** @enum {string} */
|
|
12116
12059
|
type: "field";
|
|
12117
12060
|
value: string;
|
|
@@ -12120,7 +12063,7 @@ export interface operations {
|
|
|
12120
12063
|
name: string;
|
|
12121
12064
|
locked?: boolean | null;
|
|
12122
12065
|
/** @enum {string|null} */
|
|
12123
|
-
visible?: "all" | "manager" | "
|
|
12066
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12124
12067
|
/** @enum {string} */
|
|
12125
12068
|
type: "accounts";
|
|
12126
12069
|
value: string[];
|
|
@@ -12502,13 +12445,13 @@ export interface operations {
|
|
|
12502
12445
|
name: string;
|
|
12503
12446
|
locked?: boolean | null;
|
|
12504
12447
|
/** @enum {string|null} */
|
|
12505
|
-
visible?: "all" | "manager" | "
|
|
12448
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12506
12449
|
columns: ({
|
|
12507
12450
|
id?: string | null;
|
|
12508
12451
|
name: string;
|
|
12509
12452
|
locked?: boolean | null;
|
|
12510
12453
|
/** @enum {string|null} */
|
|
12511
|
-
visible?: "all" | "manager" | "
|
|
12454
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12512
12455
|
/** @enum {string} */
|
|
12513
12456
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
12514
12457
|
value: string;
|
|
@@ -12517,7 +12460,7 @@ export interface operations {
|
|
|
12517
12460
|
name: string;
|
|
12518
12461
|
locked?: boolean | null;
|
|
12519
12462
|
/** @enum {string|null} */
|
|
12520
|
-
visible?: "all" | "manager" | "
|
|
12463
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12521
12464
|
/** @enum {string} */
|
|
12522
12465
|
type: "accounts";
|
|
12523
12466
|
value: string[];
|
|
@@ -12528,13 +12471,13 @@ export interface operations {
|
|
|
12528
12471
|
name: string;
|
|
12529
12472
|
locked?: boolean | null;
|
|
12530
12473
|
/** @enum {string|null} */
|
|
12531
|
-
visible?: "all" | "manager" | "
|
|
12474
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12532
12475
|
columns: ({
|
|
12533
12476
|
id?: string | null;
|
|
12534
12477
|
name: string;
|
|
12535
12478
|
locked?: boolean | null;
|
|
12536
12479
|
/** @enum {string|null} */
|
|
12537
|
-
visible?: "all" | "manager" | "
|
|
12480
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12538
12481
|
/** @enum {string} */
|
|
12539
12482
|
type: "field";
|
|
12540
12483
|
value: string;
|
|
@@ -12543,7 +12486,7 @@ export interface operations {
|
|
|
12543
12486
|
name: string;
|
|
12544
12487
|
locked?: boolean | null;
|
|
12545
12488
|
/** @enum {string|null} */
|
|
12546
|
-
visible?: "all" | "manager" | "
|
|
12489
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12547
12490
|
/** @enum {string} */
|
|
12548
12491
|
type: "accounts";
|
|
12549
12492
|
value: string[];
|
|
@@ -12567,13 +12510,13 @@ export interface operations {
|
|
|
12567
12510
|
name: string;
|
|
12568
12511
|
locked?: boolean | null;
|
|
12569
12512
|
/** @enum {string|null} */
|
|
12570
|
-
visible?: "all" | "manager" | "
|
|
12513
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12571
12514
|
columns: ({
|
|
12572
12515
|
id?: string | null;
|
|
12573
12516
|
name: string;
|
|
12574
12517
|
locked?: boolean | null;
|
|
12575
12518
|
/** @enum {string|null} */
|
|
12576
|
-
visible?: "all" | "manager" | "
|
|
12519
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12577
12520
|
/** @enum {string} */
|
|
12578
12521
|
type: "field";
|
|
12579
12522
|
value: string;
|
|
@@ -12582,7 +12525,7 @@ export interface operations {
|
|
|
12582
12525
|
name: string;
|
|
12583
12526
|
locked?: boolean | null;
|
|
12584
12527
|
/** @enum {string|null} */
|
|
12585
|
-
visible?: "all" | "manager" | "
|
|
12528
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12586
12529
|
/** @enum {string} */
|
|
12587
12530
|
type: "accounts";
|
|
12588
12531
|
value: string[];
|
|
@@ -13293,13 +13236,13 @@ export interface operations {
|
|
|
13293
13236
|
name: string;
|
|
13294
13237
|
locked?: boolean | null;
|
|
13295
13238
|
/** @enum {string|null} */
|
|
13296
|
-
visible?: "all" | "manager" | "
|
|
13239
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13297
13240
|
columns: ({
|
|
13298
13241
|
id?: string | null;
|
|
13299
13242
|
name: string;
|
|
13300
13243
|
locked?: boolean | null;
|
|
13301
13244
|
/** @enum {string|null} */
|
|
13302
|
-
visible?: "all" | "manager" | "
|
|
13245
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13303
13246
|
/** @enum {string} */
|
|
13304
13247
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
13305
13248
|
value: string;
|
|
@@ -13308,7 +13251,7 @@ export interface operations {
|
|
|
13308
13251
|
name: string;
|
|
13309
13252
|
locked?: boolean | null;
|
|
13310
13253
|
/** @enum {string|null} */
|
|
13311
|
-
visible?: "all" | "manager" | "
|
|
13254
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13312
13255
|
/** @enum {string} */
|
|
13313
13256
|
type: "accounts";
|
|
13314
13257
|
value: string[];
|
|
@@ -13319,13 +13262,13 @@ export interface operations {
|
|
|
13319
13262
|
name: string;
|
|
13320
13263
|
locked?: boolean | null;
|
|
13321
13264
|
/** @enum {string|null} */
|
|
13322
|
-
visible?: "all" | "manager" | "
|
|
13265
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13323
13266
|
columns: ({
|
|
13324
13267
|
id?: string | null;
|
|
13325
13268
|
name: string;
|
|
13326
13269
|
locked?: boolean | null;
|
|
13327
13270
|
/** @enum {string|null} */
|
|
13328
|
-
visible?: "all" | "manager" | "
|
|
13271
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13329
13272
|
/** @enum {string} */
|
|
13330
13273
|
type: "field";
|
|
13331
13274
|
value: string;
|
|
@@ -13334,7 +13277,7 @@ export interface operations {
|
|
|
13334
13277
|
name: string;
|
|
13335
13278
|
locked?: boolean | null;
|
|
13336
13279
|
/** @enum {string|null} */
|
|
13337
|
-
visible?: "all" | "manager" | "
|
|
13280
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13338
13281
|
/** @enum {string} */
|
|
13339
13282
|
type: "accounts";
|
|
13340
13283
|
value: string[];
|
|
@@ -13358,13 +13301,13 @@ export interface operations {
|
|
|
13358
13301
|
name: string;
|
|
13359
13302
|
locked?: boolean | null;
|
|
13360
13303
|
/** @enum {string|null} */
|
|
13361
|
-
visible?: "all" | "manager" | "
|
|
13304
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13362
13305
|
columns: ({
|
|
13363
13306
|
id?: string | null;
|
|
13364
13307
|
name: string;
|
|
13365
13308
|
locked?: boolean | null;
|
|
13366
13309
|
/** @enum {string|null} */
|
|
13367
|
-
visible?: "all" | "manager" | "
|
|
13310
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13368
13311
|
/** @enum {string} */
|
|
13369
13312
|
type: "field";
|
|
13370
13313
|
value: string;
|
|
@@ -13373,7 +13316,7 @@ export interface operations {
|
|
|
13373
13316
|
name: string;
|
|
13374
13317
|
locked?: boolean | null;
|
|
13375
13318
|
/** @enum {string|null} */
|
|
13376
|
-
visible?: "all" | "manager" | "
|
|
13319
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13377
13320
|
/** @enum {string} */
|
|
13378
13321
|
type: "accounts";
|
|
13379
13322
|
value: string[];
|
|
@@ -17717,7 +17660,6 @@ export interface operations {
|
|
|
17717
17660
|
status?: "active" | "inactive";
|
|
17718
17661
|
/** @enum {string} */
|
|
17719
17662
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
17720
|
-
uniqueRef?: string | null;
|
|
17721
17663
|
id: string;
|
|
17722
17664
|
offsetAccount?: {
|
|
17723
17665
|
id: string;
|
|
@@ -17856,7 +17798,6 @@ export interface operations {
|
|
|
17856
17798
|
last4?: string | null;
|
|
17857
17799
|
currency?: string | null;
|
|
17858
17800
|
} | null;
|
|
17859
|
-
uniqueRef?: string | null;
|
|
17860
17801
|
};
|
|
17861
17802
|
};
|
|
17862
17803
|
};
|
|
@@ -17873,7 +17814,6 @@ export interface operations {
|
|
|
17873
17814
|
status?: "active" | "inactive";
|
|
17874
17815
|
/** @enum {string} */
|
|
17875
17816
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
17876
|
-
uniqueRef?: string | null;
|
|
17877
17817
|
id: string;
|
|
17878
17818
|
offsetAccount?: {
|
|
17879
17819
|
id: string;
|
|
@@ -18089,7 +18029,6 @@ export interface operations {
|
|
|
18089
18029
|
status?: "active" | "inactive";
|
|
18090
18030
|
/** @enum {string} */
|
|
18091
18031
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
18092
|
-
uniqueRef?: string | null;
|
|
18093
18032
|
id: string;
|
|
18094
18033
|
offsetAccount?: {
|
|
18095
18034
|
id: string;
|
|
@@ -18236,7 +18175,6 @@ export interface operations {
|
|
|
18236
18175
|
last4?: string | null;
|
|
18237
18176
|
currency?: string | null;
|
|
18238
18177
|
} | null;
|
|
18239
|
-
uniqueRef?: string | null;
|
|
18240
18178
|
};
|
|
18241
18179
|
};
|
|
18242
18180
|
};
|
|
@@ -18253,7 +18191,6 @@ export interface operations {
|
|
|
18253
18191
|
status?: "active" | "inactive";
|
|
18254
18192
|
/** @enum {string} */
|
|
18255
18193
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
18256
|
-
uniqueRef?: string | null;
|
|
18257
18194
|
id: string;
|
|
18258
18195
|
offsetAccount?: {
|
|
18259
18196
|
id: string;
|
|
@@ -19279,8 +19216,6 @@ export interface operations {
|
|
|
19279
19216
|
requestBody: {
|
|
19280
19217
|
content: {
|
|
19281
19218
|
"application/json": {
|
|
19282
|
-
/** Format: uuid */
|
|
19283
|
-
connectionId: string;
|
|
19284
19219
|
data: {
|
|
19285
19220
|
address?: {
|
|
19286
19221
|
full?: string | null;
|
|
@@ -19308,12 +19243,14 @@ export interface operations {
|
|
|
19308
19243
|
uniqueRef?: string | null;
|
|
19309
19244
|
/** @enum {string|null} */
|
|
19310
19245
|
status?: "active" | "inactive" | null;
|
|
19246
|
+
invite?: boolean | null;
|
|
19311
19247
|
/** Format: uuid */
|
|
19312
19248
|
payoutAccountId?: string | null;
|
|
19313
19249
|
/** Format: uuid */
|
|
19314
19250
|
id?: string | null;
|
|
19315
|
-
invite?: boolean | null;
|
|
19316
19251
|
}[];
|
|
19252
|
+
/** Format: uuid */
|
|
19253
|
+
connectionId: string;
|
|
19317
19254
|
};
|
|
19318
19255
|
};
|
|
19319
19256
|
};
|
|
@@ -19350,6 +19287,7 @@ export interface operations {
|
|
|
19350
19287
|
uniqueRef?: string | null;
|
|
19351
19288
|
/** @enum {string} */
|
|
19352
19289
|
status: "active" | "inactive";
|
|
19290
|
+
invite?: boolean | null;
|
|
19353
19291
|
/** Format: uuid */
|
|
19354
19292
|
payoutAccountId?: string | null;
|
|
19355
19293
|
/** Format: uuid */
|
|
@@ -19464,6 +19402,7 @@ export interface operations {
|
|
|
19464
19402
|
uniqueRef?: string | null;
|
|
19465
19403
|
/** @enum {string} */
|
|
19466
19404
|
status: "active" | "inactive";
|
|
19405
|
+
invite?: boolean | null;
|
|
19467
19406
|
/** Format: uuid */
|
|
19468
19407
|
payoutAccountId?: string | null;
|
|
19469
19408
|
/** Format: uuid */
|
|
@@ -19577,6 +19516,7 @@ export interface operations {
|
|
|
19577
19516
|
uniqueRef?: string | null;
|
|
19578
19517
|
/** @enum {string|null} */
|
|
19579
19518
|
status?: "active" | "inactive" | null;
|
|
19519
|
+
invite?: boolean | null;
|
|
19580
19520
|
/** Format: uuid */
|
|
19581
19521
|
payoutAccountId?: string | null;
|
|
19582
19522
|
};
|
|
@@ -19614,6 +19554,7 @@ export interface operations {
|
|
|
19614
19554
|
uniqueRef?: string | null;
|
|
19615
19555
|
/** @enum {string} */
|
|
19616
19556
|
status: "active" | "inactive";
|
|
19557
|
+
invite?: boolean | null;
|
|
19617
19558
|
/** Format: uuid */
|
|
19618
19559
|
payoutAccountId?: string | null;
|
|
19619
19560
|
/** Format: uuid */
|
|
@@ -19810,6 +19751,7 @@ export interface operations {
|
|
|
19810
19751
|
uniqueRef?: string | null;
|
|
19811
19752
|
/** @enum {string} */
|
|
19812
19753
|
status: "active" | "inactive";
|
|
19754
|
+
invite?: boolean | null;
|
|
19813
19755
|
/** Format: uuid */
|
|
19814
19756
|
payoutAccountId?: string | null;
|
|
19815
19757
|
/** Format: uuid */
|
|
@@ -19931,9 +19873,9 @@ export interface operations {
|
|
|
19931
19873
|
uniqueRef?: string | null;
|
|
19932
19874
|
/** @enum {string|null} */
|
|
19933
19875
|
status?: "active" | "inactive" | null;
|
|
19876
|
+
invite?: boolean | null;
|
|
19934
19877
|
/** Format: uuid */
|
|
19935
19878
|
payoutAccountId?: string | null;
|
|
19936
|
-
invite?: boolean | null;
|
|
19937
19879
|
};
|
|
19938
19880
|
};
|
|
19939
19881
|
};
|
|
@@ -19969,6 +19911,7 @@ export interface operations {
|
|
|
19969
19911
|
uniqueRef?: string | null;
|
|
19970
19912
|
/** @enum {string} */
|
|
19971
19913
|
status: "active" | "inactive";
|
|
19914
|
+
invite?: boolean | null;
|
|
19972
19915
|
/** Format: uuid */
|
|
19973
19916
|
payoutAccountId?: string | null;
|
|
19974
19917
|
/** Format: uuid */
|
|
@@ -21319,7 +21262,7 @@ export interface operations {
|
|
|
21319
21262
|
};
|
|
21320
21263
|
};
|
|
21321
21264
|
};
|
|
21322
|
-
|
|
21265
|
+
getStoreAction: {
|
|
21323
21266
|
parameters: {
|
|
21324
21267
|
query?: never;
|
|
21325
21268
|
header?: {
|
|
@@ -21353,7 +21296,7 @@ export interface operations {
|
|
|
21353
21296
|
/** Format: uuid */
|
|
21354
21297
|
id: string;
|
|
21355
21298
|
/** @enum {string} */
|
|
21356
|
-
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"
|
|
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";
|
|
21357
21300
|
payload?: unknown;
|
|
21358
21301
|
/** @enum {string} */
|
|
21359
21302
|
status: "pending" | "claimed" | "running" | "completed" | "failed" | "dead_letter";
|
|
@@ -21431,6 +21374,260 @@ export interface operations {
|
|
|
21431
21374
|
};
|
|
21432
21375
|
};
|
|
21433
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
|
+
};
|
|
21434
21631
|
plaidConnectComplete: {
|
|
21435
21632
|
parameters: {
|
|
21436
21633
|
query?: never;
|
|
@@ -22504,23 +22701,13 @@ export interface operations {
|
|
|
22504
22701
|
};
|
|
22505
22702
|
getJournalEntriesReport: {
|
|
22506
22703
|
parameters: {
|
|
22507
|
-
query
|
|
22508
|
-
|
|
22509
|
-
|
|
22510
|
-
status?: "active" | "inactive";
|
|
22511
|
-
types?: string;
|
|
22512
|
-
classifications?: string;
|
|
22513
|
-
startAt?: string;
|
|
22514
|
-
endAt?: string;
|
|
22704
|
+
query: {
|
|
22705
|
+
startAt: string;
|
|
22706
|
+
endAt: string;
|
|
22515
22707
|
search?: string;
|
|
22516
22708
|
date?: string;
|
|
22517
22709
|
amount?: string;
|
|
22518
22710
|
isDateRangeEndInclusive?: boolean;
|
|
22519
|
-
reservationIds?: string;
|
|
22520
|
-
transactionIds?: string;
|
|
22521
|
-
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
22522
|
-
currency?: string;
|
|
22523
|
-
excludeApAppendix?: boolean;
|
|
22524
22711
|
/** @description listing uuids comma separated or "unmapped" */
|
|
22525
22712
|
listingIds?: string;
|
|
22526
22713
|
/** @description comma separated accounts */
|
|
@@ -22551,9 +22738,6 @@ export interface operations {
|
|
|
22551
22738
|
"application/json": {
|
|
22552
22739
|
data: {
|
|
22553
22740
|
id: string;
|
|
22554
|
-
/** @enum {string} */
|
|
22555
|
-
active: "active" | "inactive";
|
|
22556
|
-
txnCode: string;
|
|
22557
22741
|
txnAt: string;
|
|
22558
22742
|
description: string;
|
|
22559
22743
|
centTotal: number;
|
|
@@ -22880,9 +23064,6 @@ export interface operations {
|
|
|
22880
23064
|
"application/json": {
|
|
22881
23065
|
data: {
|
|
22882
23066
|
id: string;
|
|
22883
|
-
/** @enum {string} */
|
|
22884
|
-
active: "active" | "inactive";
|
|
22885
|
-
txnCode: string;
|
|
22886
23067
|
txnAt: string;
|
|
22887
23068
|
description: string;
|
|
22888
23069
|
centTotal: number;
|
|
@@ -23210,10 +23391,10 @@ export interface operations {
|
|
|
23210
23391
|
data: {
|
|
23211
23392
|
contact: {
|
|
23212
23393
|
contactId: string;
|
|
23213
|
-
name?: string;
|
|
23214
|
-
firstName?: string;
|
|
23215
|
-
email?: string;
|
|
23216
|
-
phone?: string;
|
|
23394
|
+
name?: string | null;
|
|
23395
|
+
firstName?: string | null;
|
|
23396
|
+
email?: string | null;
|
|
23397
|
+
phone?: string | null;
|
|
23217
23398
|
};
|
|
23218
23399
|
currency: string;
|
|
23219
23400
|
financials: {
|
|
@@ -23356,7 +23537,6 @@ export interface operations {
|
|
|
23356
23537
|
year: number;
|
|
23357
23538
|
listingId?: string;
|
|
23358
23539
|
currency?: string;
|
|
23359
|
-
viewAs?: "owner" | "manager";
|
|
23360
23540
|
};
|
|
23361
23541
|
header?: {
|
|
23362
23542
|
"X-Team-Id"?: string;
|
|
@@ -23375,83 +23555,30 @@ export interface operations {
|
|
|
23375
23555
|
};
|
|
23376
23556
|
content: {
|
|
23377
23557
|
"application/json": {
|
|
23378
|
-
currency: string;
|
|
23379
|
-
contact: {
|
|
23380
|
-
contactId: string;
|
|
23381
|
-
name?: string;
|
|
23382
|
-
firstName?: string;
|
|
23383
|
-
email?: string;
|
|
23384
|
-
phone?: string;
|
|
23385
|
-
};
|
|
23386
|
-
financials: {
|
|
23387
|
-
balanceStart: number;
|
|
23388
|
-
netRevenue: number;
|
|
23389
|
-
expenses: number;
|
|
23390
|
-
transfers: number;
|
|
23391
|
-
netIncome: number;
|
|
23392
|
-
currentBalance: number;
|
|
23393
|
-
balanceEnd: number;
|
|
23394
|
-
};
|
|
23395
23558
|
netRevenueSection: {
|
|
23396
23559
|
title: string;
|
|
23397
23560
|
rows: {
|
|
23398
23561
|
title: string;
|
|
23399
|
-
statementIds
|
|
23562
|
+
statementIds: string[];
|
|
23400
23563
|
columns: {
|
|
23401
23564
|
title: string;
|
|
23402
23565
|
value: number | string;
|
|
23403
23566
|
formatted: string;
|
|
23404
23567
|
}[];
|
|
23405
23568
|
}[];
|
|
23406
|
-
subtotal?: {
|
|
23407
|
-
title: string;
|
|
23408
|
-
columns: {
|
|
23409
|
-
title: string;
|
|
23410
|
-
value: number | string;
|
|
23411
|
-
formatted: string;
|
|
23412
|
-
}[];
|
|
23413
|
-
};
|
|
23414
23569
|
};
|
|
23415
23570
|
otherSections: {
|
|
23416
23571
|
title: string;
|
|
23417
23572
|
rows: {
|
|
23418
23573
|
title: string;
|
|
23419
|
-
statementIds
|
|
23574
|
+
statementIds: string[];
|
|
23420
23575
|
columns: {
|
|
23421
23576
|
title: string;
|
|
23422
23577
|
value: number | string;
|
|
23423
23578
|
formatted: string;
|
|
23424
23579
|
}[];
|
|
23425
23580
|
}[];
|
|
23426
|
-
subtotal?: {
|
|
23427
|
-
title: string;
|
|
23428
|
-
columns: {
|
|
23429
|
-
title: string;
|
|
23430
|
-
value: number | string;
|
|
23431
|
-
formatted: string;
|
|
23432
|
-
}[];
|
|
23433
|
-
};
|
|
23434
23581
|
}[];
|
|
23435
|
-
transfersSection?: {
|
|
23436
|
-
title: string;
|
|
23437
|
-
rows: {
|
|
23438
|
-
title: string;
|
|
23439
|
-
statementIds?: string[];
|
|
23440
|
-
columns: {
|
|
23441
|
-
title: string;
|
|
23442
|
-
value: number | string;
|
|
23443
|
-
formatted: string;
|
|
23444
|
-
}[];
|
|
23445
|
-
}[];
|
|
23446
|
-
subtotal?: {
|
|
23447
|
-
title: string;
|
|
23448
|
-
columns: {
|
|
23449
|
-
title: string;
|
|
23450
|
-
value: number | string;
|
|
23451
|
-
formatted: string;
|
|
23452
|
-
}[];
|
|
23453
|
-
};
|
|
23454
|
-
};
|
|
23455
23582
|
};
|
|
23456
23583
|
};
|
|
23457
23584
|
};
|
|
@@ -23510,7 +23637,6 @@ export interface operations {
|
|
|
23510
23637
|
year: number;
|
|
23511
23638
|
listingId?: string;
|
|
23512
23639
|
currency?: string;
|
|
23513
|
-
viewAs?: "owner" | "manager";
|
|
23514
23640
|
};
|
|
23515
23641
|
header?: {
|
|
23516
23642
|
"X-Team-Id"?: string;
|
|
@@ -23583,9 +23709,9 @@ export interface operations {
|
|
|
23583
23709
|
getCalendar: {
|
|
23584
23710
|
parameters: {
|
|
23585
23711
|
query: {
|
|
23586
|
-
listingId: string;
|
|
23587
23712
|
startDate: string;
|
|
23588
23713
|
endDate: string;
|
|
23714
|
+
listingId: string;
|
|
23589
23715
|
};
|
|
23590
23716
|
header?: {
|
|
23591
23717
|
"X-Team-Id"?: string;
|
|
@@ -23607,6 +23733,7 @@ export interface operations {
|
|
|
23607
23733
|
/** @enum {string} */
|
|
23608
23734
|
blockReason: "ownerBlock" | "maintenance";
|
|
23609
23735
|
description?: string;
|
|
23736
|
+
id?: string;
|
|
23610
23737
|
user?: {
|
|
23611
23738
|
email: string;
|
|
23612
23739
|
firstName: string;
|
|
@@ -23676,9 +23803,9 @@ export interface operations {
|
|
|
23676
23803
|
requestBody: {
|
|
23677
23804
|
content: {
|
|
23678
23805
|
"application/json": {
|
|
23679
|
-
listingId: string;
|
|
23680
23806
|
startDate: string;
|
|
23681
23807
|
endDate: string;
|
|
23808
|
+
listingId: string;
|
|
23682
23809
|
description?: string;
|
|
23683
23810
|
};
|
|
23684
23811
|
};
|
|
@@ -23696,6 +23823,7 @@ export interface operations {
|
|
|
23696
23823
|
/** @enum {string} */
|
|
23697
23824
|
blockReason: "ownerBlock" | "maintenance";
|
|
23698
23825
|
description?: string;
|
|
23826
|
+
id?: string;
|
|
23699
23827
|
user?: {
|
|
23700
23828
|
email: string;
|
|
23701
23829
|
firstName: string;
|
|
@@ -23750,7 +23878,6 @@ export interface operations {
|
|
|
23750
23878
|
listingId: string;
|
|
23751
23879
|
startDate: string;
|
|
23752
23880
|
endDate: string;
|
|
23753
|
-
description?: string;
|
|
23754
23881
|
};
|
|
23755
23882
|
header?: {
|
|
23756
23883
|
"X-Team-Id"?: string;
|
|
@@ -23772,6 +23899,7 @@ export interface operations {
|
|
|
23772
23899
|
/** @enum {string} */
|
|
23773
23900
|
blockReason: "ownerBlock" | "maintenance";
|
|
23774
23901
|
description?: string;
|
|
23902
|
+
id?: string;
|
|
23775
23903
|
user?: {
|
|
23776
23904
|
email: string;
|
|
23777
23905
|
firstName: string;
|
|
@@ -23874,7 +24002,7 @@ export interface operations {
|
|
|
23874
24002
|
* @description Internal semantic type
|
|
23875
24003
|
* @enum {string}
|
|
23876
24004
|
*/
|
|
23877
|
-
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";
|
|
23878
24006
|
/** @description Optional JSONB filter for internal data */
|
|
23879
24007
|
filter?: string;
|
|
23880
24008
|
};
|
|
@@ -23898,7 +24026,7 @@ export interface operations {
|
|
|
23898
24026
|
* @description Semantic type of the setting value
|
|
23899
24027
|
* @enum {string}
|
|
23900
24028
|
*/
|
|
23901
|
-
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";
|
|
23902
24030
|
/** @description Optional JSONB filter for available values */
|
|
23903
24031
|
filter?: string;
|
|
23904
24032
|
};
|
|
@@ -23995,7 +24123,7 @@ export interface operations {
|
|
|
23995
24123
|
* @description Internal semantic type
|
|
23996
24124
|
* @enum {string}
|
|
23997
24125
|
*/
|
|
23998
|
-
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";
|
|
23999
24127
|
/** @description Optional JSONB filter for internal data */
|
|
24000
24128
|
filter?: string;
|
|
24001
24129
|
};
|
|
@@ -24019,7 +24147,7 @@ export interface operations {
|
|
|
24019
24147
|
* @description Semantic type of the setting value
|
|
24020
24148
|
* @enum {string}
|
|
24021
24149
|
*/
|
|
24022
|
-
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";
|
|
24023
24151
|
/** @description Optional JSONB filter for available values */
|
|
24024
24152
|
filter?: string;
|
|
24025
24153
|
};
|
|
@@ -24119,7 +24247,7 @@ export interface operations {
|
|
|
24119
24247
|
* @description Internal semantic type
|
|
24120
24248
|
* @enum {string}
|
|
24121
24249
|
*/
|
|
24122
|
-
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";
|
|
24123
24251
|
/** @description Optional JSONB filter for internal data */
|
|
24124
24252
|
filter?: string;
|
|
24125
24253
|
};
|
|
@@ -24143,7 +24271,7 @@ export interface operations {
|
|
|
24143
24271
|
* @description Semantic type of the setting value
|
|
24144
24272
|
* @enum {string}
|
|
24145
24273
|
*/
|
|
24146
|
-
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";
|
|
24147
24275
|
/** @description Optional JSONB filter for available values */
|
|
24148
24276
|
filter?: string;
|
|
24149
24277
|
};
|
|
@@ -24230,7 +24358,7 @@ export interface operations {
|
|
|
24230
24358
|
* @description Internal semantic type
|
|
24231
24359
|
* @enum {string}
|
|
24232
24360
|
*/
|
|
24233
|
-
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";
|
|
24234
24362
|
/** @description Optional JSONB filter for internal data */
|
|
24235
24363
|
filter?: string;
|
|
24236
24364
|
};
|
|
@@ -24254,7 +24382,7 @@ export interface operations {
|
|
|
24254
24382
|
* @description Semantic type of the setting value
|
|
24255
24383
|
* @enum {string}
|
|
24256
24384
|
*/
|
|
24257
|
-
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";
|
|
24258
24386
|
/** @description Optional JSONB filter for available values */
|
|
24259
24387
|
filter?: string;
|
|
24260
24388
|
};
|
|
@@ -24294,7 +24422,7 @@ export interface operations {
|
|
|
24294
24422
|
* @description Internal semantic type
|
|
24295
24423
|
* @enum {string}
|
|
24296
24424
|
*/
|
|
24297
|
-
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";
|
|
24298
24426
|
/** @description Optional JSONB filter for internal data */
|
|
24299
24427
|
filter?: string;
|
|
24300
24428
|
};
|
|
@@ -24318,7 +24446,7 @@ export interface operations {
|
|
|
24318
24446
|
* @description Semantic type of the setting value
|
|
24319
24447
|
* @enum {string}
|
|
24320
24448
|
*/
|
|
24321
|
-
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";
|
|
24322
24450
|
/** @description Optional JSONB filter for available values */
|
|
24323
24451
|
filter?: string;
|
|
24324
24452
|
};
|