@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,111 +1,101 @@
1
1
  {
2
2
  "examples": [
3
3
  "omnistudio:migration:migrate -u orguser@domain.com ",
4
- "omnistudio:migration:migrate -u orguser@domain.com --only=dr",
4
+ "omnistudio:migration:migrate -u orguser@domain.com --only=dm",
5
5
  "omnistudio:migration:migrate -u orguser@domain.com --only=ip",
6
6
  "omnistudio:migration:migrate -u orguser@domain.com --only=os",
7
7
  "omnistudio:migration:migrate -u orguser@domain.com --only=fc",
8
8
  "omnistudio:migration:migrate -u orguser@domain.com --only=autonumber",
9
- "omnistudio:migration:migrate -u orguser@domain.com -r apex,lwc",
9
+ "omnistudio:migration:migrate -u orguser@domain.com --only=cl",
10
+ "omnistudio:migration:migrate -u orguser@domain.com --relatedobjects apex,lwc,flexipage,expsites",
11
+ "omnistudio:migration:migrate -u orguser@domain.com -r apex,lwc,flexipage,expsites",
10
12
  "omnistudio:migration:migrate -u orguser@domain.com -r apex",
11
13
  "omnistudio:migration:migrate -u orguser@domain.com -r lwc"
12
14
  ],
13
- "commandDescription": "Migrate omnistudio components from custom objects to standard objects",
14
- "namespaceFlagDescription": "The namespace of the package",
15
- "apiVersionFlagDescription": "The Salesforce API version to use",
16
- "errorNoOrgResults": "No results found for the org '%s'.",
17
- "onlyFlagDescription": "Migrate a single element: os | ip | fc | dr | autonumber",
18
- "invalidOnlyFlag": "Invalid flag, valid options are: os | ip | fc | dr | autonumber",
19
- "couldNotDeactivateOmniProcesses": "Could not deactivate current OmniProcesses",
20
- "couldNotTruncate": "Could not truncate %s",
21
- "couldNotTruncateOmnniProcess": "Could not truncate OmniProcess. Please make sure your OS/IP is not referenced in an OmniScrirpt or Flex Card.",
22
- "invalidNameTypeSubtypeOrLanguage": "Not a valid Name, Type, SubType or Language",
23
- "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same OmniScript",
24
- "invalidDataRaptorName": "Invalid name, can not have special characters",
25
- "duplicatedCardName": "Duplicated Flex Card name",
26
- "duplicatedDrName": "Duplicated DataMapper name",
27
- "duplicatedOSName": "Duplicated OmniScript name",
28
- "errorWhileActivatingOs": "Could not activate OmniScript / Integration Procedure: ",
29
- "errorWhileActivatingCard": "Could not activate Card: ",
30
- "errorWhileUploadingCard": "An error ocurred while uploading Card: ",
31
- "errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
15
+ "commandDescription": "If your Omnistudio components are on custom data model, migrate the components from custom data model to standard data model, and switch the runtime from Omnistudio managed package runtime to Omnistudio standard runtime. If your Omnistudio components are on standard data model, the component names and references will be updated to contain only alphanumeric characters. This update is required to enable the metadata API. See: https://help.salesforce.com/s/articleView?id=xcloud.os_omnistudio_naming_conventions.htm&type=5",
16
+ "errorNoOrgResults": "No records found in the org '%s' to migrate.",
17
+ "onlyFlagDescription": "Migrate a single component: os | ip | fc | dm | autonumber | cl | sfl",
18
+ "invalidOnlyFlag": "Invalid parameter entered. Select a valid parameter from these options: os | ip | fc | dm | autonumber | cl | sfl",
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
+ "lowerVersionDuplicateCardName": "Flexcard with name %s can't be migrated because lower version of same card is probable duplicate. Rename your Flexcard and try again.",
23
+ "duplicatedCardName": "Flexcard with duplicate name %s found in this org. Rename your Flexcard and try again.",
24
+ "duplicatedDrName": "Data Mapper with duplicate name found in this org. Rename your Data Mapper and try again.",
25
+ "duplicatedOSName": "%s with duplicate name, type, subtype, or language found in this org. Modify your %s and try again.",
26
+ "lowerVersionDuplicateOSName": "%s with name %s can't be migrated because lower version of same %s is probable duplicate. Rename your %s and try again.",
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:",
32
31
  "allVersionsDescription": "Migrate all versions of a component",
33
- "relatedObjectGA": "Please select the type of components 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.",
34
- "apexLwc": "Please select the type of components to migrate: '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
- "userConsentMessage": "By proceeding further, you hereby consent to the use, accept changes to your custom code and the accompanying terms and conditions associated with the use of the OmniStudio Migration Tool. Do you want to proceed? [y/n]",
41
- "userDeclinedConsent": "User declined consent, will not process %s .",
42
- "userConsentedToProceed": "User consented to proceed",
43
- "existingApexPrompt": "Do you have a sfdc project that already contains the APEX classes retrieved from your org? [y/n]",
44
- "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved APEX classes:",
32
+ "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.",
33
+ "noPackageInstalled": "No valid package found in your org.",
34
+ "alreadyStandardModel": "Your org already uses the standard data model.",
35
+ "unknownNamespace": "A valid namespace is not configured in this org. Configure the namespace and try again",
36
+ "noOmniStudioLicenses": "OmniStudio licenses are not found in the org. OmniStudio licenses are required for migration",
37
+ "invalidRelatedObjectsOption": "Invalid option provided for -r: %s. Valid options are apex, lwc, expsites, flexipage.",
38
+ "relatedFlagsNotSupportedWithOnly": "Related objects [ex: Apex, lwc, expsites and flexipages] are not supported with only flag.",
39
+ "userConsentMessage": "By proceeding further, you hereby consent to accept changes to your custom code, and the accompanying terms and conditions associated with the use of the Omnistudio Migration Tool. Do you want to proceed? [y/n]",
40
+ "existingApexPrompt": "Do you have a sfdc project that already contains the related objects retrieved from your org? [y/n]",
41
+ "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved related objects:",
45
42
  "invalidProjectFolderPath": "Provided project folder does not exist. Please provide a valid project folder path",
46
43
  "requestTimedOut": "Request timed out",
47
- "retrieveApexPrompt": "Omnistudio Migration Tool 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]",
48
- "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve to and process the APEX classes:",
44
+ "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]:",
45
+ "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve and process the related objects:",
49
46
  "notEmptyProjectFolderPath": "Provided project folder is not empty. Please provide a valid empty project folder name and path",
50
47
  "invalidYesNoResponse": "Invalid response. Please answer y or n.",
51
48
  "notSfdxProjectFolderPath": "Provided folder is not a valid Salesforce DX project. Please select a folder containing sfdx-project.json",
49
+ "restrictedFolderName": "Restricted folder name: %s. Do not use 'labels', 'messageChannels', or 'lwc'. Try again with a different name.",
52
50
  "operationCancelled": "Operation cancelled.",
53
- "failedToGetValidProjectPath": "Failed to get valid project path",
54
- "errorRunningMigrate": "Error running migrate %s",
55
- "couldNotEnableOmniPreferences": "Could not enable Omni preferences: %s",
56
- "errorSettingDesignersToStandardDataModel": "Error occurred while setting designers to use the standard data model %s",
57
- "exceptionSettingDesignersToStandardDataModel": "Exception occurred while setting designers to use the standard data model %s",
58
- "projectPathConfirmation": "Do you have a sfdc project where %s files are already retrieved from org - y\nor you want tool to create a project omnistudio_migration in current directory for processing - n ? [y/n]",
59
- "enterProjectPath": "Enter the project path for processing %s :",
60
- "projectJsonNotFound": "Could not find any %s in %s.",
61
- "usingProjectPath": "Using project path: %s",
62
- "enterTargetNamespace": "Enter the target namespace to be used for calling package Apex classes",
63
- "usingTargetNamespace": "Using target namespace: %s for calling package Apex classes",
51
+ "errorRunningMigrate": "Migration process failed reason : %s",
52
+ "exceptionSettingDesignersToStandardDataModel": "We've encountered an exception while configuring the Omnistudio standard designers to use the standard data model. Try again later.",
53
+ "enterTargetNamespace": "Enter the target namespace that you want to use for invoking the Apex classes in the package.",
54
+ "usingTargetNamespace": "Using the target namespace %s for invoking the Apex classes in the package.",
64
55
  "cleaningComponent": "Cleaning: %s",
65
- "cleaningDone": "Cleaning Done: %s",
56
+ "cleaningDone": "Cleaning completed: %s",
66
57
  "migratingComponent": "Migrating: %s",
67
- "cleaningFailed": "Cleaning Failed: %s",
58
+ "cleaningFailed": "Omni Global Auto Number pre-migration cleanup failed.",
68
59
  "migrationCompleted": "Migration completed: %s",
69
60
  "migrationFailed": "Migration failed: %s",
70
- "formulaSyntaxError": "There was some problem while updating the formula syntax, please check the all the formula's syntax once : %s",
71
- "foundDataRaptorsToMigrate": "Found %s DataRaptors to migrate",
72
- "foundFlexCardsToMigrate": "Found %s FlexCards to migrate",
73
- "foundOmniScriptsToMigrate": "Found %s OmniScripts and Integration Procedures to migrate",
61
+ "formulaSyntaxError": "We couldn't update the syntax of this formula. Verify the syntax and try again: %s",
62
+ "foundDataRaptorsToMigrate": "Found %s Data Mappers to migrate.",
63
+ "foundFlexCardsToMigrate": "Found %s Flexcards to migrate.",
64
+ "foundOmniScriptsToMigrate": "Found %s %s to migrate.",
74
65
  "foundGlobalAutoNumbersToMigrate": "Found %s GlobalAutoNumbers to migrate",
75
- "allVersionsInfo": "allVersions : %s",
76
- "migrationInitialization": "Migration Initialization: Using namespace: %s",
77
- "apiVersionInfo": "API Version: %s",
66
+ "allVersionsInfo": "All versions : %s",
67
+ "migrationInitialization": "Migration process started. Using namespace: %s",
68
+ "apiVersionInfo": "API version: %s",
78
69
  "migrationTargets": "Migration targets: %s",
79
70
  "relatedObjectsInfo": "Related objects: %s",
80
71
  "allVersionsFlagInfo": "All versions: %s",
81
- "startingApexMigration": "Starting Apex migration in project path: %s",
82
- "processingApexFilesForMigration": "Processing Apex files for migration",
72
+ "startingApexMigration": "Starting the migration of Apex class in project path: %s",
73
+ "processingApexFilesForMigration": "Processing Apex files for migration.",
83
74
  "successfullyProcessedApexFilesForMigration": "Successfully processed %s Apex files for migration",
84
- "apexMigrationResults": "Apex migration results: %s",
85
- "startingLwcMigration": "Starting LWC migration in project path: %s",
75
+ "apexMigrationResults": "Apex class migration results: %s",
76
+ "startingLwcMigration": "Starting LWC migration in: %s",
86
77
  "processingLwcsForMigration": "Processing LWCs for migration",
87
78
  "successfullyProcessedLwcsForMigration": "Successfully processed %s LWCs for migration",
88
79
  "lwcMigrationResults": "LWC migration results: %s",
89
- "inApexDrNameWillBeUpdatedMigration": "In Apex %s DR name %s will be updated to %s",
90
- "retrievingMetadata": "Retrieving metadata for %s in project path: %s",
80
+ "retrievingMetadata": "Retrieving metadata for %s for : %s",
91
81
  "creatingProject": "Creating project %s",
92
82
  "projectCreated": "Project %s created",
93
83
  "metadataRetrieved": "Metadata %s retrieved from %s",
94
84
  "deployingMetadata": "Deploying metadata %s to %s",
95
85
  "metadataDeployed": "Metadata %s deployed to %s",
96
86
  "sfProjectCommandError": "Error executing command: %s",
97
- "multiplePackagesFound": "Multiple OmniStudio packages found. Please select one:",
87
+ "multiplePackagesFound": "Multiple packages found. Select one:",
98
88
  "packageSelectionPrompt": "Enter the number of the package to use (1-%s):",
99
89
  "invalidPackageSelection": "Invalid selection. Please enter a number between 1 and %s.",
100
90
  "selectedPackage": "Selected package: %s (Version: %s)",
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
- "cardAuthorNameChangeMessage": "Card author name has been modified to fit naming rules: %s",
105
- "cardNameChangeMessage": "Card name has been modified to fit naming rules: %s",
106
- "duplicateCardNameMessage": "Potential duplicate: Another card has the same name %s after name cleaning. This may cause conflicts during migration",
107
- "angularOmniscriptWarningMessage": " Angular OmniScript will not be migrated, please convert this to LWC based Omniscript",
108
- "apexFileChangesApplied": "Applied changes to Apex class %s",
91
+ "dataRaptorNameChangeMessage": "The Data Mapper name %s will be renamed to %s during migration.",
92
+ "integrationProcedureNameChangeMessage": "The Integration Procedure %s will be renamed to %s during migration.",
93
+ "integrationProcedureManualUpdateMessage": "All references to %s in this Integration Procedure must be manually updated after migration.",
94
+ "cardAuthorNameChangeMessage": "We've modified the name of this Flexcard author to adhere to the naming rules: %s",
95
+ "cardNameChangeMessage": "We've modified the name of this Flexcard to adhere to the naming rules: %s",
96
+ "duplicateCardNameMessage": "A Flexcard with the same name \"%s\" already exists after name cleaning, which could lead to conflicts during migration.",
97
+ "angularOmniscriptWarningMessage": "We couldn't migrate Angular Omniscripts.",
98
+ "apexFileChangesApplied": "Applied changes to the %s Apex class.",
109
99
  "generatingComponentReports": "Generating report for components",
110
100
  "generatingRelatedObjectReports": "Generating report for related objects",
111
101
  "generatingMigrationReportDashboard": "Generating migration report dashboard",
@@ -113,44 +103,266 @@
113
103
  "errorParsingData": "Error while parsing data for template",
114
104
  "errorGeneratingHTML": "Error while generating HTML from template for %s with properties %s",
115
105
  "errorEvaluatingExpression": "Error evaluating expression: %s, %s",
116
- "manuallySwitchDesignerToStandardDataModel": "To complete the setup, please manually run the required Apex code to configure OmniStudio Designers to use the Standard Data Model <br> https://help.salesforce.com/s/articleView?id=xcloud.os_migrate_change_the_sobject_data_model_after_migration.htm&type=5",
117
- "labelStatusSkipped": "Skipped",
118
- "labelStatusFailed": "Failed",
119
- "labelStatusComplete": "Complete",
120
106
  "migrationConsentNotGiven": "Couldn't confirm whether assessment errors are resolved",
121
- "migrationConsentMessage": "Ensure that all items in the assessment report are marked as Green before proceeding with the migration. Do you want to proceed?",
122
- "retrievingFlexiPages": "Retrieving FlexiPages",
123
- "successfullyRetrievedFlexiPages": "Successfully retrieved %s FlexiPages",
107
+ "foundFlexiPages": "Found %s FlexiPages to migrate",
108
+ "expSitesWithChanges": "Found %s Experience Cloud Sites with changes",
124
109
  "migratingFlexiPages": "Migrating FlexiPages",
125
- "completedProcessingAllFlexiPages": "Completed processing all flexipage files. Total processed: %s",
126
- "completedProcessingFlexiPage": "Completed processing %s - Errors: %s",
127
- "processingFlexiPage": "Processing flexipage file: %s",
128
- "startingFlexiPageProcessing": "Starting to process flexipage: %s",
110
+ "completedProcessingAllFlexiPages": "Completed processing all flexipages. Total processed: %s",
111
+ "completedProcessingFlexiPage": "Completed processing %s. Errors: %s",
112
+ "processingFlexiPage": "Processing FlexiPage: %s",
113
+ "startingFlexiPageProcessing": "Starting to process FlexiPage: %s",
129
114
  "readFlexiPageContent": "Read file content, size: %s characters",
130
- "updatedModifiedContent": "updated content in file: %s",
131
- "generatedDiffForFile": "Generated diff for file: %s",
132
- "errorProcessingFlexiPage": "Error processing flexipage file: %s, %s",
133
- "flexipagesWithChanges": "Found %s flexipage files with changes",
115
+ "updatedModifiedContent": "updated content in %s file",
116
+ "generatedDiffForFile": "Generated difference for the file: %s",
117
+ "errorProcessingFlexiPage": "Error processing FlexiPage: %s, %s",
118
+ "flexipagesWithChanges": "Found %s FlexiPages with changes",
134
119
  "omniGlobalAutoNumberPrefEnabled": "Successfully enabled OmniGlobalAutoNumberPref org preference",
135
- "errorEnablingOmniGlobalAutoNumberPref": "We couldnt enable the Global Auto Number setting. Turn on the Global Auto Number setting manually, and try again. See <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Set Up Omni Global Auto Number</a>.",
136
- "performingPreMigrationChecks": "Performing pre-migration checks for Global Auto Number...",
137
- "preMigrationChecksPassed": "Pre-migration checks passed. Proceeding with Global Auto Number migration.",
120
+ "errorEnablingOmniGlobalAutoNumberPref": "We couldn't enable the Omni Global Auto Number setting. Turn on the Omni Global Auto Number setting manually, and try again. See <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Set Up Omni Global Auto Number</a>.",
121
+ "performingPreMigrationChecks": "Performing pre-migration checks for Omni Global Auto Number.",
122
+ "preMigrationChecksPassed": "Pre-migration checks passed. Proceeding with Omni Global Auto Number migration.",
138
123
  "preMigrationChecksFailed": "Pre-migration checks failed. Migration cannot proceed.",
139
- "globalAutoNumberPrefEnabledError": "The Global Auto Number setting is enabled and global auto numbers have already been migrated.",
140
- "bothRollbackFlagsEnabledError": "We couldnt turn on Global Auto Number. Disable the RollBackDRChanges and RollBackIPChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a>, and try again.",
141
- "rollbackIPFlagEnabledError": "We couldnt turn on Global Auto Number. Disable the RollBackIPChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a> and try again.",
142
- "rollbackDRFlagEnabledError": "We couldnt turn on Global Auto Number. Disable the RollBackDRChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a> and try again.",
143
- "errorCheckingRollbackFlags": "Error checking rollback flags status.",
144
- "startingPostMigrationCleanup": "Starting post-migration cleanup for Global Auto Number...",
124
+ "globalAutoNumberPrefEnabledError": "The Omni Global Auto Number setting is enabled and global auto numbers have already been migrated.",
125
+ "bothRollbackFlagsEnabledError": "We couldn't turn on Omni Global Auto Number. Disable the RollBackDRChanges and RollBackIPChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a>, and try again.",
126
+ "rollbackIPFlagEnabledError": "We couldn't turn on Omni Global Auto Number. Disable the RollBackIPChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a> and try again.",
127
+ "rollbackDRFlagEnabledError": "We couldn't turn on Omni Global Auto Number. Disable the RollBackDRChanges <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_standard_global_auto_number.htm&type=5' target='_blank'>Omni Interaction Configurations</a> and try again.",
128
+ "startingPostMigrationCleanup": "Starting post-migration cleanup for Omni Global Auto Number",
145
129
  "postMigrationCleanupCompleted": "Post-migration cleanup completed successfully.",
146
130
  "errorDuringPostMigrationCleanup": "We’ve encountered an error during the post-migration cleanup. Try again later.",
147
- "duplicatedGlobalAutoNumberName": "Duplicated Global Auto Number name",
148
- "errorWhileUploadingGlobalAutoNumber": "An error occurred while uploading Global Auto Number: ",
149
- "startingGlobalAutoNumberAssessment": "Starting Global Auto Number assessment...",
150
- "foundGlobalAutoNumbersToAssess": "Found %s Global Auto Numbers to assess",
151
- "unexpectedError": "An unexpected error occurred during processing",
131
+ "duplicatedGlobalAutoNumberName": "Duplicated Omni Global Auto Number name",
132
+ "errorWhileUploadingGlobalAutoNumber": "An error occurred while uploading Omni Global Auto Number: ",
133
+ "startingGlobalAutoNumberAssessment": "Starting Omni Global Auto Number assessment...",
134
+ "foundGlobalAutoNumbersToAssess": "Found %s Omni Global Auto Numbers to assess",
135
+ "unexpectedError": "We’ve encountered an unexpected error while running the migration.",
152
136
  "migrationValidationFailed": "The post-migration validation has failed.",
153
- "incompleteMigrationDetected": "We couldn’t complete the migration process",
154
- "errorCheckingGlobalAutoNumber": "We couldn’t check whether the Global Auto Number setting is enabled: %s. Try again later.",
155
- "errorMigrationMessage": "Error migrating object: %s"
137
+ "experienceSiteMetadataConsent": "Your consent for processing Experience Cloud sites is %s",
138
+ "experienceSiteConsentNotProvidedWarning": "You've not provided consent and your Experience Cloud sites won't be migrated.",
139
+ "relatedObjectsToProcessAfterExpSitesRemoval": "Prerequisites for Experience Cloud sites complete. The objects to migrate are %s.",
140
+ "experienceBundleMetadataAPIAlreadyEnabled": "The ExperienceBundle metadata API is already enabled.",
141
+ "enableExperienceBundleMetadataAPIProgramatically": "Enabling ExperienceBundle metadata API programmatically.",
142
+ "unableToEnableExperienceBundleMetadataAPI": "We couldn’t enable the ExperienceBundle metadata API. Experience Cloud sites won’t be processed.",
143
+ "relatedObjectsToProcess": "These objects will be processed: %s",
144
+ "consentForExperienceSites": "By proceeding further, you hereby consent to enable the ExperienceBundle metadata API and migrate Experience Cloud sites. Do you want to proceed? [y/n]",
145
+ "noRelatedObjects": "No related objects to process",
146
+ "turnOffExperienceBundleAPI": "Turning off the ExperienceBundle metadata API as it was enabled programmatically.",
147
+ "errorRevertingExperienceBundleMetadataAPI": "We couldn’t revert the ExperienceBundle metadata API. Manually revert it in your org.",
148
+ "processingExperienceSites": "Started processing the Experience Cloud site file: %s",
149
+ "experienceSitesProcessingStarted": "Started processing Experience Cloud sites for migration.",
150
+ "experienceSiteSuccessfullyProcessed": "Successfully processed the Experience Cloud sites for migration.",
151
+ "readingFile": "Started reading the files",
152
+ "totalFileCount": "The total count of files is %s",
153
+ "skipNonJsonFile": "Skipping non-JSON file %s",
154
+ "experienceSiteWithOmniWrapperSuccessfullyProcessed": "Successfully processed the Experience Cloud site file with a wrapper having the Omnistudio content.",
155
+ "fileNotHavingWrapper": "File doesn’t contain wrapper having Omnistudio content.",
156
+ "errorProcessingExperienceSite": "We’ve encountered an error while processing the Experience Cloud site file",
157
+ "experienceSiteReportingDetails": "Only Experience Cloud site files with a wrapper having Omnistudio content will be shown in the report.",
158
+ "processingFile": "Processing for file",
159
+ "currentRegionOfExperienceSite": "The current region being processed is %s.",
160
+ "omniWrapperFound": "Wrapper by omnistudio component found.",
161
+ "printUpdatedObject": "Printing the updated object %s.",
162
+ "printDifference": "Printing the difference %s.",
163
+ "updatingFile": "Updating the file content.",
164
+ "processingFlexcardComponent": "Started processing the Flexcard component %s.",
165
+ "processingOmniscriptComponent": "Started processing the Omnistudio component.",
166
+ "targetData": "The target data is: %s",
167
+ "manualInterventionForExperienceSite": "We couldn’t process the %s component because no key was found.",
168
+ "emptyTargetData": "The Target Name is empty. Check your Experience Cloud site configuration",
169
+ "manualInterventionForExperienceSiteAsFailure": "We couldn’t process the %s component.",
170
+ "manualInterventionForExperienceSiteAsDuplicateKey": "We couldn’t process the %s component because a duplicate key was found.",
171
+ "manualInterventionForExperienceSiteConfiguration": "We couldn’t process the %s Experience site because of error in the Experience Cloud site configuration.",
172
+ "updatingStorageForOmniscipt": "Preparing storage for Omniscripts %s",
173
+ "keyAlreadyInStorage": "The %s %s name already exists in storage.",
174
+ "flexcardStorageProcessingStarted": "Preparing storage for Flexcards.",
175
+ "errorWhileProcessingFlexcardStorage": "We couldn’t process the Flexcard name for storage.",
176
+ "missingInfo": "Info is missing",
177
+ "errorCheckingGlobalAutoNumber": "We couldn't check whether the Omni Global Auto Number setting is enabled: %s. Try again later.",
178
+ "errorMigrationMessage": "Error migrating object: %s",
179
+ "nameMappingUndefined": "Undefined name mapping found",
180
+ "autoDeployConsentMessage": "Do you want to deploy the related objects automatically? [y/n]",
181
+ "errorDeployingComponents": "We couldn’t deploy related objects after migration.",
182
+ "installingDependency": "Installing node dependency %s",
183
+ "dependencyInstalled": "Node dependency %s installed",
184
+ "deployingFromManifest": "Deploying from metadata packages",
185
+ "manifestDeployFailed": "We couldn’t deploy metadata packages. Check the logs or the status for more details.",
186
+ "installingRequiredDependencies": "Installing required node dependencies",
187
+ "creatingNPMConfigFile": "Creating npm configuration file",
188
+ "npmConfigFileCreated": "Npm config file created",
189
+ "authKeyEnvVarNotSet": "The OMA_AUTH_KEY environment variable isn’t set. LWCs won't be deployed.",
190
+ "npmNotInstalled": "We couldn't find npm on this system. LWC auto-deployment requires npm.",
191
+ "lwcDeployPrerequisitesMissing": "LWC auto-deployment prerequisites aren't met: %s",
192
+ "manualLwcDeploymentPrompt": "Manual LWC deployment is required. Do you want to continue with the migration? [y/n]",
193
+ "manualLwcDeploymentProceeding": "Continuing the migration. Deploy the LWC components manually.",
194
+ "npmAndAuthKeyRequired": "Install npm and set the OMA_AUTH_KEY environment variable, and then run the migration again.",
195
+ "manualDeploymentSteps": "<a href='%s' target='_blank'>Please refer to this documentation for manual deployment process</a>",
196
+ "deploymentConsentNotGiven": "Deployment consent not given, manual deployment is required",
197
+ "experienceSiteException": "We’ve encountered an exception while processing Experience Cloud sites.",
198
+ "reservedKeysFoundInPropertySet": "The Integration Procedure output uses these reserved keys in the transformation property fields: %s",
199
+ "incompleteMigrationDetected": "We couldn't complete the migration process",
200
+ "errorComponentMapping": "Error during component pre-processing: %s",
201
+ "startingComponentPreProcessing": "Pre-processing components for name mapping",
202
+ "completeComponentMappingMessage": "Registered name mappings for %s components",
203
+ "componentMappingNotFound": "No registry mapping found for %s component: %s, using fallback cleaning",
204
+ "webPageOmniScriptNavigationDetected": "Detected Omniscript navigation in web page action URL: %s.\n\nIt has been replaced with: %s",
205
+ "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 has been replaced with: %s.\nVerify that the rewritten URL points to the intended Omniscript before using this Flexcard in the destination org.",
206
+ "flexCardOmniScriptNavigateURLUpdated": "Updated %s Omniscript Navigate URL action(s) to standard URL format.",
207
+ "integrationProcedureInvalidUnderscoreFormat": "Integration Procedure reference '%s' contains underscores in Type/SubType names. Skipping reference update to avoid incorrect parsing.",
208
+ "flexCardWithAngularOmniScriptWarning": "We couldn't migrate Flexcards with dependencies on Angular Omniscripts.",
209
+ "angularOmniScriptDependencyWarning": "Element '%s' references Angular Omniscript '%s' which will not be migrated. Consider converting the referenced Omniscript to LWC",
210
+ "skipFlexcardAngularOmniScriptDependencyWarning": "Skipping Flexcard %s due to Angular Omniscript dependencies",
211
+ "flexCardMigrationProcessingMessage": "Processing %s Flexcards for migration",
212
+ "skippingAsAngularDependencies": "(%s skipped due to Angular dependencies)",
213
+ "noMetadataToDeploy": "No metadata to deploy",
214
+ "missingMandatoryField": "Missing mandatory field: %s for %s",
215
+ "dataMapperMigrationFailed": "DataMapper migration failed for: %s ",
216
+ "dataMapperNameStartsWithNumber": "DataMapper name '%s' starts with a number which causes migration issues. Proposed new name: %s",
217
+ "integrationProcedureTypeEmptyAfterCleaning": "Integration Procedure Type '%s' becomes empty after name cleaning. Please provide a valid Type value.",
218
+ "integrationProcedureSubtypeEmptyAfterCleaning": "Integration Procedure SubType '%s' becomes empty after name cleaning. Please provide a valid SubType value.",
219
+ "manifestDeployementStarted": "Manifest deployment started with ID: %s",
220
+ "migrationConsentMessage": "Make sure that all records listed in the Assessment Status column in the Assessment Report are marked as either Ready for Migration or Warnings before proceeding with the migration. Do you want to proceed? [y/n]",
221
+ "truncationFailed": "Truncation failed for %s: %s",
222
+ "invalidTypeMigrateErrorMessage": "We couldn't migrate your Omnistudio components in the %s namespace. Select the correct namespace and try again",
223
+ "errorCheckingStandardRuntime": "We couldn't check whether the Standard OmniStudio Runtime setting is enabled: %s. Try again later.",
224
+ "checkingStandardRuntimeStatus": "Checking Standard OmniStudio Runtime status...",
225
+ "standardRuntimeAlreadyEnabled": "Standard OmniStudio Runtime is already enabled, no action needed.",
226
+ "standardRuntimeEnabled": "Standard OmniStudio Runtime has been successfully enabled.",
227
+ "errorEnablingStandardRuntime": "Failed to enable Standard OmniStudio Runtime: %s",
228
+ "exceptionEnablingStandardRuntime": "Exception occurred while enabling Standard OmniStudio Runtime: %s",
229
+ "manuallyEnableStandardRuntime": "Please manually enable the Standard OmniStudio Runtime setting in your org's OmniStudio Settings.",
230
+ "standardDesignerAlreadyEnabled": "Standard OmniStudio designer is already enabled, no action needed for package: %s",
231
+ "settingDesignersToStandardModel": "Configuring Omnistudio designers to use the standard data model.",
232
+ "designersSetToStandardModel": "Successfully configured Omnistudio designers to use the standard data model.",
233
+ "errorSettingDesignersToStandardModel": "Failed to set designers to standard data model: %s",
234
+ "manuallySwitchDesignerToStandardDataModel": "Please manually switch the OmniStudio designer to use standard data model in your org. Follow the documentation <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_migrate_change_the_sobject_data_model_after_migration.htm&type=5' target='_blank'>here</a>.",
235
+ "checkingStandardDesignerStatus": "Checking if standard designer is already enabled for package: %s",
236
+ "skipStandardRuntimeDueToFailure": "Skipping Standard Runtime enablement due to designer setup failure",
237
+ "errorCheckingStandardDesigner": "Failed to check standard designer status for package %s: %s",
238
+ "relatedObjectsConsentNotGiven": "The related objects will not be processed because the user declined consent.",
239
+ "fileUpdatedToAllowRemoteCalls": "File has been updated to allow remote calls",
240
+ "fileUpdatedToAllowCalls": "File has been updated to allow calls",
241
+ "startingCustomLabelMigration": "Starting Custom Labels migration",
242
+ "customLabelMigrationCompleted": "Custom Labels migration completed. %s labels processed out of %s total",
243
+ "errorDuringCustomLabelMigration": "Error during Custom Labels migration: %s",
244
+ "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>.",
245
+ "callingCloneCustomLabelsAPI": "Calling clone-custom-labels API for namespace: %s",
246
+ "cloneCustomLabelsAPIResponse": "Clone custom labels API response summary: %s results",
247
+ "errorCallingCloneCustomLabelsAPI": "Error calling clone-custom-labels API: %s",
248
+ "callingCloneCustomLabelLocalizationsAPI": "Calling clone-custom-label-localizations API for namespace: %s",
249
+ "cloneCustomLabelLocalizationsAPIResponse": "Clone custom label localizations API response summary: %s labels with localizations",
250
+ "errorCallingCloneCustomLabelLocalizationsAPI": "Error calling clone-custom-label-localizations API: %s",
251
+ "skippingCustomLabelTruncation": "Skipping truncation for Custom Labels",
252
+ "labelAlreadyExistsWarning": "Label already exists with status: %s",
253
+ "failedToCloneLabelError": "Failed to clone label with status: %s",
254
+ "localizationAlreadyExistsWarning": "Localization for %s already exists",
255
+ "failedToCreateLocalizationError": "Failed to create localization for %s",
256
+ "generatingCustomLabelsReport": "Generating custom labels migration report with %s labels (all statuses) across %s pages of %s each",
257
+ "generatedCustomLabelsReportPage": "Generated custom labels report page %s of %s with %s labels",
258
+ "errorFetchingCustomLabels": "Error fetching custom labels: %s",
259
+ "customLabelAssessmentSummary": "Custom Label with same name and different value is already exist without namespace.",
260
+ "generatedCustomLabelAssessmentReportPage": "Generated custom label assessment report page %s of %s with %s labels",
261
+ "varDeclarationUpdated": "Variable initialization has been updated for target name",
262
+ "migrationSuccessfulMessage": "Migration process for org %s is complete and reports are ready for review in the folder %s",
263
+ "elementValueMapUnexpectedType": "ElementValueMap has unexpected data type '%s' for element '%s'. Expected object format.",
264
+ "errorProcessingFormulaInElement": "Error processing formula for key '%s' in element '%s': %s",
265
+ "errorProcessingElementValueMap": "Error processing elementValueMap in Integration Procedure element '%s': %s",
266
+ "startingOmniscriptPackageDeployment": "Starting deployment of omniscript customization package...",
267
+ "omniscriptPackageDeploymentStarted": "Omniscript package deployment started with ID: %s",
268
+ "omniscriptPackageIntegrated": "Omniscript customization package deployed successfully",
269
+ "pollingDeploymentStatus": "Polling deployment status for ID: %s (attempt %s/%s)",
270
+ "deploymentStatusUpdate": "Deployment %s status: %s - %s%% complete",
271
+ "deploymentInProgress": "Deployment in progress... Elapsed: %s, Estimated remaining: %s",
272
+ "deploymentCompleted": "Omniscript package deployment completed successfully in %s",
273
+ "deploymentFailed": "Omniscript package deployment failed: %s",
274
+ "deploymentCancelled": "Omniscript package deployment was cancelled",
275
+ "deploymentTimedOut": "Omniscript package deployment timed out after %s minutes",
276
+ "retryingDeployment": "Retrying deployment due to %s (attempt %s/%s)",
277
+ "deploymentRetryExhausted": "Maximum retry attempts (%s) exceeded for omniscript package deployment",
278
+ "extractingDeploymentId": "Extracting deployment ID from command output...",
279
+ "deploymentIdNotFound": "Could not extract deployment ID from deployment response",
280
+ "checkingDeploymentStatus": "Checking deployment status for ID: %s",
281
+ "deploymentStatusCheckFailed": "Failed to check deployment status: %s",
282
+ "deploymentStatusCheckExhausted": "Failed to check deployment status after %s attempts: %s",
283
+ "errorIntegratingOmniscriptPackage": "Error occurred while integrating omniscript customization package",
284
+ "omniscriptPackageDeploymentError": "Omniscript package deployment error details: %s",
285
+ "omniscriptPackagePathNotFound": "Omniscript customization package not found at: %s",
286
+ "asyncDeploymentStart": "Starting async deployment for source directory: %s",
287
+ "asyncDeploymentStatusCheck": "Checking async deployment status for ID: %s",
288
+ "deploymentProgressDetails": "Components deployed: %s/%s, Errors: %s, Warnings: %s",
289
+ "waitingForDeploymentCompletion": "Waiting for omniscript package deployment completion before proceeding...",
290
+ "deploymentSkipped": "Deployment skipped - autoDeploy is disabled or package.xml not found",
291
+ "deployOmniscriptPackageManually": "Omniscript customization package deployment failed. Please deploy the omniscript unmanaged package components manually before deploying your migrated metadata components. Please check the documentation <a href='%s' target='_blank'>link</a> for manual steps",
292
+ "deployComponentsManually": "Metadata Components deployment failed. Please deploy using generated package.xml manually using Salesforce CLI or Workbench. Check the logs for detailed error information.",
293
+ "omniscriptDeploymentFailedContinuing": "Omniscript package deployment failed, continuing with report generation. Manual deployment required.",
294
+ "deploymentFailedContinuing": "Deployment failed, continuing with report generation. Manual deployment required.",
295
+ "manualDeploymentNeeded": "Manual deployment needed",
296
+ "ensurePackageInstalled": "Please ensure omniscript customization package is properly installed: %s",
297
+ "packageDeploymentFailedWithError": "Omniscript package deployment failed after %s attempts. Error: %s. Please check deployment logs and org settings.",
298
+ "maxRetryAttemptsExceeded": "Maximum retry attempts (%s) exceeded for omniscript package deployment",
299
+ "deploymentNonRetryableError": "Deployment failed with non-retryable error: %s. Please review and fix the issue manually",
300
+ "deploymentTriggeredSuccessfully": "Please monitor your Deployment: %s using deployment status page in Org",
301
+ "omniscriptPackageDeploymentFailedReturnedFalse": "Omniscript package deployment failed - deployment returned false. This may be due to missing package, permissions, or deployment timeout.",
302
+ "omniscriptPackageDeploymentFailedWithMessage": "Omniscript package deployment failed: %s",
303
+ "cleanupMetadataTablesRequired": "Omnistudio configuration tables contain records. The migration can't proceed. Records on these configuration tables block the Omnistudio Metadata setting from being enabled. Back up your Omnistudio component table data, manually clean up the Omnistudio configuration tables, and validate before running the migration.",
304
+ "cleanupMetadataTablesHelpUrl": "https://help.salesforce.com/s/articleView?id=xcloud.os_enable_omnistudio_metadata_api_support.htm&type=5",
305
+ "cleanupMetadataTablesHelpLinkText": "Learn more about cleaning up tables in Salesforce Help",
306
+ "metadataTablesAlreadyClean": "OmniStudio metadata tables are empty",
307
+ "startingMetadataCleanup": "Initiated cleanup process for Omnistudio metadata tables.",
308
+ "failedToCleanTables": "Table cleanup failed: %s, Please contact Salesforce Support.",
309
+ "errorCheckingMetadataTables": "Error checking Omnistudio metadata tables: %s",
310
+ "metadataCleanupCompleted": "The Omnistudio metadata table cleanup process is complete. Total records cleaned: %s",
311
+ "metadataCleanupConsentMessage": "By proceeding further, you hereby consent to clean up the Omnistudio metadata tables. Proceeding with the cleanup process will permanently delete all records from OmniUiCardConfig, OmniScriptConfig, OmniIntegrationProcConfig, and OmniDataTransformConfig tables. Do you want to proceed? [y/n]",
312
+ "metadataCleanupConsentNotGiven": "You’ve not consented to proceed with the Omnistudio metadata table cleanup. We’ll not be able to proceed with the migration.",
313
+ "omniStudioMetadataEnableConsentMessage": "As part of the migration process, the Omnistudio Metadata setting will be enabled. After the setting is enabled, you cannot disable it. Do you want to proceed? [y/n]",
314
+ "errorCheckingOmniStudioMetadata": "Error while checking the Omnistudio settings metadata status: %s.",
315
+ "omniStudioSettingsMetadataAlreadyEnabled": "The Omnistudio Metadata setting is already enabled with standard data model.",
316
+ "omniStudioSettingsMetadataEnabled": "The Omnistudio Metadata setting is enabled with standard data model.",
317
+ "timeoutEnablingOmniStudioSettingsMetadata": "Timeout while checking the metadata enablement status. Tried for %s seconds. Refer to registered email for more details.",
318
+ "errorEnablingOmniStudioSettingsMetadata": "Error while enabling the Omnistudio Metadata setting: %s.",
319
+ "fieldIntegrityExceptions": "Metadata cleanup failed for %s due to a field integrity exception. Deactivate the %s and try again.",
320
+ "manuallyEnableOmniStudioSettingsMetadata": "Manually enable the Omnistudio Metadata setting in your org’s Omnistudio Settings page. Refer <a href='https://help.salesforce.com/s/articleView?id=xcloud.os_enable_omnistudio_metadata_api_support.htm&type=5' target='_blank'>this documentation</a> for more details.",
321
+ "omniStudioMetadataEnableConsentNotGiven": "You’ve not consented to proceed with enabling the Omnistudio Metadata setting. We’ll not be able to proceed with the migration.",
322
+ "enablingOmniStudioSettingsMetadataStatus": "Enabling Omnistudio Metadata setting…",
323
+ "omniStudioAllVersionsProcessingConsent": "Org uses the standard data model. All versions of Omnistudio components such as Omniscripts, Data Mappers, Integration Procedures, and Flexcards must be migrated to enable the Omnistudio Metadata API setting. But you’ve not specified -a or allversions flag in the command. Proceed to migrate all versions of the Omnistudio components? [y/n]",
324
+ "omniStudioAllVersionsProcessingConsentNotGiven": "You've not consented to migrate all versions of the Omnistudio components. We cannot proceed with the migration.",
325
+ "omniStudioAllVersionsProcessingConsentGiven": "You've consented to migrate all versions of the Omnistudio components.",
326
+ "customLWCFlexCardReferenceUpdated": "Updated Custom LWC FlexCard reference: %s -> cf%s",
327
+ "validatingDrVersioningDisabled": "Checking the Data Mapper versioning setting in your org.",
328
+ "drVersioningDisabled": "Proceeding with the migration as the Data Mapper versioning setting is disabled.",
329
+ "drVersioningEnabled": "We cannot proceed with the migration as the Data Mapper versioning setting is enabled in your org.",
330
+ "errorValidatingDrVersioning": "Failed to verify the status of the Data Mapper versioning setting. Try again later.",
331
+ "validatingOmniInteractionConfig": "Validating Omni Interaction Configuration",
332
+ "omniInteractionConfigInvalid": "The Omnistudio Migration Assistant cannot migrate 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",
333
+ "queryResultSize": "Query result size: %s",
334
+ "packagesHaveSameValue": "Both TheFirstInstalledOmniPackage and InstalledIndustryPackage have the same value.",
335
+ "packagesHaveDifferentValue": "Both the InstalledIndustryPackage and TheFirstInstalledOmniPackage have different values.",
336
+ "failedToCheckPackagesValue": "Failed to check the value of packages in Omni Interaction Configuration.",
337
+ "omniStudioPermissionsNotEnabled": "The org doesn’t have Omnistudio permissions enabled. These permissions are required to migrate components. You can still run the assessment.",
338
+ "packageDetails": "Your org contains only the TheFirstInstalledOmniPackage Omni Interaction Configuration.",
339
+ "globalAutoNumberUnSupportedInOmnistudioPackage": "Feature not supported - Omni Global Auto Number is not supported in Omnistudio Foundation package orgs.",
340
+ "orgUsecaseDetails": "The org is on %s data model with %s and the Omnistudio Metadata setting turned %s",
341
+ "preparingStorageForMetadataEnabledOrg": "Preparing storage for %s org on standard data model with the Omnistudio Metadata setting turned on.",
342
+ "processingNotRequired": "Migration is not required for orgs on standard data model with the Omnistudio Metadata setting turned on.",
343
+ "skippingTruncation": "Skipping truncation as the org is on standard data model.",
344
+ "loglevelFlagDeprecated": "loglevel is deprecated. Use --verbose instead.",
345
+ "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.",
346
+ "errorOmniProcessWithTypeQuery": "An error occurred calling queryOmniProcessesWithType() during the Save for Later assessment.",
347
+ "ossMissingCustomField": "Custom field PackageSavedSessionId__c is missing from OmniscriptSavedSession. Add this field before migrating.",
348
+ "ossMigrationFailed": "An error occurred while migrating OmniscriptInstances.",
349
+ "ossMissingFieldValue": "%s has missing fields for %s, %s, and %s",
350
+ "ossOmniscriptNeedsMigration": "Omniscript \"%s_%s_%s\" needs to be migrated.",
351
+ "ossNoMatchingOmniProcess": "No matching OmniProcess found for %s_%s_%s",
352
+ "ossFoundOmniProcess": "Found OmniProcess \"%s_%s_%s\" with ID: %s",
353
+ "ossSkipAttachmentUpload": "Skipping attachment upload. No ID found for OmniscriptSavedSession: %s",
354
+ "ossFoundAttachments": "Found %s attachments for OmniscriptInstance %s",
355
+ "ossSessionDataShape": "Session data to create : %s",
356
+ "ossCreateOssFailure": "Failed to create OmniscriptSavedSession for %s : %s",
357
+ "ossCreateOssSuccess": "Successfully created OmniscriptSavedSession for %s",
358
+ "ossCreateOssError": "Error creating OmniscriptSavedSession for %s : %s",
359
+ "ossUpdateOssFailure": "Failed to update OmniscriptSavedSession for %s : %s",
360
+ "ossUpdateOssError": "Error updating OmniscriptSavedSession for %s : %s",
361
+ "ossAttachmentUploadFailed": "Failed to upload attachment for %s : %s",
362
+ "ossAttachmentUploadSuccess": "Successfully uploaded attachment for %s",
363
+ "ossAttachmentUploadError": "Error uploading attachment for %s : %s",
364
+ "ossAttachmentUploadStart": "Uploading %s attachments for %s",
365
+ "ossAttachmentUploadEnd": "Uploaded %s/%s attachments for %s",
366
+ "ossAttachmentDownloadSuccess": "Successfully downloaded attachment %s, size: %s bytes",
367
+ "ossAttachmentDownloadFailed": "Failed to download attachment from path %s : %s"
156
368
  }
