@tak-ps/cloudtak 13.61.0 → 13.62.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.
- package/dist/types/src/base/cot.d.ts +21 -0
- package/dist/types/src/components/CloudTAK/CoreEventView.vue.d.ts +8 -1
- package/dist/types/src/components/CloudTAK/Property/PropertyCoreEventChannels.vue.d.ts +3 -0
- package/dist/types/src/components/CloudTAK/util/FeatureIcon.vue.d.ts +2 -2
- package/dist/types/src/types.d.ts +8 -0
- package/package.json +1 -1
|
@@ -10,6 +10,27 @@ export declare enum OriginMode {
|
|
|
10
10
|
MISSION = "Mission"
|
|
11
11
|
}
|
|
12
12
|
export declare const RENDERED_PROPERTIES: string[];
|
|
13
|
+
/**
|
|
14
|
+
* MIL-STD symbols render from an icon id of the form `2525<Variant>:<SIDC>` - a
|
|
15
|
+
* key into the Icon Manager's generated symbols
|
|
16
|
+
*
|
|
17
|
+
* It is a CloudTAK rendering detail, not TAK data: no client can resolve one as
|
|
18
|
+
* an Iconset path, and an unresolvable `usericon` detail takes precedence over
|
|
19
|
+
* (and so suppresses) the 2525 symbol the receiving client would otherwise
|
|
20
|
+
* render from the SIDC. It is therefore never stored on a Feature - see
|
|
21
|
+
* {@link renderedIcon}
|
|
22
|
+
*/
|
|
23
|
+
export declare const MILSYM_ICON: RegExp;
|
|
24
|
+
/**
|
|
25
|
+
* The icon id a Feature renders with, on the map and in list views alike
|
|
26
|
+
*
|
|
27
|
+
* `properties.icon` holds only an icon the user picked or a TAK client sent, so
|
|
28
|
+
* it wins. Everything else is derived here rather than stored: a MIL-STD symbol
|
|
29
|
+
* is a pure function of the Feature's SIDC, and persisting the derived key both
|
|
30
|
+
* staled it against later type edits and leaked it onto the wire as a junk
|
|
31
|
+
* `usericon` iconsetpath
|
|
32
|
+
*/
|
|
33
|
+
export declare function renderedIcon(properties: Feature["properties"]): string | undefined;
|
|
13
34
|
export default class COT {
|
|
14
35
|
id: string;
|
|
15
36
|
instance: string;
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
eventId?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
5
|
+
close: () => any;
|
|
6
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
7
|
+
onClose?: (() => any) | undefined;
|
|
8
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
9
|
declare const _default: typeof __VLS_export;
|
|
3
10
|
export default _default;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import type { CoreEventBoardSummary } from '../../../types.ts';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
/** TAK Server Channel bitpositions the Event is shared with */
|
|
3
4
|
modelValue: Array<number>;
|
|
5
|
+
/** Boards of the Event's Channels & the Column the Event sits in on each */
|
|
6
|
+
boards?: Array<CoreEventBoardSummary>;
|
|
4
7
|
edit?: boolean;
|
|
5
8
|
};
|
|
6
9
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
1
3
|
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
feature: {
|
|
3
5
|
type: ObjectConstructor;
|
|
@@ -19,5 +21,3 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
19
21
|
}>> & Readonly<{}>, {
|
|
20
22
|
size: number;
|
|
21
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
@@ -34,6 +34,14 @@ export type CoreEvent = paths["/api/core/event/{:event}"]["get"]["responses"]["2
|
|
|
34
34
|
export type CoreEventList = paths["/api/core/event"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
35
35
|
export type CoreEventLink = CoreEvent["links"][0];
|
|
36
36
|
export type CoreEventStyle = CoreEvent["style"];
|
|
37
|
+
export type CoreEventBoardSummary = CoreEvent["boards"][0];
|
|
38
|
+
export type CoreEventBoardColumnSummary = CoreEventBoardSummary["columns"][0];
|
|
39
|
+
export type CoreEventBoardList = paths["/api/board"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
40
|
+
export type CoreEventBoard = CoreEventBoardList["items"][0];
|
|
41
|
+
export type CoreEventBoardColumnList = paths["/api/board/column"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
42
|
+
export type CoreEventBoardColumn = CoreEventBoardColumnList["items"][0];
|
|
43
|
+
export type CoreEventBoardEventList = paths["/api/board/event"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
44
|
+
export type CoreEventBoardEvent = CoreEventBoardEventList["items"][0];
|
|
37
45
|
export type Contact = paths["/api/marti/api/contacts/all"]["get"]["responses"]["200"]["content"]["application/json"][0];
|
|
38
46
|
export type ContactList = paths["/api/marti/api/contacts/all"]["get"]["responses"]["200"]["content"]["application/json"];
|
|
39
47
|
export type Content = paths["/api/marti/package"]["put"]["responses"]["200"]["content"]["application/json"];
|