@salesforce/plugin-omnistudio-migration-tool 2.0.0-rc.6 → 2.0.0-rc.61

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.
Files changed (252) hide show
  1. package/README.md +165 -73
  2. package/lib/commands/omnistudio/migration/assess.d.ts +23 -15
  3. package/lib/commands/omnistudio/migration/assess.js +250 -89
  4. package/lib/commands/omnistudio/migration/assess.js.map +1 -1
  5. package/lib/commands/omnistudio/migration/clean.d.ts +13 -0
  6. package/lib/commands/omnistudio/migration/clean.js +162 -0
  7. package/lib/commands/omnistudio/migration/clean.js.map +1 -0
  8. package/lib/commands/omnistudio/migration/info.d.ts +10 -16
  9. package/lib/commands/omnistudio/migration/info.js +53 -35
  10. package/lib/commands/omnistudio/migration/info.js.map +1 -1
  11. package/lib/commands/omnistudio/migration/migrate.d.ts +78 -18
  12. package/lib/commands/omnistudio/migration/migrate.js +461 -175
  13. package/lib/commands/omnistudio/migration/migrate.js.map +1 -1
  14. package/lib/error/deploymentErrors.d.ts +15 -0
  15. package/lib/error/deploymentErrors.js +35 -0
  16. package/lib/error/deploymentErrors.js.map +1 -0
  17. package/lib/error/errorInterfaces.d.ts +5 -0
  18. package/lib/error/errorInterfaces.js +9 -1
  19. package/lib/error/errorInterfaces.js.map +1 -1
  20. package/lib/javascripts/reportGeneratorUtility.js +585 -22
  21. package/lib/migration/ApexNamespaceRegistry.d.ts +49 -0
  22. package/lib/migration/ApexNamespaceRegistry.js +130 -0
  23. package/lib/migration/ApexNamespaceRegistry.js.map +1 -0
  24. package/lib/migration/CustomCssRegistry.d.ts +117 -0
  25. package/lib/migration/CustomCssRegistry.js +234 -0
  26. package/lib/migration/CustomCssRegistry.js.map +1 -0
  27. package/lib/migration/NameMappingRegistry.d.ts +134 -0
  28. package/lib/migration/NameMappingRegistry.js +411 -0
  29. package/lib/migration/NameMappingRegistry.js.map +1 -0
  30. package/lib/migration/base.d.ts +8 -6
  31. package/lib/migration/base.js +25 -8
  32. package/lib/migration/base.js.map +1 -1
  33. package/lib/migration/customLabels.d.ts +70 -0
  34. package/lib/migration/customLabels.js +177 -0
  35. package/lib/migration/customLabels.js.map +1 -0
  36. package/lib/migration/dataraptor.d.ts +13 -0
  37. package/lib/migration/dataraptor.js +205 -80
  38. package/lib/migration/dataraptor.js.map +1 -1
  39. package/lib/migration/deployer.d.ts +14 -0
  40. package/lib/migration/deployer.js +105 -0
  41. package/lib/migration/deployer.js.map +1 -0
  42. package/lib/migration/flexcard.d.ts +256 -6
  43. package/lib/migration/flexcard.js +1808 -268
  44. package/lib/migration/flexcard.js.map +1 -1
  45. package/lib/migration/globalautonumber.d.ts +8 -8
  46. package/lib/migration/globalautonumber.js +49 -24
  47. package/lib/migration/globalautonumber.js.map +1 -1
  48. package/lib/migration/interfaces.d.ts +14 -0
  49. package/lib/migration/interfaces.js.map +1 -1
  50. package/lib/migration/metadataobjnamecheck.js.map +1 -1
  51. package/lib/migration/omniscript.d.ts +218 -4
  52. package/lib/migration/omniscript.js +1709 -247
  53. package/lib/migration/omniscript.js.map +1 -1
  54. package/lib/migration/omniscriptInstance.d.ts +90 -0
  55. package/lib/migration/omniscriptInstance.js +755 -0
  56. package/lib/migration/omniscriptInstance.js.map +1 -0
  57. package/lib/migration/postMigrate.d.ts +20 -4
  58. package/lib/migration/postMigrate.js +199 -12
  59. package/lib/migration/postMigrate.js.map +1 -1
  60. package/lib/migration/premigrate.d.ts +51 -0
  61. package/lib/migration/premigrate.js +325 -0
  62. package/lib/migration/premigrate.js.map +1 -0
  63. package/lib/migration/related/ApexMigration.d.ts +3 -0
  64. package/lib/migration/related/ApexMigration.js +222 -56
  65. package/lib/migration/related/ApexMigration.js.map +1 -1
  66. package/lib/migration/related/ExperienceSiteMigration.d.ts +30 -5
  67. package/lib/migration/related/ExperienceSiteMigration.js +263 -73
  68. package/lib/migration/related/ExperienceSiteMigration.js.map +1 -1
  69. package/lib/migration/related/FlexipageMigration.d.ts +5 -5
  70. package/lib/migration/related/FlexipageMigration.js +60 -38
  71. package/lib/migration/related/FlexipageMigration.js.map +1 -1
  72. package/lib/migration/related/LwcMigration.js +45 -26
  73. package/lib/migration/related/LwcMigration.js.map +1 -1
  74. package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js +48 -32
  75. package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js.map +1 -1
  76. package/lib/styles/reportGenerator.css +241 -16
  77. package/lib/templates/assessmentReport.template +78 -8
  78. package/lib/templates/dashboard.template +86 -57
  79. package/lib/templates/migrationReport.template +151 -0
  80. package/lib/utils/OmnistudioSettingsPrefManager.d.ts +14 -0
  81. package/lib/utils/OmnistudioSettingsPrefManager.js +112 -0
  82. package/lib/utils/OmnistudioSettingsPrefManager.js.map +1 -0
  83. package/lib/utils/XMLUtil.js +2 -1
  84. package/lib/utils/XMLUtil.js.map +1 -1
  85. package/lib/utils/apex/executor/AnonymousApexRunner.d.ts +1 -1
  86. package/lib/utils/apex/parser/apexparser.d.ts +8 -1
  87. package/lib/utils/apex/parser/apexparser.js +79 -13
  88. package/lib/utils/apex/parser/apexparser.js.map +1 -1
  89. package/lib/utils/config/ExistingRecordCleanupService.d.ts +30 -0
  90. package/lib/utils/config/ExistingRecordCleanupService.js +266 -0
  91. package/lib/utils/config/ExistingRecordCleanupService.js.map +1 -0
  92. package/lib/utils/config/OmniStudioMetadataCleanupService.d.ts +36 -0
  93. package/lib/utils/config/OmniStudioMetadataCleanupService.js +123 -0
  94. package/lib/utils/config/OmniStudioMetadataCleanupService.js.map +1 -0
  95. package/lib/utils/config/SpecialCharacterRecordCleanupService.d.ts +17 -0
  96. package/lib/utils/config/SpecialCharacterRecordCleanupService.js +186 -0
  97. package/lib/utils/config/SpecialCharacterRecordCleanupService.js.map +1 -0
  98. package/lib/utils/constants/documentRegistry.d.ts +9 -17
  99. package/lib/utils/constants/documentRegistry.js +9 -17
  100. package/lib/utils/constants/documentRegistry.js.map +1 -1
  101. package/lib/utils/constants/stringContants.d.ts +78 -0
  102. package/lib/utils/constants/stringContants.js +91 -4
  103. package/lib/utils/constants/stringContants.js.map +1 -1
  104. package/lib/utils/customLabels.d.ts +35 -0
  105. package/lib/utils/customLabels.js +100 -0
  106. package/lib/utils/customLabels.js.map +1 -0
  107. package/lib/utils/dataModelService.d.ts +18 -0
  108. package/lib/utils/dataModelService.js +72 -0
  109. package/lib/utils/dataModelService.js.map +1 -0
  110. package/lib/utils/file/fileUtil.d.ts +3 -1
  111. package/lib/utils/file/fileUtil.js +30 -13
  112. package/lib/utils/file/fileUtil.js.map +1 -1
  113. package/lib/utils/flexipage/flexiPageTransformer.js +119 -23
  114. package/lib/utils/flexipage/flexiPageTransformer.js.map +1 -1
  115. package/lib/utils/formula/FormulaUtil.d.ts +1 -1
  116. package/lib/utils/formula/FormulaUtil.js +17 -9
  117. package/lib/utils/formula/FormulaUtil.js.map +1 -1
  118. package/lib/utils/formula/Stack.js.map +1 -1
  119. package/lib/utils/generatePackageXml.d.ts +6 -2
  120. package/lib/utils/generatePackageXml.js +73 -33
  121. package/lib/utils/generatePackageXml.js.map +1 -1
  122. package/lib/utils/index.d.ts +1 -0
  123. package/lib/utils/index.js +1 -0
  124. package/lib/utils/index.js.map +1 -1
  125. package/lib/utils/interfaces.d.ts +69 -8
  126. package/lib/utils/json/jsonutil.js.map +1 -1
  127. package/lib/utils/logger/fileLogger.js +17 -7
  128. package/lib/utils/logger/fileLogger.js.map +1 -1
  129. package/lib/utils/logger.d.ts +3 -3
  130. package/lib/utils/logger.js +10 -6
  131. package/lib/utils/logger.js.map +1 -1
  132. package/lib/utils/logging/debugtimer.js.map +1 -1
  133. package/lib/utils/lwcparser/fileutils/FileDiffUtil.js +30 -22
  134. package/lib/utils/lwcparser/fileutils/FileDiffUtil.js.map +1 -1
  135. package/lib/utils/lwcparser/fileutils/FileProcessorFactory.js.map +1 -1
  136. package/lib/utils/lwcparser/fileutils/HtmlFileProcessor.js.map +1 -1
  137. package/lib/utils/lwcparser/fileutils/JavascriptFileProcessor.js.map +1 -1
  138. package/lib/utils/lwcparser/fileutils/XmlFileProcessor.js.map +1 -1
  139. package/lib/utils/lwcparser/htmlParser/HTMLParser.js +29 -10
  140. package/lib/utils/lwcparser/htmlParser/HTMLParser.js.map +1 -1
  141. package/lib/utils/lwcparser/jsParser/JavaScriptParser.js +29 -11
  142. package/lib/utils/lwcparser/jsParser/JavaScriptParser.js.map +1 -1
  143. package/lib/utils/lwcparser/xmlParser/XmlParser.js +19 -8
  144. package/lib/utils/lwcparser/xmlParser/XmlParser.js.map +1 -1
  145. package/lib/utils/net/index.d.ts +5 -0
  146. package/lib/utils/net/index.js +40 -2
  147. package/lib/utils/net/index.js.map +1 -1
  148. package/lib/utils/omniscriptPackageManager.d.ts +31 -0
  149. package/lib/utils/omniscriptPackageManager.js +215 -0
  150. package/lib/utils/omniscriptPackageManager.js.map +1 -0
  151. package/lib/utils/orgPreferences.d.ts +25 -0
  152. package/lib/utils/orgPreferences.js +124 -8
  153. package/lib/utils/orgPreferences.js.map +1 -1
  154. package/lib/utils/orgUtils/index.d.ts +12 -5
  155. package/lib/utils/orgUtils/index.js +52 -22
  156. package/lib/utils/orgUtils/index.js.map +1 -1
  157. package/lib/utils/projectPathUtil.d.ts +1 -1
  158. package/lib/utils/projectPathUtil.js +27 -10
  159. package/lib/utils/projectPathUtil.js.map +1 -1
  160. package/lib/utils/promptUtil.d.ts +11 -1
  161. package/lib/utils/promptUtil.js +92 -0
  162. package/lib/utils/promptUtil.js.map +1 -1
  163. package/lib/utils/query/index.d.ts +1 -0
  164. package/lib/utils/query/index.js +18 -1
  165. package/lib/utils/query/index.js.map +1 -1
  166. package/lib/utils/recordPrioritization.d.ts +44 -0
  167. package/lib/utils/recordPrioritization.js +69 -0
  168. package/lib/utils/recordPrioritization.js.map +1 -0
  169. package/lib/utils/reportGenerator/reportInterfaces.d.ts +12 -0
  170. package/lib/utils/reportGenerator/reportUtil.d.ts +6 -1
  171. package/lib/utils/reportGenerator/reportUtil.js +22 -7
  172. package/lib/utils/reportGenerator/reportUtil.js.map +1 -1
  173. package/lib/utils/resultsbuilder/ApexAssessmentReporter.d.ts +1 -0
  174. package/lib/utils/resultsbuilder/ApexAssessmentReporter.js +40 -17
  175. package/lib/utils/resultsbuilder/ApexAssessmentReporter.js.map +1 -1
  176. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.d.ts +13 -0
  177. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.js +179 -0
  178. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.js.map +1 -0
  179. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.d.ts +27 -0
  180. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.js +262 -0
  181. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.js.map +1 -0
  182. package/lib/utils/resultsbuilder/DRAssessmentReporter.js +38 -70
  183. package/lib/utils/resultsbuilder/DRAssessmentReporter.js.map +1 -1
  184. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.d.ts +14 -0
  185. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.js +143 -0
  186. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.js.map +1 -0
  187. package/lib/utils/resultsbuilder/FlexcardAssessmentReporter.js +46 -85
  188. package/lib/utils/resultsbuilder/FlexcardAssessmentReporter.js.map +1 -1
  189. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.d.ts +1 -0
  190. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.js +37 -19
  191. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.js.map +1 -1
  192. package/lib/utils/resultsbuilder/GlobalAutoNumberAssessmentReporter.js +22 -14
  193. package/lib/utils/resultsbuilder/GlobalAutoNumberAssessmentReporter.js.map +1 -1
  194. package/lib/utils/resultsbuilder/IPAssessmentReporter.js +38 -71
  195. package/lib/utils/resultsbuilder/IPAssessmentReporter.js.map +1 -1
  196. package/lib/utils/resultsbuilder/LWCAssessmentReporter.d.ts +14 -0
  197. package/lib/utils/resultsbuilder/LWCAssessmentReporter.js +143 -139
  198. package/lib/utils/resultsbuilder/LWCAssessmentReporter.js.map +1 -1
  199. package/lib/utils/resultsbuilder/OSAssessmentReporter.js +41 -88
  200. package/lib/utils/resultsbuilder/OSAssessmentReporter.js.map +1 -1
  201. package/lib/utils/resultsbuilder/SaveForLaterAssessmentReporter.d.ts +12 -0
  202. package/lib/utils/resultsbuilder/SaveForLaterAssessmentReporter.js +109 -0
  203. package/lib/utils/resultsbuilder/SaveForLaterAssessmentReporter.js.map +1 -0
  204. package/lib/utils/resultsbuilder/assessmentReporter.d.ts +16 -6
  205. package/lib/utils/resultsbuilder/assessmentReporter.js +96 -152
  206. package/lib/utils/resultsbuilder/assessmentReporter.js.map +1 -1
  207. package/lib/utils/resultsbuilder/helpers/AssessmentReportHelper.d.ts +104 -0
  208. package/lib/utils/resultsbuilder/helpers/AssessmentReportHelper.js +380 -0
  209. package/lib/utils/resultsbuilder/helpers/AssessmentReportHelper.js.map +1 -0
  210. package/lib/utils/resultsbuilder/index.d.ts +37 -1
  211. package/lib/utils/resultsbuilder/index.js +582 -151
  212. package/lib/utils/resultsbuilder/index.js.map +1 -1
  213. package/lib/utils/resultsbuilder/reportingHelper.d.ts +2 -7
  214. package/lib/utils/resultsbuilder/reportingHelper.js +0 -43
  215. package/lib/utils/resultsbuilder/reportingHelper.js.map +1 -1
  216. package/lib/utils/sfcli/project/sfProject.d.ts +29 -0
  217. package/lib/utils/sfcli/project/sfProject.js +220 -2
  218. package/lib/utils/sfcli/project/sfProject.js.map +1 -1
  219. package/lib/utils/shell/cli.js +20 -14
  220. package/lib/utils/shell/cli.js.map +1 -1
  221. package/lib/utils/storageUtil.d.ts +14 -1
  222. package/lib/utils/storageUtil.js +31 -1
  223. package/lib/utils/storageUtil.js.map +1 -1
  224. package/lib/utils/stringUtils.d.ts +24 -0
  225. package/lib/utils/stringUtils.js +76 -9
  226. package/lib/utils/stringUtils.js.map +1 -1
  227. package/lib/utils/templateParser/__tests__/test.js +1 -2
  228. package/lib/utils/templateParser/__tests__/test.js.map +1 -1
  229. package/lib/utils/templateParser/generate.d.ts +1 -1
  230. package/lib/utils/templateParser/generate.js.map +1 -1
  231. package/lib/utils/templateParser/model/elementNode.d.ts +2 -2
  232. package/lib/utils/templateParser/model/elementNode.js +11 -2
  233. package/lib/utils/templateParser/model/elementNode.js.map +1 -1
  234. package/lib/utils/templateParser/model/nodeTypes.js +1 -1
  235. package/lib/utils/templateParser/model/nodeTypes.js.map +1 -1
  236. package/lib/utils/templateParser/util.d.ts +2 -2
  237. package/lib/utils/templateParser/util.js.map +1 -1
  238. package/lib/utils/validatorService.d.ts +14 -0
  239. package/lib/utils/validatorService.js +136 -0
  240. package/lib/utils/validatorService.js.map +1 -0
  241. package/messages/assess.json +220 -103
  242. package/messages/clean.json +40 -0
  243. package/messages/info.json +2 -1
  244. package/messages/migrate.json +314 -102
  245. package/oclif.manifest.json +1 -1
  246. package/package.json +49 -13
  247. package/lib/commands/basecommand.d.ts +0 -8
  248. package/lib/commands/basecommand.js +0 -13
  249. package/lib/commands/basecommand.js.map +0 -1
  250. package/lib/utils/OmniGlobalAutoNumberPrefManager.d.ts +0 -40
  251. package/lib/utils/OmniGlobalAutoNumberPrefManager.js +0 -65
  252. package/lib/utils/OmniGlobalAutoNumberPrefManager.js.map +0 -1
