@salesforce/plugin-omnistudio-migration-tool 2.0.0-rc.4 → 2.0.0-rc.41

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 (163) hide show
  1. package/README.md +28 -40
  2. package/lib/commands/omnistudio/migration/assess.d.ts +1 -1
  3. package/lib/commands/omnistudio/migration/assess.js +107 -37
  4. package/lib/commands/omnistudio/migration/assess.js.map +1 -1
  5. package/lib/commands/omnistudio/migration/info.js +1 -1
  6. package/lib/commands/omnistudio/migration/info.js.map +1 -1
  7. package/lib/commands/omnistudio/migration/migrate.d.ts +35 -5
  8. package/lib/commands/omnistudio/migration/migrate.js +262 -107
  9. package/lib/commands/omnistudio/migration/migrate.js.map +1 -1
  10. package/lib/javascripts/reportGeneratorUtility.js +100 -19
  11. package/lib/migration/NameMappingRegistry.d.ts +130 -0
  12. package/lib/migration/NameMappingRegistry.js +376 -0
  13. package/lib/migration/NameMappingRegistry.js.map +1 -0
  14. package/lib/migration/base.d.ts +4 -2
  15. package/lib/migration/base.js +8 -1
  16. package/lib/migration/base.js.map +1 -1
  17. package/lib/migration/customLabels.d.ts +49 -0
  18. package/lib/migration/customLabels.js +190 -0
  19. package/lib/migration/customLabels.js.map +1 -0
  20. package/lib/migration/dataraptor.js +63 -14
  21. package/lib/migration/dataraptor.js.map +1 -1
  22. package/lib/migration/deployer.d.ts +11 -0
  23. package/lib/migration/deployer.js +59 -0
  24. package/lib/migration/deployer.js.map +1 -0
  25. package/lib/migration/flexcard.d.ts +44 -2
  26. package/lib/migration/flexcard.js +707 -110
  27. package/lib/migration/flexcard.js.map +1 -1
  28. package/lib/migration/globalautonumber.d.ts +6 -6
  29. package/lib/migration/globalautonumber.js +27 -34
  30. package/lib/migration/globalautonumber.js.map +1 -1
  31. package/lib/migration/interfaces.d.ts +5 -0
  32. package/lib/migration/interfaces.js +7 -0
  33. package/lib/migration/interfaces.js.map +1 -1
  34. package/lib/migration/omniscript.d.ts +42 -2
  35. package/lib/migration/omniscript.js +724 -100
  36. package/lib/migration/omniscript.js.map +1 -1
  37. package/lib/migration/postMigrate.d.ts +22 -3
  38. package/lib/migration/postMigrate.js +147 -12
  39. package/lib/migration/postMigrate.js.map +1 -1
  40. package/lib/migration/premigrate.d.ts +16 -0
  41. package/lib/migration/premigrate.js +122 -0
  42. package/lib/migration/premigrate.js.map +1 -0
  43. package/lib/migration/related/ApexMigration.d.ts +1 -0
  44. package/lib/migration/related/ApexMigration.js +143 -22
  45. package/lib/migration/related/ApexMigration.js.map +1 -1
  46. package/lib/migration/related/ExperienceSiteMigration.d.ts +12 -4
  47. package/lib/migration/related/ExperienceSiteMigration.js +127 -59
  48. package/lib/migration/related/ExperienceSiteMigration.js.map +1 -1
  49. package/lib/migration/related/FlexipageMigration.d.ts +4 -4
  50. package/lib/migration/related/FlexipageMigration.js +31 -30
  51. package/lib/migration/related/FlexipageMigration.js.map +1 -1
  52. package/lib/migration/related/LwcMigration.js +27 -16
  53. package/lib/migration/related/LwcMigration.js.map +1 -1
  54. package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js +30 -24
  55. package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js.map +1 -1
  56. package/lib/styles/reportGenerator.css +9 -5
  57. package/lib/templates/assessmentReport.template +67 -6
  58. package/lib/templates/migrationReport.template +146 -4
  59. package/lib/utils/OmnistudioSettingsPrefManager.d.ts +12 -0
  60. package/lib/utils/OmnistudioSettingsPrefManager.js +82 -0
  61. package/lib/utils/OmnistudioSettingsPrefManager.js.map +1 -0
  62. package/lib/utils/XMLUtil.js +2 -1
  63. package/lib/utils/XMLUtil.js.map +1 -1
  64. package/lib/utils/apex/parser/apexparser.d.ts +8 -1
  65. package/lib/utils/apex/parser/apexparser.js +63 -10
  66. package/lib/utils/apex/parser/apexparser.js.map +1 -1
  67. package/lib/utils/constants/documentRegistry.d.ts +2 -1
  68. package/lib/utils/constants/documentRegistry.js +4 -3
  69. package/lib/utils/constants/documentRegistry.js.map +1 -1
  70. package/lib/utils/constants/stringContants.d.ts +7 -0
  71. package/lib/utils/constants/stringContants.js +10 -2
  72. package/lib/utils/constants/stringContants.js.map +1 -1
  73. package/lib/utils/customLabels.d.ts +34 -0
  74. package/lib/utils/customLabels.js +97 -0
  75. package/lib/utils/customLabels.js.map +1 -0
  76. package/lib/utils/file/fileUtil.d.ts +3 -1
  77. package/lib/utils/file/fileUtil.js +11 -4
  78. package/lib/utils/file/fileUtil.js.map +1 -1
  79. package/lib/utils/flexipage/flexiPageTransformer.js +14 -10
  80. package/lib/utils/flexipage/flexiPageTransformer.js.map +1 -1
  81. package/lib/utils/generatePackageXml.d.ts +4 -2
  82. package/lib/utils/generatePackageXml.js +17 -23
  83. package/lib/utils/generatePackageXml.js.map +1 -1
  84. package/lib/utils/interfaces.d.ts +36 -3
  85. package/lib/utils/logger.js +3 -1
  86. package/lib/utils/logger.js.map +1 -1
  87. package/lib/utils/lwcparser/fileutils/FileDiffUtil.js +20 -21
  88. package/lib/utils/lwcparser/fileutils/FileDiffUtil.js.map +1 -1
  89. package/lib/utils/lwcparser/xmlParser/XmlParser.js +2 -1
  90. package/lib/utils/lwcparser/xmlParser/XmlParser.js.map +1 -1
  91. package/lib/utils/orgPreferences.d.ts +1 -0
  92. package/lib/utils/orgPreferences.js +11 -8
  93. package/lib/utils/orgPreferences.js.map +1 -1
  94. package/lib/utils/orgUtils/index.d.ts +1 -1
  95. package/lib/utils/orgUtils/index.js +14 -14
  96. package/lib/utils/orgUtils/index.js.map +1 -1
  97. package/lib/utils/promptUtil.d.ts +2 -0
  98. package/lib/utils/promptUtil.js +26 -1
  99. package/lib/utils/promptUtil.js.map +1 -1
  100. package/lib/utils/reportGenerator/reportInterfaces.d.ts +9 -0
  101. package/lib/utils/reportGenerator/reportUtil.d.ts +1 -1
  102. package/lib/utils/reportGenerator/reportUtil.js +6 -3
  103. package/lib/utils/reportGenerator/reportUtil.js.map +1 -1
  104. package/lib/utils/resultsbuilder/ApexAssessmentReporter.d.ts +2 -0
  105. package/lib/utils/resultsbuilder/ApexAssessmentReporter.js +51 -15
  106. package/lib/utils/resultsbuilder/ApexAssessmentReporter.js.map +1 -1
  107. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.d.ts +13 -0
  108. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.js +178 -0
  109. package/lib/utils/resultsbuilder/CustomLabelAssessmentReporter.js.map +1 -0
  110. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.d.ts +19 -0
  111. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.js +239 -0
  112. package/lib/utils/resultsbuilder/CustomLabelMigrationReporter.js.map +1 -0
  113. package/lib/utils/resultsbuilder/DRAssessmentReporter.js +43 -11
  114. package/lib/utils/resultsbuilder/DRAssessmentReporter.js.map +1 -1
  115. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.d.ts +13 -0
  116. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.js +111 -0
  117. package/lib/utils/resultsbuilder/ExperienceSiteAssessmentReporter.js.map +1 -0
  118. package/lib/utils/resultsbuilder/FlexcardAssessmentReporter.js +51 -12
  119. package/lib/utils/resultsbuilder/FlexcardAssessmentReporter.js.map +1 -1
  120. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.d.ts +1 -0
  121. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.js +40 -18
  122. package/lib/utils/resultsbuilder/FlexipageAssessmentReporter.js.map +1 -1
  123. package/lib/utils/resultsbuilder/GlobalAutoNumberAssessmentReporter.js +21 -14
  124. package/lib/utils/resultsbuilder/GlobalAutoNumberAssessmentReporter.js.map +1 -1
  125. package/lib/utils/resultsbuilder/IPAssessmentReporter.js +47 -12
  126. package/lib/utils/resultsbuilder/IPAssessmentReporter.js.map +1 -1
  127. package/lib/utils/resultsbuilder/LWCAssessmentReporter.d.ts +14 -0
  128. package/lib/utils/resultsbuilder/LWCAssessmentReporter.js +143 -139
  129. package/lib/utils/resultsbuilder/LWCAssessmentReporter.js.map +1 -1
  130. package/lib/utils/resultsbuilder/OSAssessmentReporter.js +31 -18
  131. package/lib/utils/resultsbuilder/OSAssessmentReporter.js.map +1 -1
  132. package/lib/utils/resultsbuilder/assessmentReporter.d.ts +6 -1
  133. package/lib/utils/resultsbuilder/assessmentReporter.js +163 -66
  134. package/lib/utils/resultsbuilder/assessmentReporter.js.map +1 -1
  135. package/lib/utils/resultsbuilder/index.d.ts +12 -1
  136. package/lib/utils/resultsbuilder/index.js +343 -84
  137. package/lib/utils/resultsbuilder/index.js.map +1 -1
  138. package/lib/utils/resultsbuilder/reportingHelper.d.ts +2 -7
  139. package/lib/utils/resultsbuilder/reportingHelper.js +0 -43
  140. package/lib/utils/resultsbuilder/reportingHelper.js.map +1 -1
  141. package/lib/utils/sfcli/project/sfProject.d.ts +4 -0
  142. package/lib/utils/sfcli/project/sfProject.js +56 -1
  143. package/lib/utils/sfcli/project/sfProject.js.map +1 -1
  144. package/lib/utils/shell/cli.js +3 -7
  145. package/lib/utils/shell/cli.js.map +1 -1
  146. package/lib/utils/storageUtil.d.ts +1 -0
  147. package/lib/utils/storageUtil.js +3 -0
  148. package/lib/utils/storageUtil.js.map +1 -1
  149. package/lib/utils/stringUtils.d.ts +9 -0
  150. package/lib/utils/stringUtils.js +38 -7
  151. package/lib/utils/stringUtils.js.map +1 -1
  152. package/lib/utils/templateParser/model/elementNode.js +11 -2
  153. package/lib/utils/templateParser/model/elementNode.js.map +1 -1
  154. package/lib/utils/validatorService.d.ts +13 -0
  155. package/lib/utils/validatorService.js +69 -0
  156. package/lib/utils/validatorService.js.map +1 -0
  157. package/messages/assess.json +125 -55
  158. package/messages/migrate.json +172 -53
  159. package/oclif.manifest.json +1 -1
  160. package/package.json +40 -7
  161. package/lib/utils/OmniGlobalAutoNumberPrefManager.d.ts +0 -40
  162. package/lib/utils/OmniGlobalAutoNumberPrefManager.js +0 -65
  163. package/lib/utils/OmniGlobalAutoNumberPrefManager.js.map +0 -1
