aranea-sdk-cli 0.3.3 → 0.3.4
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/commands/knowledge.js +2 -2
- package/dist/commands/metatron.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -59,8 +59,8 @@ const config_1 = require("../config");
|
|
|
59
59
|
// Config
|
|
60
60
|
// ============================================================================
|
|
61
61
|
const KNOWLEDGE_API_ENDPOINTS = {
|
|
62
|
-
production: 'https://asia-northeast1-mobesorder.cloudfunctions.net/
|
|
63
|
-
staging: 'https://asia-northeast1-mobesorder-staging.cloudfunctions.net/
|
|
62
|
+
production: 'https://asia-northeast1-mobesorder.cloudfunctions.net/araneaSDK_knowledgeManagement',
|
|
63
|
+
staging: 'https://asia-northeast1-mobesorder-staging.cloudfunctions.net/araneaSDK_knowledgeManagement',
|
|
64
64
|
};
|
|
65
65
|
function getKnowledgeApiBase(env) {
|
|
66
66
|
return KNOWLEDGE_API_ENDPOINTS[env];
|
|
@@ -56,8 +56,8 @@ const config_1 = require("../config");
|
|
|
56
56
|
// Config
|
|
57
57
|
// ============================================================================
|
|
58
58
|
const METATRON_API_ENDPOINTS = {
|
|
59
|
-
production: 'https://asia-northeast1-mobesorder.cloudfunctions.net/
|
|
60
|
-
staging: 'https://asia-northeast1-mobesorder-staging.cloudfunctions.net/
|
|
59
|
+
production: 'https://asia-northeast1-mobesorder.cloudfunctions.net/araneaSDK_metatronQuery',
|
|
60
|
+
staging: 'https://asia-northeast1-mobesorder-staging.cloudfunctions.net/araneaSDK_metatronQuery',
|
|
61
61
|
};
|
|
62
62
|
function getMetatronApiBase(env) {
|
|
63
63
|
return METATRON_API_ENDPOINTS[env];
|
package/dist/index.js
CHANGED