tauri-kargo-tools 0.3.5 → 0.3.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tauri-kargo-tools",
3
- "version": "0.3.5",
3
+ "version": "0.3.7",
4
4
  "description": "",
5
5
  "files": ["src"],
6
6
  "exports": { "./*": "./src/*" },
package/src/api.ts CHANGED
@@ -79,7 +79,10 @@ export class TauriKargoClient {
79
79
  useConfig(body: T.UseConfigReq): Promise<T.UseConfigResp> {
80
80
  return this.postJson<T.UseConfigResp>("/api/useConfig", body);
81
81
  }
82
-
82
+ /** POST /api/get-config */
83
+ getAllRunStatus(): Promise<T.AllRunStatusResponse> {
84
+ return this.postJson<T.AllRunStatusResponse>("/api/allRunStatus", {});
85
+ }
83
86
  /** POST /api/get-config */
84
87
  getConfig(): Promise<T.GetConfigResp> {
85
88
  return this.postJson<T.GetConfigResp>("/api/get-config", {});
package/src/test.ts CHANGED
@@ -353,7 +353,7 @@ export function log(...args: (string | number)[]) {
353
353
  export async function assertEqualsSnapshot(actual: unknown, name: string, msg?: string) {
354
354
  let postMessage = true
355
355
  try {
356
- const response = await fetch(`/test/snapshot/${name}.json`)
356
+ const response = await fetch(`/test/snapshots/${name}.json`)
357
357
  if (response.status === 404) {
358
358
  const updateSnapshot: UpdateSnapshot = { type: "snapshot", value: actual ,name:name}
359
359
  if (self) {
package/src/types.ts CHANGED
@@ -280,4 +280,19 @@ export type UpdateSnapshot = {
280
280
  type: "snapshot",
281
281
  name:string,
282
282
  value: any
283
+ }
284
+ export type AllRunStatusItem = {
285
+ id: number
286
+ pid: number | null
287
+ command: string
288
+ executableName: string
289
+ arguments: string[]
290
+ running: boolean
291
+ status: number | null
292
+ }
293
+
294
+ export type AllRunStatusResponse = {
295
+ ok: boolean
296
+ message: string
297
+ items: AllRunStatusItem[]
283
298
  }