@intlayer/config 9.5.3 → 9.5.4
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/README.md +8 -8
- package/dist/cjs/bundle/logBundle.cjs +1 -1
- package/dist/cjs/callers/index.cjs +1 -1
- package/dist/cjs/client.cjs +2 -2
- package/dist/cjs/configFile/buildBrowserConfiguration.cjs +2 -2
- package/dist/cjs/configFile/buildConfigurationFields.cjs +2 -2
- package/dist/cjs/configFile/buildConfigurationFields.cjs.map +1 -1
- package/dist/cjs/configFile/configurationSchema.cjs +164 -156
- package/dist/cjs/configFile/configurationSchema.cjs.map +1 -1
- package/dist/cjs/configFile/index.cjs +1 -0
- package/dist/cjs/configFile/searchConfigurationFile.cjs +1 -1
- package/dist/cjs/defaultValues/index.cjs +5 -5
- package/dist/cjs/extract/index.cjs +1 -1
- package/dist/cjs/node.cjs +1 -0
- package/dist/cjs/utils/alias.cjs +26 -44
- package/dist/cjs/utils/alias.cjs.map +1 -1
- package/dist/cjs/utils/index.cjs +11 -11
- package/dist/cjs/utils/retryManager.cjs +1 -1
- package/dist/esm/bundle/logBundle.mjs +1 -1
- package/dist/esm/callers/index.mjs +1 -1
- package/dist/esm/client.mjs +2 -2
- package/dist/esm/configFile/buildBrowserConfiguration.mjs +2 -2
- package/dist/esm/configFile/buildConfigurationFields.mjs +3 -3
- package/dist/esm/configFile/buildConfigurationFields.mjs.map +1 -1
- package/dist/esm/configFile/configurationSchema.mjs +124 -117
- package/dist/esm/configFile/configurationSchema.mjs.map +1 -1
- package/dist/esm/configFile/index.mjs +2 -2
- package/dist/esm/configFile/searchConfigurationFile.mjs +1 -1
- package/dist/esm/defaultValues/index.mjs +5 -5
- package/dist/esm/extract/index.mjs +1 -1
- package/dist/esm/node.mjs +2 -2
- package/dist/esm/utils/alias.mjs +26 -44
- package/dist/esm/utils/alias.mjs.map +1 -1
- package/dist/esm/utils/index.mjs +11 -11
- package/dist/esm/utils/retryManager.mjs +1 -1
- package/dist/types/configFile/buildConfigurationFields.d.ts.map +1 -1
- package/dist/types/configFile/configurationSchema.d.ts +333 -327
- package/dist/types/configFile/configurationSchema.d.ts.map +1 -1
- package/dist/types/configFile/index.d.ts +2 -2
- package/dist/types/node.d.ts +2 -2
- package/dist/types/utils/alias.d.ts +16 -6
- package/dist/types/utils/alias.d.ts.map +1 -1
- package/package.json +5 -4
|
@@ -1,524 +1,530 @@
|
|
|
1
1
|
import { AiProviders } from "@intlayer/types/config";
|
|
2
|
-
import z from "zod";
|
|
2
|
+
import { z } from "zod/mini";
|
|
3
3
|
//#region src/configFile/configurationSchema.d.ts
|
|
4
|
-
export declare const internationalizationSchema: z.
|
|
5
|
-
locales: z.
|
|
6
|
-
requiredLocales: z.
|
|
7
|
-
strictMode: z.
|
|
4
|
+
export declare const internationalizationSchema: z.ZodMiniObject<{
|
|
5
|
+
locales: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
6
|
+
requiredLocales: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
7
|
+
strictMode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
8
8
|
inclusive: "inclusive";
|
|
9
9
|
loose: "loose";
|
|
10
10
|
strict: "strict";
|
|
11
11
|
}>>;
|
|
12
|
-
defaultLocale: z.
|
|
12
|
+
defaultLocale: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
13
13
|
}, z.core.$strip>;
|
|
14
|
-
export declare const cookiesAttributesSchema: z.
|
|
15
|
-
type: z.
|
|
16
|
-
name: z.
|
|
17
|
-
domain: z.
|
|
18
|
-
path: z.
|
|
19
|
-
secure: z.
|
|
20
|
-
httpOnly: z.
|
|
21
|
-
sameSite: z.
|
|
14
|
+
export declare const cookiesAttributesSchema: z.ZodMiniObject<{
|
|
15
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
16
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
17
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
18
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
19
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
20
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
21
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
22
22
|
lax: "lax";
|
|
23
23
|
none: "none";
|
|
24
24
|
strict: "strict";
|
|
25
25
|
}>>;
|
|
26
|
-
expires: z.
|
|
27
|
-
maxAge: z.
|
|
26
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
27
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
28
28
|
}, z.core.$strip>;
|
|
29
|
-
export declare const storageAttributesSchema: z.
|
|
30
|
-
type: z.
|
|
29
|
+
export declare const storageAttributesSchema: z.ZodMiniObject<{
|
|
30
|
+
type: z.ZodMiniEnum<{
|
|
31
31
|
header: "header";
|
|
32
32
|
localStorage: "localStorage";
|
|
33
33
|
sessionStorage: "sessionStorage";
|
|
34
34
|
}>;
|
|
35
|
-
name: z.
|
|
35
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
36
36
|
}, z.core.$strip>;
|
|
37
|
-
export declare const storageSchema: z.
|
|
37
|
+
export declare const storageSchema: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<false>, z.ZodMiniEnum<{
|
|
38
38
|
cookie: "cookie";
|
|
39
39
|
header: "header";
|
|
40
40
|
localStorage: "localStorage";
|
|
41
41
|
sessionStorage: "sessionStorage";
|
|
42
|
-
}>, z.
|
|
43
|
-
type: z.
|
|
44
|
-
name: z.
|
|
45
|
-
domain: z.
|
|
46
|
-
path: z.
|
|
47
|
-
secure: z.
|
|
48
|
-
httpOnly: z.
|
|
49
|
-
sameSite: z.
|
|
42
|
+
}>, z.ZodMiniObject<{
|
|
43
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
44
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
46
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
47
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
48
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
49
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
50
50
|
lax: "lax";
|
|
51
51
|
none: "none";
|
|
52
52
|
strict: "strict";
|
|
53
53
|
}>>;
|
|
54
|
-
expires: z.
|
|
55
|
-
maxAge: z.
|
|
56
|
-
}, z.core.$strip>, z.
|
|
57
|
-
type: z.
|
|
54
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
55
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
56
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
57
|
+
type: z.ZodMiniEnum<{
|
|
58
58
|
header: "header";
|
|
59
59
|
localStorage: "localStorage";
|
|
60
60
|
sessionStorage: "sessionStorage";
|
|
61
61
|
}>;
|
|
62
|
-
name: z.
|
|
63
|
-
}, z.core.$strip>, z.
|
|
62
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
63
|
+
}, z.core.$strip>, z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
64
64
|
cookie: "cookie";
|
|
65
65
|
header: "header";
|
|
66
66
|
localStorage: "localStorage";
|
|
67
67
|
sessionStorage: "sessionStorage";
|
|
68
|
-
}>, z.
|
|
69
|
-
type: z.
|
|
70
|
-
name: z.
|
|
71
|
-
domain: z.
|
|
72
|
-
path: z.
|
|
73
|
-
secure: z.
|
|
74
|
-
httpOnly: z.
|
|
75
|
-
sameSite: z.
|
|
68
|
+
}>, z.ZodMiniObject<{
|
|
69
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
70
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
71
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
72
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
73
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
74
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
75
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
76
76
|
lax: "lax";
|
|
77
77
|
none: "none";
|
|
78
78
|
strict: "strict";
|
|
79
79
|
}>>;
|
|
80
|
-
expires: z.
|
|
81
|
-
maxAge: z.
|
|
82
|
-
}, z.core.$strip>, z.
|
|
83
|
-
type: z.
|
|
80
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
81
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
82
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
83
|
+
type: z.ZodMiniEnum<{
|
|
84
84
|
header: "header";
|
|
85
85
|
localStorage: "localStorage";
|
|
86
86
|
sessionStorage: "sessionStorage";
|
|
87
87
|
}>;
|
|
88
|
-
name: z.
|
|
88
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
89
89
|
}, z.core.$strip>]>>]>;
|
|
90
|
-
export declare const rewriteRuleSchema: z.
|
|
91
|
-
canonical: z.
|
|
92
|
-
localized: z.
|
|
90
|
+
export declare const rewriteRuleSchema: z.ZodMiniObject<{
|
|
91
|
+
canonical: z.ZodMiniString<string>;
|
|
92
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
93
93
|
}, z.core.$strip>;
|
|
94
|
-
export declare const rewriteRulesSchema: z.
|
|
95
|
-
rules: z.
|
|
96
|
-
canonical: z.
|
|
97
|
-
localized: z.
|
|
94
|
+
export declare const rewriteRulesSchema: z.ZodMiniObject<{
|
|
95
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
96
|
+
canonical: z.ZodMiniString<string>;
|
|
97
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
98
98
|
}, z.core.$strip>>;
|
|
99
99
|
}, z.core.$strip>;
|
|
100
|
-
export declare const rewriteObjectSchema: z.
|
|
101
|
-
url: z.
|
|
102
|
-
rules: z.
|
|
103
|
-
canonical: z.
|
|
104
|
-
localized: z.
|
|
100
|
+
export declare const rewriteObjectSchema: z.ZodMiniObject<{
|
|
101
|
+
url: z.ZodMiniObject<{
|
|
102
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
103
|
+
canonical: z.ZodMiniString<string>;
|
|
104
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
105
105
|
}, z.core.$strip>>;
|
|
106
106
|
}, z.core.$strip>;
|
|
107
|
-
nextjs: z.
|
|
108
|
-
rules: z.
|
|
109
|
-
canonical: z.
|
|
110
|
-
localized: z.
|
|
107
|
+
nextjs: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
108
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
109
|
+
canonical: z.ZodMiniString<string>;
|
|
110
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
111
111
|
}, z.core.$strip>>;
|
|
112
112
|
}, z.core.$strip>>;
|
|
113
|
-
vite: z.
|
|
114
|
-
rules: z.
|
|
115
|
-
canonical: z.
|
|
116
|
-
localized: z.
|
|
113
|
+
vite: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
114
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
115
|
+
canonical: z.ZodMiniString<string>;
|
|
116
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
117
117
|
}, z.core.$strip>>;
|
|
118
118
|
}, z.core.$strip>>;
|
|
119
119
|
}, z.core.$strip>;
|
|
120
|
-
export declare const routingSchema: z.
|
|
121
|
-
rewrite: z.
|
|
122
|
-
url: z.
|
|
123
|
-
rules: z.
|
|
124
|
-
canonical: z.
|
|
125
|
-
localized: z.
|
|
120
|
+
export declare const routingSchema: z.ZodMiniObject<{
|
|
121
|
+
rewrite: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>>, z.ZodMiniObject<{
|
|
122
|
+
url: z.ZodMiniObject<{
|
|
123
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
124
|
+
canonical: z.ZodMiniString<string>;
|
|
125
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
126
126
|
}, z.core.$strip>>;
|
|
127
127
|
}, z.core.$strip>;
|
|
128
|
-
nextjs: z.
|
|
129
|
-
rules: z.
|
|
130
|
-
canonical: z.
|
|
131
|
-
localized: z.
|
|
128
|
+
nextjs: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
129
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
130
|
+
canonical: z.ZodMiniString<string>;
|
|
131
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
132
132
|
}, z.core.$strip>>;
|
|
133
133
|
}, z.core.$strip>>;
|
|
134
|
-
vite: z.
|
|
135
|
-
rules: z.
|
|
136
|
-
canonical: z.
|
|
137
|
-
localized: z.
|
|
134
|
+
vite: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
135
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
136
|
+
canonical: z.ZodMiniString<string>;
|
|
137
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
138
138
|
}, z.core.$strip>>;
|
|
139
139
|
}, z.core.$strip>>;
|
|
140
140
|
}, z.core.$strip>]>>;
|
|
141
|
-
mode: z.
|
|
141
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
142
142
|
"no-prefix": "no-prefix";
|
|
143
143
|
"prefix-all": "prefix-all";
|
|
144
144
|
"prefix-no-default": "prefix-no-default";
|
|
145
145
|
"search-params": "search-params";
|
|
146
146
|
}>>;
|
|
147
|
-
enableProxy: z.
|
|
148
|
-
storage: z.
|
|
147
|
+
enableProxy: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
148
|
+
storage: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<false>, z.ZodMiniEnum<{
|
|
149
149
|
cookie: "cookie";
|
|
150
150
|
header: "header";
|
|
151
151
|
localStorage: "localStorage";
|
|
152
152
|
sessionStorage: "sessionStorage";
|
|
153
|
-
}>, z.
|
|
154
|
-
type: z.
|
|
155
|
-
name: z.
|
|
156
|
-
domain: z.
|
|
157
|
-
path: z.
|
|
158
|
-
secure: z.
|
|
159
|
-
httpOnly: z.
|
|
160
|
-
sameSite: z.
|
|
153
|
+
}>, z.ZodMiniObject<{
|
|
154
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
155
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
156
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
157
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
158
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
159
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
160
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
161
161
|
lax: "lax";
|
|
162
162
|
none: "none";
|
|
163
163
|
strict: "strict";
|
|
164
164
|
}>>;
|
|
165
|
-
expires: z.
|
|
166
|
-
maxAge: z.
|
|
167
|
-
}, z.core.$strip>, z.
|
|
168
|
-
type: z.
|
|
165
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
166
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
167
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
168
|
+
type: z.ZodMiniEnum<{
|
|
169
169
|
header: "header";
|
|
170
170
|
localStorage: "localStorage";
|
|
171
171
|
sessionStorage: "sessionStorage";
|
|
172
172
|
}>;
|
|
173
|
-
name: z.
|
|
174
|
-
}, z.core.$strip>, z.
|
|
173
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
174
|
+
}, z.core.$strip>, z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
175
175
|
cookie: "cookie";
|
|
176
176
|
header: "header";
|
|
177
177
|
localStorage: "localStorage";
|
|
178
178
|
sessionStorage: "sessionStorage";
|
|
179
|
-
}>, z.
|
|
180
|
-
type: z.
|
|
181
|
-
name: z.
|
|
182
|
-
domain: z.
|
|
183
|
-
path: z.
|
|
184
|
-
secure: z.
|
|
185
|
-
httpOnly: z.
|
|
186
|
-
sameSite: z.
|
|
179
|
+
}>, z.ZodMiniObject<{
|
|
180
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
181
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
182
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
183
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
184
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
185
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
186
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
187
187
|
lax: "lax";
|
|
188
188
|
none: "none";
|
|
189
189
|
strict: "strict";
|
|
190
190
|
}>>;
|
|
191
|
-
expires: z.
|
|
192
|
-
maxAge: z.
|
|
193
|
-
}, z.core.$strip>, z.
|
|
194
|
-
type: z.
|
|
191
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
192
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
193
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
194
|
+
type: z.ZodMiniEnum<{
|
|
195
195
|
header: "header";
|
|
196
196
|
localStorage: "localStorage";
|
|
197
197
|
sessionStorage: "sessionStorage";
|
|
198
198
|
}>;
|
|
199
|
-
name: z.
|
|
199
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
200
200
|
}, z.core.$strip>]>>]>>;
|
|
201
|
-
basePath: z.
|
|
202
|
-
domains: z.
|
|
201
|
+
basePath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
202
|
+
domains: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>>;
|
|
203
203
|
}, z.core.$strip>;
|
|
204
|
-
export declare const systemSchema: z.
|
|
205
|
-
baseDir: z.
|
|
206
|
-
moduleAugmentationDir: z.
|
|
207
|
-
unmergedDictionariesDir: z.
|
|
208
|
-
remoteDictionariesDir: z.
|
|
209
|
-
dictionariesDir: z.
|
|
210
|
-
dynamicDictionariesDir: z.
|
|
211
|
-
fetchDictionariesDir: z.
|
|
212
|
-
typesDir: z.
|
|
213
|
-
mainDir: z.
|
|
214
|
-
configDir: z.
|
|
215
|
-
cacheDir: z.
|
|
216
|
-
tempDir: z.
|
|
204
|
+
export declare const systemSchema: z.ZodMiniObject<{
|
|
205
|
+
baseDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
206
|
+
moduleAugmentationDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
207
|
+
unmergedDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
208
|
+
remoteDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
209
|
+
dictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
210
|
+
dynamicDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
211
|
+
fetchDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
212
|
+
typesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
213
|
+
mainDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
214
|
+
configDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
215
|
+
cacheDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
216
|
+
tempDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
217
217
|
}, z.core.$strip>;
|
|
218
|
-
export declare const contentSchema: z.
|
|
219
|
-
fileExtensions: z.
|
|
220
|
-
contentDir: z.
|
|
221
|
-
codeDir: z.
|
|
222
|
-
excludedPath: z.
|
|
223
|
-
watch: z.
|
|
224
|
-
formatCommand: z.
|
|
218
|
+
export declare const contentSchema: z.ZodMiniObject<{
|
|
219
|
+
fileExtensions: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
220
|
+
contentDir: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
221
|
+
codeDir: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
222
|
+
excludedPath: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
223
|
+
watch: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
224
|
+
formatCommand: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
225
225
|
}, z.core.$strip>;
|
|
226
|
-
export declare const editorSchema: z.
|
|
227
|
-
applicationURL: z.
|
|
228
|
-
editorURL: z.
|
|
229
|
-
cmsURL: z.
|
|
230
|
-
backendURL: z.
|
|
231
|
-
port: z.
|
|
232
|
-
enabled: z.
|
|
233
|
-
clientId: z.
|
|
234
|
-
clientSecret: z.
|
|
235
|
-
dictionaryPriorityStrategy: z.
|
|
226
|
+
export declare const editorSchema: z.ZodMiniObject<{
|
|
227
|
+
applicationURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
228
|
+
editorURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
229
|
+
cmsURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
230
|
+
backendURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
231
|
+
port: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
232
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
233
|
+
clientId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
234
|
+
clientSecret: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
235
|
+
dictionaryPriorityStrategy: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
236
236
|
distant_first: "distant_first";
|
|
237
237
|
local_first: "local_first";
|
|
238
238
|
}>>;
|
|
239
|
-
liveSync: z.
|
|
240
|
-
liveSyncPort: z.
|
|
241
|
-
liveSyncURL: z.
|
|
239
|
+
liveSync: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
240
|
+
liveSyncPort: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
241
|
+
liveSyncURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
242
242
|
}, z.core.$strip>;
|
|
243
|
-
export declare const analyticsSchema: z.
|
|
244
|
-
enabled: z.
|
|
245
|
-
flushInterval: z.
|
|
246
|
-
sampleRate: z.
|
|
243
|
+
export declare const analyticsSchema: z.ZodMiniObject<{
|
|
244
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
245
|
+
flushInterval: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
246
|
+
sampleRate: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
247
247
|
}, z.core.$strip>;
|
|
248
|
-
export declare const logSchema: z.
|
|
249
|
-
mode: z.
|
|
248
|
+
export declare const logSchema: z.ZodMiniObject<{
|
|
249
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
250
250
|
default: "default";
|
|
251
251
|
disabled: "disabled";
|
|
252
252
|
verbose: "verbose";
|
|
253
253
|
}>>;
|
|
254
|
-
prefix: z.
|
|
255
|
-
error: z.
|
|
256
|
-
log: z.
|
|
257
|
-
info: z.
|
|
258
|
-
warn: z.
|
|
254
|
+
prefix: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
255
|
+
error: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
256
|
+
log: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
257
|
+
info: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
258
|
+
warn: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
259
259
|
}, z.core.$strip>;
|
|
260
|
-
export declare const aiSchema: z.
|
|
261
|
-
provider: z.
|
|
262
|
-
apiKey: z.
|
|
263
|
-
model: z.
|
|
264
|
-
temperature: z.
|
|
265
|
-
applicationContext: z.
|
|
266
|
-
baseURL: z.
|
|
267
|
-
dataSerialization: z.
|
|
260
|
+
export declare const aiSchema: z.ZodMiniObject<{
|
|
261
|
+
provider: z.ZodMiniOptional<z.ZodMiniEnum<typeof AiProviders>>;
|
|
262
|
+
apiKey: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
263
|
+
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
264
|
+
temperature: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
265
|
+
applicationContext: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
266
|
+
baseURL: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
267
|
+
dataSerialization: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
268
268
|
json: "json";
|
|
269
269
|
toon: "toon";
|
|
270
270
|
}>>;
|
|
271
271
|
}, z.core.$strip>;
|
|
272
|
-
export declare const buildSchema: z.
|
|
273
|
-
mode: z.
|
|
272
|
+
export declare const buildSchema: z.ZodMiniObject<{
|
|
273
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
274
274
|
auto: "auto";
|
|
275
275
|
manual: "manual";
|
|
276
276
|
}>>;
|
|
277
|
-
optimize: z.
|
|
278
|
-
importMode: z.
|
|
277
|
+
optimize: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
278
|
+
importMode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
279
279
|
dynamic: "dynamic";
|
|
280
280
|
fetch: "fetch";
|
|
281
281
|
static: "static";
|
|
282
282
|
}>>;
|
|
283
|
-
traversePattern: z.
|
|
284
|
-
outputFormat: z.
|
|
283
|
+
traversePattern: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
284
|
+
outputFormat: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniEnum<{
|
|
285
285
|
cjs: "cjs";
|
|
286
286
|
esm: "esm";
|
|
287
287
|
}>>>;
|
|
288
|
-
cache: z.
|
|
289
|
-
require: z.
|
|
290
|
-
checkTypes: z.
|
|
288
|
+
cache: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
289
|
+
require: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
290
|
+
checkTypes: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
291
291
|
}, z.core.$strip>;
|
|
292
|
-
export declare const compilerSchema: z.
|
|
293
|
-
enabled: z.
|
|
294
|
-
dictionaryKeyPrefix: z.
|
|
295
|
-
transformPattern: z.
|
|
296
|
-
excludePattern: z.
|
|
297
|
-
output: z.
|
|
298
|
-
noMetadata: z.
|
|
299
|
-
saveComponents: z.
|
|
292
|
+
export declare const compilerSchema: z.ZodMiniObject<{
|
|
293
|
+
enabled: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniLiteral<"build-only">]>>;
|
|
294
|
+
dictionaryKeyPrefix: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
295
|
+
transformPattern: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
296
|
+
excludePattern: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
297
|
+
output: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
298
|
+
noMetadata: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
299
|
+
saveComponents: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
300
300
|
}, z.core.$strip>;
|
|
301
|
-
export declare const dictionarySchema: z.
|
|
302
|
-
fill: z.
|
|
303
|
-
contentAutoTransformation: z.
|
|
304
|
-
markdown: z.
|
|
305
|
-
html: z.
|
|
306
|
-
insertion: z.
|
|
301
|
+
export declare const dictionarySchema: z.ZodMiniObject<{
|
|
302
|
+
fill: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
303
|
+
contentAutoTransformation: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
304
|
+
markdown: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
305
|
+
html: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
306
|
+
insertion: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
307
307
|
}, z.core.$strip>]>>;
|
|
308
|
-
location: z.
|
|
309
|
-
locale: z.
|
|
310
|
-
title: z.
|
|
308
|
+
location: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
309
|
+
locale: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
310
|
+
title: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
311
311
|
}, z.core.$strip>;
|
|
312
|
-
export declare const intlayerConfigSchema: z.
|
|
313
|
-
internationalization: z.
|
|
314
|
-
locales: z.
|
|
315
|
-
requiredLocales: z.
|
|
316
|
-
strictMode: z.
|
|
312
|
+
export declare const intlayerConfigSchema: z.ZodMiniObject<{
|
|
313
|
+
internationalization: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
314
|
+
locales: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
315
|
+
requiredLocales: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
316
|
+
strictMode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
317
317
|
inclusive: "inclusive";
|
|
318
318
|
loose: "loose";
|
|
319
319
|
strict: "strict";
|
|
320
320
|
}>>;
|
|
321
|
-
defaultLocale: z.
|
|
321
|
+
defaultLocale: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
322
322
|
}, z.core.$strip>>;
|
|
323
|
-
routing: z.
|
|
324
|
-
rewrite: z.
|
|
325
|
-
url: z.
|
|
326
|
-
rules: z.
|
|
327
|
-
canonical: z.
|
|
328
|
-
localized: z.
|
|
323
|
+
routing: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
324
|
+
rewrite: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>>, z.ZodMiniObject<{
|
|
325
|
+
url: z.ZodMiniObject<{
|
|
326
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
327
|
+
canonical: z.ZodMiniString<string>;
|
|
328
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
329
329
|
}, z.core.$strip>>;
|
|
330
330
|
}, z.core.$strip>;
|
|
331
|
-
nextjs: z.
|
|
332
|
-
rules: z.
|
|
333
|
-
canonical: z.
|
|
334
|
-
localized: z.
|
|
331
|
+
nextjs: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
332
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
333
|
+
canonical: z.ZodMiniString<string>;
|
|
334
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
335
335
|
}, z.core.$strip>>;
|
|
336
336
|
}, z.core.$strip>>;
|
|
337
|
-
vite: z.
|
|
338
|
-
rules: z.
|
|
339
|
-
canonical: z.
|
|
340
|
-
localized: z.
|
|
337
|
+
vite: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
338
|
+
rules: z.ZodMiniArray<z.ZodMiniObject<{
|
|
339
|
+
canonical: z.ZodMiniString<string>;
|
|
340
|
+
localized: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>;
|
|
341
341
|
}, z.core.$strip>>;
|
|
342
342
|
}, z.core.$strip>>;
|
|
343
343
|
}, z.core.$strip>]>>;
|
|
344
|
-
mode: z.
|
|
344
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
345
345
|
"no-prefix": "no-prefix";
|
|
346
346
|
"prefix-all": "prefix-all";
|
|
347
347
|
"prefix-no-default": "prefix-no-default";
|
|
348
348
|
"search-params": "search-params";
|
|
349
349
|
}>>;
|
|
350
|
-
enableProxy: z.
|
|
351
|
-
storage: z.
|
|
350
|
+
enableProxy: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
351
|
+
storage: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<false>, z.ZodMiniEnum<{
|
|
352
352
|
cookie: "cookie";
|
|
353
353
|
header: "header";
|
|
354
354
|
localStorage: "localStorage";
|
|
355
355
|
sessionStorage: "sessionStorage";
|
|
356
|
-
}>, z.
|
|
357
|
-
type: z.
|
|
358
|
-
name: z.
|
|
359
|
-
domain: z.
|
|
360
|
-
path: z.
|
|
361
|
-
secure: z.
|
|
362
|
-
httpOnly: z.
|
|
363
|
-
sameSite: z.
|
|
356
|
+
}>, z.ZodMiniObject<{
|
|
357
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
358
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
359
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
360
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
361
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
362
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
363
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
364
364
|
lax: "lax";
|
|
365
365
|
none: "none";
|
|
366
366
|
strict: "strict";
|
|
367
367
|
}>>;
|
|
368
|
-
expires: z.
|
|
369
|
-
maxAge: z.
|
|
370
|
-
}, z.core.$strip>, z.
|
|
371
|
-
type: z.
|
|
368
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
369
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
370
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
371
|
+
type: z.ZodMiniEnum<{
|
|
372
372
|
header: "header";
|
|
373
373
|
localStorage: "localStorage";
|
|
374
374
|
sessionStorage: "sessionStorage";
|
|
375
375
|
}>;
|
|
376
|
-
name: z.
|
|
377
|
-
}, z.core.$strip>, z.
|
|
376
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
377
|
+
}, z.core.$strip>, z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
378
378
|
cookie: "cookie";
|
|
379
379
|
header: "header";
|
|
380
380
|
localStorage: "localStorage";
|
|
381
381
|
sessionStorage: "sessionStorage";
|
|
382
|
-
}>, z.
|
|
383
|
-
type: z.
|
|
384
|
-
name: z.
|
|
385
|
-
domain: z.
|
|
386
|
-
path: z.
|
|
387
|
-
secure: z.
|
|
388
|
-
httpOnly: z.
|
|
389
|
-
sameSite: z.
|
|
382
|
+
}>, z.ZodMiniObject<{
|
|
383
|
+
type: z.ZodMiniLiteral<"cookie">;
|
|
384
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
385
|
+
domain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
386
|
+
path: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
387
|
+
secure: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
388
|
+
httpOnly: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
389
|
+
sameSite: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
390
390
|
lax: "lax";
|
|
391
391
|
none: "none";
|
|
392
392
|
strict: "strict";
|
|
393
393
|
}>>;
|
|
394
|
-
expires: z.
|
|
395
|
-
maxAge: z.
|
|
396
|
-
}, z.core.$strip>, z.
|
|
397
|
-
type: z.
|
|
394
|
+
expires: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniCustom<Date, Date>, z.ZodMiniNumber<number>, z.ZodMiniString<string>]>>;
|
|
395
|
+
maxAge: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
396
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
397
|
+
type: z.ZodMiniEnum<{
|
|
398
398
|
header: "header";
|
|
399
399
|
localStorage: "localStorage";
|
|
400
400
|
sessionStorage: "sessionStorage";
|
|
401
401
|
}>;
|
|
402
|
-
name: z.
|
|
402
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
403
403
|
}, z.core.$strip>]>>]>>;
|
|
404
|
-
basePath: z.
|
|
405
|
-
domains: z.
|
|
404
|
+
basePath: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
405
|
+
domains: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniString<string>>>;
|
|
406
406
|
}, z.core.$strip>>;
|
|
407
|
-
content: z.
|
|
408
|
-
fileExtensions: z.
|
|
409
|
-
contentDir: z.
|
|
410
|
-
codeDir: z.
|
|
411
|
-
excludedPath: z.
|
|
412
|
-
watch: z.
|
|
413
|
-
formatCommand: z.
|
|
407
|
+
content: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
408
|
+
fileExtensions: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
409
|
+
contentDir: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
410
|
+
codeDir: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
411
|
+
excludedPath: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
412
|
+
watch: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
413
|
+
formatCommand: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
414
414
|
}, z.core.$strip>>;
|
|
415
|
-
system: z.
|
|
416
|
-
baseDir: z.
|
|
417
|
-
moduleAugmentationDir: z.
|
|
418
|
-
unmergedDictionariesDir: z.
|
|
419
|
-
remoteDictionariesDir: z.
|
|
420
|
-
dictionariesDir: z.
|
|
421
|
-
dynamicDictionariesDir: z.
|
|
422
|
-
fetchDictionariesDir: z.
|
|
423
|
-
typesDir: z.
|
|
424
|
-
mainDir: z.
|
|
425
|
-
configDir: z.
|
|
426
|
-
cacheDir: z.
|
|
427
|
-
tempDir: z.
|
|
415
|
+
system: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
416
|
+
baseDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
417
|
+
moduleAugmentationDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
418
|
+
unmergedDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
419
|
+
remoteDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
420
|
+
dictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
421
|
+
dynamicDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
422
|
+
fetchDictionariesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
423
|
+
typesDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
424
|
+
mainDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
425
|
+
configDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
426
|
+
cacheDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
427
|
+
tempDir: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
428
428
|
}, z.core.$strip>>;
|
|
429
|
-
editor: z.
|
|
430
|
-
applicationURL: z.
|
|
431
|
-
editorURL: z.
|
|
432
|
-
cmsURL: z.
|
|
433
|
-
backendURL: z.
|
|
434
|
-
port: z.
|
|
435
|
-
enabled: z.
|
|
436
|
-
clientId: z.
|
|
437
|
-
clientSecret: z.
|
|
438
|
-
dictionaryPriorityStrategy: z.
|
|
429
|
+
editor: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
430
|
+
applicationURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
431
|
+
editorURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
432
|
+
cmsURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
433
|
+
backendURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
434
|
+
port: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
435
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
436
|
+
clientId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
437
|
+
clientSecret: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
438
|
+
dictionaryPriorityStrategy: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
439
439
|
distant_first: "distant_first";
|
|
440
440
|
local_first: "local_first";
|
|
441
441
|
}>>;
|
|
442
|
-
liveSync: z.
|
|
443
|
-
liveSyncPort: z.
|
|
444
|
-
liveSyncURL: z.
|
|
442
|
+
liveSync: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
443
|
+
liveSyncPort: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
444
|
+
liveSyncURL: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniURL, z.ZodMiniLiteral<"">]>>;
|
|
445
445
|
}, z.core.$strip>>;
|
|
446
|
-
analytics: z.
|
|
447
|
-
enabled: z.
|
|
448
|
-
flushInterval: z.
|
|
449
|
-
sampleRate: z.
|
|
446
|
+
analytics: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
447
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
448
|
+
flushInterval: z.ZodMiniOptional<z.ZodMiniInt>;
|
|
449
|
+
sampleRate: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
450
450
|
}, z.core.$strip>>;
|
|
451
|
-
log: z.
|
|
452
|
-
mode: z.
|
|
451
|
+
log: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
452
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
453
453
|
default: "default";
|
|
454
454
|
disabled: "disabled";
|
|
455
455
|
verbose: "verbose";
|
|
456
456
|
}>>;
|
|
457
|
-
prefix: z.
|
|
458
|
-
error: z.
|
|
459
|
-
log: z.
|
|
460
|
-
info: z.
|
|
461
|
-
warn: z.
|
|
457
|
+
prefix: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
458
|
+
error: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
459
|
+
log: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
460
|
+
info: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
461
|
+
warn: z.ZodMiniOptional<z.ZodMiniFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
|
|
462
462
|
}, z.core.$strip>>;
|
|
463
|
-
ai: z.
|
|
464
|
-
provider: z.
|
|
465
|
-
apiKey: z.
|
|
466
|
-
model: z.
|
|
467
|
-
temperature: z.
|
|
468
|
-
applicationContext: z.
|
|
469
|
-
baseURL: z.
|
|
470
|
-
dataSerialization: z.
|
|
463
|
+
ai: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
464
|
+
provider: z.ZodMiniOptional<z.ZodMiniEnum<typeof AiProviders>>;
|
|
465
|
+
apiKey: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
466
|
+
model: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
467
|
+
temperature: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
468
|
+
applicationContext: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
469
|
+
baseURL: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
470
|
+
dataSerialization: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
471
471
|
json: "json";
|
|
472
472
|
toon: "toon";
|
|
473
473
|
}>>;
|
|
474
474
|
}, z.core.$strip>>;
|
|
475
|
-
build: z.
|
|
476
|
-
mode: z.
|
|
475
|
+
build: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
476
|
+
mode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
477
477
|
auto: "auto";
|
|
478
478
|
manual: "manual";
|
|
479
479
|
}>>;
|
|
480
|
-
optimize: z.
|
|
481
|
-
importMode: z.
|
|
480
|
+
optimize: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
481
|
+
importMode: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
482
482
|
dynamic: "dynamic";
|
|
483
483
|
fetch: "fetch";
|
|
484
484
|
static: "static";
|
|
485
485
|
}>>;
|
|
486
|
-
traversePattern: z.
|
|
487
|
-
outputFormat: z.
|
|
486
|
+
traversePattern: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
487
|
+
outputFormat: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniEnum<{
|
|
488
488
|
cjs: "cjs";
|
|
489
489
|
esm: "esm";
|
|
490
490
|
}>>>;
|
|
491
|
-
cache: z.
|
|
492
|
-
require: z.
|
|
493
|
-
checkTypes: z.
|
|
491
|
+
cache: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
492
|
+
require: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
493
|
+
checkTypes: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
494
494
|
}, z.core.$strip>>;
|
|
495
|
-
compiler: z.
|
|
496
|
-
enabled: z.
|
|
497
|
-
dictionaryKeyPrefix: z.
|
|
498
|
-
transformPattern: z.
|
|
499
|
-
excludePattern: z.
|
|
500
|
-
output: z.
|
|
501
|
-
noMetadata: z.
|
|
502
|
-
saveComponents: z.
|
|
495
|
+
compiler: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
496
|
+
enabled: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniLiteral<"build-only">]>>;
|
|
497
|
+
dictionaryKeyPrefix: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
498
|
+
transformPattern: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
499
|
+
excludePattern: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
500
|
+
output: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
501
|
+
noMetadata: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
502
|
+
saveComponents: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
503
503
|
}, z.core.$strip>>;
|
|
504
|
-
dictionary: z.
|
|
505
|
-
fill: z.
|
|
506
|
-
contentAutoTransformation: z.
|
|
507
|
-
markdown: z.
|
|
508
|
-
html: z.
|
|
509
|
-
insertion: z.
|
|
504
|
+
dictionary: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
505
|
+
fill: z.ZodMiniOptional<z.ZodMiniUnknown>;
|
|
506
|
+
contentAutoTransformation: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
507
|
+
markdown: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
508
|
+
html: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
509
|
+
insertion: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
510
510
|
}, z.core.$strip>]>>;
|
|
511
|
-
location: z.
|
|
512
|
-
locale: z.
|
|
513
|
-
title: z.
|
|
511
|
+
location: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
512
|
+
locale: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
513
|
+
title: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
514
514
|
}, z.core.$strip>>;
|
|
515
|
-
plugins: z.
|
|
516
|
-
schemas: z.
|
|
517
|
-
metadata: z.
|
|
518
|
-
name: z.
|
|
519
|
-
version: z.
|
|
520
|
-
doc: z.
|
|
515
|
+
plugins: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniUnknown>>;
|
|
516
|
+
schemas: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
517
|
+
metadata: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
518
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
519
|
+
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
520
|
+
doc: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
521
521
|
}, z.core.$strip>>;
|
|
522
522
|
}, z.core.$strip>;
|
|
523
|
+
/**
|
|
524
|
+
* Parse context restoring English issue messages: `zod/mini` ships no default
|
|
525
|
+
* locale, so without it every issue reads "Invalid input".
|
|
526
|
+
* Imported directly: `z.locales` is a barrel that bundles every locale.
|
|
527
|
+
*/
|
|
528
|
+
export declare const intlayerConfigSchemaParseContext: z.core.ParseContext<z.core.$ZodIssue>;
|
|
523
529
|
//#endregion
|
|
524
530
|
//# sourceMappingURL=configurationSchema.d.ts.map
|