@storm-software/config 1.122.5 → 1.122.6
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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/dist/define-config.d.cts +2 -2
- package/dist/define-config.d.ts +2 -2
- package/dist/schema.d.cts +8 -8
- package/dist/schema.d.ts +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.122.5](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.5) (2025-06-17)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
- **monorepo:** Regenerate README markdown files
|
|
11
|
+
|
|
5
12
|
## [1.122.4](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.4) (2025-06-14)
|
|
6
13
|
|
|
7
14
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/define-config.d.cts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -186,9 +186,9 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
dark?: string | undefined;
|
|
187
187
|
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
-
name?: string | undefined;
|
|
190
189
|
$schema?: string | null | undefined;
|
|
191
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | undefined;
|
|
194
194
|
repository?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -186,9 +186,9 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
dark?: string | undefined;
|
|
187
187
|
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
-
name?: string | undefined;
|
|
190
189
|
$schema?: string | null | undefined;
|
|
191
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | undefined;
|
|
194
194
|
repository?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -1069,19 +1069,19 @@ declare const WorkspaceAccountConfigSchema: z.ZodObject<{
|
|
|
1069
1069
|
medium: z.ZodDefault<z.ZodString>;
|
|
1070
1070
|
github: z.ZodDefault<z.ZodString>;
|
|
1071
1071
|
}, "strip", z.ZodTypeAny, {
|
|
1072
|
-
github: string;
|
|
1073
1072
|
twitter: string;
|
|
1074
1073
|
discord: string;
|
|
1075
1074
|
telegram: string;
|
|
1076
1075
|
slack: string;
|
|
1077
1076
|
medium: string;
|
|
1077
|
+
github: string;
|
|
1078
1078
|
}, {
|
|
1079
|
-
github?: string | undefined;
|
|
1080
1079
|
twitter?: string | undefined;
|
|
1081
1080
|
discord?: string | undefined;
|
|
1082
1081
|
telegram?: string | undefined;
|
|
1083
1082
|
slack?: string | undefined;
|
|
1084
1083
|
medium?: string | undefined;
|
|
1084
|
+
github?: string | undefined;
|
|
1085
1085
|
}>;
|
|
1086
1086
|
declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
1087
1087
|
cache: z.ZodOptional<z.ZodString>;
|
|
@@ -1166,19 +1166,19 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1166
1166
|
medium: z.ZodDefault<z.ZodString>;
|
|
1167
1167
|
github: z.ZodDefault<z.ZodString>;
|
|
1168
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1169
|
-
github: string;
|
|
1170
1169
|
twitter: string;
|
|
1171
1170
|
discord: string;
|
|
1172
1171
|
telegram: string;
|
|
1173
1172
|
slack: string;
|
|
1174
1173
|
medium: string;
|
|
1174
|
+
github: string;
|
|
1175
1175
|
}, {
|
|
1176
|
-
github?: string | undefined;
|
|
1177
1176
|
twitter?: string | undefined;
|
|
1178
1177
|
discord?: string | undefined;
|
|
1179
1178
|
telegram?: string | undefined;
|
|
1180
1179
|
slack?: string | undefined;
|
|
1181
1180
|
medium?: string | undefined;
|
|
1181
|
+
github?: string | undefined;
|
|
1182
1182
|
}>;
|
|
1183
1183
|
error: z.ZodObject<{
|
|
1184
1184
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
@@ -1972,12 +1972,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1972
1972
|
header?: string | undefined;
|
|
1973
1973
|
};
|
|
1974
1974
|
account: {
|
|
1975
|
-
github: string;
|
|
1976
1975
|
twitter: string;
|
|
1977
1976
|
discord: string;
|
|
1978
1977
|
telegram: string;
|
|
1979
1978
|
slack: string;
|
|
1980
1979
|
medium: string;
|
|
1980
|
+
github: string;
|
|
1981
1981
|
};
|
|
1982
1982
|
error: {
|
|
1983
1983
|
codesFile: string;
|
|
@@ -2155,9 +2155,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2155
2155
|
fatal?: string | undefined;
|
|
2156
2156
|
}>;
|
|
2157
2157
|
extensions: Record<string, any>;
|
|
2158
|
-
name?: string | undefined;
|
|
2159
2158
|
$schema?: string | null | undefined;
|
|
2160
2159
|
extends?: string | string[] | undefined;
|
|
2160
|
+
name?: string | undefined;
|
|
2161
2161
|
namespace?: string | undefined;
|
|
2162
2162
|
repository?: string | undefined;
|
|
2163
2163
|
homepage?: string | undefined;
|
|
@@ -2179,12 +2179,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2179
2179
|
footer?: string | undefined;
|
|
2180
2180
|
};
|
|
2181
2181
|
account: {
|
|
2182
|
-
github?: string | undefined;
|
|
2183
2182
|
twitter?: string | undefined;
|
|
2184
2183
|
discord?: string | undefined;
|
|
2185
2184
|
telegram?: string | undefined;
|
|
2186
2185
|
slack?: string | undefined;
|
|
2187
2186
|
medium?: string | undefined;
|
|
2187
|
+
github?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
2189
|
error: {
|
|
2190
2190
|
codesFile?: string | undefined;
|
|
@@ -2346,9 +2346,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2346
2346
|
dark?: string | undefined;
|
|
2347
2347
|
light?: string | undefined;
|
|
2348
2348
|
}>;
|
|
2349
|
-
name?: string | undefined;
|
|
2350
2349
|
$schema?: string | null | undefined;
|
|
2351
2350
|
extends?: string | string[] | undefined;
|
|
2351
|
+
name?: string | undefined;
|
|
2352
2352
|
namespace?: string | undefined;
|
|
2353
2353
|
organization?: string | undefined;
|
|
2354
2354
|
repository?: string | undefined;
|
package/dist/schema.d.ts
CHANGED
|
@@ -1069,19 +1069,19 @@ declare const WorkspaceAccountConfigSchema: z.ZodObject<{
|
|
|
1069
1069
|
medium: z.ZodDefault<z.ZodString>;
|
|
1070
1070
|
github: z.ZodDefault<z.ZodString>;
|
|
1071
1071
|
}, "strip", z.ZodTypeAny, {
|
|
1072
|
-
github: string;
|
|
1073
1072
|
twitter: string;
|
|
1074
1073
|
discord: string;
|
|
1075
1074
|
telegram: string;
|
|
1076
1075
|
slack: string;
|
|
1077
1076
|
medium: string;
|
|
1077
|
+
github: string;
|
|
1078
1078
|
}, {
|
|
1079
|
-
github?: string | undefined;
|
|
1080
1079
|
twitter?: string | undefined;
|
|
1081
1080
|
discord?: string | undefined;
|
|
1082
1081
|
telegram?: string | undefined;
|
|
1083
1082
|
slack?: string | undefined;
|
|
1084
1083
|
medium?: string | undefined;
|
|
1084
|
+
github?: string | undefined;
|
|
1085
1085
|
}>;
|
|
1086
1086
|
declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
1087
1087
|
cache: z.ZodOptional<z.ZodString>;
|
|
@@ -1166,19 +1166,19 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1166
1166
|
medium: z.ZodDefault<z.ZodString>;
|
|
1167
1167
|
github: z.ZodDefault<z.ZodString>;
|
|
1168
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1169
|
-
github: string;
|
|
1170
1169
|
twitter: string;
|
|
1171
1170
|
discord: string;
|
|
1172
1171
|
telegram: string;
|
|
1173
1172
|
slack: string;
|
|
1174
1173
|
medium: string;
|
|
1174
|
+
github: string;
|
|
1175
1175
|
}, {
|
|
1176
|
-
github?: string | undefined;
|
|
1177
1176
|
twitter?: string | undefined;
|
|
1178
1177
|
discord?: string | undefined;
|
|
1179
1178
|
telegram?: string | undefined;
|
|
1180
1179
|
slack?: string | undefined;
|
|
1181
1180
|
medium?: string | undefined;
|
|
1181
|
+
github?: string | undefined;
|
|
1182
1182
|
}>;
|
|
1183
1183
|
error: z.ZodObject<{
|
|
1184
1184
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
@@ -1972,12 +1972,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1972
1972
|
header?: string | undefined;
|
|
1973
1973
|
};
|
|
1974
1974
|
account: {
|
|
1975
|
-
github: string;
|
|
1976
1975
|
twitter: string;
|
|
1977
1976
|
discord: string;
|
|
1978
1977
|
telegram: string;
|
|
1979
1978
|
slack: string;
|
|
1980
1979
|
medium: string;
|
|
1980
|
+
github: string;
|
|
1981
1981
|
};
|
|
1982
1982
|
error: {
|
|
1983
1983
|
codesFile: string;
|
|
@@ -2155,9 +2155,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2155
2155
|
fatal?: string | undefined;
|
|
2156
2156
|
}>;
|
|
2157
2157
|
extensions: Record<string, any>;
|
|
2158
|
-
name?: string | undefined;
|
|
2159
2158
|
$schema?: string | null | undefined;
|
|
2160
2159
|
extends?: string | string[] | undefined;
|
|
2160
|
+
name?: string | undefined;
|
|
2161
2161
|
namespace?: string | undefined;
|
|
2162
2162
|
repository?: string | undefined;
|
|
2163
2163
|
homepage?: string | undefined;
|
|
@@ -2179,12 +2179,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2179
2179
|
footer?: string | undefined;
|
|
2180
2180
|
};
|
|
2181
2181
|
account: {
|
|
2182
|
-
github?: string | undefined;
|
|
2183
2182
|
twitter?: string | undefined;
|
|
2184
2183
|
discord?: string | undefined;
|
|
2185
2184
|
telegram?: string | undefined;
|
|
2186
2185
|
slack?: string | undefined;
|
|
2187
2186
|
medium?: string | undefined;
|
|
2187
|
+
github?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
2189
|
error: {
|
|
2190
2190
|
codesFile?: string | undefined;
|
|
@@ -2346,9 +2346,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2346
2346
|
dark?: string | undefined;
|
|
2347
2347
|
light?: string | undefined;
|
|
2348
2348
|
}>;
|
|
2349
|
-
name?: string | undefined;
|
|
2350
2349
|
$schema?: string | null | undefined;
|
|
2351
2350
|
extends?: string | string[] | undefined;
|
|
2351
|
+
name?: string | undefined;
|
|
2352
2352
|
namespace?: string | undefined;
|
|
2353
2353
|
organization?: string | undefined;
|
|
2354
2354
|
repository?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.122.
|
|
3
|
+
"version": "1.122.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
|
|
6
6
|
"repository": {
|