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