@@ -1 +1 @@
1
- {"version":"2.0.0-rc.6","commands":{"basecommand":{"id":"basecommand","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"omnistudio:migration:assess":{"id":"omnistudio:migration:assess","description":"Assess migration of omnistudio components from custom objects to standard objects","usage":"<%= command.id %> [-n <string>] [-o <string>] [-a] [-r <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:assess -u orguser@domain.com ","omnistudio:migration:assess -u orguser@domain.com --only=dr","omnistudio:migration:assess -u orguser@domain.com --only=ip","omnistudio:migration:assess -u orguser@domain.com --only=os","omnistudio:migration:assess -u orguser@domain.com --only=fc","omnistudio:migration:assess -u orguser@domain.com --only=autonumber"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"namespace":{"name":"namespace","type":"option","char":"n","description":"The namespaced of the package"},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single element: os | ip | fc | dr | autonumber"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"relatedobjects":{"name":"relatedobjects","type":"option","char":"r","description":"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."},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false}},"args":[{"name":"file"}]},"omnistudio:migration:info":{"id":"omnistudio:migration:info","description":"print a greeting and your org IDs","usage":"<%= command.id %> [-n <string>] [-a] [-v <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["sfdx omnistudio:migration:info --targetusername myOrg@example.com --targetdevhubusername devhub@org.com","sfdx omnistudio:migration:info --name myname --targetusername myOrg@example.com"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetdevhubusername":{"name":"targetdevhubusername","type":"option","char":"v","description":"username or alias for the dev hub org; overrides default dev hub org"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"name":{"name":"name","type":"option","char":"n","description":"name to print"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false}},"args":[{"name":"file"}]},"omnistudio:migration:migrate":{"id":"omnistudio:migration:migrate","description":"Migrate omnistudio components from custom objects to standard objects","usage":"<%= command.id %> [-n <string>] [-o <string>] [-a] [-r <string>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:migrate -u orguser@domain.com ","omnistudio:migration:migrate -u orguser@domain.com --only=dr","omnistudio:migration:migrate -u orguser@domain.com --only=ip","omnistudio:migration:migrate -u orguser@domain.com --only=os","omnistudio:migration:migrate -u orguser@domain.com --only=fc","omnistudio:migration:migrate -u orguser@domain.com --only=autonumber","omnistudio:migration:migrate -u orguser@domain.com -r apex,lwc","omnistudio:migration:migrate -u orguser@domain.com -r apex","omnistudio:migration:migrate -u orguser@domain.com -r lwc"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"namespace":{"name":"namespace","type":"option","char":"n","description":"The namespace of the package"},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single element: os | ip | fc | dr | autonumber"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"relatedobjects":{"name":"relatedobjects","type":"option","char":"r","description":"Please select the type of components 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."},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false}},"args":[{"name":"file"}]}}}
1
+ {"version":"2.0.0-rc.61","commands":{"omnistudio:migration:assess":{"id":"omnistudio:migration:assess","description":"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","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:assess -u orguser@domain.com ","omnistudio:migration:assess -u orguser@domain.com --only=dm","omnistudio:migration:assess -u orguser@domain.com --only=ip","omnistudio:migration:assess -u orguser@domain.com --only=os","omnistudio:migration:assess -u orguser@domain.com --only=fc","omnistudio:migration:assess -u orguser@domain.com --only=cl","omnistudio:migration:assess -u orguser@domain.com --only=autonumber","omnistudio:migration:assess -u orguser@domain.com --only=sfl","omnistudio:migration:assess -u orguser@domain.com --relatedobjects apex,lwc,flexipage,expsites","omnistudio:migration:assess -u orguser@domain.com -r apex,lwc,flexipage,expsites"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","allowNo":false},"target-org":{"name":"target-org","type":"option","char":"u","required":true,"default":{}},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single component: os | ip | fc | dm | autonumber | cl | sfl"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"relatedobjects":{"name":"relatedobjects","type":"option","char":"r","description":"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."},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"Logging level (deprecated, use --verbose instead)"}},"args":[]},"omnistudio:migration:clean":{"id":"omnistudio:migration:clean","description":"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.","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["sf omnistudio:migration:clean -u orguser@domain.com"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","allowNo":false},"target-org":{"name":"target-org","type":"option","char":"u","required":true,"default":{}},"verbose":{"name":"verbose","type":"boolean","description":"Show detailed information in the command output.","allowNo":false},"assess":{"name":"assess","type":"boolean","description":"Preview which records would be removed by the clean command, without making any changes. Results are saved to the 'clean_assessment' folder.","allowNo":false}},"args":[]},"omnistudio:migration:info":{"id":"omnistudio:migration:info","description":"print a greeting and your org IDs","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["sfdx omnistudio:migration:info --targetusername myOrg@example.com --targetdevhubusername devhub@org.com","sfdx omnistudio:migration:info --name myname --targetusername myOrg@example.com"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","allowNo":false},"target-org":{"name":"target-org","type":"option","char":"u","required":true,"default":{}},"name":{"name":"name","type":"option","char":"n","description":"name to print"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false}},"args":[]},"omnistudio:migration:migrate":{"id":"omnistudio:migration:migrate","description":"If your Omnistudio components are on custom data model, migrate the components from custom data model to standard data model, and switch the runtime from Omnistudio managed package runtime to Omnistudio standard runtime. If your Omnistudio components are on standard data model, the component names and references will be updated to contain only alphanumeric characters. This update is required to enable the metadata API. See: https://help.salesforce.com/s/articleView?id=xcloud.os_omnistudio_naming_conventions.htm&type=5","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:migrate -u orguser@domain.com ","omnistudio:migration:migrate -u orguser@domain.com --only=dm","omnistudio:migration:migrate -u orguser@domain.com --only=ip","omnistudio:migration:migrate -u orguser@domain.com --only=os","omnistudio:migration:migrate -u orguser@domain.com --only=fc","omnistudio:migration:migrate -u orguser@domain.com --only=autonumber","omnistudio:migration:migrate -u orguser@domain.com --only=cl","omnistudio:migration:migrate -u orguser@domain.com --relatedobjects apex,lwc,flexipage,expsites","omnistudio:migration:migrate -u orguser@domain.com -r apex,lwc,flexipage,expsites","omnistudio:migration:migrate -u orguser@domain.com -r apex","omnistudio:migration:migrate -u orguser@domain.com -r lwc"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","allowNo":false},"target-org":{"name":"target-org","type":"option","char":"u","required":true,"default":{}},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single component: os | ip | fc | dm | autonumber | cl | sfl"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"relatedobjects":{"name":"relatedobjects","type":"option","char":"r","description":"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."},"verbose":{"name":"verbose","type":"boolean","description":"Enable verbose output","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"Logging level (deprecated, use --verbose instead)"}},"args":[]}}}