@salesforce/plugin-omnistudio-migration-tool 1.4.1-dev.13 → 1.4.1-dev.14
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 +7 -0
- package/lib/commands/omnistudio/migration/migrate.d.ts +1 -0
- package/lib/commands/omnistudio/migration/migrate.js +29 -0
- package/lib/commands/omnistudio/migration/migrate.js.map +1 -1
- package/lib/migration/related/ApexMigration.d.ts +0 -3
- package/lib/migration/related/ApexMigration.js +6 -6
- package/lib/migration/related/ApexMigration.js.map +1 -1
- package/lib/migration/related/LwcMigration.d.ts +0 -4
- package/lib/migration/related/LwcMigration.js +7 -12
- package/lib/migration/related/LwcMigration.js.map +1 -1
- package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.d.ts +1 -1
- package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js +2 -2
- package/lib/migration/related/OmnistudioRelatedObjectMigrationFacade.js.map +1 -1
- package/messages/assess.json +2 -1
- package/messages/info.json +2 -1
- package/messages/migrate.json +6 -2
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -59,4 +59,11 @@ OPTIONS
|
|
|
59
59
|
-a, --allversions migrate all versions and not
|
|
60
60
|
and not just the active ones.
|
|
61
61
|
|
|
62
|
+
--relatedobjects=relatedobjects Please select the type of components to
|
|
63
|
+
migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, or 'apex,lwc' if you want to include both types.
|
|
64
|
+
|
|
62
65
|
```
|
|
66
|
+
|
|
67
|
+
Terms:
|
|
68
|
+
Notwithstanding anything stated in the terms and conditions agreed between Salesforce (‘SFDC’) and you (‘Customer’), the use of the OmniStudio Migration Tool (‘Tool’) is designed to facilitate the migration and it’s going to modify your custom code and by deploying and using the Tool you hereby provide your consent to automate the migration process and enable a smooth transition. Customer shall access and use the Tool only as permitted to the Customer and shall not compromise, break or circumvent any technical processes or security measures associated with the services provided by SFDC.
|
|
69
|
+
The Customer agrees to hold harmless, indemnify, and defend SFDC, and its officers, directors, agents, employees, licensees, successors and assigns (collectively, the “Indemnified Parties”) against any and all damages, penalties, losses, liabilities, judgments, settlements, awards, costs, and expenses (including reasonable attorneys’ fees and expenses) to the extent arising out of or in connection with any claims related to the Customers use of the Tool or any willful misconduct, fraud or grossly negligent acts or omissions by the Customer.
|
|
@@ -11,6 +11,7 @@ export default class Migrate extends OmniStudioBaseCommand {
|
|
|
11
11
|
namespace: flags.Discriminated<flags.String>;
|
|
12
12
|
only: flags.Discriminated<flags.String>;
|
|
13
13
|
allversions: flags.Discriminated<flags.Boolean<boolean>>;
|
|
14
|
+
relatedobjects: flags.Discriminated<flags.String>;
|
|
14
15
|
};
|
|
15
16
|
run(): Promise<any>;
|
|
16
17
|
private mergeRecordAndUploadResults;
|
|
@@ -60,6 +60,7 @@ class Migrate extends basecommand_1.default {
|
|
|
60
60
|
const apiVersion = (this.flags.apiversion || '55.0');
|
|
61
61
|
const migrateOnly = (this.flags.only || '');
|
|
62
62
|
const allVersions = this.flags.allversions || false;
|
|
63
|
+
const relatedObjects = (this.flags.relatedobjects || '');
|
|
63
64
|
logger_1.Logger.initialiseLogger(this.ux, this.logger);
|
|
64
65
|
this.logger = logger_1.Logger.logger;
|
|
65
66
|
// this.org is guaranteed because requiresUsername=true, as opposed to supportsUsername
|
|
@@ -67,6 +68,30 @@ class Migrate extends basecommand_1.default {
|
|
|
67
68
|
conn.setApiVersion(apiVersion);
|
|
68
69
|
// Let's time every step
|
|
69
70
|
utils_1.DebugTimer.getInstance().start();
|
|
71
|
+
// const includeApex = this.flags.apex
|
|
72
|
+
// ? await this.ux.confirm('Do you want to include Apex migration? (yes/no)')
|
|
73
|
+
// : false;
|
|
74
|
+
if (relatedObjects) {
|
|
75
|
+
const validOptions = ['apex', 'lwc'];
|
|
76
|
+
const objectsToProcess = relatedObjects.split(',').map((obj) => obj.trim());
|
|
77
|
+
// Validate input
|
|
78
|
+
for (const obj of objectsToProcess) {
|
|
79
|
+
if (!validOptions.includes(obj)) {
|
|
80
|
+
logger_1.Logger.logger.warn(`Invalid option provided for -r: ${obj}. Valid options are apex, lwc.`);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
// Ask for user consent
|
|
84
|
+
const consent = await this.ux.confirm('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?');
|
|
85
|
+
if (!consent) {
|
|
86
|
+
this.ux.log('User declined consent. Aborting the process.');
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
const projectPath = await this.ux.prompt('Enter the project path for processing:');
|
|
90
|
+
this.ux.log(`Using project path: ${projectPath}`);
|
|
91
|
+
OmnistudioRelatedObjectMigrationFacade_1.default.intializeProject(projectPath);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
// const includeLwc = this.flags.lwc ? await this.ux.confirm('Do you want to include LWC migration? (yes/no)') : false;
|
|
70
95
|
// Register the migration objects
|
|
71
96
|
let migrationObjects = [];
|
|
72
97
|
if (!migrateOnly) {
|
|
@@ -194,5 +219,9 @@ Migrate.flagsConfig = {
|
|
|
194
219
|
description: messages.getMessage('allVersionsDescription'),
|
|
195
220
|
required: false,
|
|
196
221
|
}),
|
|
222
|
+
relatedobjects: command_1.flags.string({
|
|
223
|
+
char: 'r',
|
|
224
|
+
description: messages.getMessage('apexLwc'),
|
|
225
|
+
}),
|
|
197
226
|
};
|
|
198
227
|
//# sourceMappingURL=migrate.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrate.js","sourceRoot":"","sources":["../../../../src/commands/omnistudio/migration/migrate.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4DAA4D;AAC5D,+DAA+D;AAC/D,uDAAuD;AACvD;;;;;GAKG;AACH,uCAAyB;AACzB,iDAA4C;AAC5C,2CAA4C;AAC5C,qCAAmC;AACnC,oEAAsD;AACtD,8DAAwE;AACxE,0CAAgF;AAEhF,kEAA+D;AAC/D,0DAAgE;AAChE,8DAA8F;AAC9F,kDAA+C;AAC/C,+IAAuH;AACvH,0EAAuE;AAEvE,wDAAwD;AACxD,eAAQ,CAAC,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAE5C,iGAAiG;AACjG,mFAAmF;AACnF,MAAM,QAAQ,GAAG,eAAQ,CAAC,YAAY,CAAC,8CAA8C,EAAE,SAAS,CAAC,CAAC;AAElG,MAAqB,OAAQ,SAAQ,qBAAqB;
|
|
1
|
+
{"version":3,"file":"migrate.js","sourceRoot":"","sources":["../../../../src/commands/omnistudio/migration/migrate.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Org } from '@salesforce/core';
|
|
2
|
-
import { MigrationResult } from '../interfaces';
|
|
3
2
|
import { File } from '../../utils/file/fileutil';
|
|
4
3
|
import { ApexAssessmentInfo } from '../../utils';
|
|
5
4
|
import { BaseRelatedObjectMigration } from './BaseRealtedObjectMigration';
|
|
@@ -10,8 +9,6 @@ export declare class ApexMigration extends BaseRelatedObjectMigration {
|
|
|
10
9
|
private updatedNamespace;
|
|
11
10
|
constructor(projectPath: string, namespace: string, org: Org);
|
|
12
11
|
processObjectType(): string;
|
|
13
|
-
identifyObjects(migrationResults: MigrationResult[]): Promise<JSON[]>;
|
|
14
|
-
migrateRelatedObjects(migrationResults: MigrationResult[], migrationCandidates: JSON[]): ApexAssessmentInfo[];
|
|
15
12
|
migrate(): ApexAssessmentInfo[];
|
|
16
13
|
assess(): ApexAssessmentInfo[];
|
|
17
14
|
processApexFiles(dir: string): ApexAssessmentInfo[];
|
|
@@ -49,12 +49,12 @@ class ApexMigration extends BaseRealtedObjectMigration_1.BaseRelatedObjectMigrat
|
|
|
49
49
|
processObjectType() {
|
|
50
50
|
return 'apex';
|
|
51
51
|
}
|
|
52
|
-
identifyObjects(migrationResults) {
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
migrateRelatedObjects(migrationResults, migrationCandidates) {
|
|
56
|
-
|
|
57
|
-
}
|
|
52
|
+
// public identifyObjects(migrationResults: MigrationResult[]): Promise<JSON[]> {
|
|
53
|
+
// throw new Error('Method not implemented.');
|
|
54
|
+
// }
|
|
55
|
+
// public migrateRelatedObjects(migrationResults: MigrationResult[], migrationCandidates: JSON[]): ApexAssessmentInfo[] {
|
|
56
|
+
// return this.migrate();
|
|
57
|
+
// }
|
|
58
58
|
migrate() {
|
|
59
59
|
const pwd = shell.pwd();
|
|
60
60
|
shell.cd(this.projectPath);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApexMigration.js","sourceRoot":"","sources":["../../../src/migration/related/ApexMigration.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uCAAyB;AACzB,+CAAiC;AAEjC,mEAU4C;
|
|
1
|
+
{"version":3,"file":"ApexMigration.js","sourceRoot":"","sources":["../../../src/migration/related/ApexMigration.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import { MigrationResult } from '../interfaces';
|
|
2
1
|
import { LWCAssessmentInfo } from '../../utils';
|
|
3
2
|
import { BaseRelatedObjectMigration } from './BaseRealtedObjectMigration';
|
|
4
3
|
export declare class LwcMigration extends BaseRelatedObjectMigration {
|
|
5
4
|
processObjectType(): string;
|
|
6
|
-
identifyObjects(migrationResults: MigrationResult[]): Promise<JSON[]>;
|
|
7
|
-
migrateRelatedObjects(migrationResults: MigrationResult[], migrationCandidates: JSON[]): string[];
|
|
8
5
|
assessment(): LWCAssessmentInfo[];
|
|
9
6
|
migrate(): LWCAssessmentInfo[];
|
|
10
7
|
private processLwcFiles;
|
|
11
8
|
private processFiles;
|
|
12
9
|
private isValideFile;
|
|
13
|
-
private mapToName;
|
|
14
10
|
}
|
|
@@ -37,13 +37,13 @@ class LwcMigration extends BaseRealtedObjectMigration_1.BaseRelatedObjectMigrati
|
|
|
37
37
|
processObjectType() {
|
|
38
38
|
return 'lwc';
|
|
39
39
|
}
|
|
40
|
-
identifyObjects(migrationResults) {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
migrateRelatedObjects(migrationResults, migrationCandidates) {
|
|
45
|
-
|
|
46
|
-
}
|
|
40
|
+
// public identifyObjects(migrationResults: MigrationResult[]): Promise<JSON[]> {
|
|
41
|
+
// this.assessment();
|
|
42
|
+
// throw new Error('Method not implemented.');
|
|
43
|
+
// }
|
|
44
|
+
// public migrateRelatedObjects(migrationResults: MigrationResult[], migrationCandidates: JSON[]): string[] {
|
|
45
|
+
// return this.mapToName(this.migrate());
|
|
46
|
+
// }
|
|
47
47
|
assessment() {
|
|
48
48
|
const type = 'assessment';
|
|
49
49
|
const pwd = shell.pwd();
|
|
@@ -123,11 +123,6 @@ class LwcMigration extends BaseRealtedObjectMigration_1.BaseRelatedObjectMigrati
|
|
|
123
123
|
isValideFile(filename) {
|
|
124
124
|
return !filename.includes('_def') && !filename.includes('styleDefinition') && !filename.includes('definition');
|
|
125
125
|
}
|
|
126
|
-
mapToName(lwcAssessmentInfos) {
|
|
127
|
-
return lwcAssessmentInfos.map((lwcAssessmentInfo) => {
|
|
128
|
-
return lwcAssessmentInfo.name;
|
|
129
|
-
});
|
|
130
|
-
}
|
|
131
126
|
}
|
|
132
127
|
exports.LwcMigration = LwcMigration;
|
|
133
128
|
//# sourceMappingURL=LwcMigration.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LwcMigration.js","sourceRoot":"","sources":["../../../src/migration/related/LwcMigration.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAA+D;AAC/D,+CAAiC;AAEjC,wDAA2D;
|
|
1
|
+
{"version":3,"file":"LwcMigration.js","sourceRoot":"","sources":["../../../src/migration/related/LwcMigration.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,7 +11,7 @@ export default class OmnistudioRelatedObjectMigrationFacade {
|
|
|
11
11
|
protected readonly org: Org;
|
|
12
12
|
constructor(namespace: string, only: string, allversions: boolean, org: Org);
|
|
13
13
|
static intializeProject(projectPath?: string): string;
|
|
14
|
-
migrateAll(migrationResult: MigratedObject[], relatedObjects: string[]): RelatedObjectAssesmentInfo;
|
|
14
|
+
migrateAll(migrationResult: MigratedObject[], relatedObjects: string[], projectPath?: string): RelatedObjectAssesmentInfo;
|
|
15
15
|
private createLWCComponentMigrationTool;
|
|
16
16
|
private createApexClassMigrationTool;
|
|
17
17
|
}
|
|
@@ -29,11 +29,11 @@ class OmnistudioRelatedObjectMigrationFacade {
|
|
|
29
29
|
return process.cwd() + '/' + defaultProjectName;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
migrateAll(migrationResult, relatedObjects) {
|
|
32
|
+
migrateAll(migrationResult, relatedObjects, projectPath) {
|
|
33
33
|
// Start the debug timer
|
|
34
34
|
utils_1.DebugTimer.getInstance().start();
|
|
35
35
|
// Declare an array of MigrationTool
|
|
36
|
-
const projectDirectory = OmnistudioRelatedObjectMigrationFacade.intializeProject();
|
|
36
|
+
const projectDirectory = OmnistudioRelatedObjectMigrationFacade.intializeProject(projectPath);
|
|
37
37
|
const debugTimer = utils_1.DebugTimer.getInstance();
|
|
38
38
|
debugTimer.start();
|
|
39
39
|
// Initialize migration tools based on the relatedObjects parameter
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OmnistudioRelatedObjectMigrationFacade.js","sourceRoot":"","sources":["../../../src/migration/related/OmnistudioRelatedObjectMigrationFacade.ts"],"names":[],"mappings":";;AAKA,kCAAgC;AAChC,uCAMqB;AACrB,mEAAgE;AAChE,+CAA4C;AAC5C,mDAAgD;AAChD,iDAA8C;AAE9C,wDAAwD;AACxD,+CAA+C;AAE/C,iGAAiG;AACjG,mFAAmF;AACnF,oHAAoH;AAEpH,MAAM,kBAAkB,GAAG,sBAAsB,CAAC;AAClD,MAAqB,sCAAsC;IAUzD,YAAmB,SAAiB,EAAE,IAAY,EAAE,WAAoB,EAAE,GAAQ;QAChF,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;IACjB,CAAC;IACM,MAAM,CAAC,gBAAgB,CAAC,WAAoB;QACjD,IAAI,WAAW,EAAE;YACf,qBAAS,CAAC,MAAM,CAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC;YAClD,OAAO,WAAW,GAAG,GAAG,GAAG,kBAAkB,CAAC;SAC/C;aAAM;YACL,qBAAS,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC;YACrC,OAAO,OAAO,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,kBAAkB,CAAC;SACjD;IACH,CAAC;
|
|
1
|
+
{"version":3,"file":"OmnistudioRelatedObjectMigrationFacade.js","sourceRoot":"","sources":["../../../src/migration/related/OmnistudioRelatedObjectMigrationFacade.ts"],"names":[],"mappings":"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"}
|
package/messages/assess.json
CHANGED
|
@@ -28,5 +28,6 @@
|
|
|
28
28
|
"errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
|
|
29
29
|
"allVersionsDescription": "Migrate all versions of a component",
|
|
30
30
|
"changeMessage": " %s will be changed from %s to %s",
|
|
31
|
-
"angularOSWarning": " Angular OmniScript will not be migrated, please convert this to LWC based Omniscript"
|
|
31
|
+
"angularOSWarning": " Angular OmniScript will not be migrated, please convert this to LWC based Omniscript",
|
|
32
|
+
"apexLwc": "Please select the type of components to migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, or 'apex,lwc' if you want to include both types."
|
|
32
33
|
}
|
package/messages/info.json
CHANGED
|
@@ -7,5 +7,6 @@
|
|
|
7
7
|
"sfdx omnistudio:migration:info --targetusername myOrg@example.com --targetdevhubusername devhub@org.com",
|
|
8
8
|
"sfdx omnistudio:migration:info --name myname --targetusername myOrg@example.com"
|
|
9
9
|
],
|
|
10
|
-
"allVersionsDescription": "Migrate all versions of a component"
|
|
10
|
+
"allVersionsDescription": "Migrate all versions of a component",
|
|
11
|
+
"apexLwc": "Please select the type of components to migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, or 'apex,lwc' if you want to include both types."
|
|
11
12
|
}
|
package/messages/migrate.json
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=dr",
|
|
5
5
|
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=ip",
|
|
6
6
|
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=os",
|
|
7
|
-
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=fc"
|
|
7
|
+
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=fc",
|
|
8
|
+
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r apex,lwc",
|
|
9
|
+
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r apex",
|
|
10
|
+
"omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r lwc"
|
|
8
11
|
],
|
|
9
12
|
"commandDescription": "print a greeting and your org IDs",
|
|
10
13
|
"namespaceFlagDescription": "The namespaced of the package",
|
|
@@ -25,5 +28,6 @@
|
|
|
25
28
|
"errorWhileActivatingCard": "Could not activate Card: ",
|
|
26
29
|
"errorWhileUploadingCard": "An error ocurred while uploading Card: ",
|
|
27
30
|
"errorWhileCreatingElements": "An error ocurred while saving OmniScript elements: ",
|
|
28
|
-
"allVersionsDescription": "Migrate all versions of a component"
|
|
31
|
+
"allVersionsDescription": "Migrate all versions of a component",
|
|
32
|
+
"apexLwc": "Please select the type of components to migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, or 'apex,lwc' if you want to include both types."
|
|
29
33
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.4.1-dev.
|
|
1
|
+
{"version":"1.4.1-dev.14","commands":{"basecommand":{"id":"basecommand","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"omnistudio:migration:assess":{"id":"omnistudio:migration:assess","description":"print a greeting and your org IDs","usage":"<%= command.id %> [-n <string>] [-o <string>] [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:assess -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE","omnistudio:migration:assess -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=dr","omnistudio:migration:assess -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=ip","omnistudio:migration:assess -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=os","omnistudio:migration:assess -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=fc"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"namespace":{"name":"namespace","type":"option","char":"n","description":"The namespaced of the package"},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single element: osip | fc | dr"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false}},"args":[{"name":"file"}]},"omnistudio:migration:info":{"id":"omnistudio:migration:info","description":"print a greeting and your org IDs","usage":"<%= command.id %> [-n <string>] [-a] [-v <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["sfdx omnistudio:migration:info --targetusername myOrg@example.com --targetdevhubusername devhub@org.com","sfdx omnistudio:migration:info --name myname --targetusername myOrg@example.com"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetdevhubusername":{"name":"targetdevhubusername","type":"option","char":"v","description":"username or alias for the dev hub org; overrides default dev hub org"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"name":{"name":"name","type":"option","char":"n","description":"name to print"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false}},"args":[{"name":"file"}]},"omnistudio:migration:migrate":{"id":"omnistudio:migration:migrate","description":"print a greeting and your org IDs","usage":"<%= command.id %> [-n <string>] [-o <string>] [-a] [-r <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-omnistudio-migration-tool","pluginType":"core","aliases":[],"examples":["omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=dr","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=ip","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=os","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE --only=fc","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r apex,lwc","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r apex","omnistudio:migration:migrate -u orguser@domain.com --namespace=YOUR_PACKAGE_NAMESPACE -r lwc"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"namespace":{"name":"namespace","type":"option","char":"n","description":"The namespaced of the package"},"only":{"name":"only","type":"option","char":"o","description":"Migrate a single element: osip | fc | dr"},"allversions":{"name":"allversions","type":"boolean","char":"a","description":"Migrate all versions of a component","required":false,"allowNo":false},"relatedobjects":{"name":"relatedobjects","type":"option","char":"r","description":"Please select the type of components to migrate: 'apex' for Apex classes, 'lwc' for Lightning Web Components, or 'apex,lwc' if you want to include both types."}},"args":[{"name":"file"}]}}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-omnistudio-migration-tool",
|
|
3
3
|
"description": "This SFDX plugin migrates FlexCard, OmniScript, DataRaptor, and Integration Procedure custom objects to standard objects.",
|
|
4
|
-
"version": "1.4.1-dev.
|
|
4
|
+
"version": "1.4.1-dev.14",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
126
|
"sfdx": {
|
|
127
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-omnistudio-migration-tool/1.4.1-dev.
|
|
128
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-omnistudio-migration-tool/1.4.1-dev.
|
|
127
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-omnistudio-migration-tool/1.4.1-dev.14.crt",
|
|
128
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-omnistudio-migration-tool/1.4.1-dev.14.sig"
|
|
129
129
|
}
|
|
130
130
|
}
|