@vrplatform/api 1.3.1-stage.2549 → 1.3.1-stage.2551
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.
|
@@ -16671,6 +16671,8 @@ export interface operations {
|
|
|
16671
16671
|
shortRefs?: string;
|
|
16672
16672
|
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
16673
16673
|
activeOwnership?: boolean;
|
|
16674
|
+
/** @description Include child listing links on each listing. */
|
|
16675
|
+
includeChildren?: boolean;
|
|
16674
16676
|
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
16675
16677
|
activeRecurringFeePeriods?: string;
|
|
16676
16678
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
@@ -16794,14 +16796,13 @@ export interface operations {
|
|
|
16794
16796
|
uniqueRef?: string | null;
|
|
16795
16797
|
shortRef?: string | null;
|
|
16796
16798
|
} | null;
|
|
16797
|
-
children
|
|
16799
|
+
children?: {
|
|
16798
16800
|
/** Format: uuid */
|
|
16799
16801
|
id: string;
|
|
16800
16802
|
name: string;
|
|
16801
16803
|
uniqueRef?: string | null;
|
|
16802
16804
|
shortRef?: string | null;
|
|
16803
16805
|
}[];
|
|
16804
|
-
isGroup: boolean;
|
|
16805
16806
|
childCount: number;
|
|
16806
16807
|
upcomingDeactivation: {
|
|
16807
16808
|
/** @enum {string} */
|
|
@@ -17092,14 +17093,13 @@ export interface operations {
|
|
|
17092
17093
|
uniqueRef?: string | null;
|
|
17093
17094
|
shortRef?: string | null;
|
|
17094
17095
|
} | null;
|
|
17095
|
-
children
|
|
17096
|
+
children?: {
|
|
17096
17097
|
/** Format: uuid */
|
|
17097
17098
|
id: string;
|
|
17098
17099
|
name: string;
|
|
17099
17100
|
uniqueRef?: string | null;
|
|
17100
17101
|
shortRef?: string | null;
|
|
17101
17102
|
}[];
|
|
17102
|
-
isGroup: boolean;
|
|
17103
17103
|
childCount: number;
|
|
17104
17104
|
upcomingDeactivation: {
|
|
17105
17105
|
/** @enum {string} */
|
|
@@ -17371,6 +17371,8 @@ export interface operations {
|
|
|
17371
17371
|
shortRefs?: string;
|
|
17372
17372
|
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
17373
17373
|
activeOwnership?: boolean;
|
|
17374
|
+
/** @description Include child listing links on each listing. */
|
|
17375
|
+
includeChildren?: boolean;
|
|
17374
17376
|
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
17375
17377
|
activeRecurringFeePeriods?: string;
|
|
17376
17378
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
@@ -17494,6 +17496,8 @@ export interface operations {
|
|
|
17494
17496
|
shortRefs?: string;
|
|
17495
17497
|
/** @description Filter listings by whether they currently have an active ownership period. */
|
|
17496
17498
|
activeOwnership?: boolean;
|
|
17499
|
+
/** @description Include child listing links on each listing. */
|
|
17500
|
+
includeChildren?: boolean;
|
|
17497
17501
|
/** @description Filter by active recurring fee coverage. Use `active` or `inactive` for any recurring fee type, prefix a fee type with `!` to exclude it, or pass a recurring fee UUID for one specific fee. */
|
|
17498
17502
|
activeRecurringFeePeriods?: string;
|
|
17499
17503
|
/** @description Filter listings that have (true) or lack (false) opening balances */
|
|
@@ -18309,7 +18313,10 @@ export interface operations {
|
|
|
18309
18313
|
};
|
|
18310
18314
|
getListingsById: {
|
|
18311
18315
|
parameters: {
|
|
18312
|
-
query?:
|
|
18316
|
+
query?: {
|
|
18317
|
+
/** @description Include child listing links on the listing. */
|
|
18318
|
+
includeChildren?: boolean;
|
|
18319
|
+
};
|
|
18313
18320
|
header?: never;
|
|
18314
18321
|
path: {
|
|
18315
18322
|
id: string;
|
|
@@ -18425,14 +18432,13 @@ export interface operations {
|
|
|
18425
18432
|
uniqueRef?: string | null;
|
|
18426
18433
|
shortRef?: string | null;
|
|
18427
18434
|
} | null;
|
|
18428
|
-
children
|
|
18435
|
+
children?: {
|
|
18429
18436
|
/** Format: uuid */
|
|
18430
18437
|
id: string;
|
|
18431
18438
|
name: string;
|
|
18432
18439
|
uniqueRef?: string | null;
|
|
18433
18440
|
shortRef?: string | null;
|
|
18434
18441
|
}[];
|
|
18435
|
-
isGroup: boolean;
|
|
18436
18442
|
childCount: number;
|
|
18437
18443
|
upcomingDeactivation: {
|
|
18438
18444
|
/** @enum {string} */
|
|
@@ -18715,14 +18721,13 @@ export interface operations {
|
|
|
18715
18721
|
uniqueRef?: string | null;
|
|
18716
18722
|
shortRef?: string | null;
|
|
18717
18723
|
} | null;
|
|
18718
|
-
children
|
|
18724
|
+
children?: {
|
|
18719
18725
|
/** Format: uuid */
|
|
18720
18726
|
id: string;
|
|
18721
18727
|
name: string;
|
|
18722
18728
|
uniqueRef?: string | null;
|
|
18723
18729
|
shortRef?: string | null;
|
|
18724
18730
|
}[];
|
|
18725
|
-
isGroup: boolean;
|
|
18726
18731
|
childCount: number;
|
|
18727
18732
|
upcomingDeactivation: {
|
|
18728
18733
|
/** @enum {string} */
|
|
@@ -19304,14 +19309,13 @@ export interface operations {
|
|
|
19304
19309
|
uniqueRef?: string | null;
|
|
19305
19310
|
shortRef?: string | null;
|
|
19306
19311
|
} | null;
|
|
19307
|
-
children
|
|
19312
|
+
children?: {
|
|
19308
19313
|
/** Format: uuid */
|
|
19309
19314
|
id: string;
|
|
19310
19315
|
name: string;
|
|
19311
19316
|
uniqueRef?: string | null;
|
|
19312
19317
|
shortRef?: string | null;
|
|
19313
19318
|
}[];
|
|
19314
|
-
isGroup: boolean;
|
|
19315
19319
|
childCount: number;
|
|
19316
19320
|
upcomingDeactivation: {
|
|
19317
19321
|
/** @enum {string} */
|
|
@@ -19550,14 +19554,13 @@ export interface operations {
|
|
|
19550
19554
|
uniqueRef?: string | null;
|
|
19551
19555
|
shortRef?: string | null;
|
|
19552
19556
|
} | null;
|
|
19553
|
-
children
|
|
19557
|
+
children?: {
|
|
19554
19558
|
/** Format: uuid */
|
|
19555
19559
|
id: string;
|
|
19556
19560
|
name: string;
|
|
19557
19561
|
uniqueRef?: string | null;
|
|
19558
19562
|
shortRef?: string | null;
|
|
19559
19563
|
}[];
|
|
19560
|
-
isGroup: boolean;
|
|
19561
19564
|
childCount: number;
|
|
19562
19565
|
upcomingDeactivation: {
|
|
19563
19566
|
/** @enum {string} */
|