@placeos/ts-client 4.8.4 → 4.8.5
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.
|
@@ -7,6 +7,8 @@ export interface PlaceZoneQueryOptions extends PlaceResourceQueryOptions {
|
|
|
7
7
|
tags?: string;
|
|
8
8
|
/** ID of the system to filter the results */
|
|
9
9
|
control_system_id?: string;
|
|
10
|
+
/** Whether zones should include a count of their children */
|
|
11
|
+
include_children_count?: boolean;
|
|
10
12
|
}
|
|
11
13
|
/** Mapping of available query parameters for the zones show endpoint */
|
|
12
14
|
export interface PlaceZoneShowOptions {
|
package/package.json
CHANGED
package/src/zones/interfaces.ts
CHANGED
|
@@ -8,6 +8,8 @@ export interface PlaceZoneQueryOptions extends PlaceResourceQueryOptions {
|
|
|
8
8
|
tags?: string;
|
|
9
9
|
/** ID of the system to filter the results */
|
|
10
10
|
control_system_id?: string;
|
|
11
|
+
/** Whether zones should include a count of their children */
|
|
12
|
+
include_children_count?: boolean;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
/** Mapping of available query parameters for the zones show endpoint */
|