@storm-software/config 1.110.6 → 1.111.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.111.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.111.0) (2025-04-02)
6
+
7
+ ### Features
8
+
9
+ - **config:** Update `StormConfig` to `StormWorkspaceConfig`
10
+ ([4bc076dd7](https://github.com/storm-software/storm-ops/commit/4bc076dd7))
11
+
12
+ ### Miscellaneous
13
+
14
+ - **workspace-tools:** Update all references to `StormConfig` to point to
15
+ `StormWorkspaceConfig`
16
+ ([c769b40dd](https://github.com/storm-software/storm-ops/commit/c769b40dd))
17
+
5
18
  ## [1.110.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.110.6) (2025-03-18)
6
19
 
7
20
  ### Miscellaneous
@@ -123,7 +123,7 @@ var WorkspaceDirectoryConfigSchema = z.object({
123
123
  log: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
124
124
  build: z.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
125
125
  }).describe("Various directories used by the workspace to store data, cache, and configuration files");
126
- var StormConfigSchema = z.object({
126
+ var stormWorkspaceConfigSchema = z.object({
127
127
  $schema: z.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
128
128
  extends: ExtendsSchema.optional(),
129
129
  name: z.string().trim().toLowerCase().optional().describe("The name of the service/package/scope using this configuration"),
@@ -190,5 +190,5 @@ export {
190
190
  WorkspaceReleaseConfigSchema,
191
191
  WorkspaceAccountConfigSchema,
192
192
  WorkspaceDirectoryConfigSchema,
193
- StormConfigSchema
193
+ stormWorkspaceConfigSchema
194
194
  };
@@ -123,7 +123,7 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
123
123
  log: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
124
124
  build: _zod2.default.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
125
125
  }).describe("Various directories used by the workspace to store data, cache, and configuration files");
126
- var StormConfigSchema = _zod2.default.object({
126
+ var stormWorkspaceConfigSchema = _zod2.default.object({
127
127
  $schema: _zod2.default.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
128
128
  extends: ExtendsSchema.optional(),
129
129
  name: _zod2.default.string().trim().toLowerCase().optional().describe("The name of the service/package/scope using this configuration"),
@@ -191,4 +191,4 @@ var StormConfigSchema = _zod2.default.object({
191
191
 
192
192
 
193
193
 
194
- exports.DarkThemeColorConfigSchema = DarkThemeColorConfigSchema; exports.LightThemeColorConfigSchema = LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = MultiThemeColorConfigSchema; exports.SingleThemeColorConfigSchema = SingleThemeColorConfigSchema; exports.RegistryUrlConfigSchema = RegistryUrlConfigSchema; exports.RegistryConfigSchema = RegistryConfigSchema; exports.ColorConfigSchema = ColorConfigSchema; exports.ColorConfigMapSchema = ColorConfigMapSchema; exports.ExtendsSchema = ExtendsSchema; exports.WorkspaceBotConfigSchema = WorkspaceBotConfigSchema; exports.WorkspaceReleaseConfigSchema = WorkspaceReleaseConfigSchema; exports.WorkspaceAccountConfigSchema = WorkspaceAccountConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.StormConfigSchema = StormConfigSchema;
194
+ exports.DarkThemeColorConfigSchema = DarkThemeColorConfigSchema; exports.LightThemeColorConfigSchema = LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = MultiThemeColorConfigSchema; exports.SingleThemeColorConfigSchema = SingleThemeColorConfigSchema; exports.RegistryUrlConfigSchema = RegistryUrlConfigSchema; exports.RegistryConfigSchema = RegistryConfigSchema; exports.ColorConfigSchema = ColorConfigSchema; exports.ColorConfigMapSchema = ColorConfigMapSchema; exports.ExtendsSchema = ExtendsSchema; exports.WorkspaceBotConfigSchema = WorkspaceBotConfigSchema; exports.WorkspaceReleaseConfigSchema = WorkspaceReleaseConfigSchema; exports.WorkspaceAccountConfigSchema = WorkspaceAccountConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.stormWorkspaceConfigSchema = stormWorkspaceConfigSchema;
@@ -1,4 +1,4 @@
1
- import { StormConfigInput } from './types.cjs';
1
+ import { StormWorkspaceConfigInput } from './types.cjs';
2
2
  import 'zod';
3
3
  import './schema.cjs';
4
4
 
@@ -8,7 +8,7 @@ import './schema.cjs';
8
8
  * @param input - The config values for the current Storm workspace
9
9
  * @returns The config values for the current Storm workspace
10
10
  */
11
- declare const defineConfig: (input: StormConfigInput) => {
11
+ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
12
12
  bot: {
13
13
  name?: string | undefined;
14
14
  email?: string | undefined;
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormConfigInput) => {
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
  directories: {
30
30
  cache?: string | undefined;
@@ -35,155 +35,155 @@ declare const defineConfig: (input: StormConfigInput) => {
35
35
  build?: string | undefined;
36
36
  };
37
37
  colors: {
38
+ fatal?: string | undefined;
39
+ success?: string | undefined;
40
+ info?: string | undefined;
41
+ dark?: string | undefined;
42
+ light?: string | undefined;
43
+ brand?: string | undefined;
44
+ alternate?: string | undefined;
45
+ accent?: string | undefined;
46
+ link?: string | undefined;
47
+ help?: string | undefined;
48
+ warning?: string | undefined;
49
+ danger?: string | undefined;
50
+ positive?: string | undefined;
51
+ negative?: string | undefined;
52
+ } | {
38
53
  dark: {
39
- foreground?: string | undefined;
40
- background?: string | undefined;
54
+ fatal?: string | undefined;
55
+ success?: string | undefined;
56
+ info?: string | undefined;
41
57
  brand?: string | undefined;
42
58
  alternate?: string | undefined;
43
59
  accent?: string | undefined;
44
60
  link?: string | undefined;
45
61
  help?: string | undefined;
46
- success?: string | undefined;
47
- info?: string | undefined;
48
62
  warning?: string | undefined;
49
63
  danger?: string | undefined;
50
- fatal?: string | undefined;
51
64
  positive?: string | undefined;
52
65
  negative?: string | undefined;
53
- };
54
- light: {
55
66
  foreground?: string | undefined;
56
67
  background?: string | undefined;
68
+ };
69
+ light: {
70
+ fatal?: string | undefined;
71
+ success?: string | undefined;
72
+ info?: string | undefined;
57
73
  brand?: string | undefined;
58
74
  alternate?: string | undefined;
59
75
  accent?: string | undefined;
60
76
  link?: string | undefined;
61
77
  help?: string | undefined;
62
- success?: string | undefined;
63
- info?: string | undefined;
64
78
  warning?: string | undefined;
65
79
  danger?: string | undefined;
66
- fatal?: string | undefined;
67
80
  positive?: string | undefined;
68
81
  negative?: string | undefined;
82
+ foreground?: string | undefined;
83
+ background?: string | undefined;
69
84
  };
70
- } | {
71
- brand?: string | undefined;
72
- alternate?: string | undefined;
73
- accent?: string | undefined;
74
- link?: string | undefined;
75
- help?: string | undefined;
76
- success?: string | undefined;
77
- info?: string | undefined;
78
- warning?: string | undefined;
79
- danger?: string | undefined;
80
- fatal?: string | undefined;
81
- positive?: string | undefined;
82
- negative?: string | undefined;
83
- dark?: string | undefined;
84
- light?: string | undefined;
85
85
  } | {
86
86
  base: {
87
+ fatal?: string | undefined;
88
+ success?: string | undefined;
89
+ info?: string | undefined;
90
+ dark?: string | undefined;
91
+ light?: string | undefined;
92
+ brand?: string | undefined;
93
+ alternate?: string | undefined;
94
+ accent?: string | undefined;
95
+ link?: string | undefined;
96
+ help?: string | undefined;
97
+ warning?: string | undefined;
98
+ danger?: string | undefined;
99
+ positive?: string | undefined;
100
+ negative?: string | undefined;
101
+ } | {
87
102
  dark: {
88
- foreground?: string | undefined;
89
- background?: string | undefined;
103
+ fatal?: string | undefined;
104
+ success?: string | undefined;
105
+ info?: string | undefined;
90
106
  brand?: string | undefined;
91
107
  alternate?: string | undefined;
92
108
  accent?: string | undefined;
93
109
  link?: string | undefined;
94
110
  help?: string | undefined;
95
- success?: string | undefined;
96
- info?: string | undefined;
97
111
  warning?: string | undefined;
98
112
  danger?: string | undefined;
99
- fatal?: string | undefined;
100
113
  positive?: string | undefined;
101
114
  negative?: string | undefined;
102
- };
103
- light: {
104
115
  foreground?: string | undefined;
105
116
  background?: string | undefined;
117
+ };
118
+ light: {
119
+ fatal?: string | undefined;
120
+ success?: string | undefined;
121
+ info?: string | undefined;
106
122
  brand?: string | undefined;
107
123
  alternate?: string | undefined;
108
124
  accent?: string | undefined;
109
125
  link?: string | undefined;
110
126
  help?: string | undefined;
111
- success?: string | undefined;
112
- info?: string | undefined;
113
127
  warning?: string | undefined;
114
128
  danger?: string | undefined;
115
- fatal?: string | undefined;
116
129
  positive?: string | undefined;
117
130
  negative?: string | undefined;
131
+ foreground?: string | undefined;
132
+ background?: string | undefined;
118
133
  };
119
- } | {
120
- brand?: string | undefined;
121
- alternate?: string | undefined;
122
- accent?: string | undefined;
123
- link?: string | undefined;
124
- help?: string | undefined;
125
- success?: string | undefined;
126
- info?: string | undefined;
127
- warning?: string | undefined;
128
- danger?: string | undefined;
129
- fatal?: string | undefined;
130
- positive?: string | undefined;
131
- negative?: string | undefined;
132
- dark?: string | undefined;
133
- light?: string | undefined;
134
134
  };
135
135
  } | Record<string, {
136
+ fatal?: string | undefined;
137
+ success?: string | undefined;
138
+ info?: string | undefined;
139
+ dark?: string | undefined;
140
+ light?: string | undefined;
141
+ brand?: string | undefined;
142
+ alternate?: string | undefined;
143
+ accent?: string | undefined;
144
+ link?: string | undefined;
145
+ help?: string | undefined;
146
+ warning?: string | undefined;
147
+ danger?: string | undefined;
148
+ positive?: string | undefined;
149
+ negative?: string | undefined;
150
+ } | {
136
151
  dark: {
137
- foreground?: string | undefined;
138
- background?: string | undefined;
152
+ fatal?: string | undefined;
153
+ success?: string | undefined;
154
+ info?: string | undefined;
139
155
  brand?: string | undefined;
140
156
  alternate?: string | undefined;
141
157
  accent?: string | undefined;
142
158
  link?: string | undefined;
143
159
  help?: string | undefined;
144
- success?: string | undefined;
145
- info?: string | undefined;
146
160
  warning?: string | undefined;
147
161
  danger?: string | undefined;
148
- fatal?: string | undefined;
149
162
  positive?: string | undefined;
150
163
  negative?: string | undefined;
151
- };
152
- light: {
153
164
  foreground?: string | undefined;
154
165
  background?: string | undefined;
166
+ };
167
+ light: {
168
+ fatal?: string | undefined;
169
+ success?: string | undefined;
170
+ info?: string | undefined;
155
171
  brand?: string | undefined;
156
172
  alternate?: string | undefined;
157
173
  accent?: string | undefined;
158
174
  link?: string | undefined;
159
175
  help?: string | undefined;
160
- success?: string | undefined;
161
- info?: string | undefined;
162
176
  warning?: string | undefined;
163
177
  danger?: string | undefined;
164
- fatal?: string | undefined;
165
178
  positive?: string | undefined;
166
179
  negative?: string | undefined;
180
+ foreground?: string | undefined;
181
+ background?: string | undefined;
167
182
  };
168
- } | {
169
- brand?: string | undefined;
170
- alternate?: string | undefined;
171
- accent?: string | undefined;
172
- link?: string | undefined;
173
- help?: string | undefined;
174
- success?: string | undefined;
175
- info?: string | undefined;
176
- warning?: string | undefined;
177
- danger?: string | undefined;
178
- fatal?: string | undefined;
179
- positive?: string | undefined;
180
- negative?: string | undefined;
181
- dark?: string | undefined;
182
- light?: string | undefined;
183
183
  }>;
184
- name?: string | undefined;
185
184
  $schema?: string | null | undefined;
186
185
  extends?: string | string[] | undefined;
186
+ name?: string | undefined;
187
187
  namespace?: string | undefined;
188
188
  organization?: string | undefined;
189
189
  repository?: string | undefined;
@@ -202,7 +202,7 @@ declare const defineConfig: (input: StormConfigInput) => {
202
202
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
203
203
  timezone?: string | undefined;
204
204
  locale?: string | undefined;
205
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
205
+ logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
206
206
  skipConfigLogging?: boolean | undefined;
207
207
  registry?: {
208
208
  github?: string | undefined;
@@ -1,4 +1,4 @@
1
- import { StormConfigInput } from './types.js';
1
+ import { StormWorkspaceConfigInput } from './types.js';
2
2
  import 'zod';
3
3
  import './schema.js';
4
4
 
@@ -8,7 +8,7 @@ import './schema.js';
8
8
  * @param input - The config values for the current Storm workspace
9
9
  * @returns The config values for the current Storm workspace
10
10
  */
11
- declare const defineConfig: (input: StormConfigInput) => {
11
+ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
12
12
  bot: {
13
13
  name?: string | undefined;
14
14
  email?: string | undefined;
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormConfigInput) => {
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
  directories: {
30
30
  cache?: string | undefined;
@@ -35,155 +35,155 @@ declare const defineConfig: (input: StormConfigInput) => {
35
35
  build?: string | undefined;
36
36
  };
37
37
  colors: {
38
+ fatal?: string | undefined;
39
+ success?: string | undefined;
40
+ info?: string | undefined;
41
+ dark?: string | undefined;
42
+ light?: string | undefined;
43
+ brand?: string | undefined;
44
+ alternate?: string | undefined;
45
+ accent?: string | undefined;
46
+ link?: string | undefined;
47
+ help?: string | undefined;
48
+ warning?: string | undefined;
49
+ danger?: string | undefined;
50
+ positive?: string | undefined;
51
+ negative?: string | undefined;
52
+ } | {
38
53
  dark: {
39
- foreground?: string | undefined;
40
- background?: string | undefined;
54
+ fatal?: string | undefined;
55
+ success?: string | undefined;
56
+ info?: string | undefined;
41
57
  brand?: string | undefined;
42
58
  alternate?: string | undefined;
43
59
  accent?: string | undefined;
44
60
  link?: string | undefined;
45
61
  help?: string | undefined;
46
- success?: string | undefined;
47
- info?: string | undefined;
48
62
  warning?: string | undefined;
49
63
  danger?: string | undefined;
50
- fatal?: string | undefined;
51
64
  positive?: string | undefined;
52
65
  negative?: string | undefined;
53
- };
54
- light: {
55
66
  foreground?: string | undefined;
56
67
  background?: string | undefined;
68
+ };
69
+ light: {
70
+ fatal?: string | undefined;
71
+ success?: string | undefined;
72
+ info?: string | undefined;
57
73
  brand?: string | undefined;
58
74
  alternate?: string | undefined;
59
75
  accent?: string | undefined;
60
76
  link?: string | undefined;
61
77
  help?: string | undefined;
62
- success?: string | undefined;
63
- info?: string | undefined;
64
78
  warning?: string | undefined;
65
79
  danger?: string | undefined;
66
- fatal?: string | undefined;
67
80
  positive?: string | undefined;
68
81
  negative?: string | undefined;
82
+ foreground?: string | undefined;
83
+ background?: string | undefined;
69
84
  };
70
- } | {
71
- brand?: string | undefined;
72
- alternate?: string | undefined;
73
- accent?: string | undefined;
74
- link?: string | undefined;
75
- help?: string | undefined;
76
- success?: string | undefined;
77
- info?: string | undefined;
78
- warning?: string | undefined;
79
- danger?: string | undefined;
80
- fatal?: string | undefined;
81
- positive?: string | undefined;
82
- negative?: string | undefined;
83
- dark?: string | undefined;
84
- light?: string | undefined;
85
85
  } | {
86
86
  base: {
87
+ fatal?: string | undefined;
88
+ success?: string | undefined;
89
+ info?: string | undefined;
90
+ dark?: string | undefined;
91
+ light?: string | undefined;
92
+ brand?: string | undefined;
93
+ alternate?: string | undefined;
94
+ accent?: string | undefined;
95
+ link?: string | undefined;
96
+ help?: string | undefined;
97
+ warning?: string | undefined;
98
+ danger?: string | undefined;
99
+ positive?: string | undefined;
100
+ negative?: string | undefined;
101
+ } | {
87
102
  dark: {
88
- foreground?: string | undefined;
89
- background?: string | undefined;
103
+ fatal?: string | undefined;
104
+ success?: string | undefined;
105
+ info?: string | undefined;
90
106
  brand?: string | undefined;
91
107
  alternate?: string | undefined;
92
108
  accent?: string | undefined;
93
109
  link?: string | undefined;
94
110
  help?: string | undefined;
95
- success?: string | undefined;
96
- info?: string | undefined;
97
111
  warning?: string | undefined;
98
112
  danger?: string | undefined;
99
- fatal?: string | undefined;
100
113
  positive?: string | undefined;
101
114
  negative?: string | undefined;
102
- };
103
- light: {
104
115
  foreground?: string | undefined;
105
116
  background?: string | undefined;
117
+ };
118
+ light: {
119
+ fatal?: string | undefined;
120
+ success?: string | undefined;
121
+ info?: string | undefined;
106
122
  brand?: string | undefined;
107
123
  alternate?: string | undefined;
108
124
  accent?: string | undefined;
109
125
  link?: string | undefined;
110
126
  help?: string | undefined;
111
- success?: string | undefined;
112
- info?: string | undefined;
113
127
  warning?: string | undefined;
114
128
  danger?: string | undefined;
115
- fatal?: string | undefined;
116
129
  positive?: string | undefined;
117
130
  negative?: string | undefined;
131
+ foreground?: string | undefined;
132
+ background?: string | undefined;
118
133
  };
119
- } | {
120
- brand?: string | undefined;
121
- alternate?: string | undefined;
122
- accent?: string | undefined;
123
- link?: string | undefined;
124
- help?: string | undefined;
125
- success?: string | undefined;
126
- info?: string | undefined;
127
- warning?: string | undefined;
128
- danger?: string | undefined;
129
- fatal?: string | undefined;
130
- positive?: string | undefined;
131
- negative?: string | undefined;
132
- dark?: string | undefined;
133
- light?: string | undefined;
134
134
  };
135
135
  } | Record<string, {
136
+ fatal?: string | undefined;
137
+ success?: string | undefined;
138
+ info?: string | undefined;
139
+ dark?: string | undefined;
140
+ light?: string | undefined;
141
+ brand?: string | undefined;
142
+ alternate?: string | undefined;
143
+ accent?: string | undefined;
144
+ link?: string | undefined;
145
+ help?: string | undefined;
146
+ warning?: string | undefined;
147
+ danger?: string | undefined;
148
+ positive?: string | undefined;
149
+ negative?: string | undefined;
150
+ } | {
136
151
  dark: {
137
- foreground?: string | undefined;
138
- background?: string | undefined;
152
+ fatal?: string | undefined;
153
+ success?: string | undefined;
154
+ info?: string | undefined;
139
155
  brand?: string | undefined;
140
156
  alternate?: string | undefined;
141
157
  accent?: string | undefined;
142
158
  link?: string | undefined;
143
159
  help?: string | undefined;
144
- success?: string | undefined;
145
- info?: string | undefined;
146
160
  warning?: string | undefined;
147
161
  danger?: string | undefined;
148
- fatal?: string | undefined;
149
162
  positive?: string | undefined;
150
163
  negative?: string | undefined;
151
- };
152
- light: {
153
164
  foreground?: string | undefined;
154
165
  background?: string | undefined;
166
+ };
167
+ light: {
168
+ fatal?: string | undefined;
169
+ success?: string | undefined;
170
+ info?: string | undefined;
155
171
  brand?: string | undefined;
156
172
  alternate?: string | undefined;
157
173
  accent?: string | undefined;
158
174
  link?: string | undefined;
159
175
  help?: string | undefined;
160
- success?: string | undefined;
161
- info?: string | undefined;
162
176
  warning?: string | undefined;
163
177
  danger?: string | undefined;
164
- fatal?: string | undefined;
165
178
  positive?: string | undefined;
166
179
  negative?: string | undefined;
180
+ foreground?: string | undefined;
181
+ background?: string | undefined;
167
182
  };
168
- } | {
169
- brand?: string | undefined;
170
- alternate?: string | undefined;
171
- accent?: string | undefined;
172
- link?: string | undefined;
173
- help?: string | undefined;
174
- success?: string | undefined;
175
- info?: string | undefined;
176
- warning?: string | undefined;
177
- danger?: string | undefined;
178
- fatal?: string | undefined;
179
- positive?: string | undefined;
180
- negative?: string | undefined;
181
- dark?: string | undefined;
182
- light?: string | undefined;
183
183
  }>;
184
- name?: string | undefined;
185
184
  $schema?: string | null | undefined;
186
185
  extends?: string | string[] | undefined;
186
+ name?: string | undefined;
187
187
  namespace?: string | undefined;
188
188
  organization?: string | undefined;
189
189
  repository?: string | undefined;
@@ -202,7 +202,7 @@ declare const defineConfig: (input: StormConfigInput) => {
202
202
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
203
203
  timezone?: string | undefined;
204
204
  locale?: string | undefined;
205
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
205
+ logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
206
206
  skipConfigLogging?: boolean | undefined;
207
207
  registry?: {
208
208
  github?: string | undefined;
package/dist/index.cjs CHANGED
@@ -16,7 +16,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
16
16
 
17
17
 
18
18
 
19
- var _chunk4SJ57WRVcjs = require('./chunk-4SJ57WRV.cjs');
19
+ var _chunkJOTT4XGWcjs = require('./chunk-JOTT4XGW.cjs');
20
20
 
21
21
 
22
22
 
@@ -66,4 +66,4 @@ require('./chunk-USNT2KNT.cjs');
66
66
 
67
67
 
68
68
 
69
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunk4SJ57WRVcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunk4SJ57WRVcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunk4SJ57WRVcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunk4SJ57WRVcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunk4SJ57WRVcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunk4SJ57WRVcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunk4SJ57WRVcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunk4SJ57WRVcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkOLYJTH7Rcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkOLYJTH7Rcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunk4SJ57WRVcjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunk4SJ57WRVcjs.StormConfigSchema; exports.WorkspaceAccountConfigSchema = _chunk4SJ57WRVcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunk4SJ57WRVcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunk4SJ57WRVcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunk4SJ57WRVcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig;
69
+ exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkJOTT4XGWcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkJOTT4XGWcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkJOTT4XGWcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkJOTT4XGWcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkJOTT4XGWcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkJOTT4XGWcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkJOTT4XGWcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkJOTT4XGWcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkOLYJTH7Rcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkOLYJTH7Rcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkJOTT4XGWcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkJOTT4XGWcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkJOTT4XGWcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkJOTT4XGWcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkJOTT4XGWcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.stormWorkspaceConfigSchema = _chunkJOTT4XGWcjs.stormWorkspaceConfigSchema;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.cjs';
2
2
  export { defineConfig } from './define-config.cjs';
3
- export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema } from './schema.cjs';
4
- export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormConfigInput } from './types.cjs';
3
+ export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
4
+ export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
5
5
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.js';
2
2
  export { defineConfig } from './define-config.js';
3
- export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema } from './schema.js';
4
- export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormConfigInput } from './types.js';
3
+ export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, stormWorkspaceConfigSchema } from './schema.js';
4
+ export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
5
5
  import 'zod';
package/dist/index.js CHANGED
@@ -11,12 +11,12 @@ import {
11
11
  RegistryConfigSchema,
12
12
  RegistryUrlConfigSchema,
13
13
  SingleThemeColorConfigSchema,
14
- StormConfigSchema,
15
14
  WorkspaceAccountConfigSchema,
16
15
  WorkspaceBotConfigSchema,
17
16
  WorkspaceDirectoryConfigSchema,
18
- WorkspaceReleaseConfigSchema
19
- } from "./chunk-FWJ7T4PW.js";
17
+ WorkspaceReleaseConfigSchema,
18
+ stormWorkspaceConfigSchema
19
+ } from "./chunk-C2SK4O44.js";
20
20
  import {
21
21
  STORM_DEFAULT_ACCOUNT_DISCORD,
22
22
  STORM_DEFAULT_ACCOUNT_GITHUB,
@@ -60,10 +60,10 @@ export {
60
60
  STORM_DEFAULT_RELEASE_BANNER,
61
61
  STORM_DEFAULT_RELEASE_FOOTER,
62
62
  SingleThemeColorConfigSchema,
63
- StormConfigSchema,
64
63
  WorkspaceAccountConfigSchema,
65
64
  WorkspaceBotConfigSchema,
66
65
  WorkspaceDirectoryConfigSchema,
67
66
  WorkspaceReleaseConfigSchema,
68
- defineConfig
67
+ defineConfig,
68
+ stormWorkspaceConfigSchema
69
69
  };