From f1d84aa192cb72aaf5f979194f5ba3d8b21fec73 Mon Sep 17 00:00:00 2001 From: Yury Yasuchenya Date: Tue, 23 Jul 2024 11:43:54 +0200 Subject: [PATCH] OD-19199 Added Quote type --- .../containers/automation/constants/index.ts | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/client-html/src/js/containers/automation/constants/index.ts b/client-html/src/js/containers/automation/constants/index.ts index 142631e5fe2..9a03c87d10f 100644 --- a/client-html/src/js/containers/automation/constants/index.ts +++ b/client-html/src/js/containers/automation/constants/index.ts @@ -9,22 +9,23 @@ export const AQL_ENTITIES = Object export const AQL_ENTITY_ITEMS = AQL_ENTITIES.map(mapSelectItems); export const MESSAGE_TEMPLATE_ENTITIES = stringLiterals( - "Application", - "Article", - "Contact", - "CourseClass", - "CourseClassTutor", - "Checkout", - "Enrolment", - "Invoice", - "Lead", - "Membership", - "PaymentIn", - "PaymentOut", - "Payslip", - "ProductItem", - "Voucher", - "WaitingList", + "Application", + "Article", + "Checkout", + "Contact", + "CourseClass", + "CourseClassTutor", + "Enrolment", + "Invoice", + "Lead", + "Membership", + "PaymentIn", + "PaymentOut", + "Payslip", + "ProductItem", + "Quote", + "Voucher", + "WaitingList" ); export const MessageTemplateEntityItems = MESSAGE_TEMPLATE_ENTITIES.map(e => ({ label: e, value: e }));