@@ -1,55 +1,56 @@
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 --relatedobjects apex,lwc,flexipage,expsites",
11
+ "omnistudio:migration:assess -u orguser@domain.com -r apex,lwc,flexipage,expsites"
9
12
  ],
10
13
  "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
14
  "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",
15
+ "onlyFlagDescription": "Migrate a single element: os | ip | fc | dm | autonumber | cl",
16
+ "invalidOnlyFlag": "Invalid flag, valid options are: os | ip | fc | dm | autonumber | cl",
16
17
  "couldNotDeactivateOmniProcesses": "Could not deactivate current OmniProcesses",
17
18
  "couldNotTruncate": "Could not truncate %s",
18
19
  "couldNotTruncateOmnniProcess": "Could not truncate OmniProcess. Please make sure your OS/IP is not referenced in an OmniScrirpt or Flex Card.",
19
20
  "invalidNameTypeSubtypeOrLanguage": "Not a valid Name, Type, SubType or Language",
20
- "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same OmniScript",
21
+ "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same Omniscript",
21
22
  "invalidDataRaptorName": "Invalid name, can not have special characters",
22
- "duplicatedCardName": "Duplicated Flex Card name",
23
- "duplicatedDrName": "Duplicated DataMapper name",
24
- "duplicatedOSName": "Duplicated OmniScript name",
23
+ "duplicatedCardName": "Duplicated Flex Card name %s",
24
+ "duplicatedDrName": "Duplicated DataMapper name %s",
25
+ "duplicatedOSName": "Duplicated %s name %s",
25
26
  "duplicatedName": "Duplicated name",
26
- "errorWhileActivatingOs": "Could not activate OmniScript / Integration Procedure: ",
27
+ "errorWhileActivatingOs": "Could not activate %s: ",
27
28
  "errorWhileActivatingCard": "Could not activate Card: ",
28
29
  "errorWhileUploadingCard": "An error ocurred while uploading Card: ",
