anbaric-cloud-hosting 1.14.2 → 1.16.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anbaric-cloud-hosting",
3
- "version": "1.14.2",
3
+ "version": "1.16.0",
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.2",
22
- "anbaric-plugins": "^1.14.2",
23
- "anbaric-tsapi": "^1.14.2",
21
+ "anbaric-data-store": "^1.16.0",
22
+ "anbaric-plugins": "^1.16.0",
23
+ "anbaric-tsapi": "^1.16.0",
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.2",
31
- "anbaric-state-machine": "^1.14.2",
30
+ "anbaric-impl-cloud": "^1.16.0",
31
+ "anbaric-state-machine": "^1.16.0",
32
32
  "tsx": "^4.20.0",
33
33
  "typescript": "^7.0.2"
34
34
  },
@@ -4,7 +4,7 @@ import {AuditFilter, AuditRecordStore} from "../auditing/AuditRecordStore";
4
4
 
5
5
  /* The writes worth keeping in the durable trail; reads (READ, LIST, QUERY) are
6
6
  dropped by default. Interactions are plain strings chosen by each store. */
7
- const DEFAULT_WRITE_MASK : Array<string> = ["CREATE", "SAVE", "UPDATE_PROPERTIES", "CHANGE_STATE", "DELETE", "EXECUTE", "KILL"];
7
+ const DEFAULT_WRITE_MASK : Array<string> = ["INITIALIZE", "CREATE", "SAVE", "UPDATE_PROPERTIES", "CHANGE_STATE", "DELETE", "EXECUTE", "KILL"];
8
8
 
9
9
  /* Persists audit records, subject to a write mask: only the interactions in
10
10
  the mask are stored, so high-volume reads can be audited at the call site