@storm-software/workspace-tools 1.201.2 → 1.202.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/src/base/index.js CHANGED
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -68707,7 +68707,12 @@ var init_schema = __esm({
68707
68707
  extends: z3.string().trim().optional().describe(
68708
68708
  "The path to a base JSON file to use as a configuration preset file"
68709
68709
  ),
68710
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
68710
+ isRoot: z3.boolean().optional().describe(
68711
+ "A flag indicating if the current configuration is the set in the root of the workspace"
68712
+ ),
68713
+ name: z3.string().trim().toLowerCase().optional().describe(
68714
+ "The name of the service/package/scope using this configuration"
68715
+ ),
68711
68716
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
68712
68717
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
68713
68718
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -68717,7 +68722,7 @@ var init_schema = __esm({
68717
68722
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
68718
68723
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
68719
68724
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
68720
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
68725
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
68721
68726
  worker: z3.string().trim().default("Stormie-Bot").describe(
68722
68727
  "The worker of the package (this is the bot that will be used to perform various tasks)"
68723
68728
  ),
@@ -68728,7 +68733,15 @@ var init_schema = __esm({
68728
68733
  "The build will use these package patterns to determine if they should be external to the bundle"
68729
68734
  ),
68730
68735
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
68731
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
68736
+ cacheDirectory: z3.string().trim().optional().describe(
68737
+ "The directory used to store the environment's cached file data"
68738
+ ),
68739
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
68740
+ configDirectory: z3.string().trim().optional().describe(
68741
+ "The directory used to store the environment's configuration files"
68742
+ ),
68743
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
68744
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
68732
68745
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
68733
68746
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
68734
68747
  runtimeVersion: z3.string().trim().regex(
@@ -68746,7 +68759,7 @@ var init_schema = __esm({
68746
68759
  "debug",
68747
68760
  "trace",
68748
68761
  "all"
68749
- ]).default("debug").describe(
68762
+ ]).default("info").describe(
68750
68763
  "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`)."
68751
68764
  ),
68752
68765
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -93300,7 +93300,12 @@ var init_schema = __esm({
93300
93300
  extends: z3.string().trim().optional().describe(
93301
93301
  "The path to a base JSON file to use as a configuration preset file"
93302
93302
  ),
93303
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
93303
+ isRoot: z3.boolean().optional().describe(
93304
+ "A flag indicating if the current configuration is the set in the root of the workspace"
93305
+ ),
93306
+ name: z3.string().trim().toLowerCase().optional().describe(
93307
+ "The name of the service/package/scope using this configuration"
93308
+ ),
93304
93309
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
93305
93310
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
93306
93311
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -93310,7 +93315,7 @@ var init_schema = __esm({
93310
93315
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
93311
93316
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
93312
93317
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
93313
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
93318
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
93314
93319
  worker: z3.string().trim().default("Stormie-Bot").describe(
93315
93320
  "The worker of the package (this is the bot that will be used to perform various tasks)"
93316
93321
  ),
@@ -93321,7 +93326,15 @@ var init_schema = __esm({
93321
93326
  "The build will use these package patterns to determine if they should be external to the bundle"
93322
93327
  ),
93323
93328
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
93324
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
93329
+ cacheDirectory: z3.string().trim().optional().describe(
93330
+ "The directory used to store the environment's cached file data"
93331
+ ),
93332
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
93333
+ configDirectory: z3.string().trim().optional().describe(
93334
+ "The directory used to store the environment's configuration files"
93335
+ ),
93336
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
93337
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
93325
93338
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
93326
93339
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
93327
93340
  runtimeVersion: z3.string().trim().regex(
@@ -93339,7 +93352,7 @@ var init_schema = __esm({
93339
93352
  "debug",
93340
93353
  "trace",
93341
93354
  "all"
93342
- ]).default("debug").describe(
93355
+ ]).default("info").describe(
93343
93356
  "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`)."
93344
93357
  ),
93345
93358
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66874,7 +66874,12 @@ var init_schema = __esm({
66874
66874
  extends: z3.string().trim().optional().describe(
66875
66875
  "The path to a base JSON file to use as a configuration preset file"
66876
66876
  ),
66877
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66877
+ isRoot: z3.boolean().optional().describe(
66878
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66879
+ ),
66880
+ name: z3.string().trim().toLowerCase().optional().describe(
66881
+ "The name of the service/package/scope using this configuration"
66882
+ ),
66878
66883
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66879
66884
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66880
66885
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66884,7 +66889,7 @@ var init_schema = __esm({
66884
66889
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66885
66890
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66886
66891
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66887
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66892
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66888
66893
  worker: z3.string().trim().default("Stormie-Bot").describe(
66889
66894
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66890
66895
  ),
@@ -66895,7 +66900,15 @@ var init_schema = __esm({
66895
66900
  "The build will use these package patterns to determine if they should be external to the bundle"
66896
66901
  ),
66897
66902
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66898
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66903
+ cacheDirectory: z3.string().trim().optional().describe(
66904
+ "The directory used to store the environment's cached file data"
66905
+ ),
66906
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66907
+ configDirectory: z3.string().trim().optional().describe(
66908
+ "The directory used to store the environment's configuration files"
66909
+ ),
66910
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66911
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66899
66912
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66900
66913
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66901
66914
  runtimeVersion: z3.string().trim().regex(
@@ -66913,7 +66926,7 @@ var init_schema = __esm({
66913
66926
  "debug",
66914
66927
  "trace",
66915
66928
  "all"
66916
- ]).default("debug").describe(
66929
+ ]).default("info").describe(
66917
66930
  "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`)."
66918
66931
  ),
66919
66932
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),
@@ -66386,7 +66386,12 @@ var init_schema = __esm({
66386
66386
  extends: z3.string().trim().optional().describe(
66387
66387
  "The path to a base JSON file to use as a configuration preset file"
66388
66388
  ),
66389
- name: z3.string().trim().toLowerCase().optional().describe("The name of the package"),
66389
+ isRoot: z3.boolean().optional().describe(
66390
+ "A flag indicating if the current configuration is the set in the root of the workspace"
66391
+ ),
66392
+ name: z3.string().trim().toLowerCase().optional().describe(
66393
+ "The name of the service/package/scope using this configuration"
66394
+ ),
66390
66395
  namespace: z3.string().trim().toLowerCase().optional().describe("The namespace of the package"),
66391
66396
  organization: z3.string().trim().default("storm-software").describe("The organization of the workspace"),
66392
66397
  repository: z3.string().trim().url().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
@@ -66396,7 +66401,7 @@ var init_schema = __esm({
66396
66401
  licensing: z3.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
66397
66402
  branch: z3.string().trim().default("main").describe("The branch of the workspace"),
66398
66403
  preid: z3.string().optional().describe("A tag specifying the version pre-release identifier"),
66399
- owner: z3.string().trim().default("@storm-software/development").describe("The owner of the package"),
66404
+ owner: z3.string().trim().default("@storm-software/admin").describe("The owner of the package"),
66400
66405
  worker: z3.string().trim().default("Stormie-Bot").describe(
66401
66406
  "The worker of the package (this is the bot that will be used to perform various tasks)"
66402
66407
  ),
@@ -66407,7 +66412,15 @@ var init_schema = __esm({
66407
66412
  "The build will use these package patterns to determine if they should be external to the bundle"
66408
66413
  ),
66409
66414
  skipCache: z3.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
66410
- cacheDirectory: z3.string().trim().default("node_modules/.cache/storm").describe("The directory used to store the workspace's cached file data"),
66415
+ cacheDirectory: z3.string().trim().optional().describe(
66416
+ "The directory used to store the environment's cached file data"
66417
+ ),
66418
+ dataDirectory: z3.string().trim().optional().describe("The directory used to store the environment's data files"),
66419
+ configDirectory: z3.string().trim().optional().describe(
66420
+ "The directory used to store the environment's configuration files"
66421
+ ),
66422
+ tempDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66423
+ logDirectory: z3.string().trim().optional().describe("The directory used to store the environment's temp files"),
66411
66424
  buildDirectory: z3.string().trim().default("dist").describe("The build directory for the workspace"),
66412
66425
  outputDirectory: z3.string().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
66413
66426
  runtimeVersion: z3.string().trim().regex(
@@ -66425,7 +66438,7 @@ var init_schema = __esm({
66425
66438
  "debug",
66426
66439
  "trace",
66427
66440
  "all"
66428
- ]).default("debug").describe(
66441
+ ]).default("info").describe(
66429
66442
  "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`)."
66430
66443
  ),
66431
66444
  cloudflareAccountId: z3.string().trim().toLowerCase().length(32).regex(/^([0-9a-fA-F]{32})$/i).nullable().default(null).describe("The default Cloudflare account ID of the workspace"),