@builder.io/sdk-solid 3.0.5 → 3.0.6

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/index.d.ts CHANGED
@@ -229,6 +229,7 @@ interface Input {
229
229
  * Use optionally with inputs of type `reference`. Restricts the content entry picker to a specific model by name.
230
230
  */
231
231
  model?: string;
232
+ behavior?: string;
232
233
  valueType?: {
233
234
  type?: string;
234
235
  };
@@ -779,6 +780,11 @@ declare const _default: solid_js.Context<{
779
780
  model: string;
780
781
  }>;
781
782
 
783
+ interface UserAttributes {
784
+ [key: string]: any;
785
+ }
786
+ declare const setClientUserAttributes: (attributes: UserAttributes) => void;
787
+
782
788
  type QueryObject = Record<string, string | string[]>;
783
789
  type Search = URLSearchParams | string | QueryObject;
784
790
 
@@ -1104,4 +1110,4 @@ declare const _processContentResult: (options: GetContentOptions, content: Conte
1104
1110
  */
1105
1111
  declare function fetchEntries(options: GetContentOptions): Promise<BuilderContent[]>;
1106
1112
 
1107
- export { Blocks, BlocksProps, BuilderBlock, BuilderContent, _default as BuilderContext, BuilderContextInterface, Button, ButtonProps, ColumnProps, Columns, ComponentInfo, ContentVariants as Content, ContentVariantsPrps as ContentProps, FragmentComponent as Fragment, FragmentProps, GetContentOptions, Image, ImageProps, InsertMenuConfig, InsertMenuItem, RegisteredComponent, RegisteredComponents, SectionComponent as Section, SectionProps, Settings, Symbol, SymbolProps, Text, TextProps, Video, VideoProps, _processContentResult, createRegisterComponentMessage, fetchBuilderProps, fetchEntries, fetchOneEntry, getBuilderSearchParams, isEditing, isPreviewing, register, setEditorSettings, subscribeToEditor, track };
1113
+ export { Blocks, BlocksProps, BuilderBlock, BuilderContent, _default as BuilderContext, BuilderContextInterface, Button, ButtonProps, ColumnProps, Columns, ComponentInfo, ContentVariants as Content, ContentVariantsPrps as ContentProps, FragmentComponent as Fragment, FragmentProps, GetContentOptions, Image, ImageProps, InsertMenuConfig, InsertMenuItem, RegisteredComponent, RegisteredComponents, SectionComponent as Section, SectionProps, Settings, Symbol, SymbolProps, Text, TextProps, Video, VideoProps, _processContentResult, createRegisterComponentMessage, fetchBuilderProps, fetchEntries, fetchOneEntry, getBuilderSearchParams, isEditing, isPreviewing, register, setClientUserAttributes, setEditorSettings, subscribeToEditor, track };