@mailmodo/cli 0.0.34-beta.pr36.59 → 0.0.34
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/dist/lib/constants.d.ts +1 -1
- package/dist/lib/constants.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/lib/constants.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const API_ENDPOINTS: Readonly<{
|
|
|
22
22
|
SEQUENCES_DEPLOY: "/sequences/deploy";
|
|
23
23
|
SEQUENCES_VALIDATE: "/sequences/validate";
|
|
24
24
|
}>;
|
|
25
|
-
export declare const LOGIN_URL = "https://app-vertex-debug.azurewebsites.net/
|
|
25
|
+
export declare const LOGIN_URL = "https://app-vertex-debug.azurewebsites.net/login.html";
|
|
26
26
|
export declare const DOCS_URL = "https://mailmodo.com/docs/cli";
|
|
27
27
|
export declare const DNS_GUIDE_URL = "https://mailmodo.com/docs/dns";
|
|
28
28
|
export declare const PREVIEW_PORT = 3421;
|
package/dist/lib/constants.js
CHANGED
|
@@ -28,9 +28,9 @@ export const API_ENDPOINTS = Object.freeze({
|
|
|
28
28
|
SEQUENCES_DEPLOY: '/sequences/deploy',
|
|
29
29
|
SEQUENCES_VALIDATE: '/sequences/validate',
|
|
30
30
|
});
|
|
31
|
-
const DEV_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/
|
|
31
|
+
const DEV_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/login.html';
|
|
32
32
|
// const PRODUCTION_LOGIN_URL = 'https://mailmodo.com/cli';
|
|
33
|
-
const PRODUCTION_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/
|
|
33
|
+
const PRODUCTION_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/login.html';
|
|
34
34
|
export const LOGIN_URL = process.env.MAILMODO_DEV_TSX
|
|
35
35
|
? DEV_LOGIN_URL
|
|
36
36
|
: PRODUCTION_LOGIN_URL;
|
package/oclif.manifest.json
CHANGED