@myissue/vue-website-page-builder 3.2.13 → 3.2.16

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.
@@ -95,7 +95,7 @@ export interface PageBuilderUser {
95
95
  export interface PageBuilderConfig {
96
96
  updateOrCreate?: {
97
97
  formType: 'create' | 'update'
98
- createNewResourceFormName?: string
98
+ formName?: string
99
99
  }
100
100
  pageBuilderLogo?: { src: string } | null
101
101
  resourceData?: { title: string; id: number } | null
@@ -107,6 +107,10 @@ export interface PageBuilderConfig {
107
107
  autoSave: boolean
108
108
  [key: string]: unknown
109
109
  } | null
110
+ settings?: {
111
+ brandColor: string
112
+ [key: string]: unknown
113
+ } | null
110
114
  }
111
115
  // Tailwind utility interfaces
112
116
  export interface TailwindColors {