@storm-software/config 1.124.8 → 1.125.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.
@@ -1,15 +1,15 @@
1
- export declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
1
+ export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
2
  export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  export declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
4
4
  export declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
5
5
  export declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
6
6
  export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
7
7
  export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
8
- export declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
9
- export declare const STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
10
- export declare const STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
11
- export declare const STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
12
- export declare const STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
13
- export declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
8
+ export declare const STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
9
+ export declare const STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
10
+ export declare const STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
11
+ export declare const STORM_DEFAULT_SOCIAL_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
12
+ export declare const STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-software";
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";
@@ -15,7 +15,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
15
15
  header?: string | undefined;
16
16
  footer?: string | undefined;
17
17
  };
18
- account: {
18
+ socials: {
19
19
  twitter?: string | undefined;
20
20
  discord?: string | undefined;
21
21
  telegram?: string | undefined;
@@ -156,7 +156,6 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
156
156
  preid?: string | undefined;
157
157
  owner?: string | undefined;
158
158
  mode?: "development" | "staging" | "production" | undefined;
159
- externalPackagePatterns?: string[] | undefined;
160
159
  skipCache?: boolean | undefined;
161
160
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
162
161
  timezone?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -200,7 +200,7 @@ export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
200
200
  header: z.ZodOptional<z.ZodString>;
201
201
  footer: z.ZodDefault<z.ZodString>;
202
202
  }, z.core.$strip>;
203
- export declare const WorkspaceAccountConfigSchema: z.ZodObject<{
203
+ export declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
204
204
  twitter: z.ZodDefault<z.ZodString>;
205
205
  discord: z.ZodDefault<z.ZodString>;
206
206
  telegram: z.ZodDefault<z.ZodString>;
@@ -262,7 +262,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
262
262
  header: z.ZodOptional<z.ZodString>;
263
263
  footer: z.ZodDefault<z.ZodString>;
264
264
  }, z.core.$strip>;
265
- account: z.ZodObject<{
265
+ socials: z.ZodObject<{
266
266
  twitter: z.ZodDefault<z.ZodString>;
267
267
  discord: z.ZodDefault<z.ZodString>;
268
268
  telegram: z.ZodDefault<z.ZodString>;
@@ -280,7 +280,6 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
280
280
  production: "production";
281
281
  }>>;
282
282
  workspaceRoot: z.ZodString;
283
- externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
284
283
  skipCache: z.ZodDefault<z.ZodBoolean>;
285
284
  directories: z.ZodObject<{
286
285
  cache: z.ZodOptional<z.ZodString>;