@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
package/src/generated/v1.ts
CHANGED
|
@@ -680,26 +680,6 @@ export interface paths {
|
|
|
680
680
|
patch?: never;
|
|
681
681
|
trace?: never;
|
|
682
682
|
};
|
|
683
|
-
"/statements/totals": {
|
|
684
|
-
parameters: {
|
|
685
|
-
query?: never;
|
|
686
|
-
header?: never;
|
|
687
|
-
path?: never;
|
|
688
|
-
cookie?: never;
|
|
689
|
-
};
|
|
690
|
-
/**
|
|
691
|
-
* Aggregated owner statement totals without pagination effects
|
|
692
|
-
* @description Get statement totals for a month
|
|
693
|
-
*/
|
|
694
|
-
get: operations["getOwnerStatementTotals"];
|
|
695
|
-
put?: never;
|
|
696
|
-
post?: never;
|
|
697
|
-
delete?: never;
|
|
698
|
-
options?: never;
|
|
699
|
-
head?: never;
|
|
700
|
-
patch?: never;
|
|
701
|
-
trace?: never;
|
|
702
|
-
};
|
|
703
683
|
"/statements/{id}": {
|
|
704
684
|
parameters: {
|
|
705
685
|
query?: never;
|
|
@@ -1426,7 +1406,7 @@ export interface paths {
|
|
|
1426
1406
|
patch?: never;
|
|
1427
1407
|
trace?: never;
|
|
1428
1408
|
};
|
|
1429
|
-
"/
|
|
1409
|
+
"/store-actions/{id}": {
|
|
1430
1410
|
parameters: {
|
|
1431
1411
|
query?: never;
|
|
1432
1412
|
header?: never;
|
|
@@ -1434,7 +1414,24 @@ export interface paths {
|
|
|
1434
1414
|
cookie?: never;
|
|
1435
1415
|
};
|
|
1436
1416
|
/** @description Retrieve a dispatched action and queued effects for progress tracking */
|
|
1437
|
-
get: operations["
|
|
1417
|
+
get: operations["getStoreAction"];
|
|
1418
|
+
put?: never;
|
|
1419
|
+
post?: never;
|
|
1420
|
+
delete?: never;
|
|
1421
|
+
options?: never;
|
|
1422
|
+
head?: never;
|
|
1423
|
+
patch?: never;
|
|
1424
|
+
trace?: never;
|
|
1425
|
+
};
|
|
1426
|
+
"/reviews": {
|
|
1427
|
+
parameters: {
|
|
1428
|
+
query?: never;
|
|
1429
|
+
header?: never;
|
|
1430
|
+
path?: never;
|
|
1431
|
+
cookie?: never;
|
|
1432
|
+
};
|
|
1433
|
+
/** @description Reviews list */
|
|
1434
|
+
get: operations["getReviews"];
|
|
1438
1435
|
put?: never;
|
|
1439
1436
|
post?: never;
|
|
1440
1437
|
delete?: never;
|
|
@@ -2335,19 +2332,19 @@ export interface components {
|
|
|
2335
2332
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2336
2333
|
* @enum {string|null}
|
|
2337
2334
|
*/
|
|
2338
|
-
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2335
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2339
2336
|
filter: string | null;
|
|
2340
2337
|
value: components["schemas"]["FlowMappingResolvedEntityValue"];
|
|
2341
2338
|
};
|
|
2342
2339
|
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
2343
2340
|
FlowMappingResolvedEntityValue: {
|
|
2344
|
-
id: string
|
|
2341
|
+
id: string;
|
|
2345
2342
|
name: string;
|
|
2346
2343
|
/**
|
|
2347
2344
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2348
2345
|
* @enum {string}
|
|
2349
2346
|
*/
|
|
2350
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2347
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2351
2348
|
};
|
|
2352
2349
|
/** @description Collection of settings after mutation with normalized { id, name, type } value payloads. */
|
|
2353
2350
|
FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
|
|
@@ -2366,7 +2363,7 @@ export interface components {
|
|
|
2366
2363
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2367
2364
|
* @enum {string|null}
|
|
2368
2365
|
*/
|
|
2369
|
-
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2366
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2370
2367
|
filter: string | null;
|
|
2371
2368
|
value: components["schemas"]["FlowMappingResolvedEntityValue"];
|
|
2372
2369
|
};
|
|
@@ -4350,7 +4347,6 @@ export interface operations {
|
|
|
4350
4347
|
requestBody: {
|
|
4351
4348
|
content: {
|
|
4352
4349
|
"application/json": {
|
|
4353
|
-
dangerouslyAllowLocked?: boolean;
|
|
4354
4350
|
ids?: string[];
|
|
4355
4351
|
listingIds?: string[];
|
|
4356
4352
|
connectionIds?: string[];
|
|
@@ -5866,7 +5862,7 @@ export interface operations {
|
|
|
5866
5862
|
data: {
|
|
5867
5863
|
/** Format: uuid */
|
|
5868
5864
|
listingId: string;
|
|
5869
|
-
/** @default 2025-11-
|
|
5865
|
+
/** @default 2025-11-13 */
|
|
5870
5866
|
startAt: string;
|
|
5871
5867
|
endAt?: string | null;
|
|
5872
5868
|
setListingInactive?: boolean | null;
|
|
@@ -5948,7 +5944,7 @@ export interface operations {
|
|
|
5948
5944
|
"application/json": {
|
|
5949
5945
|
/** Format: uuid */
|
|
5950
5946
|
listingId: string;
|
|
5951
|
-
/** @default 2025-11-
|
|
5947
|
+
/** @default 2025-11-13 */
|
|
5952
5948
|
startAt?: string;
|
|
5953
5949
|
endAt?: string | null;
|
|
5954
5950
|
members: {
|
|
@@ -5982,7 +5978,7 @@ export interface operations {
|
|
|
5982
5978
|
"application/json": {
|
|
5983
5979
|
/** Format: uuid */
|
|
5984
5980
|
listingId: string;
|
|
5985
|
-
/** @default 2025-11-
|
|
5981
|
+
/** @default 2025-11-13 */
|
|
5986
5982
|
startAt: string;
|
|
5987
5983
|
endAt?: string | null;
|
|
5988
5984
|
setListingInactive?: boolean | null;
|
|
@@ -6062,7 +6058,7 @@ export interface operations {
|
|
|
6062
6058
|
"application/json": {
|
|
6063
6059
|
/** Format: uuid */
|
|
6064
6060
|
listingId: string;
|
|
6065
|
-
/** @default 2025-11-
|
|
6061
|
+
/** @default 2025-11-13 */
|
|
6066
6062
|
startAt: string;
|
|
6067
6063
|
endAt?: string | null;
|
|
6068
6064
|
setListingInactive?: boolean | null;
|
|
@@ -6145,7 +6141,7 @@ export interface operations {
|
|
|
6145
6141
|
"application/json": {
|
|
6146
6142
|
/** Format: uuid */
|
|
6147
6143
|
listingId?: string;
|
|
6148
|
-
/** @default 2025-11-
|
|
6144
|
+
/** @default 2025-11-13 */
|
|
6149
6145
|
startAt?: string;
|
|
6150
6146
|
endAt?: string | null;
|
|
6151
6147
|
members?: {
|
|
@@ -6179,7 +6175,7 @@ export interface operations {
|
|
|
6179
6175
|
"application/json": {
|
|
6180
6176
|
/** Format: uuid */
|
|
6181
6177
|
listingId: string;
|
|
6182
|
-
/** @default 2025-11-
|
|
6178
|
+
/** @default 2025-11-13 */
|
|
6183
6179
|
startAt: string;
|
|
6184
6180
|
endAt?: string | null;
|
|
6185
6181
|
setListingInactive?: boolean | null;
|
|
@@ -6365,7 +6361,7 @@ export interface operations {
|
|
|
6365
6361
|
/** Format: uuid */
|
|
6366
6362
|
sourceId?: string | null;
|
|
6367
6363
|
initialOwnership?: {
|
|
6368
|
-
/** @default 2025-11-
|
|
6364
|
+
/** @default 2025-11-13 */
|
|
6369
6365
|
startAt?: string;
|
|
6370
6366
|
endAt?: string | null;
|
|
6371
6367
|
members: {
|
|
@@ -6423,7 +6419,7 @@ export interface operations {
|
|
|
6423
6419
|
status: "active" | "inactive";
|
|
6424
6420
|
defaultCurrency?: string | null;
|
|
6425
6421
|
activeOwnership?: {
|
|
6426
|
-
/** @default 2025-11-
|
|
6422
|
+
/** @default 2025-11-13 */
|
|
6427
6423
|
startAt: string;
|
|
6428
6424
|
endAt?: string | null;
|
|
6429
6425
|
setListingInactive?: boolean | null;
|
|
@@ -6664,7 +6660,7 @@ export interface operations {
|
|
|
6664
6660
|
status: "active" | "inactive";
|
|
6665
6661
|
defaultCurrency?: string | null;
|
|
6666
6662
|
activeOwnership?: {
|
|
6667
|
-
/** @default 2025-11-
|
|
6663
|
+
/** @default 2025-11-13 */
|
|
6668
6664
|
startAt: string;
|
|
6669
6665
|
endAt?: string | null;
|
|
6670
6666
|
setListingInactive?: boolean | null;
|
|
@@ -6803,7 +6799,7 @@ export interface operations {
|
|
|
6803
6799
|
/** Format: uuid */
|
|
6804
6800
|
sourceId?: string | null;
|
|
6805
6801
|
initialOwnership?: {
|
|
6806
|
-
/** @default 2025-11-
|
|
6802
|
+
/** @default 2025-11-13 */
|
|
6807
6803
|
startAt?: string;
|
|
6808
6804
|
endAt?: string | null;
|
|
6809
6805
|
members: {
|
|
@@ -6857,7 +6853,7 @@ export interface operations {
|
|
|
6857
6853
|
status: "active" | "inactive";
|
|
6858
6854
|
defaultCurrency?: string | null;
|
|
6859
6855
|
activeOwnership?: {
|
|
6860
|
-
/** @default 2025-11-
|
|
6856
|
+
/** @default 2025-11-13 */
|
|
6861
6857
|
startAt: string;
|
|
6862
6858
|
endAt?: string | null;
|
|
6863
6859
|
setListingInactive?: boolean | null;
|
|
@@ -7074,7 +7070,7 @@ export interface operations {
|
|
|
7074
7070
|
status: "active" | "inactive";
|
|
7075
7071
|
defaultCurrency?: string | null;
|
|
7076
7072
|
activeOwnership?: {
|
|
7077
|
-
/** @default 2025-11-
|
|
7073
|
+
/** @default 2025-11-13 */
|
|
7078
7074
|
startAt: string;
|
|
7079
7075
|
endAt?: string | null;
|
|
7080
7076
|
setListingInactive?: boolean | null;
|
|
@@ -7221,7 +7217,7 @@ export interface operations {
|
|
|
7221
7217
|
/** Format: uuid */
|
|
7222
7218
|
sourceId?: string | null;
|
|
7223
7219
|
initialOwnership?: {
|
|
7224
|
-
/** @default 2025-11-
|
|
7220
|
+
/** @default 2025-11-13 */
|
|
7225
7221
|
startAt?: string;
|
|
7226
7222
|
endAt?: string | null;
|
|
7227
7223
|
members: {
|
|
@@ -7275,7 +7271,7 @@ export interface operations {
|
|
|
7275
7271
|
status: "active" | "inactive";
|
|
7276
7272
|
defaultCurrency?: string | null;
|
|
7277
7273
|
activeOwnership?: {
|
|
7278
|
-
/** @default 2025-11-
|
|
7274
|
+
/** @default 2025-11-13 */
|
|
7279
7275
|
startAt: string;
|
|
7280
7276
|
endAt?: string | null;
|
|
7281
7277
|
setListingInactive?: boolean | null;
|
|
@@ -7934,7 +7930,7 @@ export interface operations {
|
|
|
7934
7930
|
/** @enum {string} */
|
|
7935
7931
|
type: "partner" | "admin" | "propertyManager";
|
|
7936
7932
|
/** @enum {string} */
|
|
7937
|
-
status: "active" | "inactive"
|
|
7933
|
+
status: "active" | "inactive";
|
|
7938
7934
|
billingSubscriptionStatus?: string | null;
|
|
7939
7935
|
billingPlan?: string | null;
|
|
7940
7936
|
createdAt?: string | null;
|
|
@@ -8143,7 +8139,7 @@ export interface operations {
|
|
|
8143
8139
|
/** @enum {string} */
|
|
8144
8140
|
type: "partner" | "admin" | "propertyManager";
|
|
8145
8141
|
/** @enum {string} */
|
|
8146
|
-
status: "active" | "inactive"
|
|
8142
|
+
status: "active" | "inactive";
|
|
8147
8143
|
billingSubscriptionStatus?: string | null;
|
|
8148
8144
|
billingPlan?: string | null;
|
|
8149
8145
|
createdAt?: string | null;
|
|
@@ -8363,7 +8359,7 @@ export interface operations {
|
|
|
8363
8359
|
/** @enum {string} */
|
|
8364
8360
|
type: "partner" | "admin" | "propertyManager";
|
|
8365
8361
|
/** @enum {string} */
|
|
8366
|
-
status: "active" | "inactive"
|
|
8362
|
+
status: "active" | "inactive";
|
|
8367
8363
|
billingSubscriptionStatus?: string | null;
|
|
8368
8364
|
billingPlan?: string | null;
|
|
8369
8365
|
createdAt?: string | null;
|
|
@@ -8495,7 +8491,7 @@ export interface operations {
|
|
|
8495
8491
|
/** @enum {string} */
|
|
8496
8492
|
type?: "partner" | "admin" | "propertyManager";
|
|
8497
8493
|
/** @enum {string} */
|
|
8498
|
-
status?: "active" | "inactive"
|
|
8494
|
+
status?: "active" | "inactive";
|
|
8499
8495
|
billingSubscriptionStatus?: string | null;
|
|
8500
8496
|
billingPlan?: string | null;
|
|
8501
8497
|
trialUntil?: string | null;
|
|
@@ -8573,7 +8569,7 @@ export interface operations {
|
|
|
8573
8569
|
/** @enum {string} */
|
|
8574
8570
|
type: "partner" | "admin" | "propertyManager";
|
|
8575
8571
|
/** @enum {string} */
|
|
8576
|
-
status: "active" | "inactive"
|
|
8572
|
+
status: "active" | "inactive";
|
|
8577
8573
|
billingSubscriptionStatus?: string | null;
|
|
8578
8574
|
billingPlan?: string | null;
|
|
8579
8575
|
createdAt?: string | null;
|
|
@@ -8717,7 +8713,7 @@ export interface operations {
|
|
|
8717
8713
|
/** @enum {string} */
|
|
8718
8714
|
type: "partner" | "admin" | "propertyManager";
|
|
8719
8715
|
/** @enum {string} */
|
|
8720
|
-
status: "active" | "inactive"
|
|
8716
|
+
status: "active" | "inactive";
|
|
8721
8717
|
billingSubscriptionStatus?: string | null;
|
|
8722
8718
|
billingPlan?: string | null;
|
|
8723
8719
|
createdAt?: string | null;
|
|
@@ -9621,10 +9617,21 @@ export interface operations {
|
|
|
9621
9617
|
status: "active" | "inactive";
|
|
9622
9618
|
}[];
|
|
9623
9619
|
taxRate?: {
|
|
9624
|
-
id: string;
|
|
9625
9620
|
name: string;
|
|
9621
|
+
countryCode?: string | null;
|
|
9622
|
+
currency?: string | null;
|
|
9626
9623
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9627
9624
|
basisPoints: number;
|
|
9625
|
+
/** @enum {string|null} */
|
|
9626
|
+
type?: "markup" | "tax" | null;
|
|
9627
|
+
uniqueRef?: string | null;
|
|
9628
|
+
/** @enum {string|null} */
|
|
9629
|
+
status?: "active" | "inactive" | null;
|
|
9630
|
+
/** Format: uuid */
|
|
9631
|
+
accountId?: string | null;
|
|
9632
|
+
/** Format: uuid */
|
|
9633
|
+
debitAccountId?: string | null;
|
|
9634
|
+
id: string;
|
|
9628
9635
|
} | null;
|
|
9629
9636
|
};
|
|
9630
9637
|
};
|
|
@@ -9779,10 +9786,21 @@ export interface operations {
|
|
|
9779
9786
|
status: "active" | "inactive";
|
|
9780
9787
|
}[];
|
|
9781
9788
|
taxRate?: {
|
|
9782
|
-
id: string;
|
|
9783
9789
|
name: string;
|
|
9790
|
+
countryCode?: string | null;
|
|
9791
|
+
currency?: string | null;
|
|
9784
9792
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9785
9793
|
basisPoints: number;
|
|
9794
|
+
/** @enum {string|null} */
|
|
9795
|
+
type?: "markup" | "tax" | null;
|
|
9796
|
+
uniqueRef?: string | null;
|
|
9797
|
+
/** @enum {string|null} */
|
|
9798
|
+
status?: "active" | "inactive" | null;
|
|
9799
|
+
/** Format: uuid */
|
|
9800
|
+
accountId?: string | null;
|
|
9801
|
+
/** Format: uuid */
|
|
9802
|
+
debitAccountId?: string | null;
|
|
9803
|
+
id: string;
|
|
9786
9804
|
} | null;
|
|
9787
9805
|
};
|
|
9788
9806
|
};
|
|
@@ -9976,10 +9994,21 @@ export interface operations {
|
|
|
9976
9994
|
status: "active" | "inactive";
|
|
9977
9995
|
}[];
|
|
9978
9996
|
taxRate?: {
|
|
9979
|
-
id: string;
|
|
9980
9997
|
name: string;
|
|
9998
|
+
countryCode?: string | null;
|
|
9999
|
+
currency?: string | null;
|
|
9981
10000
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
9982
10001
|
basisPoints: number;
|
|
10002
|
+
/** @enum {string|null} */
|
|
10003
|
+
type?: "markup" | "tax" | null;
|
|
10004
|
+
uniqueRef?: string | null;
|
|
10005
|
+
/** @enum {string|null} */
|
|
10006
|
+
status?: "active" | "inactive" | null;
|
|
10007
|
+
/** Format: uuid */
|
|
10008
|
+
accountId?: string | null;
|
|
10009
|
+
/** Format: uuid */
|
|
10010
|
+
debitAccountId?: string | null;
|
|
10011
|
+
id: string;
|
|
9983
10012
|
} | null;
|
|
9984
10013
|
}[];
|
|
9985
10014
|
pagination: {
|
|
@@ -10142,10 +10171,21 @@ export interface operations {
|
|
|
10142
10171
|
status: "active" | "inactive";
|
|
10143
10172
|
}[];
|
|
10144
10173
|
taxRate?: {
|
|
10145
|
-
id: string;
|
|
10146
10174
|
name: string;
|
|
10175
|
+
countryCode?: string | null;
|
|
10176
|
+
currency?: string | null;
|
|
10147
10177
|
/** @description Basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
|
|
10148
10178
|
basisPoints: number;
|
|
10179
|
+
/** @enum {string|null} */
|
|
10180
|
+
type?: "markup" | "tax" | null;
|
|
10181
|
+
uniqueRef?: string | null;
|
|
10182
|
+
/** @enum {string|null} */
|
|
10183
|
+
status?: "active" | "inactive" | null;
|
|
10184
|
+
/** Format: uuid */
|
|
10185
|
+
accountId?: string | null;
|
|
10186
|
+
/** Format: uuid */
|
|
10187
|
+
debitAccountId?: string | null;
|
|
10188
|
+
id: string;
|
|
10149
10189
|
} | null;
|
|
10150
10190
|
};
|
|
10151
10191
|
};
|
|
@@ -10219,13 +10259,13 @@ export interface operations {
|
|
|
10219
10259
|
name: string;
|
|
10220
10260
|
locked?: boolean | null;
|
|
10221
10261
|
/** @enum {string|null} */
|
|
10222
|
-
visible?: "all" | "manager" | "
|
|
10262
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10223
10263
|
columns: ({
|
|
10224
10264
|
id?: string | null;
|
|
10225
10265
|
name: string;
|
|
10226
10266
|
locked?: boolean | null;
|
|
10227
10267
|
/** @enum {string|null} */
|
|
10228
|
-
visible?: "all" | "manager" | "
|
|
10268
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10229
10269
|
/** @enum {string} */
|
|
10230
10270
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10231
10271
|
value: string;
|
|
@@ -10234,7 +10274,7 @@ export interface operations {
|
|
|
10234
10274
|
name: string;
|
|
10235
10275
|
locked?: boolean | null;
|
|
10236
10276
|
/** @enum {string|null} */
|
|
10237
|
-
visible?: "all" | "manager" | "
|
|
10277
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10238
10278
|
/** @enum {string} */
|
|
10239
10279
|
type: "accounts";
|
|
10240
10280
|
value: string[];
|
|
@@ -10245,13 +10285,13 @@ export interface operations {
|
|
|
10245
10285
|
name: string;
|
|
10246
10286
|
locked?: boolean | null;
|
|
10247
10287
|
/** @enum {string|null} */
|
|
10248
|
-
visible?: "all" | "manager" | "
|
|
10288
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10249
10289
|
columns: ({
|
|
10250
10290
|
id?: string | null;
|
|
10251
10291
|
name: string;
|
|
10252
10292
|
locked?: boolean | null;
|
|
10253
10293
|
/** @enum {string|null} */
|
|
10254
|
-
visible?: "all" | "manager" | "
|
|
10294
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10255
10295
|
/** @enum {string} */
|
|
10256
10296
|
type: "field";
|
|
10257
10297
|
value: string;
|
|
@@ -10260,7 +10300,7 @@ export interface operations {
|
|
|
10260
10300
|
name: string;
|
|
10261
10301
|
locked?: boolean | null;
|
|
10262
10302
|
/** @enum {string|null} */
|
|
10263
|
-
visible?: "all" | "manager" | "
|
|
10303
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10264
10304
|
/** @enum {string} */
|
|
10265
10305
|
type: "accounts";
|
|
10266
10306
|
value: string[];
|
|
@@ -10284,13 +10324,13 @@ export interface operations {
|
|
|
10284
10324
|
name: string;
|
|
10285
10325
|
locked?: boolean | null;
|
|
10286
10326
|
/** @enum {string|null} */
|
|
10287
|
-
visible?: "all" | "manager" | "
|
|
10327
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10288
10328
|
columns: ({
|
|
10289
10329
|
id?: string | null;
|
|
10290
10330
|
name: string;
|
|
10291
10331
|
locked?: boolean | null;
|
|
10292
10332
|
/** @enum {string|null} */
|
|
10293
|
-
visible?: "all" | "manager" | "
|
|
10333
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10294
10334
|
/** @enum {string} */
|
|
10295
10335
|
type: "field";
|
|
10296
10336
|
value: string;
|
|
@@ -10299,7 +10339,7 @@ export interface operations {
|
|
|
10299
10339
|
name: string;
|
|
10300
10340
|
locked?: boolean | null;
|
|
10301
10341
|
/** @enum {string|null} */
|
|
10302
|
-
visible?: "all" | "manager" | "
|
|
10342
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10303
10343
|
/** @enum {string} */
|
|
10304
10344
|
type: "accounts";
|
|
10305
10345
|
value: string[];
|
|
@@ -10387,13 +10427,13 @@ export interface operations {
|
|
|
10387
10427
|
name: string;
|
|
10388
10428
|
locked?: boolean | null;
|
|
10389
10429
|
/** @enum {string|null} */
|
|
10390
|
-
visible?: "all" | "manager" | "
|
|
10430
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10391
10431
|
columns: ({
|
|
10392
10432
|
id?: string | null;
|
|
10393
10433
|
name: string;
|
|
10394
10434
|
locked?: boolean | null;
|
|
10395
10435
|
/** @enum {string|null} */
|
|
10396
|
-
visible?: "all" | "manager" | "
|
|
10436
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10397
10437
|
/** @enum {string} */
|
|
10398
10438
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10399
10439
|
value: string;
|
|
@@ -10402,7 +10442,7 @@ export interface operations {
|
|
|
10402
10442
|
name: string;
|
|
10403
10443
|
locked?: boolean | null;
|
|
10404
10444
|
/** @enum {string|null} */
|
|
10405
|
-
visible?: "all" | "manager" | "
|
|
10445
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10406
10446
|
/** @enum {string} */
|
|
10407
10447
|
type: "accounts";
|
|
10408
10448
|
value: string[];
|
|
@@ -10413,13 +10453,13 @@ export interface operations {
|
|
|
10413
10453
|
name: string;
|
|
10414
10454
|
locked?: boolean | null;
|
|
10415
10455
|
/** @enum {string|null} */
|
|
10416
|
-
visible?: "all" | "manager" | "
|
|
10456
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10417
10457
|
columns: ({
|
|
10418
10458
|
id?: string | null;
|
|
10419
10459
|
name: string;
|
|
10420
10460
|
locked?: boolean | null;
|
|
10421
10461
|
/** @enum {string|null} */
|
|
10422
|
-
visible?: "all" | "manager" | "
|
|
10462
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10423
10463
|
/** @enum {string} */
|
|
10424
10464
|
type: "field";
|
|
10425
10465
|
value: string;
|
|
@@ -10428,7 +10468,7 @@ export interface operations {
|
|
|
10428
10468
|
name: string;
|
|
10429
10469
|
locked?: boolean | null;
|
|
10430
10470
|
/** @enum {string|null} */
|
|
10431
|
-
visible?: "all" | "manager" | "
|
|
10471
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10432
10472
|
/** @enum {string} */
|
|
10433
10473
|
type: "accounts";
|
|
10434
10474
|
value: string[];
|
|
@@ -10454,13 +10494,13 @@ export interface operations {
|
|
|
10454
10494
|
name: string;
|
|
10455
10495
|
locked?: boolean | null;
|
|
10456
10496
|
/** @enum {string|null} */
|
|
10457
|
-
visible?: "all" | "manager" | "
|
|
10497
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10458
10498
|
columns: ({
|
|
10459
10499
|
id?: string | null;
|
|
10460
10500
|
name: string;
|
|
10461
10501
|
locked?: boolean | null;
|
|
10462
10502
|
/** @enum {string|null} */
|
|
10463
|
-
visible?: "all" | "manager" | "
|
|
10503
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10464
10504
|
/** @enum {string} */
|
|
10465
10505
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10466
10506
|
value: string;
|
|
@@ -10469,7 +10509,7 @@ export interface operations {
|
|
|
10469
10509
|
name: string;
|
|
10470
10510
|
locked?: boolean | null;
|
|
10471
10511
|
/** @enum {string|null} */
|
|
10472
|
-
visible?: "all" | "manager" | "
|
|
10512
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10473
10513
|
/** @enum {string} */
|
|
10474
10514
|
type: "accounts";
|
|
10475
10515
|
value: string[];
|
|
@@ -10480,13 +10520,13 @@ export interface operations {
|
|
|
10480
10520
|
name: string;
|
|
10481
10521
|
locked?: boolean | null;
|
|
10482
10522
|
/** @enum {string|null} */
|
|
10483
|
-
visible?: "all" | "manager" | "
|
|
10523
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10484
10524
|
columns: ({
|
|
10485
10525
|
id?: string | null;
|
|
10486
10526
|
name: string;
|
|
10487
10527
|
locked?: boolean | null;
|
|
10488
10528
|
/** @enum {string|null} */
|
|
10489
|
-
visible?: "all" | "manager" | "
|
|
10529
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10490
10530
|
/** @enum {string} */
|
|
10491
10531
|
type: "field";
|
|
10492
10532
|
value: string;
|
|
@@ -10495,7 +10535,7 @@ export interface operations {
|
|
|
10495
10535
|
name: string;
|
|
10496
10536
|
locked?: boolean | null;
|
|
10497
10537
|
/** @enum {string|null} */
|
|
10498
|
-
visible?: "all" | "manager" | "
|
|
10538
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10499
10539
|
/** @enum {string} */
|
|
10500
10540
|
type: "accounts";
|
|
10501
10541
|
value: string[];
|
|
@@ -10519,13 +10559,13 @@ export interface operations {
|
|
|
10519
10559
|
name: string;
|
|
10520
10560
|
locked?: boolean | null;
|
|
10521
10561
|
/** @enum {string|null} */
|
|
10522
|
-
visible?: "all" | "manager" | "
|
|
10562
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10523
10563
|
columns: ({
|
|
10524
10564
|
id?: string | null;
|
|
10525
10565
|
name: string;
|
|
10526
10566
|
locked?: boolean | null;
|
|
10527
10567
|
/** @enum {string|null} */
|
|
10528
|
-
visible?: "all" | "manager" | "
|
|
10568
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10529
10569
|
/** @enum {string} */
|
|
10530
10570
|
type: "field";
|
|
10531
10571
|
value: string;
|
|
@@ -10534,7 +10574,7 @@ export interface operations {
|
|
|
10534
10574
|
name: string;
|
|
10535
10575
|
locked?: boolean | null;
|
|
10536
10576
|
/** @enum {string|null} */
|
|
10537
|
-
visible?: "all" | "manager" | "
|
|
10577
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10538
10578
|
/** @enum {string} */
|
|
10539
10579
|
type: "accounts";
|
|
10540
10580
|
value: string[];
|
|
@@ -10610,13 +10650,13 @@ export interface operations {
|
|
|
10610
10650
|
name: string;
|
|
10611
10651
|
locked?: boolean | null;
|
|
10612
10652
|
/** @enum {string|null} */
|
|
10613
|
-
visible?: "all" | "manager" | "
|
|
10653
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10614
10654
|
columns: ({
|
|
10615
10655
|
id?: string | null;
|
|
10616
10656
|
name: string;
|
|
10617
10657
|
locked?: boolean | null;
|
|
10618
10658
|
/** @enum {string|null} */
|
|
10619
|
-
visible?: "all" | "manager" | "
|
|
10659
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10620
10660
|
/** @enum {string} */
|
|
10621
10661
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10622
10662
|
value: string;
|
|
@@ -10625,7 +10665,7 @@ export interface operations {
|
|
|
10625
10665
|
name: string;
|
|
10626
10666
|
locked?: boolean | null;
|
|
10627
10667
|
/** @enum {string|null} */
|
|
10628
|
-
visible?: "all" | "manager" | "
|
|
10668
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10629
10669
|
/** @enum {string} */
|
|
10630
10670
|
type: "accounts";
|
|
10631
10671
|
value: string[];
|
|
@@ -10636,13 +10676,13 @@ export interface operations {
|
|
|
10636
10676
|
name: string;
|
|
10637
10677
|
locked?: boolean | null;
|
|
10638
10678
|
/** @enum {string|null} */
|
|
10639
|
-
visible?: "all" | "manager" | "
|
|
10679
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10640
10680
|
columns: ({
|
|
10641
10681
|
id?: string | null;
|
|
10642
10682
|
name: string;
|
|
10643
10683
|
locked?: boolean | null;
|
|
10644
10684
|
/** @enum {string|null} */
|
|
10645
|
-
visible?: "all" | "manager" | "
|
|
10685
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10646
10686
|
/** @enum {string} */
|
|
10647
10687
|
type: "field";
|
|
10648
10688
|
value: string;
|
|
@@ -10651,7 +10691,7 @@ export interface operations {
|
|
|
10651
10691
|
name: string;
|
|
10652
10692
|
locked?: boolean | null;
|
|
10653
10693
|
/** @enum {string|null} */
|
|
10654
|
-
visible?: "all" | "manager" | "
|
|
10694
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10655
10695
|
/** @enum {string} */
|
|
10656
10696
|
type: "accounts";
|
|
10657
10697
|
value: string[];
|
|
@@ -10675,13 +10715,13 @@ export interface operations {
|
|
|
10675
10715
|
name: string;
|
|
10676
10716
|
locked?: boolean | null;
|
|
10677
10717
|
/** @enum {string|null} */
|
|
10678
|
-
visible?: "all" | "manager" | "
|
|
10718
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10679
10719
|
columns: ({
|
|
10680
10720
|
id?: string | null;
|
|
10681
10721
|
name: string;
|
|
10682
10722
|
locked?: boolean | null;
|
|
10683
10723
|
/** @enum {string|null} */
|
|
10684
|
-
visible?: "all" | "manager" | "
|
|
10724
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10685
10725
|
/** @enum {string} */
|
|
10686
10726
|
type: "field";
|
|
10687
10727
|
value: string;
|
|
@@ -10690,7 +10730,7 @@ export interface operations {
|
|
|
10690
10730
|
name: string;
|
|
10691
10731
|
locked?: boolean | null;
|
|
10692
10732
|
/** @enum {string|null} */
|
|
10693
|
-
visible?: "all" | "manager" | "
|
|
10733
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10694
10734
|
/** @enum {string} */
|
|
10695
10735
|
type: "accounts";
|
|
10696
10736
|
value: string[];
|
|
@@ -10770,13 +10810,13 @@ export interface operations {
|
|
|
10770
10810
|
name: string;
|
|
10771
10811
|
locked?: boolean | null;
|
|
10772
10812
|
/** @enum {string|null} */
|
|
10773
|
-
visible?: "all" | "manager" | "
|
|
10813
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10774
10814
|
columns: ({
|
|
10775
10815
|
id?: string | null;
|
|
10776
10816
|
name: string;
|
|
10777
10817
|
locked?: boolean | null;
|
|
10778
10818
|
/** @enum {string|null} */
|
|
10779
|
-
visible?: "all" | "manager" | "
|
|
10819
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10780
10820
|
/** @enum {string} */
|
|
10781
10821
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10782
10822
|
value: string;
|
|
@@ -10785,7 +10825,7 @@ export interface operations {
|
|
|
10785
10825
|
name: string;
|
|
10786
10826
|
locked?: boolean | null;
|
|
10787
10827
|
/** @enum {string|null} */
|
|
10788
|
-
visible?: "all" | "manager" | "
|
|
10828
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10789
10829
|
/** @enum {string} */
|
|
10790
10830
|
type: "accounts";
|
|
10791
10831
|
value: string[];
|
|
@@ -10796,13 +10836,13 @@ export interface operations {
|
|
|
10796
10836
|
name: string;
|
|
10797
10837
|
locked?: boolean | null;
|
|
10798
10838
|
/** @enum {string|null} */
|
|
10799
|
-
visible?: "all" | "manager" | "
|
|
10839
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10800
10840
|
columns: ({
|
|
10801
10841
|
id?: string | null;
|
|
10802
10842
|
name: string;
|
|
10803
10843
|
locked?: boolean | null;
|
|
10804
10844
|
/** @enum {string|null} */
|
|
10805
|
-
visible?: "all" | "manager" | "
|
|
10845
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10806
10846
|
/** @enum {string} */
|
|
10807
10847
|
type: "field";
|
|
10808
10848
|
value: string;
|
|
@@ -10811,7 +10851,7 @@ export interface operations {
|
|
|
10811
10851
|
name: string;
|
|
10812
10852
|
locked?: boolean | null;
|
|
10813
10853
|
/** @enum {string|null} */
|
|
10814
|
-
visible?: "all" | "manager" | "
|
|
10854
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10815
10855
|
/** @enum {string} */
|
|
10816
10856
|
type: "accounts";
|
|
10817
10857
|
value: string[];
|
|
@@ -10837,13 +10877,13 @@ export interface operations {
|
|
|
10837
10877
|
name: string;
|
|
10838
10878
|
locked?: boolean | null;
|
|
10839
10879
|
/** @enum {string|null} */
|
|
10840
|
-
visible?: "all" | "manager" | "
|
|
10880
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10841
10881
|
columns: ({
|
|
10842
10882
|
id?: string | null;
|
|
10843
10883
|
name: string;
|
|
10844
10884
|
locked?: boolean | null;
|
|
10845
10885
|
/** @enum {string|null} */
|
|
10846
|
-
visible?: "all" | "manager" | "
|
|
10886
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10847
10887
|
/** @enum {string} */
|
|
10848
10888
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
10849
10889
|
value: string;
|
|
@@ -10852,7 +10892,7 @@ export interface operations {
|
|
|
10852
10892
|
name: string;
|
|
10853
10893
|
locked?: boolean | null;
|
|
10854
10894
|
/** @enum {string|null} */
|
|
10855
|
-
visible?: "all" | "manager" | "
|
|
10895
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10856
10896
|
/** @enum {string} */
|
|
10857
10897
|
type: "accounts";
|
|
10858
10898
|
value: string[];
|
|
@@ -10863,13 +10903,13 @@ export interface operations {
|
|
|
10863
10903
|
name: string;
|
|
10864
10904
|
locked?: boolean | null;
|
|
10865
10905
|
/** @enum {string|null} */
|
|
10866
|
-
visible?: "all" | "manager" | "
|
|
10906
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10867
10907
|
columns: ({
|
|
10868
10908
|
id?: string | null;
|
|
10869
10909
|
name: string;
|
|
10870
10910
|
locked?: boolean | null;
|
|
10871
10911
|
/** @enum {string|null} */
|
|
10872
|
-
visible?: "all" | "manager" | "
|
|
10912
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10873
10913
|
/** @enum {string} */
|
|
10874
10914
|
type: "field";
|
|
10875
10915
|
value: string;
|
|
@@ -10878,7 +10918,7 @@ export interface operations {
|
|
|
10878
10918
|
name: string;
|
|
10879
10919
|
locked?: boolean | null;
|
|
10880
10920
|
/** @enum {string|null} */
|
|
10881
|
-
visible?: "all" | "manager" | "
|
|
10921
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10882
10922
|
/** @enum {string} */
|
|
10883
10923
|
type: "accounts";
|
|
10884
10924
|
value: string[];
|
|
@@ -10902,13 +10942,13 @@ export interface operations {
|
|
|
10902
10942
|
name: string;
|
|
10903
10943
|
locked?: boolean | null;
|
|
10904
10944
|
/** @enum {string|null} */
|
|
10905
|
-
visible?: "all" | "manager" | "
|
|
10945
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10906
10946
|
columns: ({
|
|
10907
10947
|
id?: string | null;
|
|
10908
10948
|
name: string;
|
|
10909
10949
|
locked?: boolean | null;
|
|
10910
10950
|
/** @enum {string|null} */
|
|
10911
|
-
visible?: "all" | "manager" | "
|
|
10951
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10912
10952
|
/** @enum {string} */
|
|
10913
10953
|
type: "field";
|
|
10914
10954
|
value: string;
|
|
@@ -10917,7 +10957,7 @@ export interface operations {
|
|
|
10917
10957
|
name: string;
|
|
10918
10958
|
locked?: boolean | null;
|
|
10919
10959
|
/** @enum {string|null} */
|
|
10920
|
-
visible?: "all" | "manager" | "
|
|
10960
|
+
visible?: "all" | "manager" | "none" | null;
|
|
10921
10961
|
/** @enum {string} */
|
|
10922
10962
|
type: "accounts";
|
|
10923
10963
|
value: string[];
|
|
@@ -11491,13 +11531,13 @@ export interface operations {
|
|
|
11491
11531
|
name: string;
|
|
11492
11532
|
locked?: boolean | null;
|
|
11493
11533
|
/** @enum {string|null} */
|
|
11494
|
-
visible?: "all" | "manager" | "
|
|
11534
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11495
11535
|
columns: ({
|
|
11496
11536
|
id?: string | null;
|
|
11497
11537
|
name: string;
|
|
11498
11538
|
locked?: boolean | null;
|
|
11499
11539
|
/** @enum {string|null} */
|
|
11500
|
-
visible?: "all" | "manager" | "
|
|
11540
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11501
11541
|
/** @enum {string} */
|
|
11502
11542
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
11503
11543
|
value: string;
|
|
@@ -11506,7 +11546,7 @@ export interface operations {
|
|
|
11506
11546
|
name: string;
|
|
11507
11547
|
locked?: boolean | null;
|
|
11508
11548
|
/** @enum {string|null} */
|
|
11509
|
-
visible?: "all" | "manager" | "
|
|
11549
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11510
11550
|
/** @enum {string} */
|
|
11511
11551
|
type: "accounts";
|
|
11512
11552
|
value: string[];
|
|
@@ -11517,13 +11557,13 @@ export interface operations {
|
|
|
11517
11557
|
name: string;
|
|
11518
11558
|
locked?: boolean | null;
|
|
11519
11559
|
/** @enum {string|null} */
|
|
11520
|
-
visible?: "all" | "manager" | "
|
|
11560
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11521
11561
|
columns: ({
|
|
11522
11562
|
id?: string | null;
|
|
11523
11563
|
name: string;
|
|
11524
11564
|
locked?: boolean | null;
|
|
11525
11565
|
/** @enum {string|null} */
|
|
11526
|
-
visible?: "all" | "manager" | "
|
|
11566
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11527
11567
|
/** @enum {string} */
|
|
11528
11568
|
type: "field";
|
|
11529
11569
|
value: string;
|
|
@@ -11532,7 +11572,7 @@ export interface operations {
|
|
|
11532
11572
|
name: string;
|
|
11533
11573
|
locked?: boolean | null;
|
|
11534
11574
|
/** @enum {string|null} */
|
|
11535
|
-
visible?: "all" | "manager" | "
|
|
11575
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11536
11576
|
/** @enum {string} */
|
|
11537
11577
|
type: "accounts";
|
|
11538
11578
|
value: string[];
|
|
@@ -11556,13 +11596,13 @@ export interface operations {
|
|
|
11556
11596
|
name: string;
|
|
11557
11597
|
locked?: boolean | null;
|
|
11558
11598
|
/** @enum {string|null} */
|
|
11559
|
-
visible?: "all" | "manager" | "
|
|
11599
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11560
11600
|
columns: ({
|
|
11561
11601
|
id?: string | null;
|
|
11562
11602
|
name: string;
|
|
11563
11603
|
locked?: boolean | null;
|
|
11564
11604
|
/** @enum {string|null} */
|
|
11565
|
-
visible?: "all" | "manager" | "
|
|
11605
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11566
11606
|
/** @enum {string} */
|
|
11567
11607
|
type: "field";
|
|
11568
11608
|
value: string;
|
|
@@ -11571,7 +11611,7 @@ export interface operations {
|
|
|
11571
11611
|
name: string;
|
|
11572
11612
|
locked?: boolean | null;
|
|
11573
11613
|
/** @enum {string|null} */
|
|
11574
|
-
visible?: "all" | "manager" | "
|
|
11614
|
+
visible?: "all" | "manager" | "none" | null;
|
|
11575
11615
|
/** @enum {string} */
|
|
11576
11616
|
type: "accounts";
|
|
11577
11617
|
value: string[];
|
|
@@ -11791,103 +11831,6 @@ export interface operations {
|
|
|
11791
11831
|
};
|
|
11792
11832
|
};
|
|
11793
11833
|
};
|
|
11794
|
-
getOwnerStatementTotals: {
|
|
11795
|
-
parameters: {
|
|
11796
|
-
query: {
|
|
11797
|
-
/** @description Date in format YYYY-MM */
|
|
11798
|
-
month: string;
|
|
11799
|
-
/** @description comma separated listings */
|
|
11800
|
-
listingIds?: string;
|
|
11801
|
-
/** @description comma separated owners */
|
|
11802
|
-
ownerIds?: string;
|
|
11803
|
-
status?: ("draft" | "inReview" | "void" | "published") | "all";
|
|
11804
|
-
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
11805
|
-
currency?: string;
|
|
11806
|
-
search?: string;
|
|
11807
|
-
includePreviousUnattached?: boolean;
|
|
11808
|
-
};
|
|
11809
|
-
header?: {
|
|
11810
|
-
"X-Team-Id"?: string;
|
|
11811
|
-
};
|
|
11812
|
-
path?: never;
|
|
11813
|
-
cookie?: never;
|
|
11814
|
-
};
|
|
11815
|
-
requestBody?: never;
|
|
11816
|
-
responses: {
|
|
11817
|
-
/** @description Successful response */
|
|
11818
|
-
200: {
|
|
11819
|
-
headers: {
|
|
11820
|
-
[name: string]: unknown;
|
|
11821
|
-
};
|
|
11822
|
-
content: {
|
|
11823
|
-
"application/json": {
|
|
11824
|
-
aggregates: {
|
|
11825
|
-
/** @description Value in cents (100 = 1€) */
|
|
11826
|
-
balanceStart: number;
|
|
11827
|
-
/** @description Value in cents (100 = 1€) */
|
|
11828
|
-
netRevenue: number;
|
|
11829
|
-
/** @description Value in cents (100 = 1€) */
|
|
11830
|
-
expenses: number;
|
|
11831
|
-
/** @description Value in cents (100 = 1€) */
|
|
11832
|
-
netIncome: number;
|
|
11833
|
-
/** @description Value in cents (100 = 1€) */
|
|
11834
|
-
transfers: number;
|
|
11835
|
-
/** @description Value in cents (100 = 1€) */
|
|
11836
|
-
balanceEnd: number;
|
|
11837
|
-
currency: string;
|
|
11838
|
-
}[];
|
|
11839
|
-
total: number;
|
|
11840
|
-
defaultCurrency: string;
|
|
11841
|
-
};
|
|
11842
|
-
};
|
|
11843
|
-
};
|
|
11844
|
-
/** @description Invalid input data */
|
|
11845
|
-
400: {
|
|
11846
|
-
headers: {
|
|
11847
|
-
[name: string]: unknown;
|
|
11848
|
-
};
|
|
11849
|
-
content: {
|
|
11850
|
-
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
11851
|
-
};
|
|
11852
|
-
};
|
|
11853
|
-
/** @description Authorization not provided */
|
|
11854
|
-
401: {
|
|
11855
|
-
headers: {
|
|
11856
|
-
[name: string]: unknown;
|
|
11857
|
-
};
|
|
11858
|
-
content: {
|
|
11859
|
-
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
11860
|
-
};
|
|
11861
|
-
};
|
|
11862
|
-
/** @description Insufficient access */
|
|
11863
|
-
403: {
|
|
11864
|
-
headers: {
|
|
11865
|
-
[name: string]: unknown;
|
|
11866
|
-
};
|
|
11867
|
-
content: {
|
|
11868
|
-
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
11869
|
-
};
|
|
11870
|
-
};
|
|
11871
|
-
/** @description Not found */
|
|
11872
|
-
404: {
|
|
11873
|
-
headers: {
|
|
11874
|
-
[name: string]: unknown;
|
|
11875
|
-
};
|
|
11876
|
-
content: {
|
|
11877
|
-
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
11878
|
-
};
|
|
11879
|
-
};
|
|
11880
|
-
/** @description Internal server error */
|
|
11881
|
-
500: {
|
|
11882
|
-
headers: {
|
|
11883
|
-
[name: string]: unknown;
|
|
11884
|
-
};
|
|
11885
|
-
content: {
|
|
11886
|
-
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
11887
|
-
};
|
|
11888
|
-
};
|
|
11889
|
-
};
|
|
11890
|
-
};
|
|
11891
11834
|
getOwnerStatement: {
|
|
11892
11835
|
parameters: {
|
|
11893
11836
|
query?: {
|
|
@@ -12041,13 +11984,13 @@ export interface operations {
|
|
|
12041
11984
|
name: string;
|
|
12042
11985
|
locked?: boolean | null;
|
|
12043
11986
|
/** @enum {string|null} */
|
|
12044
|
-
visible?: "all" | "manager" | "
|
|
11987
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12045
11988
|
columns: ({
|
|
12046
11989
|
id?: string | null;
|
|
12047
11990
|
name: string;
|
|
12048
11991
|
locked?: boolean | null;
|
|
12049
11992
|
/** @enum {string|null} */
|
|
12050
|
-
visible?: "all" | "manager" | "
|
|
11993
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12051
11994
|
/** @enum {string} */
|
|
12052
11995
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
12053
11996
|
value: string;
|
|
@@ -12056,7 +11999,7 @@ export interface operations {
|
|
|
12056
11999
|
name: string;
|
|
12057
12000
|
locked?: boolean | null;
|
|
12058
12001
|
/** @enum {string|null} */
|
|
12059
|
-
visible?: "all" | "manager" | "
|
|
12002
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12060
12003
|
/** @enum {string} */
|
|
12061
12004
|
type: "accounts";
|
|
12062
12005
|
value: string[];
|
|
@@ -12067,13 +12010,13 @@ export interface operations {
|
|
|
12067
12010
|
name: string;
|
|
12068
12011
|
locked?: boolean | null;
|
|
12069
12012
|
/** @enum {string|null} */
|
|
12070
|
-
visible?: "all" | "manager" | "
|
|
12013
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12071
12014
|
columns: ({
|
|
12072
12015
|
id?: string | null;
|
|
12073
12016
|
name: string;
|
|
12074
12017
|
locked?: boolean | null;
|
|
12075
12018
|
/** @enum {string|null} */
|
|
12076
|
-
visible?: "all" | "manager" | "
|
|
12019
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12077
12020
|
/** @enum {string} */
|
|
12078
12021
|
type: "field";
|
|
12079
12022
|
value: string;
|
|
@@ -12082,7 +12025,7 @@ export interface operations {
|
|
|
12082
12025
|
name: string;
|
|
12083
12026
|
locked?: boolean | null;
|
|
12084
12027
|
/** @enum {string|null} */
|
|
12085
|
-
visible?: "all" | "manager" | "
|
|
12028
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12086
12029
|
/** @enum {string} */
|
|
12087
12030
|
type: "accounts";
|
|
12088
12031
|
value: string[];
|
|
@@ -12106,13 +12049,13 @@ export interface operations {
|
|
|
12106
12049
|
name: string;
|
|
12107
12050
|
locked?: boolean | null;
|
|
12108
12051
|
/** @enum {string|null} */
|
|
12109
|
-
visible?: "all" | "manager" | "
|
|
12052
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12110
12053
|
columns: ({
|
|
12111
12054
|
id?: string | null;
|
|
12112
12055
|
name: string;
|
|
12113
12056
|
locked?: boolean | null;
|
|
12114
12057
|
/** @enum {string|null} */
|
|
12115
|
-
visible?: "all" | "manager" | "
|
|
12058
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12116
12059
|
/** @enum {string} */
|
|
12117
12060
|
type: "field";
|
|
12118
12061
|
value: string;
|
|
@@ -12121,7 +12064,7 @@ export interface operations {
|
|
|
12121
12064
|
name: string;
|
|
12122
12065
|
locked?: boolean | null;
|
|
12123
12066
|
/** @enum {string|null} */
|
|
12124
|
-
visible?: "all" | "manager" | "
|
|
12067
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12125
12068
|
/** @enum {string} */
|
|
12126
12069
|
type: "accounts";
|
|
12127
12070
|
value: string[];
|
|
@@ -12503,13 +12446,13 @@ export interface operations {
|
|
|
12503
12446
|
name: string;
|
|
12504
12447
|
locked?: boolean | null;
|
|
12505
12448
|
/** @enum {string|null} */
|
|
12506
|
-
visible?: "all" | "manager" | "
|
|
12449
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12507
12450
|
columns: ({
|
|
12508
12451
|
id?: string | null;
|
|
12509
12452
|
name: string;
|
|
12510
12453
|
locked?: boolean | null;
|
|
12511
12454
|
/** @enum {string|null} */
|
|
12512
|
-
visible?: "all" | "manager" | "
|
|
12455
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12513
12456
|
/** @enum {string} */
|
|
12514
12457
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
12515
12458
|
value: string;
|
|
@@ -12518,7 +12461,7 @@ export interface operations {
|
|
|
12518
12461
|
name: string;
|
|
12519
12462
|
locked?: boolean | null;
|
|
12520
12463
|
/** @enum {string|null} */
|
|
12521
|
-
visible?: "all" | "manager" | "
|
|
12464
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12522
12465
|
/** @enum {string} */
|
|
12523
12466
|
type: "accounts";
|
|
12524
12467
|
value: string[];
|
|
@@ -12529,13 +12472,13 @@ export interface operations {
|
|
|
12529
12472
|
name: string;
|
|
12530
12473
|
locked?: boolean | null;
|
|
12531
12474
|
/** @enum {string|null} */
|
|
12532
|
-
visible?: "all" | "manager" | "
|
|
12475
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12533
12476
|
columns: ({
|
|
12534
12477
|
id?: string | null;
|
|
12535
12478
|
name: string;
|
|
12536
12479
|
locked?: boolean | null;
|
|
12537
12480
|
/** @enum {string|null} */
|
|
12538
|
-
visible?: "all" | "manager" | "
|
|
12481
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12539
12482
|
/** @enum {string} */
|
|
12540
12483
|
type: "field";
|
|
12541
12484
|
value: string;
|
|
@@ -12544,7 +12487,7 @@ export interface operations {
|
|
|
12544
12487
|
name: string;
|
|
12545
12488
|
locked?: boolean | null;
|
|
12546
12489
|
/** @enum {string|null} */
|
|
12547
|
-
visible?: "all" | "manager" | "
|
|
12490
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12548
12491
|
/** @enum {string} */
|
|
12549
12492
|
type: "accounts";
|
|
12550
12493
|
value: string[];
|
|
@@ -12568,13 +12511,13 @@ export interface operations {
|
|
|
12568
12511
|
name: string;
|
|
12569
12512
|
locked?: boolean | null;
|
|
12570
12513
|
/** @enum {string|null} */
|
|
12571
|
-
visible?: "all" | "manager" | "
|
|
12514
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12572
12515
|
columns: ({
|
|
12573
12516
|
id?: string | null;
|
|
12574
12517
|
name: string;
|
|
12575
12518
|
locked?: boolean | null;
|
|
12576
12519
|
/** @enum {string|null} */
|
|
12577
|
-
visible?: "all" | "manager" | "
|
|
12520
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12578
12521
|
/** @enum {string} */
|
|
12579
12522
|
type: "field";
|
|
12580
12523
|
value: string;
|
|
@@ -12583,7 +12526,7 @@ export interface operations {
|
|
|
12583
12526
|
name: string;
|
|
12584
12527
|
locked?: boolean | null;
|
|
12585
12528
|
/** @enum {string|null} */
|
|
12586
|
-
visible?: "all" | "manager" | "
|
|
12529
|
+
visible?: "all" | "manager" | "none" | null;
|
|
12587
12530
|
/** @enum {string} */
|
|
12588
12531
|
type: "accounts";
|
|
12589
12532
|
value: string[];
|
|
@@ -13294,13 +13237,13 @@ export interface operations {
|
|
|
13294
13237
|
name: string;
|
|
13295
13238
|
locked?: boolean | null;
|
|
13296
13239
|
/** @enum {string|null} */
|
|
13297
|
-
visible?: "all" | "manager" | "
|
|
13240
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13298
13241
|
columns: ({
|
|
13299
13242
|
id?: string | null;
|
|
13300
13243
|
name: string;
|
|
13301
13244
|
locked?: boolean | null;
|
|
13302
13245
|
/** @enum {string|null} */
|
|
13303
|
-
visible?: "all" | "manager" | "
|
|
13246
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13304
13247
|
/** @enum {string} */
|
|
13305
13248
|
type: "subTotal" | "field" | "formula.percentage" | "formula.currency";
|
|
13306
13249
|
value: string;
|
|
@@ -13309,7 +13252,7 @@ export interface operations {
|
|
|
13309
13252
|
name: string;
|
|
13310
13253
|
locked?: boolean | null;
|
|
13311
13254
|
/** @enum {string|null} */
|
|
13312
|
-
visible?: "all" | "manager" | "
|
|
13255
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13313
13256
|
/** @enum {string} */
|
|
13314
13257
|
type: "accounts";
|
|
13315
13258
|
value: string[];
|
|
@@ -13320,13 +13263,13 @@ export interface operations {
|
|
|
13320
13263
|
name: string;
|
|
13321
13264
|
locked?: boolean | null;
|
|
13322
13265
|
/** @enum {string|null} */
|
|
13323
|
-
visible?: "all" | "manager" | "
|
|
13266
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13324
13267
|
columns: ({
|
|
13325
13268
|
id?: string | null;
|
|
13326
13269
|
name: string;
|
|
13327
13270
|
locked?: boolean | null;
|
|
13328
13271
|
/** @enum {string|null} */
|
|
13329
|
-
visible?: "all" | "manager" | "
|
|
13272
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13330
13273
|
/** @enum {string} */
|
|
13331
13274
|
type: "field";
|
|
13332
13275
|
value: string;
|
|
@@ -13335,7 +13278,7 @@ export interface operations {
|
|
|
13335
13278
|
name: string;
|
|
13336
13279
|
locked?: boolean | null;
|
|
13337
13280
|
/** @enum {string|null} */
|
|
13338
|
-
visible?: "all" | "manager" | "
|
|
13281
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13339
13282
|
/** @enum {string} */
|
|
13340
13283
|
type: "accounts";
|
|
13341
13284
|
value: string[];
|
|
@@ -13359,13 +13302,13 @@ export interface operations {
|
|
|
13359
13302
|
name: string;
|
|
13360
13303
|
locked?: boolean | null;
|
|
13361
13304
|
/** @enum {string|null} */
|
|
13362
|
-
visible?: "all" | "manager" | "
|
|
13305
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13363
13306
|
columns: ({
|
|
13364
13307
|
id?: string | null;
|
|
13365
13308
|
name: string;
|
|
13366
13309
|
locked?: boolean | null;
|
|
13367
13310
|
/** @enum {string|null} */
|
|
13368
|
-
visible?: "all" | "manager" | "
|
|
13311
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13369
13312
|
/** @enum {string} */
|
|
13370
13313
|
type: "field";
|
|
13371
13314
|
value: string;
|
|
@@ -13374,7 +13317,7 @@ export interface operations {
|
|
|
13374
13317
|
name: string;
|
|
13375
13318
|
locked?: boolean | null;
|
|
13376
13319
|
/** @enum {string|null} */
|
|
13377
|
-
visible?: "all" | "manager" | "
|
|
13320
|
+
visible?: "all" | "manager" | "none" | null;
|
|
13378
13321
|
/** @enum {string} */
|
|
13379
13322
|
type: "accounts";
|
|
13380
13323
|
value: string[];
|
|
@@ -17718,7 +17661,6 @@ export interface operations {
|
|
|
17718
17661
|
status?: "active" | "inactive";
|
|
17719
17662
|
/** @enum {string} */
|
|
17720
17663
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
17721
|
-
uniqueRef?: string | null;
|
|
17722
17664
|
id: string;
|
|
17723
17665
|
offsetAccount?: {
|
|
17724
17666
|
id: string;
|
|
@@ -17857,7 +17799,6 @@ export interface operations {
|
|
|
17857
17799
|
last4?: string | null;
|
|
17858
17800
|
currency?: string | null;
|
|
17859
17801
|
} | null;
|
|
17860
|
-
uniqueRef?: string | null;
|
|
17861
17802
|
};
|
|
17862
17803
|
};
|
|
17863
17804
|
};
|
|
@@ -17874,7 +17815,6 @@ export interface operations {
|
|
|
17874
17815
|
status?: "active" | "inactive";
|
|
17875
17816
|
/** @enum {string} */
|
|
17876
17817
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
17877
|
-
uniqueRef?: string | null;
|
|
17878
17818
|
id: string;
|
|
17879
17819
|
offsetAccount?: {
|
|
17880
17820
|
id: string;
|
|
@@ -18090,7 +18030,6 @@ export interface operations {
|
|
|
18090
18030
|
status?: "active" | "inactive";
|
|
18091
18031
|
/** @enum {string} */
|
|
18092
18032
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
18093
|
-
uniqueRef?: string | null;
|
|
18094
18033
|
id: string;
|
|
18095
18034
|
offsetAccount?: {
|
|
18096
18035
|
id: string;
|
|
@@ -18237,7 +18176,6 @@ export interface operations {
|
|
|
18237
18176
|
last4?: string | null;
|
|
18238
18177
|
currency?: string | null;
|
|
18239
18178
|
} | null;
|
|
18240
|
-
uniqueRef?: string | null;
|
|
18241
18179
|
};
|
|
18242
18180
|
};
|
|
18243
18181
|
};
|
|
@@ -18254,7 +18192,6 @@ export interface operations {
|
|
|
18254
18192
|
status?: "active" | "inactive";
|
|
18255
18193
|
/** @enum {string} */
|
|
18256
18194
|
type: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
18257
|
-
uniqueRef?: string | null;
|
|
18258
18195
|
id: string;
|
|
18259
18196
|
offsetAccount?: {
|
|
18260
18197
|
id: string;
|
|
@@ -19280,8 +19217,6 @@ export interface operations {
|
|
|
19280
19217
|
requestBody: {
|
|
19281
19218
|
content: {
|
|
19282
19219
|
"application/json": {
|
|
19283
|
-
/** Format: uuid */
|
|
19284
|
-
connectionId: string;
|
|
19285
19220
|
data: {
|
|
19286
19221
|
address?: {
|
|
19287
19222
|
full?: string | null;
|
|
@@ -19309,12 +19244,14 @@ export interface operations {
|
|
|
19309
19244
|
uniqueRef?: string | null;
|
|
19310
19245
|
/** @enum {string|null} */
|
|
19311
19246
|
status?: "active" | "inactive" | null;
|
|
19247
|
+
invite?: boolean | null;
|
|
19312
19248
|
/** Format: uuid */
|
|
19313
19249
|
payoutAccountId?: string | null;
|
|
19314
19250
|
/** Format: uuid */
|
|
19315
19251
|
id?: string | null;
|
|
19316
|
-
invite?: boolean | null;
|
|
19317
19252
|
}[];
|
|
19253
|
+
/** Format: uuid */
|
|
19254
|
+
connectionId: string;
|
|
19318
19255
|
};
|
|
19319
19256
|
};
|
|
19320
19257
|
};
|
|
@@ -19351,6 +19288,7 @@ export interface operations {
|
|
|
19351
19288
|
uniqueRef?: string | null;
|
|
19352
19289
|
/** @enum {string} */
|
|
19353
19290
|
status: "active" | "inactive";
|
|
19291
|
+
invite?: boolean | null;
|
|
19354
19292
|
/** Format: uuid */
|
|
19355
19293
|
payoutAccountId?: string | null;
|
|
19356
19294
|
/** Format: uuid */
|
|
@@ -19465,6 +19403,7 @@ export interface operations {
|
|
|
19465
19403
|
uniqueRef?: string | null;
|
|
19466
19404
|
/** @enum {string} */
|
|
19467
19405
|
status: "active" | "inactive";
|
|
19406
|
+
invite?: boolean | null;
|
|
19468
19407
|
/** Format: uuid */
|
|
19469
19408
|
payoutAccountId?: string | null;
|
|
19470
19409
|
/** Format: uuid */
|
|
@@ -19578,6 +19517,7 @@ export interface operations {
|
|
|
19578
19517
|
uniqueRef?: string | null;
|
|
19579
19518
|
/** @enum {string|null} */
|
|
19580
19519
|
status?: "active" | "inactive" | null;
|
|
19520
|
+
invite?: boolean | null;
|
|
19581
19521
|
/** Format: uuid */
|
|
19582
19522
|
payoutAccountId?: string | null;
|
|
19583
19523
|
};
|
|
@@ -19615,6 +19555,7 @@ export interface operations {
|
|
|
19615
19555
|
uniqueRef?: string | null;
|
|
19616
19556
|
/** @enum {string} */
|
|
19617
19557
|
status: "active" | "inactive";
|
|
19558
|
+
invite?: boolean | null;
|
|
19618
19559
|
/** Format: uuid */
|
|
19619
19560
|
payoutAccountId?: string | null;
|
|
19620
19561
|
/** Format: uuid */
|
|
@@ -19811,6 +19752,7 @@ export interface operations {
|
|
|
19811
19752
|
uniqueRef?: string | null;
|
|
19812
19753
|
/** @enum {string} */
|
|
19813
19754
|
status: "active" | "inactive";
|
|
19755
|
+
invite?: boolean | null;
|
|
19814
19756
|
/** Format: uuid */
|
|
19815
19757
|
payoutAccountId?: string | null;
|
|
19816
19758
|
/** Format: uuid */
|
|
@@ -19932,9 +19874,9 @@ export interface operations {
|
|
|
19932
19874
|
uniqueRef?: string | null;
|
|
19933
19875
|
/** @enum {string|null} */
|
|
19934
19876
|
status?: "active" | "inactive" | null;
|
|
19877
|
+
invite?: boolean | null;
|
|
19935
19878
|
/** Format: uuid */
|
|
19936
19879
|
payoutAccountId?: string | null;
|
|
19937
|
-
invite?: boolean | null;
|
|
19938
19880
|
};
|
|
19939
19881
|
};
|
|
19940
19882
|
};
|
|
@@ -19970,6 +19912,7 @@ export interface operations {
|
|
|
19970
19912
|
uniqueRef?: string | null;
|
|
19971
19913
|
/** @enum {string} */
|
|
19972
19914
|
status: "active" | "inactive";
|
|
19915
|
+
invite?: boolean | null;
|
|
19973
19916
|
/** Format: uuid */
|
|
19974
19917
|
payoutAccountId?: string | null;
|
|
19975
19918
|
/** Format: uuid */
|
|
@@ -21320,7 +21263,7 @@ export interface operations {
|
|
|
21320
21263
|
};
|
|
21321
21264
|
};
|
|
21322
21265
|
};
|
|
21323
|
-
|
|
21266
|
+
getStoreAction: {
|
|
21324
21267
|
parameters: {
|
|
21325
21268
|
query?: never;
|
|
21326
21269
|
header?: {
|
|
@@ -21354,7 +21297,7 @@ export interface operations {
|
|
|
21354
21297
|
/** Format: uuid */
|
|
21355
21298
|
id: string;
|
|
21356
21299
|
/** @enum {string} */
|
|
21357
|
-
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"
|
|
21300
|
+
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";
|
|
21358
21301
|
payload?: unknown;
|
|
21359
21302
|
/** @enum {string} */
|
|
21360
21303
|
status: "pending" | "claimed" | "running" | "completed" | "failed" | "dead_letter";
|
|
@@ -21432,6 +21375,260 @@ export interface operations {
|
|
|
21432
21375
|
};
|
|
21433
21376
|
};
|
|
21434
21377
|
};
|
|
21378
|
+
getReviews: {
|
|
21379
|
+
parameters: {
|
|
21380
|
+
query?: {
|
|
21381
|
+
date?: string;
|
|
21382
|
+
connectionId?: string;
|
|
21383
|
+
type?: string;
|
|
21384
|
+
listingId?: string;
|
|
21385
|
+
listingConnectionId?: string;
|
|
21386
|
+
limit?: number;
|
|
21387
|
+
page?: number;
|
|
21388
|
+
};
|
|
21389
|
+
header?: {
|
|
21390
|
+
"X-Team-Id"?: string;
|
|
21391
|
+
};
|
|
21392
|
+
path?: never;
|
|
21393
|
+
cookie?: never;
|
|
21394
|
+
};
|
|
21395
|
+
requestBody?: never;
|
|
21396
|
+
responses: {
|
|
21397
|
+
/** @description Successful response */
|
|
21398
|
+
200: {
|
|
21399
|
+
headers: {
|
|
21400
|
+
[name: string]: unknown;
|
|
21401
|
+
};
|
|
21402
|
+
content: {
|
|
21403
|
+
"application/json": {
|
|
21404
|
+
data: {
|
|
21405
|
+
id: string;
|
|
21406
|
+
uniqueRef: string;
|
|
21407
|
+
comments?: string | null;
|
|
21408
|
+
privateFeedback?: string | null;
|
|
21409
|
+
totalRating: number;
|
|
21410
|
+
tags: {
|
|
21411
|
+
type: string;
|
|
21412
|
+
description: string;
|
|
21413
|
+
}[];
|
|
21414
|
+
ratings: {
|
|
21415
|
+
type: string;
|
|
21416
|
+
comments: string;
|
|
21417
|
+
rating?: number | null;
|
|
21418
|
+
}[];
|
|
21419
|
+
reservation: {
|
|
21420
|
+
currency: string | null;
|
|
21421
|
+
uniqueRef?: string | null;
|
|
21422
|
+
guestName?: string | null;
|
|
21423
|
+
bookerName?: string | null;
|
|
21424
|
+
checkIn?: string | null;
|
|
21425
|
+
checkOut?: string | null;
|
|
21426
|
+
generalLedgerPostingAt?: string | null;
|
|
21427
|
+
bookedAt?: string | null;
|
|
21428
|
+
cancelledAt?: string | null;
|
|
21429
|
+
bookingPlatform?: string | null;
|
|
21430
|
+
confirmationCode?: string | null;
|
|
21431
|
+
pmsReferenceCode?: string | null;
|
|
21432
|
+
guests?: number | null;
|
|
21433
|
+
userdata: {
|
|
21434
|
+
[key: string]: unknown;
|
|
21435
|
+
} | null;
|
|
21436
|
+
/** Format: uuid */
|
|
21437
|
+
id: string;
|
|
21438
|
+
issues: ({
|
|
21439
|
+
/** @enum {string} */
|
|
21440
|
+
code: "unassignedAccount";
|
|
21441
|
+
/** @enum {string} */
|
|
21442
|
+
severity: "error";
|
|
21443
|
+
context: {
|
|
21444
|
+
accountIds: string[];
|
|
21445
|
+
};
|
|
21446
|
+
} | {
|
|
21447
|
+
/** @enum {string} */
|
|
21448
|
+
code: "priorToStartDate";
|
|
21449
|
+
/** @enum {string} */
|
|
21450
|
+
severity: "warning";
|
|
21451
|
+
context: {
|
|
21452
|
+
startDate?: string | null;
|
|
21453
|
+
};
|
|
21454
|
+
} | {
|
|
21455
|
+
/** @enum {string} */
|
|
21456
|
+
code: "inactiveListing";
|
|
21457
|
+
/** @enum {string} */
|
|
21458
|
+
severity: "warning";
|
|
21459
|
+
context: {
|
|
21460
|
+
startDate?: string | null;
|
|
21461
|
+
};
|
|
21462
|
+
} | {
|
|
21463
|
+
/** @enum {string} */
|
|
21464
|
+
code: "inactiveConnection";
|
|
21465
|
+
/** @enum {string} */
|
|
21466
|
+
severity: "warning";
|
|
21467
|
+
context: Record<string, never>;
|
|
21468
|
+
})[];
|
|
21469
|
+
connection?: {
|
|
21470
|
+
/** Format: uuid */
|
|
21471
|
+
id: string;
|
|
21472
|
+
name: string;
|
|
21473
|
+
/** @enum {string} */
|
|
21474
|
+
status: "active" | "inactive";
|
|
21475
|
+
uniqueRef?: string | null;
|
|
21476
|
+
app: {
|
|
21477
|
+
id: string;
|
|
21478
|
+
name: string;
|
|
21479
|
+
icon?: string | null;
|
|
21480
|
+
importers?: string[] | null;
|
|
21481
|
+
extractors?: string[] | null;
|
|
21482
|
+
};
|
|
21483
|
+
} | null;
|
|
21484
|
+
nights?: number | null;
|
|
21485
|
+
/** @enum {string|null} */
|
|
21486
|
+
status?: "booked" | "canceled" | "inactive" | null;
|
|
21487
|
+
listing?: {
|
|
21488
|
+
/** Format: uuid */
|
|
21489
|
+
id: string;
|
|
21490
|
+
name: string;
|
|
21491
|
+
address?: {
|
|
21492
|
+
full?: string | null;
|
|
21493
|
+
line1?: string | null;
|
|
21494
|
+
line2?: string | null;
|
|
21495
|
+
city?: string | null;
|
|
21496
|
+
/** @deprecated */
|
|
21497
|
+
state?: string | null;
|
|
21498
|
+
postalCode?: string | null;
|
|
21499
|
+
stateCode?: string | null;
|
|
21500
|
+
countryCode?: string | null;
|
|
21501
|
+
} | null;
|
|
21502
|
+
uniqueRef?: string | null;
|
|
21503
|
+
} | null;
|
|
21504
|
+
listingConnection?: {
|
|
21505
|
+
/** Format: uuid */
|
|
21506
|
+
id: string;
|
|
21507
|
+
name: string;
|
|
21508
|
+
uniqueRef?: string | null;
|
|
21509
|
+
} | null;
|
|
21510
|
+
payment: {
|
|
21511
|
+
expected: number;
|
|
21512
|
+
received: number;
|
|
21513
|
+
status: ("unpaid" | "underpaid" | "overpaid" | "paid") | "coHost";
|
|
21514
|
+
};
|
|
21515
|
+
source?: {
|
|
21516
|
+
/** Format: uuid */
|
|
21517
|
+
id: string;
|
|
21518
|
+
type: string;
|
|
21519
|
+
/** @enum {string|null} */
|
|
21520
|
+
status?: "active" | "inactive" | null;
|
|
21521
|
+
} | null;
|
|
21522
|
+
lines: {
|
|
21523
|
+
/** Format: uuid */
|
|
21524
|
+
id: string;
|
|
21525
|
+
uniqueRef?: string | null;
|
|
21526
|
+
type: string;
|
|
21527
|
+
description?: string | null;
|
|
21528
|
+
/** @description Value in cents (100 = 1€) */
|
|
21529
|
+
amount: number;
|
|
21530
|
+
connectionId?: string | null;
|
|
21531
|
+
metadata?: {
|
|
21532
|
+
[key: string]: unknown;
|
|
21533
|
+
} | null;
|
|
21534
|
+
account?: {
|
|
21535
|
+
id: string;
|
|
21536
|
+
name: string;
|
|
21537
|
+
uniqueRef?: string | null;
|
|
21538
|
+
/** @enum {string} */
|
|
21539
|
+
status: "active" | "inactive";
|
|
21540
|
+
} | null;
|
|
21541
|
+
isExcluded?: boolean | null;
|
|
21542
|
+
}[];
|
|
21543
|
+
/** @description Adjustments are manually added financial lines that are not part of the booking platform */
|
|
21544
|
+
adjustments: {
|
|
21545
|
+
/** Format: uuid */
|
|
21546
|
+
id: string;
|
|
21547
|
+
type?: string;
|
|
21548
|
+
description?: string | null;
|
|
21549
|
+
/** @description Value in cents (100 = 1€) */
|
|
21550
|
+
amount: number;
|
|
21551
|
+
metadata?: {
|
|
21552
|
+
[key: string]: unknown;
|
|
21553
|
+
} | null;
|
|
21554
|
+
/** @enum {string|null} */
|
|
21555
|
+
party?: "owners" | "manager" | null;
|
|
21556
|
+
account?: {
|
|
21557
|
+
id: string;
|
|
21558
|
+
name: string;
|
|
21559
|
+
uniqueRef?: string | null;
|
|
21560
|
+
/** @enum {string} */
|
|
21561
|
+
status: "active" | "inactive";
|
|
21562
|
+
} | null;
|
|
21563
|
+
recurringFee?: {
|
|
21564
|
+
id: string;
|
|
21565
|
+
uniqueRef: string;
|
|
21566
|
+
name: string;
|
|
21567
|
+
/** @enum {string} */
|
|
21568
|
+
type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
21569
|
+
} | null;
|
|
21570
|
+
}[];
|
|
21571
|
+
};
|
|
21572
|
+
}[];
|
|
21573
|
+
pagination: {
|
|
21574
|
+
/** @default 100 */
|
|
21575
|
+
limit: number;
|
|
21576
|
+
/** @default 1 */
|
|
21577
|
+
page: number;
|
|
21578
|
+
total: number;
|
|
21579
|
+
totalPage: number;
|
|
21580
|
+
nextPage?: number;
|
|
21581
|
+
};
|
|
21582
|
+
};
|
|
21583
|
+
};
|
|
21584
|
+
};
|
|
21585
|
+
/** @description Invalid input data */
|
|
21586
|
+
400: {
|
|
21587
|
+
headers: {
|
|
21588
|
+
[name: string]: unknown;
|
|
21589
|
+
};
|
|
21590
|
+
content: {
|
|
21591
|
+
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
21592
|
+
};
|
|
21593
|
+
};
|
|
21594
|
+
/** @description Authorization not provided */
|
|
21595
|
+
401: {
|
|
21596
|
+
headers: {
|
|
21597
|
+
[name: string]: unknown;
|
|
21598
|
+
};
|
|
21599
|
+
content: {
|
|
21600
|
+
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
21601
|
+
};
|
|
21602
|
+
};
|
|
21603
|
+
/** @description Insufficient access */
|
|
21604
|
+
403: {
|
|
21605
|
+
headers: {
|
|
21606
|
+
[name: string]: unknown;
|
|
21607
|
+
};
|
|
21608
|
+
content: {
|
|
21609
|
+
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
21610
|
+
};
|
|
21611
|
+
};
|
|
21612
|
+
/** @description Not found */
|
|
21613
|
+
404: {
|
|
21614
|
+
headers: {
|
|
21615
|
+
[name: string]: unknown;
|
|
21616
|
+
};
|
|
21617
|
+
content: {
|
|
21618
|
+
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
21619
|
+
};
|
|
21620
|
+
};
|
|
21621
|
+
/** @description Internal server error */
|
|
21622
|
+
500: {
|
|
21623
|
+
headers: {
|
|
21624
|
+
[name: string]: unknown;
|
|
21625
|
+
};
|
|
21626
|
+
content: {
|
|
21627
|
+
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
21628
|
+
};
|
|
21629
|
+
};
|
|
21630
|
+
};
|
|
21631
|
+
};
|
|
21435
21632
|
plaidConnectComplete: {
|
|
21436
21633
|
parameters: {
|
|
21437
21634
|
query?: never;
|
|
@@ -22505,23 +22702,13 @@ export interface operations {
|
|
|
22505
22702
|
};
|
|
22506
22703
|
getJournalEntriesReport: {
|
|
22507
22704
|
parameters: {
|
|
22508
|
-
query
|
|
22509
|
-
|
|
22510
|
-
|
|
22511
|
-
status?: "active" | "inactive";
|
|
22512
|
-
types?: string;
|
|
22513
|
-
classifications?: string;
|
|
22514
|
-
startAt?: string;
|
|
22515
|
-
endAt?: string;
|
|
22705
|
+
query: {
|
|
22706
|
+
startAt: string;
|
|
22707
|
+
endAt: string;
|
|
22516
22708
|
search?: string;
|
|
22517
22709
|
date?: string;
|
|
22518
22710
|
amount?: string;
|
|
22519
22711
|
isDateRangeEndInclusive?: boolean;
|
|
22520
|
-
reservationIds?: string;
|
|
22521
|
-
transactionIds?: string;
|
|
22522
|
-
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
22523
|
-
currency?: string;
|
|
22524
|
-
excludeApAppendix?: boolean;
|
|
22525
22712
|
/** @description listing uuids comma separated or "unmapped" */
|
|
22526
22713
|
listingIds?: string;
|
|
22527
22714
|
/** @description comma separated accounts */
|
|
@@ -22552,9 +22739,6 @@ export interface operations {
|
|
|
22552
22739
|
"application/json": {
|
|
22553
22740
|
data: {
|
|
22554
22741
|
id: string;
|
|
22555
|
-
/** @enum {string} */
|
|
22556
|
-
active: "active" | "inactive";
|
|
22557
|
-
txnCode: string;
|
|
22558
22742
|
txnAt: string;
|
|
22559
22743
|
description: string;
|
|
22560
22744
|
centTotal: number;
|
|
@@ -22881,9 +23065,6 @@ export interface operations {
|
|
|
22881
23065
|
"application/json": {
|
|
22882
23066
|
data: {
|
|
22883
23067
|
id: string;
|
|
22884
|
-
/** @enum {string} */
|
|
22885
|
-
active: "active" | "inactive";
|
|
22886
|
-
txnCode: string;
|
|
22887
23068
|
txnAt: string;
|
|
22888
23069
|
description: string;
|
|
22889
23070
|
centTotal: number;
|
|
@@ -23211,10 +23392,10 @@ export interface operations {
|
|
|
23211
23392
|
data: {
|
|
23212
23393
|
contact: {
|
|
23213
23394
|
contactId: string;
|
|
23214
|
-
name?: string;
|
|
23215
|
-
firstName?: string;
|
|
23216
|
-
email?: string;
|
|
23217
|
-
phone?: string;
|
|
23395
|
+
name?: string | null;
|
|
23396
|
+
firstName?: string | null;
|
|
23397
|
+
email?: string | null;
|
|
23398
|
+
phone?: string | null;
|
|
23218
23399
|
};
|
|
23219
23400
|
currency: string;
|
|
23220
23401
|
financials: {
|
|
@@ -23357,7 +23538,6 @@ export interface operations {
|
|
|
23357
23538
|
year: number;
|
|
23358
23539
|
listingId?: string;
|
|
23359
23540
|
currency?: string;
|
|
23360
|
-
viewAs?: "owner" | "manager";
|
|
23361
23541
|
};
|
|
23362
23542
|
header?: {
|
|
23363
23543
|
"X-Team-Id"?: string;
|
|
@@ -23376,83 +23556,30 @@ export interface operations {
|
|
|
23376
23556
|
};
|
|
23377
23557
|
content: {
|
|
23378
23558
|
"application/json": {
|
|
23379
|
-
currency: string;
|
|
23380
|
-
contact: {
|
|
23381
|
-
contactId: string;
|
|
23382
|
-
name?: string;
|
|
23383
|
-
firstName?: string;
|
|
23384
|
-
email?: string;
|
|
23385
|
-
phone?: string;
|
|
23386
|
-
};
|
|
23387
|
-
financials: {
|
|
23388
|
-
balanceStart: number;
|
|
23389
|
-
netRevenue: number;
|
|
23390
|
-
expenses: number;
|
|
23391
|
-
transfers: number;
|
|
23392
|
-
netIncome: number;
|
|
23393
|
-
currentBalance: number;
|
|
23394
|
-
balanceEnd: number;
|
|
23395
|
-
};
|
|
23396
23559
|
netRevenueSection: {
|
|
23397
23560
|
title: string;
|
|
23398
23561
|
rows: {
|
|
23399
23562
|
title: string;
|
|
23400
|
-
statementIds
|
|
23563
|
+
statementIds: string[];
|
|
23401
23564
|
columns: {
|
|
23402
23565
|
title: string;
|
|
23403
23566
|
value: number | string;
|
|
23404
23567
|
formatted: string;
|
|
23405
23568
|
}[];
|
|
23406
23569
|
}[];
|
|
23407
|
-
subtotal?: {
|
|
23408
|
-
title: string;
|
|
23409
|
-
columns: {
|
|
23410
|
-
title: string;
|
|
23411
|
-
value: number | string;
|
|
23412
|
-
formatted: string;
|
|
23413
|
-
}[];
|
|
23414
|
-
};
|
|
23415
23570
|
};
|
|
23416
23571
|
otherSections: {
|
|
23417
23572
|
title: string;
|
|
23418
23573
|
rows: {
|
|
23419
23574
|
title: string;
|
|
23420
|
-
statementIds
|
|
23575
|
+
statementIds: string[];
|
|
23421
23576
|
columns: {
|
|
23422
23577
|
title: string;
|
|
23423
23578
|
value: number | string;
|
|
23424
23579
|
formatted: string;
|
|
23425
23580
|
}[];
|
|
23426
23581
|
}[];
|
|
23427
|
-
subtotal?: {
|
|
23428
|
-
title: string;
|
|
23429
|
-
columns: {
|
|
23430
|
-
title: string;
|
|
23431
|
-
value: number | string;
|
|
23432
|
-
formatted: string;
|
|
23433
|
-
}[];
|
|
23434
|
-
};
|
|
23435
23582
|
}[];
|
|
23436
|
-
transfersSection?: {
|
|
23437
|
-
title: string;
|
|
23438
|
-
rows: {
|
|
23439
|
-
title: string;
|
|
23440
|
-
statementIds?: string[];
|
|
23441
|
-
columns: {
|
|
23442
|
-
title: string;
|
|
23443
|
-
value: number | string;
|
|
23444
|
-
formatted: string;
|
|
23445
|
-
}[];
|
|
23446
|
-
}[];
|
|
23447
|
-
subtotal?: {
|
|
23448
|
-
title: string;
|
|
23449
|
-
columns: {
|
|
23450
|
-
title: string;
|
|
23451
|
-
value: number | string;
|
|
23452
|
-
formatted: string;
|
|
23453
|
-
}[];
|
|
23454
|
-
};
|
|
23455
|
-
};
|
|
23456
23583
|
};
|
|
23457
23584
|
};
|
|
23458
23585
|
};
|
|
@@ -23511,7 +23638,6 @@ export interface operations {
|
|
|
23511
23638
|
year: number;
|
|
23512
23639
|
listingId?: string;
|
|
23513
23640
|
currency?: string;
|
|
23514
|
-
viewAs?: "owner" | "manager";
|
|
23515
23641
|
};
|
|
23516
23642
|
header?: {
|
|
23517
23643
|
"X-Team-Id"?: string;
|
|
@@ -23584,9 +23710,9 @@ export interface operations {
|
|
|
23584
23710
|
getCalendar: {
|
|
23585
23711
|
parameters: {
|
|
23586
23712
|
query: {
|
|
23587
|
-
listingId: string;
|
|
23588
23713
|
startDate: string;
|
|
23589
23714
|
endDate: string;
|
|
23715
|
+
listingId: string;
|
|
23590
23716
|
};
|
|
23591
23717
|
header?: {
|
|
23592
23718
|
"X-Team-Id"?: string;
|
|
@@ -23608,6 +23734,7 @@ export interface operations {
|
|
|
23608
23734
|
/** @enum {string} */
|
|
23609
23735
|
blockReason: "ownerBlock" | "maintenance";
|
|
23610
23736
|
description?: string;
|
|
23737
|
+
id?: string;
|
|
23611
23738
|
user?: {
|
|
23612
23739
|
email: string;
|
|
23613
23740
|
firstName: string;
|
|
@@ -23677,9 +23804,9 @@ export interface operations {
|
|
|
23677
23804
|
requestBody: {
|
|
23678
23805
|
content: {
|
|
23679
23806
|
"application/json": {
|
|
23680
|
-
listingId: string;
|
|
23681
23807
|
startDate: string;
|
|
23682
23808
|
endDate: string;
|
|
23809
|
+
listingId: string;
|
|
23683
23810
|
description?: string;
|
|
23684
23811
|
};
|
|
23685
23812
|
};
|
|
@@ -23697,6 +23824,7 @@ export interface operations {
|
|
|
23697
23824
|
/** @enum {string} */
|
|
23698
23825
|
blockReason: "ownerBlock" | "maintenance";
|
|
23699
23826
|
description?: string;
|
|
23827
|
+
id?: string;
|
|
23700
23828
|
user?: {
|
|
23701
23829
|
email: string;
|
|
23702
23830
|
firstName: string;
|
|
@@ -23751,7 +23879,6 @@ export interface operations {
|
|
|
23751
23879
|
listingId: string;
|
|
23752
23880
|
startDate: string;
|
|
23753
23881
|
endDate: string;
|
|
23754
|
-
description?: string;
|
|
23755
23882
|
};
|
|
23756
23883
|
header?: {
|
|
23757
23884
|
"X-Team-Id"?: string;
|
|
@@ -23773,6 +23900,7 @@ export interface operations {
|
|
|
23773
23900
|
/** @enum {string} */
|
|
23774
23901
|
blockReason: "ownerBlock" | "maintenance";
|
|
23775
23902
|
description?: string;
|
|
23903
|
+
id?: string;
|
|
23776
23904
|
user?: {
|
|
23777
23905
|
email: string;
|
|
23778
23906
|
firstName: string;
|
|
@@ -23875,7 +24003,7 @@ export interface operations {
|
|
|
23875
24003
|
* @description Internal semantic type
|
|
23876
24004
|
* @enum {string}
|
|
23877
24005
|
*/
|
|
23878
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24006
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23879
24007
|
/** @description Optional JSONB filter for internal data */
|
|
23880
24008
|
filter?: string;
|
|
23881
24009
|
};
|
|
@@ -23899,7 +24027,7 @@ export interface operations {
|
|
|
23899
24027
|
* @description Semantic type of the setting value
|
|
23900
24028
|
* @enum {string}
|
|
23901
24029
|
*/
|
|
23902
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24030
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23903
24031
|
/** @description Optional JSONB filter for available values */
|
|
23904
24032
|
filter?: string;
|
|
23905
24033
|
};
|
|
@@ -23996,7 +24124,7 @@ export interface operations {
|
|
|
23996
24124
|
* @description Internal semantic type
|
|
23997
24125
|
* @enum {string}
|
|
23998
24126
|
*/
|
|
23999
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24127
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24000
24128
|
/** @description Optional JSONB filter for internal data */
|
|
24001
24129
|
filter?: string;
|
|
24002
24130
|
};
|
|
@@ -24020,7 +24148,7 @@ export interface operations {
|
|
|
24020
24148
|
* @description Semantic type of the setting value
|
|
24021
24149
|
* @enum {string}
|
|
24022
24150
|
*/
|
|
24023
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24151
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24024
24152
|
/** @description Optional JSONB filter for available values */
|
|
24025
24153
|
filter?: string;
|
|
24026
24154
|
};
|
|
@@ -24120,7 +24248,7 @@ export interface operations {
|
|
|
24120
24248
|
* @description Internal semantic type
|
|
24121
24249
|
* @enum {string}
|
|
24122
24250
|
*/
|
|
24123
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24251
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24124
24252
|
/** @description Optional JSONB filter for internal data */
|
|
24125
24253
|
filter?: string;
|
|
24126
24254
|
};
|
|
@@ -24144,7 +24272,7 @@ export interface operations {
|
|
|
24144
24272
|
* @description Semantic type of the setting value
|
|
24145
24273
|
* @enum {string}
|
|
24146
24274
|
*/
|
|
24147
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24275
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24148
24276
|
/** @description Optional JSONB filter for available values */
|
|
24149
24277
|
filter?: string;
|
|
24150
24278
|
};
|
|
@@ -24231,7 +24359,7 @@ export interface operations {
|
|
|
24231
24359
|
* @description Internal semantic type
|
|
24232
24360
|
* @enum {string}
|
|
24233
24361
|
*/
|
|
24234
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24362
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24235
24363
|
/** @description Optional JSONB filter for internal data */
|
|
24236
24364
|
filter?: string;
|
|
24237
24365
|
};
|
|
@@ -24255,7 +24383,7 @@ export interface operations {
|
|
|
24255
24383
|
* @description Semantic type of the setting value
|
|
24256
24384
|
* @enum {string}
|
|
24257
24385
|
*/
|
|
24258
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24386
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24259
24387
|
/** @description Optional JSONB filter for available values */
|
|
24260
24388
|
filter?: string;
|
|
24261
24389
|
};
|
|
@@ -24295,7 +24423,7 @@ export interface operations {
|
|
|
24295
24423
|
* @description Internal semantic type
|
|
24296
24424
|
* @enum {string}
|
|
24297
24425
|
*/
|
|
24298
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24426
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24299
24427
|
/** @description Optional JSONB filter for internal data */
|
|
24300
24428
|
filter?: string;
|
|
24301
24429
|
};
|
|
@@ -24319,7 +24447,7 @@ export interface operations {
|
|
|
24319
24447
|
* @description Semantic type of the setting value
|
|
24320
24448
|
* @enum {string}
|
|
24321
24449
|
*/
|
|
24322
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24450
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24323
24451
|
/** @description Optional JSONB filter for available values */
|
|
24324
24452
|
filter?: string;
|
|
24325
24453
|
};
|