@tak-ps/cloudtak 12.124.1 → 12.125.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.
|
@@ -42,12 +42,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
42
42
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
feats: Feature[];
|
|
45
|
+
action: string;
|
|
45
46
|
assets: {
|
|
46
47
|
type: "profile";
|
|
47
48
|
id: string;
|
|
48
49
|
name: string;
|
|
49
50
|
}[];
|
|
50
|
-
action: string;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52
52
|
declare const _default: typeof __VLS_export;
|
|
53
53
|
export default _default;
|
|
@@ -39,6 +39,7 @@ export declare const useMapStore: import("pinia").StoreDefinition<"cloudtak", {
|
|
|
39
39
|
locationAccuracy: number | undefined;
|
|
40
40
|
distanceUnit: string;
|
|
41
41
|
coordFormat: string;
|
|
42
|
+
defaultPointType: string;
|
|
42
43
|
manualLocationMode: boolean;
|
|
43
44
|
isMobileDetected: boolean;
|
|
44
45
|
gpsWatchId: number | null;
|
|
@@ -23,6 +23,7 @@ export default class DrawTool {
|
|
|
23
23
|
private draw;
|
|
24
24
|
editing: COT | null;
|
|
25
25
|
mode: DrawToolMode;
|
|
26
|
+
_changeCount: number;
|
|
26
27
|
route: {
|
|
27
28
|
graph: Routing;
|
|
28
29
|
finder: TerraRoute & {
|
|
@@ -46,6 +47,7 @@ export default class DrawTool {
|
|
|
46
47
|
snappingOptions: string[];
|
|
47
48
|
get snappingLayer(): string;
|
|
48
49
|
set snappingLayer(layer: string);
|
|
50
|
+
get canFinish(): boolean;
|
|
49
51
|
constructor(mapStore: ReturnType<typeof useMapStore>);
|
|
50
52
|
populateSnappingLayers(): Promise<void>;
|
|
51
53
|
updateGraph(opts?: {
|
|
@@ -53,6 +55,7 @@ export default class DrawTool {
|
|
|
53
55
|
}): Promise<void>;
|
|
54
56
|
removeNetwork(): Promise<void>;
|
|
55
57
|
start(mode: DrawToolMode): Promise<void>;
|
|
58
|
+
finish(): Promise<void>;
|
|
56
59
|
stop(refresh?: boolean): Promise<void>;
|
|
57
60
|
edit(cot: COT): Promise<void>;
|
|
58
61
|
getFeature(id: GeoJSONFeatureId): terraDraw.GeoJSONStoreFeatures<terraDraw.GeoJSONStoreGeometries> | undefined;
|
|
@@ -182,4 +182,5 @@ export type AdminLayerUpdateList = {
|
|
|
182
182
|
export type Config = paths["/api/config"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
183
183
|
export type ConfigLogin = paths["/api/config/login"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
184
184
|
export type ConfigMap = paths["/api/config/map"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
185
|
-
export type
|
|
185
|
+
export type PasskeyList = paths['/api/login/passkey']['get']['responses']['200']['content']['application/json'];
|
|
186
|
+
export type Passkey = PasskeyList['items'][0];
|
package/package.json
CHANGED