@opengeni/config 0.10.12 → 0.10.14

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": "@opengeni/config",
3
- "version": "0.10.12",
3
+ "version": "0.10.14",
4
4
  "description": "OpenGeni runtime configuration: settings resolution, deployment knobs, and config validation shared across the server packages.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -33,8 +33,8 @@
33
33
  "prepublishOnly": "bash ../../scripts/prepublish-guard"
34
34
  },
35
35
  "dependencies": {
36
- "@opengeni/codex": "^0.2.10",
37
- "@opengeni/contracts": "^0.38.2",
36
+ "@opengeni/codex": "^0.2.11",
37
+ "@opengeni/contracts": "^0.38.3",
38
38
  "zod": "^4.2.1"
39
39
  },
40
40
  "engines": {
package/src/index.ts CHANGED
@@ -249,7 +249,7 @@ const SettingsSchema = z.object({
249
249
  agentStableVersion: z
250
250
  .string()
251
251
  .regex(/^(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/u)
252
- .default("0.1.8"),
252
+ .default("0.1.9"),
253
253
  productAccessMode: ProductAccessMode.default("local"),
254
254
  billingMode: BillingMode.default("disabled"),
255
255
  entitlementsMode: EntitlementsMode.default("none"),