@storm-software/config-tools 1.47.1 → 1.48.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": "@storm-software/config-tools",
3
- "version": "1.47.1",
3
+ "version": "1.48.0",
4
4
  "private": false,
5
5
  "description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
6
6
  "repository": {
@@ -5683,6 +5683,7 @@ var StormConfigSchema = z.object({
5683
5683
  ]).default("debug").describe(
5684
5684
  "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
5685
5685
  ),
5686
+ cloudflareAccountId: z.string().trim().nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
5686
5687
  configFile: z.string().trim().nullable().default(null).describe(
5687
5688
  "The filepath of the Storm config. When this field is null, no config file was found in the current workspace."
5688
5689
  ),
@@ -5667,6 +5667,7 @@ var StormConfigSchema = z.object({
5667
5667
  ]).default("debug").describe(
5668
5668
  "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
5669
5669
  ),
5670
+ cloudflareAccountId: z.string().trim().nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
5670
5671
  configFile: z.string().trim().nullable().default(null).describe(
5671
5672
  "The filepath of the Storm config. When this field is null, no config file was found in the current workspace."
5672
5673
  ),