We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 39fdf51 + 673b766 commit 022c91eCopy full SHA for 022c91e
2 files changed
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