diff --git a/webchat/configurations/usvc-production.ts b/webchat/configurations/usvc-production.ts new file mode 100644 index 0000000000..9b54e00420 --- /dev/null +++ b/webchat/configurations/usvc-production.ts @@ -0,0 +1,29 @@ +/** + * Copyright (C) 2021-2023 Technology Matters + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + +import { Configuration } from '../types'; +import { config as usvcStaging } from '../configurations/usvc-staging'; + +const accountSid = 'AC3240f813a27a4c52b12e5c5c23960b25'; +const flexFlowSid = 'FO98a2a2bf5f016669bba61ef9c19983aa'; + +export const config: Configuration = { + ...usvcStaging, + checkOpenHours: false, + accountSid, + flexFlowSid, + twilioServicesUrl: new URL(`https://hrm-production.tl.techmatters.org/lambda/twilio/account-scoped/${accountSid}`), +};