@create-ui/cli 0.1.0-beta.0 → 0.1.0-beta.1
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/chunk-HRI6QVOR.js +64 -0
- package/dist/chunk-HRI6QVOR.js.map +1 -0
- package/dist/chunk-RJOEUUDA.js +3 -0
- package/dist/chunk-RJOEUUDA.js.map +1 -0
- package/dist/chunk-UPXNWTZZ.js +18 -0
- package/dist/chunk-UPXNWTZZ.js.map +1 -0
- package/dist/chunk-Y7WZRQWW.js +2 -0
- package/dist/chunk-Y7WZRQWW.js.map +1 -0
- package/dist/index.d.ts +32 -111
- package/dist/index.js +60 -61
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/registry/index.d.ts +3 -20
- package/dist/registry/index.js +1 -1
- package/dist/schema/index.d.ts +123 -432
- package/dist/schema/index.js +1 -1
- package/dist/utils/index.d.ts +2 -5
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-7MKTQPYI.js +0 -72
- package/dist/chunk-7MKTQPYI.js.map +0 -1
- package/dist/chunk-BVZRYLRW.js +0 -32
- package/dist/chunk-BVZRYLRW.js.map +0 -1
- package/dist/chunk-JWZJQI2B.js +0 -3
- package/dist/chunk-JWZJQI2B.js.map +0 -1
- package/dist/chunk-TIYHWTW7.js +0 -2
- package/dist/chunk-TIYHWTW7.js.map +0 -1
package/dist/mcp/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{b as server}from'../chunk-
|
|
1
|
+
export{b as server}from'../chunk-HRI6QVOR.js';import'../chunk-RJOEUUDA.js';import'../chunk-UPXNWTZZ.js';import'../chunk-Y7WZRQWW.js';//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/registry/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { getRegistry, getRegistryItems, resolveRegistryItems } from '../index.js';
|
|
2
2
|
import { C as Config } from '../get-config-D6gTsP_D.js';
|
|
3
3
|
import '../schema/index.js';
|
|
4
4
|
import 'zod';
|
|
@@ -11,8 +11,8 @@ declare function searchRegistries(registries: string[], options?: {
|
|
|
11
11
|
useCache?: boolean;
|
|
12
12
|
}): Promise<{
|
|
13
13
|
items: {
|
|
14
|
-
registry: string;
|
|
15
14
|
name: string;
|
|
15
|
+
registry: string;
|
|
16
16
|
addCommandArgument: string;
|
|
17
17
|
type?: string | undefined;
|
|
18
18
|
description?: string | undefined;
|
|
@@ -82,10 +82,6 @@ declare class RegistryFetchError extends RegistryError {
|
|
|
82
82
|
readonly responseBody?: string | undefined;
|
|
83
83
|
constructor(url: string, statusCode?: number, responseBody?: string | undefined, cause?: unknown);
|
|
84
84
|
}
|
|
85
|
-
declare class RegistryNotConfiguredError extends RegistryError {
|
|
86
|
-
readonly registryName: string | null;
|
|
87
|
-
constructor(registryName: string | null);
|
|
88
|
-
}
|
|
89
85
|
declare class RegistryLocalFileError extends RegistryError {
|
|
90
86
|
readonly filePath: string;
|
|
91
87
|
constructor(filePath: string, cause?: unknown);
|
|
@@ -95,18 +91,5 @@ declare class RegistryParseError extends RegistryError {
|
|
|
95
91
|
readonly parseError: unknown;
|
|
96
92
|
constructor(item: string, parseError: unknown);
|
|
97
93
|
}
|
|
98
|
-
declare class RegistryMissingEnvironmentVariablesError extends RegistryError {
|
|
99
|
-
readonly registryName: string;
|
|
100
|
-
readonly missingVars: string[];
|
|
101
|
-
constructor(registryName: string, missingVars: string[]);
|
|
102
|
-
}
|
|
103
|
-
declare class RegistryInvalidNamespaceError extends RegistryError {
|
|
104
|
-
readonly name: string;
|
|
105
|
-
constructor(name: string);
|
|
106
|
-
}
|
|
107
|
-
declare class RegistriesIndexParseError extends RegistryError {
|
|
108
|
-
readonly parseError: unknown;
|
|
109
|
-
constructor(parseError: unknown);
|
|
110
|
-
}
|
|
111
94
|
|
|
112
|
-
export {
|
|
95
|
+
export { RegistryError, RegistryFetchError, RegistryForbiddenError, RegistryLocalFileError, RegistryNotFoundError, RegistryParseError, RegistryUnauthorizedError, searchRegistries };
|
package/dist/registry/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{a as searchRegistries}from'../chunk-
|
|
1
|
+
export{a as searchRegistries}from'../chunk-RJOEUUDA.js';export{I as RegistryError,M as RegistryFetchError,L as RegistryForbiddenError,N as RegistryLocalFileError,J as RegistryNotFoundError,O as RegistryParseError,K as RegistryUnauthorizedError,S as getRegistry,T as getRegistryItems,U as resolveRegistryItems}from'../chunk-UPXNWTZZ.js';import'../chunk-Y7WZRQWW.js';//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|