29
- "errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
30
+ "errorWhileCreatingElements": "An error ocurred while saving %s elements: ",
30
31
  "allVersionsDescription": "Migrate all versions of a component",
31
32
  "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
+ "angularOSWarning": " Angular Omniscript will not be migrated, please convert this to LWC based Omniscript",
33
34
  "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
35
  "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
+ "unknownNamespace": "Org doesn't have Omnistudio namespace(s) configured",
36
37
  "noPackageInstalled": "No package installed on given org.",
37
38
  "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.",
39
+ "noOmniStudioLicenses": "OmniStudio licenses are not found in the org. OmniStudio licenses are required for migration assessment",
40
+ "invalidRelatedObjectsOption": "Invalid option provided for -r: %s. Valid options are apex, lwc, expsites, flexipage.",
40
41
  "formulaSyntaxError": "There was some problem while updating the formula syntax, please check the all the formula's syntax once : %s",
41
42
  "errorDuringFlexCardAssessment": "Error during FlexCard assessment",
42
- "errorDuringOmniScriptAssessment": "Error during OmniScript assessment",
43
+ "errorDuringOmniScriptAssessment": "Error during Omniscript assessment",
43
44
  "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",
45
+ "processingFlexCard": "Processing Flexcards: %s",
46
+ "processingDataRaptor": "Processing Data Mappers: %s",
47
+ "processingOmniScript": "Processing Omniscripts: %s",
48
+ "processingGlobalAutoNumber": "Processing Omni Global Auto Numbers: %s",
49
+ "foundDataRaptorsToAssess": "Found %s Data Mappers to assess",
50
+ "foundOmniScriptsToAssess": "Found %s %s to assess",
50
51
  "foundGlobalAutoNumbersToAssess": "Found %s GlobalAutoNumbers to assess",
51
- "startingDataRaptorAssessment": "Starting DataRaptor assessment",
52
- "startingOmniScriptAssessment": "Starting OmniScript assessment",
52
+ "startingDataRaptorAssessment": "Starting Data Mappers assessment",
53
+ "startingOmniScriptAssessment": "Starting %s assessment",
53
54
  "startingGlobalAutoNumberAssessment": "Starting GlobalAutoNumber assessment",
54
55
  "allVersionsInfo": "allVersions : %s",
55
56
  "assessmentInitialization": "Assessment Initialization: Using namespace: %s",
@@ -57,20 +58,20 @@
57
58
  "assessmentTargets": "Assessment targets: %s",
58
59
  "relatedObjectsInfo": "Related objects: %s",
59
60
  "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",
61
+ "assessedDataRaptorsCount": "Assessed %s Data Mappers",
62
+ "dataRaptorAssessmentCompleted": "Data Mappers assessment completed",
63
+ "flexCardAssessment": "Flexcards Assessment",
64
+ "assessedFlexCardsCount": "Assessed %s Flexcards",
65
+ "flexCardAssessmentCompleted": "Flexcards assessment completed",
65
66
  "globalAutoNumberAssessment": "GlobalAutoNumber Assessment",
66
67
  "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",
68
+ "globalAutoNumberAssessmentCompleted": "The assessment for Omni Global Auto Number is complete.",
69
+ "omniScriptAssessment": "%s Assessment",
70
+ "assessedOmniScriptsCount": "Assessed %s Omniscripts",
70
71
  "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",
72
+ "omniScriptAssessmentCompleted": "%s assessment completed",
73
+ "startingFlexCardAssessment": "Starting Flexcards assessment",
74
+ "foundFlexCardsToAssess": "Found %s Flexcards to assess",
74
75
  "startingApexAssessment": "Starting Apex assessment in project path: %s",
75
76
  "processingApexFilesForAssessment": "Processing Apex files for assessment",
76
77
  "successfullyProcessedApexFilesForAssessment": "Successfully processed %s Apex files for assessment",
@@ -78,11 +79,13 @@
78
79
  "foundApexFilesInDirectory": "Found %s Apex files in directory: %s",
79
80
  "skippingNonApexFile": "Skipping non-Apex file: %s",
80
81
  "processingApexFile": "Processing Apex file: %s",
81
- "skippingApexFileFewChanges": "Skipping Apex file: %s as it has less than 3 changes",
82
+ "skippingApexFileNoChanges": "Skipping Apex file: %s as it has no changes",
82
83
  "successfullyProcessedApexFile": "Successfully processed Apex file: %s",
83
84
  "fileNoOmnistudioCalls": "File %s does not have any omnistudio calls or remote calls. No changes will be applied.",
84
85
  "fileAlreadyImplementsCallable": "file %s already implements callable no changes will be applied",
85
86
  "inApexDrNameWillBeUpdated": "In Apex %s DR name %s will be updated to %s",
87
+ "inApexIpNameWillBeUpdated": "In Apex %s IP name %s will be updated to %s",
88
+ "inApexVariableAssignmentWillBeUpdated": "In Apex %s variable assignment %s = '%s' will be updated to %s",
86
89
  "startingLwcAssessment": "Starting LWC assessment in project path: %s",
87
90
  "processingLwcsForAssessment": "Processing LWCs for assessment",
88
91
  "successfullyProcessedLwcsForAssessment": "Successfully processed %s LWCs for assessment",
@@ -97,25 +100,28 @@
97
100
  "methodCallBundleNameUpdated": "Method call bundle name will be updated in %s for class %s method %s",
98
101
  "cardNameChangeMessage": "Card name will be changed from %s to %s to follow API naming standards",
99
102
  "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.",
103
+ "omniScriptNameChangeMessage": "Omniscript reference name %s will be changed to %s during migration.",
104
+ "dataRaptorNameChangeMessage": "DataMapper reference %s will be changed to %s during migration.",
102
105
  "integrationProcedureNameChangeMessage": "Integration Procedure reference %s will be changed to %s during migration.",
103
106
  "integrationProcedureManualUpdateMessage": "Integration Procedure reference %s may need manual updates after migration.",
104
107
  "duplicateCardNameMessage": "Potential duplicate: Another card has the same name %s after name cleaning. This may cause conflicts during migration",
105
- "globalAutoNumberNameChangeMessage": "GlobalAutoNumber name will be changed from %s to %s to follow API naming standards",
106
- "duplicateGlobalAutoNumberNameMessage": "Potential duplicate: Another Global Auto Number has the same name %s after name cleaning. This may cause conflicts during migration",
108
+ "startingCustomLabelAssessment": "Starting Custom Label assessment",
109
+ "assessedCustomLabelsCount": "Found %s labels that need attention out of %s total",
110
+ "customLabelAssessmentCompleted": "Custom Label assessment completed",
111
+ "errorDuringCustomLabelAssessment": "Error during Custom Label assessment: %s",
112
+ "duplicateGlobalAutoNumberNameMessage": "Potential duplicate: Another Omni Global Auto Number has the same name %s after name cleaning. This may cause conflicts during migration",
107
113
  "existingApexPrompt": "Do you have a sfdc project that already contains the APEX classes retrieved from your org? [y/n]",
