@developer_tribe/react-native-comnyx 0.1.1 → 0.2.1

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 (310) hide show
  1. package/lib/commonjs/App.js +59 -0
  2. package/lib/commonjs/App.js.map +1 -0
  3. package/lib/commonjs/__dev__.js +29 -0
  4. package/lib/commonjs/__dev__.js.map +1 -0
  5. package/lib/commonjs/api/api.js +22 -0
  6. package/lib/commonjs/api/api.js.map +1 -0
  7. package/lib/commonjs/api/conversations.js +37 -0
  8. package/lib/commonjs/api/conversations.js.map +1 -0
  9. package/lib/commonjs/api/customers.js +15 -0
  10. package/lib/commonjs/api/customers.js.map +1 -0
  11. package/lib/commonjs/api/index.js +33 -0
  12. package/lib/commonjs/api/index.js.map +1 -0
  13. package/lib/commonjs/api/messages.js +27 -0
  14. package/lib/commonjs/api/messages.js.map +1 -0
  15. package/lib/commonjs/assets/clock.png +0 -0
  16. package/lib/commonjs/assets/double-check.png +0 -0
  17. package/lib/commonjs/assets/down.png +0 -0
  18. package/lib/commonjs/assets/send.png +0 -0
  19. package/lib/commonjs/components/AppText.js +38 -0
  20. package/lib/commonjs/components/AppText.js.map +1 -0
  21. package/lib/commonjs/components/ChatList.js +268 -0
  22. package/lib/commonjs/components/ChatList.js.map +1 -0
  23. package/lib/commonjs/components/CustomerForm.js +279 -0
  24. package/lib/commonjs/components/CustomerForm.js.map +1 -0
  25. package/lib/commonjs/components/EmptyList.js +40 -0
  26. package/lib/commonjs/components/EmptyList.js.map +1 -0
  27. package/lib/commonjs/components/InitFailed.js +51 -0
  28. package/lib/commonjs/components/InitFailed.js.map +1 -0
  29. package/lib/commonjs/components/MessageInput.js +119 -0
  30. package/lib/commonjs/components/MessageInput.js.map +1 -0
  31. package/lib/commonjs/components/MessageItem.js +117 -0
  32. package/lib/commonjs/components/MessageItem.js.map +1 -0
  33. package/lib/commonjs/constants/countries.js +587 -0
  34. package/lib/commonjs/constants/countries.js.map +1 -0
  35. package/lib/commonjs/constants/translations.js +219 -0
  36. package/lib/commonjs/constants/translations.js.map +1 -0
  37. package/lib/commonjs/data/fake/conversations.js +95 -0
  38. package/lib/commonjs/data/fake/conversations.js.map +1 -0
  39. package/lib/commonjs/data/fake/customers.js +24 -0
  40. package/lib/commonjs/data/fake/customers.js.map +1 -0
  41. package/lib/commonjs/data/fake/messages.js +67 -0
  42. package/lib/commonjs/data/fake/messages.js.map +1 -0
  43. package/lib/commonjs/hooks/useLocalize.js +20 -0
  44. package/lib/commonjs/hooks/useLocalize.js.map +1 -0
  45. package/lib/commonjs/hooks/usePolling.js +50 -0
  46. package/lib/commonjs/hooks/usePolling.js.map +1 -0
  47. package/lib/commonjs/hooks/useThemeColors.js +17 -0
  48. package/lib/commonjs/hooks/useThemeColors.js.map +1 -0
  49. package/lib/commonjs/index.js +15 -6
  50. package/lib/commonjs/index.js.map +1 -1
  51. package/lib/commonjs/register.js +21 -0
  52. package/lib/commonjs/register.js.map +1 -0
  53. package/lib/commonjs/store.js +79 -0
  54. package/lib/commonjs/store.js.map +1 -0
  55. package/lib/commonjs/types/ApiOptions.js +2 -0
  56. package/lib/commonjs/types/ApiOptions.js.map +1 -0
  57. package/lib/commonjs/types/Conversation.js +2 -0
  58. package/lib/commonjs/types/Conversation.js.map +1 -0
  59. package/lib/commonjs/types/Customer.js +2 -0
  60. package/lib/commonjs/types/Customer.js.map +1 -0
  61. package/lib/commonjs/types/Language.js +2 -0
  62. package/lib/commonjs/types/Language.js.map +1 -0
  63. package/lib/commonjs/types/LocalizationKeys.js +2 -0
  64. package/lib/commonjs/types/LocalizationKeys.js.map +1 -0
  65. package/lib/commonjs/types/MessageResponse.js +2 -0
  66. package/lib/commonjs/types/MessageResponse.js.map +1 -0
  67. package/lib/commonjs/types/Theme.js +29 -0
  68. package/lib/commonjs/types/Theme.js.map +1 -0
  69. package/lib/commonjs/utils/date.js +17 -0
  70. package/lib/commonjs/utils/date.js.map +1 -0
  71. package/lib/module/App.js +55 -0
  72. package/lib/module/App.js.map +1 -0
  73. package/lib/module/__dev__.js +29 -0
  74. package/lib/module/__dev__.js.map +1 -0
  75. package/lib/module/api/api.js +17 -0
  76. package/lib/module/api/api.js.map +1 -0
  77. package/lib/module/api/conversations.js +32 -0
  78. package/lib/module/api/conversations.js.map +1 -0
  79. package/lib/module/api/customers.js +11 -0
  80. package/lib/module/api/customers.js.map +1 -0
  81. package/lib/module/api/index.js +6 -0
  82. package/lib/module/api/index.js.map +1 -0
  83. package/lib/module/api/messages.js +23 -0
  84. package/lib/module/api/messages.js.map +1 -0
  85. package/lib/module/assets/clock.png +0 -0
  86. package/lib/module/assets/double-check.png +0 -0
  87. package/lib/module/assets/down.png +0 -0
  88. package/lib/module/assets/send.png +0 -0
  89. package/lib/module/components/AppText.js +34 -0
  90. package/lib/module/components/AppText.js.map +1 -0
  91. package/lib/module/components/ChatList.js +265 -0
  92. package/lib/module/components/ChatList.js.map +1 -0
  93. package/lib/module/components/CustomerForm.js +275 -0
  94. package/lib/module/components/CustomerForm.js.map +1 -0
  95. package/lib/module/components/EmptyList.js +36 -0
  96. package/lib/module/components/EmptyList.js.map +1 -0
  97. package/lib/module/components/InitFailed.js +47 -0
  98. package/lib/module/components/InitFailed.js.map +1 -0
  99. package/lib/module/components/MessageInput.js +115 -0
  100. package/lib/module/components/MessageInput.js.map +1 -0
  101. package/lib/module/components/MessageItem.js +114 -0
  102. package/lib/module/components/MessageItem.js.map +1 -0
  103. package/lib/module/constants/countries.js +583 -0
  104. package/lib/module/constants/countries.js.map +1 -0
  105. package/lib/module/constants/translations.js +215 -0
  106. package/lib/module/constants/translations.js.map +1 -0
  107. package/lib/module/data/fake/conversations.js +88 -0
  108. package/lib/module/data/fake/conversations.js.map +1 -0
  109. package/lib/module/data/fake/customers.js +20 -0
  110. package/lib/module/data/fake/customers.js.map +1 -0
  111. package/lib/module/data/fake/messages.js +63 -0
  112. package/lib/module/data/fake/messages.js.map +1 -0
  113. package/lib/module/hooks/useLocalize.js +16 -0
  114. package/lib/module/hooks/useLocalize.js.map +1 -0
  115. package/lib/module/hooks/usePolling.js +46 -0
  116. package/lib/module/hooks/usePolling.js.map +1 -0
  117. package/lib/module/hooks/useThemeColors.js +13 -0
  118. package/lib/module/hooks/useThemeColors.js.map +1 -0
  119. package/lib/module/index.js +3 -4
  120. package/lib/module/index.js.map +1 -1
  121. package/lib/module/register.js +17 -0
  122. package/lib/module/register.js.map +1 -0
  123. package/lib/module/store.js +74 -0
  124. package/lib/module/store.js.map +1 -0
  125. package/lib/module/types/ApiOptions.js +2 -0
  126. package/lib/module/types/ApiOptions.js.map +1 -0
  127. package/lib/module/types/Conversation.js +2 -0
  128. package/lib/module/types/Conversation.js.map +1 -0
  129. package/lib/module/types/Customer.js +2 -0
  130. package/lib/module/types/Customer.js.map +1 -0
  131. package/lib/module/types/Language.js +2 -0
  132. package/lib/module/types/Language.js.map +1 -0
  133. package/lib/module/types/LocalizationKeys.js +2 -0
  134. package/lib/module/types/LocalizationKeys.js.map +1 -0
  135. package/lib/module/types/MessageResponse.js +2 -0
  136. package/lib/module/types/MessageResponse.js.map +1 -0
  137. package/lib/module/types/Theme.js +25 -0
  138. package/lib/module/types/Theme.js.map +1 -0
  139. package/lib/module/utils/date.js +12 -0
  140. package/lib/module/utils/date.js.map +1 -0
  141. package/lib/typescript/commonjs/src/App.d.ts +9 -0
  142. package/lib/typescript/commonjs/src/App.d.ts.map +1 -0
  143. package/lib/typescript/commonjs/src/__dev__.d.ts +2 -0
  144. package/lib/typescript/commonjs/src/__dev__.d.ts.map +1 -0
  145. package/lib/typescript/commonjs/src/api/api.d.ts +4 -0
  146. package/lib/typescript/commonjs/src/api/api.d.ts.map +1 -0
  147. package/lib/typescript/commonjs/src/api/conversations.d.ts +7 -0
  148. package/lib/typescript/commonjs/src/api/conversations.d.ts.map +1 -0
  149. package/lib/typescript/commonjs/src/api/customers.d.ts +4 -0
  150. package/lib/typescript/commonjs/src/api/customers.d.ts.map +1 -0
  151. package/lib/typescript/commonjs/src/api/index.d.ts +4 -0
  152. package/lib/typescript/commonjs/src/api/index.d.ts.map +1 -0
  153. package/lib/typescript/commonjs/src/api/messages.d.ts +4 -0
  154. package/lib/typescript/commonjs/src/api/messages.d.ts.map +1 -0
  155. package/lib/typescript/commonjs/src/components/AppText.d.ts +10 -0
  156. package/lib/typescript/commonjs/src/components/AppText.d.ts.map +1 -0
  157. package/lib/typescript/commonjs/src/components/ChatList.d.ts +2 -0
  158. package/lib/typescript/commonjs/src/components/ChatList.d.ts.map +1 -0
  159. package/lib/typescript/commonjs/src/components/CustomerForm.d.ts +2 -0
  160. package/lib/typescript/commonjs/src/components/CustomerForm.d.ts.map +1 -0
  161. package/lib/typescript/commonjs/src/components/EmptyList.d.ts +2 -0
  162. package/lib/typescript/commonjs/src/components/EmptyList.d.ts.map +1 -0
  163. package/lib/typescript/commonjs/src/components/InitFailed.d.ts +6 -0
  164. package/lib/typescript/commonjs/src/components/InitFailed.d.ts.map +1 -0
  165. package/lib/typescript/commonjs/src/components/MessageInput.d.ts +4 -0
  166. package/lib/typescript/commonjs/src/components/MessageInput.d.ts.map +1 -0
  167. package/lib/typescript/commonjs/src/components/MessageItem.d.ts +5 -0
  168. package/lib/typescript/commonjs/src/components/MessageItem.d.ts.map +1 -0
  169. package/lib/typescript/commonjs/src/constants/countries.d.ts +6 -0
  170. package/lib/typescript/commonjs/src/constants/countries.d.ts.map +1 -0
  171. package/lib/typescript/commonjs/src/constants/translations.d.ts +4 -0
  172. package/lib/typescript/commonjs/src/constants/translations.d.ts.map +1 -0
  173. package/lib/typescript/commonjs/src/data/fake/conversations.d.ts +5 -0
  174. package/lib/typescript/commonjs/src/data/fake/conversations.d.ts.map +1 -0
  175. package/lib/typescript/commonjs/src/data/fake/customers.d.ts +3 -0
  176. package/lib/typescript/commonjs/src/data/fake/customers.d.ts.map +1 -0
  177. package/lib/typescript/commonjs/src/data/fake/messages.d.ts +3 -0
  178. package/lib/typescript/commonjs/src/data/fake/messages.d.ts.map +1 -0
  179. package/lib/typescript/commonjs/src/hooks/useLocalize.d.ts +3 -0
  180. package/lib/typescript/commonjs/src/hooks/useLocalize.d.ts.map +1 -0
  181. package/lib/typescript/commonjs/src/hooks/usePolling.d.ts +2 -0
  182. package/lib/typescript/commonjs/src/hooks/usePolling.d.ts.map +1 -0
  183. package/lib/typescript/commonjs/src/hooks/useThemeColors.d.ts +3 -0
  184. package/lib/typescript/commonjs/src/hooks/useThemeColors.d.ts.map +1 -0
  185. package/lib/typescript/commonjs/src/index.d.ts +4 -1
  186. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  187. package/lib/typescript/commonjs/src/register.d.ts +5 -0
  188. package/lib/typescript/commonjs/src/register.d.ts.map +1 -0
  189. package/lib/typescript/commonjs/src/store.d.ts +35 -0
  190. package/lib/typescript/commonjs/src/store.d.ts.map +1 -0
  191. package/lib/typescript/commonjs/src/types/ApiOptions.d.ts +4 -0
  192. package/lib/typescript/commonjs/src/types/ApiOptions.d.ts.map +1 -0
  193. package/lib/typescript/commonjs/src/types/Conversation.d.ts +26 -0
  194. package/lib/typescript/commonjs/src/types/Conversation.d.ts.map +1 -0
  195. package/lib/typescript/commonjs/src/types/Customer.d.ts +30 -0
  196. package/lib/typescript/commonjs/src/types/Customer.d.ts.map +1 -0
  197. package/lib/typescript/commonjs/src/types/Language.d.ts +2 -0
  198. package/lib/typescript/commonjs/src/types/Language.d.ts.map +1 -0
  199. package/lib/typescript/commonjs/src/types/LocalizationKeys.d.ts +22 -0
  200. package/lib/typescript/commonjs/src/types/LocalizationKeys.d.ts.map +1 -0
  201. package/lib/typescript/commonjs/src/types/MessageResponse.d.ts +59 -0
  202. package/lib/typescript/commonjs/src/types/MessageResponse.d.ts.map +1 -0
  203. package/lib/typescript/commonjs/src/types/Theme.d.ts +18 -0
  204. package/lib/typescript/commonjs/src/types/Theme.d.ts.map +1 -0
  205. package/lib/typescript/commonjs/src/utils/date.d.ts +7 -0
  206. package/lib/typescript/commonjs/src/utils/date.d.ts.map +1 -0
  207. package/lib/typescript/module/src/App.d.ts +9 -0
  208. package/lib/typescript/module/src/App.d.ts.map +1 -0
  209. package/lib/typescript/module/src/__dev__.d.ts +2 -0
  210. package/lib/typescript/module/src/__dev__.d.ts.map +1 -0
  211. package/lib/typescript/module/src/api/api.d.ts +4 -0
  212. package/lib/typescript/module/src/api/api.d.ts.map +1 -0
  213. package/lib/typescript/module/src/api/conversations.d.ts +7 -0
  214. package/lib/typescript/module/src/api/conversations.d.ts.map +1 -0
  215. package/lib/typescript/module/src/api/customers.d.ts +4 -0
  216. package/lib/typescript/module/src/api/customers.d.ts.map +1 -0
  217. package/lib/typescript/module/src/api/index.d.ts +4 -0
  218. package/lib/typescript/module/src/api/index.d.ts.map +1 -0
  219. package/lib/typescript/module/src/api/messages.d.ts +4 -0
  220. package/lib/typescript/module/src/api/messages.d.ts.map +1 -0
  221. package/lib/typescript/module/src/components/AppText.d.ts +10 -0
  222. package/lib/typescript/module/src/components/AppText.d.ts.map +1 -0
  223. package/lib/typescript/module/src/components/ChatList.d.ts +2 -0
  224. package/lib/typescript/module/src/components/ChatList.d.ts.map +1 -0
  225. package/lib/typescript/module/src/components/CustomerForm.d.ts +2 -0
  226. package/lib/typescript/module/src/components/CustomerForm.d.ts.map +1 -0
  227. package/lib/typescript/module/src/components/EmptyList.d.ts +2 -0
  228. package/lib/typescript/module/src/components/EmptyList.d.ts.map +1 -0
  229. package/lib/typescript/module/src/components/InitFailed.d.ts +6 -0
  230. package/lib/typescript/module/src/components/InitFailed.d.ts.map +1 -0
  231. package/lib/typescript/module/src/components/MessageInput.d.ts +4 -0
  232. package/lib/typescript/module/src/components/MessageInput.d.ts.map +1 -0
  233. package/lib/typescript/module/src/components/MessageItem.d.ts +5 -0
  234. package/lib/typescript/module/src/components/MessageItem.d.ts.map +1 -0
  235. package/lib/typescript/module/src/constants/countries.d.ts +6 -0
  236. package/lib/typescript/module/src/constants/countries.d.ts.map +1 -0
  237. package/lib/typescript/module/src/constants/translations.d.ts +4 -0
  238. package/lib/typescript/module/src/constants/translations.d.ts.map +1 -0
  239. package/lib/typescript/module/src/data/fake/conversations.d.ts +5 -0
  240. package/lib/typescript/module/src/data/fake/conversations.d.ts.map +1 -0
  241. package/lib/typescript/module/src/data/fake/customers.d.ts +3 -0
  242. package/lib/typescript/module/src/data/fake/customers.d.ts.map +1 -0
  243. package/lib/typescript/module/src/data/fake/messages.d.ts +3 -0
  244. package/lib/typescript/module/src/data/fake/messages.d.ts.map +1 -0
  245. package/lib/typescript/module/src/hooks/useLocalize.d.ts +3 -0
  246. package/lib/typescript/module/src/hooks/useLocalize.d.ts.map +1 -0
  247. package/lib/typescript/module/src/hooks/usePolling.d.ts +2 -0
  248. package/lib/typescript/module/src/hooks/usePolling.d.ts.map +1 -0
  249. package/lib/typescript/module/src/hooks/useThemeColors.d.ts +3 -0
  250. package/lib/typescript/module/src/hooks/useThemeColors.d.ts.map +1 -0
  251. package/lib/typescript/module/src/index.d.ts +4 -1
  252. package/lib/typescript/module/src/index.d.ts.map +1 -1
  253. package/lib/typescript/module/src/register.d.ts +5 -0
  254. package/lib/typescript/module/src/register.d.ts.map +1 -0
  255. package/lib/typescript/module/src/store.d.ts +35 -0
  256. package/lib/typescript/module/src/store.d.ts.map +1 -0
  257. package/lib/typescript/module/src/types/ApiOptions.d.ts +4 -0
  258. package/lib/typescript/module/src/types/ApiOptions.d.ts.map +1 -0
  259. package/lib/typescript/module/src/types/Conversation.d.ts +26 -0
  260. package/lib/typescript/module/src/types/Conversation.d.ts.map +1 -0
  261. package/lib/typescript/module/src/types/Customer.d.ts +30 -0
  262. package/lib/typescript/module/src/types/Customer.d.ts.map +1 -0
  263. package/lib/typescript/module/src/types/Language.d.ts +2 -0
  264. package/lib/typescript/module/src/types/Language.d.ts.map +1 -0
  265. package/lib/typescript/module/src/types/LocalizationKeys.d.ts +22 -0
  266. package/lib/typescript/module/src/types/LocalizationKeys.d.ts.map +1 -0
  267. package/lib/typescript/module/src/types/MessageResponse.d.ts +59 -0
  268. package/lib/typescript/module/src/types/MessageResponse.d.ts.map +1 -0
  269. package/lib/typescript/module/src/types/Theme.d.ts +18 -0
  270. package/lib/typescript/module/src/types/Theme.d.ts.map +1 -0
  271. package/lib/typescript/module/src/utils/date.d.ts +7 -0
  272. package/lib/typescript/module/src/utils/date.d.ts.map +1 -0
  273. package/package.json +10 -2
  274. package/src/App.tsx +59 -0
  275. package/src/__dev__.ts +22 -0
  276. package/src/api/api.ts +16 -0
  277. package/src/api/conversations.ts +53 -0
  278. package/src/api/customers.ts +16 -0
  279. package/src/api/index.ts +6 -0
  280. package/src/api/messages.ts +33 -0
  281. package/src/assets/clock.png +0 -0
  282. package/src/assets/double-check.png +0 -0
  283. package/src/assets/down.png +0 -0
  284. package/src/assets/send.png +0 -0
  285. package/src/components/AppText.tsx +43 -0
  286. package/src/components/ChatList.tsx +299 -0
  287. package/src/components/CustomerForm.tsx +300 -0
  288. package/src/components/EmptyList.tsx +32 -0
  289. package/src/components/InitFailed.tsx +46 -0
  290. package/src/components/MessageInput.tsx +133 -0
  291. package/src/components/MessageItem.tsx +141 -0
  292. package/src/constants/countries.ts +200 -0
  293. package/src/constants/translations.ts +232 -0
  294. package/src/data/fake/conversations.ts +558 -0
  295. package/src/data/fake/customers.ts +19 -0
  296. package/src/data/fake/messages.ts +64 -0
  297. package/src/hooks/useLocalize.ts +18 -0
  298. package/src/hooks/usePolling.ts +46 -0
  299. package/src/hooks/useThemeColors.ts +10 -0
  300. package/src/index.tsx +4 -5
  301. package/src/register.ts +17 -0
  302. package/src/store.ts +85 -0
  303. package/src/types/ApiOptions.ts +4 -0
  304. package/src/types/Conversation.ts +29 -0
  305. package/src/types/Customer.ts +31 -0
  306. package/src/types/Language.ts +11 -0
  307. package/src/types/LocalizationKeys.ts +21 -0
  308. package/src/types/MessageResponse.ts +58 -0
  309. package/src/types/Theme.ts +40 -0
  310. package/src/utils/date.ts +11 -0
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ import { createJSONStorage, persist } from 'zustand/middleware';
4
+ import { shallow } from 'zustand/shallow';
5
+ import { createWithEqualityFn } from 'zustand/traditional';
6
+ import AsyncStorage from '@react-native-async-storage/async-storage';
7
+ const storeCreator = (set, get) => ({
8
+ initialized: false,
9
+ customer: null,
10
+ data: null,
11
+ externalId: null,
12
+ language: 'en',
13
+ theme: 'light',
14
+ fake: false,
15
+ firstMessage: null,
16
+ setData: cb => {
17
+ const newData = cb(get().data);
18
+ set({
19
+ data: newData
20
+ });
21
+ },
22
+ setFirstMessage: message => {
23
+ set({
24
+ firstMessage: message
25
+ });
26
+ },
27
+ init: ({
28
+ externalId
29
+ }) => {
30
+ set({
31
+ externalId: externalId,
32
+ initialized: true
33
+ });
34
+ },
35
+ initForm: createCustomerResponse => {
36
+ set({
37
+ customer: createCustomerResponse
38
+ });
39
+ },
40
+ setLanguage: language => {
41
+ set({
42
+ language
43
+ });
44
+ },
45
+ setTheme: theme => {
46
+ set({
47
+ theme
48
+ });
49
+ },
50
+ setFake: fake => {
51
+ set({
52
+ fake
53
+ });
54
+ }
55
+ });
56
+ export const useAppStore = createWithEqualityFn()(persist(storeCreator, {
57
+ name: 'commonyx_appStore-10',
58
+ storage: createJSONStorage(() => AsyncStorage),
59
+ skipHydration: false,
60
+ partialize: state => ({
61
+ customer: state.customer,
62
+ externalId: state.externalId,
63
+ data: []
64
+ /* data: state.data
65
+ ?.filter((message) => message.approved)
66
+ .map((message) => ({
67
+ ...message,
68
+ created_at: message.created_at
69
+ ? new Date(message.created_at)
70
+ : undefined,
71
+ })),*/
72
+ })
73
+ }), shallow);
74
+ //# sourceMappingURL=store.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createJSONStorage","persist","shallow","createWithEqualityFn","AsyncStorage","storeCreator","set","get","initialized","customer","data","externalId","language","theme","fake","firstMessage","setData","cb","newData","setFirstMessage","message","init","initForm","createCustomerResponse","setLanguage","setTheme","setFake","useAppStore","name","storage","skipHydration","partialize","state"],"sourceRoot":"../../src","sources":["store.ts"],"mappings":";;AAAA,SAASA,iBAAiB,EAAEC,OAAO,QAAQ,oBAAoB;AAC/D,SAASC,OAAO,QAAQ,iBAAiB;AACzC,SAASC,oBAAoB,QAAQ,qBAAqB;AAE1D,OAAOC,YAAY,MAAM,2CAA2C;AA2BpE,MAAMC,YAAyC,GAAGA,CAACC,GAAG,EAAEC,GAAG,MAAM;EAC/DC,WAAW,EAAE,KAAK;EAClBC,QAAQ,EAAE,IAAI;EACdC,IAAI,EAAE,IAAI;EACVC,UAAU,EAAE,IAAI;EAChBC,QAAQ,EAAE,IAAI;EACdC,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,KAAK;EACXC,YAAY,EAAE,IAAI;EAClBC,OAAO,EAAGC,EAAE,IAAK;IACf,MAAMC,OAAO,GAAGD,EAAE,CAACV,GAAG,CAAC,CAAC,CAACG,IAAI,CAAC;IAC9BJ,GAAG,CAAC;MAAEI,IAAI,EAAEQ;IAAQ,CAAC,CAAC;EACxB,CAAC;EACDC,eAAe,EAAGC,OAAO,IAAK;IAC5Bd,GAAG,CAAC;MAAES,YAAY,EAAEK;IAAQ,CAAC,CAAC;EAChC,CAAC;EACDC,IAAI,EAAEA,CAAC;IAAEV;EAAmC,CAAC,KAAK;IAChDL,GAAG,CAAC;MAAEK,UAAU,EAAEA,UAAU;MAAEH,WAAW,EAAE;IAAK,CAAC,CAAC;EACpD,CAAC;EACDc,QAAQ,EAAGC,sBAAgC,IAAK;IAC9CjB,GAAG,CAAC;MAAEG,QAAQ,EAAEc;IAAuB,CAAC,CAAC;EAC3C,CAAC;EACDC,WAAW,EAAGZ,QAAsB,IAAK;IACvCN,GAAG,CAAC;MAAEM;IAAS,CAAC,CAAC;EACnB,CAAC;EACDa,QAAQ,EAAGZ,KAAuB,IAAK;IACrCP,GAAG,CAAC;MAAEO;IAAM,CAAC,CAAC;EAChB,CAAC;EACDa,OAAO,EAAGZ,IAAa,IAAK;IAC1BR,GAAG,CAAC;MAAEQ;IAAK,CAAC,CAAC;EACf;AACF,CAAC,CAAC;AAEF,OAAO,MAAMa,WAAW,GAAGxB,oBAAoB,CAAgB,CAAC,CAC9DF,OAAO,CAACI,YAAY,EAAE;EACpBuB,IAAI,EAAE,sBAAsB;EAC5BC,OAAO,EAAE7B,iBAAiB,CAAC,MAAMI,YAAY,CAAC;EAC9C0B,aAAa,EAAE,KAAK;EACpBC,UAAU,EAAGC,KAAK,KAAM;IACtBvB,QAAQ,EAAEuB,KAAK,CAACvB,QAAQ;IACxBE,UAAU,EAAEqB,KAAK,CAACrB,UAAU;IAC5BD,IAAI,EAAE;IACN;AACN;AACA;AACA;AACA;AACA;AACA;AACA;EACI,CAAC;AACH,CAAC,CAAC,EACFR,OACF,CAAC","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=ApiOptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/ApiOptions.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Conversation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/Conversation.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Customer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/Customer.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Language.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/Language.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=LocalizationKeys.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/LocalizationKeys.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=MessageResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/MessageResponse.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ export const lightTheme = {
4
+ primary: '#4361EE',
5
+ secondary: '#3A0CA3',
6
+ background: '#FFFFFF',
7
+ text: '#212529',
8
+ error: '#FF3B30',
9
+ success: '#34C759',
10
+ warning: '#FF9500',
11
+ info: '#007AFF',
12
+ border: '#E9ECEF'
13
+ };
14
+ export const darkTheme = {
15
+ primary: '#4361EE',
16
+ secondary: '#3A0CA3',
17
+ background: '#121212',
18
+ text: '#FFFFFF',
19
+ error: '#FF453A',
20
+ success: '#32D74B',
21
+ warning: '#FF9F0A',
22
+ info: '#0A84FF',
23
+ border: '#2C2C2C'
24
+ };
25
+ //# sourceMappingURL=Theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["lightTheme","primary","secondary","background","text","error","success","warning","info","border","darkTheme"],"sourceRoot":"../../../src","sources":["types/Theme.ts"],"mappings":";;AAYA,OAAO,MAAMA,UAAuB,GAAG;EACrCC,OAAO,EAAE,SAAS;EAClBC,SAAS,EAAE,SAAS;EACpBC,UAAU,EAAE,SAAS;EACrBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,SAAS;EAChBC,OAAO,EAAE,SAAS;EAClBC,OAAO,EAAE,SAAS;EAClBC,IAAI,EAAE,SAAS;EACfC,MAAM,EAAE;AACV,CAAC;AAED,OAAO,MAAMC,SAAsB,GAAG;EACpCT,OAAO,EAAE,SAAS;EAClBC,SAAS,EAAE,SAAS;EACpBC,UAAU,EAAE,SAAS;EACrBC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,SAAS;EAChBC,OAAO,EAAE,SAAS;EAClBC,OAAO,EAAE,SAAS;EAClBC,IAAI,EAAE,SAAS;EACfC,MAAM,EAAE;AACV,CAAC","ignoreList":[]}
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Converts a Date object to Unix timestamp (seconds)
5
+ * @param date - The Date object to convert
6
+ * @returns Unix timestamp in seconds, or undefined if date is undefined
7
+ */
8
+ export const dateToUnixTimestamp = date => {
9
+ if (!date) return undefined;
10
+ return Math.floor(date.getTime() / 1000);
11
+ };
12
+ //# sourceMappingURL=date.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["dateToUnixTimestamp","date","undefined","Math","floor","getTime"],"sourceRoot":"../../../src","sources":["utils/date.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMA,mBAAmB,GAC9BC,IAAsB,IACC;EACvB,IAAI,CAACA,IAAI,EAAE,OAAOC,SAAS;EAC3B,OAAOC,IAAI,CAACC,KAAK,CAACH,IAAI,CAACI,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;AAC1C,CAAC","ignoreList":[]}
@@ -0,0 +1,9 @@
1
+ import type { LanguageCode } from './types/Language';
2
+ interface ComnyxProps {
3
+ language?: LanguageCode;
4
+ theme?: 'light' | 'dark';
5
+ fake?: boolean;
6
+ }
7
+ export declare function Comnyx({ language, theme, fake, }: ComnyxProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=App.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../../../src/App.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAMrD,UAAU,WAAW;IACnB,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,wBAAgB,MAAM,CAAC,EACrB,QAAe,EACf,KAAc,EACd,IAAY,GACb,EAAE,WAAW,2CAgCb"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=__dev__.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"__dev__.d.ts","sourceRoot":"","sources":["../../../../src/__dev__.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ declare const axiosInstance: import("axios").AxiosInstance;
2
+ export declare function initApi(token: string): void;
3
+ export { axiosInstance };
4
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../../src/api/api.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,aAAa,+BAOjB,CAAC;AAEH,wBAAgB,OAAO,CAAC,KAAK,EAAE,MAAM,QAGpC;AAED,OAAO,EAAE,aAAa,EAAE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ConversationResponse } from '../types/Conversation';
2
+ import type { ApiOptions } from '../types/ApiOptions';
3
+ export declare function getCustomerConversation(externalId: string, created_at: Date | undefined, page: number | undefined, options: ApiOptions & {
4
+ per_page?: number;
5
+ }): Promise<ConversationResponse>;
6
+ export declare function getNewCustomerConversation(externalId: string, created_at: Date | undefined, options: ApiOptions): Promise<ConversationResponse>;
7
+ //# sourceMappingURL=conversations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversations.d.ts","sourceRoot":"","sources":["../../../../../src/api/conversations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAUtD,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,IAAI,GAAG,SAAS,EAC5B,IAAI,oBAAY,EAChB,OAAO,EAAE,UAAU,GAAG;IAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE,GAC1C,OAAO,CAAC,oBAAoB,CAAC,CAiB/B;AAED,wBAAgB,0BAA0B,CACxC,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,IAAI,GAAG,SAAS,EAC5B,OAAO,EAAE,UAAU,GAClB,OAAO,CAAC,oBAAoB,CAAC,CAa/B"}
@@ -0,0 +1,4 @@
1
+ import type { CreateCustomerRequest, Customer } from '../types/Customer';
2
+ import type { ApiOptions } from '../types/ApiOptions';
3
+ export declare function createCustomer(customerData: CreateCustomerRequest, options: ApiOptions): Promise<Customer>;
4
+ //# sourceMappingURL=customers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../../../../../src/api/customers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACzE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAItD,wBAAgB,cAAc,CAC5B,YAAY,EAAE,qBAAqB,EACnC,OAAO,EAAE,UAAU,GAClB,OAAO,CAAC,QAAQ,CAAC,CAOnB"}
@@ -0,0 +1,4 @@
1
+ export { createCustomer } from './customers';
2
+ export { getCustomerConversation, getNewCustomerConversation, } from './conversations';
3
+ export { sendCustomerMessage } from './messages';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EACL,uBAAuB,EACvB,0BAA0B,GAC3B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { MessageResponse } from '../types/MessageResponse';
2
+ import type { ApiOptions } from '../types/ApiOptions';
3
+ export declare function sendCustomerMessage(externalId: string, content: string, options: ApiOptions): Promise<MessageResponse>;
4
+ //# sourceMappingURL=messages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../src/api/messages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAItD,wBAAgB,mBAAmB,CACjC,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,UAAU,GAClB,OAAO,CAAC,eAAe,CAAC,CAuB1B"}
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import type { TextProps } from 'react-native';
3
+ import type { LocalizationKeys } from '../types/LocalizationKeys';
4
+ interface AppTextProps extends Omit<TextProps, 'children'> {
5
+ localization?: keyof LocalizationKeys;
6
+ children?: React.ReactNode;
7
+ }
8
+ export declare function AppText({ style, localization, children, ...props }: AppTextProps): import("react/jsx-runtime").JSX.Element | null;
9
+ export {};
10
+ //# sourceMappingURL=AppText.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AppText.d.ts","sourceRoot":"","sources":["../../../../../src/components/AppText.tsx"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAI9C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE,UAAU,YAAa,SAAQ,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,gBAAgB,CAAC;IACtC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,wBAAgB,OAAO,CAAC,EACtB,KAAK,EACL,YAAY,EACZ,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,YAAY,kDAyBd"}
@@ -0,0 +1,2 @@
1
+ export declare function ChatList(): import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=ChatList.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatList.d.ts","sourceRoot":"","sources":["../../../../../src/components/ChatList.tsx"],"names":[],"mappings":"AA+BA,wBAAgB,QAAQ,4CAsNvB"}
@@ -0,0 +1,2 @@
1
+ export declare function CustomerForm(): import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=CustomerForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomerForm.d.ts","sourceRoot":"","sources":["../../../../../src/components/CustomerForm.tsx"],"names":[],"mappings":"AAyBA,wBAAgB,YAAY,4CA0N3B"}
@@ -0,0 +1,2 @@
1
+ export declare function EmptyList(): import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=EmptyList.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyList.d.ts","sourceRoot":"","sources":["../../../../../src/components/EmptyList.tsx"],"names":[],"mappings":"AAIA,wBAAgB,SAAS,4CAaxB"}
@@ -0,0 +1,6 @@
1
+ interface InitFailedProps {
2
+ setInitFailed: (value: boolean) => void;
3
+ }
4
+ export declare function InitFailed({ setInitFailed }: InitFailedProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=InitFailed.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InitFailed.d.ts","sourceRoot":"","sources":["../../../../../src/components/InitFailed.tsx"],"names":[],"mappings":"AAIA,UAAU,eAAe;IACvB,aAAa,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CACzC;AAED,wBAAgB,UAAU,CAAC,EAAE,aAAa,EAAE,EAAE,eAAe,2CAkB5D"}
@@ -0,0 +1,4 @@
1
+ export declare function MessageInput({ scrollToBottom, }: {
2
+ scrollToBottom: (animated: boolean) => void;
3
+ }): import("react/jsx-runtime").JSX.Element;
4
+ //# sourceMappingURL=MessageInput.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MessageInput.d.ts","sourceRoot":"","sources":["../../../../../src/components/MessageInput.tsx"],"names":[],"mappings":"AAcA,wBAAgB,YAAY,CAAC,EAC3B,cAAc,GACf,EAAE;IACD,cAAc,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;CAC7C,2CAsFA"}
@@ -0,0 +1,5 @@
1
+ import type { AppConversationMessage } from '../types/Conversation';
2
+ export declare function MessageItem({ item }: {
3
+ item: AppConversationMessage;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ //# sourceMappingURL=MessageItem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MessageItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/MessageItem.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAOpE,wBAAgB,WAAW,CAAC,EAAE,IAAI,EAAE,EAAE;IAAE,IAAI,EAAE,sBAAsB,CAAA;CAAE,2CAsErE"}
@@ -0,0 +1,6 @@
1
+ export interface Country {
2
+ name: string;
3
+ code: string;
4
+ }
5
+ export declare const countries: Country[];
6
+ //# sourceMappingURL=countries.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"countries.d.ts","sourceRoot":"","sources":["../../../../../src/constants/countries.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,SAAS,EAAE,OAAO,EAkM9B,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { LocalizationKeys } from '../types/LocalizationKeys';
2
+ import type { LanguageCode } from '../types/Language';
3
+ export declare const LocalizationList: Record<LanguageCode, LocalizationKeys>;
4
+ //# sourceMappingURL=translations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../../src/constants/translations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,YAAY,EAAE,gBAAgB,CAoO1D,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { ConversationMessage, ConversationResponse } from '../../types/Conversation';
2
+ export declare const getFakeConversations: (per_page: number, from: number, to: number, random?: boolean) => ConversationMessage[];
3
+ export declare const getFakeConversationResponse: (per_page: number, from: number, to: number, random?: boolean) => Promise<ConversationResponse>;
4
+ export declare const getFakePaginatedConversationResponse: (page: number, per_page?: number) => Promise<ConversationResponse>;
5
+ //# sourceMappingURL=conversations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conversations.d.ts","sourceRoot":"","sources":["../../../../../../src/data/fake/conversations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AA4elC,eAAO,MAAM,oBAAoB,aACrB,MAAM,QACV,MAAM,MACR,MAAM,WACF,OAAO,KACd,mBAAmB,EAErB,CAAC;AAEF,eAAO,MAAM,2BAA2B,aAC5B,MAAM,QACV,MAAM,MACR,MAAM,WACF,OAAO,KACd,QAAQ,oBAAoB,CAoB9B,CAAC;AAEF,eAAO,MAAM,oCAAoC,SACzC,MAAM,aACF,MAAM,KACf,QAAQ,oBAAoB,CAsB9B,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { CreateCustomerRequest, Customer } from '../../types/Customer';
2
+ export declare function getFakeCustomer(customerData: CreateCustomerRequest): Customer;
3
+ //# sourceMappingURL=customers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customers.d.ts","sourceRoot":"","sources":["../../../../../../src/data/fake/customers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAE5E,wBAAgB,eAAe,CAAC,YAAY,EAAE,qBAAqB,GAAG,QAAQ,CAgB7E"}
@@ -0,0 +1,3 @@
1
+ import type { MessageResponse } from '../../types/MessageResponse';
2
+ export declare function getFakeMessageResponse(content: string): MessageResponse;
3
+ //# sourceMappingURL=messages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../../../../src/data/fake/messages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAEnE,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,GAAG,eAAe,CA6DvE"}
@@ -0,0 +1,3 @@
1
+ import type { LocalizationKeys } from '../types/LocalizationKeys';
2
+ export declare function useLocalize(): (localization: keyof LocalizationKeys) => string;
3
+ //# sourceMappingURL=useLocalize.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocalize.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useLocalize.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE,wBAAgB,WAAW,mBAMR,MAAM,gBAAgB,KAAG,MAAM,CAMjD"}
@@ -0,0 +1,2 @@
1
+ export declare function usePolling(): void;
2
+ //# sourceMappingURL=usePolling.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePolling.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/usePolling.ts"],"names":[],"mappings":"AAMA,wBAAgB,UAAU,SAuCzB"}
@@ -0,0 +1,3 @@
1
+ import { type ThemeColors } from '../types/Theme';
2
+ export declare function useThemeColors(): ThemeColors;
3
+ //# sourceMappingURL=useThemeColors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useThemeColors.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useThemeColors.ts"],"names":[],"mappings":"AACA,OAAO,EAAyB,KAAK,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAEzE,wBAAgB,cAAc,IAAI,WAAW,CAM5C"}
@@ -1,2 +1,5 @@
1
- export declare function multiply(a: number, b: number): number;
1
+ import './__dev__';
2
+ export { registerComnyx } from './register';
3
+ export type { CreateCustomerRequest } from './types/Customer';
4
+ export { Comnyx } from './App';
2
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":"AAEA,wBAAgB,QAAQ,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAErD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAC;AACnB,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC"}
@@ -0,0 +1,5 @@
1
+ export declare function registerComnyx(registerOptions: {
2
+ externalId: string;
3
+ token: string;
4
+ }): void;
5
+ //# sourceMappingURL=register.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"register.d.ts","sourceRoot":"","sources":["../../../../src/register.ts"],"names":[],"mappings":"AAGA,wBAAgB,cAAc,CAAC,eAAe,EAAE;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACf,QAUA"}
@@ -0,0 +1,35 @@
1
+ import type { Customer } from './types/Customer';
2
+ import type { AppConversationMessage } from './types/Conversation';
3
+ import type { LanguageCode } from './types/Language';
4
+ interface AppStoreState {
5
+ initialized: boolean;
6
+ customer: Customer | null;
7
+ data: AppConversationMessage[] | null;
8
+ externalId: string | null;
9
+ language: LanguageCode;
10
+ theme: 'light' | 'dark';
11
+ fake: boolean;
12
+ firstMessage: AppConversationMessage | null;
13
+ setData: (cb: (prevData: AppConversationMessage[] | null) => AppConversationMessage[] | null) => void;
14
+ setFirstMessage: (message: AppConversationMessage | null) => void;
15
+ init: ({ externalId }: {
16
+ externalId: string;
17
+ }) => void;
18
+ initForm: (createCustomerResponse: Customer) => void;
19
+ setLanguage: (language: LanguageCode) => void;
20
+ setTheme: (theme: 'light' | 'dark') => void;
21
+ setFake: (fake: boolean) => void;
22
+ }
23
+ export declare const useAppStore: import("zustand/traditional").UseBoundStoreWithEqualityFn<Omit<import("zustand").StoreApi<AppStoreState>, "persist"> & {
24
+ persist: {
25
+ setOptions: (options: Partial<import("zustand/middleware").PersistOptions<AppStoreState, unknown>>) => void;
26
+ clearStorage: () => void;
27
+ rehydrate: () => void | Promise<void>;
28
+ hasHydrated: () => boolean;
29
+ onHydrate: (fn: (state: AppStoreState) => void) => () => void;
30
+ onFinishHydration: (fn: (state: AppStoreState) => void) => () => void;
31
+ getOptions: () => Partial<import("zustand/middleware").PersistOptions<AppStoreState, unknown>>;
32
+ };
33
+ }>;
34
+ export {};
35
+ //# sourceMappingURL=store.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../../src/store.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD,UAAU,aAAa;IACrB,WAAW,EAAE,OAAO,CAAC;IACrB,QAAQ,EAAE,QAAQ,GAAG,IAAI,CAAC;IAC1B,IAAI,EAAE,sBAAsB,EAAE,GAAG,IAAI,CAAC;IACtC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC;IACxB,IAAI,EAAE,OAAO,CAAC;IACd,YAAY,EAAE,sBAAsB,GAAG,IAAI,CAAC;IAC5C,OAAO,EAAE,CACP,EAAE,EAAE,CACF,QAAQ,EAAE,sBAAsB,EAAE,GAAG,IAAI,KACtC,sBAAsB,EAAE,GAAG,IAAI,KACjC,IAAI,CAAC;IACV,eAAe,EAAE,CAAC,OAAO,EAAE,sBAAsB,GAAG,IAAI,KAAK,IAAI,CAAC;IAClE,IAAI,EAAE,CAAC,EAAE,UAAU,EAAE,EAAE;QAAE,UAAU,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IACvD,QAAQ,EAAE,CAAC,sBAAsB,EAAE,QAAQ,KAAK,IAAI,CAAC;IACrD,WAAW,EAAE,CAAC,QAAQ,EAAE,YAAY,KAAK,IAAI,CAAC;IAC9C,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,KAAK,IAAI,CAAC;IAC5C,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CAClC;AAmCD,eAAO,MAAM,WAAW;;;;;;;;;;EAoBvB,CAAC"}
@@ -0,0 +1,4 @@
1
+ export interface ApiOptions {
2
+ fake: boolean;
3
+ }
4
+ //# sourceMappingURL=ApiOptions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiOptions.d.ts","sourceRoot":"","sources":["../../../../../src/types/ApiOptions.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IAEzB,IAAI,EAAE,OAAO,CAAC;CACf"}
@@ -0,0 +1,26 @@
1
+ export interface ConversationMessage {
2
+ id: number;
3
+ content: string;
4
+ created_at: string;
5
+ user: any | null;
6
+ }
7
+ export interface AppConversationMessage extends Omit<ConversationMessage, 'id' | 'created_at'> {
8
+ id: number | null;
9
+ approved?: boolean;
10
+ created_at: Date;
11
+ }
12
+ export interface ConversationPage {
13
+ current_page: number;
14
+ data: ConversationMessage[];
15
+ first_page_url: string;
16
+ from: number;
17
+ next_page_url: string | null;
18
+ path: string;
19
+ per_page: number;
20
+ prev_page_url: string | null;
21
+ to: number;
22
+ }
23
+ export interface ConversationResponse {
24
+ page: ConversationPage;
25
+ }
26
+ //# sourceMappingURL=Conversation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Conversation.d.ts","sourceRoot":"","sources":["../../../../../src/types/Conversation.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,GAAG,GAAG,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,sBACf,SAAQ,IAAI,CAAC,mBAAmB,EAAE,IAAI,GAAG,YAAY,CAAC;IACtD,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,IAAI,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,gBAAgB,CAAC;CACxB"}
@@ -0,0 +1,30 @@
1
+ export interface CustomParameter {
2
+ name: string;
3
+ value: string;
4
+ }
5
+ export interface CreateCustomerRequest {
6
+ name: string;
7
+ country: string;
8
+ language: string;
9
+ externalId: string;
10
+ email: string;
11
+ phone: string;
12
+ ipAddress: string;
13
+ customParameters?: CustomParameter[];
14
+ }
15
+ export interface Customer {
16
+ id: number;
17
+ project_id: number;
18
+ external_id: string;
19
+ name: string;
20
+ country: string;
21
+ language: string;
22
+ email: string;
23
+ phone: string;
24
+ ip_address: string;
25
+ custom_parameters: string;
26
+ user_code: string;
27
+ updated_at: string;
28
+ created_at: string;
29
+ }
30
+ //# sourceMappingURL=Customer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Customer.d.ts","sourceRoot":"","sources":["../../../../../src/types/Customer.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;CACtC;AAED,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,2 @@
1
+ export type LanguageCode = 'en' | 'tr' | 'es' | 'fr' | 'de' | 'it' | 'pt' | 'ru' | 'ja' | 'zh';
2
+ //# sourceMappingURL=Language.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Language.d.ts","sourceRoot":"","sources":["../../../../../src/types/Language.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GACpB,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,CAAC"}
@@ -0,0 +1,22 @@
1
+ export type LocalizationKeys = {
2
+ 'customer.form.title': string;
3
+ 'customer.form.email': string;
4
+ 'customer.form.phone': string;
5
+ 'customer.form.country': string;
6
+ 'customer.form.submit': string;
7
+ 'customer.form.error': string;
8
+ 'customer.form.instructions': string;
9
+ 'customer.form.error.country': string;
10
+ 'customer.form.error.email': string;
11
+ 'customer.form.error.phone': string;
12
+ 'customer.form.placeholder.name': string;
13
+ 'customer.form.placeholder.country': string;
14
+ 'customer.form.placeholder.email': string;
15
+ 'customer.form.placeholder.phone': string;
16
+ 'chat.messageInput.placeholder': string;
17
+ 'app.initialization.required': string;
18
+ 'chat.load.error': string;
19
+ 'chat.init.error': string;
20
+ 'chat.empty': string;
21
+ };
22
+ //# sourceMappingURL=LocalizationKeys.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LocalizationKeys.d.ts","sourceRoot":"","sources":["../../../../../src/types/LocalizationKeys.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG;IAC7B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,uBAAuB,EAAE,MAAM,CAAC;IAChC,sBAAsB,EAAE,MAAM,CAAC;IAC/B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,4BAA4B,EAAE,MAAM,CAAC;IACrC,6BAA6B,EAAE,MAAM,CAAC;IACtC,2BAA2B,EAAE,MAAM,CAAC;IACpC,2BAA2B,EAAE,MAAM,CAAC;IACpC,gCAAgC,EAAE,MAAM,CAAC;IACzC,mCAAmC,EAAE,MAAM,CAAC;IAC5C,iCAAiC,EAAE,MAAM,CAAC;IAC1C,iCAAiC,EAAE,MAAM,CAAC;IAC1C,+BAA+B,EAAE,MAAM,CAAC;IACxC,6BAA6B,EAAE,MAAM,CAAC;IACtC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC"}