hgs-twilio-class-lib 1.1.53 → 1.1.54

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 (480) hide show
  1. package/lib/aws/abstract/ServiceObjectStore.d.ts +9 -0
  2. package/lib/aws/abstract/ServiceObjectStore.js +10 -1
  3. package/lib/aws/abstract/ServiceOpenRequest.d.ts +7 -0
  4. package/lib/aws/abstract/ServiceOpenRequest.js +10 -1
  5. package/lib/aws/abstract/ServiceRequest.d.ts +3 -0
  6. package/lib/aws/abstract/ServiceRequest.js +7 -1
  7. package/lib/aws/abstract/ServiceResource.d.ts +20 -0
  8. package/lib/aws/abstract/ServiceResource.js +31 -1
  9. package/lib/aws/abstract/ServiceResourceFactory.d.ts +13 -0
  10. package/lib/aws/abstract/ServiceResourceFactory.js +14 -1
  11. package/lib/aws/abstract/ServiceTransaction.d.ts +6 -0
  12. package/lib/aws/abstract/ServiceTransaction.js +11 -1
  13. package/lib/aws/impl/AWSAPIConfig.d.ts +14 -0
  14. package/lib/aws/impl/AWSAPIConfig.js +38 -1
  15. package/lib/aws/impl/AWSClient.d.ts +5 -0
  16. package/lib/aws/impl/AWSClient.js +21 -1
  17. package/lib/aws/impl/AWSConnectAPIConfig.d.ts +17 -0
  18. package/lib/aws/impl/AWSConnectAPIConfig.js +38 -1
  19. package/lib/aws/impl/DynamoDB/DynamoOpenRequest.d.ts +18 -0
  20. package/lib/aws/impl/DynamoDB/DynamoOpenRequest.js +24 -1
  21. package/lib/aws/impl/DynamoDB/DynamoRequest.d.ts +16 -0
  22. package/lib/aws/impl/DynamoDB/DynamoRequest.js +21 -1
  23. package/lib/aws/impl/DynamoDB/DynamoResourse.d.ts +29 -0
  24. package/lib/aws/impl/DynamoDB/DynamoResourse.js +45 -1
  25. package/lib/aws/impl/DynamoDB/DynamoServiceFactory.d.ts +16 -0
  26. package/lib/aws/impl/DynamoDB/DynamoServiceFactory.js +63 -1
  27. package/lib/aws/impl/DynamoDB/DynamoTable.d.ts +26 -0
  28. package/lib/aws/impl/DynamoDB/DynamoTable.js +126 -1
  29. package/lib/aws/impl/DynamoDB/DynamoTransaction.d.ts +21 -0
  30. package/lib/aws/impl/DynamoDB/DynamoTransaction.js +37 -1
  31. package/lib/aws/impl/HoopServices/HoopService.d.ts +28 -0
  32. package/lib/aws/impl/HoopServices/HoopService.js +124 -1
  33. package/lib/aws/impl/HoopServices/HoopServiceFactory.d.ts +17 -0
  34. package/lib/aws/impl/HoopServices/HoopServiceFactory.js +53 -1
  35. package/lib/aws/impl/HoopServices/HoopServiceOpenRequest.d.ts +18 -0
  36. package/lib/aws/impl/HoopServices/HoopServiceOpenRequest.js +24 -1
  37. package/lib/aws/impl/HoopServices/HoopServiceResource.d.ts +29 -0
  38. package/lib/aws/impl/HoopServices/HoopServiceResource.js +46 -1
  39. package/lib/aws/impl/HoopServices/HoopServiceTransaction.d.ts +22 -0
  40. package/lib/aws/impl/HoopServices/HoopServiceTransaction.js +37 -1
  41. package/lib/aws/interface/IDirection.d.ts +2 -0
  42. package/lib/aws/interface/IDirection.js +2 -1
  43. package/lib/aws/interface/ILink.d.ts +2 -0
  44. package/lib/aws/interface/ILink.js +2 -1
  45. package/lib/aws/interface/IServiceDBOpenRequest.d.ts +3 -0
  46. package/lib/aws/interface/IServiceDBOpenRequest.js +2 -1
  47. package/lib/aws/interface/IServiceObjectStore.d.ts +3 -0
  48. package/lib/aws/interface/IServiceObjectStore.js +2 -1
  49. package/lib/aws/interface/IServiceObjectStoreParameters.d.ts +4 -0
  50. package/lib/aws/interface/IServiceObjectStoreParameters.js +2 -1
  51. package/lib/aws/interface/IServiceRequest.d.ts +3 -0
  52. package/lib/aws/interface/IServiceRequest.js +2 -1
  53. package/lib/aws/interface/IServiceResource.d.ts +7 -0
  54. package/lib/aws/interface/IServiceResource.js +2 -1
  55. package/lib/aws/interface/IServiceTransation.d.ts +3 -0
  56. package/lib/aws/interface/IServiceTransation.js +2 -1
  57. package/lib/aws/interface/ISubResourceUri.d.ts +2 -0
  58. package/lib/aws/interface/ISubResourceUri.js +2 -1
  59. package/lib/aws/interface/ISyncItemData.d.ts +0 -0
  60. package/lib/aws/interface/ISyncItemData.js +1 -1
  61. package/lib/aws/interface/ISyncObjectStoreParameters.d.ts +0 -0
  62. package/lib/aws/interface/ISyncObjectStoreParameters.js +1 -1
  63. package/lib/aws/interface/ISyncTransactionOptions.d.ts +4 -0
  64. package/lib/aws/interface/ISyncTransactionOptions.js +2 -1
  65. package/lib/common/abstract/CommonError.d.ts +8 -0
  66. package/lib/common/abstract/CommonError.js +12 -1
  67. package/lib/common/abstract/Database.d.ts +44 -0
  68. package/lib/common/abstract/Database.js +58 -1
  69. package/lib/common/abstract/DatabaseClient.d.ts +11 -0
  70. package/lib/common/abstract/DatabaseClient.js +21 -1
  71. package/lib/common/abstract/DatabaseClientConfig.d.ts +5 -0
  72. package/lib/common/abstract/DatabaseClientConfig.js +9 -1
  73. package/lib/common/abstract/DatabaseFactory.d.ts +70 -0
  74. package/lib/common/abstract/DatabaseFactory.js +32 -1
  75. package/lib/common/abstract/DatabaseObjectStore.d.ts +29 -0
  76. package/lib/common/abstract/DatabaseObjectStore.js +13 -1
  77. package/lib/common/abstract/DatabaseOpenRequest.d.ts +24 -0
  78. package/lib/common/abstract/DatabaseOpenRequest.js +13 -1
  79. package/lib/common/abstract/DatabaseRequest.d.ts +21 -0
  80. package/lib/common/abstract/DatabaseRequest.js +14 -1
  81. package/lib/common/abstract/DatabaseTransaction.d.ts +22 -0
  82. package/lib/common/abstract/DatabaseTransaction.js +13 -1
  83. package/lib/common/abstract/Filter.d.ts +12 -0
  84. package/lib/common/abstract/Filter.js +30 -1
  85. package/lib/common/enum/ErrorTypes.d.ts +4 -0
  86. package/lib/common/enum/ErrorTypes.js +9 -1
  87. package/lib/common/enum/FilterTypes.d.ts +10 -0
  88. package/lib/common/enum/FilterTypes.js +14 -1
  89. package/lib/common/interface/IDatabaesInfo.d.ts +2 -0
  90. package/lib/common/interface/IDatabaesInfo.js +2 -1
  91. package/lib/common/interface/IDatabase.d.ts +4 -0
  92. package/lib/common/interface/IDatabase.js +2 -1
  93. package/lib/common/interface/IDatabaseClient.d.ts +5 -0
  94. package/lib/common/interface/IDatabaseClient.js +2 -1
  95. package/lib/common/interface/IDatabaseConfig.d.ts +8 -0
  96. package/lib/common/interface/IDatabaseConfig.js +10 -1
  97. package/lib/common/interface/IDatabaseDBOpenRequest.d.ts +2 -0
  98. package/lib/common/interface/IDatabaseDBOpenRequest.js +2 -1
  99. package/lib/common/interface/IDatabaseFactory.d.ts +21 -0
  100. package/lib/common/interface/IDatabaseFactory.js +2 -1
  101. package/lib/common/interface/IDatabaseObjectStore.d.ts +2 -0
  102. package/lib/common/interface/IDatabaseObjectStore.js +2 -1
  103. package/lib/common/interface/IDatabaseObjectStoreParameters.d.ts +2 -0
  104. package/lib/common/interface/IDatabaseObjectStoreParameters.js +2 -1
  105. package/lib/common/interface/IDatabaseRecord.d.ts +2 -0
  106. package/lib/common/interface/IDatabaseRecord.js +2 -1
  107. package/lib/common/interface/IDatabaseRequest.d.ts +2 -0
  108. package/lib/common/interface/IDatabaseRequest.js +2 -1
  109. package/lib/common/interface/IDatabaseTransaction.d.ts +2 -0
  110. package/lib/common/interface/IDatabaseTransaction.js +2 -1
  111. package/lib/common/interface/IDatabaseTransactionOptions.d.ts +2 -0
  112. package/lib/common/interface/IDatabaseTransactionOptions.js +2 -1
  113. package/lib/common/interface/IError.d.ts +5 -0
  114. package/lib/common/interface/IError.js +2 -1
  115. package/lib/common/interface/IErrorDetails.d.ts +6 -0
  116. package/lib/common/interface/IErrorDetails.js +2 -1
  117. package/lib/common/interface/IFilter.d.ts +25 -0
  118. package/lib/common/interface/IFilter.js +2 -1
  119. package/lib/common/type/DatabaseReadyType.d.ts +1 -0
  120. package/lib/common/type/DatabaseReadyType.js +2 -1
  121. package/lib/common/type/FilterInputType.d.ts +1 -0
  122. package/lib/common/type/FilterInputType.js +2 -1
  123. package/lib/common/type/SearchParameterType.d.ts +15 -0
  124. package/lib/common/type/SearchParameterType.js +3 -1
  125. package/lib/common/utils/dateFormat.d.ts +1 -0
  126. package/lib/common/utils/dateFormat.js +58 -1
  127. package/lib/common/utils/filter.d.ts +1 -0
  128. package/lib/common/utils/filter.js +99 -1
  129. package/lib/common/utils/newFilter.d.ts +1 -0
  130. package/lib/common/utils/newFilter.js +126 -1
  131. package/lib/common/utils/pagination.d.ts +1 -0
  132. package/lib/common/utils/pagination.js +9 -1
  133. package/lib/common/utils/search.d.ts +1 -0
  134. package/lib/common/utils/search.js +14 -1
  135. package/lib/common/utils/sort.d.ts +1 -0
  136. package/lib/common/utils/sort.js +13 -1
  137. package/lib/config/AWSConfig.d.ts +6 -0
  138. package/lib/config/AWSConfig.js +9 -1
  139. package/lib/config/DatabaseConfig.d.ts +33 -0
  140. package/lib/config/DatabaseConfig.js +36 -1
  141. package/lib/config/TwilioConfig.d.ts +4 -0
  142. package/lib/config/TwilioConfig.js +7 -1
  143. package/lib/controller/Common.d.ts +20 -0
  144. package/lib/controller/Common.js +57 -1
  145. package/lib/controller/DatabaseFactoryCollection.d.ts +6 -0
  146. package/lib/controller/DatabaseFactoryCollection.js +14 -1
  147. package/lib/controller/MainController.d.ts +6 -0
  148. package/lib/controller/MainController.js +174 -1
  149. package/lib/controller/aws/HoopBuisnessHours.d.ts +23 -0
  150. package/lib/controller/aws/HoopBuisnessHours.js +408 -1
  151. package/lib/controller/aws/HoopOperationsController.d.ts +9 -0
  152. package/lib/controller/aws/HoopOperationsController.js +86 -1
  153. package/lib/controller/aws/HoopOverrideBranchesController.d.ts +7 -0
  154. package/lib/controller/aws/HoopOverrideBranchesController.js +40 -1
  155. package/lib/controller/aws/HoopProfilesListController.d.ts +8 -0
  156. package/lib/controller/aws/HoopProfilesListController.js +61 -1
  157. package/lib/controller/aws/PlaybackScreenrecordings.d.ts +9 -0
  158. package/lib/controller/aws/PlaybackScreenrecordings.js +63 -1
  159. package/lib/controller/twilio/AgentActionsController.d.ts +54 -0
  160. package/lib/controller/twilio/AgentActionsController.js +177 -1
  161. package/lib/controller/twilio/AgentScorecardController.d.ts +53 -0
  162. package/lib/controller/twilio/AgentScorecardController.js +173 -1
  163. package/lib/controller/twilio/AuditLogController.d.ts +15 -0
  164. package/lib/controller/twilio/AuditLogController.js +137 -1
  165. package/lib/controller/twilio/CallLogsController.d.ts +12 -0
  166. package/lib/controller/twilio/CallLogsController.js +131 -1
  167. package/lib/controller/twilio/CallbackAndVoicemailController.d.ts +12 -0
  168. package/lib/controller/twilio/CallbackAndVoicemailController.js +114 -1
  169. package/lib/controller/twilio/ChannelSettingTaskInfoController.d.ts +11 -0
  170. package/lib/controller/twilio/ChannelSettingTaskInfoController.js +117 -1
  171. package/lib/controller/twilio/ChannelSettingsController.d.ts +16 -0
  172. package/lib/controller/twilio/ChannelSettingsController.js +142 -1
  173. package/lib/controller/twilio/CxConfigAssetController.d.ts +12 -0
  174. package/lib/controller/twilio/CxConfigAssetController.js +128 -1
  175. package/lib/controller/twilio/CxConfigController.d.ts +18 -0
  176. package/lib/controller/twilio/CxConfigController.js +112 -1
  177. package/lib/controller/twilio/CxConfigExternalNumbersController.d.ts +12 -0
  178. package/lib/controller/twilio/CxConfigExternalNumbersController.js +138 -1
  179. package/lib/controller/twilio/CxConfigOther.d.ts +16 -0
  180. package/lib/controller/twilio/CxConfigOther.js +128 -1
  181. package/lib/controller/twilio/CxConfigQueueMenuController.d.ts +12 -0
  182. package/lib/controller/twilio/CxConfigQueueMenuController.js +129 -1
  183. package/lib/controller/twilio/CxConfigUIconfigController.d.ts +12 -0
  184. package/lib/controller/twilio/CxConfigUIconfigController.js +132 -1
  185. package/lib/controller/twilio/GPMController.d.ts +12 -0
  186. package/lib/controller/twilio/GPMController.js +151 -1
  187. package/lib/controller/twilio/HoopBusinessHoursController.d.ts +18 -0
  188. package/lib/controller/twilio/HoopBusinessHoursController.js +285 -1
  189. package/lib/controller/twilio/HoopHolidaysController.d.ts +14 -0
  190. package/lib/controller/twilio/HoopHolidaysController.js +150 -1
  191. package/lib/controller/twilio/HoopMainController.d.ts +13 -0
  192. package/lib/controller/twilio/HoopMainController.js +297 -1
  193. package/lib/controller/twilio/HoopNotesController.d.ts +14 -0
  194. package/lib/controller/twilio/HoopNotesController.js +149 -1
  195. package/lib/controller/twilio/HoopOperationsController.d.ts +14 -0
  196. package/lib/controller/twilio/HoopOperationsController.js +138 -1
  197. package/lib/controller/twilio/HoopOverrideBranchesController.d.ts +14 -0
  198. package/lib/controller/twilio/HoopOverrideBranchesController.js +137 -1
  199. package/lib/controller/twilio/HoopPartialDaysController.d.ts +14 -0
  200. package/lib/controller/twilio/HoopPartialDaysController.js +150 -1
  201. package/lib/controller/twilio/HoopProfilesListController.d.ts +14 -0
  202. package/lib/controller/twilio/HoopProfilesListController.js +147 -1
  203. package/lib/controller/twilio/NavigationController.d.ts +13 -0
  204. package/lib/controller/twilio/NavigationController.js +170 -1
  205. package/lib/controller/twilio/QualityFormsController.d.ts +12 -0
  206. package/lib/controller/twilio/QualityFormsController.js +129 -1
  207. package/lib/controller/twilio/QuickLinkController.d.ts +11 -0
  208. package/lib/controller/twilio/QuickLinkController.js +122 -1
  209. package/lib/controller/twilio/RealTimeReportQueueDetailsController.d.ts +14 -0
  210. package/lib/controller/twilio/RealTimeReportQueueDetailsController.js +126 -1
  211. package/lib/controller/twilio/RealTimeReportsWGDetailsController.d.ts +53 -0
  212. package/lib/controller/twilio/RealTimeReportsWGDetailsController.js +160 -1
  213. package/lib/controller/twilio/TaskInfoPanelController.d.ts +15 -0
  214. package/lib/controller/twilio/TaskInfoPanelController.js +134 -1
  215. package/lib/controller/twilio/filterImpl/AgentScorecardFilter.d.ts +12 -0
  216. package/lib/controller/twilio/filterImpl/AgentScorecardFilter.js +52 -1
  217. package/lib/controller/twilio/filterImpl/AuditLogsFilter.d.ts +12 -0
  218. package/lib/controller/twilio/filterImpl/AuditLogsFilter.js +89 -1
  219. package/lib/controller/twilio/filterImpl/CXConfigPromptFilter.d.ts +12 -0
  220. package/lib/controller/twilio/filterImpl/CXConfigPromptFilter.js +81 -1
  221. package/lib/controller/twilio/filterImpl/CallLogsFilter.d.ts +20 -0
  222. package/lib/controller/twilio/filterImpl/CallLogsFilter.js +101 -1
  223. package/lib/controller/twilio/filterImpl/CxConfigAssetFilter.d.ts +12 -0
  224. package/lib/controller/twilio/filterImpl/CxConfigAssetFilter.js +59 -1
  225. package/lib/controller/twilio/filterImpl/CxConfigExternalNumbersFilter.d.ts +12 -0
  226. package/lib/controller/twilio/filterImpl/CxConfigExternalNumbersFilter.js +67 -1
  227. package/lib/controller/twilio/filterImpl/CxConfigOtherFilter.d.ts +14 -0
  228. package/lib/controller/twilio/filterImpl/CxConfigOtherFilter.js +52 -1
  229. package/lib/controller/twilio/filterImpl/CxConfigQueueMenuFilter.d.ts +17 -0
  230. package/lib/controller/twilio/filterImpl/CxConfigQueueMenuFilter.js +78 -1
  231. package/lib/controller/twilio/filterImpl/CxConfigUIconfigFilter.d.ts +12 -0
  232. package/lib/controller/twilio/filterImpl/CxConfigUIconfigFilter.js +51 -1
  233. package/lib/controller/twilio/filterImpl/HoopHolidaysFilter.d.ts +12 -0
  234. package/lib/controller/twilio/filterImpl/HoopHolidaysFilter.js +55 -1
  235. package/lib/controller/twilio/filterImpl/HoopNotesFilter.d.ts +12 -0
  236. package/lib/controller/twilio/filterImpl/HoopNotesFilter.js +51 -1
  237. package/lib/controller/twilio/filterImpl/HoopPartialDaysFilter.d.ts +12 -0
  238. package/lib/controller/twilio/filterImpl/HoopPartialDaysFilter.js +55 -1
  239. package/lib/controller/twilio/filterImpl/MainFilterService.d.ts +4 -0
  240. package/lib/controller/twilio/filterImpl/MainFilterService.js +108 -1
  241. package/lib/controller/twilio/filterImpl/NavigationFilter.d.ts +20 -0
  242. package/lib/controller/twilio/filterImpl/NavigationFilter.js +90 -1
  243. package/lib/controller/twilio/filterImpl/QueueDetailsFilter.d.ts +14 -0
  244. package/lib/controller/twilio/filterImpl/QueueDetailsFilter.js +53 -1
  245. package/lib/controller/twilio/filterImpl/TaskCompleteFilter.d.ts +12 -0
  246. package/lib/controller/twilio/filterImpl/TaskCompleteFilter.js +62 -1
  247. package/lib/controller/twilio/filterImpl/TaskInfoPanelFilter.d.ts +12 -0
  248. package/lib/controller/twilio/filterImpl/TaskInfoPanelFilter.js +52 -1
  249. package/lib/express/ApiResponse.d.ts +15 -0
  250. package/lib/express/ApiResponse.js +11 -1
  251. package/lib/express/RequestValidator.d.ts +50 -0
  252. package/lib/express/RequestValidator.js +77 -1
  253. package/lib/express/RequireParamsPicker.d.ts +7 -0
  254. package/lib/express/RequireParamsPicker.js +14 -1
  255. package/lib/express/ValidateRequireParameters.d.ts +3 -0
  256. package/lib/express/ValidateRequireParameters.js +39 -1
  257. package/lib/index.d.ts +39 -0
  258. package/lib/index.js +100 -1
  259. package/lib/models/BatchUpdateSkills.model.d.ts +0 -0
  260. package/lib/models/BatchUpdateSkills.model.js +11 -1
  261. package/lib/models/CannedMessage.model.d.ts +4 -0
  262. package/lib/models/CannedMessage.model.js +1 -1
  263. package/lib/models/ChannelSettingsTaskInfo.model.d.ts +87 -0
  264. package/lib/models/ChannelSettingsTaskInfo.model.js +1 -1
  265. package/lib/models/CustomerFeedback.model.d.ts +9 -0
  266. package/lib/models/CustomerFeedback.model.js +1 -1
  267. package/lib/models/Filter.model.d.ts +15 -0
  268. package/lib/models/Filter.model.js +2 -1
  269. package/lib/models/Hoop.model.d.ts +9 -0
  270. package/lib/models/Hoop.model.js +9 -1
  271. package/lib/models/Navigation.model.d.ts +28 -0
  272. package/lib/models/Navigation.model.js +8 -1
  273. package/lib/models/Roles.Model.d.ts +8 -0
  274. package/lib/models/Roles.Model.js +1 -1
  275. package/lib/models/abstract/BaseModel.d.ts +17 -0
  276. package/lib/models/abstract/BaseModel.js +40 -1
  277. package/lib/models/impl/AgentActionsLogsModel.d.ts +27 -0
  278. package/lib/models/impl/AgentActionsLogsModel.js +89 -1
  279. package/lib/models/impl/AgentActionsModel.d.ts +19 -0
  280. package/lib/models/impl/AgentActionsModel.js +60 -1
  281. package/lib/models/impl/AgentScorecardModel.d.ts +66 -0
  282. package/lib/models/impl/AgentScorecardModel.js +282 -1
  283. package/lib/models/impl/AuditLogsModel.d.ts +31 -0
  284. package/lib/models/impl/AuditLogsModel.js +146 -1
  285. package/lib/models/impl/CallLogsModel.d.ts +37 -0
  286. package/lib/models/impl/CallLogsModel.js +109 -1
  287. package/lib/models/impl/CallStatisticsModel.d.ts +16 -0
  288. package/lib/models/impl/CallStatisticsModel.js +52 -1
  289. package/lib/models/impl/CategoryDetailsModel.d.ts +17 -0
  290. package/lib/models/impl/CategoryDetailsModel.js +44 -1
  291. package/lib/models/impl/MemberModel.d.ts +42 -0
  292. package/lib/models/impl/MemberModel.js +170 -1
  293. package/lib/models/impl/ModelValidationError.d.ts +6 -0
  294. package/lib/models/impl/ModelValidationError.js +15 -1
  295. package/lib/models/impl/NavigationModel.d.ts +39 -0
  296. package/lib/models/impl/NavigationModel.js +126 -1
  297. package/lib/models/impl/PerformanceStatisticsModel.d.ts +41 -0
  298. package/lib/models/impl/PerformanceStatisticsModel.js +129 -1
  299. package/lib/models/impl/PlaybackScreenrecordings.d.ts +39 -0
  300. package/lib/models/impl/PlaybackScreenrecordings.js +133 -1
  301. package/lib/models/impl/ProfileModel.d.ts +23 -0
  302. package/lib/models/impl/ProfileModel.js +102 -1
  303. package/lib/models/impl/QualityFormsModel.d.ts +39 -0
  304. package/lib/models/impl/QualityFormsModel.js +150 -1
  305. package/lib/models/impl/QuestionDetailsModel.d.ts +39 -0
  306. package/lib/models/impl/QuestionDetailsModel.js +173 -1
  307. package/lib/models/impl/QueueDetailsModel.d.ts +63 -0
  308. package/lib/models/impl/QueueDetailsModel.js +261 -1
  309. package/lib/models/impl/QueueModel.d.ts +39 -0
  310. package/lib/models/impl/QueueModel.js +156 -1
  311. package/lib/models/impl/QuickLinkModel.d.ts +24 -0
  312. package/lib/models/impl/QuickLinkModel.js +122 -1
  313. package/lib/models/impl/StatisticsNumberDetailsModel.d.ts +18 -0
  314. package/lib/models/impl/StatisticsNumberDetailsModel.js +72 -1
  315. package/lib/models/impl/StatisticsTimeDetailsModel.d.ts +18 -0
  316. package/lib/models/impl/StatisticsTimeDetailsModel.js +72 -1
  317. package/lib/models/impl/TaskAttributesModel.d.ts +31 -0
  318. package/lib/models/impl/TaskAttributesModel.js +108 -1
  319. package/lib/models/impl/TaskChannelModel.d.ts +15 -0
  320. package/lib/models/impl/TaskChannelModel.js +69 -1
  321. package/lib/models/impl/TaskComplete.d.ts +0 -0
  322. package/lib/models/impl/TaskComplete.js +1 -1
  323. package/lib/models/impl/TaskInfoPanelModel.d.ts +16 -0
  324. package/lib/models/impl/TaskInfoPanelModel.js +69 -1
  325. package/lib/models/impl/TaskModel.d.ts +59 -0
  326. package/lib/models/impl/TaskModel.js +234 -1
  327. package/lib/models/impl/WorkGroupDetailsModel.d.ts +63 -0
  328. package/lib/models/impl/WorkGroupDetailsModel.js +281 -1
  329. package/lib/models/impl/callbackandvoicemail/CallbackAndVoicemailModel.d.ts +33 -0
  330. package/lib/models/impl/callbackandvoicemail/CallbackAndVoicemailModel.js +140 -1
  331. package/lib/models/impl/callbackandvoicemail/CallbackAndVoicemailNamespace.d.ts +8 -0
  332. package/lib/models/impl/callbackandvoicemail/CallbackAndVoicemailNamespace.js +12 -1
  333. package/lib/models/impl/callbackandvoicemail/CallbackModel.d.ts +19 -0
  334. package/lib/models/impl/callbackandvoicemail/CallbackModel.js +82 -1
  335. package/lib/models/impl/callbackandvoicemail/VoicemailModel.d.ts +25 -0
  336. package/lib/models/impl/callbackandvoicemail/VoicemailModel.js +108 -1
  337. package/lib/models/impl/channelsettings/ChannelSettingModel.d.ts +68 -0
  338. package/lib/models/impl/channelsettings/ChannelSettingModel.js +240 -1
  339. package/lib/models/impl/channelsettings/ChannelSettingTaskInfoModel.d.ts +31 -0
  340. package/lib/models/impl/channelsettings/ChannelSettingTaskInfoModel.js +106 -1
  341. package/lib/models/impl/channelsettings/TaskInfoAttributeModel.d.ts +25 -0
  342. package/lib/models/impl/channelsettings/TaskInfoAttributeModel.js +80 -1
  343. package/lib/models/impl/channelsettings/TaskInfoModel.d.ts +13 -0
  344. package/lib/models/impl/channelsettings/TaskInfoModel.js +52 -1
  345. package/lib/models/impl/cxconfig/CxConfigNamespace.d.ts +16 -0
  346. package/lib/models/impl/cxconfig/CxConfigNamespace.js +20 -1
  347. package/lib/models/impl/cxconfig/CxConfigUIConfigModel.d.ts +27 -0
  348. package/lib/models/impl/cxconfig/CxConfigUIConfigModel.js +180 -1
  349. package/lib/models/impl/cxconfig/CxConfiguratorConfigModel.d.ts +24 -0
  350. package/lib/models/impl/cxconfig/CxConfiguratorConfigModel.js +103 -1
  351. package/lib/models/impl/cxconfig/CxConfiguratorExternalNumbersModel.d.ts +24 -0
  352. package/lib/models/impl/cxconfig/CxConfiguratorExternalNumbersModel.js +149 -1
  353. package/lib/models/impl/cxconfig/CxConfiguratorGPMAssetModel.d.ts +27 -0
  354. package/lib/models/impl/cxconfig/CxConfiguratorGPMAssetModel.js +179 -1
  355. package/lib/models/impl/cxconfig/CxConfiguratorGPMPromptModel.d.ts +40 -0
  356. package/lib/models/impl/cxconfig/CxConfiguratorGPMPromptModel.js +213 -1
  357. package/lib/models/impl/cxconfig/CxConfiguratorOtherModel.d.ts +27 -0
  358. package/lib/models/impl/cxconfig/CxConfiguratorOtherModel.js +159 -1
  359. package/lib/models/impl/cxconfig/CxConfiguratorQueueMenuModel.d.ts +40 -0
  360. package/lib/models/impl/cxconfig/CxConfiguratorQueueMenuModel.js +128 -1
  361. package/lib/models/impl/hoop/HoopBusinessHoursModel.d.ts +39 -0
  362. package/lib/models/impl/hoop/HoopBusinessHoursModel.js +122 -1
  363. package/lib/models/impl/hoop/HoopDescriptionModel.d.ts +16 -0
  364. package/lib/models/impl/hoop/HoopDescriptionModel.js +64 -1
  365. package/lib/models/impl/hoop/HoopHolidaysImplModel.d.ts +25 -0
  366. package/lib/models/impl/hoop/HoopHolidaysImplModel.js +118 -1
  367. package/lib/models/impl/hoop/HoopNotesImplModel.d.ts +25 -0
  368. package/lib/models/impl/hoop/HoopNotesImplModel.js +117 -1
  369. package/lib/models/impl/hoop/HoopOperationsImplModel.d.ts +28 -0
  370. package/lib/models/impl/hoop/HoopOperationsImplModel.js +161 -1
  371. package/lib/models/impl/hoop/HoopOverrideImplModel.d.ts +22 -0
  372. package/lib/models/impl/hoop/HoopOverrideImplModel.js +143 -1
  373. package/lib/models/impl/hoop/HoopPartialDaysImplModel.d.ts +31 -0
  374. package/lib/models/impl/hoop/HoopPartialDaysImplModel.js +140 -1
  375. package/lib/models/impl/hoop/HoopProfilesListImplModel.d.ts +22 -0
  376. package/lib/models/impl/hoop/HoopProfilesListImplModel.js +104 -1
  377. package/lib/models/impl/hoop/HoopWeeklyTimingModel.d.ts +22 -0
  378. package/lib/models/impl/hoop/HoopWeeklyTimingModel.js +86 -1
  379. package/lib/models/index.d.ts +25 -0
  380. package/lib/models/index.js +53 -1
  381. package/lib/models/interface/IBaseModel.d.ts +11 -0
  382. package/lib/models/interface/IBaseModel.js +2 -1
  383. package/lib/models/types/AgentScorecard.type.d.ts +6 -0
  384. package/lib/models/types/AgentScorecard.type.js +7 -1
  385. package/lib/models/types/AuditLog.type.d.ts +13 -0
  386. package/lib/models/types/AuditLog.type.js +10 -1
  387. package/lib/models/types/CallLog.type.d.ts +16 -0
  388. package/lib/models/types/CallLog.type.js +10 -1
  389. package/lib/models/types/ChannelSetting.type.d.ts +7 -0
  390. package/lib/models/types/ChannelSetting.type.js +11 -1
  391. package/lib/models/types/CxConfig.type.d.ts +72 -0
  392. package/lib/models/types/CxConfig.type.js +43 -1
  393. package/lib/models/types/Hoop.type.d.ts +9 -0
  394. package/lib/models/types/Hoop.type.js +13 -1
  395. package/lib/models/types/Navigation.type.d.ts +11 -0
  396. package/lib/models/types/Navigation.type.js +8 -1
  397. package/lib/models/types/Profile.type.d.ts +1 -0
  398. package/lib/models/types/Profile.type.js +2 -1
  399. package/lib/models/types/QueueDetails.type.d.ts +6 -0
  400. package/lib/models/types/QueueDetails.type.js +7 -1
  401. package/lib/models/types/TaskComplete.type.d.ts +7 -0
  402. package/lib/models/types/TaskComplete.type.js +6 -1
  403. package/lib/models/types/TaskInfoPanel.type.d.ts +6 -0
  404. package/lib/models/types/TaskInfoPanel.type.js +7 -1
  405. package/lib/server.d.ts +1 -0
  406. package/lib/server.js +39 -1
  407. package/lib/twilio/abstract/ServiceObjectStore.d.ts +6 -0
  408. package/lib/twilio/abstract/ServiceObjectStore.js +10 -1
  409. package/lib/twilio/abstract/ServiceOpenRequest.d.ts +7 -0
  410. package/lib/twilio/abstract/ServiceOpenRequest.js +10 -1
  411. package/lib/twilio/abstract/ServiceRequest.d.ts +3 -0
  412. package/lib/twilio/abstract/ServiceRequest.js +7 -1
  413. package/lib/twilio/abstract/ServiceResource.d.ts +23 -0
  414. package/lib/twilio/abstract/ServiceResource.js +37 -1
  415. package/lib/twilio/abstract/ServiceResourceFactory.d.ts +15 -0
  416. package/lib/twilio/abstract/ServiceResourceFactory.js +18 -1
  417. package/lib/twilio/abstract/ServiceTransaction.d.ts +6 -0
  418. package/lib/twilio/abstract/ServiceTransaction.js +11 -1
  419. package/lib/twilio/abstract/SyncServiceItemResource.d.ts +31 -0
  420. package/lib/twilio/abstract/SyncServiceItemResource.js +60 -1
  421. package/lib/twilio/abstract/TwilioClientConfig.d.ts +0 -0
  422. package/lib/twilio/abstract/TwilioClientConfig.js +1 -1
  423. package/lib/twilio/impl/TwilioAPIKeyConfig.d.ts +14 -0
  424. package/lib/twilio/impl/TwilioAPIKeyConfig.js +31 -1
  425. package/lib/twilio/impl/TwilioAuthTokenConfig.d.ts +11 -0
  426. package/lib/twilio/impl/TwilioAuthTokenConfig.js +24 -1
  427. package/lib/twilio/impl/TwilioClient.d.ts +6 -0
  428. package/lib/twilio/impl/TwilioClient.js +21 -1
  429. package/lib/twilio/impl/message/messageService.d.ts +0 -0
  430. package/lib/twilio/impl/message/messageService.js +42 -1
  431. package/lib/twilio/impl/sync/SyncDocument.d.ts +24 -0
  432. package/lib/twilio/impl/sync/SyncDocument.js +52 -1
  433. package/lib/twilio/impl/sync/SyncDocumentTransaction.d.ts +20 -0
  434. package/lib/twilio/impl/sync/SyncDocumentTransaction.js +31 -1
  435. package/lib/twilio/impl/sync/SyncList.d.ts +24 -0
  436. package/lib/twilio/impl/sync/SyncList.js +52 -1
  437. package/lib/twilio/impl/sync/SyncListItem.d.ts +5 -0
  438. package/lib/twilio/impl/sync/SyncListItem.js +22 -1
  439. package/lib/twilio/impl/sync/SyncListTransaction.d.ts +20 -0
  440. package/lib/twilio/impl/sync/SyncListTransaction.js +31 -1
  441. package/lib/twilio/impl/sync/SyncMap.d.ts +25 -0
  442. package/lib/twilio/impl/sync/SyncMap.js +139 -1
  443. package/lib/twilio/impl/sync/SyncMapItem.d.ts +5 -0
  444. package/lib/twilio/impl/sync/SyncMapItem.js +7 -1
  445. package/lib/twilio/impl/sync/SyncMapTransaction.d.ts +22 -0
  446. package/lib/twilio/impl/sync/SyncMapTransaction.js +38 -1
  447. package/lib/twilio/impl/sync/SyncOpenRequest.d.ts +18 -0
  448. package/lib/twilio/impl/sync/SyncOpenRequest.js +24 -1
  449. package/lib/twilio/impl/sync/SyncRequest.d.ts +16 -0
  450. package/lib/twilio/impl/sync/SyncRequest.js +21 -1
  451. package/lib/twilio/impl/sync/SyncResource.d.ts +50 -0
  452. package/lib/twilio/impl/sync/SyncResource.js +97 -1
  453. package/lib/twilio/impl/sync/SyncServiceFactory.d.ts +22 -0
  454. package/lib/twilio/impl/sync/SyncServiceFactory.js +117 -1
  455. package/lib/twilio/interface/IDirection.d.ts +2 -0
  456. package/lib/twilio/interface/IDirection.js +2 -1
  457. package/lib/twilio/interface/ILink.d.ts +2 -0
  458. package/lib/twilio/interface/ILink.js +2 -1
  459. package/lib/twilio/interface/IServiceDBOpenRequest.d.ts +3 -0
  460. package/lib/twilio/interface/IServiceDBOpenRequest.js +2 -1
  461. package/lib/twilio/interface/IServiceObjectStore.d.ts +3 -0
  462. package/lib/twilio/interface/IServiceObjectStore.js +2 -1
  463. package/lib/twilio/interface/IServiceObjectStoreParameters.d.ts +4 -0
  464. package/lib/twilio/interface/IServiceObjectStoreParameters.js +2 -1
  465. package/lib/twilio/interface/IServiceRequest.d.ts +3 -0
  466. package/lib/twilio/interface/IServiceRequest.js +2 -1
  467. package/lib/twilio/interface/IServiceResource.d.ts +8 -0
  468. package/lib/twilio/interface/IServiceResource.js +2 -1
  469. package/lib/twilio/interface/IServiceTransation.d.ts +3 -0
  470. package/lib/twilio/interface/IServiceTransation.js +2 -1
  471. package/lib/twilio/interface/ISubResourceUri.d.ts +2 -0
  472. package/lib/twilio/interface/ISubResourceUri.js +2 -1
  473. package/lib/twilio/interface/ISyncItemData.d.ts +0 -0
  474. package/lib/twilio/interface/ISyncItemData.js +1 -1
  475. package/lib/twilio/interface/ISyncObjectStoreParameters.d.ts +0 -0
  476. package/lib/twilio/interface/ISyncObjectStoreParameters.js +1 -1
  477. package/lib/twilio/interface/ISyncTransactionOptions.d.ts +4 -0
  478. package/lib/twilio/interface/ISyncTransactionOptions.js +2 -1
  479. package/package.json +9 -5
  480. package/lib/models/abstract/BaseModelOld.js +0 -1
