builder.io 1.11.36 → 1.11.38
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/cli/index.cjs +137 -131
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +3 -3
- package/server/index.mjs +3 -3
- package/types/cli/repo-indexing/repo-indexing-utils.d.ts +5 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -25,6 +25,11 @@ export declare const getAllDesignSystems: (credentials: Credentials, opts?: {
|
|
|
25
25
|
* will be returned. Defaults to false.
|
|
26
26
|
*/
|
|
27
27
|
onlyEditAccess?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* If true, design systems that are scoped to the global space will be included.
|
|
30
|
+
* Defaults to false.
|
|
31
|
+
*/
|
|
32
|
+
includeGlobalScopeDesignSystems?: boolean;
|
|
28
33
|
}) => Promise<DesignSystem[]>;
|
|
29
34
|
export declare const getDisplayDesignSystems: (credentials: Credentials) => Promise<DisplayDesignSystem[]>;
|
|
30
35
|
export declare const getDesignSystemsByScope: (scope: DesignSystemScope, designSystems: DesignSystem[]) => DesignSystem[];
|