@wix/auto_sdk_data-extension-schema_schemas 1.0.171 → 1.0.172

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.
@@ -312,7 +312,7 @@ interface AppRuntimeDataCacheEntity {
312
312
  appData?: AppData;
313
313
  /**
314
314
  * @deprecated
315
- * @replacedBy translated_data
315
+ * @replacedBy app_data_translation
316
316
  * @targetRemovalDate 2026-09-30
317
317
  */
318
318
  translatedDataMap?: Record<string, TranslatedData>;
@@ -18896,6 +18896,16 @@ interface AppDataTranslation {
18896
18896
  * @maxLength 8
18897
18897
  */
18898
18898
  languageCode?: string;
18899
+ /**
18900
+ * Represents the ID of the Application
18901
+ * @format GUID
18902
+ */
18903
+ appId?: string;
18904
+ /**
18905
+ * Represents the Version of the Application
18906
+ * @maxLength 50
18907
+ */
18908
+ version?: string;
18899
18909
  /** The translated data of the app for the specific language */
18900
18910
  translatedData?: TranslatedData;
18901
18911
  }