@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.
@@ -3229,6 +3229,7 @@ interface WixApiOptions {
3229
3229
  */
3230
3230
  methodName?: string;
3231
3231
  }
3232
+ /** disable-flynt renamed-field-breaking-change */
3232
3233
  interface ActionSPIConfigImplementedMethods {
3233
3234
  /** Implements ValidateConfiguration */
3234
3235
  validateConfiguration?: boolean;
@@ -3252,8 +3253,8 @@ interface ActionSPIConfigImplementedMethods {
3252
3253
  mergeInputMappings?: boolean;
3253
3254
  /** Implements GetDynamicOutputSchema */
3254
3255
  getDynamicOutputSchema?: boolean;
3255
- /** Implements GenerateInputMappingFromLLM */
3256
- generateInputMappingFromLlm?: boolean;
3256
+ /** Implements GenerateInputMappingFromIntent */
3257
+ generateInputMappingFromIntent?: boolean;
3257
3258
  }
3258
3259
  declare enum ExecutionType {
3259
3260
  UNKNOWN_EXECUTION_TYPE = "UNKNOWN_EXECUTION_TYPE",
@@ -12257,8 +12258,16 @@ interface EditorReactComponent {
12257
12258
  archetype?: ArchetypeWithLiterals;
12258
12259
  }
12259
12260
  interface Resources {
12260
- /** The bundle we will load and render in the browser */
12261
+ /** The bundle we will load and render in the browser in the site */
12261
12262
  client?: ClientResources;
12263
+ /**
12264
+ * An optional client definition of the component we will load and render in the editor, *it replaces the client bundle.*
12265
+ * The main use case is to control the live site component and enable different experiences in the editor.
12266
+ * For example, supporting `states` manipulation:
12267
+ * Show calendar in the editor
12268
+ * Open drop down in the editor
12269
+ */
12270
+ editor?: ClientResources;
12262
12271
  /** The bundle for SSR, should not include any DOM API references */
12263
12272
  server?: Resource;
12264
12273
  /** The optional component SDK to expose to Velo Users to interact with the component */
@@ -12270,7 +12279,7 @@ interface Resources {
12270
12279
  }
12271
12280
  interface ClientResources {
12272
12281
  /**
12273
- * A URL to a UMD javascript bundle
12282
+ * A URL to a ESM javascript bundle. It's default export should be the component
12274
12283
  * @format WEB_URL
12275
12284
  */
12276
12285
  componentUrl?: string;
@@ -12279,6 +12288,12 @@ interface ClientResources {
12279
12288
  * @format WEB_URL
12280
12289
  */
12281
12290
  cssUrl?: string | null;
12291
+ /**
12292
+ * A list of service depedencies required by the component, example: ['@wix/environemt']
12293
+ * @maxLength 80
12294
+ * @maxSize 20
12295
+ */
12296
+ serviceDependencies?: string[];
12282
12297
  }
12283
12298
  interface Resource {
12284
12299
  /**