108
- "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved APEX classes:",
114
+ "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved APEX classes",
109
115
  "invalidProjectFolderPath": "Provided project folder does not exist. Please provide a valid project folder path",
110
116
  "requestTimedOut": "Request timed out",
111
117
  "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]",
112
- "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve to and process the APEX classes:",
118
+ "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve to and process the APEX classes",
113
119
  "notEmptyProjectFolderPath": "Provided project folder is not empty. Please provide a valid empty project folder name and path",
114
120
  "operationCancelled": "Operation cancelled.",
115
121
  "invalidYesNoResponse": "Invalid response. Please answer y or n.",
116
122
  "notSfdxProjectFolderPath": "Provided folder is not a valid Salesforce DX project. Please select a folder containing sfdx-project.json",
117
123
  "failedToGetValidProjectPath": "Failed to get valid project path",
118
- "errorRunningAssess": "Error running assess",
124
+ "errorRunningAssess": "Assessment process failed reason : %s",
119
125
  "enableVerboseOutput": "Enable verbose output",
120
126
  "apexFileChangesIdentifiedNotApplied": "Changes identified for Apex class %s but not applied (assessment mode)",
121
127
  "apexFileHasMultipleInterfaces": "File %s has multiple interfaces including Callable, standardizing to System.Callable only",
@@ -125,17 +131,81 @@
125
131
  "errorGeneratingHTML": "Error while generating HTML from template for %s with properties %s",
126
132
  "unexpectedError": "Unexpected Assessment error",
127
133
  "errorEvaluatingExpression": "Error evaluating expression: %s, %s",
128
- "retrievingFlexiPages": "Retrieving FlexiPages",
129
- "successfullyRetrievedFlexiPages": "Successfully retrieved %s FlexiPages",
134
+ "foundFlexiPages": "Found %s FlexiPages to assess",
130
135
  "assessingFlexiPages": "Assessing FlexiPages",
131
- "completedProcessingAllFlexiPages": "Completed processing all flexipage files. Total processed: %s",
132
- "completedProcessingFlexiPage": "Completed processing %s - Errors: %s",
133
- "processingFlexiPage": "Processing flexipage file: %s",
134
- "startingFlexiPageProcessing": "Starting to process flexipage: %s",
136
+ "completedProcessingAllFlexiPages": "Completed processing all FlexiPages. Total processed: %s",
137
+ "completedProcessingFlexiPage": "Completed processing %s. Errors: %s",
138
+ "processingFlexiPage": "Processing FlexiPage: %s",
139
+ "startingFlexiPageProcessing": "Starting to process FlexiPage: %s",
135
140
  "readFlexiPageContent": "Read file content, size: %s characters",
136
- "updatedModifiedContent": "updated content in file: %s",
137
- "generatedDiffForFile": "Generated diff for file: %s",
138
- "errorProcessingFlexiPage": "Error processing flexipage file: %s, %s",
139
- "flexipagesWithChanges": "Found %s flexipage files with changes",
140
- "migratingFlexiPages": "Migrating FlexiPages"
141
+ "updatedModifiedContent": "updated content in %s file",
142
+ "generatedDiffForFile": "Generated difference for the file: %s",
143
+ "errorProcessingFlexiPage": "Error processing FlexiPage: %s, %s",
144
+ "flexipagesWithChanges": "Found %s FlexiPages with changes",
145
+ "migratingFlexiPages": "Migrating FlexiPages",
146
+ "experienceSiteMetadataConsent": "Your consent for migrating Experience Cloud sites is %s",
147
+ "experienceSiteConsentNotProvidedWarning": "You’ve not provided consent and your Experience Cloud sites won’t be processed.",
148
+ "relatedObjectsToProcessAfterExpSitesRemoval": "Objects to process after removing expsite are",
149
+ "experienceBundleMetadataAPIAlreadyEnabled": "The ExperienceBundle metadata API is already enabled.",
150
+ "enableExperienceBundleMetadataAPIProgramatically": "ExperienceBundle metadata API needs to be programatically enabled",
151
+ "unableToEnableExperienceBundleMetadataAPI": "We couldn’t enable the ExperienceBundle metadata API. Experience Cloud sites won’t be processed.",
152
+ "relatedObjectsToProcess": "These objects will be processed: ",
153
+ "consentForExperienceSites": "By proceeding further, you hereby consent to enable the ExperienceBundle metadata API and process Experience Cloud sites. Do you want to proceed? [y/n]",
154
+ "failedToGetConsentError": "Failed to get user consent: %s",
155
+ "noRelatedObjects": "No related objects to process",
156
+ "turnOffExperienceBundleAPI": "Turning off the ExperienceBundle metadata API as it was enabled programmatically.",
157
+ "errorRevertingExperienceBundleMetadataAPI": "We couldn’t revert the ExperienceBundle metadata API. Manually revert it in your org.",
158
+ "processingExperienceSites": "Started processing the Experience Cloud site file: %s",
159
+ "experienceSitesProcessingStarted": "Started processing Experience Cloud sites.",
160
+ "experienceSiteSuccessfullyProcessed": "Successfully processed experience sites for %s",
161
+ "readingFile": "Started reading the files",
162
+ "totalFileCount": "The total count of files is %s",
163
+ "skipNonJsonFile": "Skipping non-JSON file - %s",
164
+ "experienceSiteWithOmniWrapperSuccessfullyProcessed": "Successfully processed the Experience Cloud site file with a Vlocity wrapper.",
165
+ "fileNotHavingWrapper": "File doesn’t contain Vlocity wrapper.",
166
+ "errorProcessingExperienceSite": "We’ve encountered an error while processing the Experience Cloud site file",
167
+ "experienceSiteReportingDetails": "Only the files in which have vlocity wrapper will be shown in the report",
168
+ "processingFile": "Processing for file",
169
+ "currentRegionOfExperienceSite": "The current region being processed is %s.",
170
+ "currentComponentOfExperienceSite": "The current component being processed is %s.",
171
+ "omniWrapperFound": "Omnistudio wrapper component found.",
172
+ "printUpdatedObject": "Printing the updated object %s.",
173
+ "printDifference": "Printing the difference %s.",
174
+ "updatingFile": "Updating the file content.",
175
+ "processingFlexcardComponent": "Started processing the flexcard component %s",
176
+ "processingOmniscriptComponent": "Started processing the Omnistudio component.",
177
+ "targetData": "The target data is %s.",
178
+ "emptyTargetData": "The Target Name is empty. Check your Experience Cloud site configuration",
179
+ "manualInterventionForExperienceSite": "We couldn’t process the %s component because no key was found.",
180
+ "manualInterventionForExperienceSiteAsFailure": "We couldn’t process the %s component. ",
181
+ "manualInterventionForExperienceSiteAsDuplicateKey": "We couldn’t process the %s component because a duplicate key was found. ",
182
+ "updatingStorageForOmniscipt": "Started updating storage for omniscript %s",
183
+ "keyAlreadyInStorage": "The key %s already exists in storage.",
184
+ "flexcardStorageProcessingStarted": "Preparing storage for Flexcards.",
185
+ "errorWhileProcessingFlexcardStorage": "We couldn’t process the Flexcard name for storage.",
186
+ "missingInfo": "Info is missing",
187
+ "errorCheckingGlobalAutoNumber": "We couldn't check whether the Omni Global Auto Number setting is enabled: %s. Try again later.",
188
+ "errorMigrationMessage": "Error migrating object: %s",
189
+ "nameMappingUndefined": "Undefined name mapping found",
190
+ "experienceSiteException": "We’ve encountered an exception while processing Experience Cloud sites.",
191
+ "reservedKeysFoundInPropertySet": "Reserved keys found in any of output response transformation fields: %s.",
192
+ "integrationProcedureMissingMandatoryField": "Integration Procedure %s is missing mandatory %s field",
193
+ "dataMapperMigrationFailed": "DataMapper migration failed for: %s",
194
+ "dataMapperNameStartsWithNumber": "DataMapper name '%s' starts with a number which causes migration issues. Proposed new name: %s",
195
+ "dataMapperNamePrefixedWithDM": "DataMapper name '%s' starts with a number. Prefixing with 'DM_' to create valid name: %s",
196
+ "integrationProcedureTypeEmptyAfterCleaning": "Integration Procedure Type '%s' becomes empty after name cleaning. Please provide a valid Type value.",
197
+ "integrationProcedureSubtypeEmptyAfterCleaning": "Integration Procedure SubType '%s' becomes empty after name cleaning. Please provide a valid SubType value.",
198
+ "apexFileAlreadyHasCallMethod": "File %s already has call method, thus keeping the existing call method intact",
199
+ "errorFetchingCustomLabels": "Error fetching custom labels: %s",
200
+ "customLabelAssessmentSummary": "Custom Label with same name and different value is already exist without namespace.",
201
+ "customLabelWarningSummary": "Custom Label has potential conflicts that need review.",
202
+ "customLabelFailedSummary": "Custom Label assessment failed due to errors.",
203
+ "customLabelNeedsManualInterventionSummary": "Custom Label requires manual intervention for resolution.",
204
+ "generatedCustomLabelAssessmentReportPage": "Generated custom label assessment report page %s of %s with %s labels",
205
+ "manualDeploymentSteps": "<a href='%s' target='_blank'>Please refer to this documentation for manual deployment process</a>",
206
+ "varDeclarationUpdated": "Variable initialization will be updated for target name",
207
+ "ipNameUpdateFailed": "IP reference %s can’t be updated",
208
+ "dmNameUpdateFailed": "DM reference %s can’t be updated",
209
+ "invalidTypeAssessErrorMessage": "We couldn't assess your Omnistudio components in the %s namespace. Select the correct namespace and try again",
210
+ "assessmentSuccessfulMessage": "Migration assessment for org %s is complete and reports are ready for review in the folder %s"
141
211
  }