@@ -1 +1,128 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.CxConfiguratorQueueMenuModel=void 0;const e=require("../../abstract/BaseModel"),t=require("uuid");class i extends e.BaseModel{constructor(e,t,i,r,s,a,n,o,u,d,l){super(),this._id=e,this._name=t,this._category=i,this._type=r,this._value=s,this._language=a,this._fileName=n,this._voice=o,this._order=u,this._createdAt=d,this._updatedAt=l}get id(){return this._id}set id(e){this._id=e}get name(){return this._name}set name(e){this._name=e}get category(){return this._category}set category(e){this._category=e}get type(){return this._type}set type(e){this._type=e}get value(){return this._value}set value(e){this._value=e}get language(){return this._language}set language(e){this._language=e}get fileName(){return this._fileName}set fileName(e){this._fileName=e}get voice(){return this._voice}set voice(e){this._voice=e}get order(){return this._order}set order(e){this._order=e}get createdAt(){return this._createdAt}set createdAt(e){this._createdAt=e}get updatedAt(){return this._updatedAt}set updatedAt(e){this._updatedAt=e}validateData(){console.log(" data in validation method",this),this.validationMessages=[];const e={id:e=>"string"==typeof e&&""!==e.trim()&&(0,t.validate)(e),name:e=>null===e||"string"==typeof e&&""!==e.trim(),order:e=>null===e||"number"==typeof e,type:e=>"Text"===e||"Audio"===e,value:e=>"string"==typeof e&&""!==e.trim(),category:e=>"string"==typeof e&&""!==e.trim(),language:e=>null===e||"string"==typeof e&&""!==e.trim(),voice:e=>null===e||"string"==typeof e&&""!==e.trim(),fileName:e=>null===e||"string"==typeof e&&""!==e.trim(),createdAt:e=>{const t=new Date(e);return t instanceof Date&&!isNaN(t.getTime())},updatedAt:e=>{const t=new Date(e);return t instanceof Date&&!isNaN(t.getTime())}};for(const t in e){if(!e.hasOwnProperty(t))continue;(0,e[t])(this[t])||(console.error(`Validation failed for property "${t}".`),this.validationMessages.push({type:"Error",fieldDescription:t,message:`${t} is not valid`}))}return this.validationMessages}}exports.CxConfiguratorQueueMenuModel=i;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CxConfiguratorQueueMenuModel = void 0;
4
+ const BaseModel_1 = require("../../abstract/BaseModel");
5
+ const uuid_1 = require("uuid");
6
+ class CxConfiguratorQueueMenuModel extends BaseModel_1.BaseModel {
7
+ constructor(id, name, category, type, value, language, fileName, voice, order, createdAt, updatedAt) {
8
+ super();
9
+ this._id = id;
10
+ this._name = name;
11
+ this._category = category;
12
+ this._type = type;
13
+ this._value = value;
14
+ this._language = language;
15
+ this._fileName = fileName;
16
+ this._voice = voice;
17
+ this._order = order;
18
+ this._createdAt = createdAt;
19
+ this._updatedAt = updatedAt;
20
+ }
21
+ // Getters and Setters
22
+ get id() {
23
+ return this._id;
24
+ }
25
+ set id(value) {
26
+ this._id = value;
27
+ }
28
+ get name() {
29
+ return this._name;
30
+ }
31
+ set name(value) {
32
+ this._name = value;
33
+ }
34
+ get category() {
35
+ return this._category;
36
+ }
37
+ set category(value) {
38
+ this._category = value;
39
+ }
40
+ get type() {
41
+ return this._type;
42
+ }
43
+ set type(value) {
44
+ this._type = value;
45
+ }
46
+ get value() {
47
+ return this._value;
48
+ }
49
+ set value(value) {
50
+ this._value = value;
51
+ }
52
+ get language() {
53
+ return this._language;
54
+ }
55
+ set language(value) {
56
+ this._language = value;
57
+ }
58
+ get fileName() {
59
+ return this._fileName;
60
+ }
61
+ set fileName(value) {
62
+ this._fileName = value;
63
+ }
64
+ get voice() {
65
+ return this._voice;
66
+ }
67
+ set voice(value) {
68
+ this._voice = value;
69
+ }
70
+ get order() {
71
+ return this._order;
72
+ }
73
+ set order(value) {
74
+ this._order = value;
75
+ }
76
+ get createdAt() {
77
+ return this._createdAt;
78
+ }
79
+ set createdAt(value) {
80
+ this._createdAt = value;
81
+ }
82
+ get updatedAt() {
83
+ return this._updatedAt;
84
+ }
85
+ set updatedAt(value) {
86
+ this._updatedAt = value;
87
+ }
88
+ // Validation method
89
+ validateData() {
90
+ console.log(' data in validation method', this);
91
+ this.validationMessages = [];
92
+ const validationRules = {
93
+ id: (value) => typeof value === "string" && value.trim() !== "" && (0, uuid_1.validate)(value),
94
+ name: (value) => value === null || typeof value === "string" && value.trim() !== "",
95
+ order: (value) => value === null || typeof value === "number",
96
+ type: (value) => value === "Text" || value === "Audio",
97
+ value: (value) => typeof value === "string" && value.trim() !== "",
98
+ category: (value) => typeof value === "string" && value.trim() !== "",
99
+ language: (value) => value === null || (typeof value === "string" && value.trim() !== ""),
100
+ voice: (value) => value === null || (typeof value === "string" && value.trim() !== ""),
101
+ fileName: (value) => value === null || (typeof value === "string" && value.trim() !== ""),
102
+ createdAt: (value) => {
103
+ const parsedDate = new Date(value);
104
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
105
+ },
106
+ updatedAt: (value) => {
107
+ const parsedDate = new Date(value);
108
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
109
+ },
110
+ };
111
+ for (const key in validationRules) {
112
+ if (!validationRules.hasOwnProperty(key))
113
+ continue;
114
+ const validator = validationRules[key];
115
+ const value = this[key]; // Dynamically access the property
116
+ if (!validator(value)) {
117
+ console.error(`Validation failed for property "${key}".`);
118
+ this.validationMessages.push({
119
+ type: "Error",
120
+ fieldDescription: key,
121
+ message: `${key} is not valid`,
122
+ });
123
+ }
124
+ }
125
+ return this.validationMessages;
126
+ }
127
+ }
128
+ exports.CxConfiguratorQueueMenuModel = CxConfiguratorQueueMenuModel;
@@ -0,0 +1,39 @@
1
+ import { BaseModel } from "../../abstract/BaseModel";
2
+ import { validationMessage } from "../../interface/IBaseModel";
3
+ import { HoopDescriptionModel } from "./HoopDescriptionModel";
4
+ import { HoopWeeklyTimingModel } from "./HoopWeeklyTimingModel";
5
+ export declare class HoopBusinessHoursModel extends BaseModel {
6
+ private _isOpen;
7
+ private _isHoliday;
8
+ private _isPartialDay;
9
+ private _isRegularDay;
10
+ private _description;
11
+ private _overrideBranches;
12
+ private _weeklyTiming;
13
+ private _weeklyTimingString;
14
+ private _reopenTiming;
15
+ private _timeZone;
16
+ constructor(isOpen: boolean, isHoliday: boolean, isPartialDay: boolean, isRegularDay: boolean, description: HoopDescriptionModel, overrideBranches: Record<string, boolean | string>, weeklyTiming: HoopWeeklyTimingModel[], weeklyTimingString: string, reopenTiming: Date, timeZone: string);
17
+ get isOpen(): boolean;
18
+ set isOpen(value: boolean);
19
+ get isHoliday(): boolean;
20
+ set isHoliday(value: boolean);
21
+ get isPartialDay(): boolean;
22
+ set isPartialDay(value: boolean);
23
+ get isRegularDay(): boolean;
24
+ set isRegularDay(value: boolean);
25
+ get description(): HoopDescriptionModel;
26
+ set description(value: HoopDescriptionModel);
27
+ get overrideBranches(): Record<string, boolean | string>;
28
+ set overrideBranches(value: Record<string, boolean | string>);
29
+ get weeklyTiming(): HoopWeeklyTimingModel[];
30
+ set weeklyTiming(value: HoopWeeklyTimingModel[]);
31
+ get weeklyTimingString(): string;
32
+ set weeklyTimingString(value: string);
33
+ get reopenTiming(): Date;
34
+ set reopenTiming(value: Date);
35
+ get timeZone(): string;
36
+ set timeZone(value: string);
37
+ validateData(): validationMessage[];
38
+ setValidationMessages(data: validationMessage): void;
39
+ }
@@ -1 +1,122 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.HoopBusinessHoursModel=void 0;const e=require("../../abstract/BaseModel"),i=require("./HoopDescriptionModel"),t=require("./HoopWeeklyTimingModel");class s extends e.BaseModel{constructor(e,i,t,s,r,n,o,a,l,g){super(),this._isOpen=e,this._isHoliday=i,this._isPartialDay=t,this._isRegularDay=s,this._description=r,this._overrideBranches=n,this._weeklyTiming=o,this._weeklyTimingString=a,this._reopenTiming=l,this._timeZone=g,this.validateData()}get isOpen(){return this._isOpen}set isOpen(e){this._isOpen=e}get isHoliday(){return this._isHoliday}set isHoliday(e){this._isHoliday=e}get isPartialDay(){return this._isPartialDay}set isPartialDay(e){this._isPartialDay=e}get isRegularDay(){return this._isRegularDay}set isRegularDay(e){this._isRegularDay=e}get description(){return this._description}set description(e){this._description=e}get overrideBranches(){return this._overrideBranches}set overrideBranches(e){this._overrideBranches=e}get weeklyTiming(){return this._weeklyTiming}set weeklyTiming(e){this._weeklyTiming=e}get weeklyTimingString(){return this._weeklyTimingString}set weeklyTimingString(e){if("string"!=typeof e||null===e)throw new Error("Invalid weeklyTimingString format.");this._weeklyTimingString=e}get reopenTiming(){return this._reopenTiming}set reopenTiming(e){if(!(e instanceof Date)||isNaN(e.getTime()))throw new Error("Invalid reopenTime format.");this._reopenTiming=e}get timeZone(){return this._timeZone}set timeZone(e){if("string"!=typeof e||null===e)throw new Error("Invalid timeZone format.");this._timeZone=e}validateData(){this.validationMessages=[];const e={isOpen:e=>"boolean"==typeof e,isHoliday:e=>"boolean"==typeof e,isPartialDay:e=>"boolean"==typeof e,isRegularDay:e=>"boolean"==typeof e,description:e=>e instanceof i.HoopDescriptionModel,overrideBranches:e=>"object"==typeof e&&null!==e,weeklyTiming:e=>Array.isArray(e)&&e.every((e=>e instanceof t.HoopWeeklyTimingModel)),weeklyTimingString:e=>"string"==typeof e&&null!==e,reopenTiming:e=>e instanceof Date&&!isNaN(e.getTime()),timeZone:e=>"string"==typeof e&&null!==e};for(const i in e){(0,e[i])(this[i])||this.setValidationMessages({type:"Error",fieldDescription:i,message:`${i} is invalid.`})}return this.validationMessages}setValidationMessages(e){this.validationMessages.push(e)}}exports.HoopBusinessHoursModel=s;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HoopBusinessHoursModel = void 0;
4
+ const BaseModel_1 = require("../../abstract/BaseModel");
5
+ const HoopDescriptionModel_1 = require("./HoopDescriptionModel");
6
+ const HoopWeeklyTimingModel_1 = require("./HoopWeeklyTimingModel");
7
+ class HoopBusinessHoursModel extends BaseModel_1.BaseModel {
8
+ constructor(isOpen, isHoliday, isPartialDay, isRegularDay, description, overrideBranches, weeklyTiming, weeklyTimingString, reopenTiming, timeZone) {
9
+ super();
10
+ this._isOpen = isOpen;
11
+ this._isHoliday = isHoliday;
12
+ this._isPartialDay = isPartialDay;
13
+ this._isRegularDay = isRegularDay;
14
+ this._description = description;
15
+ this._overrideBranches = overrideBranches;
16
+ this._weeklyTiming = weeklyTiming;
17
+ this._weeklyTimingString = weeklyTimingString;
18
+ this._reopenTiming = reopenTiming;
19
+ this._timeZone = timeZone;
20
+ this.validateData();
21
+ }
22
+ get isOpen() {
23
+ return this._isOpen;
24
+ }
25
+ set isOpen(value) {
26
+ this._isOpen = value;
27
+ }
28
+ get isHoliday() {
29
+ return this._isHoliday;
30
+ }
31
+ set isHoliday(value) {
32
+ this._isHoliday = value;
33
+ }
34
+ get isPartialDay() {
35
+ return this._isPartialDay;
36
+ }
37
+ set isPartialDay(value) {
38
+ this._isPartialDay = value;
39
+ }
40
+ get isRegularDay() {
41
+ return this._isRegularDay;
42
+ }
43
+ set isRegularDay(value) {
44
+ this._isRegularDay = value;
45
+ }
46
+ get description() {
47
+ return this._description;
48
+ }
49
+ set description(value) {
50
+ this._description = value;
51
+ }
52
+ get overrideBranches() {
53
+ return this._overrideBranches;
54
+ }
55
+ set overrideBranches(value) {
56
+ this._overrideBranches = value;
57
+ }
58
+ get weeklyTiming() {
59
+ return this._weeklyTiming;
60
+ }
61
+ set weeklyTiming(value) {
62
+ this._weeklyTiming = value;
63
+ }
64
+ get weeklyTimingString() {
65
+ return this._weeklyTimingString;
66
+ }
67
+ set weeklyTimingString(value) {
68
+ if (typeof value !== "string" || value === null) {
69
+ throw new Error("Invalid weeklyTimingString format.");
70
+ }
71
+ this._weeklyTimingString = value;
72
+ }
73
+ get reopenTiming() {
74
+ return this._reopenTiming;
75
+ }
76
+ set reopenTiming(value) {
77
+ if (!(value instanceof Date) || isNaN(value.getTime())) {
78
+ throw new Error('Invalid reopenTime format.');
79
+ }
80
+ this._reopenTiming = value;
81
+ }
82
+ get timeZone() {
83
+ return this._timeZone;
84
+ }
85
+ set timeZone(value) {
86
+ if (typeof value !== "string" || value === null) {
87
+ throw new Error("Invalid timeZone format.");
88
+ }
89
+ this._timeZone = value;
90
+ }
91
+ validateData() {
92
+ this.validationMessages = [];
93
+ const validationRules = {
94
+ isOpen: (value) => typeof value === "boolean",
95
+ isHoliday: (value) => typeof value === "boolean",
96
+ isPartialDay: (value) => typeof value === "boolean",
97
+ isRegularDay: (value) => typeof value === "boolean",
98
+ description: (value) => value instanceof HoopDescriptionModel_1.HoopDescriptionModel,
99
+ overrideBranches: (value) => typeof value === "object" && value !== null,
100
+ weeklyTiming: (value) => Array.isArray(value) && value.every(item => item instanceof HoopWeeklyTimingModel_1.HoopWeeklyTimingModel),
101
+ weeklyTimingString: (value) => typeof value === "string" && value !== null,
102
+ reopenTiming: (value) => value instanceof Date && !isNaN(value.getTime()),
103
+ timeZone: (value) => typeof value === "string" && value !== null,
104
+ };
105
+ for (const key in validationRules) {
106
+ const validator = validationRules[key];
107
+ const value = this[key];
108
+ if (!validator(value)) {
109
+ this.setValidationMessages({
110
+ type: "Error",
111
+ fieldDescription: key,
112
+ message: `${key} is invalid.`,
113
+ });
114
+ }
115
+ }
116
+ return this.validationMessages;
117
+ }
118
+ setValidationMessages(data) {
119
+ this.validationMessages.push(data);
120
+ }
121
+ }
122
+ exports.HoopBusinessHoursModel = HoopBusinessHoursModel;
@@ -0,0 +1,16 @@
1
+ import { BaseModel } from "../../abstract/BaseModel";
2
+ import { validationMessage } from "../../interface/IBaseModel";
3
+ export declare class HoopDescriptionModel extends BaseModel {
4
+ private _hoopDesc;
5
+ private _begin;
6
+ private _end;
7
+ constructor(hoopDesc: string, begin: string, end: string);
8
+ get hoopDesc(): string;
9
+ set hoopDesc(value: string);
10
+ get begin(): string;
11
+ set begin(value: string);
12
+ get end(): string;
13
+ set end(value: string);
14
+ validateData(): validationMessage[];
15
+ setValidationMessages(data: validationMessage): void;
16
+ }
@@ -1 +1,64 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.HoopDescriptionModel=void 0;const e=require("../../abstract/BaseModel");class s extends e.BaseModel{constructor(e,s,t){super(),this._hoopDesc=e,this._begin=s,this._end=t,this.validateData()}get hoopDesc(){return this._hoopDesc}set hoopDesc(e){if("string"!=typeof e||null===e)throw new Error("Invalid hoopDesc format.");this._hoopDesc=e}get begin(){return this._begin}set begin(e){if(!/^\d{2}:\d{2}:\d{2}$/.test(e))throw new Error("Invalid beginTime format. Must be HH:mm:ss.");this._begin=e}get end(){return this._end}set end(e){if(!/^\d{2}:\d{2}:\d{2}$/.test(e))throw new Error("Invalid endTime format. Must be HH:mm:ss.");this._end=e}validateData(){this.validationMessages=[];const e={hoopDesc:e=>"string"==typeof e||""===e,begin:e=>/^\d{2}:\d{2}:\d{2}$/.test(e),end:e=>/^\d{2}:\d{2}:\d{2}$/.test(e)};for(const s in e){(0,e[s])(this[s])||this.setValidationMessages({type:"Error",fieldDescription:s,message:`${s} is invalid.`})}return this.validationMessages}setValidationMessages(e){this.validationMessages.push(e)}}exports.HoopDescriptionModel=s;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HoopDescriptionModel = void 0;
4
+ const BaseModel_1 = require("../../abstract/BaseModel");
5
+ class HoopDescriptionModel extends BaseModel_1.BaseModel {
6
+ constructor(hoopDesc, begin, end) {
7
+ super();
8
+ this._hoopDesc = hoopDesc;
9
+ this._begin = begin;
10
+ this._end = end;
11
+ this.validateData();
12
+ }
13
+ get hoopDesc() {
14
+ return this._hoopDesc;
15
+ }
16
+ set hoopDesc(value) {
17
+ if (typeof value !== "string" || value === null) {
18
+ throw new Error("Invalid hoopDesc format.");
19
+ }
20
+ this._hoopDesc = value;
21
+ }
22
+ get begin() {
23
+ return this._begin;
24
+ }
25
+ set begin(value) {
26
+ if (!/^\d{2}:\d{2}:\d{2}$/.test(value)) {
27
+ throw new Error("Invalid beginTime format. Must be HH:mm:ss.");
28
+ }
29
+ this._begin = value;
30
+ }
31
+ get end() {
32
+ return this._end;
33
+ }
34
+ set end(value) {
35
+ if (!/^\d{2}:\d{2}:\d{2}$/.test(value)) {
36
+ throw new Error("Invalid endTime format. Must be HH:mm:ss.");
37
+ }
38
+ this._end = value;
39
+ }
40
+ validateData() {
41
+ this.validationMessages = [];
42
+ const validationRules = {
43
+ hoopDesc: (value) => typeof value === "string" || value === "",
44
+ begin: (value) => /^\d{2}:\d{2}:\d{2}$/.test(value),
45
+ end: (value) => /^\d{2}:\d{2}:\d{2}$/.test(value),
46
+ };
47
+ for (const key in validationRules) {
48
+ const validator = validationRules[key];
49
+ const value = this[key];
50
+ if (!validator(value)) {
51
+ this.setValidationMessages({
52
+ type: "Error",
53
+ fieldDescription: key,
54
+ message: `${key} is invalid.`,
55
+ });
56
+ }
57
+ }
58
+ return this.validationMessages;
59
+ }
60
+ setValidationMessages(data) {
61
+ this.validationMessages.push(data);
62
+ }
63
+ }
64
+ exports.HoopDescriptionModel = HoopDescriptionModel;
@@ -0,0 +1,25 @@
1
+ import { BaseModel } from "../../abstract/BaseModel";
2
+ import { validationMessage } from "../../interface/IBaseModel";
3
+ export declare class HoopHolidaysImplModel extends BaseModel {
4
+ private _holidaysId;
5
+ private _profileId;
6
+ private _description;
7
+ private _date;
8
+ private _createdAt;
9
+ private _updatedAt;
10
+ constructor(holidaysId: string, profileId: string, description: string, date: Date | string, createdAt: Date | undefined, updatedAt: Date | undefined);
11
+ get holidaysId(): string;
12
+ get profileId(): string;
13
+ get description(): string;
14
+ get date(): Date | string;
15
+ get createdAt(): Date | undefined;
16
+ get updatedAt(): Date | undefined;
17
+ set holidaysId(value: string);
18
+ set profileId(value: string);
19
+ set description(value: string);
20
+ set date(value: Date | string);
21
+ set createdAt(value: Date | undefined);
22
+ set updatedAt(value: Date | undefined);
23
+ validateData(): validationMessage[];
24
+ setValidationMessages(data: validationMessage): void;
25
+ }
@@ -1 +1,118 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.HoopHolidaysImplModel=void 0;const t=require("uuid"),e=require("../../abstract/BaseModel");class i extends e.BaseModel{constructor(t,e,i,s,r,a){super(),this._holidaysId=t,this._profileId=e,this._description=i,this._date=s,this._createdAt=r,this._updatedAt=a,this.validateData()}get holidaysId(){return this._holidaysId}get profileId(){return this._profileId}get description(){return this._description}get date(){return this._date}get createdAt(){return this._createdAt}get updatedAt(){return this._updatedAt}set holidaysId(e){if(!(0,t.validate)(e))throw new Error("Invalid holidaysId format.");this._holidaysId=e}set profileId(t){if("string"!=typeof t||""===t)throw new Error("Invalid profileId format.");this._profileId=t}set description(t){if("string"!=typeof t||""===t)throw new Error("Invalid description format.");this._description=t}set date(t){if("string"!=typeof t||""===t)throw new Error("Invalid date value. Must be a Date object");this._date=t}set createdAt(t){if(!(t instanceof Date)||isNaN(t.getTime()))throw new Error("Invalid createdAt format.");this._createdAt=t}set updatedAt(t){if(!(t instanceof Date)||isNaN(t.getTime()))throw new Error("Invalid updatedAt format.");this._updatedAt=t}validateData(){this.validationMessages=[];const e={holidaysId:e=>"string"==typeof e&&""!==e.trim()&&(0,t.validate)(e),profileId:t=>"string"==typeof t&&""!==t.trim(),description:t=>"string"==typeof t&&""!==t.trim(),date:t=>"string"==typeof t&&""!==t.trim(),createdAt:t=>{const e=new Date(t);return e instanceof Date&&!isNaN(e.getTime())},updatedAt:t=>{const e=new Date(t);return e instanceof Date&&!isNaN(e.getTime())}};for(const t in e){(0,e[t])(this[t])||this.setValidationMessages({type:"Error",fieldDescription:t,message:`${t} is invalid.`})}return this.validationMessages}setValidationMessages(t){this.validationMessages.push(t)}}exports.HoopHolidaysImplModel=i;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HoopHolidaysImplModel = void 0;
4
+ const uuid_1 = require("uuid");
5
+ const BaseModel_1 = require("../../abstract/BaseModel");
6
+ // Class to handle holidays validation and management
7
+ class HoopHolidaysImplModel extends BaseModel_1.BaseModel {
8
+ // Constructor to initialize with holidays data
9
+ constructor(holidaysId, profileId, description, date, createdAt, updatedAt) {
10
+ super();
11
+ this._holidaysId = holidaysId;
12
+ this._profileId = profileId;
13
+ this._description = description;
14
+ this._date = date;
15
+ this._createdAt = createdAt;
16
+ this._updatedAt = updatedAt;
17
+ this.validateData();
18
+ }
19
+ // Getters
20
+ get holidaysId() {
21
+ return this._holidaysId;
22
+ }
23
+ get profileId() {
24
+ return this._profileId;
25
+ }
26
+ get description() {
27
+ return this._description;
28
+ }
29
+ get date() {
30
+ return this._date;
31
+ }
32
+ get createdAt() {
33
+ return this._createdAt;
34
+ }
35
+ get updatedAt() {
36
+ return this._updatedAt;
37
+ }
38
+ // Setters
39
+ set holidaysId(value) {
40
+ if (!(0, uuid_1.validate)(value)) {
41
+ throw new Error("Invalid holidaysId format.");
42
+ }
43
+ this._holidaysId = value;
44
+ }
45
+ set profileId(value) {
46
+ if (typeof value !== "string" || value === "") {
47
+ throw new Error("Invalid profileId format.");
48
+ }
49
+ this._profileId = value;
50
+ }
51
+ set description(value) {
52
+ if (typeof value !== "string" || value === "") {
53
+ throw new Error("Invalid description format.");
54
+ }
55
+ this._description = value;
56
+ }
57
+ set date(value) {
58
+ if (typeof value !== "string" || value === "") {
59
+ throw new Error("Invalid date value. Must be a Date object");
60
+ }
61
+ this._date = value;
62
+ }
63
+ set createdAt(value) {
64
+ if (!(value instanceof Date) || isNaN(value.getTime())) {
65
+ throw new Error("Invalid createdAt format.");
66
+ }
67
+ this._createdAt = value;
68
+ }
69
+ set updatedAt(value) {
70
+ if (!(value instanceof Date) || isNaN(value.getTime())) {
71
+ throw new Error("Invalid updatedAt format.");
72
+ }
73
+ this._updatedAt = value;
74
+ }
75
+ // Method to validate holidays data
76
+ validateData() {
77
+ this.validationMessages = [];
78
+ // Define validation rules for each property
79
+ const validationRules = {
80
+ // Validate holidaysId: must be a non-empty string and a valid UUID
81
+ holidaysId: (value) => typeof value === "string" && value.trim() !== "" && (0, uuid_1.validate)(value),
82
+ // Validate profileId: must be a non-empty string
83
+ profileId: (value) => typeof value === "string" && value.trim() !== "",
84
+ // Validate description: must be a non-empty string
85
+ description: (value) => typeof value === "string" && value.trim() !== "",
86
+ // Validate date: must be a non-empty string
87
+ date: (value) => typeof value === "string" && value.trim() !== "",
88
+ // Validate createdAt: must be a valid date
89
+ createdAt: (value) => {
90
+ const parsedDate = new Date(value);
91
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
92
+ },
93
+ // Validate updatedAt: must be a valid date
94
+ updatedAt: (value) => {
95
+ const parsedDate = new Date(value);
96
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
97
+ },
98
+ };
99
+ // Iterate over each validation rule and validate corresponding data
100
+ for (const key in validationRules) {
101
+ // console.log(key)
102
+ const validator = validationRules[key];
103
+ const value = this[key];
104
+ if (!validator(value)) {
105
+ this.setValidationMessages({
106
+ type: "Error",
107
+ fieldDescription: key,
108
+ message: `${key} is invalid.`,
109
+ });
110
+ }
111
+ }
112
+ return this.validationMessages;
113
+ }
114
+ setValidationMessages(data) {
115
+ this.validationMessages.push(data);
116
+ }
117
+ }
118
+ exports.HoopHolidaysImplModel = HoopHolidaysImplModel;
@@ -0,0 +1,25 @@
1
+ import { BaseModel } from "../../abstract/BaseModel";
2
+ import { validationMessage } from "../../interface/IBaseModel";
3
+ export declare class HoopNotesImplModel extends BaseModel {
4
+ private _notesId;
5
+ private _profileId;
6
+ private _heading;
7
+ private _description;
8
+ private _createdAt;
9
+ private _updatedAt;
10
+ constructor(notesId: string, profileId: string, heading: string, description: string, createdAt: Date | undefined, updatedAt: Date | undefined);
11
+ get notesId(): string;
12
+ get profileId(): string;
13
+ get heading(): string;
14
+ get description(): string;
15
+ get createdAt(): Date | undefined;
16
+ get updatedAt(): Date | undefined;
17
+ set notesId(value: string);
18
+ set profileId(value: string);
19
+ set heading(value: string);
20
+ set description(value: string);
21
+ set createdAt(value: Date | undefined);
22
+ set updatedAt(value: Date | undefined);
23
+ validateData(): validationMessage[];
24
+ setValidationMessages(data: validationMessage): void;
25
+ }
@@ -1 +1,117 @@
1
- Object.defineProperty(exports,"__esModule",{value:!0}),exports.HoopNotesImplModel=void 0;const t=require("uuid"),e=require("../../abstract/BaseModel");class i extends e.BaseModel{constructor(t,e,i,s,r,a){super(),this._notesId=t,this._profileId=e,this._heading=i,this._description=s,this._createdAt=r,this._updatedAt=a,this.validateData()}get notesId(){return this._notesId}get profileId(){return this._profileId}get heading(){return this._heading}get description(){return this._description}get createdAt(){return this._createdAt}get updatedAt(){return this._updatedAt}set notesId(e){if(!(0,t.validate)(e))throw new Error("Invalid notesId format.");this._notesId=e}set profileId(t){if("string"!=typeof t||""===t)throw new Error("Invalid profileId format.");this._profileId=t}set heading(t){if("string"!=typeof t||""===t)throw new Error("Invalid heading format.");this._heading=t}set description(t){if("string"!=typeof t||""===t)throw new Error("Invalid description format.");this._description=t}set createdAt(t){if(!(t instanceof Date)||isNaN(t.getTime()))throw new Error("Invalid createdAt format.");this._createdAt=t}set updatedAt(t){if(!(t instanceof Date)||isNaN(t.getTime()))throw new Error("Invalid updatedAt format.");this._updatedAt=t}validateData(){this.validationMessages=[];const e={notesId:e=>"string"==typeof e&&""!==e.trim()&&(0,t.validate)(e),profileId:t=>"string"==typeof t&&""!==t.trim(),heading:t=>"string"==typeof t&&""!==t.trim(),description:t=>"string"==typeof t&&""!==t.trim(),createdAt:t=>{const e=new Date(t);return e instanceof Date&&!isNaN(e.getTime())},updatedAt:t=>{const e=new Date(t);return e instanceof Date&&!isNaN(e.getTime())}};for(const t in e){(0,e[t])(this[t])||this.setValidationMessages({type:"Error",fieldDescription:t,message:`${t} is invalid.`})}return this.validationMessages}setValidationMessages(t){this.validationMessages.push(t)}}exports.HoopNotesImplModel=i;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HoopNotesImplModel = void 0;
4
+ const uuid_1 = require("uuid");
5
+ const BaseModel_1 = require("../../abstract/BaseModel");
6
+ // Class to handle partial days validation and management
7
+ class HoopNotesImplModel extends BaseModel_1.BaseModel {
8
+ // Constructor to initialize with partial days data
9
+ constructor(notesId, profileId, heading, description, createdAt, updatedAt) {
10
+ super();
11
+ this._notesId = notesId;
12
+ this._profileId = profileId;
13
+ this._heading = heading;
14
+ this._description = description;
15
+ this._createdAt = createdAt;
16
+ this._updatedAt = updatedAt;
17
+ this.validateData();
18
+ }
19
+ // Getters
20
+ get notesId() {
21
+ return this._notesId;
22
+ }
23
+ get profileId() {
24
+ return this._profileId;
25
+ }
26
+ get heading() {
27
+ return this._heading;
28
+ }
29
+ get description() {
30
+ return this._description;
31
+ }
32
+ get createdAt() {
33
+ return this._createdAt;
34
+ }
35
+ get updatedAt() {
36
+ return this._updatedAt;
37
+ }
38
+ // Setters
39
+ set notesId(value) {
40
+ if (!(0, uuid_1.validate)(value)) {
41
+ throw new Error("Invalid notesId format.");
42
+ }
43
+ this._notesId = value;
44
+ }
45
+ set profileId(value) {
46
+ if (typeof value !== "string" || value === "") {
47
+ throw new Error("Invalid profileId format.");
48
+ }
49
+ this._profileId = value;
50
+ }
51
+ set heading(value) {
52
+ if (typeof value !== "string" || value === "") {
53
+ throw new Error("Invalid heading format.");
54
+ }
55
+ this._heading = value;
56
+ }
57
+ set description(value) {
58
+ if (typeof value !== "string" || value === "") {
59
+ throw new Error("Invalid description format.");
60
+ }
61
+ this._description = value;
62
+ }
63
+ set createdAt(value) {
64
+ if (!(value instanceof Date) || isNaN(value.getTime())) {
65
+ throw new Error("Invalid createdAt format.");
66
+ }
67
+ this._createdAt = value;
68
+ }
69
+ set updatedAt(value) {
70
+ if (!(value instanceof Date) || isNaN(value.getTime())) {
71
+ throw new Error("Invalid updatedAt format.");
72
+ }
73
+ this._updatedAt = value;
74
+ }
75
+ // Method to validate partial days data
76
+ validateData() {
77
+ this.validationMessages = [];
78
+ // Define validation rules for each property
79
+ const validationRules = {
80
+ // Validate partialDaysId: must be a non-empty string and a valid UUID
81
+ notesId: (value) => typeof value === "string" && value.trim() !== "" && (0, uuid_1.validate)(value),
82
+ // Validate profileId: must be a non-empty string
83
+ profileId: (value) => typeof value === "string" && value.trim() !== "",
84
+ heading: (value) => typeof value === "string" && value.trim() !== "",
85
+ // Validate description: must be a non-empty string
86
+ description: (value) => typeof value === "string" && value.trim() !== "",
87
+ // Validate createdAt: must be a valid date
88
+ createdAt: (value) => {
89
+ const parsedDate = new Date(value);
90
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
91
+ },
92
+ // Validate updatedAt: must be a valid date
93
+ updatedAt: (value) => {
94
+ const parsedDate = new Date(value);
95
+ return parsedDate instanceof Date && !isNaN(parsedDate.getTime());
96
+ },
97
+ };
98
+ // Iterate over each validation rule and validate corresponding data
99
+ for (const key in validationRules) {
100
+ // console.log(key)
101
+ const validator = validationRules[key];
102
+ const value = this[key];
103
+ if (!validator(value)) {
104
+ this.setValidationMessages({
105
+ type: "Error",
106
+ fieldDescription: key,
107
+ message: `${key} is invalid.`,
108
+ });
109
+ }
110
+ }
111
+ return this.validationMessages;
112
+ }
113
+ setValidationMessages(data) {
114
+ this.validationMessages.push(data);
115
+ }
116
+ }
117
+ exports.HoopNotesImplModel = HoopNotesImplModel;