anbaric-cloud-hosting 1.14.0 → 1.14.2
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": "anbaric-cloud-hosting",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.2",
|
|
4
4
|
"description": "Anbaric Cloud hosting service: Postgres-backed job persistence and queuing exposed over an HTTP API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "chris@anbaric.ai",
|
|
@@ -18,17 +18,17 @@
|
|
|
18
18
|
"@aws-sdk/client-s3": "^3.1110.0",
|
|
19
19
|
"@aws-sdk/client-secrets-manager": "^3.700.0",
|
|
20
20
|
"@aws-sdk/client-servicediscovery": "^3.1110.0",
|
|
21
|
-
"anbaric-data-store": "^1.14.
|
|
22
|
-
"anbaric-plugins": "^1.14.
|
|
23
|
-
"anbaric-tsapi": "^1.14.
|
|
21
|
+
"anbaric-data-store": "^1.14.2",
|
|
22
|
+
"anbaric-plugins": "^1.14.2",
|
|
23
|
+
"anbaric-tsapi": "^1.14.2",
|
|
24
24
|
"esbuild": "^0.28.2",
|
|
25
25
|
"pg": "^8.16.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^26.2.0",
|
|
29
29
|
"@types/pg": "^8.15.0",
|
|
30
|
-
"anbaric-impl-cloud": "^1.14.
|
|
31
|
-
"anbaric-state-machine": "^1.14.
|
|
30
|
+
"anbaric-impl-cloud": "^1.14.2",
|
|
31
|
+
"anbaric-state-machine": "^1.14.2",
|
|
32
32
|
"tsx": "^4.20.0",
|
|
33
33
|
"typescript": "^7.0.2"
|
|
34
34
|
},
|
|
@@ -44,7 +44,7 @@ class HttpCliKeyStore implements CliKeyStore {
|
|
|
44
44
|
if (response.status === 404) return undefined;
|
|
45
45
|
if (!response.ok) throw new Error(`The key lookup failed with status ${response.status}`);
|
|
46
46
|
|
|
47
|
-
const found = await response.json();
|
|
47
|
+
const found = await response.json() as { userId : string, clientName? : string, publicKey : string, tenant? : string };
|
|
48
48
|
return new CliKey(id, found.userId, found.clientName ?? "", found.publicKey, found.tenant ?? undefined);
|
|
49
49
|
}
|
|
50
50
|
|