@storm-software/config 1.127.1 → 1.128.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.
@@ -13,3 +13,4 @@ export declare const STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-sof
13
13
  export declare const STORM_DEFAULT_SOCIAL_GITHUB = "https://github.com/storm-software";
14
14
  export declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
15
15
  export declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
16
+ export declare const STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
@@ -6,12 +6,25 @@ import type { StormWorkspaceConfigInput } from "./types";
6
6
  * @returns The config values for the current Storm workspace
7
7
  */
8
8
  export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
9
- bot: {
9
+ name: string;
10
+ namespace: string;
11
+ organization: string | {
10
12
  name?: string | undefined;
11
- email?: string | undefined;
13
+ description?: string | undefined;
14
+ logo?: string | undefined;
15
+ icon?: string | undefined;
16
+ url?: string | undefined;
17
+ };
18
+ repository: string;
19
+ bot: {
20
+ name: string;
21
+ email: string;
12
22
  };
13
23
  release: {
14
- banner?: string | undefined;
24
+ banner: string | {
25
+ url?: string | undefined;
26
+ alt?: string | undefined;
27
+ };
15
28
  header?: string | undefined;
16
29
  footer?: string | undefined;
17
30
  };
@@ -141,16 +154,6 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
141
154
  }>;
142
155
  $schema?: string | undefined;
143
156
  extends?: string | string[] | undefined;
144
- name?: string | undefined;
145
- namespace?: string | undefined;
146
- organization?: string | {
147
- name: string;
148
- description?: string | undefined;
149
- logo?: string | undefined;
150
- icon?: string | undefined;
151
- url?: string | undefined;
152
- } | undefined;
153
- repository?: string | undefined;
154
157
  license?: string | undefined;
155
158
  homepage?: string | undefined;
156
159
  docs?: string | undefined;
@@ -161,12 +164,12 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
161
164
  branch?: string | undefined;
162
165
  preid?: string | undefined;
163
166
  owner?: string | undefined;
164
- mode?: string | undefined;
167
+ mode?: "development" | "staging" | "production" | undefined;
165
168
  skipCache?: boolean | undefined;
166
169
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
167
170
  timezone?: string | undefined;
168
171
  locale?: string | undefined;
169
- logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
172
+ logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
170
173
  skipConfigLogging?: boolean | undefined;
171
174
  registry?: {
172
175
  github?: string | undefined;