@wix/auto_sdk_data-extension-schema_schemas 1.0.37 → 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.
@@ -3246,6 +3246,7 @@ interface WixApiOptions {
3246
3246
  */
3247
3247
  methodName?: string;
3248
3248
  }
3249
+ /** disable-flynt renamed-field-breaking-change */
3249
3250
  interface ActionSPIConfigImplementedMethods {
3250
3251
  /** Implements ValidateConfiguration */
3251
3252
  validateConfiguration?: boolean;
@@ -3269,8 +3270,8 @@ interface ActionSPIConfigImplementedMethods {
3269
3270
  mergeInputMappings?: boolean;
3270
3271
  /** Implements GetDynamicOutputSchema */
3271
3272
  getDynamicOutputSchema?: boolean;
3272
- /** Implements GenerateInputMappingFromLLM */
3273
- generateInputMappingFromLlm?: boolean;
3273
+ /** Implements GenerateInputMappingFromIntent */
3274
+ generateInputMappingFromIntent?: boolean;
3274
3275
  }
3275
3276
  declare enum ExecutionType {
3276
3277
  UNKNOWN_EXECUTION_TYPE = "UNKNOWN_EXECUTION_TYPE",
@@ -12274,8 +12275,16 @@ interface EditorReactComponent {
12274
12275
  archetype?: ArchetypeWithLiterals;
12275
12276
  }
12276
12277
  interface Resources {
12277
- /** The bundle we will load and render in the browser */
12278
+ /** The bundle we will load and render in the browser in the site */
12278
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;
12279
12288
  /** The bundle for SSR, should not include any DOM API references */
12280
12289
  server?: Resource;
12281
12290
  /** The optional component SDK to expose to Velo Users to interact with the component */
@@ -12287,7 +12296,7 @@ interface Resources {
12287
12296
  }
12288
12297
  interface ClientResources {
12289
12298
  /**
12290
- * A URL to a UMD javascript bundle
12299
+ * A URL to a ESM javascript bundle. It's default export should be the component
12291
12300
  * @format WEB_URL
12292
12301
  */
12293
12302
  componentUrl?: string;
@@ -12296,6 +12305,12 @@ interface ClientResources {
12296
12305
  * @format WEB_URL
12297
12306
  */
12298
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[];
12299
12314
  }
12300
12315
  interface Resource {
12301
12316
  /**