@vertigis/viewer-spec 58.25.0 → 59.0.0

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.
@@ -10,9 +10,13 @@ export declare class LicenseRequestArgs {
10
10
  * @webOnly
11
11
  */
12
12
  applicationName?: string;
13
- /** The accountId (orgId) that we want to check licensing. */
13
+ /**
14
+ * The accountId (orgId) that we want to check licensing.
15
+ */
14
16
  accountId?: string;
15
- /** Overwrite the SKU for license check. */
17
+ /**
18
+ * Overwrite the SKU for license check.
19
+ */
16
20
  sku?: string;
17
21
  }
18
22
  export declare class LicensingCommands extends CommandRegistry {
@@ -4,13 +4,21 @@ import type { Event } from "../Event.js";
4
4
  import { EventRegistry } from "../EventRegistry.js";
5
5
  import type { Operation } from "../Operation.js";
6
6
  import { OperationRegistry } from "../OperationRegistry.js";
7
- /** The status of a connection to a network host. */
7
+ /**
8
+ * The status of a connection to a network host.
9
+ */
8
10
  export type NetworkStatus = "NoConnection" | "ConnectedToCarrierDataNetwork" | "ConnectedToWiFiOrEthernet" | "Restricted";
9
- /** Arguments for the network.can-reach-host operation. */
11
+ /**
12
+ * Arguments for the network.can-reach-host operation.
13
+ */
10
14
  export interface HostAndPortArgs {
11
- /** The host to connect to. */
15
+ /**
16
+ * The host to connect to.
17
+ */
12
18
  host: string;
13
- /** The port number to connect to. Must be an integer. */
19
+ /**
20
+ * The port number to connect to. Must be an integer.
21
+ */
14
22
  port: number;
15
23
  }
16
24
  export declare class NetworkCommands extends CommandRegistry {
@@ -20,7 +20,7 @@ export interface HasUtilityNetwork {
20
20
  /**
21
21
  * Results from a completed trace.
22
22
  */
23
- export interface TraceCompletedArgs extends MapsFeatureResultArgs, HasUtilityNetwork {
23
+ export interface TraceCompletedArgs extends UtilityNetworkArgs {
24
24
  /**
25
25
  * Results from the trace.
26
26
  */
@@ -89,6 +89,13 @@ export declare class UtilityNetworkOperations extends OperationRegistry {
89
89
  * @mobileOnly
90
90
  */
91
91
  get getUtilityElementsFromFeatures(): Operation<GetUtilityElementsArgs, UtilityElement[]>;
92
+ /**
93
+ * Gets feature results args from trace results, to display in the results
94
+ * list for example.
95
+ *
96
+ * @mobileOnly
97
+ */
98
+ get featureResultsFromTrace(): Operation<TraceCompletedArgs, MapsFeatureResultArgs>;
92
99
  /**
93
100
  * Returns a list of available named traces from the specified network.
94
101
  * Mobile only. Only available to VertiGIS Networks customers.
@@ -1 +1 @@
1
- import{CommandRegistry as t}from"../CommandRegistry.js";import{OperationRegistry as e}from"../OperationRegistry.js";export class UtilityNetworkCommands extends t{_prefix="utility-network";get showTracePanel(){return this._get("show-network-trace-panel")}}export class UtilityNetworkOperations extends e{_prefix="utility-network";get runTrace(){return this._get("run-trace")}get getUtilityElementsFromFeatures(){return this._get("get-elements-from-features")}get getNamedTraces(){return this._get("get-trace-configurations")}}
1
+ import{CommandRegistry as e}from"../CommandRegistry.js";import{OperationRegistry as t}from"../OperationRegistry.js";export class UtilityNetworkCommands extends e{_prefix="utility-network";get showTracePanel(){return this._get("show-network-trace-panel")}}export class UtilityNetworkOperations extends t{_prefix="utility-network";get runTrace(){return this._get("run-trace")}get getUtilityElementsFromFeatures(){return this._get("get-elements-from-features")}get featureResultsFromTrace(){return this._get("feature-results-from-trace")}get getNamedTraces(){return this._get("get-trace-configurations")}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "58.25.0",
3
+ "version": "59.0.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "58.25.0";
4
+ export declare const version = "59.0.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "58.25.0";
4
+ export const version = "59.0.0";