@@ -1,140 +1,257 @@
1
1
  {
2
2
  "examples": [
3
3
  "omnistudio:migration:assess -u orguser@domain.com ",
4
- "omnistudio:migration:assess -u orguser@domain.com --only=dr",
4
+ "omnistudio:migration:assess -u orguser@domain.com --only=dm",
5
5
  "omnistudio:migration:assess -u orguser@domain.com --only=ip",
6
6
  "omnistudio:migration:assess -u orguser@domain.com --only=os",
7
7
  "omnistudio:migration:assess -u orguser@domain.com --only=fc",
8
- "omnistudio:migration:assess -u orguser@domain.com --only=autonumber"
8
+ "omnistudio:migration:assess -u orguser@domain.com --only=cl",
9
+ "omnistudio:migration:assess -u orguser@domain.com --only=autonumber",
10
+ "omnistudio:migration:assess -u orguser@domain.com --only=sfl",
11
+ "omnistudio:migration:assess -u orguser@domain.com --relatedobjects apex,lwc,flexipage,expsites",
12
+ "omnistudio:migration:assess -u orguser@domain.com -r apex,lwc,flexipage,expsites"
9
13
  ],
10
- "commandDescription": "Assess migration of omnistudio components from custom objects to standard objects",
11
- "namespaceFlagDescription": "The namespaced of the package",
12
- "apiVersionFlagDescription": "The Salesforce API version to use",
13
- "errorNoOrgResults": "No results found for the org '%s'.",
14
- "onlyFlagDescription": "Migrate a single element: os | ip | fc | dr | autonumber",
15
- "invalidOnlyFlag": "Invalid flag, valid options are: os | ip | fc | dr | autonumber",
16
- "couldNotDeactivateOmniProcesses": "Could not deactivate current OmniProcesses",
17
- "couldNotTruncate": "Could not truncate %s",
18
- "couldNotTruncateOmnniProcess": "Could not truncate OmniProcess. Please make sure your OS/IP is not referenced in an OmniScrirpt or Flex Card.",
19
- "invalidNameTypeSubtypeOrLanguage": "Not a valid Name, Type, SubType or Language",
20
- "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same OmniScript",
21
- "invalidDataRaptorName": "Invalid name, can not have special characters",
22
- "duplicatedCardName": "Duplicated Flex Card name",
23
- "duplicatedDrName": "Duplicated DataMapper name",
24
- "duplicatedOSName": "Duplicated OmniScript name",
25
- "duplicatedName": "Duplicated name",
26
- "errorWhileActivatingOs": "Could not activate OmniScript / Integration Procedure: ",
27
- "errorWhileActivatingCard": "Could not activate Card: ",
28
- "errorWhileUploadingCard": "An error ocurred while uploading Card: ",
29
- "errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
14
+ "commandDescription": "If your Omnistudio components are on custom data model, assess the migration of the components from Omnistudio managed package runtime to Omnistudio standard runtime. If your Omnistudio components are on standard data model, assess the updates made to the component names and references.See: https://help.salesforce.com/s/articleView?id=xcloud.os_omnistudio_naming_conventions.htm&type=5",
15
+ "errorNoOrgResults": "No records found in the org '%s' to migrate.",
16
+ "onlyFlagDescription": "Migrate a single component: os | ip | fc | dm | autonumber | cl | sfl",
17
+ "invalidOnlyFlag": "Invalid parameter entered. Select a valid parameter from these options: os | ip | fc | dm | autonumber | cl | sfl",
18
+ "saveForLaterNotSupportedInFoundationPackage": "Save for Later assessment is not supported in Foundation package orgs.",
19
+ "couldNotTruncate": "We couldn't clear all %s records.",
20
+ "couldNotTruncateOmnniProcess": "We couldn't clear all records of your %s because the %s is referenced in an Omniscript or a Flexcard.",
21
+ "invalidOrRepeatingOmniscriptElementNames": "Omniscript with invalid or duplicate element names found. Rename your Omniscript elements and try again.",
22
+ "duplicatedCardName": "Flexcard with duplicate name found in this org. Modify your Flexcard and try again.",
23
+ "duplicatedDrName": "Data Mapper with duplicate name found in this org. Rename your Data Mapper and try again.",
24
+ "duplicatedOSName": "%s with duplicate name, type, subtype, or language found in this org. Modify your %s and try again.",
25
+ "duplicatedName": "Duplicated name %s",
26
+ "lowerVersionDuplicateOmniscriptName": "A %s with name \"%s\" will not be migrated because lower version of same %s will be marked as duplicate, which could lead to conflicts during migration.",
27
+ "errorWhileActivatingOs": "We couldn't activate your %s:",
28
+ "errorWhileActivatingCard": "We couldn't activate your Flexcard:",
29
+ "errorWhileUploadingCard": "We couldn't deploy your Flexcard to your org. Review these errors:",
30
+ "errorWhileCreatingElements": "We couldn't save elements in your Omniscript. Review these errors:",
30
31
  "allVersionsDescription": "Migrate all versions of a component",
31
- "changeMessage": " %s will be changed from %s to %s",
32
- "angularOSWarning": " Angular OmniScript will not be migrated, please convert this to LWC based Omniscript",
33
- "relatedObjectGA": "Please select the type of component to assess: 'apex' for Apex classes, 'lwc' for Lightning Web Components, 'flexipage' for FlexiPages, or 'apex,lwc,flexipage' if you want to include all types.",
34
- "apexLwc": "Please select the type of component to assess: 'apex' for Apex classes.",
35
- "invalidNamespace": "The namespace you have passed is not valid namespace, the valid namespace of your org is ",
36
- "noPackageInstalled": "No package installed on given org.",
37
- "alreadyStandardModel": "The org is already on standard data model.",
38
- "invalidRelatedObjectsOptionGA": "Invalid option provided for -r: %s. Valid options are apex, lwc.",
39
- "invalidRelatedObjectsOption": "Invalid option provided for -r: %s. Valid option is apex.",
40
- "formulaSyntaxError": "There was some problem while updating the formula syntax, please check the all the formula's syntax once : %s",
41
- "errorDuringFlexCardAssessment": "Error during FlexCard assessment",
42
- "errorDuringOmniScriptAssessment": "Error during OmniScript assessment",
43
- "errorDuringGlobalAutoNumberAssessment": "Error during GlobalAutoNumber assessment",
44
- "processingFlexCard": "Processing FlexCard: %s",
45
- "processingDataRaptor": "Processing DataRaptor: %s",
46
- "processingOmniScript": "Processing OmniScript: %s",
47
- "processingGlobalAutoNumber": "Processing GlobalAutoNumber: %s",
48
- "foundDataRaptorsToAssess": "Found %s DataRaptors to assess",
49
- "foundOmniScriptsToAssess": "Found %s OmniScripts and Integration Procedures to assess",
50
- "foundGlobalAutoNumbersToAssess": "Found %s GlobalAutoNumbers to assess",
51
- "startingDataRaptorAssessment": "Starting DataRaptor assessment",
52
- "startingOmniScriptAssessment": "Starting OmniScript assessment",
53
- "startingGlobalAutoNumberAssessment": "Starting GlobalAutoNumber assessment",
54
- "allVersionsInfo": "allVersions : %s",
55
- "assessmentInitialization": "Assessment Initialization: Using namespace: %s",
56
- "apiVersionInfo": "API Version: %s",
32
+ "changeMessage": "The %s %s will be changed from %s to %s",
33
+ "angularOSWarning": "We couldn't migrate Angular Omniscripts. Convert all Angular Omniscripts to LWC Omniscripts, and try again.",
34
+ "customLabelMigrationErrorMessage": "We couldn’t complete the Custom Labels migration. Check your org configuration and confirm it meets the requirements outlined <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_migrate_oma_prereq.htm&type=5' target='_blank'>here</a>.",
35
+ "relatedObjectGA": "Select the component type that you want to migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, 'flexipage' for FlexiPages, 'expsites' for Experience Sites, or 'apex, lwc, flexipage, expsites' if you want to include all types.",
36
+ "noPackageInstalled": "No valid package found in your org.",
37
+ "alreadyStandardModel": "Your org already uses the standard data model.",
38
+ "invalidRelatedObjectsOption": "Invalid entry for -r: %s. Enter either apex, lwc, flexipage or expsites.",
39
+ "relatedFlagsNotSupportedWithOnly": "Related objects [ex: Apex, lwc, expsites and flexipages] are not supported with only flag.",
40
+ "formulaSyntaxError": "We couldn't update the syntax of this formula. Verify the syntax and try again: %s",
41
+ "errorDuringFlexCardAssessment": "We've encountered errors during the Flexcard assessment: %s",
42
+ "errorDuringOmniScriptAssessment": "We've encountered errors during the Omniscript assessment: %s",
43
+ "processingFlexCard": "Processing Flexcards: %s",
44
+ "processingDataRaptor": "Processing Data Mapper: %s",
45
+ "processingOmniScript": "Processing Omniscript: %s",
46
+ "foundDataRaptorsToAssess": "Found %s Data Mappers to assess.",
47
+ "foundOmniScriptsToAssess": "Found %s %s to assess",
48
+ "foundGlobalAutoNumbersToAssess": "Found %s Omni Global Auto Numbers to assess.",
49
+ "startingDataRaptorAssessment": "Starting Data Mapper assessment",
50
+ "startingOmniScriptAssessment": "Starting %s assessment",
51
+ "startingGlobalAutoNumberAssessment": "Starting Omni Global Auto Number assessment",
52
+ "allVersionsInfo": "All versions: %s",
53
+ "assessmentInitialization": "Assessment process started. Using namespace: %s",
54
+ "apiVersionInfo": "API version: %s",
55
+ "unknownNamespace": "A valid namespace is not configured in this org. Configure the namespace and try again",
56
+ "noOmniStudioLicenses": "We couldn’t find Omnistudio licenses in this org. Omnistudio licenses are required for migration assessment",
57
57
  "assessmentTargets": "Assessment targets: %s",
58
58
  "relatedObjectsInfo": "Related objects: %s",
59
59
  "allVersionsFlagInfo": "All versions: %s",
60
- "assessedDataRaptorsCount": "Assessed %s DataRaptors",
61
- "dataRaptorAssessmentCompleted": "DataRaptor assessment completed",
62
- "flexCardAssessment": "FlexCard Assessment",
63
- "assessedFlexCardsCount": "Assessed %s FlexCards",
64
- "flexCardAssessmentCompleted": "FlexCard assessment completed",
60
+ "assessedDataRaptorsCount": "Assessed %s Data Mappers",
61
+ "dataRaptorAssessmentCompleted": "Data Mappers assessment completed",
62
+ "flexCardAssessment": "Flexcards Assessment",
63
+ "assessedFlexCardsCount": "Assessed %s Flexcards",
64
+ "flexCardAssessmentCompleted": "Flexcards assessment completed",
65
65
  "globalAutoNumberAssessment": "GlobalAutoNumber Assessment",
66
66
  "assessedGlobalAutoNumbersCount": "Assessed %s GlobalAutoNumbers",
67
- "globalAutoNumberAssessmentCompleted": "The assessment for Global Auto Number is complete.",
68
- "omniScriptAssessment": "OmniScript and Integration Procedure Assessment",
69
- "assessedOmniScriptsCount": "Assessed %s OmniScripts",
67
+ "globalAutoNumberAssessmentCompleted": "The assessment for Omni Global Auto Number is complete.",
68
+ "omniScriptAssessment": "%s Assessment",
69
+ "assessedOmniScriptsCount": "Assessed %s Omniscripts",
70
70
  "assessedIntegrationProceduresCount": "Assessed %s Integration Procedures",
71
- "omniScriptAssessmentCompleted": "OmniScript and Integration Procedure assessment completed",
72
- "startingFlexCardAssessment": "Starting FlexCard assessment",
73
- "foundFlexCardsToAssess": "Found %s FlexCards to assess",
74
- "startingApexAssessment": "Starting Apex assessment in project path: %s",
75
- "processingApexFilesForAssessment": "Processing Apex files for assessment",
76
- "successfullyProcessedApexFilesForAssessment": "Successfully processed %s Apex files for assessment",
77
- "apexAssessmentResults": "Apex assessment results: %s",
71
+ "omniScriptAssessmentCompleted": "%s assessment completed",
72
+ "startingFlexCardAssessment": "Starting Flexcards assessment",
73
+ "foundFlexCardsToAssess": "Found %s Flexcards to assess",
74
+ "startingApexAssessment": "Starting the assessment of Apex class in project path: %s",
75
+ "processingApexFilesForAssessment": "Processing Apex files for assessment.",
76
+ "successfullyProcessedApexFilesForAssessment": "Successfully processed %s Apex files for assessment.",
77
+ "apexAssessmentResults": "Apex class assessment results: %s",
78
78
  "foundApexFilesInDirectory": "Found %s Apex files in directory: %s",
79
79
  "skippingNonApexFile": "Skipping non-Apex file: %s",
80
80
  "processingApexFile": "Processing Apex file: %s",
81
- "skippingApexFileFewChanges": "Skipping Apex file: %s as it has less than 3 changes",
82
- "successfullyProcessedApexFile": "Successfully processed Apex file: %s",
83
- "fileNoOmnistudioCalls": "File %s does not have any omnistudio calls or remote calls. No changes will be applied.",
84
- "fileAlreadyImplementsCallable": "file %s already implements callable no changes will be applied",
85
- "inApexDrNameWillBeUpdated": "In Apex %s DR name %s will be updated to %s",
86
- "startingLwcAssessment": "Starting LWC assessment in project path: %s",
81
+ "skippingApexFileNoChanges": "Skipping the %s Apex file as it has no changes.",
82
+ "successfullyProcessedApexFile": "Successfully processed %s Apex file for assessment.",
83
+ "fileNoOmnistudioCalls": "The %s file doesn't have any Omnistudio calls or remote calls. No changes will be applied.",
84
+ "fileAlreadyImplementsCallable": "The %s file already implements the Callable interface. No changes will be applied.",
85
+ "inApexDrNameWillBeUpdated": "In the %s Apex file, the Data Mapper name, %s, will be updated to %s.",
86
+ "inApexIpNameWillBeUpdated": "In the %s Apex file, the Integration Procedure name, %s, will be updated to %s.",
87
+ "startingLwcAssessment": "Starting LWC assessment in: %s",
87
88
  "processingLwcsForAssessment": "Processing LWCs for assessment",
88
- "successfullyProcessedLwcsForAssessment": "Successfully processed %s LWCs for assessment",
89
+ "successfullyProcessedLwcsForAssessment": "Successfully processed %s LWCs for assessment.",
89
90
  "lwcAssessmentResults": "LWC assessment results: %s",
90
91
  "errorReadingFiles": "Error in reading files",
91
92
  "errorProcessingFiles": "Error in processing files",
92
93
  "startingProcessRelatedObjects": "Starting processRelatedObjects for %s in project path: %s",
93
94
  "errorProcessingApexFile": "Error processing Apex file: %s",
94
- "fileUpdatedToAllowRemoteCalls": "File will be updated to allow remote calls",
95
- "fileUpdatedToAllowCalls": "File will be updated to allow calls",
96
- "fileImplementsVlocityOpenInterface": "File %s implements VlocityOpenInterface no changes will be applied",
97
- "methodCallBundleNameUpdated": "Method call bundle name will be updated in %s for class %s method %s",
98
- "cardNameChangeMessage": "Card name will be changed from %s to %s to follow API naming standards",
99
- "authordNameChangeMessage": "Author name will be changed from %s to %s to follow API naming standards",
100
- "omniScriptNameChangeMessage": "OmniScript reference part %s will be changed to %s during migration.",
101
- "dataRaptorNameChangeMessage": "DataRaptor reference %s will be changed to %s during migration.",
102
- "integrationProcedureNameChangeMessage": "Integration Procedure reference %s will be changed to %s during migration.",
103
- "integrationProcedureManualUpdateMessage": "Integration Procedure reference %s may need manual updates after migration.",
104
- "duplicateCardNameMessage": "Potential duplicate: Another card has the same name %s after name cleaning. This may cause conflicts during migration",
105
- "duplicateGlobalAutoNumberNameMessage": "Potential duplicate: Another Global Auto Number has the same name %s after name cleaning. This may cause conflicts during migration",
106
- "existingApexPrompt": "Do you have a sfdc project that already contains the APEX classes retrieved from your org? [y/n]",
107
- "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved APEX classes:",
95
+ "fileUpdatedToAllowRemoteCalls": "File updated to allow remote calls.",
96
+ "fileUpdatedToAllowCalls": "File updated to allow calls.",
97
+ "fileImplementsVlocityOpenInterface": "The %s file implements VlocityOpenInterface. Changes will be applied.",
98
+ "methodCallBundleNameUpdated": "Method call bundle name will be updated in %s for the %s class and %s method.",
99
+ "cardNameChangeMessage": "The Flexcard name will be changed from %s to %s to adhere to the API naming standards.",
100
+ "authordNameChangeMessage": "The Flexcard author name will be changed from %s to %s to adhere to the naming rules",
101
+ "cardLWCNameChangeMessage": "The Flexcard generated LWC name will be changed from %s to %s to align with Flexcard name change.",
102
+ "customLwcReservedActionKey": "Custom LWC \"%s\" defines a reserved property key \"action\" which is not supported by the core runtime. Manual intervention required to rename this key to a non reserved key before migration.",
103
+ "webPageOmniScriptNavigationDetected": "Detected Omniscript navigation in web page action URL: %s.\n\nIt will be replaced with: %s",
104
+ "webPageOmniScriptUrlMalformedToken": "Detected Omniscript navigation in web page action URL with malformed fragment token(s) [%s]. The token(s) couldn't be URL-decoded and were kept as-is.\nURL: %s.\n\nIt will be replaced with: %s.\nVerify that the rewritten URL points to the intended Omniscript before using this Flexcard in the destination org.",
105
+ "omniScriptNameChangeMessage": "The Omniscript reference name %s will be changed to %s during migration.",
106
+ "dataRaptorNameChangeMessage": "The Data Mapper name will be changed from %s to %s during migration.",
107
+ "integrationProcedureNameChangeMessage": "The Integration Procedure %s will be renamed to %s during migration.",
108
+ "integrationProcedureManualUpdateMessage": "All references to %s in this Integration Procedure must be manually updated after migration.",
109
+ "duplicateCardNameMessage": "A Flexcard with the same name \"%s\" already exists after name cleaning, which could lead to conflicts during migration.",
110
+ "lowerVersionDuplicateCardNameMessage": "A Flexcard with the name \"%s\" will not be migrated because lower version of same card will be marked as duplicate, which could lead to conflicts during migration.",
111
+ "vlocityActionNotSupportedMessage": "The Vlocity Action \"%s\" is not supported in standard runtime FlexCards. This FlexCard cannot be migrated automatically. Reimplement the logic using the FlexCard Action (cardAction) feature.",
112
+ "startingCustomLabelAssessment": "Starting Custom Label assessment",
113
+ "assessedCustomLabelsCount": "Found %s labels that need attention out of %s total",
114
+ "customLabelAssessmentCompleted": "Custom Label assessment completed",
115
+ "errorDuringCustomLabelAssessment": "Error during Custom Label assessment: %s",
116
+ "duplicateGlobalAutoNumberNameMessage": "Potential duplicate: Another Omni Global Auto Number has the same name %s after name cleaning. This may cause conflicts during migration",
117
+ "existingApexPrompt": "Do you have a sfdc project that already contains the related objects retrieved from your org? [y/n]",
118
+ "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved related objects:",
108
119
  "invalidProjectFolderPath": "Provided project folder does not exist. Please provide a valid project folder path",
109
120
  "requestTimedOut": "Request timed out",
110
- "retrieveApexPrompt": "Omnistudio Migration Assistant can connect to your org and retrieve the APEX classes. Provide an empty project folder to store the retrieved APEX classes. Would you like to proceed with the retrieval? [y/n]",
111
- "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve to and process the APEX classes:",
121
+ "retrieveApexPrompt": "Omnistudio Migration Assistant can connect to your org and retrieve the related objects. Provide an empty project folder to store the retrieved related objects. Would you like to proceed with the retrieval? [y/n]:",
122
+ "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve and process the related objects:",
112
123
  "notEmptyProjectFolderPath": "Provided project folder is not empty. Please provide a valid empty project folder name and path",
113
124
  "operationCancelled": "Operation cancelled.",
114
125
  "invalidYesNoResponse": "Invalid response. Please answer y or n.",
115
126
  "notSfdxProjectFolderPath": "Provided folder is not a valid Salesforce DX project. Please select a folder containing sfdx-project.json",
116
- "failedToGetValidProjectPath": "Failed to get valid project path",
117
- "errorRunningAssess": "Error running assess",
127
+ "restrictedFolderName": "Restricted folder name: %s. Do not use 'labels', 'messageChannels', or 'lwc'. Try again with a different name.",
128
+ "errorRunningAssess": "Assessment process failed reason : %s",
118
129
  "enableVerboseOutput": "Enable verbose output",
119
- "apexFileChangesIdentifiedNotApplied": "Changes identified for Apex class %s but not applied (assessment mode)",
120
- "apexFileHasMultipleInterfaces": "File %s has multiple interfaces including Callable, standardizing to System.Callable only",
121
- "apexFileImplementsVlocityOpenInterface2": "File %s implements VlocityOpenInterface2, replacing with System.Callable",
130
+ "apexFileChangesIdentifiedNotApplied": "Changes were identified but not applied for the %s Apex class when the assessment mode was running.",
131
+ "apexFileHasMultipleInterfaces": "The %s file has multiple interfaces, including Callable interfaces. Standardizing the file to use only the System.Callable interface.",
132
+ "apexFileImplementsVlocityOpenInterface2": "The %s file implements VlocityOpenInterface2. Replacing it with the System.Callable interface.",
122
133
  "errorParsingHtmlTemplate": "Error while parsing template",
123
134
  "errorParsingData": "Error while parsing data for template",
124
135
  "errorGeneratingHTML": "Error while generating HTML from template for %s with properties %s",
125
- "unexpectedError": "Unexpected Assessment error",
136
+ "unexpectedError": "We've encountered an unexpected error while running the assessment.",
126
137
  "errorEvaluatingExpression": "Error evaluating expression: %s, %s",
127
- "retrievingFlexiPages": "Retrieving FlexiPages",
128
- "successfullyRetrievedFlexiPages": "Successfully retrieved %s FlexiPages",
138
+ "foundFlexiPages": "Found %s FlexiPages to assess",
129
139
  "assessingFlexiPages": "Assessing FlexiPages",
130
- "completedProcessingAllFlexiPages": "Completed processing all flexipage files. Total processed: %s",
131
- "completedProcessingFlexiPage": "Completed processing %s - Errors: %s",
132
- "processingFlexiPage": "Processing flexipage file: %s",
133
- "startingFlexiPageProcessing": "Starting to process flexipage: %s",
140
+ "completedProcessingAllFlexiPages": "Completed processing all FlexiPages. Total processed: %s",
141
+ "completedProcessingFlexiPage": "Completed processing %s. Errors: %s",
142
+ "processingFlexiPage": "Processing FlexiPage: %s",
143
+ "startingFlexiPageProcessing": "Starting to process FlexiPage: %s",
134
144
  "readFlexiPageContent": "Read file content, size: %s characters",
135
- "updatedModifiedContent": "updated content in file: %s",
136
- "generatedDiffForFile": "Generated diff for file: %s",
137
- "errorProcessingFlexiPage": "Error processing flexipage file: %s, %s",
138
- "flexipagesWithChanges": "Found %s flexipage files with changes",
139
- "migratingFlexiPages": "Migrating FlexiPages"
145
+ "updatedModifiedContent": "updated content in %s file",
146
+ "generatedDiffForFile": "Generated difference for the file: %s",
147
+ "errorProcessingFlexiPage": "Error processing FlexiPage: %s, %s",
148
+ "flexipagesWithChanges": "Found %s FlexiPages with changes",
149
+ "expSitesWithChanges": "Found %s Experience Cloud Sites with changes",
150
+ "migratingFlexiPages": "Migrating FlexiPages",
151
+ "manualInterventionForFlexiPageAsDuplicateKey": "We couldn’t process the %s %s because a duplicate key was found in storage.",
152
+ "experienceSiteMetadataConsent": "Your consent for migrating Experience Cloud sites is %s",
153
+ "experienceSiteConsentNotProvidedWarning": "You’ve not provided consent and your Experience Cloud sites won’t be processed.",
154
+ "relatedObjectsToProcessAfterExpSitesRemoval": "Objects to process after removing expsite are %s.",
155
+ "experienceBundleMetadataAPIAlreadyEnabled": "The ExperienceBundle metadata API is already enabled.",
156
+ "enableExperienceBundleMetadataAPIProgramatically": "Enabling ExperienceBundle metadata API programmatically.",
157
+ "unableToEnableExperienceBundleMetadataAPI": "We couldn’t enable the ExperienceBundle metadata API. Experience Cloud sites won’t be assessed.",
158
+ "relatedObjectsToProcess": "These objects will be processed: %s",
159
+ "consentForExperienceSites": "By proceeding further, you hereby consent to enable the ExperienceBundle metadata API and assess Experience Cloud sites. Do you want to proceed? [y/n]",
160
+ "noRelatedObjects": "No related objects to process",
161
+ "turnOffExperienceBundleAPI": "Turning off the ExperienceBundle metadata API as it was enabled programmatically.",
162
+ "errorRevertingExperienceBundleMetadataAPI": "We couldn’t revert the ExperienceBundle metadata API. Manually revert it in your org.",
163
+ "processingExperienceSites": "Started processing the Experience Cloud site file: %s",
164
+ "experienceSitesProcessingStarted": "Started processing Experience Cloud sites for assessment.",
165
+ "experienceSiteSuccessfullyProcessed": "Successfully processed the Experience Cloud sites for assessment.",
166
+ "readingFile": "Started reading the files",
167
+ "totalFileCount": "The total count of files is %s",
168
+ "skipNonJsonFile": "Skipping non-JSON file %s",
169
+ "experienceSiteWithOmniWrapperSuccessfullyProcessed": "Successfully processed the Experience Cloud site file with a wrapper having the Omnistudio content.",
170
+ "fileNotHavingWrapper": "File doesn’t contain wrapper having Omnistudio content.",
171
+ "errorProcessingExperienceSite": "We’ve encountered an error while processing the Experience Cloud site file",
172
+ "experienceSiteReportingDetails": "Only files with wrapper with Omnistudio content will be shown in the assessment report.",
173
+ "processingFile": "Processing for file",
174
+ "currentRegionOfExperienceSite": "The current region being processed is %s.",
175
+ "omniWrapperFound": "Wrapper with Omnistudio content found.",
176
+ "printUpdatedObject": "Printing the updated object %s.",
177
+ "printDifference": "Printing the difference %s.",
178
+ "updatingFile": "Updating the file content.",
179
+ "processingFlexcardComponent": "Started processing the flexcard component %s",
180
+ "processingOmniscriptComponent": "Started processing the Omnistudio component.",
181
+ "targetData": "The target data is %s.",
182
+ "emptyTargetData": "The Target Name is empty. Check your Experience Cloud site configuration",
183
+ "manualInterventionForExperienceSite": "We couldn’t process the %s component because no key was found.",
184
+ "manualInterventionForExperienceSiteAsFailure": "We couldn’t process the %s component. ",
185
+ "manualInterventionForExperienceSiteAsDuplicateKey": "We couldn’t process the %s component because a duplicate key was found. ",
186
+ "manualInterventionForExperienceSiteConfiguration": "We couldn’t process the %s Experience site because of error in the Experience Cloud site configuration.",
187
+ "updatingStorageForOmniscipt": "Preparing storage for Omniscripts",
188
+ "keyAlreadyInStorage": "The %s %s name already exists in storage.",
189
+ "flexcardStorageProcessingStarted": "Preparing storage for Flexcards.",
190
+ "errorWhileProcessingFlexcardStorage": "We couldn’t process the Flexcard name for storage.",
191
+ "missingInfo": "Info is missing",
192
+ "errorCheckingGlobalAutoNumber": "We couldn't check whether the Omni Global Auto Number setting is enabled: %s. Try again later.",
193
+ "errorMigrationMessage": "Error migrating object: %s",
194
+ "nameMappingUndefined": "Undefined name mapping found",
195
+ "experienceSiteException": "We’ve encountered an exception while processing Experience Cloud sites.",
196
+ "reservedKeysFoundInPropertySet": "The Integration Procedure output uses these reserved keys in the transformation property fields: %s",
197
+ "customCssStylesheetNamespaceWarningOmniScript": "Custom CSS stylesheet '%s' has namespace references, OmniScript styles may break after migration.",
198
+ "customCssStylesheetNamespaceWarningFlexCard": "Custom CSS stylesheet '%s' has namespace references, FlexCard styles may break after migration.",
199
+ "customCssInlineNamespaceWarning": "Custom CSS has namespace references, styles may break after migration.",
200
+ "dataMapperMigrationFailed": "DataMapper migration failed for: %s",
201
+ "dataMapperNameStartsWithNumber": "DataMapper name '%s' starts with a number which causes migration issues. Proposed new name: %s",
202
+ "integrationProcedureTypeEmptyAfterCleaning": "Integration Procedure Type '%s' becomes empty after name cleaning. Please provide a valid Type value.",
203
+ "integrationProcedureSubtypeEmptyAfterCleaning": "Integration Procedure SubType '%s' becomes empty after name cleaning. Please provide a valid SubType value.",
204
+ "apexFileAlreadyHasCallMethod": "File %s already has call method, thus keeping the existing call method intact",
205
+ "errorFetchingCustomLabels": "Error fetching custom labels: %s",
206
+ "customLabelAssessmentSummary": "Custom Label with same name and different value is already exist without namespace.",
207
+ "customLabelWarningSummary": "Custom Label has potential conflicts that need review.",
208
+ "customLabelFailedSummary": "Custom Label assessment failed due to errors.",
209
+ "customLabelNeedsManualInterventionSummary": "Custom Label requires manual intervention for resolution.",
210
+ "generatedCustomLabelAssessmentReportPage": "Generated custom label assessment report page %s of %s with %s labels",
211
+ "manualDeploymentSteps": "<a href='%s' target='_blank'>Please refer to this documentation for manual deployment process</a>",
212
+ "varDeclarationUpdated": "Variable initialization will be updated for target name",
213
+ "ipNameUpdateFailed": "Integration Procedure reference can’t be updated at line %s",
214
+ "dmNameUpdateFailed": "Data Mapper reference can’t be updated at line %s",
215
+ "ipNameReferenceNotFound": "Integration Procedure reference can’t be updated",
216
+ "dmNameReferenceNotFound": "Data Mapper reference can’t be updated",
217
+ "invalidTypeAssessErrorMessage": "We couldn't assess your Omnistudio components in the %s namespace. Select the correct namespace and try again",
218
+ "assessmentSuccessfulMessage": "Migration assessment for org %s is complete and reports are ready for review in the folder %s",
219
+ "errorCheckingOmniStudioMetadata": "Error while checking the Omnistudio settings metadata status: %s.",
220
+ "omniStudioSettingsMetadataAlreadyEnabled": "The Omnistudio Metadata setting is already enabled with standard data model.",
221
+ "missingMandatoryField": "Missing mandatory field: %s for %s",
222
+ "validatingDrVersioningDisabled": "Checking the Data Mapper versioning setting in your org.",
223
+ "drVersioningDisabled": "Proceeding with the assessment as the Data Mapper versioning setting is disabled.",
224
+ "drVersioningEnabled": "We cannot proceed with the assessment as the Data Mapper versioning setting is enabled in your org.",
225
+ "errorValidatingDrVersioning": "Failed to verify the status of the Data Mapper versioning setting. Try again later.",
226
+ "validatingOmniInteractionConfig": "Validating Omni Interaction Configuration",
227
+ "omniInteractionConfigInvalid": "The Omnistudio Migration Assistant cannot assess your components because your org uses unsupported Omni Interaction Configuration settings. See Limitations: https://help.salesforce.com/s/articleView?id=xcloud.os_migrate_about_oma.htm&type=5",
228
+ "queryResultSize": "Query result size: %s",
229
+ "packagesHaveSameValue": "Both TheFirstInstalledOmniPackage and InstalledIndustryPackage have the same value.",
230
+ "packagesHaveDifferentValue": "Both the InstalledIndustryPackage and TheFirstInstalledOmniPackage have different values.",
231
+ "failedToCheckPackagesValue": "Failed to check the value of packages in Omni Interaction Configuration.",
232
+ "omniStudioPermissionsNotEnabled": "The org doesn’t have Omnistudio permissions enabled. These permissions are required to migrate components. You can still run the assessment.",
233
+ "skippingLicenseCheckForAssessment": "Skipping OmniStudio license check for assessment",
234
+ "packageDetails": "Your org contains only the TheFirstInstalledOmniPackage Omni Interaction Configuration.",
235
+ "orgUsecaseDetails": "The org is on %s data model with %s and the Omnistudio Metadata setting turned %s",
236
+ "globalAutoNumberUnSupportedInOmnistudioPackage": "Feature not supported - Omni Global Auto Number is not supported in Omnistudio Foundation package orgs.",
237
+ "omniStudioAllVersionsProcessingConsent": "Org uses the standard data model. All versions of Omnistudio components such as Omniscripts, Data Mappers, Integration Procedures, and Flexcards must be assessed. But you’ve not specified -a or allversions flag in the command. Proceed to assess all versions of the Omnistudio components? [y/n]",
238
+ "omniStudioAllVersionsProcessingConsentNotGiven": "You've not consented to assess all versions of the Omnistudio components. We cannot proceed with the assessment.",
239
+ "omniStudioAllVersionsProcessingConsentGiven": "You've consented to assess all versions of the Omnistudio components.",
240
+ "preparingStorageForMetadataEnabledOrg": "Preparing storage for %s org on standard data model with the Omnistudio Metadata setting turned on.",
241
+ "processingNotRequired": "Assessment is not required for orgs on standard data model with the Omnistudio Metadata setting turned on.",
242
+ "skippingTruncation": "Skipping truncation as the org is on standard data model.",
243
+ "loglevelFlagDeprecated": "loglevel is deprecated. Use --verbose instead",
244
+ "remoteActionNamespaceWarning": "Remote Action \"%s\": remoteClass will be updated from \"%s\" to \"%s\"",
245
+ "apexRemoteDatasourceNamespaceWarning": "ApexRemote datasource: remoteClass will be updated from \"%s\" to \"%s\"",
246
+ "apexClassNotFound": "Apex class \"%s\" referenced in \"%s\" does not exist in the org",
247
+ "cleanupMetadataTablesRequired": "Omnistudio configuration tables contain records. Back up your Omnistudio component table data, and manually clean up the Omnistudio configuration tables. <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_enable_omnistudio_metadata_api_support.htm&type=5' target='_blank'>Learn more about cleaning up tables in Salesforce Help</a>",
248
+ "corruptedParentChildLevel": "%s has elements with corrupted parent-child hierarchy. The following elements have their parent and child persisted at the same level, which will cause data loss after migration: %s. Create a new version of this %s to fix the issue before migrating.",
249
+ "errorOmniProcessWithTypeQuery": "An error occurred calling queryOmniProcessesWithType() during the Save for Later assessment.",
250
+ "omniscriptDoesNotExistOrActivate": "The Omniscript doesn't exist in this org or isn't activated. Verify that the Omniscript exists and is activated in your org.",
251
+ "unableToFindActiveOmniscript": "Unable to find active Omniscript \"%s\".",
252
+ "noOmniscriptFoundForOsInstance": "No Omniscript found for OmniscriptInstance \"%s\"",
253
+ "omniscriptNeedsToBeMigrated": "Omniscript \"%s\" needs to be migrated.",
254
+ "errorDuringSaveForLaterAssessment": "Errors occurred during the Save for Later assessment:",
255
+ "prePostHookAutoEnabled": "PreHook/PostHook will be auto-enabled on Remote Action step(s): %s. A hook implementation is registered for the remote class used by these steps.",
256
+ "cleanupMetadataTablesRequired": "Omnistudio configuration tables contain records. Back up your Omnistudio component table data, and manually clean up the Omnistudio configuration tables. <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_enable_omnistudio_metadata_api_support.htm&type=5' target='_blank'>Learn more about cleaning up tables in Salesforce Help</a>"
140
257
  }
