@wix/auto_sdk_data-extension-schema_schemas 1.0.38 → 1.0.39
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +16 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +16 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +16 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +16 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -12275,8 +12275,16 @@ interface EditorReactComponent {
|
|
|
12275
12275
|
archetype?: ArchetypeWithLiterals;
|
|
12276
12276
|
}
|
|
12277
12277
|
interface Resources {
|
|
12278
|
-
/** The bundle we will load and render in the browser */
|
|
12278
|
+
/** The bundle we will load and render in the browser in the site */
|
|
12279
12279
|
client?: ClientResources;
|
|
12280
|
+
/**
|
|
12281
|
+
* An optional client definition of the component we will load and render in the editor, *it replaces the client bundle.*
|
|
12282
|
+
* The main use case is to control the live site component and enable different experiences in the editor.
|
|
12283
|
+
* For example, supporting `states` manipulation:
|
|
12284
|
+
* Show calendar in the editor
|
|
12285
|
+
* Open drop down in the editor
|
|
12286
|
+
*/
|
|
12287
|
+
editor?: ClientResources;
|
|
12280
12288
|
/** The bundle for SSR, should not include any DOM API references */
|
|
12281
12289
|
server?: Resource;
|
|
12282
12290
|
/** The optional component SDK to expose to Velo Users to interact with the component */
|
|
@@ -12288,7 +12296,7 @@ interface Resources {
|
|
|
12288
12296
|
}
|
|
12289
12297
|
interface ClientResources {
|
|
12290
12298
|
/**
|
|
12291
|
-
* A URL to a
|
|
12299
|
+
* A URL to a ESM javascript bundle. It's default export should be the component
|
|
12292
12300
|
* @format WEB_URL
|
|
12293
12301
|
*/
|
|
12294
12302
|
componentUrl?: string;
|
|
@@ -12297,6 +12305,12 @@ interface ClientResources {
|
|
|
12297
12305
|
* @format WEB_URL
|
|
12298
12306
|
*/
|
|
12299
12307
|
cssUrl?: string | null;
|
|
12308
|
+
/**
|
|
12309
|
+
* A list of service depedencies required by the component, example: ['@wix/environemt']
|
|
12310
|
+
* @maxLength 80
|
|
12311
|
+
* @maxSize 20
|
|
12312
|
+
*/
|
|
12313
|
+
serviceDependencies?: string[];
|
|
12300
12314
|
}
|
|
12301
12315
|
interface Resource {
|
|
12302
12316
|
/**
|