@storm-software/config 1.121.12 → 1.121.13
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 +6 -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,12 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.121.12](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.12) (2025-06-05)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
5
11
|
## [1.121.11](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.11) (2025-06-05)
|
|
6
12
|
|
|
7
13
|
### 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;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
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;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
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;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
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;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
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;
|
|
1072
1073
|
twitter: string;
|
|
1073
1074
|
discord: string;
|
|
1074
1075
|
telegram: string;
|
|
1075
1076
|
slack: string;
|
|
1076
1077
|
medium: string;
|
|
1077
|
-
github: string;
|
|
1078
1078
|
}, {
|
|
1079
|
+
github?: string | undefined;
|
|
1079
1080
|
twitter?: string | undefined;
|
|
1080
1081
|
discord?: string | undefined;
|
|
1081
1082
|
telegram?: string | undefined;
|
|
1082
1083
|
slack?: string | undefined;
|
|
1083
1084
|
medium?: string | undefined;
|
|
1084
|
-
github?: string | undefined;
|
|
1085
1085
|
}>;
|
|
1086
1086
|
declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
1087
1087
|
cache: z.ZodOptional<z.ZodString>;
|
|
@@ -1165,19 +1165,19 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1165
1165
|
medium: z.ZodDefault<z.ZodString>;
|
|
1166
1166
|
github: z.ZodDefault<z.ZodString>;
|
|
1167
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
github: string;
|
|
1168
1169
|
twitter: string;
|
|
1169
1170
|
discord: string;
|
|
1170
1171
|
telegram: string;
|
|
1171
1172
|
slack: string;
|
|
1172
1173
|
medium: string;
|
|
1173
|
-
github: string;
|
|
1174
1174
|
}, {
|
|
1175
|
+
github?: string | undefined;
|
|
1175
1176
|
twitter?: string | undefined;
|
|
1176
1177
|
discord?: string | undefined;
|
|
1177
1178
|
telegram?: string | undefined;
|
|
1178
1179
|
slack?: string | undefined;
|
|
1179
1180
|
medium?: string | undefined;
|
|
1180
|
-
github?: string | undefined;
|
|
1181
1181
|
}>;
|
|
1182
1182
|
error: z.ZodObject<{
|
|
1183
1183
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
@@ -1971,12 +1971,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1971
1971
|
header?: string | undefined;
|
|
1972
1972
|
};
|
|
1973
1973
|
account: {
|
|
1974
|
+
github: string;
|
|
1974
1975
|
twitter: string;
|
|
1975
1976
|
discord: string;
|
|
1976
1977
|
telegram: string;
|
|
1977
1978
|
slack: string;
|
|
1978
1979
|
medium: string;
|
|
1979
|
-
github: string;
|
|
1980
1980
|
};
|
|
1981
1981
|
error: {
|
|
1982
1982
|
codesFile: string;
|
|
@@ -2154,9 +2154,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2154
2154
|
fatal?: string | undefined;
|
|
2155
2155
|
}>;
|
|
2156
2156
|
extensions: Record<string, any>;
|
|
2157
|
+
name?: string | undefined;
|
|
2157
2158
|
$schema?: string | null | undefined;
|
|
2158
2159
|
extends?: string | string[] | undefined;
|
|
2159
|
-
name?: string | undefined;
|
|
2160
2160
|
namespace?: string | undefined;
|
|
2161
2161
|
repository?: string | undefined;
|
|
2162
2162
|
homepage?: string | undefined;
|
|
@@ -2177,12 +2177,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2177
2177
|
footer?: string | undefined;
|
|
2178
2178
|
};
|
|
2179
2179
|
account: {
|
|
2180
|
+
github?: string | undefined;
|
|
2180
2181
|
twitter?: string | undefined;
|
|
2181
2182
|
discord?: string | undefined;
|
|
2182
2183
|
telegram?: string | undefined;
|
|
2183
2184
|
slack?: string | undefined;
|
|
2184
2185
|
medium?: string | undefined;
|
|
2185
|
-
github?: string | undefined;
|
|
2186
2186
|
};
|
|
2187
2187
|
error: {
|
|
2188
2188
|
codesFile?: string | undefined;
|
|
@@ -2344,9 +2344,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2344
2344
|
dark?: string | undefined;
|
|
2345
2345
|
light?: string | undefined;
|
|
2346
2346
|
}>;
|
|
2347
|
+
name?: string | undefined;
|
|
2347
2348
|
$schema?: string | null | undefined;
|
|
2348
2349
|
extends?: string | string[] | undefined;
|
|
2349
|
-
name?: string | undefined;
|
|
2350
2350
|
namespace?: string | undefined;
|
|
2351
2351
|
organization?: string | undefined;
|
|
2352
2352
|
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;
|
|
1072
1073
|
twitter: string;
|
|
1073
1074
|
discord: string;
|
|
1074
1075
|
telegram: string;
|
|
1075
1076
|
slack: string;
|
|
1076
1077
|
medium: string;
|
|
1077
|
-
github: string;
|
|
1078
1078
|
}, {
|
|
1079
|
+
github?: string | undefined;
|
|
1079
1080
|
twitter?: string | undefined;
|
|
1080
1081
|
discord?: string | undefined;
|
|
1081
1082
|
telegram?: string | undefined;
|
|
1082
1083
|
slack?: string | undefined;
|
|
1083
1084
|
medium?: string | undefined;
|
|
1084
|
-
github?: string | undefined;
|
|
1085
1085
|
}>;
|
|
1086
1086
|
declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
1087
1087
|
cache: z.ZodOptional<z.ZodString>;
|
|
@@ -1165,19 +1165,19 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1165
1165
|
medium: z.ZodDefault<z.ZodString>;
|
|
1166
1166
|
github: z.ZodDefault<z.ZodString>;
|
|
1167
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1168
|
+
github: string;
|
|
1168
1169
|
twitter: string;
|
|
1169
1170
|
discord: string;
|
|
1170
1171
|
telegram: string;
|
|
1171
1172
|
slack: string;
|
|
1172
1173
|
medium: string;
|
|
1173
|
-
github: string;
|
|
1174
1174
|
}, {
|
|
1175
|
+
github?: string | undefined;
|
|
1175
1176
|
twitter?: string | undefined;
|
|
1176
1177
|
discord?: string | undefined;
|
|
1177
1178
|
telegram?: string | undefined;
|
|
1178
1179
|
slack?: string | undefined;
|
|
1179
1180
|
medium?: string | undefined;
|
|
1180
|
-
github?: string | undefined;
|
|
1181
1181
|
}>;
|
|
1182
1182
|
error: z.ZodObject<{
|
|
1183
1183
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
@@ -1971,12 +1971,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1971
1971
|
header?: string | undefined;
|
|
1972
1972
|
};
|
|
1973
1973
|
account: {
|
|
1974
|
+
github: string;
|
|
1974
1975
|
twitter: string;
|
|
1975
1976
|
discord: string;
|
|
1976
1977
|
telegram: string;
|
|
1977
1978
|
slack: string;
|
|
1978
1979
|
medium: string;
|
|
1979
|
-
github: string;
|
|
1980
1980
|
};
|
|
1981
1981
|
error: {
|
|
1982
1982
|
codesFile: string;
|
|
@@ -2154,9 +2154,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2154
2154
|
fatal?: string | undefined;
|
|
2155
2155
|
}>;
|
|
2156
2156
|
extensions: Record<string, any>;
|
|
2157
|
+
name?: string | undefined;
|
|
2157
2158
|
$schema?: string | null | undefined;
|
|
2158
2159
|
extends?: string | string[] | undefined;
|
|
2159
|
-
name?: string | undefined;
|
|
2160
2160
|
namespace?: string | undefined;
|
|
2161
2161
|
repository?: string | undefined;
|
|
2162
2162
|
homepage?: string | undefined;
|
|
@@ -2177,12 +2177,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2177
2177
|
footer?: string | undefined;
|
|
2178
2178
|
};
|
|
2179
2179
|
account: {
|
|
2180
|
+
github?: string | undefined;
|
|
2180
2181
|
twitter?: string | undefined;
|
|
2181
2182
|
discord?: string | undefined;
|
|
2182
2183
|
telegram?: string | undefined;
|
|
2183
2184
|
slack?: string | undefined;
|
|
2184
2185
|
medium?: string | undefined;
|
|
2185
|
-
github?: string | undefined;
|
|
2186
2186
|
};
|
|
2187
2187
|
error: {
|
|
2188
2188
|
codesFile?: string | undefined;
|
|
@@ -2344,9 +2344,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2344
2344
|
dark?: string | undefined;
|
|
2345
2345
|
light?: string | undefined;
|
|
2346
2346
|
}>;
|
|
2347
|
+
name?: string | undefined;
|
|
2347
2348
|
$schema?: string | null | undefined;
|
|
2348
2349
|
extends?: string | string[] | undefined;
|
|
2349
|
-
name?: string | undefined;
|
|
2350
2350
|
namespace?: string | undefined;
|
|
2351
2351
|
organization?: string | undefined;
|
|
2352
2352
|
repository?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.121.
|
|
3
|
+
"version": "1.121.13",
|
|
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": {
|