ahqstore-types 3.7.6 → 3.9.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.
@@ -61,9 +61,11 @@ export type AppData = [string, string];
61
61
 
62
62
  export type RefId = number;
63
63
 
64
+ export type Success = boolean;
65
+
64
66
  export type Package = "LeadLang" | "DevCamp";
65
67
 
66
- export type Command = { GetSha: RefId } | { GetApp: [RefId, AppId] } | { InstallApp: [RefId, AppId] } | { UninstallApp: [RefId, AppId] } | { ListApps: RefId } | { GetLibrary: RefId } | { RunUpdate: RefId } | { UpdateStatus: RefId } | { GetPrefs: RefId } | { SetPrefs: [RefId, Prefs] } | { AddPkg: [RefId, Package] };
68
+ export type Command = { GetSha: RefId } | { GetApp: [RefId, AppId] } | { InstallApp: [RefId, AppId] } | { UninstallApp: [RefId, AppId] } | { ListApps: RefId } | { GetLibrary: RefId } | { RunUpdate: RefId } | { UpdateStatus: RefId } | { GetPrefs: RefId } | { SetPrefs: [RefId, Prefs] } | { AddPkg: [RefId, Package] } | { ExecutableRunStatus: [RefId, Success] };
67
69
 
68
70
  export type Reason = { UnknownData: RefId } | "Unauthenticated";
69
71
 
@@ -85,7 +87,7 @@ export type AppStatus = "Pending" | "Downloading" | "AVScanning" | "Installing"
85
87
 
86
88
  export type UpdateStatusReport = "Disabled" | "UpToDate" | "Checking" | "Updating";
87
89
 
88
- export type ResponseToSend = "Ready" | { Error: ErrorType } | { SHAId: [RefId, Commits] } | { Disconnect: Reason } | { AppData: [RefId, AppId, AHQStoreApplication] } | { AppDataUrl: [RefId, AppId, string] } | { ListApps: [RefId, AppData[]] } | { Library: [RefId, Library[]] } | { UpdateStatus: [RefId, UpdateStatusReport] } | { Acknowledged: RefId } | { Prefs: [RefId, Prefs] } | { PrefsSet: RefId } | { DownloadPkgProg: [RefId, [number, number]] } | { InstallPkg: RefId } | { InstalledPkg: RefId } | { TerminateBlock: RefId };
90
+ export type ResponseToSend = "Ready" | { Error: ErrorType } | { SHAId: [RefId, Commits] } | { Disconnect: Reason } | { AppData: [RefId, AppId, AHQStoreApplication] } | { AppDataUrl: [RefId, AppId, string] } | { ListApps: [RefId, AppData[]] } | { Library: [RefId, Library[]] } | { UpdateStatus: [RefId, UpdateStatusReport] } | { Acknowledged: RefId } | { Prefs: [RefId, Prefs] } | { PrefsSet: RefId } | { DownloadPkgProg: [RefId, [number, number]] } | { InstallPkg: RefId } | { InstalledPkg: RefId } | { TerminateBlock: RefId } | { RunExecutable: [RefId, string] };
89
91
 
90
92
  export type MapData = Record<string, string>;
91
93
 
@@ -576,7 +576,7 @@ export class GHRepoCommit {
576
576
  set sha(arg0) {
577
577
  const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
578
578
  const len0 = WASM_VECTOR_LEN;
579
- wasm.__wbg_set_ghrepocommit_sha(this.__wbg_ptr, ptr0, len0);
579
+ wasm.__wbg_set_apprepo_author(this.__wbg_ptr, ptr0, len0);
580
580
  }
581
581
  }
582
582
 
Binary file
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "ahqstore-types",
3
3
  "type": "module",
4
4
  "description": "Standard types used by AHQ Store",
5
- "version": "3.7.6",
5
+ "version": "3.9.0",
6
6
  "license": "SEE LICENSE IN ../LICENSE.md",
7
7
  "repository": {
8
8
  "type": "git",