@tak-ps/cloudtak 12.119.1 → 12.120.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.
@@ -163,6 +163,21 @@ export type ETLRawTaskList = {
163
163
  items: Record<string, string[]>;
164
164
  };
165
165
  export type ETLTaskVersions = paths["/api/task/raw/{:task}"]["get"]["responses"]["200"]["content"]["application/json"];
166
+ export type AdminLayerUpdate = {
167
+ id: number;
168
+ name: string;
169
+ task_prefix: string;
170
+ current_version: string;
171
+ latest_version: string | null;
172
+ has_update: boolean;
173
+ template: boolean;
174
+ connection: number | null;
175
+ parent_name: string | null;
176
+ };
177
+ export type AdminLayerUpdateList = {
178
+ total: number;
179
+ items: AdminLayerUpdate[];
180
+ };
166
181
  export type Config = paths["/api/config"]["get"]["responses"]["200"]["content"]["application/json"];
167
182
  export type ConfigLogin = paths["/api/config/login"]["get"]["responses"]["200"]["content"]["application/json"];
168
183
  export type ConfigMap = paths["/api/config/map"]["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": "12.119.1",
4
+ "version": "12.120.0",
5
5
  "types": "dist/types/plugin.d.ts",
6
6
  "files": [
7
7
  "dist/types"
@@ -111,4 +111,4 @@
111
111
  "> 1%",
112
112
  "last 2 versions"
113
113
  ]
114
- }
114
+ }