@vrplatform/api 1.3.1-stage.2547 → 1.3.1-stage.2549
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.
|
@@ -1287,6 +1287,24 @@ export interface paths {
|
|
|
1287
1287
|
patch?: never;
|
|
1288
1288
|
trace?: never;
|
|
1289
1289
|
};
|
|
1290
|
+
"/listings/{id}/parent": {
|
|
1291
|
+
parameters: {
|
|
1292
|
+
query?: never;
|
|
1293
|
+
header?: never;
|
|
1294
|
+
path?: never;
|
|
1295
|
+
cookie?: never;
|
|
1296
|
+
};
|
|
1297
|
+
get?: never;
|
|
1298
|
+
/** @description Set Listing Parent */
|
|
1299
|
+
put: operations["putListingsByIdParent"];
|
|
1300
|
+
post?: never;
|
|
1301
|
+
/** @description Remove Listing Parent */
|
|
1302
|
+
delete: operations["deleteListingsByIdParent"];
|
|
1303
|
+
options?: never;
|
|
1304
|
+
head?: never;
|
|
1305
|
+
patch?: never;
|
|
1306
|
+
trace?: never;
|
|
1307
|
+
};
|
|
1290
1308
|
"/me": {
|
|
1291
1309
|
parameters: {
|
|
1292
1310
|
query?: never;
|
|
@@ -16641,6 +16659,8 @@ export interface operations {
|
|
|
16641
16659
|
query?: {
|
|
16642
16660
|
status?: "active" | "inactive";
|
|
16643
16661
|
connectionId?: string;
|
|
16662
|
+
/** @description Filter by parent listing id. Use parent=null to return only parent/root listings. */
|
|
16663
|
+
parent?: string | "null";
|
|
16644
16664
|
/** @description Comma-separated listing ids. */
|
|
16645
16665
|
ids?: string;
|
|
16646
16666
|
search?: string;
|
|
@@ -16767,6 +16787,22 @@ export interface operations {
|
|
|
16767
16787
|
appId?: string | null;
|
|
16768
16788
|
appIcon?: string | null;
|
|
16769
16789
|
} | null;
|
|
16790
|
+
parent: {
|
|
16791
|
+
/** Format: uuid */
|
|
16792
|
+
id: string;
|
|
16793
|
+
name: string;
|
|
16794
|
+
uniqueRef?: string | null;
|
|
16795
|
+
shortRef?: string | null;
|
|
16796
|
+
} | null;
|
|
16797
|
+
children: {
|
|
16798
|
+
/** Format: uuid */
|
|
16799
|
+
id: string;
|
|
16800
|
+
name: string;
|
|
16801
|
+
uniqueRef?: string | null;
|
|
16802
|
+
shortRef?: string | null;
|
|
16803
|
+
}[];
|
|
16804
|
+
isGroup: boolean;
|
|
16805
|
+
childCount: number;
|
|
16770
16806
|
upcomingDeactivation: {
|
|
16771
16807
|
/** @enum {string} */
|
|
16772
16808
|
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
@@ -17049,6 +17085,22 @@ export interface operations {
|
|
|
17049
17085
|
appId?: string | null;
|
|
17050
17086
|
appIcon?: string | null;
|
|
17051
17087
|
} | null;
|
|
17088
|
+
parent: {
|
|
17089
|
+
/** Format: uuid */
|
|
17090
|
+
id: string;
|
|
17091
|
+
name: string;
|
|
17092
|
+
uniqueRef?: string | null;
|
|
17093
|
+
shortRef?: string | null;
|
|
17094
|
+
} | null;
|
|
17095
|
+
children: {
|
|
17096
|
+
/** Format: uuid */
|
|
17097
|
+
id: string;
|
|
17098
|
+
name: string;
|
|
17099
|
+
uniqueRef?: string | null;
|
|
17100
|
+
shortRef?: string | null;
|
|
17101
|
+
}[];
|
|
17102
|
+
isGroup: boolean;
|
|
17103
|
+
childCount: number;
|
|
17052
17104
|
upcomingDeactivation: {
|
|
17053
17105
|
/** @enum {string} */
|
|
17054
17106
|
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
@@ -17307,6 +17359,8 @@ export interface operations {
|
|
|
17307
17359
|
query?: {
|
|
17308
17360
|
status?: "active" | "inactive";
|
|
17309
17361
|
connectionId?: string;
|
|
17362
|
+
/** @description Filter by parent listing id. Use parent=null to return only parent/root listings. */
|
|
17363
|
+
parent?: string | "null";
|
|
17310
17364
|
/** @description Comma-separated listing ids. */
|
|
17311
17365
|
ids?: string;
|
|
17312
17366
|
search?: string;
|
|
@@ -17428,6 +17482,8 @@ export interface operations {
|
|
|
17428
17482
|
query?: {
|
|
17429
17483
|
status?: "active" | "inactive";
|
|
17430
17484
|
connectionId?: string;
|
|
17485
|
+
/** @description Filter by parent listing id. Use parent=null to return only parent/root listings. */
|
|
17486
|
+
parent?: string | "null";
|
|
17431
17487
|
/** @description Comma-separated listing ids. */
|
|
17432
17488
|
ids?: string;
|
|
17433
17489
|
search?: string;
|
|
@@ -18362,6 +18418,22 @@ export interface operations {
|
|
|
18362
18418
|
appId?: string | null;
|
|
18363
18419
|
appIcon?: string | null;
|
|
18364
18420
|
} | null;
|
|
18421
|
+
parent: {
|
|
18422
|
+
/** Format: uuid */
|
|
18423
|
+
id: string;
|
|
18424
|
+
name: string;
|
|
18425
|
+
uniqueRef?: string | null;
|
|
18426
|
+
shortRef?: string | null;
|
|
18427
|
+
} | null;
|
|
18428
|
+
children: {
|
|
18429
|
+
/** Format: uuid */
|
|
18430
|
+
id: string;
|
|
18431
|
+
name: string;
|
|
18432
|
+
uniqueRef?: string | null;
|
|
18433
|
+
shortRef?: string | null;
|
|
18434
|
+
}[];
|
|
18435
|
+
isGroup: boolean;
|
|
18436
|
+
childCount: number;
|
|
18365
18437
|
upcomingDeactivation: {
|
|
18366
18438
|
/** @enum {string} */
|
|
18367
18439
|
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
@@ -18636,6 +18708,22 @@ export interface operations {
|
|
|
18636
18708
|
appId?: string | null;
|
|
18637
18709
|
appIcon?: string | null;
|
|
18638
18710
|
} | null;
|
|
18711
|
+
parent: {
|
|
18712
|
+
/** Format: uuid */
|
|
18713
|
+
id: string;
|
|
18714
|
+
name: string;
|
|
18715
|
+
uniqueRef?: string | null;
|
|
18716
|
+
shortRef?: string | null;
|
|
18717
|
+
} | null;
|
|
18718
|
+
children: {
|
|
18719
|
+
/** Format: uuid */
|
|
18720
|
+
id: string;
|
|
18721
|
+
name: string;
|
|
18722
|
+
uniqueRef?: string | null;
|
|
18723
|
+
shortRef?: string | null;
|
|
18724
|
+
}[];
|
|
18725
|
+
isGroup: boolean;
|
|
18726
|
+
childCount: number;
|
|
18639
18727
|
upcomingDeactivation: {
|
|
18640
18728
|
/** @enum {string} */
|
|
18641
18729
|
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
@@ -19089,6 +19177,501 @@ export interface operations {
|
|
|
19089
19177
|
};
|
|
19090
19178
|
};
|
|
19091
19179
|
};
|
|
19180
|
+
putListingsByIdParent: {
|
|
19181
|
+
parameters: {
|
|
19182
|
+
query?: {
|
|
19183
|
+
dryRun?: boolean;
|
|
19184
|
+
};
|
|
19185
|
+
header?: never;
|
|
19186
|
+
path: {
|
|
19187
|
+
id: string;
|
|
19188
|
+
};
|
|
19189
|
+
cookie?: never;
|
|
19190
|
+
};
|
|
19191
|
+
requestBody?: {
|
|
19192
|
+
content: {
|
|
19193
|
+
"application/json": {
|
|
19194
|
+
/** Format: uuid */
|
|
19195
|
+
parentId: string;
|
|
19196
|
+
};
|
|
19197
|
+
};
|
|
19198
|
+
};
|
|
19199
|
+
responses: {
|
|
19200
|
+
/** @description Successful response */
|
|
19201
|
+
200: {
|
|
19202
|
+
headers: {
|
|
19203
|
+
[name: string]: unknown;
|
|
19204
|
+
};
|
|
19205
|
+
content: {
|
|
19206
|
+
"application/json": {
|
|
19207
|
+
name: string;
|
|
19208
|
+
uniqueRef?: string | null;
|
|
19209
|
+
connectionId?: string | null;
|
|
19210
|
+
defaultCurrency?: string | null;
|
|
19211
|
+
address?: {
|
|
19212
|
+
full?: string | null;
|
|
19213
|
+
line1?: string | null;
|
|
19214
|
+
line2?: string | null;
|
|
19215
|
+
city?: string | null;
|
|
19216
|
+
/** @description Deprecated, use stateCode instead */
|
|
19217
|
+
state?: string | null;
|
|
19218
|
+
postalCode?: string | null;
|
|
19219
|
+
stateCode?: string | null;
|
|
19220
|
+
countryCode?: string | null;
|
|
19221
|
+
} | null;
|
|
19222
|
+
/** Format: uuid */
|
|
19223
|
+
id: string;
|
|
19224
|
+
shortRef?: string | null;
|
|
19225
|
+
title?: string | null;
|
|
19226
|
+
pmsName?: string | null;
|
|
19227
|
+
/** @enum {string} */
|
|
19228
|
+
status: "active" | "inactive";
|
|
19229
|
+
activeOwnership?: {
|
|
19230
|
+
/** Format: uuid */
|
|
19231
|
+
id: string;
|
|
19232
|
+
startAt: string;
|
|
19233
|
+
endAt?: string | null;
|
|
19234
|
+
/** @description Value in cents (100 = 1€) */
|
|
19235
|
+
reserve: number;
|
|
19236
|
+
members: {
|
|
19237
|
+
split?: number | null;
|
|
19238
|
+
/** Format: uuid */
|
|
19239
|
+
id: string;
|
|
19240
|
+
contact?: {
|
|
19241
|
+
/** Format: uuid */
|
|
19242
|
+
id: string;
|
|
19243
|
+
name?: string | null;
|
|
19244
|
+
firstName?: string | null;
|
|
19245
|
+
uniqueRef?: string | null;
|
|
19246
|
+
shortRef?: string | null;
|
|
19247
|
+
email?: string | null;
|
|
19248
|
+
/** @enum {string} */
|
|
19249
|
+
type: "owner" | "vendor";
|
|
19250
|
+
} | null;
|
|
19251
|
+
}[];
|
|
19252
|
+
setListingInactive?: boolean | null;
|
|
19253
|
+
/** @enum {string} */
|
|
19254
|
+
businessModel: "managed" | "co_host" | "co_host_airbnb";
|
|
19255
|
+
lock?: {
|
|
19256
|
+
/** @enum {string} */
|
|
19257
|
+
status: "locked" | "unlocked";
|
|
19258
|
+
booksClosed?: {
|
|
19259
|
+
date: string;
|
|
19260
|
+
} | null;
|
|
19261
|
+
ownerStatement?: {
|
|
19262
|
+
ids: string[];
|
|
19263
|
+
} | null;
|
|
19264
|
+
reconciled?: {
|
|
19265
|
+
bankRecordIds: string[];
|
|
19266
|
+
} | null;
|
|
19267
|
+
statementPeriod?: {
|
|
19268
|
+
hits: {
|
|
19269
|
+
/** Format: uuid */
|
|
19270
|
+
listingId: string;
|
|
19271
|
+
txnAt: string;
|
|
19272
|
+
openFrom: string;
|
|
19273
|
+
}[];
|
|
19274
|
+
} | null;
|
|
19275
|
+
} | null;
|
|
19276
|
+
} | null;
|
|
19277
|
+
activeRecurringFeePeriods?: {
|
|
19278
|
+
startAt?: string | null;
|
|
19279
|
+
endAt?: string | null;
|
|
19280
|
+
rate?: number | null;
|
|
19281
|
+
/** Format: uuid */
|
|
19282
|
+
id: string;
|
|
19283
|
+
recurringFee: {
|
|
19284
|
+
id: string;
|
|
19285
|
+
name: string;
|
|
19286
|
+
/** @enum {string} */
|
|
19287
|
+
type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
19288
|
+
rateType?: ("flat" | "percentage") | null;
|
|
19289
|
+
defaultRate?: number | null;
|
|
19290
|
+
};
|
|
19291
|
+
}[] | null;
|
|
19292
|
+
source?: {
|
|
19293
|
+
/** Format: uuid */
|
|
19294
|
+
id: string;
|
|
19295
|
+
type: string;
|
|
19296
|
+
status?: ("active" | "inactive") | null;
|
|
19297
|
+
appId?: string | null;
|
|
19298
|
+
appIcon?: string | null;
|
|
19299
|
+
} | null;
|
|
19300
|
+
parent: {
|
|
19301
|
+
/** Format: uuid */
|
|
19302
|
+
id: string;
|
|
19303
|
+
name: string;
|
|
19304
|
+
uniqueRef?: string | null;
|
|
19305
|
+
shortRef?: string | null;
|
|
19306
|
+
} | null;
|
|
19307
|
+
children: {
|
|
19308
|
+
/** Format: uuid */
|
|
19309
|
+
id: string;
|
|
19310
|
+
name: string;
|
|
19311
|
+
uniqueRef?: string | null;
|
|
19312
|
+
shortRef?: string | null;
|
|
19313
|
+
}[];
|
|
19314
|
+
isGroup: boolean;
|
|
19315
|
+
childCount: number;
|
|
19316
|
+
upcomingDeactivation: {
|
|
19317
|
+
/** @enum {string} */
|
|
19318
|
+
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
19319
|
+
period: {
|
|
19320
|
+
id: string;
|
|
19321
|
+
startAt: string;
|
|
19322
|
+
endAt: string | null;
|
|
19323
|
+
} | null;
|
|
19324
|
+
};
|
|
19325
|
+
issues: ({
|
|
19326
|
+
/** @constant */
|
|
19327
|
+
code: "missingOwnershipOrDeactivation";
|
|
19328
|
+
/** @constant */
|
|
19329
|
+
severity: "warning";
|
|
19330
|
+
context: Record<string, never>;
|
|
19331
|
+
} | {
|
|
19332
|
+
/** @constant */
|
|
19333
|
+
code: "missingFeesAndCommission";
|
|
19334
|
+
/** @constant */
|
|
19335
|
+
severity: "warning";
|
|
19336
|
+
context: Record<string, never>;
|
|
19337
|
+
} | {
|
|
19338
|
+
/** @constant */
|
|
19339
|
+
code: "missingOpeningBalance";
|
|
19340
|
+
/** @constant */
|
|
19341
|
+
severity: "warning";
|
|
19342
|
+
context: Record<string, never>;
|
|
19343
|
+
})[];
|
|
19344
|
+
};
|
|
19345
|
+
};
|
|
19346
|
+
};
|
|
19347
|
+
/** @description Bad request */
|
|
19348
|
+
400: {
|
|
19349
|
+
headers: {
|
|
19350
|
+
[name: string]: unknown;
|
|
19351
|
+
};
|
|
19352
|
+
content: {
|
|
19353
|
+
"application/json": {
|
|
19354
|
+
code: string;
|
|
19355
|
+
message: string;
|
|
19356
|
+
issues?: {
|
|
19357
|
+
message: string;
|
|
19358
|
+
}[];
|
|
19359
|
+
context?: unknown;
|
|
19360
|
+
};
|
|
19361
|
+
};
|
|
19362
|
+
};
|
|
19363
|
+
/** @description Unauthorized */
|
|
19364
|
+
401: {
|
|
19365
|
+
headers: {
|
|
19366
|
+
[name: string]: unknown;
|
|
19367
|
+
};
|
|
19368
|
+
content: {
|
|
19369
|
+
"application/json": {
|
|
19370
|
+
code: string;
|
|
19371
|
+
message: string;
|
|
19372
|
+
issues?: {
|
|
19373
|
+
message: string;
|
|
19374
|
+
}[];
|
|
19375
|
+
context?: unknown;
|
|
19376
|
+
};
|
|
19377
|
+
};
|
|
19378
|
+
};
|
|
19379
|
+
/** @description Forbidden */
|
|
19380
|
+
403: {
|
|
19381
|
+
headers: {
|
|
19382
|
+
[name: string]: unknown;
|
|
19383
|
+
};
|
|
19384
|
+
content: {
|
|
19385
|
+
"application/json": {
|
|
19386
|
+
code: string;
|
|
19387
|
+
message: string;
|
|
19388
|
+
issues?: {
|
|
19389
|
+
message: string;
|
|
19390
|
+
}[];
|
|
19391
|
+
context?: unknown;
|
|
19392
|
+
};
|
|
19393
|
+
};
|
|
19394
|
+
};
|
|
19395
|
+
/** @description Not found */
|
|
19396
|
+
404: {
|
|
19397
|
+
headers: {
|
|
19398
|
+
[name: string]: unknown;
|
|
19399
|
+
};
|
|
19400
|
+
content: {
|
|
19401
|
+
"application/json": {
|
|
19402
|
+
code: string;
|
|
19403
|
+
message: string;
|
|
19404
|
+
issues?: {
|
|
19405
|
+
message: string;
|
|
19406
|
+
}[];
|
|
19407
|
+
context?: unknown;
|
|
19408
|
+
};
|
|
19409
|
+
};
|
|
19410
|
+
};
|
|
19411
|
+
/** @description Internal server error */
|
|
19412
|
+
500: {
|
|
19413
|
+
headers: {
|
|
19414
|
+
[name: string]: unknown;
|
|
19415
|
+
};
|
|
19416
|
+
content: {
|
|
19417
|
+
"application/json": {
|
|
19418
|
+
code: string;
|
|
19419
|
+
message: string;
|
|
19420
|
+
issues?: {
|
|
19421
|
+
message: string;
|
|
19422
|
+
}[];
|
|
19423
|
+
context?: unknown;
|
|
19424
|
+
};
|
|
19425
|
+
};
|
|
19426
|
+
};
|
|
19427
|
+
};
|
|
19428
|
+
};
|
|
19429
|
+
deleteListingsByIdParent: {
|
|
19430
|
+
parameters: {
|
|
19431
|
+
query?: {
|
|
19432
|
+
dryRun?: boolean;
|
|
19433
|
+
};
|
|
19434
|
+
header?: never;
|
|
19435
|
+
path: {
|
|
19436
|
+
id: string;
|
|
19437
|
+
};
|
|
19438
|
+
cookie?: never;
|
|
19439
|
+
};
|
|
19440
|
+
requestBody?: {
|
|
19441
|
+
content: {
|
|
19442
|
+
"application/json": Record<string, never>;
|
|
19443
|
+
};
|
|
19444
|
+
};
|
|
19445
|
+
responses: {
|
|
19446
|
+
/** @description Successful response */
|
|
19447
|
+
200: {
|
|
19448
|
+
headers: {
|
|
19449
|
+
[name: string]: unknown;
|
|
19450
|
+
};
|
|
19451
|
+
content: {
|
|
19452
|
+
"application/json": {
|
|
19453
|
+
name: string;
|
|
19454
|
+
uniqueRef?: string | null;
|
|
19455
|
+
connectionId?: string | null;
|
|
19456
|
+
defaultCurrency?: string | null;
|
|
19457
|
+
address?: {
|
|
19458
|
+
full?: string | null;
|
|
19459
|
+
line1?: string | null;
|
|
19460
|
+
line2?: string | null;
|
|
19461
|
+
city?: string | null;
|
|
19462
|
+
/** @description Deprecated, use stateCode instead */
|
|
19463
|
+
state?: string | null;
|
|
19464
|
+
postalCode?: string | null;
|
|
19465
|
+
stateCode?: string | null;
|
|
19466
|
+
countryCode?: string | null;
|
|
19467
|
+
} | null;
|
|
19468
|
+
/** Format: uuid */
|
|
19469
|
+
id: string;
|
|
19470
|
+
shortRef?: string | null;
|
|
19471
|
+
title?: string | null;
|
|
19472
|
+
pmsName?: string | null;
|
|
19473
|
+
/** @enum {string} */
|
|
19474
|
+
status: "active" | "inactive";
|
|
19475
|
+
activeOwnership?: {
|
|
19476
|
+
/** Format: uuid */
|
|
19477
|
+
id: string;
|
|
19478
|
+
startAt: string;
|
|
19479
|
+
endAt?: string | null;
|
|
19480
|
+
/** @description Value in cents (100 = 1€) */
|
|
19481
|
+
reserve: number;
|
|
19482
|
+
members: {
|
|
19483
|
+
split?: number | null;
|
|
19484
|
+
/** Format: uuid */
|
|
19485
|
+
id: string;
|
|
19486
|
+
contact?: {
|
|
19487
|
+
/** Format: uuid */
|
|
19488
|
+
id: string;
|
|
19489
|
+
name?: string | null;
|
|
19490
|
+
firstName?: string | null;
|
|
19491
|
+
uniqueRef?: string | null;
|
|
19492
|
+
shortRef?: string | null;
|
|
19493
|
+
email?: string | null;
|
|
19494
|
+
/** @enum {string} */
|
|
19495
|
+
type: "owner" | "vendor";
|
|
19496
|
+
} | null;
|
|
19497
|
+
}[];
|
|
19498
|
+
setListingInactive?: boolean | null;
|
|
19499
|
+
/** @enum {string} */
|
|
19500
|
+
businessModel: "managed" | "co_host" | "co_host_airbnb";
|
|
19501
|
+
lock?: {
|
|
19502
|
+
/** @enum {string} */
|
|
19503
|
+
status: "locked" | "unlocked";
|
|
19504
|
+
booksClosed?: {
|
|
19505
|
+
date: string;
|
|
19506
|
+
} | null;
|
|
19507
|
+
ownerStatement?: {
|
|
19508
|
+
ids: string[];
|
|
19509
|
+
} | null;
|
|
19510
|
+
reconciled?: {
|
|
19511
|
+
bankRecordIds: string[];
|
|
19512
|
+
} | null;
|
|
19513
|
+
statementPeriod?: {
|
|
19514
|
+
hits: {
|
|
19515
|
+
/** Format: uuid */
|
|
19516
|
+
listingId: string;
|
|
19517
|
+
txnAt: string;
|
|
19518
|
+
openFrom: string;
|
|
19519
|
+
}[];
|
|
19520
|
+
} | null;
|
|
19521
|
+
} | null;
|
|
19522
|
+
} | null;
|
|
19523
|
+
activeRecurringFeePeriods?: {
|
|
19524
|
+
startAt?: string | null;
|
|
19525
|
+
endAt?: string | null;
|
|
19526
|
+
rate?: number | null;
|
|
19527
|
+
/** Format: uuid */
|
|
19528
|
+
id: string;
|
|
19529
|
+
recurringFee: {
|
|
19530
|
+
id: string;
|
|
19531
|
+
name: string;
|
|
19532
|
+
/** @enum {string} */
|
|
19533
|
+
type: "managementFee" | "additionalFee" | "bookingChannelFee" | "cleaningFee" | "merchantFee";
|
|
19534
|
+
rateType?: ("flat" | "percentage") | null;
|
|
19535
|
+
defaultRate?: number | null;
|
|
19536
|
+
};
|
|
19537
|
+
}[] | null;
|
|
19538
|
+
source?: {
|
|
19539
|
+
/** Format: uuid */
|
|
19540
|
+
id: string;
|
|
19541
|
+
type: string;
|
|
19542
|
+
status?: ("active" | "inactive") | null;
|
|
19543
|
+
appId?: string | null;
|
|
19544
|
+
appIcon?: string | null;
|
|
19545
|
+
} | null;
|
|
19546
|
+
parent: {
|
|
19547
|
+
/** Format: uuid */
|
|
19548
|
+
id: string;
|
|
19549
|
+
name: string;
|
|
19550
|
+
uniqueRef?: string | null;
|
|
19551
|
+
shortRef?: string | null;
|
|
19552
|
+
} | null;
|
|
19553
|
+
children: {
|
|
19554
|
+
/** Format: uuid */
|
|
19555
|
+
id: string;
|
|
19556
|
+
name: string;
|
|
19557
|
+
uniqueRef?: string | null;
|
|
19558
|
+
shortRef?: string | null;
|
|
19559
|
+
}[];
|
|
19560
|
+
isGroup: boolean;
|
|
19561
|
+
childCount: number;
|
|
19562
|
+
upcomingDeactivation: {
|
|
19563
|
+
/** @enum {string} */
|
|
19564
|
+
status: "active" | "disable-upcoming" | "disabled-ending" | "disabled-forever";
|
|
19565
|
+
period: {
|
|
19566
|
+
id: string;
|
|
19567
|
+
startAt: string;
|
|
19568
|
+
endAt: string | null;
|
|
19569
|
+
} | null;
|
|
19570
|
+
};
|
|
19571
|
+
issues: ({
|
|
19572
|
+
/** @constant */
|
|
19573
|
+
code: "missingOwnershipOrDeactivation";
|
|
19574
|
+
/** @constant */
|
|
19575
|
+
severity: "warning";
|
|
19576
|
+
context: Record<string, never>;
|
|
19577
|
+
} | {
|
|
19578
|
+
/** @constant */
|
|
19579
|
+
code: "missingFeesAndCommission";
|
|
19580
|
+
/** @constant */
|
|
19581
|
+
severity: "warning";
|
|
19582
|
+
context: Record<string, never>;
|
|
19583
|
+
} | {
|
|
19584
|
+
/** @constant */
|
|
19585
|
+
code: "missingOpeningBalance";
|
|
19586
|
+
/** @constant */
|
|
19587
|
+
severity: "warning";
|
|
19588
|
+
context: Record<string, never>;
|
|
19589
|
+
})[];
|
|
19590
|
+
};
|
|
19591
|
+
};
|
|
19592
|
+
};
|
|
19593
|
+
/** @description Bad request */
|
|
19594
|
+
400: {
|
|
19595
|
+
headers: {
|
|
19596
|
+
[name: string]: unknown;
|
|
19597
|
+
};
|
|
19598
|
+
content: {
|
|
19599
|
+
"application/json": {
|
|
19600
|
+
code: string;
|
|
19601
|
+
message: string;
|
|
19602
|
+
issues?: {
|
|
19603
|
+
message: string;
|
|
19604
|
+
}[];
|
|
19605
|
+
context?: unknown;
|
|
19606
|
+
};
|
|
19607
|
+
};
|
|
19608
|
+
};
|
|
19609
|
+
/** @description Unauthorized */
|
|
19610
|
+
401: {
|
|
19611
|
+
headers: {
|
|
19612
|
+
[name: string]: unknown;
|
|
19613
|
+
};
|
|
19614
|
+
content: {
|
|
19615
|
+
"application/json": {
|
|
19616
|
+
code: string;
|
|
19617
|
+
message: string;
|
|
19618
|
+
issues?: {
|
|
19619
|
+
message: string;
|
|
19620
|
+
}[];
|
|
19621
|
+
context?: unknown;
|
|
19622
|
+
};
|
|
19623
|
+
};
|
|
19624
|
+
};
|
|
19625
|
+
/** @description Forbidden */
|
|
19626
|
+
403: {
|
|
19627
|
+
headers: {
|
|
19628
|
+
[name: string]: unknown;
|
|
19629
|
+
};
|
|
19630
|
+
content: {
|
|
19631
|
+
"application/json": {
|
|
19632
|
+
code: string;
|
|
19633
|
+
message: string;
|
|
19634
|
+
issues?: {
|
|
19635
|
+
message: string;
|
|
19636
|
+
}[];
|
|
19637
|
+
context?: unknown;
|
|
19638
|
+
};
|
|
19639
|
+
};
|
|
19640
|
+
};
|
|
19641
|
+
/** @description Not found */
|
|
19642
|
+
404: {
|
|
19643
|
+
headers: {
|
|
19644
|
+
[name: string]: unknown;
|
|
19645
|
+
};
|
|
19646
|
+
content: {
|
|
19647
|
+
"application/json": {
|
|
19648
|
+
code: string;
|
|
19649
|
+
message: string;
|
|
19650
|
+
issues?: {
|
|
19651
|
+
message: string;
|
|
19652
|
+
}[];
|
|
19653
|
+
context?: unknown;
|
|
19654
|
+
};
|
|
19655
|
+
};
|
|
19656
|
+
};
|
|
19657
|
+
/** @description Internal server error */
|
|
19658
|
+
500: {
|
|
19659
|
+
headers: {
|
|
19660
|
+
[name: string]: unknown;
|
|
19661
|
+
};
|
|
19662
|
+
content: {
|
|
19663
|
+
"application/json": {
|
|
19664
|
+
code: string;
|
|
19665
|
+
message: string;
|
|
19666
|
+
issues?: {
|
|
19667
|
+
message: string;
|
|
19668
|
+
}[];
|
|
19669
|
+
context?: unknown;
|
|
19670
|
+
};
|
|
19671
|
+
};
|
|
19672
|
+
};
|
|
19673
|
+
};
|
|
19674
|
+
};
|
|
19092
19675
|
getMe: {
|
|
19093
19676
|
parameters: {
|
|
19094
19677
|
query?: never;
|
|
@@ -37121,6 +37704,13 @@ export interface operations {
|
|
|
37121
37704
|
/** @description Value in cents (100 = 1€) */
|
|
37122
37705
|
total: number;
|
|
37123
37706
|
section: string;
|
|
37707
|
+
sourceListing?: {
|
|
37708
|
+
/** Format: uuid */
|
|
37709
|
+
id: string;
|
|
37710
|
+
name: string;
|
|
37711
|
+
uniqueRef?: string | null;
|
|
37712
|
+
shortRef?: string | null;
|
|
37713
|
+
} | null;
|
|
37124
37714
|
issues: ({
|
|
37125
37715
|
/** @constant */
|
|
37126
37716
|
code: "previousPeriodJournalEntries";
|
|
@@ -37188,6 +37778,13 @@ export interface operations {
|
|
|
37188
37778
|
/** @description Value in cents (100 = 1€) */
|
|
37189
37779
|
total: number;
|
|
37190
37780
|
section: string;
|
|
37781
|
+
sourceListing?: {
|
|
37782
|
+
/** Format: uuid */
|
|
37783
|
+
id: string;
|
|
37784
|
+
name: string;
|
|
37785
|
+
uniqueRef?: string | null;
|
|
37786
|
+
shortRef?: string | null;
|
|
37787
|
+
} | null;
|
|
37191
37788
|
issues: ({
|
|
37192
37789
|
/** @constant */
|
|
37193
37790
|
code: "previousPeriodJournalEntries";
|
|
@@ -37271,6 +37868,13 @@ export interface operations {
|
|
|
37271
37868
|
/** @description Value in cents (100 = 1€) */
|
|
37272
37869
|
total: number;
|
|
37273
37870
|
section: string;
|
|
37871
|
+
sourceListing?: {
|
|
37872
|
+
/** Format: uuid */
|
|
37873
|
+
id: string;
|
|
37874
|
+
name: string;
|
|
37875
|
+
uniqueRef?: string | null;
|
|
37876
|
+
shortRef?: string | null;
|
|
37877
|
+
} | null;
|
|
37274
37878
|
issues: ({
|
|
37275
37879
|
/** @constant */
|
|
37276
37880
|
code: "previousPeriodJournalEntries";
|
|
@@ -37801,6 +38405,13 @@ export interface operations {
|
|
|
37801
38405
|
/** @description Value in cents (100 = 1€) */
|
|
37802
38406
|
total: number;
|
|
37803
38407
|
section: string;
|
|
38408
|
+
sourceListing?: {
|
|
38409
|
+
/** Format: uuid */
|
|
38410
|
+
id: string;
|
|
38411
|
+
name: string;
|
|
38412
|
+
uniqueRef?: string | null;
|
|
38413
|
+
shortRef?: string | null;
|
|
38414
|
+
} | null;
|
|
37804
38415
|
issues: ({
|
|
37805
38416
|
/** @constant */
|
|
37806
38417
|
code: "previousPeriodJournalEntries";
|
|
@@ -37868,6 +38479,13 @@ export interface operations {
|
|
|
37868
38479
|
/** @description Value in cents (100 = 1€) */
|
|
37869
38480
|
total: number;
|
|
37870
38481
|
section: string;
|
|
38482
|
+
sourceListing?: {
|
|
38483
|
+
/** Format: uuid */
|
|
38484
|
+
id: string;
|
|
38485
|
+
name: string;
|
|
38486
|
+
uniqueRef?: string | null;
|
|
38487
|
+
shortRef?: string | null;
|
|
38488
|
+
} | null;
|
|
37871
38489
|
issues: ({
|
|
37872
38490
|
/** @constant */
|
|
37873
38491
|
code: "previousPeriodJournalEntries";
|
|
@@ -37951,6 +38569,13 @@ export interface operations {
|
|
|
37951
38569
|
/** @description Value in cents (100 = 1€) */
|
|
37952
38570
|
total: number;
|
|
37953
38571
|
section: string;
|
|
38572
|
+
sourceListing?: {
|
|
38573
|
+
/** Format: uuid */
|
|
38574
|
+
id: string;
|
|
38575
|
+
name: string;
|
|
38576
|
+
uniqueRef?: string | null;
|
|
38577
|
+
shortRef?: string | null;
|
|
38578
|
+
} | null;
|
|
37954
38579
|
issues: ({
|
|
37955
38580
|
/** @constant */
|
|
37956
38581
|
code: "previousPeriodJournalEntries";
|
|
@@ -40693,6 +41318,13 @@ export interface operations {
|
|
|
40693
41318
|
/** @description Value in cents (100 = 1€) */
|
|
40694
41319
|
total: number;
|
|
40695
41320
|
section: string;
|
|
41321
|
+
sourceListing?: {
|
|
41322
|
+
/** Format: uuid */
|
|
41323
|
+
id: string;
|
|
41324
|
+
name: string;
|
|
41325
|
+
uniqueRef?: string | null;
|
|
41326
|
+
shortRef?: string | null;
|
|
41327
|
+
} | null;
|
|
40696
41328
|
issues: ({
|
|
40697
41329
|
/** @constant */
|
|
40698
41330
|
code: "previousPeriodJournalEntries";
|
|
@@ -40760,6 +41392,13 @@ export interface operations {
|
|
|
40760
41392
|
/** @description Value in cents (100 = 1€) */
|
|
40761
41393
|
total: number;
|
|
40762
41394
|
section: string;
|
|
41395
|
+
sourceListing?: {
|
|
41396
|
+
/** Format: uuid */
|
|
41397
|
+
id: string;
|
|
41398
|
+
name: string;
|
|
41399
|
+
uniqueRef?: string | null;
|
|
41400
|
+
shortRef?: string | null;
|
|
41401
|
+
} | null;
|
|
40763
41402
|
issues: ({
|
|
40764
41403
|
/** @constant */
|
|
40765
41404
|
code: "previousPeriodJournalEntries";
|
|
@@ -40843,6 +41482,13 @@ export interface operations {
|
|
|
40843
41482
|
/** @description Value in cents (100 = 1€) */
|
|
40844
41483
|
total: number;
|
|
40845
41484
|
section: string;
|
|
41485
|
+
sourceListing?: {
|
|
41486
|
+
/** Format: uuid */
|
|
41487
|
+
id: string;
|
|
41488
|
+
name: string;
|
|
41489
|
+
uniqueRef?: string | null;
|
|
41490
|
+
shortRef?: string | null;
|
|
41491
|
+
} | null;
|
|
40846
41492
|
issues: ({
|
|
40847
41493
|
/** @constant */
|
|
40848
41494
|
code: "previousPeriodJournalEntries";
|
|
@@ -41378,6 +42024,13 @@ export interface operations {
|
|
|
41378
42024
|
/** @description Value in cents (100 = 1€) */
|
|
41379
42025
|
total: number;
|
|
41380
42026
|
section: string;
|
|
42027
|
+
sourceListing?: {
|
|
42028
|
+
/** Format: uuid */
|
|
42029
|
+
id: string;
|
|
42030
|
+
name: string;
|
|
42031
|
+
uniqueRef?: string | null;
|
|
42032
|
+
shortRef?: string | null;
|
|
42033
|
+
} | null;
|
|
41381
42034
|
issues: ({
|
|
41382
42035
|
/** @constant */
|
|
41383
42036
|
code: "previousPeriodJournalEntries";
|
|
@@ -41445,6 +42098,13 @@ export interface operations {
|
|
|
41445
42098
|
/** @description Value in cents (100 = 1€) */
|
|
41446
42099
|
total: number;
|
|
41447
42100
|
section: string;
|
|
42101
|
+
sourceListing?: {
|
|
42102
|
+
/** Format: uuid */
|
|
42103
|
+
id: string;
|
|
42104
|
+
name: string;
|
|
42105
|
+
uniqueRef?: string | null;
|
|
42106
|
+
shortRef?: string | null;
|
|
42107
|
+
} | null;
|
|
41448
42108
|
issues: ({
|
|
41449
42109
|
/** @constant */
|
|
41450
42110
|
code: "previousPeriodJournalEntries";
|
|
@@ -41528,6 +42188,13 @@ export interface operations {
|
|
|
41528
42188
|
/** @description Value in cents (100 = 1€) */
|
|
41529
42189
|
total: number;
|
|
41530
42190
|
section: string;
|
|
42191
|
+
sourceListing?: {
|
|
42192
|
+
/** Format: uuid */
|
|
42193
|
+
id: string;
|
|
42194
|
+
name: string;
|
|
42195
|
+
uniqueRef?: string | null;
|
|
42196
|
+
shortRef?: string | null;
|
|
42197
|
+
} | null;
|
|
41531
42198
|
issues: ({
|
|
41532
42199
|
/** @constant */
|
|
41533
42200
|
code: "previousPeriodJournalEntries";
|