Execute Liquiloans Transaction Script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
1.3 KiB

const ERROR_500 = "500";
const SUCCESS = "200";
const ERROR_400 = "400";
const ERROR_404 = "404";
const ERROR_409 = "409";
const ERROR_410 = "410";
const ERROR_401 = "401";
const UNAUTHORIZED_ERROR = "You are not authorized to use the app";
const ERROR_MESSAGE = "Oops,something went wrong";
const BUCKET_NAME_NIVESH = "nivesh-call-logs/recording";
const S3_BUCKET_NIVESH_CALL_URL = "https://nivesh-call-logs.s3.ap-south-1.amazonaws.com/recording/";
const BUCKET_NAME_SOA_REPORTS = "client-soa-reports/ELSS";
const S3_BUCKET_SOA_REPORTS_URL = "https://client-soa-reports.s3.ap-south-1.amazonaws.com/ELSS/";
const AWS_ACCESS_KEY_ID_TEST = "AKIA2C5JCOWXUXB4T3MV";
const AWS_SECRET_KEY_TEST = "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";
const EXOTEL_AUTHTOKEN = "Basic NWE0NjY1ZDU0MGViNzk5NjQxMGQ1NWJhYzllZmI5MTVhOTgyYWU2MmRmYWFkZmM0OmU0YTgzNjEwNjI1NWM5ZDllY2QxMDNiOWQwZGFmYWQ3ZTA1YjNjNTU1NDJhZjU3NQ=="
const HASH_KEY = "27E6A91CEE689";
s3://kwikfoods/2020/
module.exports = {
ERROR_500,
ERROR_400,
ERROR_404,
ERROR_401,
UNAUTHORIZED_ERROR,
SUCCESS,
ERROR_MESSAGE,
ERROR_410,
ERROR_409,
BUCKET_NAME_NIVESH,
S3_BUCKET_NIVESH_CALL_URL,
BUCKET_NAME_SOA_REPORTS,
S3_BUCKET_SOA_REPORTS_URL,
AWS_ACCESS_KEY_ID_TEST,
AWS_SECRET_KEY_TEST,
EXOTEL_AUTHTOKEN,
HASH_KEY
};

Powered by TurnKey Linux.