nucleus-core-ts 0.8.6 → 0.8.8

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 (209) hide show
  1. package/dist/client.js +1 -1
  2. package/dist/dist/index.d.ts +475 -12
  3. package/dist/fe/components/AbstractAnimatedBackground/index.js +437 -0
  4. package/dist/fe/components/AuthorizationPage/components/AuthorizationPage.js +841 -0
  5. package/dist/fe/components/AuthorizationPage/components/ClaimList.js +100 -0
  6. package/dist/fe/components/AuthorizationPage/components/RoleClaimEditor.js +232 -0
  7. package/dist/fe/components/AuthorizationPage/components/RoleList.js +115 -0
  8. package/dist/fe/components/AuthorizationPage/index.js +6 -0
  9. package/dist/fe/components/AuthorizationPage/store/index.js +117 -0
  10. package/dist/fe/components/AuthorizationPage/theme/index.js +137 -0
  11. package/dist/fe/components/AuthorizationPage/types/index.js +1 -0
  12. package/dist/fe/components/Button/components/Button.js +158 -0
  13. package/dist/fe/components/Button/components/ButtonSpinner.js +52 -0
  14. package/dist/fe/components/Button/index.js +3 -0
  15. package/dist/fe/components/Button/theme/index.js +186 -0
  16. package/dist/fe/components/Button/types/index.js +1 -0
  17. package/dist/fe/components/Button/utils/cn.js +5 -0
  18. package/dist/fe/components/Captcha/components/Captcha.js +311 -0
  19. package/dist/fe/components/Captcha/index.js +2 -0
  20. package/dist/fe/components/Captcha/theme.js +52 -0
  21. package/dist/fe/components/Captcha/types.js +1 -0
  22. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordForm.js +242 -0
  23. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordHeader.js +39 -0
  24. package/dist/fe/components/ChangePasswordPage/components/ChangePasswordPage.js +60 -0
  25. package/dist/fe/components/ChangePasswordPage/index.js +5 -0
  26. package/dist/fe/components/ChangePasswordPage/store/index.js +44 -0
  27. package/dist/fe/components/ChangePasswordPage/theme/index.js +87 -0
  28. package/dist/fe/components/ChangePasswordPage/types/index.js +1 -0
  29. package/dist/fe/components/Checkbox/components/Checkbox.js +115 -0
  30. package/dist/fe/components/Checkbox/components/CheckboxIcon.js +119 -0
  31. package/dist/fe/components/Checkbox/components/SwitchTrack.js +178 -0
  32. package/dist/fe/components/Checkbox/index.js +4 -0
  33. package/dist/fe/components/Checkbox/theme/index.js +221 -0
  34. package/dist/fe/components/Checkbox/types/index.js +1 -0
  35. package/dist/fe/components/Checkbox/utils/cn.js +5 -0
  36. package/dist/fe/components/DataTable/DataTable.js +225 -0
  37. package/dist/fe/components/DataTable/components/ActionCell.js +26 -0
  38. package/dist/fe/components/DataTable/components/DataCell.js +76 -0
  39. package/dist/fe/components/DataTable/components/EditableCell.js +221 -0
  40. package/dist/fe/components/DataTable/components/EmptyState.js +29 -0
  41. package/dist/fe/components/DataTable/components/HeaderCell.js +64 -0
  42. package/dist/fe/components/DataTable/components/InfiniteScrollTrigger.js +66 -0
  43. package/dist/fe/components/DataTable/components/LoadingSpinner.js +19 -0
  44. package/dist/fe/components/DataTable/components/ResizeHandle.js +41 -0
  45. package/dist/fe/components/DataTable/components/SelectionCell.js +105 -0
  46. package/dist/fe/components/DataTable/components/SkeletonRow.js +56 -0
  47. package/dist/fe/components/DataTable/components/SkeletonTable.js +83 -0
  48. package/dist/fe/components/DataTable/components/SortIcon.js +39 -0
  49. package/dist/fe/components/DataTable/components/TableHeader.js +49 -0
  50. package/dist/fe/components/DataTable/components/TableRow.js +118 -0
  51. package/dist/fe/components/DataTable/components/index.js +14 -0
  52. package/dist/fe/components/DataTable/hooks/index.js +2 -0
  53. package/dist/fe/components/DataTable/hooks/useAutoFitColumn.js +23 -0
  54. package/dist/fe/components/DataTable/hooks/useResizeColumn.js +122 -0
  55. package/dist/fe/components/DataTable/index.js +3 -0
  56. package/dist/fe/components/DataTable/store/index.js +97 -0
  57. package/dist/fe/components/DataTable/theme/index.js +144 -0
  58. package/dist/fe/components/DataTable/types/index.js +1 -0
  59. package/dist/fe/components/DataTable/utils/cn.js +5 -0
  60. package/dist/fe/components/DatePicker/components/CalendarGrid.js +95 -0
  61. package/dist/fe/components/DatePicker/components/CalendarHeader.js +152 -0
  62. package/dist/fe/components/DatePicker/components/DatePicker.js +381 -0
  63. package/dist/fe/components/DatePicker/components/MonthYearSelector.js +93 -0
  64. package/dist/fe/components/DatePicker/index.js +7 -0
  65. package/dist/fe/components/DatePicker/locales/index.js +1113 -0
  66. package/dist/fe/components/DatePicker/theme/index.js +315 -0
  67. package/dist/fe/components/DatePicker/types/index.js +1 -0
  68. package/dist/fe/components/DatePicker/utils/cn.js +5 -0
  69. package/dist/fe/components/DatePicker/utils/date.js +132 -0
  70. package/dist/fe/components/DevicesPage/components/DeviceCard.js +251 -0
  71. package/dist/fe/components/DevicesPage/components/DevicesHeader.js +42 -0
  72. package/dist/fe/components/DevicesPage/components/DevicesPage.js +450 -0
  73. package/dist/fe/components/DevicesPage/index.js +5 -0
  74. package/dist/fe/components/DevicesPage/store/index.js +55 -0
  75. package/dist/fe/components/DevicesPage/theme/index.js +131 -0
  76. package/dist/fe/components/DevicesPage/types/index.js +1 -0
  77. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordForm.js +214 -0
  78. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordHeader.js +42 -0
  79. package/dist/fe/components/ForgotPasswordPage/components/ForgotPasswordPage.js +59 -0
  80. package/dist/fe/components/ForgotPasswordPage/index.js +5 -0
  81. package/dist/fe/components/ForgotPasswordPage/store/index.js +28 -0
  82. package/dist/fe/components/ForgotPasswordPage/theme/index.js +87 -0
  83. package/dist/fe/components/ForgotPasswordPage/types/index.js +1 -0
  84. package/dist/fe/components/FormBuilder/components/FormBuilder.js +156 -0
  85. package/dist/fe/components/FormBuilder/components/FormField.js +218 -0
  86. package/dist/fe/components/FormBuilder/hooks/useFormBuilder.js +152 -0
  87. package/dist/fe/components/FormBuilder/index.js +4 -0
  88. package/dist/fe/components/FormBuilder/theme/index.js +134 -0
  89. package/dist/fe/components/FormBuilder/types/index.js +1 -0
  90. package/dist/fe/components/FormBuilder/utils/cn.js +5 -0
  91. package/dist/fe/components/FormBuilder/utils/fieldMapping.js +216 -0
  92. package/dist/fe/components/FormBuilder/utils/validation.js +78 -0
  93. package/dist/fe/components/LoginPage/components/LoginForm.js +214 -0
  94. package/dist/fe/components/LoginPage/components/LoginHeader.js +24 -0
  95. package/dist/fe/components/LoginPage/components/LoginPage.js +138 -0
  96. package/dist/fe/components/LoginPage/index.js +5 -0
  97. package/dist/fe/components/LoginPage/store/index.js +59 -0
  98. package/dist/fe/components/LoginPage/theme/index.js +98 -0
  99. package/dist/fe/components/LoginPage/types/index.js +1 -0
  100. package/dist/fe/components/MagicLinkVerifyPage/components/MagicLinkVerifyPage.js +200 -0
  101. package/dist/fe/components/MagicLinkVerifyPage/index.js +3 -0
  102. package/dist/fe/components/MagicLinkVerifyPage/store.js +20 -0
  103. package/dist/fe/components/MagicLinkVerifyPage/theme.js +36 -0
  104. package/dist/fe/components/MagicLinkVerifyPage/types.js +1 -0
  105. package/dist/fe/components/NucleusEntityShowcase.js +1409 -0
  106. package/dist/fe/components/NucleusTextInput/components/FloatingLabel.js +56 -0
  107. package/dist/fe/components/NucleusTextInput/components/InputIcons.js +258 -0
  108. package/dist/fe/components/NucleusTextInput/components/NucleusTextInput.js +321 -0
  109. package/dist/fe/components/NucleusTextInput/components/PasswordStrengthIndicator.js +104 -0
  110. package/dist/fe/components/NucleusTextInput/components/TypewriterText.js +56 -0
  111. package/dist/fe/components/NucleusTextInput/index.js +7 -0
  112. package/dist/fe/components/NucleusTextInput/theme/index.js +121 -0
  113. package/dist/fe/components/NucleusTextInput/types/index.js +1 -0
  114. package/dist/fe/components/NucleusTextInput/utils/cn.js +5 -0
  115. package/dist/fe/components/NucleusTextInput/utils/format.js +62 -0
  116. package/dist/fe/components/NucleusTextInput/utils/validation.js +191 -0
  117. package/dist/fe/components/ProfilePage/components/AddressCard.js +196 -0
  118. package/dist/fe/components/ProfilePage/components/PhoneCard.js +206 -0
  119. package/dist/fe/components/ProfilePage/components/ProfileHeader.js +150 -0
  120. package/dist/fe/components/ProfilePage/components/ProfilePage.js +1336 -0
  121. package/dist/fe/components/ProfilePage/index.js +6 -0
  122. package/dist/fe/components/ProfilePage/store/index.js +115 -0
  123. package/dist/fe/components/ProfilePage/theme/index.js +168 -0
  124. package/dist/fe/components/ProfilePage/types/index.js +1 -0
  125. package/dist/fe/components/RangePicker/components/RangePicker.js +338 -0
  126. package/dist/fe/components/RangePicker/components/RangeThumb.js +68 -0
  127. package/dist/fe/components/RangePicker/components/RangeTooltip.js +45 -0
  128. package/dist/fe/components/RangePicker/components/RangeTrack.js +32 -0
  129. package/dist/fe/components/RangePicker/index.js +5 -0
  130. package/dist/fe/components/RangePicker/theme/index.js +88 -0
  131. package/dist/fe/components/RangePicker/types/index.js +1 -0
  132. package/dist/fe/components/RangePicker/utils/cn.js +3 -0
  133. package/dist/fe/components/RegisterPage/components/PasswordStrengthIndicator.js +107 -0
  134. package/dist/fe/components/RegisterPage/components/RegisterForm.js +322 -0
  135. package/dist/fe/components/RegisterPage/components/RegisterHeader.js +23 -0
  136. package/dist/fe/components/RegisterPage/components/RegisterPage.js +85 -0
  137. package/dist/fe/components/RegisterPage/index.js +6 -0
  138. package/dist/fe/components/RegisterPage/store/index.js +106 -0
  139. package/dist/fe/components/RegisterPage/theme/index.js +128 -0
  140. package/dist/fe/components/RegisterPage/types/index.js +1 -0
  141. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordForm.js +347 -0
  142. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordHeader.js +42 -0
  143. package/dist/fe/components/ResetPasswordPage/components/ResetPasswordPage.js +61 -0
  144. package/dist/fe/components/ResetPasswordPage/index.js +5 -0
  145. package/dist/fe/components/ResetPasswordPage/store/index.js +36 -0
  146. package/dist/fe/components/ResetPasswordPage/theme/index.js +99 -0
  147. package/dist/fe/components/ResetPasswordPage/types/index.js +1 -0
  148. package/dist/fe/components/SearchBox/components/SearchBox.js +271 -0
  149. package/dist/fe/components/SearchBox/components/SearchBoxDropdown.js +87 -0
  150. package/dist/fe/components/SearchBox/index.js +5 -0
  151. package/dist/fe/components/SearchBox/theme/index.js +184 -0
  152. package/dist/fe/components/SearchBox/types/index.js +1 -0
  153. package/dist/fe/components/SearchBox/utils/cn.js +5 -0
  154. package/dist/fe/components/SearchBox/utils/debounce.js +22 -0
  155. package/dist/fe/components/SearchBox/utils/sanitize.js +48 -0
  156. package/dist/fe/components/SelectBox/components/SelectBox.js +364 -0
  157. package/dist/fe/components/SelectBox/components/SelectDropdown.js +92 -0
  158. package/dist/fe/components/SelectBox/components/SelectOptionItem.js +43 -0
  159. package/dist/fe/components/SelectBox/components/SelectTrigger.js +22 -0
  160. package/dist/fe/components/SelectBox/index.js +5 -0
  161. package/dist/fe/components/SelectBox/theme/index.js +98 -0
  162. package/dist/fe/components/SelectBox/types/index.js +1 -0
  163. package/dist/fe/components/SelectBox/utils/cn.js +3 -0
  164. package/dist/fe/components/SetPasswordPage/components/PasswordStrengthIndicator.js +107 -0
  165. package/dist/fe/components/SetPasswordPage/components/SetPasswordForm.js +142 -0
  166. package/dist/fe/components/SetPasswordPage/components/SetPasswordHeader.js +23 -0
  167. package/dist/fe/components/SetPasswordPage/components/SetPasswordPage.js +263 -0
  168. package/dist/fe/components/SetPasswordPage/index.js +7 -0
  169. package/dist/fe/components/SetPasswordPage/store/index.js +79 -0
  170. package/dist/fe/components/SetPasswordPage/theme/index.js +98 -0
  171. package/dist/fe/components/SetPasswordPage/types/index.js +12 -0
  172. package/dist/fe/components/UsersPage/components/InviteUserModal.js +262 -0
  173. package/dist/fe/components/UsersPage/components/Pagination.js +147 -0
  174. package/dist/fe/components/UsersPage/components/RoleAssignmentModal.js +186 -0
  175. package/dist/fe/components/UsersPage/components/StatsCards.js +124 -0
  176. package/dist/fe/components/UsersPage/components/UserDetailDrawer.js +444 -0
  177. package/dist/fe/components/UsersPage/components/UserFilters.js +142 -0
  178. package/dist/fe/components/UsersPage/components/UserListItem.js +125 -0
  179. package/dist/fe/components/UsersPage/components/UserListSkeleton.js +40 -0
  180. package/dist/fe/components/UsersPage/components/UsersPage.js +556 -0
  181. package/dist/fe/components/UsersPage/index.js +10 -0
  182. package/dist/fe/components/UsersPage/store/index.js +151 -0
  183. package/dist/fe/components/UsersPage/theme/index.js +231 -0
  184. package/dist/fe/components/UsersPage/types/index.js +1 -0
  185. package/dist/fe/components/VerifyEmailPage/components/VerifyEmailPage.js +290 -0
  186. package/dist/fe/components/VerifyEmailPage/index.js +3 -0
  187. package/dist/fe/components/VerifyEmailPage/store/index.js +45 -0
  188. package/dist/fe/components/VerifyEmailPage/theme/index.js +52 -0
  189. package/dist/fe/components/VerifyEmailPage/types/index.js +1 -0
  190. package/dist/fe/hooks/useNucleusEntity.js +247 -0
  191. package/dist/fe/index.js +28 -110
  192. package/dist/fe/types/index.js +1 -0
  193. package/dist/fe/utils/cn.js +5 -0
  194. package/dist/fe/utils/columnUtils.js +189 -0
  195. package/dist/fe/utils/endpointKeys.js +44 -0
  196. package/dist/index.js +1 -1
  197. package/dist/nucleus.config.d.ts +3 -0
  198. package/dist/src/Client/Proxy/httpProxy.js +1 -0
  199. package/dist/src/Client/Proxy/index.js +1 -1
  200. package/dist/src/Client/Proxy/server.js +1 -0
  201. package/dist/src/Client/Proxy/types.js +1 -0
  202. package/dist/src/Client/Proxy/utils.js +1 -0
  203. package/dist/src/Client/Proxy/wsProxy.js +1 -0
  204. package/package.json +1 -1
  205. package/scripts/build.ts +78 -8
  206. package/dist/dist/index-0yyw12k6.d.ts +0 -8
  207. package/dist/dist/index-tv67j5qd.d.ts +0 -488
  208. package/dist/index-0yyw12k6.js +0 -1
  209. package/dist/index-tv67j5qd.js +0 -1