@@ -1,60 +1,61 @@
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
15
  "commandDescription": "Migrate omnistudio components from custom objects to standard objects",
14
16
  "namespaceFlagDescription": "The namespace of the package",
15
- "apiVersionFlagDescription": "The Salesforce API version to use",
16
17
  "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",
18
+ "onlyFlagDescription": "Migrate a single element: os | ip | fc | dm | autonumber | cl",
19
+ "invalidOnlyFlag": "Invalid flag, valid options are: os | ip | fc | dm | autonumber | cl",
19
20
  "couldNotDeactivateOmniProcesses": "Could not deactivate current OmniProcesses",
20
21
  "couldNotTruncate": "Could not truncate %s",
21
22
  "couldNotTruncateOmnniProcess": "Could not truncate OmniProcess. Please make sure your OS/IP is not referenced in an OmniScrirpt or Flex Card.",
22
23
  "invalidNameTypeSubtypeOrLanguage": "Not a valid Name, Type, SubType or Language",
23
- "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same OmniScript",
24
+ "invalidOrRepeatingOmniscriptElementNames": "Invalid or Repeating Element Names for Same Omniscript",
24
25
  "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: ",
26
+ "duplicatedCardName": "Duplicated Flex Card name %s",
27
+ "duplicatedDrName": "Duplicated DataMapper name %s",
28
+ "duplicatedOSName": "Duplicated %s name %s",
29
+ "errorWhileActivatingOs": "Could not activate %s: ",
29
30
  "errorWhileActivatingCard": "Could not activate Card: ",
30
31
  "errorWhileUploadingCard": "An error ocurred while uploading Card: ",
31
- "errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
32
+ "errorWhileCreatingElements": "An error ocurred while saving Omniscript elements: ",
32
33
  "allVersionsDescription": "Migrate all versions of a component",
33
34
  "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
35
  "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
+ "unknownNamespace": "Org doesn't have Omnistudio namespace(s) configured",
36
37
  "noPackageInstalled": "No package installed on given org.",
37
38
  "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.",
39
+ "noOmniStudioLicenses": "OmniStudio licenses are not found in the org. OmniStudio licenses are required for migration",
40
+ "invalidRelatedObjectsOption": "Invalid option provided for -r: %s. Valid options are apex, lwc, expsites, flexipage.",
40
41
  "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
42
  "userDeclinedConsent": "User declined consent, will not process %s .",
42
43
  "userConsentedToProceed": "User consented to proceed",
43
44
  "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:",
45
+ "enterExistingProjectPath": "Enter the path to the project folder that contains the retrieved APEX classes",
45
46
  "invalidProjectFolderPath": "Provided project folder does not exist. Please provide a valid project folder path",
46
47
  "requestTimedOut": "Request timed out",
47
48
  "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:",
49
+ "enterEmptyProjectPath": "Enter the path to an empty project folder to retrieve to and process the APEX classes",
49
50
  "notEmptyProjectFolderPath": "Provided project folder is not empty. Please provide a valid empty project folder name and path",
50
51
  "invalidYesNoResponse": "Invalid response. Please answer y or n.",
51
52
  "notSfdxProjectFolderPath": "Provided folder is not a valid Salesforce DX project. Please select a folder containing sfdx-project.json",
52
53
  "operationCancelled": "Operation cancelled.",
53
54
  "failedToGetValidProjectPath": "Failed to get valid project path",
54
- "errorRunningMigrate": "Error running migrate %s",
55
+ "errorRunningMigrate": "Migration process failed reason : %s",
55
56
  "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",
57
+ "errorSettingDesignersToStandardDataModel": "We encountered an error while configuring the designers to use the standard data model %s",
58
+ "exceptionSettingDesignersToStandardDataModel": "We encountered an error while configuring the designers to use the standard data model %s",
58
59
  "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
60
  "enterProjectPath": "Enter the project path for processing %s :",
60
61
  "projectJsonNotFound": "Could not find any %s in %s.",
