@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
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* The accountId (orgId) that we want to check licensing.
|
|
15
|
+
*/
|
|
14
16
|
accountId?: string;
|
|
15
|
-
/**
|
|
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
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* The status of a connection to a network host.
|
|
9
|
+
*/
|
|
8
10
|
export type NetworkStatus = "NoConnection" | "ConnectedToCarrierDataNetwork" | "ConnectedToWiFiOrEthernet" | "Restricted";
|
|
9
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* Arguments for the network.can-reach-host operation.
|
|
13
|
+
*/
|
|
10
14
|
export interface HostAndPortArgs {
|
|
11
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* The host to connect to.
|
|
17
|
+
*/
|
|
12
18
|
host: string;
|
|
13
|
-
/**
|
|
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
|
|
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
|
|
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
package/version.d.ts
CHANGED
package/version.js
CHANGED