@@ -0,0 +1,40 @@
1
+ {
2
+ "commandDescription": "Deactivates and deletes Omnistudio records (Omniscripts, Integration Procedures, Flexcards, and Data Mappers) that prevent enabling the Omnistudio Metadata API. This includes records with special characters in unique name fields or missing unique names.\n\nWarning: This action is permanent. Run in a testing sandbox and verify results before running in your production environment.",
3
+ "examples": ["sf omnistudio:migration:clean -u orguser@domain.com"],
4
+ "enableVerboseOutput": "Show detailed information in the command output.",
5
+ "sandboxWarning": "IMPORTANT: This command permanently deletes records. Make sure that all Omnistudio components are backed up or deployed to a testing sandbox. Verify all results before enabling the Omnistudio Metadata API in your production environment.",
6
+ "confirmDeletion": "By proceeding, you confirm that you want to deactivate and permanently delete all Omnistudio records with special characters in their unique name fields or those missing a unique name. These records are incompatible with the Metadata API. Do you want to proceed?",
7
+ "operationCancelled": "Operation cancelled. No changes were made.",
8
+ "deletionComplete": "Cleanup complete. All Omnistudio records with special characters and those without a unique name have been removed.",
9
+ "standardDataModelRequired": "This command only supports orgs using the standard data model.",
10
+ "metadataApiAlreadyEnabled": "The Omnistudio metadata API is already enabled. No cleanup is required.",
11
+ "errorRunningClean": "Cleanup failed: %s",
12
+ "specialCharCleanupPhaseStart": "Phase 1: Removing records with special characters in unique name fields.",
13
+ "specialCharCleanupSectionStart": "Scanning %s records...",
14
+ "noSpecialCharRecords": "No %s records found with special characters.",
15
+ "foundSpecialCharRecordsToRemove": "Found %s %s record(s) with special characters to remove.",
16
+ "deactivatingRecords": "Deactivating %s %s record(s)...",
17
+ "deactivatedRecords": "Successfully deactivated %s %s record(s).",
18
+ "deletingRecords": "Deleting %s %s record(s)...",
19
+ "deletedRecords": "Successfully deleted %s %s record(s).",
20
+ "errorRemovingSpecialCharRecords": "Error removing %s records with special characters: %s",
21
+ "nullUniqueNameCleanupPhaseStart": "Phase 2: Removing records without a deployment reference (missing unique names) that prevent enabling the Omnistudio metadata API.",
22
+ "nullUniqueNameCleanupSectionStart": "Scanning %s records for missing unique names...",
23
+ "noNullUniqueNameRecords": "No %s records found with missing unique names.",
24
+ "foundNullUniqueNameRecords": "Found %s %s record(s) with missing unique names.",
25
+ "deactivationFailed": "Failed to deactivate %s (%s): %s",
26
+ "deletionFailed": "Failed to delete %s (%s): %s",
27
+ "errorAssessingSpecialCharRecords": "Error scanning %s records for special characters: %s",
28
+ "errorAssessingNullUniqueNameRecords": "Error scanning %s records with missing unique names: %s",
29
+ "errorCleaningNullUniqueNameRecords": "Error removing %s records with missing unique names: %s",
30
+ "assessFlagDescription": "Preview which records would be removed by the clean command, without making any changes. Results are saved to the 'clean_assessment' folder.",
31
+ "assessPhaseStart": "Starting assessment. Your org will not be modified.",
32
+ "assessSpecialCharPhaseStart": "Phase 1 (Preview): Scanning for records with special characters in unique name fields.",
33
+ "assessNullUniqueNamePhaseStart": "Phase 2 (Preview): Scanning for records without a deployment reference.",
34
+ "assessScanningEntity": "Scanning %s...",
35
+ "assessEntityFound": "Found %s %s record(s) eligible for removal.",
36
+ "assessEntityNone": "No %s records require cleanup.",
37
+ "assessmentFileWritten": "Assessment report saved to: %s",
38
+ "assessmentComplete": "Assessment complete. Review the reports in %s before running the clean command.",
39
+ "assessmentNoRecords": "Your org is clean. No records require removal."
40
+ }
@@ -12,5 +12,6 @@
12
12
  "greetingOrgInfo": "Hello %s! This is org: %s",
13
13
  "greetingOrgInfoWithDate": "Hello %s! This is org: %s and I will be around until %s!",
14
14
  "hubOrgId": "My hub org id is: %s",
15
- "allVersionsAppended": " and all versions will be migrated"
15
+ "allVersionsAppended": " and all versions will be migrated",
16
+ "errorRunningInfo": "Error occurred while running info command"
16
17
  }