@@ -64,14 +65,15 @@
64
65
  "cleaningComponent": "Cleaning: %s",
65
66
  "cleaningDone": "Cleaning Done: %s",
66
67
  "migratingComponent": "Migrating: %s",
67
- "cleaningFailed": "Cleaning Failed: %s",
68
+ "cleaningFailed": "%s pre-migration cleanup failed.",
68
69
  "migrationCompleted": "Migration completed: %s",
69
70
  "migrationFailed": "Migration failed: %s",
70
71
  "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",
72
+ "foundDataRaptorsToMigrate": "Found %s Data Mappers to migrate",
73
+ "foundFlexCardsToMigrate": "Found %s Flexcards to migrate",
74
+ "foundOmniScriptsToMigrate": "Found %s %s to migrate",
74
75
  "foundGlobalAutoNumbersToMigrate": "Found %s GlobalAutoNumbers to migrate",
76
+ "foundCustomLabelsToMigrate": "Found %s Custom Labels to migrate",
75
77
  "allVersionsInfo": "allVersions : %s",
76
78
  "migrationInitialization": "Migration Initialization: Using namespace: %s",
77
79
  "apiVersionInfo": "API Version: %s",
@@ -87,6 +89,7 @@
87
89
  "successfullyProcessedLwcsForMigration": "Successfully processed %s LWCs for migration",
88
90
  "lwcMigrationResults": "LWC migration results: %s",
89
91
  "inApexDrNameWillBeUpdatedMigration": "In Apex %s DR name %s will be updated to %s",
92
+ "inApexIpNameWillBeUpdatedMigration": "In Apex %s IP name %s will be updated to %s",
90
93
  "retrievingMetadata": "Retrieving metadata for %s in project path: %s",
91
94
  "creatingProject": "Creating project %s",
92
95
  "projectCreated": "Project %s created",
@@ -98,13 +101,13 @@
98
101
  "packageSelectionPrompt": "Enter the number of the package to use (1-%s):",
99
102
  "invalidPackageSelection": "Invalid selection. Please enter a number between 1 and %s.",
100
103
  "selectedPackage": "Selected package: %s (Version: %s)",
101
- "dataRaptorNameChangeMessage": "DataRaptor reference %s will be changed to %s during migration.",
104
+ "dataRaptorNameChangeMessage": "DataMapper reference %s will be changed to %s during migration.",
102
105
  "integrationProcedureNameChangeMessage": "Integration Procedure reference %s will be changed to %s during migration.",
103
106
  "integrationProcedureManualUpdateMessage": "Integration Procedure reference %s may need manual updates after migration.",
104
107
  "cardAuthorNameChangeMessage": "Card author name has been modified to fit naming rules: %s",
105
108
  "cardNameChangeMessage": "Card name has been modified to fit naming rules: %s",
106
109
  "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",
110
+ "angularOmniscriptWarningMessage": " Angular Omniscript will not be migrated, please convert this to LWC based Omniscript",
108
111
  "apexFileChangesApplied": "Applied changes to Apex class %s",
109
112
  "generatingComponentReports": "Generating report for components",
110
113
  "generatingRelatedObjectReports": "Generating report for related objects",
@@ -113,43 +116,159 @@
113
116
  "errorParsingData": "Error while parsing data for template",
114
117
  "errorGeneratingHTML": "Error while generating HTML from template for %s with properties %s",
115
118
  "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
119
  "labelStatusSkipped": "Skipped",
118
120
  "labelStatusFailed": "Failed",
119
121
  "labelStatusComplete": "Complete",
120
- "retrievingFlexiPages": "Retrieving FlexiPages",
121
- "successfullyRetrievedFlexiPages": "Successfully retrieved %s FlexiPages",
122
+ "migrationConsentNotGiven": "Couldn't confirm whether assessment errors are resolved",
123
+ "foundFlexiPages": "Found %s FlexiPages to migrate",
122
124
  "migratingFlexiPages": "Migrating FlexiPages",
123
- "completedProcessingAllFlexiPages": "Completed processing all flexipage files. Total processed: %s",
124
- "completedProcessingFlexiPage": "Completed processing %s - Errors: %s",
125
- "processingFlexiPage": "Processing flexipage file: %s",
126
- "startingFlexiPageProcessing": "Starting to process flexipage: %s",
125
+ "completedProcessingAllFlexiPages": "Completed processing all flexipages. Total processed: %s",
126
+ "completedProcessingFlexiPage": "Completed processing %s. Errors: %s",
127
+ "processingFlexiPage": "Processing FlexiPage: %s",
128
+ "startingFlexiPageProcessing": "Starting to process FlexiPage: %s",
127
129
  "readFlexiPageContent": "Read file content, size: %s characters",
128
- "updatedModifiedContent": "updated content in file: %s",
129
- "generatedDiffForFile": "Generated diff for file: %s",
130
- "errorProcessingFlexiPage": "Error processing flexipage file: %s, %s",
131
- "flexipagesWithChanges": "Found %s flexipage files with changes",
130
+ "updatedModifiedContent": "updated content in %s file",
131
+ "generatedDiffForFile": "Generated difference for the file: %s",
132
+ "errorProcessingFlexiPage": "Error processing FlexiPage: %s, %s",
133
+ "flexipagesWithChanges": "Found %s FlexiPages with changes",
132
134
  "omniGlobalAutoNumberPrefEnabled": "Successfully enabled OmniGlobalAutoNumberPref org preference",
133
- "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>.",
134
- "performingPreMigrationChecks": "Performing pre-migration checks for Global Auto Number...",
135
- "preMigrationChecksPassed": "Pre-migration checks passed. Proceeding with Global Auto Number migration.",
135
+ "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>.",
136
+ "performingPreMigrationChecks": "Performing pre-migration checks for Omni Global Auto Number",
137
+ "preMigrationChecksPassed": "Pre-migration checks passed. Proceeding with Omni Global Auto Number migration.",
136
138
  "preMigrationChecksFailed": "Pre-migration checks failed. Migration cannot proceed.",
137
- "globalAutoNumberPrefEnabledError": "The Global Auto Number setting is enabled and global auto numbers have already been migrated.",
138
- "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.",
139
- "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.",
140
- "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.",
139
+ "globalAutoNumberPrefEnabledError": "The Omni Global Auto Number setting is enabled and global auto numbers have already been migrated.",
140
+ "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.",
141
+ "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.",
142
+ "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.",
141
143
  "errorCheckingRollbackFlags": "Error checking rollback flags status.",
142
- "startingPostMigrationCleanup": "Starting post-migration cleanup for Global Auto Number...",
144
+ "startingPostMigrationCleanup": "Starting post-migration cleanup for Omni Global Auto Number",
143
145
  "postMigrationCleanupCompleted": "Post-migration cleanup completed successfully.",
144
146
  "errorDuringPostMigrationCleanup": "We’ve encountered an error during the post-migration cleanup. Try again later.",
