@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.
@@ -319,7 +319,7 @@ interface AppRuntimeDataCacheEntity {
319
319
  appData?: AppData;
320
320
  /**
321
321
  * @deprecated
322
- * @replacedBy translated_data
322
+ * @replacedBy app_data_translation
323
323
  * @targetRemovalDate 2026-09-30
324
324
  */
325
325
  translatedDataMap?: Record<string, TranslatedData>;
@@ -18913,6 +18913,16 @@ interface AppDataTranslation {
18913
18913
  * @maxLength 8
18914
18914
  */
18915
18915
  languageCode?: string;
18916
+ /**
18917
+ * Represents the ID of the Application
18918
+ * @format GUID
18919
+ */
18920
+ appId?: string;
18921
+ /**
18922
+ * Represents the Version of the Application
18923
+ * @maxLength 50
18924
+ */
18925
+ version?: string;
18916
18926
  /** The translated data of the app for the specific language */
18917
18927
  translatedData?: TranslatedData;
18918
18928
  }