@storm-software/config 1.122.6 → 1.122.7
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.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.6) (2025-06-18)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([39fa60f2c](https://github.com/storm-software/storm-ops/commit/39fa60f2c))
|
|
11
|
+
|
|
5
12
|
## [1.122.5](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.5) (2025-06-17)
|
|
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;
|
|
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>;
|
|
@@ -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;
|
|
1169
1170
|
twitter: string;
|
|
1170
1171
|
discord: string;
|
|
1171
1172
|
telegram: string;
|
|
1172
1173
|
slack: string;
|
|
1173
1174
|
medium: string;
|
|
1174
|
-
github: string;
|
|
1175
1175
|
}, {
|
|
1176
|
+
github?: string | undefined;
|
|
1176
1177
|
twitter?: string | undefined;
|
|
1177
1178
|
discord?: string | undefined;
|
|
1178
1179
|
telegram?: string | undefined;
|
|
1179
1180
|
slack?: string | undefined;
|
|
1180
1181
|
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;
|
|
1975
1976
|
twitter: string;
|
|
1976
1977
|
discord: string;
|
|
1977
1978
|
telegram: string;
|
|
1978
1979
|
slack: string;
|
|
1979
1980
|
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;
|
|
2158
2159
|
$schema?: string | null | undefined;
|
|
2159
2160
|
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;
|
|
2182
2183
|
twitter?: string | undefined;
|
|
2183
2184
|
discord?: string | undefined;
|
|
2184
2185
|
telegram?: string | undefined;
|
|
2185
2186
|
slack?: string | undefined;
|
|
2186
2187
|
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;
|
|
2349
2350
|
$schema?: string | null | undefined;
|
|
2350
2351
|
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;
|
|
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>;
|
|
@@ -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;
|
|
1169
1170
|
twitter: string;
|
|
1170
1171
|
discord: string;
|
|
1171
1172
|
telegram: string;
|
|
1172
1173
|
slack: string;
|
|
1173
1174
|
medium: string;
|
|
1174
|
-
github: string;
|
|
1175
1175
|
}, {
|
|
1176
|
+
github?: string | undefined;
|
|
1176
1177
|
twitter?: string | undefined;
|
|
1177
1178
|
discord?: string | undefined;
|
|
1178
1179
|
telegram?: string | undefined;
|
|
1179
1180
|
slack?: string | undefined;
|
|
1180
1181
|
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;
|
|
1975
1976
|
twitter: string;
|
|
1976
1977
|
discord: string;
|
|
1977
1978
|
telegram: string;
|
|
1978
1979
|
slack: string;
|
|
1979
1980
|
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;
|
|
2158
2159
|
$schema?: string | null | undefined;
|
|
2159
2160
|
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;
|
|
2182
2183
|
twitter?: string | undefined;
|
|
2183
2184
|
discord?: string | undefined;
|
|
2184
2185
|
telegram?: string | undefined;
|
|
2185
2186
|
slack?: string | undefined;
|
|
2186
2187
|
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;
|
|
2349
2350
|
$schema?: string | null | undefined;
|
|
2350
2351
|
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.7",
|
|
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": {
|