@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.
@@ -315,7 +315,7 @@ interface AppRuntimeDataCacheEntity {
315
315
  appData?: AppData;
316
316
  /**
317
317
  * @deprecated
318
- * @replacedBy translated_data
318
+ * @replacedBy app_data_translation
319
319
  * @targetRemovalDate 2026-09-30
320
320
  */
321
321
  translatedDataMap?: Record<string, TranslatedData>;
@@ -18922,6 +18922,16 @@ interface AppDataTranslation {
18922
18922
  * @maxLength 8
18923
18923
  */
18924
18924
  languageCode?: string;
18925
+ /**
18926
+ * Represents the ID of the Application
18927
+ * @format GUID
18928
+ */
18929
+ appId?: string;
18930
+ /**
18931
+ * Represents the Version of the Application
18932
+ * @maxLength 50
18933
+ */
18934
+ version?: string;
18925
18935
  /** The translated data of the app for the specific language */
18926
18936
  translatedData?: TranslatedData;
18927
18937
  }