@finspringinnovations/fixeddepositsdk 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. package/README.md +128 -0
  2. package/lib/api/applicationApi.d.ts +1 -0
  3. package/lib/api/applicationApi.js +11 -0
  4. package/lib/api/bankApi.d.ts +352 -0
  5. package/lib/api/bankApi.js +54 -0
  6. package/lib/api/baseApi.d.ts +6 -0
  7. package/lib/api/baseApi.js +406 -0
  8. package/lib/api/customerApi.d.ts +855 -0
  9. package/lib/api/customerApi.js +241 -0
  10. package/lib/api/fdApi.d.ts +979 -0
  11. package/lib/api/fdApi.js +112 -0
  12. package/lib/api/fdCalculatorApi.d.ts +179 -0
  13. package/lib/api/fdCalculatorApi.js +36 -0
  14. package/lib/api/index.d.ts +14 -0
  15. package/lib/api/index.js +45 -0
  16. package/lib/api/interestRateApi.d.ts +585 -0
  17. package/lib/api/interestRateApi.js +101 -0
  18. package/lib/api/kycApi.d.ts +486 -0
  19. package/lib/api/kycApi.js +71 -0
  20. package/lib/api/masterDataApi.d.ts +158 -0
  21. package/lib/api/masterDataApi.js +35 -0
  22. package/lib/api/nomineeApi.d.ts +325 -0
  23. package/lib/api/nomineeApi.js +46 -0
  24. package/lib/api/onboardingApi.d.ts +192 -0
  25. package/lib/api/onboardingApi.js +41 -0
  26. package/lib/api/panApi.d.ts +0 -0
  27. package/lib/api/panApi.js +23 -0
  28. package/lib/api/paymentApi.d.ts +325 -0
  29. package/lib/api/paymentApi.js +46 -0
  30. package/lib/api/workflowApi.d.ts +654 -0
  31. package/lib/api/workflowApi.js +90 -0
  32. package/lib/assets/images/images.d.ts +6 -0
  33. package/lib/assets/images/images.js +12 -0
  34. package/lib/components/AadhaarInput.d.ts +13 -0
  35. package/lib/components/AadhaarInput.js +47 -0
  36. package/lib/components/ActionButton.d.ts +12 -0
  37. package/lib/components/ActionButton.js +87 -0
  38. package/lib/components/ActiveFDCard.d.ts +18 -0
  39. package/lib/components/ActiveFDCard.js +116 -0
  40. package/lib/components/AmountInput.d.ts +20 -0
  41. package/lib/components/AmountInput.js +142 -0
  42. package/lib/components/CheckboxOption.d.ts +11 -0
  43. package/lib/components/CheckboxOption.js +41 -0
  44. package/lib/components/CompanyHeader.d.ts +7 -0
  45. package/lib/components/CompanyHeader.js +59 -0
  46. package/lib/components/DropdownSelector.d.ts +9 -0
  47. package/lib/components/DropdownSelector.js +49 -0
  48. package/lib/components/EmptyState.d.ts +17 -0
  49. package/lib/components/EmptyState.js +44 -0
  50. package/lib/components/ErrorDisplay.d.ts +17 -0
  51. package/lib/components/ErrorDisplay.js +69 -0
  52. package/lib/components/FAQItem.d.ts +9 -0
  53. package/lib/components/FAQItem.js +52 -0
  54. package/lib/components/FDCard.d.ts +23 -0
  55. package/lib/components/FDCard.js +116 -0
  56. package/lib/components/FormDropdown.d.ts +18 -0
  57. package/lib/components/FormDropdown.js +155 -0
  58. package/lib/components/FormSection.d.ts +14 -0
  59. package/lib/components/FormSection.js +38 -0
  60. package/lib/components/Header.d.ts +14 -0
  61. package/lib/components/Header.js +52 -0
  62. package/lib/components/IFSCSearchResultCard.d.ts +13 -0
  63. package/lib/components/IFSCSearchResultCard.js +70 -0
  64. package/lib/components/InfoBox.d.ts +8 -0
  65. package/lib/components/InfoBox.js +39 -0
  66. package/lib/components/InterestRateCard.d.ts +8 -0
  67. package/lib/components/InterestRateCard.js +46 -0
  68. package/lib/components/LoadingIndicator.d.ts +12 -0
  69. package/lib/components/LoadingIndicator.js +30 -0
  70. package/lib/components/OTPInput.d.ts +17 -0
  71. package/lib/components/OTPInput.js +144 -0
  72. package/lib/components/PaymentDetailsCard.d.ts +20 -0
  73. package/lib/components/PaymentDetailsCard.js +68 -0
  74. package/lib/components/PendingFDBottomSheet.d.ts +19 -0
  75. package/lib/components/PendingFDBottomSheet.js +122 -0
  76. package/lib/components/SafeAreaWrapper.d.ts +13 -0
  77. package/lib/components/SafeAreaWrapper.js +41 -0
  78. package/lib/components/ScreenHeader.d.ts +11 -0
  79. package/lib/components/ScreenHeader.js +46 -0
  80. package/lib/components/StatusDisplay.d.ts +15 -0
  81. package/lib/components/StatusDisplay.js +88 -0
  82. package/lib/components/TextFieldWithLabel.d.ts +46 -0
  83. package/lib/components/TextFieldWithLabel.js +326 -0
  84. package/lib/components/TrustBox.d.ts +8 -0
  85. package/lib/components/TrustBox.js +46 -0
  86. package/lib/components/ValidationErrorAlert.d.ts +23 -0
  87. package/lib/components/ValidationErrorAlert.js +39 -0
  88. package/lib/components/ValidationMessage.d.ts +9 -0
  89. package/lib/components/ValidationMessage.js +98 -0
  90. package/lib/components/index.d.ts +35 -0
  91. package/lib/components/index.js +64 -0
  92. package/lib/config/apiConfig.d.ts +34 -0
  93. package/lib/config/apiConfig.js +158 -0
  94. package/lib/config/appDataConfig.d.ts +159 -0
  95. package/lib/config/appDataConfig.js +310 -0
  96. package/lib/config/encryptionConfig.d.ts +21 -0
  97. package/lib/config/encryptionConfig.js +61 -0
  98. package/lib/config/workflowConstants.d.ts +62 -0
  99. package/lib/config/workflowConstants.js +63 -0
  100. package/lib/constants/strings/bank.d.ts +72 -0
  101. package/lib/constants/strings/bank.js +86 -0
  102. package/lib/constants/strings/base64Images.d.ts +26 -0
  103. package/lib/constants/strings/base64Images.js +29 -0
  104. package/lib/constants/strings/common.d.ts +53 -0
  105. package/lib/constants/strings/common.js +62 -0
  106. package/lib/constants/strings/employee.d.ts +61 -0
  107. package/lib/constants/strings/employee.js +77 -0
  108. package/lib/constants/strings/faq.d.ts +14 -0
  109. package/lib/constants/strings/faq.js +20 -0
  110. package/lib/constants/strings/fd.d.ts +122 -0
  111. package/lib/constants/strings/fd.js +151 -0
  112. package/lib/constants/strings/home.d.ts +49 -0
  113. package/lib/constants/strings/home.js +62 -0
  114. package/lib/constants/strings/index.d.ts +16 -0
  115. package/lib/constants/strings/index.js +44 -0
  116. package/lib/constants/strings/kyc.d.ts +80 -0
  117. package/lib/constants/strings/kyc.js +94 -0
  118. package/lib/constants/strings/nominee.d.ts +64 -0
  119. package/lib/constants/strings/nominee.js +81 -0
  120. package/lib/hooks/useAuth.d.ts +25 -0
  121. package/lib/hooks/useAuth.js +39 -0
  122. package/lib/hooks/useFDData.d.ts +11 -0
  123. package/lib/hooks/useFDData.js +40 -0
  124. package/lib/index.d.ts +48 -0
  125. package/lib/index.js +161 -0
  126. package/lib/navigation/RootNavigator.d.ts +9 -0
  127. package/lib/navigation/RootNavigator.js +459 -0
  128. package/lib/navigation/SimpleNavigator.d.ts +11 -0
  129. package/lib/navigation/SimpleNavigator.js +114 -0
  130. package/lib/navigation/helpers.d.ts +11 -0
  131. package/lib/navigation/helpers.js +83 -0
  132. package/lib/navigation/index.d.ts +17 -0
  133. package/lib/navigation/index.js +42 -0
  134. package/lib/navigation/types.d.ts +139 -0
  135. package/lib/navigation/types.js +2 -0
  136. package/lib/navigation/workflowNavigator.d.ts +22 -0
  137. package/lib/navigation/workflowNavigator.js +104 -0
  138. package/lib/providers/ApiProvider.d.ts +7 -0
  139. package/lib/providers/ApiProvider.js +16 -0
  140. package/lib/providers/MasterDataProvider.d.ts +10 -0
  141. package/lib/providers/MasterDataProvider.js +54 -0
  142. package/lib/screens/AadhaarVerification.d.ts +7 -0
  143. package/lib/screens/AadhaarVerification.js +627 -0
  144. package/lib/screens/AddBankAccount.d.ts +22 -0
  145. package/lib/screens/AddBankAccount.js +381 -0
  146. package/lib/screens/BankDetail.d.ts +16 -0
  147. package/lib/screens/BankDetail.js +596 -0
  148. package/lib/screens/Employee.d.ts +18 -0
  149. package/lib/screens/Employee.js +594 -0
  150. package/lib/screens/FDCalculator.d.ts +18 -0
  151. package/lib/screens/FDCalculator.js +767 -0
  152. package/lib/screens/FDList.d.ts +28 -0
  153. package/lib/screens/FDList.js +1853 -0
  154. package/lib/screens/FindIFSC.d.ts +16 -0
  155. package/lib/screens/FindIFSC.js +248 -0
  156. package/lib/screens/NomineeDetail.d.ts +17 -0
  157. package/lib/screens/NomineeDetail.js +592 -0
  158. package/lib/screens/PayNow.d.ts +14 -0
  159. package/lib/screens/PayNow.js +230 -0
  160. package/lib/screens/Payment.d.ts +11 -0
  161. package/lib/screens/Payment.js +191 -0
  162. package/lib/screens/PaymentStatus.d.ts +16 -0
  163. package/lib/screens/PaymentStatus.js +431 -0
  164. package/lib/screens/ReviewKYC.d.ts +23 -0
  165. package/lib/screens/ReviewKYC.js +727 -0
  166. package/lib/state/paymentSession.d.ts +8 -0
  167. package/lib/state/paymentSession.js +13 -0
  168. package/lib/store/fdListSelectedSlice.d.ts +21 -0
  169. package/lib/store/fdListSelectedSlice.js +26 -0
  170. package/lib/store/hooks.d.ts +8 -0
  171. package/lib/store/hooks.js +8 -0
  172. package/lib/store/index.d.ts +3 -0
  173. package/lib/store/index.js +8 -0
  174. package/lib/store/onboardingSlice.d.ts +12 -0
  175. package/lib/store/onboardingSlice.js +32 -0
  176. package/lib/store/store.d.ts +13 -0
  177. package/lib/store/store.js +27 -0
  178. package/lib/theme/ThemeContext.d.ts +210 -0
  179. package/lib/theme/ThemeContext.js +92 -0
  180. package/lib/theme/colors.d.ts +80 -0
  181. package/lib/theme/colors.js +85 -0
  182. package/lib/theme/index.d.ts +35 -0
  183. package/lib/theme/index.js +78 -0
  184. package/lib/theme/shadows.d.ts +53 -0
  185. package/lib/theme/shadows.js +58 -0
  186. package/lib/theme/typography.d.ts +134 -0
  187. package/lib/theme/typography.js +143 -0
  188. package/lib/types/dataTypes.d.ts +34 -0
  189. package/lib/types/dataTypes.js +2 -0
  190. package/lib/types/workflowTypes.d.ts +2 -0
  191. package/lib/types/workflowTypes.js +2 -0
  192. package/lib/utils/apiLogger.d.ts +48 -0
  193. package/lib/utils/apiLogger.js +105 -0
  194. package/lib/utils/encryption.d.ts +28 -0
  195. package/lib/utils/encryption.js +113 -0
  196. package/lib/utils/getFDData.d.ts +48 -0
  197. package/lib/utils/getFDData.js +145 -0
  198. package/lib/utils/globalData.d.ts +2 -0
  199. package/lib/utils/globalData.js +10 -0
  200. package/package.json +51 -0
  201. package/src/api/applicationApi.ts +12 -0
  202. package/src/api/bankApi.ts +42 -0
  203. package/src/api/baseApi.ts +463 -0
  204. package/src/api/customerApi.ts +324 -0
  205. package/src/api/fdApi.ts +150 -0
  206. package/src/api/fdCalculatorApi.ts +41 -0
  207. package/src/api/index.ts +29 -0
  208. package/src/api/interestRateApi.ts +143 -0
  209. package/src/api/kycApi.ts +63 -0
  210. package/src/api/masterDataApi.ts +37 -0
  211. package/src/api/nomineeApi.ts +34 -0
  212. package/src/api/onboardingApi.ts +64 -0
  213. package/src/api/panApi.ts +25 -0
  214. package/src/api/paymentApi.ts +34 -0
  215. package/src/api/workflowApi.ts +94 -0
  216. package/src/assets/images/Mahindra.png +0 -0
  217. package/src/assets/images/arrow-filled.png +0 -0
  218. package/src/assets/images/arrow-left.png +0 -0
  219. package/src/assets/images/backicon.png +0 -0
  220. package/src/assets/images/calendar.png +0 -0
  221. package/src/assets/images/chevron-down.png +0 -0
  222. package/src/assets/images/chevron-down@2x.png +0 -0
  223. package/src/assets/images/chevron-down@3x.png +0 -0
  224. package/src/assets/images/images.js +10 -0
  225. package/src/assets/images/shriram_logo.png +0 -0
  226. package/src/components/AadhaarInput.tsx +91 -0
  227. package/src/components/ActionButton.tsx +129 -0
  228. package/src/components/ActiveFDCard.tsx +188 -0
  229. package/src/components/AmountInput.tsx +217 -0
  230. package/src/components/CheckboxOption.tsx +93 -0
  231. package/src/components/CompanyHeader.tsx +80 -0
  232. package/src/components/DropdownSelector.tsx +77 -0
  233. package/src/components/EmptyState.tsx +109 -0
  234. package/src/components/ErrorDisplay.tsx +135 -0
  235. package/src/components/FAQItem.tsx +90 -0
  236. package/src/components/FDCard.tsx +186 -0
  237. package/src/components/FormDropdown.tsx +214 -0
  238. package/src/components/FormSection.tsx +86 -0
  239. package/src/components/Header.tsx +110 -0
  240. package/src/components/IFSCSearchResultCard.tsx +139 -0
  241. package/src/components/InfoBox.tsx +55 -0
  242. package/src/components/InterestRateCard.tsx +77 -0
  243. package/src/components/LoadingIndicator.tsx +63 -0
  244. package/src/components/OTPInput.tsx +213 -0
  245. package/src/components/PaymentDetailsCard.tsx +120 -0
  246. package/src/components/PendingFDBottomSheet.tsx +237 -0
  247. package/src/components/README.md +210 -0
  248. package/src/components/SafeAreaWrapper.tsx +68 -0
  249. package/src/components/ScreenHeader.tsx +83 -0
  250. package/src/components/StatusDisplay.tsx +139 -0
  251. package/src/components/TextFieldWithLabel.tsx +502 -0
  252. package/src/components/TrustBox.tsx +63 -0
  253. package/src/components/ValidationErrorAlert.tsx +57 -0
  254. package/src/components/ValidationMessage.tsx +134 -0
  255. package/src/components/index.tsx +47 -0
  256. package/src/config/apiConfig.ts +217 -0
  257. package/src/config/appDataConfig.ts +358 -0
  258. package/src/config/encryptionConfig.ts +65 -0
  259. package/src/config/workflowConstants.ts +70 -0
  260. package/src/constants/strings/README.md +146 -0
  261. package/src/constants/strings/bank.ts +92 -0
  262. package/src/constants/strings/base64Images.ts +31 -0
  263. package/src/constants/strings/common.ts +63 -0
  264. package/src/constants/strings/employee.ts +85 -0
  265. package/src/constants/strings/faq.ts +23 -0
  266. package/src/constants/strings/fd.ts +172 -0
  267. package/src/constants/strings/home.ts +67 -0
  268. package/src/constants/strings/index.ts +21 -0
  269. package/src/constants/strings/kyc.ts +100 -0
  270. package/src/constants/strings/nominee.ts +90 -0
  271. package/src/hooks/useAuth.ts +42 -0
  272. package/src/hooks/useFDData.ts +48 -0
  273. package/src/index.tsx +139 -0
  274. package/src/navigation/RootNavigator.tsx +687 -0
  275. package/src/navigation/SimpleNavigator.tsx +123 -0
  276. package/src/navigation/helpers.ts +85 -0
  277. package/src/navigation/index.tsx +84 -0
  278. package/src/navigation/types.ts +146 -0
  279. package/src/navigation/workflowNavigator.ts +131 -0
  280. package/src/providers/ApiProvider.tsx +23 -0
  281. package/src/providers/MasterDataProvider.tsx +30 -0
  282. package/src/screens/AadhaarVerification.tsx +809 -0
  283. package/src/screens/AddBankAccount.tsx +541 -0
  284. package/src/screens/BankDetail.tsx +826 -0
  285. package/src/screens/Employee.tsx +822 -0
  286. package/src/screens/FDCalculator.tsx +1002 -0
  287. package/src/screens/FDList.tsx +2199 -0
  288. package/src/screens/FindIFSC.tsx +332 -0
  289. package/src/screens/NomineeDetail.tsx +800 -0
  290. package/src/screens/PayNow.tsx +282 -0
  291. package/src/screens/Payment.tsx +224 -0
  292. package/src/screens/PaymentStatus.tsx +595 -0
  293. package/src/screens/ReviewKYC.tsx +1062 -0
  294. package/src/state/paymentSession.ts +13 -0
  295. package/src/store/fdListSelectedSlice.ts +42 -0
  296. package/src/store/hooks.ts +6 -0
  297. package/src/store/index.ts +3 -0
  298. package/src/store/onboardingSlice.ts +37 -0
  299. package/src/store/store.ts +27 -0
  300. package/src/theme/ThemeContext.tsx +84 -0
  301. package/src/theme/colors.ts +90 -0
  302. package/src/theme/index.ts +85 -0
  303. package/src/theme/shadows.ts +61 -0
  304. package/src/theme/typography.ts +151 -0
  305. package/src/types/dataTypes.ts +37 -0
  306. package/src/types/env.d.ts +93 -0
  307. package/src/types/workflowTypes.ts +12 -0
  308. package/src/utils/apiLogger.ts +166 -0
  309. package/src/utils/encryption.ts +159 -0
  310. package/src/utils/getFDData.ts +165 -0
  311. package/src/utils/globalData.ts +7 -0
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.COMMON_STRINGS = void 0;
4
+ // Common strings used across the application
5
+ exports.COMMON_STRINGS = {
6
+ // Buttons
7
+ CONTINUE: 'Continue',
8
+ SAVE: 'Save',
9
+ CANCEL: 'Cancel',
10
+ BACK: 'Back',
11
+ CONFIRM: 'Confirm',
12
+ RETRY: 'Retry',
13
+ REFRESH: 'Refresh',
14
+ PROCESSING: 'Processing...',
15
+ LOADING: 'Loading...',
16
+ SAVING: 'Saving...',
17
+ CREATING: 'Creating...',
18
+ CHECKING: 'Checking...',
19
+ SEARCHING: 'Searching...',
20
+ RETRYING: 'Retrying...',
21
+ EXIT: 'Exit',
22
+ // Status messages
23
+ SUCCESS: 'Success',
24
+ ERROR: 'Error',
25
+ FAILED: 'Failed',
26
+ PENDING: 'Pending',
27
+ COMPLETED: 'Completed',
28
+ // Validation messages
29
+ REQUIRED_FIELD: 'This field is required',
30
+ INVALID_INPUT: 'Please enter a valid value',
31
+ INVALID_EMAIL: 'Please enter a valid email address',
32
+ INVALID_PHONE: 'Please enter a valid phone number',
33
+ INVALID_PINCODE: 'Please enter a valid 6-digit pincode (should not start with 0)',
34
+ FILL_REQUIRED_FIELDS: 'Please fill in all required fields before continuing.',
35
+ // API messages
36
+ API_ERROR: 'Something went wrong on server side. Please try again.',
37
+ NETWORK_ERROR: 'Network error. Please check your connection.',
38
+ SERVER_ERROR: 'Server error. Please try again later.',
39
+ // General
40
+ OK: 'OK',
41
+ YES: 'Yes',
42
+ NO: 'No',
43
+ CLOSE: 'Close',
44
+ DONE: 'Done',
45
+ SUBMIT: 'Submit',
46
+ RESET: 'Reset',
47
+ CLEAR: 'Clear',
48
+ EDIT: 'Edit',
49
+ DELETE: 'Delete',
50
+ VIEW: 'View',
51
+ ADD: 'Add',
52
+ REMOVE: 'Remove',
53
+ SELECT: 'Select',
54
+ CHOOSE: 'Choose',
55
+ UPLOAD: 'Upload',
56
+ DOWNLOAD: 'Download',
57
+ COPY: 'Copy',
58
+ PASTE: 'Paste',
59
+ CUT: 'Cut',
60
+ UNDO: 'Undo',
61
+ REDO: 'Redo',
62
+ };
@@ -0,0 +1,61 @@
1
+ export declare const EMPLOYEE_STRINGS: {
2
+ readonly EMPLOYEE_DETAILS_TITLE: "Employee Details";
3
+ readonly OCCUPATION_DETAILS_TITLE: "Occupation Details";
4
+ readonly INCOME_DETAILS_TITLE: "Income Details";
5
+ readonly OCCUPATION_LABEL: "Occupation";
6
+ readonly NATURE_OF_BUSINESS_LABEL: "Nature of Business";
7
+ readonly CUSTOM_OCCUPATION_LABEL: "Custom Occupation";
8
+ readonly CUSTOM_NATURE_OF_BUSINESS_LABEL: "Custom Nature of Business";
9
+ readonly ANNUAL_INCOME_LABEL: "Annual Income";
10
+ readonly SOURCE_OF_FUND_LABEL: "Source of Fund";
11
+ readonly POLITICALLY_EXPOSED_PERSON_LABEL: "Politically Exposed Person";
12
+ readonly CUSTOM_SOURCE_OF_FUND_LABEL: "Custom Source of Fund";
13
+ readonly OCCUPATION_PLACEHOLDER: "Select Occupation";
14
+ readonly NATURE_OF_BUSINESS_PLACEHOLDER: "Select Nature of Business";
15
+ readonly CUSTOM_OCCUPATION_PLACEHOLDER: "Enter Custom Occupation";
16
+ readonly CUSTOM_NATURE_OF_BUSINESS_PLACEHOLDER: "Enter Custom Nature of Business";
17
+ readonly ANNUAL_INCOME_PLACEHOLDER: "Select Annual Income";
18
+ readonly SOURCE_OF_FUND_PLACEHOLDER: "Select Source of Fund";
19
+ readonly POLITICALLY_EXPOSED_PERSON_PLACEHOLDER: "Select Option";
20
+ readonly CUSTOM_SOURCE_OF_FUND_PLACEHOLDER: "Enter Custom Source of Fund";
21
+ readonly OCCUPATION_SALARIED: "Salaried";
22
+ readonly OCCUPATION_SELF_EMPLOYED: "Self Employed";
23
+ readonly OCCUPATION_BUSINESS: "Business";
24
+ readonly OCCUPATION_PROFESSIONAL: "Professional";
25
+ readonly OCCUPATION_RETIRED: "Retired";
26
+ readonly OCCUPATION_HOUSEWIFE: "Housewife";
27
+ readonly OCCUPATION_STUDENT: "Student";
28
+ readonly OCCUPATION_OTHER: "Other";
29
+ readonly INCOME_BELOW_1_LAKH: "Below Rs 1 Lakh";
30
+ readonly INCOME_1_TO_3_LAKH: "Rs 1 Lakh - 3 Lakhs";
31
+ readonly INCOME_3_TO_6_LAKH: "Rs 3 Lakhs - 6 Lakhs";
32
+ readonly INCOME_6_TO_10_LAKH: "Rs 6 Lakhs - 10 Lakhs";
33
+ readonly INCOME_10_TO_25_LAKH: "Rs 10 Lakhs - 25 Lakhs";
34
+ readonly INCOME_ABOVE_25_LAKH: "Above Rs 25 Lakhs";
35
+ readonly SOURCE_SALARY: "Salary";
36
+ readonly SOURCE_BUSINESS: "Business Income";
37
+ readonly SOURCE_INVESTMENT: "Investment Returns";
38
+ readonly SOURCE_INHERITANCE: "Inheritance";
39
+ readonly SOURCE_GIFT: "Gift";
40
+ readonly SOURCE_OTHER: "Other";
41
+ readonly PEP_YES: "Yes";
42
+ readonly PEP_NO: "No";
43
+ readonly PEP_RELATED: "Related to Politically Exposed Person";
44
+ readonly SAVE_OCCUPATION_BUTTON: "Save Occupation Details";
45
+ readonly UPDATE_OCCUPATION_BUTTON: "Update Occupation Details";
46
+ readonly OCCUPATION_SAVED_SUCCESS: "Occupation details saved successfully";
47
+ readonly OCCUPATION_SAVED_FAILED: "Failed to save occupation details";
48
+ readonly OCCUPATION_UPDATED_SUCCESS: "Occupation details updated successfully";
49
+ readonly OCCUPATION_UPDATED_FAILED: "Failed to update occupation details";
50
+ readonly OCCUPATION_REQUIRED: "Occupation is required";
51
+ readonly NATURE_OF_BUSINESS_REQUIRED: "Nature of business is required for self-employed";
52
+ readonly ANNUAL_INCOME_REQUIRED: "Annual income is required";
53
+ readonly SOURCE_OF_FUND_REQUIRED: "Source of fund is required";
54
+ readonly POLITICALLY_EXPOSED_PERSON_REQUIRED: "Please specify if you are politically exposed";
55
+ readonly NATURE_OF_BUSINESS_HIDDEN: "Nature of business is only required for self-employed individuals";
56
+ readonly CUSTOM_FIELDS_REQUIRED: "Please provide custom details when \"Other\" is selected";
57
+ readonly OCCUPATION_INSTRUCTIONS: "Please select your current occupation";
58
+ readonly INCOME_INSTRUCTIONS: "Please select your annual income range";
59
+ readonly SOURCE_OF_FUND_INSTRUCTIONS: "Please specify the source of your funds";
60
+ readonly PEP_INSTRUCTIONS: "Please indicate if you are a politically exposed person";
61
+ };
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EMPLOYEE_STRINGS = void 0;
4
+ // Employee and occupation related strings
5
+ exports.EMPLOYEE_STRINGS = {
6
+ // Screen titles
7
+ EMPLOYEE_DETAILS_TITLE: 'Employee Details',
8
+ OCCUPATION_DETAILS_TITLE: 'Occupation Details',
9
+ INCOME_DETAILS_TITLE: 'Income Details',
10
+ // Form labels
11
+ OCCUPATION_LABEL: 'Occupation',
12
+ NATURE_OF_BUSINESS_LABEL: 'Nature of Business',
13
+ CUSTOM_OCCUPATION_LABEL: 'Custom Occupation',
14
+ CUSTOM_NATURE_OF_BUSINESS_LABEL: 'Custom Nature of Business',
15
+ ANNUAL_INCOME_LABEL: 'Annual Income',
16
+ SOURCE_OF_FUND_LABEL: 'Source of Fund',
17
+ POLITICALLY_EXPOSED_PERSON_LABEL: 'Politically Exposed Person',
18
+ CUSTOM_SOURCE_OF_FUND_LABEL: 'Custom Source of Fund',
19
+ // Placeholders
20
+ OCCUPATION_PLACEHOLDER: 'Select Occupation',
21
+ NATURE_OF_BUSINESS_PLACEHOLDER: 'Select Nature of Business',
22
+ CUSTOM_OCCUPATION_PLACEHOLDER: 'Enter Custom Occupation',
23
+ CUSTOM_NATURE_OF_BUSINESS_PLACEHOLDER: 'Enter Custom Nature of Business',
24
+ ANNUAL_INCOME_PLACEHOLDER: 'Select Annual Income',
25
+ SOURCE_OF_FUND_PLACEHOLDER: 'Select Source of Fund',
26
+ POLITICALLY_EXPOSED_PERSON_PLACEHOLDER: 'Select Option',
27
+ CUSTOM_SOURCE_OF_FUND_PLACEHOLDER: 'Enter Custom Source of Fund',
28
+ // Occupation options
29
+ OCCUPATION_SALARIED: 'Salaried',
30
+ OCCUPATION_SELF_EMPLOYED: 'Self Employed',
31
+ OCCUPATION_BUSINESS: 'Business',
32
+ OCCUPATION_PROFESSIONAL: 'Professional',
33
+ OCCUPATION_RETIRED: 'Retired',
34
+ OCCUPATION_HOUSEWIFE: 'Housewife',
35
+ OCCUPATION_STUDENT: 'Student',
36
+ OCCUPATION_OTHER: 'Other',
37
+ // Income options
38
+ INCOME_BELOW_1_LAKH: 'Below Rs 1 Lakh',
39
+ INCOME_1_TO_3_LAKH: 'Rs 1 Lakh - 3 Lakhs',
40
+ INCOME_3_TO_6_LAKH: 'Rs 3 Lakhs - 6 Lakhs',
41
+ INCOME_6_TO_10_LAKH: 'Rs 6 Lakhs - 10 Lakhs',
42
+ INCOME_10_TO_25_LAKH: 'Rs 10 Lakhs - 25 Lakhs',
43
+ INCOME_ABOVE_25_LAKH: 'Above Rs 25 Lakhs',
44
+ // Source of fund options
45
+ SOURCE_SALARY: 'Salary',
46
+ SOURCE_BUSINESS: 'Business Income',
47
+ SOURCE_INVESTMENT: 'Investment Returns',
48
+ SOURCE_INHERITANCE: 'Inheritance',
49
+ SOURCE_GIFT: 'Gift',
50
+ SOURCE_OTHER: 'Other',
51
+ // Politically exposed person options
52
+ PEP_YES: 'Yes',
53
+ PEP_NO: 'No',
54
+ PEP_RELATED: 'Related to Politically Exposed Person',
55
+ // Buttons
56
+ SAVE_OCCUPATION_BUTTON: 'Save Occupation Details',
57
+ UPDATE_OCCUPATION_BUTTON: 'Update Occupation Details',
58
+ // Messages
59
+ OCCUPATION_SAVED_SUCCESS: 'Occupation details saved successfully',
60
+ OCCUPATION_SAVED_FAILED: 'Failed to save occupation details',
61
+ OCCUPATION_UPDATED_SUCCESS: 'Occupation details updated successfully',
62
+ OCCUPATION_UPDATED_FAILED: 'Failed to update occupation details',
63
+ // Validation messages
64
+ OCCUPATION_REQUIRED: 'Occupation is required',
65
+ NATURE_OF_BUSINESS_REQUIRED: 'Nature of business is required for self-employed',
66
+ ANNUAL_INCOME_REQUIRED: 'Annual income is required',
67
+ SOURCE_OF_FUND_REQUIRED: 'Source of fund is required',
68
+ POLITICALLY_EXPOSED_PERSON_REQUIRED: 'Please specify if you are politically exposed',
69
+ // Conditional messages
70
+ NATURE_OF_BUSINESS_HIDDEN: 'Nature of business is only required for self-employed individuals',
71
+ CUSTOM_FIELDS_REQUIRED: 'Please provide custom details when "Other" is selected',
72
+ // Instructions
73
+ OCCUPATION_INSTRUCTIONS: 'Please select your current occupation',
74
+ INCOME_INSTRUCTIONS: 'Please select your annual income range',
75
+ SOURCE_OF_FUND_INSTRUCTIONS: 'Please specify the source of your funds',
76
+ PEP_INSTRUCTIONS: 'Please indicate if you are a politically exposed person',
77
+ };
@@ -0,0 +1,14 @@
1
+ export declare const FAQ_STRINGS: {
2
+ readonly FAQ_WITHDRAWAL_QUESTION: "Can I Withdraw FD Finance Ltd. FD before maturity? If yes, what is the impact on interest?";
3
+ readonly FAQ_CREDIT_QUESTION: "Where will my Fixed Deposit amount get credited after maturity?";
4
+ readonly FAQ_TAX_EXEMPTION_QUESTION: "Can I show FD Finance Ltd. Fixed Deposit Investment for tax exemption?";
5
+ readonly FAQ_CUMULATIVE_QUESTION: "What do cumulative & non-cumulative interest payment options means in Fixed Deposits?";
6
+ readonly FAQ_OPENING_TIME_QUESTION: "How much time does it take to open a Fixed Deposit?";
7
+ readonly FAQ_TDS_AVOIDANCE_QUESTION: "How to avoid TDS on FD interest if my interest earned is below tax limit?";
8
+ readonly FAQ_WITHDRAWAL_ANSWER: "Yes, you can withdraw your FD Finance Ltd. Fixed Deposit (FD) before maturity, but doing so will impact the interest earned. Typically, the interest rate on premature withdrawals is lower than the agreed-upon rate for the full tenure of the FD. Additionally, FD Finance Ltd. may charge a penalty, which can further reduce the interest accrued. The interest will also be recalculated based on the duration the FD was held, and you will receive a reduced payout compared to the original maturity amount. It's advisable to check the specific terms and conditions with FD Finance Ltd. for detailed information on penalties and interest adjustments.";
9
+ readonly FAQ_CREDIT_ANSWER: "After the maturity of your Fixed Deposit with FD Finance Ltd., the principal amount along with the interest earned will be credited to your registered bank account. If you have chosen a different option like a payout to a specific bank account, the funds will be transferred accordingly. You can verify the credit details by checking your bank account or by contacting FD Finance for confirmation.";
10
+ readonly FAQ_TAX_EXEMPTION_ANSWER: "No, a Fixed Deposit (FD) with FD Finance Ltd. does not qualify for tax exemption under Section 80C of the Income Tax Act. However, the interest earned on the FD is subject to tax, and you will need to pay tax based on your income tax slab.\n\nIf you are looking for tax-saving options, you can explore specific tax-saving Fixed Deposits (like 5-year tax-saving FDs), which are eligible for deductions under Section 80C. It's always a good idea to consult a tax advisor for personalized advice.";
11
+ readonly FAQ_CUMULATIVE_ANSWER: "In Fixed Deposits, the cumulative interest option means that the interest earned is added to the principal, and you receive the total amount (principal + interest) at maturity. The interest is compounded, meaning you earn interest on the interest as well.\n\nOn the other hand, the non-cumulative interest option allows you to receive interest payouts periodically, such as monthly, quarterly, or annually. The principal amount is paid back to you at maturity, and the interest is not reinvested. This option is ideal for those who want regular income from their investment.";
12
+ readonly FAQ_OPENING_TIME_ANSWER: "Opening a Fixed Deposit with FD Finance takes just a few minutes if done online. If done offline, it might take a few hours depending on paperwork.";
13
+ readonly FAQ_TDS_AVOIDANCE_ANSWER: "To avoid TDS on FD interest if your earnings are below the taxable limit, you can submit Form 15G (for individuals below 60 years) or Form 15H (for senior citizens above 60 years) to the bank or financial institution. This form declares that your total income is below the taxable limit, and no TDS should be deducted.";
14
+ };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FAQ_STRINGS = void 0;
4
+ // FAQ related strings
5
+ exports.FAQ_STRINGS = {
6
+ // FAQ Questions
7
+ FAQ_WITHDRAWAL_QUESTION: 'Can I Withdraw FD Finance Ltd. FD before maturity? If yes, what is the impact on interest?',
8
+ FAQ_CREDIT_QUESTION: 'Where will my Fixed Deposit amount get credited after maturity?',
9
+ FAQ_TAX_EXEMPTION_QUESTION: 'Can I show FD Finance Ltd. Fixed Deposit Investment for tax exemption?',
10
+ FAQ_CUMULATIVE_QUESTION: 'What do cumulative & non-cumulative interest payment options means in Fixed Deposits?',
11
+ FAQ_OPENING_TIME_QUESTION: 'How much time does it take to open a Fixed Deposit?',
12
+ FAQ_TDS_AVOIDANCE_QUESTION: 'How to avoid TDS on FD interest if my interest earned is below tax limit?',
13
+ // FAQ Answers
14
+ FAQ_WITHDRAWAL_ANSWER: 'Yes, you can withdraw your FD Finance Ltd. Fixed Deposit (FD) before maturity, but doing so will impact the interest earned. Typically, the interest rate on premature withdrawals is lower than the agreed-upon rate for the full tenure of the FD. Additionally, FD Finance Ltd. may charge a penalty, which can further reduce the interest accrued. The interest will also be recalculated based on the duration the FD was held, and you will receive a reduced payout compared to the original maturity amount. It\'s advisable to check the specific terms and conditions with FD Finance Ltd. for detailed information on penalties and interest adjustments.',
15
+ FAQ_CREDIT_ANSWER: 'After the maturity of your Fixed Deposit with FD Finance Ltd., the principal amount along with the interest earned will be credited to your registered bank account. If you have chosen a different option like a payout to a specific bank account, the funds will be transferred accordingly. You can verify the credit details by checking your bank account or by contacting FD Finance for confirmation.',
16
+ FAQ_TAX_EXEMPTION_ANSWER: 'No, a Fixed Deposit (FD) with FD Finance Ltd. does not qualify for tax exemption under Section 80C of the Income Tax Act. However, the interest earned on the FD is subject to tax, and you will need to pay tax based on your income tax slab.\n\nIf you are looking for tax-saving options, you can explore specific tax-saving Fixed Deposits (like 5-year tax-saving FDs), which are eligible for deductions under Section 80C. It\'s always a good idea to consult a tax advisor for personalized advice.',
17
+ FAQ_CUMULATIVE_ANSWER: 'In Fixed Deposits, the cumulative interest option means that the interest earned is added to the principal, and you receive the total amount (principal + interest) at maturity. The interest is compounded, meaning you earn interest on the interest as well.\n\nOn the other hand, the non-cumulative interest option allows you to receive interest payouts periodically, such as monthly, quarterly, or annually. The principal amount is paid back to you at maturity, and the interest is not reinvested. This option is ideal for those who want regular income from their investment.',
18
+ FAQ_OPENING_TIME_ANSWER: 'Opening a Fixed Deposit with FD Finance takes just a few minutes if done online. If done offline, it might take a few hours depending on paperwork.',
19
+ FAQ_TDS_AVOIDANCE_ANSWER: 'To avoid TDS on FD interest if your earnings are below the taxable limit, you can submit Form 15G (for individuals below 60 years) or Form 15H (for senior citizens above 60 years) to the bank or financial institution. This form declares that your total income is below the taxable limit, and no TDS should be deducted.',
20
+ };
@@ -0,0 +1,122 @@
1
+ export declare const FD_STRINGS: {
2
+ readonly FD_CALCULATOR_TITLE: "FD Calculator";
3
+ readonly FD_LIST_TITLE: "FD List";
4
+ readonly FD_DETAILS_TITLE: "FD Details";
5
+ readonly BOOK_FD_TITLE: "Book Fixed Deposit";
6
+ readonly PAY_NOW_TITLE: "Pay Now";
7
+ readonly INVESTMENT_AMOUNT_LABEL: "Enter Amount";
8
+ readonly TENURE_LABEL: "Select Tenure";
9
+ readonly DEPOSIT_SCHEME_LABEL: "Deposit Scheme";
10
+ readonly INTEREST_RATE_LABEL: "Interest Rate";
11
+ readonly MATURITY_AMOUNT_LABEL: "Maturity Amount";
12
+ readonly MATURITY_INSTRUCTIONS_LABEL: "Maturity Instructions";
13
+ readonly INTEREST_PAYOUT_TERM_LABEL: "Interest Payout";
14
+ readonly INVESTMENT_AMOUNT_PLACEHOLDER: "Enter Investment Amount";
15
+ readonly TENURE_PLACEHOLDER: "Select Tenure";
16
+ readonly DEPOSIT_SCHEME_PLACEHOLDER: "Select Deposit Scheme";
17
+ readonly INTEREST_RATE_PLACEHOLDER: "Interest Rate";
18
+ readonly MATURITY_AMOUNT_PLACEHOLDER: "Maturity Amount";
19
+ readonly MATURITY_INSTRUCTIONS_PLACEHOLDER: "Select Maturity Instructions";
20
+ readonly INTEREST_PAYOUT_TERM_PLACEHOLDER: "Select Interest Payout Term";
21
+ readonly SCHEME_CUMULATIVE: "Cumulative";
22
+ readonly SCHEME_NON_CUMULATIVE: "Non-Cumulative";
23
+ readonly SCHEME_FLEXI: "Flexi FD";
24
+ readonly SCHEME_TAX_SAVER: "Tax Saver FD";
25
+ readonly TENURE_1_MONTH: "1 Month";
26
+ readonly TENURE_3_MONTHS: "3 Months";
27
+ readonly TENURE_6_MONTHS: "6 Months";
28
+ readonly TENURE_1_YEAR: "1 Year";
29
+ readonly TENURE_2_YEARS: "2 Years";
30
+ readonly TENURE_3_YEARS: "3 Years";
31
+ readonly TENURE_5_YEARS: "5 Years";
32
+ readonly MATURITY_AUTO_RENEWAL: "Auto Renewal";
33
+ readonly MATURITY_AUTO_REFUND: "Auto Refund";
34
+ readonly MATURITY_MANUAL: "Manual";
35
+ readonly PAYOUT_ON_MATURITY: "On Maturity";
36
+ readonly PAYOUT_MONTHLY: "Monthly";
37
+ readonly PAYOUT_QUARTERLY: "Quarterly";
38
+ readonly PAYOUT_HALF_YEARLY: "Half Yearly";
39
+ readonly PAYOUT_YEARLY: "Yearly";
40
+ readonly CALCULATE_FD_BUTTON: "Calculate FD";
41
+ readonly BOOK_FD_BUTTON: "Start FD";
42
+ readonly CREATE_FD_BUTTON: "Create FD";
43
+ readonly PAY_NOW_BUTTON: "Pay Now";
44
+ readonly VIEW_DETAILS_BUTTON: "View Details";
45
+ readonly DOWNLOAD_CERTIFICATE_BUTTON: "Download Certificate";
46
+ readonly FD_CALCULATED_SUCCESS: "FD calculated successfully";
47
+ readonly FD_CALCULATED_FAILED: "Failed to calculate FD";
48
+ readonly FD_CREATED_SUCCESS: "FD created successfully";
49
+ readonly FD_CREATED_FAILED: "Failed to create FD";
50
+ readonly FD_BOOKED_SUCCESS: "FD booked successfully";
51
+ readonly FD_BOOKED_FAILED: "Failed to book FD";
52
+ readonly PAYMENT_COMPLETED_SUCCESS: "Payment completed successfully";
53
+ readonly PAYMENT_COMPLETED_FAILED: "Payment failed";
54
+ readonly INVESTMENT_AMOUNT_REQUIRED: "Investment amount is required";
55
+ readonly TENURE_REQUIRED: "Tenure is required";
56
+ readonly DEPOSIT_SCHEME_REQUIRED: "Deposit scheme is required";
57
+ readonly MATURITY_INSTRUCTIONS_REQUIRED: "Maturity instructions are required";
58
+ readonly INTEREST_PAYOUT_TERM_REQUIRED: "Interest payout term is required";
59
+ readonly INVALID_INVESTMENT_AMOUNT: "Please enter a valid investment amount";
60
+ readonly MINIMUM_AMOUNT_ERROR: "Minimum investment amount is Rs 5,000";
61
+ readonly MAXIMUM_AMOUNT_ERROR: "Maximum investment amount is Rs 5,00,00,000";
62
+ readonly FD_STATUS_ACTIVE: "Active";
63
+ readonly FD_STATUS_MATURED: "Matured";
64
+ readonly FD_STATUS_CANCELLED: "Cancelled";
65
+ readonly FD_STATUS_PENDING: "Pending";
66
+ readonly FD_STATUS_APPROVED: "Approved";
67
+ readonly FD_STATUS_REJECTED: "Rejected";
68
+ readonly FD_CALCULATOR_INFO: "Calculate your FD returns before investing";
69
+ readonly FD_BENEFITS: "Fixed deposits offer guaranteed returns and capital protection";
70
+ readonly FD_TAX_INFO: "FD interest is taxable as per your income tax slab";
71
+ readonly FD_PREMATURE_WITHDRAWAL: "Premature withdrawal may attract penalty";
72
+ readonly FD_CALCULATION_ERROR: "Unable to calculate FD. Please try again.";
73
+ readonly FD_CREATION_ERROR: "Unable to create FD. Please try again.";
74
+ readonly FD_BOOKING_ERROR: "Unable to book FD. Please try again.";
75
+ readonly PAYMENT_ERROR: "Payment processing failed. Please try again.";
76
+ readonly FD_NOT_FOUND: "FD details not found";
77
+ readonly FD_ALREADY_EXISTS: "FD with similar details already exists";
78
+ readonly FD_SUMMARY_TITLE: "FD Summary";
79
+ readonly INVESTMENT_SUMMARY: "Investment Summary";
80
+ readonly RETURNS_SUMMARY: "Returns Summary";
81
+ readonly TOTAL_INVESTMENT: "Total Investment";
82
+ readonly TOTAL_RETURNS: "Total Returns";
83
+ readonly NET_AMOUNT: "Net Amount";
84
+ readonly INTEREST_AMOUNT: "Interest Amount";
85
+ readonly AMOUNT_PLACEHOLDER: "25000";
86
+ readonly AMOUNT_NOTE: "Note: The entered amount should be in multiples of ₹1000";
87
+ readonly AMOUNT_MIN_MAX: "Min: ₹5 K | Max: ₹5 Cr";
88
+ readonly AMOUNT_MULTIPLES_ERROR: "Amount must be in multiples of ₹1,000";
89
+ readonly SENIOR_CITIZEN_BENEFIT: "+0.25% p.a. more for senior citizens";
90
+ readonly TAX_RESIDENT_CONFIRMATION: "I confirm I am a tax resident of India";
91
+ readonly TAX_RESIDENT_ERROR: "Please confirm that you are a tax resident of India to proceed";
92
+ readonly WITHDRAWAL_INFO: "Withdrawal allowed after 3 months";
93
+ readonly SAFETY_TRUST_TITLE: "Safety & Trust";
94
+ readonly FAQ_TITLE: "Frequently asked questions";
95
+ readonly TRUSTED_BY: "Trusted By ";
96
+ readonly CRORES_INDIANS: "4.6 Crores Indians";
97
+ readonly AAA_RATING: "Stable Rating";
98
+ readonly RATING: "AA+";
99
+ readonly TENURE_12_MONTHS: "12 Months";
100
+ readonly TENURE_24_MONTHS: "24 Months";
101
+ readonly TENURE_36_MONTHS: "36 Months";
102
+ readonly CORPORATE_FDS_TITLE: "Corporate FDs";
103
+ readonly ALL_FDS_TAB: "All FDs";
104
+ readonly LESS_THAN_1Y_TAB: "<1Y";
105
+ readonly LESS_THAN_1_3Y_TAB: "<1-3Y";
106
+ readonly LESS_THAN_3_5Y_TAB: "<3-5Y";
107
+ readonly GREATER_THAN_5Y_TAB: ">5Y";
108
+ readonly ACTIVE_FDS_SECTION: "Active FDs";
109
+ readonly LOADING_RATES: "Loading rates...";
110
+ readonly LOADING_APPLICATIONS: "Loading applications...";
111
+ readonly LOADING_FD_DATA: "Searching for the best F.D. deals...";
112
+ readonly API_ERROR_RETRY: "❌ API Error - Please retry";
113
+ readonly APIS_CONNECTED: "✅ APIs Connected";
114
+ readonly NO_DATA_AVAILABLE: "📱 No data available";
115
+ readonly REFRESH_ALL: "🔄 Refresh All";
116
+ readonly NO_CUSTOMER_FDS_FOUND: "No customer FDs found.";
117
+ readonly NO_FD_OPTIONS_AVAILABLE: "No FD options available at the moment.";
118
+ readonly FAILED_TO_LOAD_FD_DATA: "Failed to load FD data. Please try again.";
119
+ readonly NO_FDS_FOUND_FOR_TENURE: "No FDs found for";
120
+ readonly CUSTOMER_FDS: "customer FDs";
121
+ readonly AVAILABLE_RATES: "available rates";
122
+ };
@@ -0,0 +1,151 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FD_STRINGS = void 0;
4
+ // Fixed Deposit related strings
5
+ exports.FD_STRINGS = {
6
+ // Screen titles
7
+ FD_CALCULATOR_TITLE: 'FD Calculator',
8
+ FD_LIST_TITLE: 'FD List',
9
+ FD_DETAILS_TITLE: 'FD Details',
10
+ BOOK_FD_TITLE: 'Book Fixed Deposit',
11
+ PAY_NOW_TITLE: 'Pay Now',
12
+ // Form labels
13
+ INVESTMENT_AMOUNT_LABEL: 'Enter Amount',
14
+ TENURE_LABEL: 'Select Tenure',
15
+ DEPOSIT_SCHEME_LABEL: 'Deposit Scheme',
16
+ INTEREST_RATE_LABEL: 'Interest Rate',
17
+ MATURITY_AMOUNT_LABEL: 'Maturity Amount',
18
+ MATURITY_INSTRUCTIONS_LABEL: 'Maturity Instructions',
19
+ INTEREST_PAYOUT_TERM_LABEL: 'Interest Payout',
20
+ // Placeholders
21
+ INVESTMENT_AMOUNT_PLACEHOLDER: 'Enter Investment Amount',
22
+ TENURE_PLACEHOLDER: 'Select Tenure',
23
+ DEPOSIT_SCHEME_PLACEHOLDER: 'Select Deposit Scheme',
24
+ INTEREST_RATE_PLACEHOLDER: 'Interest Rate',
25
+ MATURITY_AMOUNT_PLACEHOLDER: 'Maturity Amount',
26
+ MATURITY_INSTRUCTIONS_PLACEHOLDER: 'Select Maturity Instructions',
27
+ INTEREST_PAYOUT_TERM_PLACEHOLDER: 'Select Interest Payout Term',
28
+ // Deposit schemes
29
+ SCHEME_CUMULATIVE: 'Cumulative',
30
+ SCHEME_NON_CUMULATIVE: 'Non-Cumulative',
31
+ SCHEME_FLEXI: 'Flexi FD',
32
+ SCHEME_TAX_SAVER: 'Tax Saver FD',
33
+ // Tenure options
34
+ TENURE_1_MONTH: '1 Month',
35
+ TENURE_3_MONTHS: '3 Months',
36
+ TENURE_6_MONTHS: '6 Months',
37
+ TENURE_1_YEAR: '1 Year',
38
+ TENURE_2_YEARS: '2 Years',
39
+ TENURE_3_YEARS: '3 Years',
40
+ TENURE_5_YEARS: '5 Years',
41
+ // Maturity instructions
42
+ MATURITY_AUTO_RENEWAL: 'Auto Renewal',
43
+ MATURITY_AUTO_REFUND: 'Auto Refund',
44
+ MATURITY_MANUAL: 'Manual',
45
+ // Interest payout terms
46
+ PAYOUT_ON_MATURITY: 'On Maturity',
47
+ PAYOUT_MONTHLY: 'Monthly',
48
+ PAYOUT_QUARTERLY: 'Quarterly',
49
+ PAYOUT_HALF_YEARLY: 'Half Yearly',
50
+ PAYOUT_YEARLY: 'Yearly',
51
+ // Buttons
52
+ CALCULATE_FD_BUTTON: 'Calculate FD',
53
+ BOOK_FD_BUTTON: 'Start FD',
54
+ CREATE_FD_BUTTON: 'Create FD',
55
+ PAY_NOW_BUTTON: 'Pay Now',
56
+ VIEW_DETAILS_BUTTON: 'View Details',
57
+ DOWNLOAD_CERTIFICATE_BUTTON: 'Download Certificate',
58
+ // Messages
59
+ FD_CALCULATED_SUCCESS: 'FD calculated successfully',
60
+ FD_CALCULATED_FAILED: 'Failed to calculate FD',
61
+ FD_CREATED_SUCCESS: 'FD created successfully',
62
+ FD_CREATED_FAILED: 'Failed to create FD',
63
+ FD_BOOKED_SUCCESS: 'FD booked successfully',
64
+ FD_BOOKED_FAILED: 'Failed to book FD',
65
+ PAYMENT_COMPLETED_SUCCESS: 'Payment completed successfully',
66
+ PAYMENT_COMPLETED_FAILED: 'Payment failed',
67
+ // Validation messages
68
+ INVESTMENT_AMOUNT_REQUIRED: 'Investment amount is required',
69
+ TENURE_REQUIRED: 'Tenure is required',
70
+ DEPOSIT_SCHEME_REQUIRED: 'Deposit scheme is required',
71
+ MATURITY_INSTRUCTIONS_REQUIRED: 'Maturity instructions are required',
72
+ INTEREST_PAYOUT_TERM_REQUIRED: 'Interest payout term is required',
73
+ INVALID_INVESTMENT_AMOUNT: 'Please enter a valid investment amount',
74
+ MINIMUM_AMOUNT_ERROR: 'Minimum investment amount is Rs 5,000',
75
+ MAXIMUM_AMOUNT_ERROR: 'Maximum investment amount is Rs 5,00,00,000',
76
+ // FD status
77
+ FD_STATUS_ACTIVE: 'Active',
78
+ FD_STATUS_MATURED: 'Matured',
79
+ FD_STATUS_CANCELLED: 'Cancelled',
80
+ FD_STATUS_PENDING: 'Pending',
81
+ FD_STATUS_APPROVED: 'Approved',
82
+ FD_STATUS_REJECTED: 'Rejected',
83
+ // Information messages
84
+ FD_CALCULATOR_INFO: 'Calculate your FD returns before investing',
85
+ FD_BENEFITS: 'Fixed deposits offer guaranteed returns and capital protection',
86
+ FD_TAX_INFO: 'FD interest is taxable as per your income tax slab',
87
+ FD_PREMATURE_WITHDRAWAL: 'Premature withdrawal may attract penalty',
88
+ // Error messages
89
+ FD_CALCULATION_ERROR: 'Unable to calculate FD. Please try again.',
90
+ FD_CREATION_ERROR: 'Unable to create FD. Please try again.',
91
+ FD_BOOKING_ERROR: 'Unable to book FD. Please try again.',
92
+ PAYMENT_ERROR: 'Payment processing failed. Please try again.',
93
+ FD_NOT_FOUND: 'FD details not found',
94
+ FD_ALREADY_EXISTS: 'FD with similar details already exists',
95
+ // Summary labels
96
+ FD_SUMMARY_TITLE: 'FD Summary',
97
+ INVESTMENT_SUMMARY: 'Investment Summary',
98
+ RETURNS_SUMMARY: 'Returns Summary',
99
+ TOTAL_INVESTMENT: 'Total Investment',
100
+ TOTAL_RETURNS: 'Total Returns',
101
+ NET_AMOUNT: 'Net Amount',
102
+ INTEREST_AMOUNT: 'Interest Amount',
103
+ // Input placeholders and note
104
+ AMOUNT_PLACEHOLDER: '25000',
105
+ AMOUNT_NOTE: 'Note: The entered amount should be in multiples of ₹1000',
106
+ AMOUNT_MIN_MAX: 'Min: ₹5 K | Max: ₹5 Cr',
107
+ AMOUNT_MULTIPLES_ERROR: 'Amount must be in multiples of ₹1,000',
108
+ // Senior citizen benefits
109
+ SENIOR_CITIZEN_BENEFIT: '+0.25% p.a. more for senior citizens',
110
+ // Tax resident confirmation
111
+ TAX_RESIDENT_CONFIRMATION: 'I confirm I am a tax resident of India',
112
+ TAX_RESIDENT_ERROR: 'Please confirm that you are a tax resident of India to proceed',
113
+ // Withdrawal information
114
+ WITHDRAWAL_INFO: 'Withdrawal allowed after 3 months',
115
+ // Section titles
116
+ SAFETY_TRUST_TITLE: 'Safety & Trust',
117
+ FAQ_TITLE: 'Frequently asked questions',
118
+ // Trust information
119
+ TRUSTED_BY: 'Trusted By ',
120
+ CRORES_INDIANS: '4.6 Crores Indians',
121
+ AAA_RATING: 'Stable Rating',
122
+ RATING: 'AA+',
123
+ // Fallback tenure options
124
+ TENURE_12_MONTHS: '12 Months',
125
+ TENURE_24_MONTHS: '24 Months',
126
+ TENURE_36_MONTHS: '36 Months',
127
+ // FD List screen strings
128
+ CORPORATE_FDS_TITLE: 'Corporate FDs',
129
+ ALL_FDS_TAB: 'All FDs',
130
+ LESS_THAN_1Y_TAB: '<1Y',
131
+ LESS_THAN_1_3Y_TAB: '<1-3Y',
132
+ LESS_THAN_3_5Y_TAB: '<3-5Y',
133
+ GREATER_THAN_5Y_TAB: '>5Y',
134
+ ACTIVE_FDS_SECTION: 'Active FDs',
135
+ // Loading and status messages
136
+ LOADING_RATES: 'Loading rates...',
137
+ LOADING_APPLICATIONS: 'Loading applications...',
138
+ LOADING_FD_DATA: 'Searching for the best F.D. deals...',
139
+ API_ERROR_RETRY: '❌ API Error - Please retry',
140
+ APIS_CONNECTED: '✅ APIs Connected',
141
+ NO_DATA_AVAILABLE: '📱 No data available',
142
+ REFRESH_ALL: '🔄 Refresh All',
143
+ // No data messages
144
+ NO_CUSTOMER_FDS_FOUND: 'No customer FDs found.',
145
+ NO_FD_OPTIONS_AVAILABLE: 'No FD options available at the moment.',
146
+ FAILED_TO_LOAD_FD_DATA: 'Failed to load FD data. Please try again.',
147
+ NO_FDS_FOUND_FOR_TENURE: 'No FDs found for',
148
+ // Status indicators
149
+ CUSTOMER_FDS: 'customer FDs',
150
+ AVAILABLE_RATES: 'available rates',
151
+ };
@@ -0,0 +1,49 @@
1
+ export declare const HOME_STRINGS: {
2
+ readonly HOME_TITLE: "Home";
3
+ readonly DASHBOARD_TITLE: "Dashboard";
4
+ readonly PROFILE_TITLE: "Profile";
5
+ readonly SETTINGS_TITLE: "Settings";
6
+ readonly NOTIFICATIONS_TITLE: "Notifications";
7
+ readonly VIEW_MY_FDS: "View My FDs";
8
+ readonly BOOK_NEW_FD: "Book New FD";
9
+ readonly MY_ACCOUNT: "My Account";
10
+ readonly TRANSACTIONS: "Transactions";
11
+ readonly STATEMENTS: "Statements";
12
+ readonly HELP_SUPPORT: "Help & Support";
13
+ readonly LOGOUT: "Logout";
14
+ readonly WELCOME_MESSAGE: "Welcome to FD";
15
+ readonly WELCOME_SUBTITLE: "Manage your Fixed Deposits with ease";
16
+ readonly GOOD_MORNING: "Good Morning";
17
+ readonly GOOD_AFTERNOON: "Good Afternoon";
18
+ readonly GOOD_EVENING: "Good Evening";
19
+ readonly QUICK_ACTIONS: "Quick Actions";
20
+ readonly RECENT_TRANSACTIONS: "Recent Transactions";
21
+ readonly ACTIVE_FDS: "Active FDs";
22
+ readonly MATURED_FDS: "Matured FDs";
23
+ readonly PENDING_REQUESTS: "Pending Requests";
24
+ readonly FD_DETAILS: "FD Details";
25
+ readonly FD_INVESTMENT: "FD Investment";
26
+ readonly FD_MATURITY: "FD Maturity";
27
+ readonly FD_INTEREST: "FD Interest";
28
+ readonly FD_AMOUNT: "FD Amount";
29
+ readonly FD_TENURE: "FD Tenure";
30
+ readonly FD_RATE: "FD Rate";
31
+ readonly FD_STATUS: "FD Status";
32
+ readonly ACTIVE: "Active";
33
+ readonly MATURED: "Matured";
34
+ readonly CANCELLED: "Cancelled";
35
+ readonly PENDING: "Pending";
36
+ readonly APPROVED: "Approved";
37
+ readonly REJECTED: "Rejected";
38
+ readonly PLATFORM_INFO: "Platform";
39
+ readonly SDK_VERSION: "SDK Version";
40
+ readonly APP_VERSION: "App Version";
41
+ readonly LAST_UPDATED: "Last Updated";
42
+ readonly NO_FDS_FOUND: "No FDs found";
43
+ readonly NO_TRANSACTIONS: "No transactions found";
44
+ readonly NO_NOTIFICATIONS: "No notifications";
45
+ readonly NO_DATA_AVAILABLE: "No data available";
46
+ readonly LOADING_ERROR: "Failed to load data";
47
+ readonly NETWORK_ERROR: "Network connection error";
48
+ readonly SERVER_ERROR: "Server error occurred";
49
+ };
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HOME_STRINGS = void 0;
4
+ // Home screen and navigation related strings
5
+ exports.HOME_STRINGS = {
6
+ // Screen titles
7
+ HOME_TITLE: 'Home',
8
+ DASHBOARD_TITLE: 'Dashboard',
9
+ PROFILE_TITLE: 'Profile',
10
+ SETTINGS_TITLE: 'Settings',
11
+ NOTIFICATIONS_TITLE: 'Notifications',
12
+ // Navigation items
13
+ VIEW_MY_FDS: 'View My FDs',
14
+ BOOK_NEW_FD: 'Book New FD',
15
+ MY_ACCOUNT: 'My Account',
16
+ TRANSACTIONS: 'Transactions',
17
+ STATEMENTS: 'Statements',
18
+ HELP_SUPPORT: 'Help & Support',
19
+ LOGOUT: 'Logout',
20
+ // Welcome messages
21
+ WELCOME_MESSAGE: 'Welcome to FD',
22
+ WELCOME_SUBTITLE: 'Manage your Fixed Deposits with ease',
23
+ GOOD_MORNING: 'Good Morning',
24
+ GOOD_AFTERNOON: 'Good Afternoon',
25
+ GOOD_EVENING: 'Good Evening',
26
+ // Quick actions
27
+ QUICK_ACTIONS: 'Quick Actions',
28
+ RECENT_TRANSACTIONS: 'Recent Transactions',
29
+ ACTIVE_FDS: 'Active FDs',
30
+ MATURED_FDS: 'Matured FDs',
31
+ PENDING_REQUESTS: 'Pending Requests',
32
+ // FD related
33
+ FD_DETAILS: 'FD Details',
34
+ FD_INVESTMENT: 'FD Investment',
35
+ FD_MATURITY: 'FD Maturity',
36
+ FD_INTEREST: 'FD Interest',
37
+ FD_AMOUNT: 'FD Amount',
38
+ FD_TENURE: 'FD Tenure',
39
+ FD_RATE: 'FD Rate',
40
+ FD_STATUS: 'FD Status',
41
+ // Status indicators
42
+ ACTIVE: 'Active',
43
+ MATURED: 'Matured',
44
+ CANCELLED: 'Cancelled',
45
+ PENDING: 'Pending',
46
+ APPROVED: 'Approved',
47
+ REJECTED: 'Rejected',
48
+ // Information
49
+ PLATFORM_INFO: 'Platform',
50
+ SDK_VERSION: 'SDK Version',
51
+ APP_VERSION: 'App Version',
52
+ LAST_UPDATED: 'Last Updated',
53
+ // Empty states
54
+ NO_FDS_FOUND: 'No FDs found',
55
+ NO_TRANSACTIONS: 'No transactions found',
56
+ NO_NOTIFICATIONS: 'No notifications',
57
+ NO_DATA_AVAILABLE: 'No data available',
58
+ // Error states
59
+ LOADING_ERROR: 'Failed to load data',
60
+ NETWORK_ERROR: 'Network connection error',
61
+ SERVER_ERROR: 'Server error occurred',
62
+ };
@@ -0,0 +1,16 @@
1
+ export { COMMON_STRINGS } from './common';
2
+ export { HOME_STRINGS } from './home';
3
+ export { KYC_STRINGS } from './kyc';
4
+ export { EMPLOYEE_STRINGS } from './employee';
5
+ export { BANK_STRINGS } from './bank';
6
+ export { NOMINEE_STRINGS } from './nominee';
7
+ export { FD_STRINGS } from './fd';
8
+ export { FAQ_STRINGS } from './faq';
9
+ export * from './common';
10
+ export * from './home';
11
+ export * from './kyc';
12
+ export * from './employee';
13
+ export * from './bank';
14
+ export * from './nominee';
15
+ export * from './fd';
16
+ export * from './faq';