We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b1d6a4d + ee4edd5 commit 00c074fCopy full SHA for 00c074f
packages/contentstack-command/src/index.ts
@@ -93,6 +93,18 @@ abstract class ContentstackCommand extends Command {
93
}
94
throw new CLIError('No token found');
95
96
+
97
+ get developerHubUrl() {
98
+ return this.region.developerHubUrl;
99
+ }
100
101
+ get launchHubUrl() {
102
+ return this.region.launchHubUrl;
103
104
105
+ get personalizeUrl() {
106
+ return this.region.personalizeUrl;
107
108
109
110
module.exports = {
packages/contentstack-command/src/interfaces/index.ts
@@ -3,4 +3,7 @@ export interface Region {
3
cma: string;
4
cda: string;
5
uiHost: string;
6
+ developerHubUrl: string;
7
+ launchHubUrl: string;
8
+ personalizeUrl: string;
9
0 commit comments