@@ -22,6 +22,7 @@ export const COPILOT_APPLICATION_STATUS = {
2222 PENDING : 'pending' ,
2323 INVITED : 'invited' ,
2424 ACCEPTED : 'accepted' ,
25+ CANCELED : 'canceled' ,
2526} ;
2627
2728export const COPILOT_OPPORTUNITY_STATUS = {
@@ -301,8 +302,16 @@ export const CONNECT_NOTIFICATION_EVENT = {
301302 TOPIC_UPDATED : 'connect.notification.project.topic.updated' ,
302303 POST_CREATED : 'connect.notification.project.post.created' ,
303304 POST_UPDATED : 'connect.notification.project.post.edited' ,
305+
306+ // External action email
307+ EXTERNAL_ACTION_EMAIL : 'external.action.email' ,
304308} ;
305309
310+ export const TEMPLATE_IDS = {
311+ APPLY_COPILOT : 'd-d7c1f48628654798a05c8e09e52db14f' ,
312+ CREATE_REQUEST : 'd-3efdc91da580479d810c7acd50a4c17f' ,
313+ PROJECT_MEMBER_INVITED : 'd-b47a25b103604bc28fc0ce77e77fb681' ,
314+ }
306315export const REGEX = {
307316 URL : / ^ ( h t t p ( s ? ) : \/ \/ ) ? ( w w w \. ) ? [ a - z A - Z 0 - 9 \. \- \_ ] + ( \. [ a - z A - Z ] { 2 , 15 } ) + ( \: [ 0 - 9 ] { 2 , 5 } ) ? ( \/ [ a - z A - Z 0 - 9 \_ \- \s \. \/ \? \% \# \& \= ; ] * ) ? $ / , // eslint-disable-line
308317} ;
@@ -360,6 +369,11 @@ export const INVITE_STATUS = {
360369 CANCELED : 'canceled' ,
361370} ;
362371
372+ export const INVITE_SOURCE = {
373+ WORK_MANAGER : "work_manager" ,
374+ COPILOT_PORTAL : "copilot_portal" ,
375+ } ;
376+
363377export const SCOPE_CHANGE_REQ_STATUS = {
364378 PENDING : 'pending' ,
365379 APPROVED : 'approved' ,
0 commit comments