@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.
- package/dist/types/src/types.d.ts +15 -0
- package/package.json +2 -2
|
@@ -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