145
- "globalAutoNumberNameChangeMessage": "Global Auto Number name has been modified to fit naming rules: %s",
146
- "duplicatedGlobalAutoNumberName": "Duplicated Global Auto Number name",
147
- "errorWhileUploadingGlobalAutoNumber": "An error occurred while uploading Global Auto Number: ",
148
- "startingGlobalAutoNumberAssessment": "Starting Global Auto Number assessment...",
149
- "foundGlobalAutoNumbersToAssess": "Found %s Global Auto Numbers to assess",
147
+ "duplicatedGlobalAutoNumberName": "Duplicated Omni Global Auto Number name",
148
+ "errorWhileUploadingGlobalAutoNumber": "An error occurred while uploading Omni Global Auto Number: ",
149
+ "startingGlobalAutoNumberAssessment": "Starting Omni Global Auto Number assessment...",
150
+ "foundGlobalAutoNumbersToAssess": "Found %s Omni Global Auto Numbers to assess",
150
151
  "unexpectedError": "An unexpected error occurred during processing",
151
- "migrationValidationFailed": "The post-migration validation has failed.",
152
- "incompleteMigrationDetected": "We couldn’t complete the migration process",
153
- "errorCheckingGlobalAutoNumber": "We couldn’t check whether the Global Auto Number setting is enabled: %s. Try again later.",
154
- "errorMigrationMessage": "Error migrating object: %s"
152
+ "migrationValidationFailed": "Post Migration validation failed.",
153
+ "experienceSiteMetadataConsent": "Your consent for processing Experience Cloud sites is %s",
154
+ "experienceSiteConsentNotProvidedWarning": "Consent for experience sites is not provided. Experience sites will not be processed",
155
+ "relatedObjectsToProcessAfterExpSitesRemoval": "Prerequisites for Experience Cloud sites complete. The objects to process are ",
156
+ "experienceBundleMetadataAPIAlreadyEnabled": "The ExperienceBundle metadata API is already enabled.",
157
+ "enableExperienceBundleMetadataAPIProgramatically": "ExperienceBundle metadata API needs to be programmatically enabled.",
158
+ "unableToEnableExperienceBundleMetadataAPI": "We couldn’t enable the ExperienceBundle metadata API. Experience Cloud sites won’t be processed.",
159
+ "relatedObjectsToProcess": "These objects will be processed: ",
160
+ "consentForExperienceSites": "By proceeding further, you hereby consent to enable the ExperienceBundle metadata API and process Experience Cloud sites. Do you want to proceed? [y/n]",
161
+ "failedToGetConsentError": "You’ve not provided consent and your Experience Cloud sites won’t be processed.",
162
+ "noRelatedObjects": "No related objects to process",
163
+ "turnOffExperienceBundleAPI": "Turning off the ExperienceBundle metadata API as it was enabled programmatically.",
164
+ "errorRevertingExperienceBundleMetadataAPI": "We couldn’t revert the ExperienceBundle metadata API. Manually revert it in your org.",
165
+ "processingExperienceSites": "Started processing the Experience Cloud site file: %s",
166
+ "experienceSitesProcessingStarted": "Started processing Experience Cloud sites",
167
+ "experienceSiteSuccessfullyProcessed": "Successfully processed the Experience Cloud sites for %s",
168
+ "readingFile": "Started reading the files",
169
+ "totalFileCount": "The total count of files is %s",
170
+ "skipNonJsonFile": "Skipping non-JSON file %s",
171
+ "experienceSiteWithOmniWrapperSuccessfullyProcessed": "Successfully processed the Experience Cloud site file with a Vlocity wrapper.",
172
+ "fileNotHavingWrapper": "File doesn’t contain Vlocity wrapper.",
173
+ "errorProcessingExperienceSite": "We’ve encountered an error while processing the Experience Cloud site file",
174
+ "experienceSiteReportingDetails": "Only files with a Vlocity wrapper will be shown in the report.",
175
+ "processingFile": "Processing for file",
176
+ "currentRegionOfExperienceSite": "The current region being processed is %s.",
177
+ "currentComponentOfExperienceSite": "The current component being processed is %s.",
178
+ "omniWrapperFound": "Omnistudio wrapper component found.",
179
+ "printUpdatedObject": "Printing the updated object %s.",
180
+ "printDifference": "Printing the difference %s.",
181
+ "updatingFile": "Updating the file content.",
182
+ "processingFlexcardComponent": "Started processing the Flexcard component %s.",
183
+ "processingOmniscriptComponent": "Started processing the Omnistudio component.",
184
+ "targetData": "The target data is: %s",
185
+ "manualInterventionForExperienceSite": "We couldn’t process the %s component because no key was found.",
186
+ "emptyTargetData": "The Target Name is empty. Check your Experience Cloud site configuration",
187
+ "manualInterventionForExperienceSiteAsFailure": "We couldn’t process the %s component.",
188
+ "manualInterventionForExperienceSiteAsDuplicateKey": "We couldn’t process the %s component because a duplicate key was found.",
189
+ "updatingStorageForOmniscipt": "Preparing storage for Omniscript %s",
190
+ "keyAlreadyInStorage": "The %s already exists in storage. ",
191
+ "flexcardStorageProcessingStarted": "Preparing storage for Flexcards.",
192
+ "errorWhileProcessingFlexcardStorage": "We couldn’t process the Flexcard name for storage.",
193
+ "missingInfo": "Info is missing",
194
+ "errorCheckingGlobalAutoNumber": "We couldn't check whether the Omni Global Auto Number setting is enabled: %s. Try again later.",
195
+ "errorMigrationMessage": "Error migrating object: %s",
196
+ "nameMappingUndefined": "Undefined name mapping found",
197
+ "autoDeployConsentMessage": "Do you want to deploy the related objects automatically? [y/n]",
198
+ "errorDeployingComponents": "We couldn’t deploy related objects after migration.",
199
+ "installingDependency": "Installing node dependency %s",
200
+ "dependencyInstalled": "Node dependency %s installed",
201
+ "deployingFromManifest": "Deploying from metadata packages",
202
+ "manifestDeployFailed": "We couldn’t deploy metadata packages. Check the logs or the status for more details.",
203
+ "installingRequiredDependencies": "Installing required node dependencies",
204
+ "creatingNPMConfigFile": "Creating npm configuration file",
205
+ "npmConfigFileCreated": "Npm config file created",
206
+ "authKeyEnvVarNotSet": "The OMA_AUTH_KEY environment variable isn’t set. LWCs won't be deployed.",
207
+ "manualDeploymentSteps": "<a href='%s' target='_blank'>Please refer to this documentation for manual deployment process</a>",
208
+ "errorRetrievingMetadata": "Error retrieving metadata",
209
+ "deploymentConsentNotGiven": "Deployment consent not given, manual deployment is required",
210
+ "experienceSiteException": "We’ve encountered an exception while processing Experience Cloud sites.",
211
+ "reservedKeysFoundInPropertySet": "Reserved keys found in any of output response transformation fields: %s.",
212
+ "incompleteMigrationDetected": "We couldn't complete the migration process",
213
+ "errorComponentMapping": "Error during component pre-processing: %s",
214
+ "startingComponentPreProcessing": "Pre-processing components for name mapping",
215
+ "completeComponentMappingMessage": "Registered name mappings for %s components",
216
+ "componentMappingNotFound": "No registry mapping found for %s component: %s, using fallback cleaning",
217
+ "integrationProcedureInvalidUnderscoreFormat": "Integration Procedure reference '%s' contains underscores in Type/SubType names. Skipping reference update to avoid incorrect parsing.",
218
+ "flexCardWithAngularOmniScriptWarning": "FlexCard has dependencies on Angular Omniscript(s) which are not migrated. Please convert Omniscript(s) to LWC before migrating this FlexCard.",
219
+ "angularOmniScriptDependencyWarning": "Element '%s' references Angular Omniscript '%s' which will not be migrated. Consider converting the referenced Omniscript to LWC",
220
+ "skipFlexcardAngularOmniScriptDependencyWarning": "Skipping FlexCard %s due to Angular Omniscript dependencies",
221
+ "flexCardMigrationProcessingMessage": "Processing %s Flexcards for migration (%s skipped due to Angular dependencies)",
222
+ "noMetadataToDeploy": "No metadata to deploy",
223
+ "missingMandatoryField": "Missing mandatory field: %s for %s",
224
+ "dataMapperMigrationFailed": "DataMapper migration failed for: %s",
225
+ "dataMapperNameStartsWithNumber": "DataMapper name '%s' starts with a number which causes migration issues. Proposed new name: %s",
226
+ "dataMapperNamePrefixedWithDM": "DataMapper name '%s' starts with a number. Prefixing with 'DM_' to create valid name: %s",
227
+ "integrationProcedureTypeEmptyAfterCleaning": "Integration Procedure Type '%s' becomes empty after name cleaning. Please provide a valid Type value.",
228
+ "integrationProcedureSubtypeEmptyAfterCleaning": "Integration Procedure SubType '%s' becomes empty after name cleaning. Please provide a valid SubType value.",
229
+ "manifestDeployementStarted": "Manifest deployment started with ID: %s",
230
+ "migrationConsentMessage": "Make sure that all records listed in the Assessment Status column in the Assessment Report are marked as Ready for Migration before proceeding with the migration. Do you want to proceed? Yes or No?",
231
+ "truncationFailed": "Truncation failed for %s: %s",
232
+ "invalidTypeMigrateErrorMessage": "We couldn't migrate your Omnistudio components in the %s namespace. Select the correct namespace and try again",
233
+ "errorCheckingStandardRuntime": "We couldn't check whether the Standard OmniStudio Runtime setting is enabled: %s. Try again later.",
234
+ "checkingStandardRuntimeStatus": "Checking Standard OmniStudio Runtime status...",
235
+ "standardRuntimeAlreadyEnabled": "Standard OmniStudio Runtime is already enabled, no action needed.",
236
+ "standardRuntimeEnabled": "Standard OmniStudio Runtime has been successfully enabled.",
237
+ "errorEnablingStandardRuntime": "Failed to enable Standard OmniStudio Runtime: %s",
238
+ "exceptionEnablingStandardRuntime": "Exception occurred while enabling Standard OmniStudio Runtime: %s",
239
+ "manuallyEnableStandardRuntime": "Please manually enable the Standard OmniStudio Runtime setting in your org's OmniStudio Settings.",
240
+ "standardDesignerAlreadyEnabled": "Standard OmniStudio designer is already enabled, no action needed for package: %s",
241
+ "settingDesignersToStandardModel": "Configuring Omnistudio designers to use the standard data model.",
242
+ "designersSetToStandardModel": "Successfully configured Omnistudio designers to use the standard data model.",
243
+ "errorSettingDesignersToStandardModel": "Failed to set designers to standard data model: %s",
244
+ "exceptionSettingDesignersToStandardModel": "Exception occurred while setting designers to standard data model: %s",
245
+ "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>.",
246
+ "checkingStandardDesignerStatus": "Checking if standard designer is already enabled for package: %s",
247
+ "enableStandardRuntimeAfterDesigner": "Standard designer setup successful, proceeding with Standard Runtime enablement",
248
+ "skipStandardRuntimeDueToFailure": "Skipping Standard Runtime enablement due to designer setup failure",
249
+ "errorCheckingStandardDesigner": "Failed to check standard designer status for package %s: %s",
250
+ "relatedObjectsConsentNotGiven": "The related objects will not be processed because the user declined consent.",
251
+ "fileUpdatedToAllowRemoteCalls": "File has been updated to allow remote calls",
252
+ "fileUpdatedToAllowCalls": "File has been updated to allow calls",
253
+ "startingCustomLabelMigration": "Starting Custom Labels migration",
254
+ "customLabelMigrationCompleted": "Custom Labels migration completed. %s labels processed out of %s total",
255
+ "errorDuringCustomLabelMigration": "Error during Custom Labels migration: %s",
256
+ "callingCloneCustomLabelsAPI": "Calling clone-custom-labels API for namespace: %s",
257
+ "cloneCustomLabelsAPIResponse": "Clone custom labels API response summary: %s results",
258
+ "errorCallingCloneCustomLabelsAPI": "Error calling clone-custom-labels API: %s",
259
+ "callingCloneCustomLabelLocalizationsAPI": "Calling clone-custom-label-localizations API for namespace: %s",
260
+ "cloneCustomLabelLocalizationsAPIResponse": "Clone custom label localizations API response summary: %s labels with localizations",
261
+ "errorCallingCloneCustomLabelLocalizationsAPI": "Error calling clone-custom-label-localizations API: %s",
262
+ "skippingCustomLabelTruncation": "Skipping truncation for Custom Labels",
263
+ "labelAlreadyExistsWarning": "Label already exists with status: %s",
264
+ "failedToCloneLabelError": "Failed to clone label with status: %s",
265
+ "localizationAlreadyExistsWarning": "Localization for %s already exists",
266
+ "failedToCreateLocalizationError": "Failed to create localization for %s",
267
+ "generatingCustomLabelsReport": "Generating custom labels migration report with %s labels (all statuses) across %s pages of %s each",
268
+ "generatedCustomLabelsReportPage": "Generated custom labels report page %s of %s with %s labels",
269
+ "errorFetchingCustomLabels": "Error fetching custom labels: %s",
270
+ "customLabelAssessmentSummary": "Custom Label with same name and different value is already exist without namespace.",
271
+ "generatedCustomLabelAssessmentReportPage": "Generated custom label assessment report page %s of %s with %s labels",
272
+ "varDeclarationUpdated": "Variable initialization has been updated for target name",
273
+ "migrationSuccessfulMessage": "Migration process for org %s is complete and reports are ready for review in the folder %s"
155
274
  }