@wix/auto_sdk_data-extension-schema_schemas 1.0.51 → 1.0.53

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.
@@ -15763,7 +15763,7 @@ interface AppData {
15763
15763
  appType?: string;
15764
15764
  /**
15765
15765
  * Represents the Component data enriched with translations and overrides
15766
- * @maxSize 300
15766
+ * @maxSize 330
15767
15767
  */
15768
15768
  components?: RuntimeComponentCacheEntity[];
15769
15769
  /**
@@ -15790,6 +15790,8 @@ interface AppData {
15790
15790
  * @maxLength 50
15791
15791
  */
15792
15792
  fullVersion?: string | null;
15793
+ /** Indicates if the app is HIPAA compliant */
15794
+ hipaaCompliant?: boolean | null;
15793
15795
  }
15794
15796
  interface TranslatedData {
15795
15797
  name?: string | null;
@@ -286,6 +286,12 @@ function resolveWixInfraDataextensionsV1DataExtensionSchemaServiceUrl(opts) {
286
286
  srcPath: "/schema-service",
287
287
  destPath: ""
288
288
  }
289
+ ],
290
+ "*.dev.wix-code.com": [
291
+ {
292
+ srcPath: "/schema-service",
293
+ destPath: ""
294
+ }
289
295
  ]
290
296
  };
291
297
  return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));