@tak-ps/cloudtak 13.88.2 → 13.89.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.
@@ -7,38 +7,38 @@ type __VLS_Props = {
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
8
  close: () => any;
9
9
  create: (event: {
10
+ name: string;
11
+ type: string;
12
+ priority: "none" | "low" | "medium" | "high" | "critical";
13
+ location: string;
14
+ remarks: string;
15
+ active: boolean;
16
+ external_id: string;
17
+ editable: boolean;
18
+ channels: number[];
19
+ style: {
20
+ icon?: string;
21
+ "marker-color"?: string;
22
+ "marker-opacity"?: number;
23
+ };
24
+ links: {
25
+ name: string;
26
+ url: string;
27
+ }[];
10
28
  id: string;
11
29
  mission_guid: null | string;
12
30
  created: string;
13
31
  updated: string;
14
- active: boolean;
15
32
  ended: null | string;
16
33
  username: null | string;
17
34
  connection: null | number;
18
- priority: "none" | "low" | "medium" | "high" | "critical";
19
- type: string;
20
- name: string;
21
- external_id: string;
22
- editable: boolean;
23
- location: string;
24
- remarks: string;
25
35
  metadata: {
26
36
  [key: string]: unknown;
27
37
  };
28
- links: {
29
- name: string;
30
- url: string;
31
- }[];
32
- style: {
33
- icon?: string;
34
- "marker-color"?: string;
35
- "marker-opacity"?: number;
36
- };
37
38
  geometry: {
38
39
  type: "Point";
39
40
  coordinates: [number, number];
40
41
  };
41
- channels: number[];
42
42
  boards: {
43
43
  id: string;
44
44
  name: string;
@@ -56,38 +56,38 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
56
56
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
57
57
  onClose?: (() => any) | undefined;
58
58
  onCreate?: ((event: {
59
+ name: string;
60
+ type: string;
61
+ priority: "none" | "low" | "medium" | "high" | "critical";
62
+ location: string;
63
+ remarks: string;
64
+ active: boolean;
65
+ external_id: string;
66
+ editable: boolean;
67
+ channels: number[];
68
+ style: {
69
+ icon?: string;
70
+ "marker-color"?: string;
71
+ "marker-opacity"?: number;
72
+ };
73
+ links: {
74
+ name: string;
75
+ url: string;
76
+ }[];
59
77
  id: string;
60
78
  mission_guid: null | string;
61
79
  created: string;
62
80
  updated: string;
63
- active: boolean;
64
81
  ended: null | string;
65
82
  username: null | string;
66
83
  connection: null | number;
67
- priority: "none" | "low" | "medium" | "high" | "critical";
68
- type: string;
69
- name: string;
70
- external_id: string;
71
- editable: boolean;
72
- location: string;
73
- remarks: string;
74
84
  metadata: {
75
85
  [key: string]: unknown;
76
86
  };
77
- links: {
78
- name: string;
79
- url: string;
80
- }[];
81
- style: {
82
- icon?: string;
83
- "marker-color"?: string;
84
- "marker-opacity"?: number;
85
- };
86
87
  geometry: {
87
88
  type: "Point";
88
89
  coordinates: [number, number];
89
90
  };
90
- channels: number[];
91
91
  boards: {
92
92
  id: string;
93
93
  name: string;
@@ -199,6 +199,8 @@ export type ETLLayerTask = paths["/api/connection/{:connectionid}/layer/{:layeri
199
199
  export type ETLLayerTaskCapabilities = paths["/api/connection/{:connectionid}/layer/{:layerid}/task/capabilities"]["get"]["responses"]["200"]["content"]["application/json"];
200
200
  export type ETLLayerIncoming = paths["/api/connection/{:connectionid}/layer/{:layerid}/incoming"]["post"]["responses"]["200"]["content"]["application/json"];
201
201
  export type ETLLayerOutgoing = paths["/api/connection/{:connectionid}/layer/{:layerid}/outgoing"]["post"]["responses"]["200"]["content"]["application/json"];
202
+ export type CoreSchemaList = paths["/api/core/schema"]["get"]["responses"]["200"]["content"]["application/json"];
203
+ export type CoreSchema = paths["/api/core/schema/{:id}"]["get"]["responses"]["200"]["content"]["application/json"];
202
204
  export type ETLData = paths["/api/connection/{:connectionid}/data/{:dataid}"]["get"]["responses"]["200"]["content"]["application/json"];
203
205
  export type VideoService = paths["/api/video/service"]["get"]["responses"]["200"]["content"]["application/json"];
204
206
  export type InjectorList = paths["/api/server/injector"]["get"]["responses"]["200"]["content"]["application/json"];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/cloudtak",
3
3
  "type": "module",
4
- "version": "13.88.2",
4
+ "version": "13.89.0",
5
5
  "types": "dist/types/plugin.d.ts",
6
6
  "files": [
7
7
  "dist/types"