@classic-homes/theme-mcp 0.1.8 → 0.1.9
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/dist/cli.js +1843 -204
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +55 -1
- package/dist/index.js +1843 -204
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,11 +128,20 @@ interface FormPattern {
|
|
|
128
128
|
components: string[];
|
|
129
129
|
example: string;
|
|
130
130
|
}
|
|
131
|
+
/** Auth flow pattern definition */
|
|
132
|
+
interface AuthPattern {
|
|
133
|
+
id: string;
|
|
134
|
+
name: string;
|
|
135
|
+
description: string;
|
|
136
|
+
components: string[];
|
|
137
|
+
example: string;
|
|
138
|
+
}
|
|
131
139
|
/** Pattern library */
|
|
132
140
|
interface PatternLibrary {
|
|
133
141
|
version: string;
|
|
134
142
|
layouts: LayoutPattern[];
|
|
135
143
|
forms: FormPattern[];
|
|
144
|
+
auth: AuthPattern[];
|
|
136
145
|
}
|
|
137
146
|
/** Validation schema info */
|
|
138
147
|
interface SchemaInfo {
|
|
@@ -147,6 +156,51 @@ interface SchemaCatalog {
|
|
|
147
156
|
common: SchemaInfo[];
|
|
148
157
|
file: SchemaInfo[];
|
|
149
158
|
api: SchemaInfo[];
|
|
159
|
+
composables: SchemaInfo[];
|
|
160
|
+
}
|
|
161
|
+
/** Auth function definition */
|
|
162
|
+
interface AuthFunction {
|
|
163
|
+
name: string;
|
|
164
|
+
signature: string;
|
|
165
|
+
description: string;
|
|
166
|
+
example?: string;
|
|
167
|
+
}
|
|
168
|
+
/** Auth type property */
|
|
169
|
+
interface AuthTypeProperty {
|
|
170
|
+
name: string;
|
|
171
|
+
type: string;
|
|
172
|
+
required: boolean;
|
|
173
|
+
description: string;
|
|
174
|
+
}
|
|
175
|
+
/** Auth type definition */
|
|
176
|
+
interface AuthType {
|
|
177
|
+
name: string;
|
|
178
|
+
description: string;
|
|
179
|
+
properties?: AuthTypeProperty[];
|
|
180
|
+
}
|
|
181
|
+
/** Auth module definition */
|
|
182
|
+
interface AuthModule {
|
|
183
|
+
description: string;
|
|
184
|
+
functions: AuthFunction[];
|
|
185
|
+
types?: AuthType[];
|
|
186
|
+
}
|
|
187
|
+
/** Auth subpackage definition */
|
|
188
|
+
interface AuthSubpackage {
|
|
189
|
+
importPath: string;
|
|
190
|
+
description: string;
|
|
191
|
+
modules: Record<string, AuthModule>;
|
|
192
|
+
types?: AuthType[];
|
|
193
|
+
}
|
|
194
|
+
/** Auth catalog structure */
|
|
195
|
+
interface AuthCatalog {
|
|
196
|
+
version: string;
|
|
197
|
+
packageName: string;
|
|
198
|
+
description: string;
|
|
199
|
+
subpackages: {
|
|
200
|
+
core: AuthSubpackage;
|
|
201
|
+
svelte: AuthSubpackage;
|
|
202
|
+
testing: AuthSubpackage;
|
|
203
|
+
};
|
|
150
204
|
}
|
|
151
205
|
|
|
152
|
-
export { type CodeExample, type ColorToken, type ComponentCatalog, type ComponentCategory, type ComponentDefinition, type EventDefinition, type FormPattern, type LayoutPattern, type PatternLibrary, type PropDefinition, type SchemaCatalog, type SchemaInfo, type SlotDefinition, type SpacingToken, type TokenDefinitions, type TypographyToken, type VariantDefinition, createServer };
|
|
206
|
+
export { type AuthCatalog, type AuthFunction, type AuthModule, type AuthPattern, type AuthSubpackage, type AuthType, type AuthTypeProperty, type CodeExample, type ColorToken, type ComponentCatalog, type ComponentCategory, type ComponentDefinition, type EventDefinition, type FormPattern, type LayoutPattern, type PatternLibrary, type PropDefinition, type SchemaCatalog, type SchemaInfo, type SlotDefinition, type SpacingToken, type TokenDefinitions, type TypographyToken, type VariantDefinition, createServer };
|