From eeb751ae5cae95ab38355e399d8157392497c60a Mon Sep 17 00:00:00 2001 From: Shivraj Koli <54741030+Shivraj0@users.noreply.github.com> Date: Wed, 24 Aug 2022 17:19:44 +0530 Subject: [PATCH] Replace sng env names (#124) * Fix coveralls job * Fix coverall report * Fix coverall issue * FIx syntax * Fix syntax * Revert commented test cases * Revert workflow branch name * Add z5 and prod env support for azorte * 2.3.7 * Replace azorte env names --- src/lib/Env.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/Env.ts b/src/lib/Env.ts index f639e398..47973486 100644 --- a/src/lib/Env.ts +++ b/src/lib/Env.ts @@ -25,9 +25,9 @@ export const AVAILABLE_ENVS = { tiraz5: 'api.tiraz5.de', tiraz0: 'api.tiraz0.de', tirabeauty:'api.tirabeauty.com', - azortez0: 'api.sngz0.de', - azortez5: 'api.sngz5.de', - azorte: 'api.sng.com' + sngz0: 'api.sngz0.de', + sngz5: 'api.sngz5.de', + sng: 'api.sng.com' }; type EnvType = keyof typeof AVAILABLE_ENVS;