@storm-software/config 1.127.1 → 1.128.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 +9 -0
- package/README.md +1 -1
- package/dist/{chunk-63N4QQ4F.cjs → chunk-BWMRPFU3.cjs} +3 -1
- package/dist/chunk-FK3UY2VO.cjs +631 -0
- package/dist/chunk-FYKX55F5.js +631 -0
- package/dist/{chunk-KSQRDQGT.js → chunk-OI57XQ6W.js} +3 -1
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +2 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.js +3 -1
- package/dist/define-config.d.cts +18 -14
- package/dist/define-config.d.ts +18 -14
- package/dist/index.cjs +123 -3
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +154 -34
- package/dist/schema.cjs +121 -3
- package/dist/schema.d.cts +476 -380
- package/dist/schema.d.ts +476 -380
- package/dist/schema.js +152 -34
- package/dist/types.d.cts +19 -18
- package/dist/types.d.ts +19 -18
- package/package.json +2 -2
- package/presets/storm-software.json +4 -1
- package/schemas/storm-workspace.schema.json +168 -149
- package/src/constants.d.ts +1 -0
- package/src/define-config.d.ts +18 -15
- package/src/schema.d.ts +476 -380
- package/src/types.d.ts +17 -17
- package/dist/chunk-OOZVCZMK.js +0 -282
- package/dist/chunk-Q4GCJANL.cjs +0 -282
package/dist/constants.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
STORM_DEFAULT_BANNER_ALT,
|
|
2
3
|
STORM_DEFAULT_CONTACT,
|
|
3
4
|
STORM_DEFAULT_DOCS,
|
|
4
5
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
@@ -14,8 +15,9 @@ import {
|
|
|
14
15
|
STORM_DEFAULT_SOCIAL_TELEGRAM,
|
|
15
16
|
STORM_DEFAULT_SOCIAL_TWITTER,
|
|
16
17
|
STORM_DEFAULT_SUPPORT
|
|
17
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-OI57XQ6W.js";
|
|
18
19
|
export {
|
|
20
|
+
STORM_DEFAULT_BANNER_ALT,
|
|
19
21
|
STORM_DEFAULT_CONTACT,
|
|
20
22
|
STORM_DEFAULT_DOCS,
|
|
21
23
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
package/dist/define-config.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StormWorkspaceConfigInput } from './types.cjs';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import './schema.cjs';
|
|
4
|
+
import 'zod/mini';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* Type the config values for the current Storm workspace
|
|
@@ -9,12 +10,25 @@ import './schema.cjs';
|
|
|
9
10
|
* @returns The config values for the current Storm workspace
|
|
10
11
|
*/
|
|
11
12
|
declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
12
|
-
|
|
13
|
+
name: string;
|
|
14
|
+
namespace: string;
|
|
15
|
+
organization: string | {
|
|
13
16
|
name?: string | undefined;
|
|
14
|
-
|
|
17
|
+
description?: string | undefined;
|
|
18
|
+
logo?: string | undefined;
|
|
19
|
+
icon?: string | undefined;
|
|
20
|
+
url?: string | undefined;
|
|
21
|
+
};
|
|
22
|
+
repository: string;
|
|
23
|
+
bot: {
|
|
24
|
+
name: string;
|
|
25
|
+
email: string;
|
|
15
26
|
};
|
|
16
27
|
release: {
|
|
17
|
-
banner
|
|
28
|
+
banner: string | {
|
|
29
|
+
url?: string | undefined;
|
|
30
|
+
alt?: string | undefined;
|
|
31
|
+
};
|
|
18
32
|
header?: string | undefined;
|
|
19
33
|
footer?: string | undefined;
|
|
20
34
|
};
|
|
@@ -144,16 +158,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
144
158
|
}>;
|
|
145
159
|
$schema?: string | undefined;
|
|
146
160
|
extends?: string | string[] | undefined;
|
|
147
|
-
name?: string | undefined;
|
|
148
|
-
namespace?: string | undefined;
|
|
149
|
-
organization?: string | {
|
|
150
|
-
name: string;
|
|
151
|
-
description?: string | undefined;
|
|
152
|
-
logo?: string | undefined;
|
|
153
|
-
icon?: string | undefined;
|
|
154
|
-
url?: string | undefined;
|
|
155
|
-
} | undefined;
|
|
156
|
-
repository?: string | undefined;
|
|
157
161
|
license?: string | undefined;
|
|
158
162
|
homepage?: string | undefined;
|
|
159
163
|
docs?: string | undefined;
|
|
@@ -164,7 +168,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
164
168
|
branch?: string | undefined;
|
|
165
169
|
preid?: string | undefined;
|
|
166
170
|
owner?: string | undefined;
|
|
167
|
-
mode?:
|
|
171
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
168
172
|
skipCache?: boolean | undefined;
|
|
169
173
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
170
174
|
timezone?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StormWorkspaceConfigInput } from './types.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import './schema.js';
|
|
4
|
+
import 'zod/mini';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* Type the config values for the current Storm workspace
|
|
@@ -9,12 +10,25 @@ import './schema.js';
|
|
|
9
10
|
* @returns The config values for the current Storm workspace
|
|
10
11
|
*/
|
|
11
12
|
declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
12
|
-
|
|
13
|
+
name: string;
|
|
14
|
+
namespace: string;
|
|
15
|
+
organization: string | {
|
|
13
16
|
name?: string | undefined;
|
|
14
|
-
|
|
17
|
+
description?: string | undefined;
|
|
18
|
+
logo?: string | undefined;
|
|
19
|
+
icon?: string | undefined;
|
|
20
|
+
url?: string | undefined;
|
|
21
|
+
};
|
|
22
|
+
repository: string;
|
|
23
|
+
bot: {
|
|
24
|
+
name: string;
|
|
25
|
+
email: string;
|
|
15
26
|
};
|
|
16
27
|
release: {
|
|
17
|
-
banner
|
|
28
|
+
banner: string | {
|
|
29
|
+
url?: string | undefined;
|
|
30
|
+
alt?: string | undefined;
|
|
31
|
+
};
|
|
18
32
|
header?: string | undefined;
|
|
19
33
|
footer?: string | undefined;
|
|
20
34
|
};
|
|
@@ -144,16 +158,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
144
158
|
}>;
|
|
145
159
|
$schema?: string | undefined;
|
|
146
160
|
extends?: string | string[] | undefined;
|
|
147
|
-
name?: string | undefined;
|
|
148
|
-
namespace?: string | undefined;
|
|
149
|
-
organization?: string | {
|
|
150
|
-
name: string;
|
|
151
|
-
description?: string | undefined;
|
|
152
|
-
logo?: string | undefined;
|
|
153
|
-
icon?: string | undefined;
|
|
154
|
-
url?: string | undefined;
|
|
155
|
-
} | undefined;
|
|
156
|
-
repository?: string | undefined;
|
|
157
161
|
license?: string | undefined;
|
|
158
162
|
homepage?: string | undefined;
|
|
159
163
|
docs?: string | undefined;
|
|
@@ -164,7 +168,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
164
168
|
branch?: string | undefined;
|
|
165
169
|
preid?: string | undefined;
|
|
166
170
|
owner?: string | undefined;
|
|
167
|
-
mode?:
|
|
171
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
168
172
|
skipCache?: boolean | undefined;
|
|
169
173
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
170
174
|
timezone?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -18,7 +18,6 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var _chunkQ4GCJANLcjs = require('./chunk-Q4GCJANL.cjs');
|
|
22
21
|
|
|
23
22
|
|
|
24
23
|
|
|
@@ -35,7 +34,68 @@ var _chunkQ4GCJANLcjs = require('./chunk-Q4GCJANL.cjs');
|
|
|
35
34
|
|
|
36
35
|
|
|
37
36
|
|
|
38
|
-
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
var _chunkFK3UY2VOcjs = require('./chunk-FK3UY2VO.cjs');
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
var _chunkBWMRPFU3cjs = require('./chunk-BWMRPFU3.cjs');
|
|
39
99
|
|
|
40
100
|
|
|
41
101
|
var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
@@ -73,4 +133,64 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
|
73
133
|
|
|
74
134
|
|
|
75
135
|
|
|
76
|
-
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.STORM_DEFAULT_BANNER_ALT = _chunkBWMRPFU3cjs.STORM_DEFAULT_BANNER_ALT; exports.STORM_DEFAULT_CONTACT = _chunkBWMRPFU3cjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkBWMRPFU3cjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkBWMRPFU3cjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkBWMRPFU3cjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkBWMRPFU3cjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkBWMRPFU3cjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkBWMRPFU3cjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkBWMRPFU3cjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SOCIAL_DISCORD = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_DISCORD; exports.STORM_DEFAULT_SOCIAL_GITHUB = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_GITHUB; exports.STORM_DEFAULT_SOCIAL_MEDIUM = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_MEDIUM; exports.STORM_DEFAULT_SOCIAL_SLACK = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_SLACK; exports.STORM_DEFAULT_SOCIAL_TELEGRAM = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_TELEGRAM; exports.STORM_DEFAULT_SOCIAL_TWITTER = _chunkBWMRPFU3cjs.STORM_DEFAULT_SOCIAL_TWITTER; exports.STORM_DEFAULT_SUPPORT = _chunkBWMRPFU3cjs.STORM_DEFAULT_SUPPORT; exports.accentColorSchema = _chunkFK3UY2VOcjs.accentColorSchema; exports.alternateColorSchema = _chunkFK3UY2VOcjs.alternateColorSchema; exports.branchSchema = _chunkFK3UY2VOcjs.branchSchema; exports.brandColorSchema = _chunkFK3UY2VOcjs.brandColorSchema; exports.colorsSchema = _chunkFK3UY2VOcjs.colorsSchema; exports.configFileSchema = _chunkFK3UY2VOcjs.configFileSchema; exports.contactSchema = _chunkFK3UY2VOcjs.contactSchema; exports.dangerColorSchema = _chunkFK3UY2VOcjs.dangerColorSchema; exports.darkColorSchema = _chunkFK3UY2VOcjs.darkColorSchema; exports.darkColorsSchema = _chunkFK3UY2VOcjs.darkColorsSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.docsSchema = _chunkFK3UY2VOcjs.docsSchema; exports.errorCodesFileSchema = _chunkFK3UY2VOcjs.errorCodesFileSchema; exports.errorSchema = _chunkFK3UY2VOcjs.errorSchema; exports.errorUrlSchema = _chunkFK3UY2VOcjs.errorUrlSchema; exports.extendsSchema = _chunkFK3UY2VOcjs.extendsSchema; exports.extensionsSchema = _chunkFK3UY2VOcjs.extensionsSchema; exports.fatalColorSchema = _chunkFK3UY2VOcjs.fatalColorSchema; exports.gradientStopsSchema = _chunkFK3UY2VOcjs.gradientStopsSchema; exports.helpColorSchema = _chunkFK3UY2VOcjs.helpColorSchema; exports.homepageSchema = _chunkFK3UY2VOcjs.homepageSchema; exports.infoColorSchema = _chunkFK3UY2VOcjs.infoColorSchema; exports.licenseSchema = _chunkFK3UY2VOcjs.licenseSchema; exports.licensingSchema = _chunkFK3UY2VOcjs.licensingSchema; exports.lightColorSchema = _chunkFK3UY2VOcjs.lightColorSchema; exports.lightColorsSchema = _chunkFK3UY2VOcjs.lightColorsSchema; exports.linkColorSchema = _chunkFK3UY2VOcjs.linkColorSchema; exports.localeSchema = _chunkFK3UY2VOcjs.localeSchema; exports.logLevelSchema = _chunkFK3UY2VOcjs.logLevelSchema; exports.modeSchema = _chunkFK3UY2VOcjs.modeSchema; exports.multiColorsSchema = _chunkFK3UY2VOcjs.multiColorsSchema; exports.negativeColorSchema = _chunkFK3UY2VOcjs.negativeColorSchema; exports.organizationDescriptionSchema = _chunkFK3UY2VOcjs.organizationDescriptionSchema; exports.organizationIconSchema = _chunkFK3UY2VOcjs.organizationIconSchema; exports.organizationLogoSchema = _chunkFK3UY2VOcjs.organizationLogoSchema; exports.organizationNameSchema = _chunkFK3UY2VOcjs.organizationNameSchema; exports.organizationSchema = _chunkFK3UY2VOcjs.organizationSchema; exports.organizationUrlSchema = _chunkFK3UY2VOcjs.organizationUrlSchema; exports.ownerSchema = _chunkFK3UY2VOcjs.ownerSchema; exports.packageManagerSchema = _chunkFK3UY2VOcjs.packageManagerSchema; exports.portalSchema = _chunkFK3UY2VOcjs.portalSchema; exports.positiveColorSchema = _chunkFK3UY2VOcjs.positiveColorSchema; exports.preidSchema = _chunkFK3UY2VOcjs.preidSchema; exports.registrySchema = _chunkFK3UY2VOcjs.registrySchema; exports.schemaRegistry = _chunkFK3UY2VOcjs.schemaRegistry; exports.singleColorsSchema = _chunkFK3UY2VOcjs.singleColorsSchema; exports.skipCacheSchema = _chunkFK3UY2VOcjs.skipCacheSchema; exports.skipConfigLoggingSchema = _chunkFK3UY2VOcjs.skipConfigLoggingSchema; exports.successColorSchema = _chunkFK3UY2VOcjs.successColorSchema; exports.supportSchema = _chunkFK3UY2VOcjs.supportSchema; exports.themeColorsSchema = _chunkFK3UY2VOcjs.themeColorsSchema; exports.timezoneSchema = _chunkFK3UY2VOcjs.timezoneSchema; exports.warningColorSchema = _chunkFK3UY2VOcjs.warningColorSchema; exports.workspaceBotSchema = _chunkFK3UY2VOcjs.workspaceBotSchema; exports.workspaceConfigSchema = _chunkFK3UY2VOcjs.workspaceConfigSchema; exports.workspaceDirectoryBuildSchema = _chunkFK3UY2VOcjs.workspaceDirectoryBuildSchema; exports.workspaceDirectoryCacheSchema = _chunkFK3UY2VOcjs.workspaceDirectoryCacheSchema; exports.workspaceDirectoryConfigSchema = _chunkFK3UY2VOcjs.workspaceDirectoryConfigSchema; exports.workspaceDirectoryDataSchema = _chunkFK3UY2VOcjs.workspaceDirectoryDataSchema; exports.workspaceDirectoryLogSchema = _chunkFK3UY2VOcjs.workspaceDirectoryLogSchema; exports.workspaceDirectorySchema = _chunkFK3UY2VOcjs.workspaceDirectorySchema; exports.workspaceDirectoryTempSchema = _chunkFK3UY2VOcjs.workspaceDirectoryTempSchema; exports.workspaceReleaseBannerAltSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerAltSchema; exports.workspaceReleaseBannerSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerSchema; exports.workspaceReleaseBannerUrlSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerUrlSchema; exports.workspaceReleaseFooterSchema = _chunkFK3UY2VOcjs.workspaceReleaseFooterSchema; exports.workspaceReleaseHeaderSchema = _chunkFK3UY2VOcjs.workspaceReleaseHeaderSchema; exports.workspaceReleaseSchema = _chunkFK3UY2VOcjs.workspaceReleaseSchema; exports.workspaceRootSchema = _chunkFK3UY2VOcjs.workspaceRootSchema; exports.workspaceSocialsDiscordSchema = _chunkFK3UY2VOcjs.workspaceSocialsDiscordSchema; exports.workspaceSocialsGithubSchema = _chunkFK3UY2VOcjs.workspaceSocialsGithubSchema; exports.workspaceSocialsMediumSchema = _chunkFK3UY2VOcjs.workspaceSocialsMediumSchema; exports.workspaceSocialsSchema = _chunkFK3UY2VOcjs.workspaceSocialsSchema; exports.workspaceSocialsSlackSchema = _chunkFK3UY2VOcjs.workspaceSocialsSlackSchema; exports.workspaceSocialsTelegramSchema = _chunkFK3UY2VOcjs.workspaceSocialsTelegramSchema; exports.workspaceSocialsTwitterSchema = _chunkFK3UY2VOcjs.workspaceSocialsTwitterSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export { STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SOCIAL_DISCORD, STORM_DEFAULT_SOCIAL_GITHUB, STORM_DEFAULT_SOCIAL_MEDIUM, STORM_DEFAULT_SOCIAL_SLACK, STORM_DEFAULT_SOCIAL_TELEGRAM, STORM_DEFAULT_SOCIAL_TWITTER, STORM_DEFAULT_SUPPORT } from './constants.cjs';
|
|
1
|
+
export { STORM_DEFAULT_BANNER_ALT, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SOCIAL_DISCORD, STORM_DEFAULT_SOCIAL_GITHUB, STORM_DEFAULT_SOCIAL_MEDIUM, STORM_DEFAULT_SOCIAL_SLACK, STORM_DEFAULT_SOCIAL_TELEGRAM, STORM_DEFAULT_SOCIAL_TWITTER, STORM_DEFAULT_SUPPORT } from './constants.cjs';
|
|
2
2
|
export { defineConfig } from './define-config.cjs';
|
|
3
|
-
export {
|
|
4
|
-
export { COLOR_KEYS,
|
|
3
|
+
export { accentColorSchema, alternateColorSchema, branchSchema, brandColorSchema, colorsSchema, configFileSchema, contactSchema, dangerColorSchema, darkColorSchema, darkColorsSchema, docsSchema, errorCodesFileSchema, errorSchema, errorUrlSchema, extendsSchema, extensionsSchema, fatalColorSchema, gradientStopsSchema, helpColorSchema, homepageSchema, infoColorSchema, licenseSchema, licensingSchema, lightColorSchema, lightColorsSchema, linkColorSchema, localeSchema, logLevelSchema, modeSchema, multiColorsSchema, negativeColorSchema, organizationDescriptionSchema, organizationIconSchema, organizationLogoSchema, organizationNameSchema, organizationSchema, organizationUrlSchema, ownerSchema, packageManagerSchema, portalSchema, positiveColorSchema, preidSchema, registrySchema, schemaRegistry, singleColorsSchema, skipCacheSchema, skipConfigLoggingSchema, successColorSchema, supportSchema, themeColorsSchema, timezoneSchema, warningColorSchema, workspaceBotSchema, workspaceConfigSchema, workspaceDirectoryBuildSchema, workspaceDirectoryCacheSchema, workspaceDirectoryConfigSchema, workspaceDirectoryDataSchema, workspaceDirectoryLogSchema, workspaceDirectorySchema, workspaceDirectoryTempSchema, workspaceReleaseBannerAltSchema, workspaceReleaseBannerSchema, workspaceReleaseBannerUrlSchema, workspaceReleaseFooterSchema, workspaceReleaseHeaderSchema, workspaceReleaseSchema, workspaceRootSchema, workspaceSocialsDiscordSchema, workspaceSocialsGithubSchema, workspaceSocialsMediumSchema, workspaceSocialsSchema, workspaceSocialsSlackSchema, workspaceSocialsTelegramSchema, workspaceSocialsTwitterSchema } from './schema.cjs';
|
|
4
|
+
export { COLOR_KEYS, Colors, ColorsInput, ColorsMap, ColorsMapInput, DarkThemeColors, DarkThemeColorsInput, LightThemeColors, LightThemeColorsInput, MultiThemeColors, MultiThemeColorsInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColors, SingleThemeColorsInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
|
|
5
|
+
import 'zod/mini';
|
|
5
6
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export { STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SOCIAL_DISCORD, STORM_DEFAULT_SOCIAL_GITHUB, STORM_DEFAULT_SOCIAL_MEDIUM, STORM_DEFAULT_SOCIAL_SLACK, STORM_DEFAULT_SOCIAL_TELEGRAM, STORM_DEFAULT_SOCIAL_TWITTER, STORM_DEFAULT_SUPPORT } from './constants.js';
|
|
1
|
+
export { STORM_DEFAULT_BANNER_ALT, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SOCIAL_DISCORD, STORM_DEFAULT_SOCIAL_GITHUB, STORM_DEFAULT_SOCIAL_MEDIUM, STORM_DEFAULT_SOCIAL_SLACK, STORM_DEFAULT_SOCIAL_TELEGRAM, STORM_DEFAULT_SOCIAL_TWITTER, STORM_DEFAULT_SUPPORT } from './constants.js';
|
|
2
2
|
export { defineConfig } from './define-config.js';
|
|
3
|
-
export {
|
|
4
|
-
export { COLOR_KEYS,
|
|
3
|
+
export { accentColorSchema, alternateColorSchema, branchSchema, brandColorSchema, colorsSchema, configFileSchema, contactSchema, dangerColorSchema, darkColorSchema, darkColorsSchema, docsSchema, errorCodesFileSchema, errorSchema, errorUrlSchema, extendsSchema, extensionsSchema, fatalColorSchema, gradientStopsSchema, helpColorSchema, homepageSchema, infoColorSchema, licenseSchema, licensingSchema, lightColorSchema, lightColorsSchema, linkColorSchema, localeSchema, logLevelSchema, modeSchema, multiColorsSchema, negativeColorSchema, organizationDescriptionSchema, organizationIconSchema, organizationLogoSchema, organizationNameSchema, organizationSchema, organizationUrlSchema, ownerSchema, packageManagerSchema, portalSchema, positiveColorSchema, preidSchema, registrySchema, schemaRegistry, singleColorsSchema, skipCacheSchema, skipConfigLoggingSchema, successColorSchema, supportSchema, themeColorsSchema, timezoneSchema, warningColorSchema, workspaceBotSchema, workspaceConfigSchema, workspaceDirectoryBuildSchema, workspaceDirectoryCacheSchema, workspaceDirectoryConfigSchema, workspaceDirectoryDataSchema, workspaceDirectoryLogSchema, workspaceDirectorySchema, workspaceDirectoryTempSchema, workspaceReleaseBannerAltSchema, workspaceReleaseBannerSchema, workspaceReleaseBannerUrlSchema, workspaceReleaseFooterSchema, workspaceReleaseHeaderSchema, workspaceReleaseSchema, workspaceRootSchema, workspaceSocialsDiscordSchema, workspaceSocialsGithubSchema, workspaceSocialsMediumSchema, workspaceSocialsSchema, workspaceSocialsSlackSchema, workspaceSocialsTelegramSchema, workspaceSocialsTwitterSchema } from './schema.js';
|
|
4
|
+
export { COLOR_KEYS, Colors, ColorsInput, ColorsMap, ColorsMapInput, DarkThemeColors, DarkThemeColorsInput, LightThemeColors, LightThemeColorsInput, MultiThemeColors, MultiThemeColorsInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColors, SingleThemeColorsInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
|
|
5
|
+
import 'zod/mini';
|
|
5
6
|
import 'zod';
|
package/dist/index.js
CHANGED
|
@@ -2,24 +2,84 @@ import {
|
|
|
2
2
|
defineConfig
|
|
3
3
|
} from "./chunk-F6SS2FZA.js";
|
|
4
4
|
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
5
|
+
accentColorSchema,
|
|
6
|
+
alternateColorSchema,
|
|
7
|
+
branchSchema,
|
|
8
|
+
brandColorSchema,
|
|
9
|
+
colorsSchema,
|
|
10
|
+
configFileSchema,
|
|
11
|
+
contactSchema,
|
|
12
|
+
dangerColorSchema,
|
|
13
|
+
darkColorSchema,
|
|
14
|
+
darkColorsSchema,
|
|
15
|
+
docsSchema,
|
|
16
|
+
errorCodesFileSchema,
|
|
17
|
+
errorSchema,
|
|
18
|
+
errorUrlSchema,
|
|
19
|
+
extendsSchema,
|
|
20
|
+
extensionsSchema,
|
|
21
|
+
fatalColorSchema,
|
|
22
|
+
gradientStopsSchema,
|
|
23
|
+
helpColorSchema,
|
|
24
|
+
homepageSchema,
|
|
25
|
+
infoColorSchema,
|
|
26
|
+
licenseSchema,
|
|
27
|
+
licensingSchema,
|
|
28
|
+
lightColorSchema,
|
|
29
|
+
lightColorsSchema,
|
|
30
|
+
linkColorSchema,
|
|
31
|
+
localeSchema,
|
|
32
|
+
logLevelSchema,
|
|
33
|
+
modeSchema,
|
|
34
|
+
multiColorsSchema,
|
|
35
|
+
negativeColorSchema,
|
|
36
|
+
organizationDescriptionSchema,
|
|
37
|
+
organizationIconSchema,
|
|
38
|
+
organizationLogoSchema,
|
|
39
|
+
organizationNameSchema,
|
|
40
|
+
organizationSchema,
|
|
41
|
+
organizationUrlSchema,
|
|
42
|
+
ownerSchema,
|
|
43
|
+
packageManagerSchema,
|
|
44
|
+
portalSchema,
|
|
45
|
+
positiveColorSchema,
|
|
46
|
+
preidSchema,
|
|
47
|
+
registrySchema,
|
|
48
|
+
schemaRegistry,
|
|
49
|
+
singleColorsSchema,
|
|
50
|
+
skipCacheSchema,
|
|
51
|
+
skipConfigLoggingSchema,
|
|
52
|
+
successColorSchema,
|
|
53
|
+
supportSchema,
|
|
54
|
+
themeColorsSchema,
|
|
55
|
+
timezoneSchema,
|
|
56
|
+
warningColorSchema,
|
|
57
|
+
workspaceBotSchema,
|
|
58
|
+
workspaceConfigSchema,
|
|
59
|
+
workspaceDirectoryBuildSchema,
|
|
60
|
+
workspaceDirectoryCacheSchema,
|
|
61
|
+
workspaceDirectoryConfigSchema,
|
|
62
|
+
workspaceDirectoryDataSchema,
|
|
63
|
+
workspaceDirectoryLogSchema,
|
|
64
|
+
workspaceDirectorySchema,
|
|
65
|
+
workspaceDirectoryTempSchema,
|
|
66
|
+
workspaceReleaseBannerAltSchema,
|
|
67
|
+
workspaceReleaseBannerSchema,
|
|
68
|
+
workspaceReleaseBannerUrlSchema,
|
|
69
|
+
workspaceReleaseFooterSchema,
|
|
70
|
+
workspaceReleaseHeaderSchema,
|
|
71
|
+
workspaceReleaseSchema,
|
|
72
|
+
workspaceRootSchema,
|
|
73
|
+
workspaceSocialsDiscordSchema,
|
|
74
|
+
workspaceSocialsGithubSchema,
|
|
75
|
+
workspaceSocialsMediumSchema,
|
|
76
|
+
workspaceSocialsSchema,
|
|
77
|
+
workspaceSocialsSlackSchema,
|
|
78
|
+
workspaceSocialsTelegramSchema,
|
|
79
|
+
workspaceSocialsTwitterSchema
|
|
80
|
+
} from "./chunk-FYKX55F5.js";
|
|
22
81
|
import {
|
|
82
|
+
STORM_DEFAULT_BANNER_ALT,
|
|
23
83
|
STORM_DEFAULT_CONTACT,
|
|
24
84
|
STORM_DEFAULT_DOCS,
|
|
25
85
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
@@ -35,20 +95,13 @@ import {
|
|
|
35
95
|
STORM_DEFAULT_SOCIAL_TELEGRAM,
|
|
36
96
|
STORM_DEFAULT_SOCIAL_TWITTER,
|
|
37
97
|
STORM_DEFAULT_SUPPORT
|
|
38
|
-
} from "./chunk-
|
|
98
|
+
} from "./chunk-OI57XQ6W.js";
|
|
39
99
|
import {
|
|
40
100
|
COLOR_KEYS
|
|
41
101
|
} from "./chunk-HFZRRAQB.js";
|
|
42
102
|
export {
|
|
43
103
|
COLOR_KEYS,
|
|
44
|
-
|
|
45
|
-
ColorConfigSchema,
|
|
46
|
-
DarkThemeColorConfigSchema,
|
|
47
|
-
ExtendsSchema,
|
|
48
|
-
LightThemeColorConfigSchema,
|
|
49
|
-
MultiThemeColorConfigSchema,
|
|
50
|
-
RegistryConfigSchema,
|
|
51
|
-
RegistryUrlConfigSchema,
|
|
104
|
+
STORM_DEFAULT_BANNER_ALT,
|
|
52
105
|
STORM_DEFAULT_CONTACT,
|
|
53
106
|
STORM_DEFAULT_DOCS,
|
|
54
107
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
@@ -64,13 +117,80 @@ export {
|
|
|
64
117
|
STORM_DEFAULT_SOCIAL_TELEGRAM,
|
|
65
118
|
STORM_DEFAULT_SOCIAL_TWITTER,
|
|
66
119
|
STORM_DEFAULT_SUPPORT,
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
120
|
+
accentColorSchema,
|
|
121
|
+
alternateColorSchema,
|
|
122
|
+
branchSchema,
|
|
123
|
+
brandColorSchema,
|
|
124
|
+
colorsSchema,
|
|
125
|
+
configFileSchema,
|
|
126
|
+
contactSchema,
|
|
127
|
+
dangerColorSchema,
|
|
128
|
+
darkColorSchema,
|
|
129
|
+
darkColorsSchema,
|
|
72
130
|
defineConfig,
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
131
|
+
docsSchema,
|
|
132
|
+
errorCodesFileSchema,
|
|
133
|
+
errorSchema,
|
|
134
|
+
errorUrlSchema,
|
|
135
|
+
extendsSchema,
|
|
136
|
+
extensionsSchema,
|
|
137
|
+
fatalColorSchema,
|
|
138
|
+
gradientStopsSchema,
|
|
139
|
+
helpColorSchema,
|
|
140
|
+
homepageSchema,
|
|
141
|
+
infoColorSchema,
|
|
142
|
+
licenseSchema,
|
|
143
|
+
licensingSchema,
|
|
144
|
+
lightColorSchema,
|
|
145
|
+
lightColorsSchema,
|
|
146
|
+
linkColorSchema,
|
|
147
|
+
localeSchema,
|
|
148
|
+
logLevelSchema,
|
|
149
|
+
modeSchema,
|
|
150
|
+
multiColorsSchema,
|
|
151
|
+
negativeColorSchema,
|
|
152
|
+
organizationDescriptionSchema,
|
|
153
|
+
organizationIconSchema,
|
|
154
|
+
organizationLogoSchema,
|
|
155
|
+
organizationNameSchema,
|
|
156
|
+
organizationSchema,
|
|
157
|
+
organizationUrlSchema,
|
|
158
|
+
ownerSchema,
|
|
159
|
+
packageManagerSchema,
|
|
160
|
+
portalSchema,
|
|
161
|
+
positiveColorSchema,
|
|
162
|
+
preidSchema,
|
|
163
|
+
registrySchema,
|
|
164
|
+
schemaRegistry,
|
|
165
|
+
singleColorsSchema,
|
|
166
|
+
skipCacheSchema,
|
|
167
|
+
skipConfigLoggingSchema,
|
|
168
|
+
successColorSchema,
|
|
169
|
+
supportSchema,
|
|
170
|
+
themeColorsSchema,
|
|
171
|
+
timezoneSchema,
|
|
172
|
+
warningColorSchema,
|
|
173
|
+
workspaceBotSchema,
|
|
174
|
+
workspaceConfigSchema,
|
|
175
|
+
workspaceDirectoryBuildSchema,
|
|
176
|
+
workspaceDirectoryCacheSchema,
|
|
177
|
+
workspaceDirectoryConfigSchema,
|
|
178
|
+
workspaceDirectoryDataSchema,
|
|
179
|
+
workspaceDirectoryLogSchema,
|
|
180
|
+
workspaceDirectorySchema,
|
|
181
|
+
workspaceDirectoryTempSchema,
|
|
182
|
+
workspaceReleaseBannerAltSchema,
|
|
183
|
+
workspaceReleaseBannerSchema,
|
|
184
|
+
workspaceReleaseBannerUrlSchema,
|
|
185
|
+
workspaceReleaseFooterSchema,
|
|
186
|
+
workspaceReleaseHeaderSchema,
|
|
187
|
+
workspaceReleaseSchema,
|
|
188
|
+
workspaceRootSchema,
|
|
189
|
+
workspaceSocialsDiscordSchema,
|
|
190
|
+
workspaceSocialsGithubSchema,
|
|
191
|
+
workspaceSocialsMediumSchema,
|
|
192
|
+
workspaceSocialsSchema,
|
|
193
|
+
workspaceSocialsSlackSchema,
|
|
194
|
+
workspaceSocialsTelegramSchema,
|
|
195
|
+
workspaceSocialsTwitterSchema
|
|
76
196
|
};
|
package/dist/schema.cjs
CHANGED
|
@@ -15,8 +15,6 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var _chunkQ4GCJANLcjs = require('./chunk-Q4GCJANL.cjs');
|
|
19
|
-
require('./chunk-63N4QQ4F.cjs');
|
|
20
18
|
|
|
21
19
|
|
|
22
20
|
|
|
@@ -34,4 +32,124 @@ require('./chunk-63N4QQ4F.cjs');
|
|
|
34
32
|
|
|
35
33
|
|
|
36
34
|
|
|
37
|
-
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
var _chunkFK3UY2VOcjs = require('./chunk-FK3UY2VO.cjs');
|
|
78
|
+
require('./chunk-BWMRPFU3.cjs');
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
exports.accentColorSchema = _chunkFK3UY2VOcjs.accentColorSchema; exports.alternateColorSchema = _chunkFK3UY2VOcjs.alternateColorSchema; exports.branchSchema = _chunkFK3UY2VOcjs.branchSchema; exports.brandColorSchema = _chunkFK3UY2VOcjs.brandColorSchema; exports.colorsSchema = _chunkFK3UY2VOcjs.colorsSchema; exports.configFileSchema = _chunkFK3UY2VOcjs.configFileSchema; exports.contactSchema = _chunkFK3UY2VOcjs.contactSchema; exports.dangerColorSchema = _chunkFK3UY2VOcjs.dangerColorSchema; exports.darkColorSchema = _chunkFK3UY2VOcjs.darkColorSchema; exports.darkColorsSchema = _chunkFK3UY2VOcjs.darkColorsSchema; exports.docsSchema = _chunkFK3UY2VOcjs.docsSchema; exports.errorCodesFileSchema = _chunkFK3UY2VOcjs.errorCodesFileSchema; exports.errorSchema = _chunkFK3UY2VOcjs.errorSchema; exports.errorUrlSchema = _chunkFK3UY2VOcjs.errorUrlSchema; exports.extendsSchema = _chunkFK3UY2VOcjs.extendsSchema; exports.extensionsSchema = _chunkFK3UY2VOcjs.extensionsSchema; exports.fatalColorSchema = _chunkFK3UY2VOcjs.fatalColorSchema; exports.gradientStopsSchema = _chunkFK3UY2VOcjs.gradientStopsSchema; exports.helpColorSchema = _chunkFK3UY2VOcjs.helpColorSchema; exports.homepageSchema = _chunkFK3UY2VOcjs.homepageSchema; exports.infoColorSchema = _chunkFK3UY2VOcjs.infoColorSchema; exports.licenseSchema = _chunkFK3UY2VOcjs.licenseSchema; exports.licensingSchema = _chunkFK3UY2VOcjs.licensingSchema; exports.lightColorSchema = _chunkFK3UY2VOcjs.lightColorSchema; exports.lightColorsSchema = _chunkFK3UY2VOcjs.lightColorsSchema; exports.linkColorSchema = _chunkFK3UY2VOcjs.linkColorSchema; exports.localeSchema = _chunkFK3UY2VOcjs.localeSchema; exports.logLevelSchema = _chunkFK3UY2VOcjs.logLevelSchema; exports.modeSchema = _chunkFK3UY2VOcjs.modeSchema; exports.multiColorsSchema = _chunkFK3UY2VOcjs.multiColorsSchema; exports.negativeColorSchema = _chunkFK3UY2VOcjs.negativeColorSchema; exports.organizationDescriptionSchema = _chunkFK3UY2VOcjs.organizationDescriptionSchema; exports.organizationIconSchema = _chunkFK3UY2VOcjs.organizationIconSchema; exports.organizationLogoSchema = _chunkFK3UY2VOcjs.organizationLogoSchema; exports.organizationNameSchema = _chunkFK3UY2VOcjs.organizationNameSchema; exports.organizationSchema = _chunkFK3UY2VOcjs.organizationSchema; exports.organizationUrlSchema = _chunkFK3UY2VOcjs.organizationUrlSchema; exports.ownerSchema = _chunkFK3UY2VOcjs.ownerSchema; exports.packageManagerSchema = _chunkFK3UY2VOcjs.packageManagerSchema; exports.portalSchema = _chunkFK3UY2VOcjs.portalSchema; exports.positiveColorSchema = _chunkFK3UY2VOcjs.positiveColorSchema; exports.preidSchema = _chunkFK3UY2VOcjs.preidSchema; exports.registrySchema = _chunkFK3UY2VOcjs.registrySchema; exports.schemaRegistry = _chunkFK3UY2VOcjs.schemaRegistry; exports.singleColorsSchema = _chunkFK3UY2VOcjs.singleColorsSchema; exports.skipCacheSchema = _chunkFK3UY2VOcjs.skipCacheSchema; exports.skipConfigLoggingSchema = _chunkFK3UY2VOcjs.skipConfigLoggingSchema; exports.successColorSchema = _chunkFK3UY2VOcjs.successColorSchema; exports.supportSchema = _chunkFK3UY2VOcjs.supportSchema; exports.themeColorsSchema = _chunkFK3UY2VOcjs.themeColorsSchema; exports.timezoneSchema = _chunkFK3UY2VOcjs.timezoneSchema; exports.warningColorSchema = _chunkFK3UY2VOcjs.warningColorSchema; exports.workspaceBotSchema = _chunkFK3UY2VOcjs.workspaceBotSchema; exports.workspaceConfigSchema = _chunkFK3UY2VOcjs.workspaceConfigSchema; exports.workspaceDirectoryBuildSchema = _chunkFK3UY2VOcjs.workspaceDirectoryBuildSchema; exports.workspaceDirectoryCacheSchema = _chunkFK3UY2VOcjs.workspaceDirectoryCacheSchema; exports.workspaceDirectoryConfigSchema = _chunkFK3UY2VOcjs.workspaceDirectoryConfigSchema; exports.workspaceDirectoryDataSchema = _chunkFK3UY2VOcjs.workspaceDirectoryDataSchema; exports.workspaceDirectoryLogSchema = _chunkFK3UY2VOcjs.workspaceDirectoryLogSchema; exports.workspaceDirectorySchema = _chunkFK3UY2VOcjs.workspaceDirectorySchema; exports.workspaceDirectoryTempSchema = _chunkFK3UY2VOcjs.workspaceDirectoryTempSchema; exports.workspaceReleaseBannerAltSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerAltSchema; exports.workspaceReleaseBannerSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerSchema; exports.workspaceReleaseBannerUrlSchema = _chunkFK3UY2VOcjs.workspaceReleaseBannerUrlSchema; exports.workspaceReleaseFooterSchema = _chunkFK3UY2VOcjs.workspaceReleaseFooterSchema; exports.workspaceReleaseHeaderSchema = _chunkFK3UY2VOcjs.workspaceReleaseHeaderSchema; exports.workspaceReleaseSchema = _chunkFK3UY2VOcjs.workspaceReleaseSchema; exports.workspaceRootSchema = _chunkFK3UY2VOcjs.workspaceRootSchema; exports.workspaceSocialsDiscordSchema = _chunkFK3UY2VOcjs.workspaceSocialsDiscordSchema; exports.workspaceSocialsGithubSchema = _chunkFK3UY2VOcjs.workspaceSocialsGithubSchema; exports.workspaceSocialsMediumSchema = _chunkFK3UY2VOcjs.workspaceSocialsMediumSchema; exports.workspaceSocialsSchema = _chunkFK3UY2VOcjs.workspaceSocialsSchema; exports.workspaceSocialsSlackSchema = _chunkFK3UY2VOcjs.workspaceSocialsSlackSchema; exports.workspaceSocialsTelegramSchema = _chunkFK3UY2VOcjs.workspaceSocialsTelegramSchema; exports.workspaceSocialsTwitterSchema = _chunkFK3UY2VOcjs.workspaceSocialsTwitterSchema;
|