@builder.io/dev-tools 0.2.31 → 1.0.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.
@@ -4,4 +4,5 @@ export declare function parseRegisteredComponentInfo(sys: DevToolsSys, cmpInfo:
4
4
  export declare function updateComponentObjLiteralInfoProperties(sys: DevToolsSys, cmpObjExp: ts.ObjectLiteralExpression, cmpInfo: ComponentInfo): ts.ObjectLiteralExpression;
5
5
  export declare function updateComponentInputsArrayLiteralExp(sys: DevToolsSys, arrExp: ts.ArrayLiteralExpression, inputs: ComponentInput[]): ts.ArrayLiteralExpression;
6
6
  export declare function mergeComponentInputs(cmp: ComponentInfo, inputs: ComponentInput[]): void;
7
+ export declare function componentAcceptsChildren(cmp: ComponentInfo): boolean;
7
8
  export declare function normalizeComponentInput(input: ComponentInput): ComponentInput;
@@ -1,4 +1,10 @@
1
1
  import type { DevToolsSys } from "packages/dev-tools/types";
2
+ export declare function hasBuilderContentViaQueryAPI(opts: {
3
+ publicApiKey: string;
4
+ privateAuthKey: string;
5
+ model: string;
6
+ pageUrl: string;
7
+ }): Promise<any>;
2
8
  export declare function hasBuilderContentUrl(sys: DevToolsSys, opts: {
3
9
  publicApiKey: string;
4
10
  privateAuthKey: string;