@@ -1,488 +0,0 @@
1
- declare function le(e: any, n: any): () => {};
2
- declare namespace D {
3
- namespace login {
4
- let key: string;
5
- let method: string;
6
- let defaultRoute: string;
7
- let defaultIsPublic: boolean;
8
- let _payload: undefined;
9
- let _success: undefined;
10
- let _error: undefined;
11
- }
12
- namespace register {
13
- let key_1: string;
14
- export { key_1 as key };
15
- let method_1: string;
16
- export { method_1 as method };
17
- let defaultRoute_1: string;
18
- export { defaultRoute_1 as defaultRoute };
19
- let defaultIsPublic_1: boolean;
20
- export { defaultIsPublic_1 as defaultIsPublic };
21
- let _payload_1: undefined;
22
- export { _payload_1 as _payload };
23
- let _success_1: undefined;
24
- export { _success_1 as _success };
25
- let _error_1: undefined;
26
- export { _error_1 as _error };
27
- }
28
- namespace logout {
29
- let key_2: string;
30
- export { key_2 as key };
31
- let method_2: string;
32
- export { method_2 as method };
33
- let defaultRoute_2: string;
34
- export { defaultRoute_2 as defaultRoute };
35
- let defaultIsPublic_2: boolean;
36
- export { defaultIsPublic_2 as defaultIsPublic };
37
- let _payload_2: undefined;
38
- export { _payload_2 as _payload };
39
- let _success_2: undefined;
40
- export { _success_2 as _success };
41
- let _error_2: undefined;
42
- export { _error_2 as _error };
43
- }
44
- namespace refresh {
45
- let key_3: string;
46
- export { key_3 as key };
47
- let method_3: string;
48
- export { method_3 as method };
49
- let defaultRoute_3: string;
50
- export { defaultRoute_3 as defaultRoute };
51
- let defaultIsPublic_3: boolean;
52
- export { defaultIsPublic_3 as defaultIsPublic };
53
- let _payload_3: undefined;
54
- export { _payload_3 as _payload };
55
- let _success_3: undefined;
56
- export { _success_3 as _success };
57
- let _error_3: undefined;
58
- export { _error_3 as _error };
59
- }
60
- namespace me {
61
- let key_4: string;
62
- export { key_4 as key };
63
- let method_4: string;
64
- export { method_4 as method };
65
- let defaultRoute_4: string;
66
- export { defaultRoute_4 as defaultRoute };
67
- let defaultIsPublic_4: boolean;
68
- export { defaultIsPublic_4 as defaultIsPublic };
69
- let _payload_4: undefined;
70
- export { _payload_4 as _payload };
71
- let _success_4: undefined;
72
- export { _success_4 as _success };
73
- let _error_4: undefined;
74
- export { _error_4 as _error };
75
- }
76
- namespace passwordChange {
77
- let key_5: string;
78
- export { key_5 as key };
79
- let method_5: string;
80
- export { method_5 as method };
81
- let defaultRoute_5: string;
82
- export { defaultRoute_5 as defaultRoute };
83
- let defaultIsPublic_5: boolean;
84
- export { defaultIsPublic_5 as defaultIsPublic };
85
- let _payload_5: undefined;
86
- export { _payload_5 as _payload };
87
- let _success_5: undefined;
88
- export { _success_5 as _success };
89
- let _error_5: undefined;
90
- export { _error_5 as _error };
91
- }
92
- namespace passwordSet {
93
- let key_6: string;
94
- export { key_6 as key };
95
- let method_6: string;
96
- export { method_6 as method };
97
- let defaultRoute_6: string;
98
- export { defaultRoute_6 as defaultRoute };
99
- let defaultIsPublic_6: boolean;
100
- export { defaultIsPublic_6 as defaultIsPublic };
101
- let _payload_6: undefined;
102
- export { _payload_6 as _payload };
103
- let _success_6: undefined;
104
- export { _success_6 as _success };
105
- let _error_6: undefined;
106
- export { _error_6 as _error };
107
- }
108
- namespace passwordReset {
109
- let key_7: string;
110
- export { key_7 as key };
111
- let method_7: string;
112
- export { method_7 as method };
113
- let defaultRoute_7: string;
114
- export { defaultRoute_7 as defaultRoute };
115
- let defaultIsPublic_7: boolean;
116
- export { defaultIsPublic_7 as defaultIsPublic };
117
- export let subEndpoints: {
118
- key: string;
119
- method: string;
120
- suffix: string;
121
- _payload: undefined;
122
- _success: undefined;
123
- _error: undefined;
124
- }[];
125
- }
126
- namespace sessions {
127
- let key_8: string;
128
- export { key_8 as key };
129
- let method_8: string;
130
- export { method_8 as method };
131
- let defaultRoute_8: string;
132
- export { defaultRoute_8 as defaultRoute };
133
- let defaultIsPublic_8: boolean;
134
- export { defaultIsPublic_8 as defaultIsPublic };
135
- let subEndpoints_1: {
136
- key: string;
137
- method: string;
138
- suffix: string;
139
- _payload: undefined;
140
- _success: undefined;
141
- _error: undefined;
142
- }[];
143
- export { subEndpoints_1 as subEndpoints };
144
- }
145
- namespace magicLink {
146
- let key_9: string;
147
- export { key_9 as key };
148
- let method_9: string;
149
- export { method_9 as method };
150
- let defaultRoute_9: string;
151
- export { defaultRoute_9 as defaultRoute };
152
- let defaultIsPublic_9: boolean;
153
- export { defaultIsPublic_9 as defaultIsPublic };
154
- let subEndpoints_2: ({
155
- key: string;
156
- method: string;
157
- suffix: string;
158
- _payload: undefined;
159
- _success: undefined;
160
- _error: undefined;
161
- routeKey?: undefined;
162
- } | {
163
- key: string;
164
- method: string;
165
- suffix: string;
166
- routeKey: string;
167
- _payload: undefined;
168
- _success: undefined;
169
- _error: undefined;
170
- })[];
171
- export { subEndpoints_2 as subEndpoints };
172
- }
173
- namespace invite {
174
- let key_10: string;
175
- export { key_10 as key };
176
- let method_10: string;
177
- export { method_10 as method };
178
- let defaultRoute_10: string;
179
- export { defaultRoute_10 as defaultRoute };
180
- let defaultIsPublic_10: boolean;
181
- export { defaultIsPublic_10 as defaultIsPublic };
182
- let _payload_7: undefined;
183
- export { _payload_7 as _payload };
184
- let _success_7: undefined;
185
- export { _success_7 as _success };
186
- let _error_7: undefined;
187
- export { _error_7 as _error };
188
- }
189
- namespace emailVerification {
190
- let key_11: string;
191
- export { key_11 as key };
192
- let method_11: string;
193
- export { method_11 as method };
194
- let defaultRoute_11: string;
195
- export { defaultRoute_11 as defaultRoute };
196
- let defaultIsPublic_11: boolean;
197
- export { defaultIsPublic_11 as defaultIsPublic };
198
- let subEndpoints_3: ({
199
- key: string;
200
- method: string;
201
- suffix: string;
202
- _payload: undefined;
203
- _success: undefined;
204
- _error: undefined;
205
- routeKey?: undefined;
206
- defaultRoute?: undefined;
207
- } | {
208
- key: string;
209
- method: string;
210
- suffix: string;
211
- routeKey: string;
212
- defaultRoute: string;
213
- _payload: undefined;
214
- _success: undefined;
215
- _error: undefined;
216
- })[];
217
- export { subEndpoints_3 as subEndpoints };
218
- }
219
- namespace captcha {
220
- let key_12: string;
221
- export { key_12 as key };
222
- let method_12: string;
223
- export { method_12 as method };
224
- let defaultRoute_12: string;
225
- export { defaultRoute_12 as defaultRoute };
226
- let defaultIsPublic_12: boolean;
227
- export { defaultIsPublic_12 as defaultIsPublic };
228
- let subEndpoints_4: {
229
- key: string;
230
- method: string;
231
- suffix: string;
232
- _payload: undefined;
233
- _success: undefined;
234
- _error: undefined;
235
- }[];
236
- export { subEndpoints_4 as subEndpoints };
237
- }
238
- }
239
- declare function j(e: any): {};
240
- declare function W(e: any): {};
241
- declare function Y(): {};
242
- declare function Ee(e: any, n: any): any;
243
- declare var F: () => any;
244
- declare class ye {
245
- constructor(e: any);
246
- name: string;
247
- db: any;
248
- table: any;
249
- enabled: any;
250
- setDb(e: any): void;
251
- setTable(e: any): void;
252
- setEnabled(e: any): void;
253
- write(e: any): Promise<void>;
254
- }
255
- declare var te: () => any;
256
- declare class g {
257
- static instance: null;
258
- static getInstance(e: any): null;
259
- static resetInstance(): void;
260
- constructor(e: {} | undefined, n: {} | undefined, t: any);
261
- config: any;
262
- transports: M[];
263
- auditTransports: G[];
264
- context: {};
265
- correlationId: any;
266
- child(e: any, n: any): g;
267
- withCorrelationId(e: any): g;
268
- addTransport(e: any): void;
269
- addAuditTransport(e: any): void;
270
- setLevel(e: any): void;
271
- setAuditEnabled(e: any): void;
272
- isAuditEnabled(): any;
273
- shouldLog(e: any): boolean;
274
- createEntry(e: any, n: any, t: any, s: any, i: any): {
275
- timestamp: string;
276
- level: any;
277
- message: any;
278
- service: any;
279
- correlationId: any;
280
- };
281
- log(e: any, n: any, t: any, s: any, i: any): void;
282
- debug(e: any, n: any): void;
283
- info(e: any, n: any): void;
284
- warn(e: any, n: any): void;
285
- error(e: any, n: any, t: any): void;
286
- fatal(e: any, n: any, t: any): void;
287
- time(e: any): () => void;
288
- timeAsync(e: any, n: any, t: any): Promise<any>;
289
- request(e: any): void;
290
- db(e: any): void;
291
- flush(): Promise<void>;
292
- audit(e: any): Promise<void>;
293
- auditOnly(e: any): void;
294
- trace(e: any): Promise<void>;
295
- traceSync(e: any): void;
296
- }
297
- declare var se: () => any;
298
- declare class A {
299
- constructor(e?: {});
300
- config: {
301
- timeout: number;
302
- retries: number;
303
- retryDelay: number;
304
- debug: boolean;
305
- };
306
- logger: g;
307
- buildUrl(e: any): any;
308
- buildHeaders(e: any): Headers;
309
- parseResponseHeaders(e: any): {
310
- "set-cookie": any;
311
- };
312
- executeWithTimeout(e: any, n: any, t: any): Promise<any>;
313
- fetch(e: any): Promise<{
314
- isSuccess: any;
315
- response: any;
316
- errors: any;
317
- code: any;
318
- headers: {
319
- "set-cookie": any;
320
- };
321
- durationMs: number;
322
- requestId: `${string}-${string}-${string}-${string}-${string}`;
323
- createdAt: Date;
324
- } | {
325
- isSuccess: boolean;
326
- response: undefined;
327
- errors: {
328
- message: string;
329
- };
330
- code: null;
331
- headers: {};
332
- durationMs: number;
333
- requestId: `${string}-${string}-${string}-${string}-${string}`;
334
- createdAt: Date;
335
- }>;
336
- get(e: any, n: any): Promise<{
337
- isSuccess: any;
338
- response: any;
339
- errors: any;
340
- code: any;
341
- headers: {
342
- "set-cookie": any;
343
- };
344
- durationMs: number;
345
- requestId: `${string}-${string}-${string}-${string}-${string}`;
346
- createdAt: Date;
347
- } | {
348
- isSuccess: boolean;
349
- response: undefined;
350
- errors: {
351
- message: string;
352
- };
353
- code: null;
354
- headers: {};
355
- durationMs: number;
356
- requestId: `${string}-${string}-${string}-${string}-${string}`;
357
- createdAt: Date;
358
- }>;
359
- post(e: any, n: any, t: any): Promise<{
360
- isSuccess: any;
361
- response: any;
362
- errors: any;
363
- code: any;
364
- headers: {
365
- "set-cookie": any;
366
- };
367
- durationMs: number;
368
- requestId: `${string}-${string}-${string}-${string}-${string}`;
369
- createdAt: Date;
370
- } | {
371
- isSuccess: boolean;
372
- response: undefined;
373
- errors: {
374
- message: string;
375
- };
376
- code: null;
377
- headers: {};
378
- durationMs: number;
379
- requestId: `${string}-${string}-${string}-${string}-${string}`;
380
- createdAt: Date;
381
- }>;
382
- put(e: any, n: any, t: any): Promise<{
383
- isSuccess: any;
384
- response: any;
385
- errors: any;
386
- code: any;
387
- headers: {
388
- "set-cookie": any;
389
- };
390
- durationMs: number;
391
- requestId: `${string}-${string}-${string}-${string}-${string}`;
392
- createdAt: Date;
393
- } | {
394
- isSuccess: boolean;
395
- response: undefined;
396
- errors: {
397
- message: string;
398
- };
399
- code: null;
400
- headers: {};
401
- durationMs: number;
402
- requestId: `${string}-${string}-${string}-${string}-${string}`;
403
- createdAt: Date;
404
- }>;
405
- patch(e: any, n: any, t: any): Promise<{
406
- isSuccess: any;
407
- response: any;
408
- errors: any;
409
- code: any;
410
- headers: {
411
- "set-cookie": any;
412
- };
413
- durationMs: number;
414
- requestId: `${string}-${string}-${string}-${string}-${string}`;
415
- createdAt: Date;
416
- } | {
417
- isSuccess: boolean;
418
- response: undefined;
419
- errors: {
420
- message: string;
421
- };
422
- code: null;
423
- headers: {};
424
- durationMs: number;
425
- requestId: `${string}-${string}-${string}-${string}-${string}`;
426
- createdAt: Date;
427
- }>;
428
- delete(e: any, n: any): Promise<{
429
- isSuccess: any;
430
- response: any;
431
- errors: any;
432
- code: any;
433
- headers: {
434
- "set-cookie": any;
435
- };
436
- durationMs: number;
437
- requestId: `${string}-${string}-${string}-${string}-${string}`;
438
- createdAt: Date;
439
- } | {
440
- isSuccess: boolean;
441
- response: undefined;
442
- errors: {
443
- message: string;
444
- };
445
- code: null;
446
- headers: {};
447
- durationMs: number;
448
- requestId: `${string}-${string}-${string}-${string}-${string}`;
449
- createdAt: Date;
450
- }>;
451
- }
452
- declare var Ye: A;
453
- declare function Pe(e: any, n: any, t: any, s: any): (d: any, r: any) => Promise<{
454
- isSuccess: boolean;
455
- errors: {
456
- message: string;
457
- };
458
- code: number;
459
- data?: undefined;
460
- message?: undefined;
461
- } | {
462
- isSuccess: any;
463
- data: any;
464
- errors: any;
465
- code: any;
466
- message: any;
467
- }>;
468
- declare class M {
469
- constructor(e?: {});
470
- name: string;
471
- colorize: any;
472
- prettyPrint: any;
473
- log(e: any): void;
474
- logJson(e: any): void;
475
- logPretty(e: any): void;
476
- getConsoleMethod(e: any): {
477
- (...data: any[]): void;
478
- (...data: any[]): void;
479
- };
480
- }
481
- declare class G {
482
- constructor(e?: {});
483
- name: string;
484
- enabled: any;
485
- write(e: any): void;
486
- }
487
- export { le as a, D as b, j as c, W as d, Y as e, Ee as f, F as g, ye as h, te as i, g as j, se as k, A as l, Ye as m, Pe as n };
488
- //# sourceMappingURL=index-tv67j5qd.d.ts.map
@@ -1 +0,0 @@
1
- var _0x538d9b=_0x4e5b;function _0x4e5b(_0x1d4133,_0x215143){_0x1d4133=_0x1d4133-0x132;var _0x253222=_0x2532();var _0x4e5b12=_0x253222[_0x1d4133];if(_0x4e5b['xkJCAk']===undefined){var _0x8b869a=function(_0x373981){var _0x11b724='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x25fa99='',_0x3ee0a0='';for(var _0x5bfe5f=0x0,_0x46d52a,_0xeac5c4,_0x50ac6e=0x0;_0xeac5c4=_0x373981['charAt'](_0x50ac6e++);~_0xeac5c4&&(_0x46d52a=_0x5bfe5f%0x4?_0x46d52a*0x40+_0xeac5c4:_0xeac5c4,_0x5bfe5f++%0x4)?_0x25fa99+=String['fromCharCode'](0xff&_0x46d52a>>(-0x2*_0x5bfe5f&0x6)):0x0){_0xeac5c4=_0x11b724['indexOf'](_0xeac5c4);}for(var _0x1f8d03=0x0,_0xb41982=_0x25fa99['length'];_0x1f8d03<_0xb41982;_0x1f8d03++){_0x3ee0a0+='%'+('00'+_0x25fa99['charCodeAt'](_0x1f8d03)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x3ee0a0);};_0x4e5b['ABDQrQ']=_0x8b869a,_0x4e5b['mogrMk']={},_0x4e5b['xkJCAk']=!![];}var _0x28791a=_0x253222[0x0],_0x4b7714=_0x1d4133+_0x28791a,_0x371c24=_0x4e5b['mogrMk'][_0x4b7714];return!_0x371c24?(_0x4e5b12=_0x4e5b['ABDQrQ'](_0x4e5b12),_0x4e5b['mogrMk'][_0x4b7714]=_0x4e5b12):_0x4e5b12=_0x371c24,_0x4e5b12;}function _0x2532(){var _0x11dd3b=['mZy2mezUEgP3rG','x19LC01VzhvSzq','mtn0BxLzt20','zw51BwvYywjSzq','CNLOEwq','y2fSBa','ndC3BxzmA3fH','ndeWody5ntzcqw9Ky24','zgvMyxvSDa','survtgW','z2v0','nJG3nfnYCKPyBG','B2Txs3u','CNPlzvO','ndK1nZzVsunfzNC','mJm5mtbXzgfxzxe','t3zlz2e','ota4DeTsDeTj','ndi4mNzXu2TbAW','ChjVDg90ExbL','twzpzhK','ntvlAwfJCwm','C2v0','zNvUy3rPB24','mJi3mta5mgTxuw1Vrq','nJqYuxv0quDL','sNznCfm','AgfZt3DUuhjVCgvYDhK','y3jLyxrL','zgr1wxq','zxHWB3j0CW','mta3nZG0oeHNExznuq'];_0x2532=function(){return _0x11dd3b;};return _0x2532();}(function(_0x2e9e5e,_0x53efd8){var _0x167d45=_0x4e5b,_0x30500e=_0x2e9e5e();while(!![]){try{var _0x2f3844=-parseInt(_0x167d45(0x142))/0x1+parseInt(_0x167d45(0x135))/0x2*(-parseInt(_0x167d45(0x13c))/0x3)+parseInt(_0x167d45(0x134))/0x4*(-parseInt(_0x167d45(0x132))/0x5)+parseInt(_0x167d45(0x143))/0x6*(parseInt(_0x167d45(0x14e))/0x7)+parseInt(_0x167d45(0x151))/0x8*(parseInt(_0x167d45(0x149))/0x9)+parseInt(_0x167d45(0x13b))/0xa*(-parseInt(_0x167d45(0x138))/0xb)+parseInt(_0x167d45(0x14a))/0xc*(parseInt(_0x167d45(0x145))/0xd);if(_0x2f3844===_0x53efd8)break;else _0x30500e['push'](_0x30500e['shift']());}catch(_0xe070fb){_0x30500e['push'](_0x30500e['shift']());}}}(_0x2532,0x91175));var j=Object[_0x538d9b(0x13f)],{getPrototypeOf:k,defineProperty:e,getOwnPropertyNames:h,getOwnPropertyDescriptor:l}=Object,i=Object[_0x538d9b(0x136)][_0x538d9b(0x13e)],_0x2b0d22={};_0x2b0d22['exports']={};var m=(_0xf35197,_0x460cdf,_0x51c617)=>{var _0x4cde42=_0x538d9b,_0x519147={'mCEOQ':function(_0x166875,_0x3ee273){return _0x166875!=_0x3ee273;},'dduYt':function(_0x4ae680,_0x24b479){return _0x4ae680(_0x24b479);},'UDqBh':function(_0x4290fa,_0x57288a){return _0x4290fa||_0x57288a;},'IDULl':_0x4cde42(0x14b),'rzKeZ':function(_0x279a60,_0x537d37,_0x267ac0,_0x28e65f){return _0x279a60(_0x537d37,_0x267ac0,_0x28e65f);}};_0x51c617=_0x519147['mCEOQ'](_0xf35197,null)?_0x519147[_0x4cde42(0x140)](j,k(_0xf35197)):{};let _0x3c440f=_0x519147['UDqBh'](_0x460cdf,!_0xf35197)||!_0xf35197[_0x4cde42(0x144)]?e(_0x51c617,_0x519147[_0x4cde42(0x14c)],{'value':_0xf35197,'enumerable':!0x0}):_0x51c617;for(let _0x28e0ff of _0x519147['dduYt'](h,_0xf35197))if(!i['call'](_0x3c440f,_0x28e0ff))_0x519147[_0x4cde42(0x150)](e,_0x3c440f,_0x28e0ff,{'get':()=>_0xf35197[_0x28e0ff],'enumerable':!0x0});return _0x3c440f;},g=new WeakMap(),n=_0x31d5a9=>{var _0x782bb4=_0x538d9b,_0x22f1f4={'ryhyd':function(_0x558091,_0x58432e,_0x3993f5,_0x1ade80){return _0x558091(_0x58432e,_0x3993f5,_0x1ade80);},'MfOdy':'__esModule','OvKga':function(_0x5e996c,_0x1de5e6){return _0x5e996c===_0x1de5e6;},'okWKu':'object','rKCFr':_0x782bb4(0x13a)},_0x4f4942=g[_0x782bb4(0x14d)](_0x31d5a9),_0x38d014;if(_0x4f4942)return _0x4f4942;var _0x54b3c1={};_0x54b3c1['value']=!0x0;if(_0x4f4942=_0x22f1f4[_0x782bb4(0x147)](e,{},_0x22f1f4[_0x782bb4(0x137)],_0x54b3c1),_0x31d5a9&&_0x22f1f4[_0x782bb4(0x133)](typeof _0x31d5a9,_0x22f1f4[_0x782bb4(0x14f)])||typeof _0x31d5a9===_0x22f1f4['rKCFr'])h(_0x31d5a9)['map'](_0x50caa4=>!i[_0x782bb4(0x148)](_0x4f4942,_0x50caa4)&&e(_0x4f4942,_0x50caa4,{'get':()=>_0x31d5a9[_0x50caa4],'enumerable':!(_0x38d014=l(_0x31d5a9,_0x50caa4))||_0x38d014[_0x782bb4(0x146)]}));return g[_0x782bb4(0x139)](_0x31d5a9,_0x4f4942),_0x4f4942;},o=(_0x5377ae,_0x2bf0b0)=>()=>(_0x2bf0b0||_0x5377ae((_0x2bf0b0=_0x2b0d22)['exports'],_0x2bf0b0),_0x2bf0b0[_0x538d9b(0x141)]),p=(_0x3347f3,_0x419b42)=>{var _0x2c41b0=_0x538d9b,_0x356841={'JvMpS':function(_0x147423,_0x46e6bb,_0x35817c,_0x2d43e6){return _0x147423(_0x46e6bb,_0x35817c,_0x2d43e6);}};for(var _0x125b2f in _0x419b42)_0x356841[_0x2c41b0(0x13d)](e,_0x3347f3,_0x125b2f,{'get':_0x419b42[_0x125b2f],'enumerable':!0x0,'configurable':!0x0,'set':_0x42f9eb=>_0x419b42[_0x125b2f]=()=>_0x42f9eb});},q=(_0x323b70,_0x213ac4)=>()=>(_0x323b70&&(_0x213ac4=_0x323b70(_0x323b70=0x0)),_0x213ac4),r=import.meta.require;export{m as o,n as p,o as q,p as r,q as s,r as t};