@@ -178,6 +178,15 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
178178 private final String REPORT_SUCCESSFULLY_SENT = "thankYouText" ;
179179 private final String THANK_YOU_ALERT_TEXT = "thankYouAlertText" ;
180180
181+ private final String WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE = "welcomeMessageBetaWelcomeStepTitle" ;
182+ private final String WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT = "welcomeMessageBetaWelcomeStepContent" ;
183+ private final String WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE = "welcomeMessageBetaHowToReportStepTitle" ;
184+ private final String WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT = "welcomeMessageBetaHowToReportStepContent" ;
185+ private final String WELCOME_MESSAGE_FINISH_STEP_TITLE = "welcomeMessageBetaFinishStepTitle" ;
186+ private final String WELCOME_MESSAGE_FINISH_STEP_CONTENT = "welcomeMessageBetaFinishStepContent" ;
187+ private final String WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE = "welcomeMessageLiveWelcomeStepTitle" ;
188+ private final String WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT = "welcomeMessageLiveWelcomeStepContent" ;
189+
181190 private final String VIDEO_PLAYER_TITLE = "video" ;
182191
183192 private final String CONVERSATION_TEXT_FIELD_HINT = "conversationTextFieldHint" ;
@@ -2022,6 +2031,22 @@ private InstabugCustomTextPlaceHolder.Key getStringToKeyConstant(String key) {
20222031 return InstabugCustomTextPlaceHolder .Key .VIDEO_PLAYER_TITLE ;
20232032 case THANK_YOU_ALERT_TEXT :
20242033 return InstabugCustomTextPlaceHolder .Key .REPORT_SUCCESSFULLY_SENT ;
2034+ case WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE :
2035+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_WELCOME_STEP_TITLE ;
2036+ case WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT :
2037+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_WELCOME_STEP_CONTENT ;
2038+ case WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE :
2039+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE ;
2040+ case WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT :
2041+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT ;
2042+ case WELCOME_MESSAGE_FINISH_STEP_TITLE :
2043+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_FINISH_STEP_TITLE ;
2044+ case WELCOME_MESSAGE_FINISH_STEP_CONTENT :
2045+ return InstabugCustomTextPlaceHolder .Key .BETA_WELCOME_MESSAGE_FINISH_STEP_CONTENT ;
2046+ case WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE :
2047+ return InstabugCustomTextPlaceHolder .Key .LIVE_WELCOME_MESSAGE_TITLE ;
2048+ case WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT :
2049+ return InstabugCustomTextPlaceHolder .Key .LIVE_WELCOME_MESSAGE_CONTENT ;
20252050 default :
20262051 return null ;
20272052 }
@@ -2208,6 +2233,15 @@ public Map<String, Object> getConstants() {
22082233 constants .put ("conversationTextFieldHint" , CONVERSATION_TEXT_FIELD_HINT );
22092234 constants .put ("thankYouAlertText" , THANK_YOU_ALERT_TEXT );
22102235
2236+ constants .put ("welcomeMessageBetaWelcomeStepTitle" , WELCOME_MESSAGE_BETA_WELCOME_STEP_TITLE );
2237+ constants .put ("welcomeMessageBetaWelcomeStepContent" , WELCOME_MESSAGE_BETA_WELCOME_STEP_CONTENT );
2238+ constants .put ("welcomeMessageBetaHowToReportStepTitle" , WELCOME_MESSAGE_HOW_TO_REPORT_STEP_TITLE );
2239+ constants .put ("welcomeMessageBetaHowToReportStepContent" , WELCOME_MESSAGE_HOW_TO_REPORT_STEP_CONTENT );
2240+ constants .put ("welcomeMessageBetaFinishStepTitle" , WELCOME_MESSAGE_FINISH_STEP_TITLE );
2241+ constants .put ("welcomeMessageBetaFinishStepContent" , WELCOME_MESSAGE_FINISH_STEP_CONTENT );
2242+ constants .put ("welcomeMessageLiveWelcomeStepTitle" , WELCOME_MESSAGE_LIVE_WELCOME_STEP_TITLE );
2243+ constants .put ("welcomeMessageLiveWelcomeStepContent" , WELCOME_MESSAGE_LIVE_WELCOME_STEP_CONTENT );
2244+
22112245 return constants ;
22122246 }
22132247}
0 commit comments