@hugo.ye/common 1.0.2 → 1.0.4

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 (405) hide show
  1. package/build/auth/index.d.ts +2 -0
  2. package/build/auth/index.d.ts.map +1 -0
  3. package/build/auth/index.js +2 -0
  4. package/build/auth/index.js.map +1 -0
  5. package/build/auth/jwt-auth.guard.d.ts +12 -0
  6. package/build/auth/jwt-auth.guard.d.ts.map +1 -0
  7. package/build/auth/jwt-auth.guard.js +57 -0
  8. package/build/auth/jwt-auth.guard.js.map +1 -0
  9. package/build/constants/index.d.ts +4 -0
  10. package/build/constants/index.d.ts.map +1 -0
  11. package/build/constants/index.js +4 -0
  12. package/build/constants/index.js.map +1 -0
  13. package/build/constants/patterns.d.ts +6 -0
  14. package/build/constants/patterns.d.ts.map +1 -0
  15. package/build/constants/patterns.js +6 -0
  16. package/build/constants/patterns.js.map +1 -0
  17. package/build/constants/queue.d.ts +5 -0
  18. package/build/constants/queue.d.ts.map +1 -0
  19. package/build/constants/queue.js +5 -0
  20. package/build/constants/queue.js.map +1 -0
  21. package/build/constants/services.d.ts +6 -0
  22. package/build/constants/services.d.ts.map +1 -0
  23. package/build/constants/services.js +6 -0
  24. package/build/constants/services.js.map +1 -0
  25. package/build/database/abstract.entity.d.ts +5 -0
  26. package/build/database/abstract.entity.d.ts.map +1 -0
  27. package/build/database/abstract.entity.js +29 -0
  28. package/build/database/abstract.entity.js.map +1 -0
  29. package/build/database/abstract.repository.d.ts +18 -0
  30. package/build/database/abstract.repository.d.ts.map +1 -0
  31. package/build/database/abstract.repository.js +43 -0
  32. package/build/database/abstract.repository.js.map +1 -0
  33. package/build/database/database.module.d.ts +5 -0
  34. package/build/database/database.module.d.ts.map +1 -0
  35. package/build/database/database.module.js +33 -0
  36. package/build/database/database.module.js.map +1 -0
  37. package/build/database/index.d.ts +4 -0
  38. package/build/database/index.d.ts.map +1 -0
  39. package/build/database/index.js +4 -0
  40. package/build/database/index.js.map +1 -0
  41. package/build/decorators/current-user.decorator.d.ts +2 -0
  42. package/build/decorators/current-user.decorator.d.ts.map +1 -0
  43. package/build/decorators/current-user.decorator.js +14 -0
  44. package/build/decorators/current-user.decorator.js.map +1 -0
  45. package/build/decorators/gql-current-user.decorator.d.ts +2 -0
  46. package/build/decorators/gql-current-user.decorator.d.ts.map +1 -0
  47. package/build/decorators/gql-current-user.decorator.js +7 -0
  48. package/build/decorators/gql-current-user.decorator.js.map +1 -0
  49. package/build/decorators/index.d.ts +4 -0
  50. package/build/decorators/index.d.ts.map +1 -0
  51. package/build/decorators/index.js +4 -0
  52. package/build/decorators/index.js.map +1 -0
  53. package/build/decorators/role.decorator.d.ts +3 -0
  54. package/build/decorators/role.decorator.d.ts.map +1 -0
  55. package/build/decorators/role.decorator.js +18 -0
  56. package/build/decorators/role.decorator.js.map +1 -0
  57. package/build/index.d.ts +11 -0
  58. package/build/index.d.ts.map +1 -0
  59. package/build/index.js +11 -0
  60. package/build/index.js.map +1 -0
  61. package/build/logger/index.d.ts +2 -0
  62. package/build/logger/index.d.ts.map +1 -0
  63. package/build/logger/index.js +2 -0
  64. package/build/logger/index.js.map +1 -0
  65. package/build/logger/logger.module.d.ts +3 -0
  66. package/build/logger/logger.module.d.ts.map +1 -0
  67. package/build/logger/logger.module.js +28 -0
  68. package/build/logger/logger.module.js.map +1 -0
  69. package/build/models/banner-item.entity.d.ts +10 -0
  70. package/build/models/banner-item.entity.d.ts.map +1 -0
  71. package/build/models/banner-item.entity.js +58 -0
  72. package/build/models/banner-item.entity.js.map +1 -0
  73. package/build/models/banner.entity.d.ts +11 -0
  74. package/build/models/banner.entity.d.ts.map +1 -0
  75. package/build/models/banner.entity.js +65 -0
  76. package/build/models/banner.entity.js.map +1 -0
  77. package/build/models/brand.entity.d.ts +13 -0
  78. package/build/models/brand.entity.d.ts.map +1 -0
  79. package/build/models/brand.entity.js +77 -0
  80. package/build/models/brand.entity.js.map +1 -0
  81. package/build/models/campaign-category.entity.d.ts +2 -0
  82. package/build/models/campaign-category.entity.d.ts.map +1 -0
  83. package/build/models/campaign-category.entity.js +2 -0
  84. package/build/models/campaign-category.entity.js.map +1 -0
  85. package/build/models/campaign-items.entity.d.ts +11 -0
  86. package/build/models/campaign-items.entity.d.ts.map +1 -0
  87. package/build/models/campaign-items.entity.js +64 -0
  88. package/build/models/campaign-items.entity.js.map +1 -0
  89. package/build/models/campaign-type.entity.d.ts +2 -0
  90. package/build/models/campaign-type.entity.d.ts.map +1 -0
  91. package/build/models/campaign-type.entity.js +2 -0
  92. package/build/models/campaign-type.entity.js.map +1 -0
  93. package/build/models/campaign-viewer.entity.d.ts +2 -0
  94. package/build/models/campaign-viewer.entity.d.ts.map +1 -0
  95. package/build/models/campaign-viewer.entity.js +2 -0
  96. package/build/models/campaign-viewer.entity.js.map +1 -0
  97. package/build/models/campaigns.entity.d.ts +18 -0
  98. package/build/models/campaigns.entity.d.ts.map +1 -0
  99. package/build/models/campaigns.entity.js +110 -0
  100. package/build/models/campaigns.entity.js.map +1 -0
  101. package/build/models/category.entity.d.ts +14 -0
  102. package/build/models/category.entity.d.ts.map +1 -0
  103. package/build/models/category.entity.js +83 -0
  104. package/build/models/category.entity.js.map +1 -0
  105. package/build/models/chat-contacts-apply.entity.d.ts +8 -0
  106. package/build/models/chat-contacts-apply.entity.d.ts.map +1 -0
  107. package/build/models/chat-contacts-apply.entity.js +46 -0
  108. package/build/models/chat-contacts-apply.entity.js.map +1 -0
  109. package/build/models/chat-contacts.entity.d.ts +7 -0
  110. package/build/models/chat-contacts.entity.d.ts.map +1 -0
  111. package/build/models/chat-contacts.entity.js +40 -0
  112. package/build/models/chat-contacts.entity.js.map +1 -0
  113. package/build/models/chat-group-user.entity.d.ts +7 -0
  114. package/build/models/chat-group-user.entity.d.ts.map +1 -0
  115. package/build/models/chat-group-user.entity.js +39 -0
  116. package/build/models/chat-group-user.entity.js.map +1 -0
  117. package/build/models/chat-group.entity.d.ts +11 -0
  118. package/build/models/chat-group.entity.d.ts.map +1 -0
  119. package/build/models/chat-group.entity.js +66 -0
  120. package/build/models/chat-group.entity.js.map +1 -0
  121. package/build/models/chat-read.entity.d.ts +7 -0
  122. package/build/models/chat-read.entity.d.ts.map +1 -0
  123. package/build/models/chat-read.entity.js +40 -0
  124. package/build/models/chat-read.entity.js.map +1 -0
  125. package/build/models/chat.entity.d.ts +10 -0
  126. package/build/models/chat.entity.d.ts.map +1 -0
  127. package/build/models/chat.entity.js +60 -0
  128. package/build/models/chat.entity.js.map +1 -0
  129. package/build/models/index.d.ts +32 -0
  130. package/build/models/index.d.ts.map +1 -0
  131. package/build/models/index.js +32 -0
  132. package/build/models/index.js.map +1 -0
  133. package/build/models/log.entity.d.ts +11 -0
  134. package/build/models/log.entity.d.ts.map +1 -0
  135. package/build/models/log.entity.js +63 -0
  136. package/build/models/log.entity.js.map +1 -0
  137. package/build/models/member.entity.d.ts +26 -0
  138. package/build/models/member.entity.d.ts.map +1 -0
  139. package/build/models/member.entity.js +155 -0
  140. package/build/models/member.entity.js.map +1 -0
  141. package/build/models/news.entity.d.ts +15 -0
  142. package/build/models/news.entity.d.ts.map +1 -0
  143. package/build/models/news.entity.js +87 -0
  144. package/build/models/news.entity.js.map +1 -0
  145. package/build/models/order-item.entity.d.ts +12 -0
  146. package/build/models/order-item.entity.d.ts.map +1 -0
  147. package/build/models/order-item.entity.js +70 -0
  148. package/build/models/order-item.entity.js.map +1 -0
  149. package/build/models/order.entity.d.ts +33 -0
  150. package/build/models/order.entity.d.ts.map +1 -0
  151. package/build/models/order.entity.js +198 -0
  152. package/build/models/order.entity.js.map +1 -0
  153. package/build/models/page.entity.d.ts +13 -0
  154. package/build/models/page.entity.d.ts.map +1 -0
  155. package/build/models/page.entity.js +75 -0
  156. package/build/models/page.entity.js.map +1 -0
  157. package/build/models/product-document.entity.d.ts +13 -0
  158. package/build/models/product-document.entity.d.ts.map +1 -0
  159. package/build/models/product-document.entity.js +76 -0
  160. package/build/models/product-document.entity.js.map +1 -0
  161. package/build/models/product-picture.entity.d.ts +7 -0
  162. package/build/models/product-picture.entity.d.ts.map +1 -0
  163. package/build/models/product-picture.entity.js +40 -0
  164. package/build/models/product-picture.entity.js.map +1 -0
  165. package/build/models/product-sku.entity.d.ts +14 -0
  166. package/build/models/product-sku.entity.d.ts.map +1 -0
  167. package/build/models/product-sku.entity.js +82 -0
  168. package/build/models/product-sku.entity.js.map +1 -0
  169. package/build/models/product.entity.d.ts +32 -0
  170. package/build/models/product.entity.d.ts.map +1 -0
  171. package/build/models/product.entity.js +187 -0
  172. package/build/models/product.entity.js.map +1 -0
  173. package/build/models/remove-result.entity.d.ts +4 -0
  174. package/build/models/remove-result.entity.d.ts.map +1 -0
  175. package/build/models/remove-result.entity.js +23 -0
  176. package/build/models/remove-result.entity.js.map +1 -0
  177. package/build/models/roles.entity.d.ts +6 -0
  178. package/build/models/roles.entity.d.ts.map +1 -0
  179. package/build/models/roles.entity.js +34 -0
  180. package/build/models/roles.entity.js.map +1 -0
  181. package/build/models/token.entity.d.ts +4 -0
  182. package/build/models/token.entity.d.ts.map +1 -0
  183. package/build/models/token.entity.js +22 -0
  184. package/build/models/token.entity.js.map +1 -0
  185. package/build/models/user-profile.entity.d.ts +14 -0
  186. package/build/models/user-profile.entity.d.ts.map +1 -0
  187. package/build/models/user-profile.entity.js +82 -0
  188. package/build/models/user-profile.entity.js.map +1 -0
  189. package/build/models/users.entity.d.ts +17 -0
  190. package/build/models/users.entity.d.ts.map +1 -0
  191. package/build/models/users.entity.js +103 -0
  192. package/build/models/users.entity.js.map +1 -0
  193. package/build/models/visit-logs.entity.d.ts +7 -0
  194. package/build/models/visit-logs.entity.d.ts.map +1 -0
  195. package/build/models/visit-logs.entity.js +40 -0
  196. package/build/models/visit-logs.entity.js.map +1 -0
  197. package/build/paginate/abstract.filter.d.ts +5 -0
  198. package/build/paginate/abstract.filter.d.ts.map +1 -0
  199. package/build/paginate/abstract.filter.js +35 -0
  200. package/build/paginate/abstract.filter.js.map +1 -0
  201. package/build/paginate/abstract.paginate.d.ts +5 -0
  202. package/build/paginate/abstract.paginate.d.ts.map +1 -0
  203. package/build/paginate/abstract.paginate.dto.d.ts +6 -0
  204. package/build/paginate/abstract.paginate.dto.d.ts.map +1 -0
  205. package/build/paginate/abstract.paginate.dto.js +39 -0
  206. package/build/paginate/abstract.paginate.dto.js.map +1 -0
  207. package/build/paginate/abstract.paginate.js +24 -0
  208. package/build/paginate/abstract.paginate.js.map +1 -0
  209. package/build/paginate/basePaginateConfigFilter.d.ts +6 -0
  210. package/build/paginate/basePaginateConfigFilter.d.ts.map +1 -0
  211. package/build/paginate/basePaginateConfigFilter.js +6 -0
  212. package/build/paginate/basePaginateConfigFilter.js.map +1 -0
  213. package/build/paginate/dto/banner.paginate.dto.d.ts +6 -0
  214. package/build/paginate/dto/banner.paginate.dto.d.ts.map +1 -0
  215. package/build/paginate/dto/banner.paginate.dto.js +30 -0
  216. package/build/paginate/dto/banner.paginate.dto.js.map +1 -0
  217. package/build/paginate/dto/campaign.paginate.dto.d.ts +5 -0
  218. package/build/paginate/dto/campaign.paginate.dto.d.ts.map +1 -0
  219. package/build/paginate/dto/campaign.paginate.dto.js +29 -0
  220. package/build/paginate/dto/campaign.paginate.dto.js.map +1 -0
  221. package/build/paginate/dto/chat-message.paginate.dto.d.ts +5 -0
  222. package/build/paginate/dto/chat-message.paginate.dto.d.ts.map +1 -0
  223. package/build/paginate/dto/chat-message.paginate.dto.js +29 -0
  224. package/build/paginate/dto/chat-message.paginate.dto.js.map +1 -0
  225. package/build/paginate/dto/chat-read.dto.d.ts +4 -0
  226. package/build/paginate/dto/chat-read.dto.d.ts.map +1 -0
  227. package/build/paginate/dto/chat-read.dto.js +25 -0
  228. package/build/paginate/dto/chat-read.dto.js.map +1 -0
  229. package/build/paginate/dto/filter/banner.filter.d.ts +6 -0
  230. package/build/paginate/dto/filter/banner.filter.d.ts.map +1 -0
  231. package/build/paginate/dto/filter/banner.filter.js +36 -0
  232. package/build/paginate/dto/filter/banner.filter.js.map +1 -0
  233. package/build/paginate/dto/filter/campaign.filter.d.ts +8 -0
  234. package/build/paginate/dto/filter/campaign.filter.d.ts.map +1 -0
  235. package/build/paginate/dto/filter/campaign.filter.js +52 -0
  236. package/build/paginate/dto/filter/campaign.filter.js.map +1 -0
  237. package/build/paginate/dto/filter/chat-message.filter.d.ts +9 -0
  238. package/build/paginate/dto/filter/chat-message.filter.d.ts.map +1 -0
  239. package/build/paginate/dto/filter/chat-message.filter.js +59 -0
  240. package/build/paginate/dto/filter/chat-message.filter.js.map +1 -0
  241. package/build/paginate/dto/filter/index.d.ts +14 -0
  242. package/build/paginate/dto/filter/index.d.ts.map +1 -0
  243. package/build/paginate/dto/filter/index.js +14 -0
  244. package/build/paginate/dto/filter/index.js.map +1 -0
  245. package/build/paginate/dto/filter/log.filter.d.ts +7 -0
  246. package/build/paginate/dto/filter/log.filter.d.ts.map +1 -0
  247. package/build/paginate/dto/filter/log.filter.js +44 -0
  248. package/build/paginate/dto/filter/log.filter.js.map +1 -0
  249. package/build/paginate/dto/filter/member.filter.d.ts +11 -0
  250. package/build/paginate/dto/filter/member.filter.d.ts.map +1 -0
  251. package/build/paginate/dto/filter/member.filter.js +76 -0
  252. package/build/paginate/dto/filter/member.filter.js.map +1 -0
  253. package/build/paginate/dto/filter/news.filter.d.ts +7 -0
  254. package/build/paginate/dto/filter/news.filter.d.ts.map +1 -0
  255. package/build/paginate/dto/filter/news.filter.js +44 -0
  256. package/build/paginate/dto/filter/news.filter.js.map +1 -0
  257. package/build/paginate/dto/filter/order.filter.d.ts +14 -0
  258. package/build/paginate/dto/filter/order.filter.d.ts.map +1 -0
  259. package/build/paginate/dto/filter/order.filter.js +100 -0
  260. package/build/paginate/dto/filter/order.filter.js.map +1 -0
  261. package/build/paginate/dto/filter/page.filter.d.ts +7 -0
  262. package/build/paginate/dto/filter/page.filter.d.ts.map +1 -0
  263. package/build/paginate/dto/filter/page.filter.js +44 -0
  264. package/build/paginate/dto/filter/page.filter.js.map +1 -0
  265. package/build/paginate/dto/filter/product-brand.filter.d.ts +5 -0
  266. package/build/paginate/dto/filter/product-brand.filter.d.ts.map +1 -0
  267. package/build/paginate/dto/filter/product-brand.filter.js +28 -0
  268. package/build/paginate/dto/filter/product-brand.filter.js.map +1 -0
  269. package/build/paginate/dto/filter/product-category.filter.d.ts +5 -0
  270. package/build/paginate/dto/filter/product-category.filter.d.ts.map +1 -0
  271. package/build/paginate/dto/filter/product-category.filter.js +28 -0
  272. package/build/paginate/dto/filter/product-category.filter.js.map +1 -0
  273. package/build/paginate/dto/filter/product.filter.d.ts +9 -0
  274. package/build/paginate/dto/filter/product.filter.d.ts.map +1 -0
  275. package/build/paginate/dto/filter/product.filter.js +60 -0
  276. package/build/paginate/dto/filter/product.filter.js.map +1 -0
  277. package/build/paginate/dto/filter/user.filter.d.ts +7 -0
  278. package/build/paginate/dto/filter/user.filter.d.ts.map +1 -0
  279. package/build/paginate/dto/filter/user.filter.js +43 -0
  280. package/build/paginate/dto/filter/user.filter.js.map +1 -0
  281. package/build/paginate/dto/filter/visit-log.filter.d.ts +6 -0
  282. package/build/paginate/dto/filter/visit-log.filter.d.ts.map +1 -0
  283. package/build/paginate/dto/filter/visit-log.filter.js +36 -0
  284. package/build/paginate/dto/filter/visit-log.filter.js.map +1 -0
  285. package/build/paginate/dto/index.d.ts +15 -0
  286. package/build/paginate/dto/index.d.ts.map +1 -0
  287. package/build/paginate/dto/index.js +15 -0
  288. package/build/paginate/dto/index.js.map +1 -0
  289. package/build/paginate/dto/log.paginate.dto.d.ts +5 -0
  290. package/build/paginate/dto/log.paginate.dto.d.ts.map +1 -0
  291. package/build/paginate/dto/log.paginate.dto.js +29 -0
  292. package/build/paginate/dto/log.paginate.dto.js.map +1 -0
  293. package/build/paginate/dto/member.paginate.dto.d.ts +5 -0
  294. package/build/paginate/dto/member.paginate.dto.d.ts.map +1 -0
  295. package/build/paginate/dto/member.paginate.dto.js +29 -0
  296. package/build/paginate/dto/member.paginate.dto.js.map +1 -0
  297. package/build/paginate/dto/news.paginate.dto.d.ts +5 -0
  298. package/build/paginate/dto/news.paginate.dto.d.ts.map +1 -0
  299. package/build/paginate/dto/news.paginate.dto.js +29 -0
  300. package/build/paginate/dto/news.paginate.dto.js.map +1 -0
  301. package/build/paginate/dto/order.paginate.dto.d.ts +5 -0
  302. package/build/paginate/dto/order.paginate.dto.d.ts.map +1 -0
  303. package/build/paginate/dto/order.paginate.dto.js +29 -0
  304. package/build/paginate/dto/order.paginate.dto.js.map +1 -0
  305. package/build/paginate/dto/page.paginate.dto.d.ts +5 -0
  306. package/build/paginate/dto/page.paginate.dto.d.ts.map +1 -0
  307. package/build/paginate/dto/page.paginate.dto.js +29 -0
  308. package/build/paginate/dto/page.paginate.dto.js.map +1 -0
  309. package/build/paginate/dto/product-brand.paginate.dto.d.ts +5 -0
  310. package/build/paginate/dto/product-brand.paginate.dto.d.ts.map +1 -0
  311. package/build/paginate/dto/product-brand.paginate.dto.js +29 -0
  312. package/build/paginate/dto/product-brand.paginate.dto.js.map +1 -0
  313. package/build/paginate/dto/product-category.paginate.dto.d.ts +6 -0
  314. package/build/paginate/dto/product-category.paginate.dto.d.ts.map +1 -0
  315. package/build/paginate/dto/product-category.paginate.dto.js +34 -0
  316. package/build/paginate/dto/product-category.paginate.dto.js.map +1 -0
  317. package/build/paginate/dto/product.paginate.dto.d.ts +5 -0
  318. package/build/paginate/dto/product.paginate.dto.d.ts.map +1 -0
  319. package/build/paginate/dto/product.paginate.dto.js +29 -0
  320. package/build/paginate/dto/product.paginate.dto.js.map +1 -0
  321. package/build/paginate/dto/user.paginate.dto.d.ts +5 -0
  322. package/build/paginate/dto/user.paginate.dto.d.ts.map +1 -0
  323. package/build/paginate/dto/user.paginate.dto.js +29 -0
  324. package/build/paginate/dto/user.paginate.dto.js.map +1 -0
  325. package/build/paginate/dto/visit-log.paginate.dto.d.ts +5 -0
  326. package/build/paginate/dto/visit-log.paginate.dto.d.ts.map +1 -0
  327. package/build/paginate/dto/visit-log.paginate.dto.js +29 -0
  328. package/build/paginate/dto/visit-log.paginate.dto.js.map +1 -0
  329. package/build/paginate/index.d.ts +8 -0
  330. package/build/paginate/index.d.ts.map +1 -0
  331. package/build/paginate/index.js +8 -0
  332. package/build/paginate/index.js.map +1 -0
  333. package/build/paginate/paginate-meta.d.ts +7 -0
  334. package/build/paginate/paginate-meta.d.ts.map +1 -0
  335. package/build/paginate/paginate-meta.js +38 -0
  336. package/build/paginate/paginate-meta.js.map +1 -0
  337. package/build/paginate/paginate-query-convert.d.ts +11 -0
  338. package/build/paginate/paginate-query-convert.d.ts.map +1 -0
  339. package/build/paginate/paginate-query-convert.js +18 -0
  340. package/build/paginate/paginate-query-convert.js.map +1 -0
  341. package/build/paginate/subs/banner-paginate.d.ts +5 -0
  342. package/build/paginate/subs/banner-paginate.d.ts.map +1 -0
  343. package/build/paginate/subs/banner-paginate.js +23 -0
  344. package/build/paginate/subs/banner-paginate.js.map +1 -0
  345. package/build/paginate/subs/brand-paginate.d.ts +5 -0
  346. package/build/paginate/subs/brand-paginate.d.ts.map +1 -0
  347. package/build/paginate/subs/brand-paginate.js +23 -0
  348. package/build/paginate/subs/brand-paginate.js.map +1 -0
  349. package/build/paginate/subs/campaign-paginate.d.ts +5 -0
  350. package/build/paginate/subs/campaign-paginate.d.ts.map +1 -0
  351. package/build/paginate/subs/campaign-paginate.js +23 -0
  352. package/build/paginate/subs/campaign-paginate.js.map +1 -0
  353. package/build/paginate/subs/category-paginate.d.ts +5 -0
  354. package/build/paginate/subs/category-paginate.d.ts.map +1 -0
  355. package/build/paginate/subs/category-paginate.js +23 -0
  356. package/build/paginate/subs/category-paginate.js.map +1 -0
  357. package/build/paginate/subs/chat-paginate.d.ts +5 -0
  358. package/build/paginate/subs/chat-paginate.d.ts.map +1 -0
  359. package/build/paginate/subs/chat-paginate.js +23 -0
  360. package/build/paginate/subs/chat-paginate.js.map +1 -0
  361. package/build/paginate/subs/index.d.ts +10 -0
  362. package/build/paginate/subs/index.d.ts.map +1 -0
  363. package/build/paginate/subs/index.js +10 -0
  364. package/build/paginate/subs/index.js.map +1 -0
  365. package/build/paginate/subs/log-paginate.d.ts +5 -0
  366. package/build/paginate/subs/log-paginate.d.ts.map +1 -0
  367. package/build/paginate/subs/log-paginate.js +23 -0
  368. package/build/paginate/subs/log-paginate.js.map +1 -0
  369. package/build/paginate/subs/members-paginate.d.ts +5 -0
  370. package/build/paginate/subs/members-paginate.d.ts.map +1 -0
  371. package/build/paginate/subs/members-paginate.js +23 -0
  372. package/build/paginate/subs/members-paginate.js.map +1 -0
  373. package/build/paginate/subs/news-paginate.d.ts +5 -0
  374. package/build/paginate/subs/news-paginate.d.ts.map +1 -0
  375. package/build/paginate/subs/news-paginate.js +23 -0
  376. package/build/paginate/subs/news-paginate.js.map +1 -0
  377. package/build/paginate/subs/order-paginate.d.ts +5 -0
  378. package/build/paginate/subs/order-paginate.d.ts.map +1 -0
  379. package/build/paginate/subs/order-paginate.js +23 -0
  380. package/build/paginate/subs/order-paginate.js.map +1 -0
  381. package/build/paginate/subs/page-paginate.d.ts +5 -0
  382. package/build/paginate/subs/page-paginate.d.ts.map +1 -0
  383. package/build/paginate/subs/page-paginate.js +23 -0
  384. package/build/paginate/subs/page-paginate.js.map +1 -0
  385. package/build/paginate/subs/product-paginate.d.ts +5 -0
  386. package/build/paginate/subs/product-paginate.d.ts.map +1 -0
  387. package/build/paginate/subs/product-paginate.js +23 -0
  388. package/build/paginate/subs/product-paginate.js.map +1 -0
  389. package/build/paginate/subs/users-paginate.d.ts +5 -0
  390. package/build/paginate/subs/users-paginate.d.ts.map +1 -0
  391. package/build/paginate/subs/users-paginate.js +23 -0
  392. package/build/paginate/subs/users-paginate.js.map +1 -0
  393. package/build/paginate/subs/visit-logs-paginate.d.ts +5 -0
  394. package/build/paginate/subs/visit-logs-paginate.d.ts.map +1 -0
  395. package/build/paginate/subs/visit-logs-paginate.js +23 -0
  396. package/build/paginate/subs/visit-logs-paginate.js.map +1 -0
  397. package/build/types/chat-type.types.d.ts +3 -0
  398. package/build/types/chat-type.types.d.ts.map +1 -0
  399. package/build/types/chat-type.types.js +7 -0
  400. package/build/types/chat-type.types.js.map +1 -0
  401. package/build/types/index.d.ts +2 -0
  402. package/build/types/index.d.ts.map +1 -0
  403. package/build/types/index.js +2 -0
  404. package/build/types/index.js.map +1 -0
  405. package/package.json +1 -1
@@ -0,0 +1,100 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let OrderFilter = class OrderFilter extends AbstractFilter {
15
+ number;
16
+ paymentMethod;
17
+ paymentStatus;
18
+ paymentNumber;
19
+ paymentDate;
20
+ refundedDate;
21
+ refundedNumber;
22
+ redemptionCode;
23
+ status;
24
+ updatedDate;
25
+ };
26
+ __decorate([
27
+ IsArray(),
28
+ Field(() => [String], { nullable: true }),
29
+ Type(() => String),
30
+ IsOptional(),
31
+ __metadata("design:type", Array)
32
+ ], OrderFilter.prototype, "number", void 0);
33
+ __decorate([
34
+ IsArray(),
35
+ Field(() => [String], { nullable: true }),
36
+ Type(() => String),
37
+ IsOptional(),
38
+ __metadata("design:type", Array)
39
+ ], OrderFilter.prototype, "paymentMethod", void 0);
40
+ __decorate([
41
+ IsArray(),
42
+ Field(() => [String], { nullable: true }),
43
+ Type(() => String),
44
+ IsOptional(),
45
+ __metadata("design:type", Array)
46
+ ], OrderFilter.prototype, "paymentStatus", void 0);
47
+ __decorate([
48
+ IsArray(),
49
+ Field(() => [String], { nullable: true }),
50
+ Type(() => String),
51
+ IsOptional(),
52
+ __metadata("design:type", Array)
53
+ ], OrderFilter.prototype, "paymentNumber", void 0);
54
+ __decorate([
55
+ IsArray(),
56
+ Field(() => [String], { nullable: true }),
57
+ Type(() => String),
58
+ IsOptional(),
59
+ __metadata("design:type", Array)
60
+ ], OrderFilter.prototype, "paymentDate", void 0);
61
+ __decorate([
62
+ IsArray(),
63
+ Field(() => [String], { nullable: true }),
64
+ Type(() => String),
65
+ IsOptional(),
66
+ __metadata("design:type", Array)
67
+ ], OrderFilter.prototype, "refundedDate", void 0);
68
+ __decorate([
69
+ IsArray(),
70
+ Field(() => [String], { nullable: true }),
71
+ Type(() => String),
72
+ IsOptional(),
73
+ __metadata("design:type", Array)
74
+ ], OrderFilter.prototype, "refundedNumber", void 0);
75
+ __decorate([
76
+ IsArray(),
77
+ Field(() => [String], { nullable: true }),
78
+ Type(() => String),
79
+ IsOptional(),
80
+ __metadata("design:type", Array)
81
+ ], OrderFilter.prototype, "redemptionCode", void 0);
82
+ __decorate([
83
+ IsArray(),
84
+ Field(() => [String], { nullable: true }),
85
+ Type(() => String),
86
+ IsOptional(),
87
+ __metadata("design:type", Array)
88
+ ], OrderFilter.prototype, "status", void 0);
89
+ __decorate([
90
+ IsArray(),
91
+ Field(() => [String], { nullable: true }),
92
+ IsOptional(),
93
+ Type(() => String),
94
+ __metadata("design:type", Array)
95
+ ], OrderFilter.prototype, "updatedDate", void 0);
96
+ OrderFilter = __decorate([
97
+ InputType()
98
+ ], OrderFilter);
99
+ export { OrderFilter };
100
+ //# sourceMappingURL=order.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"order.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/order.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,cAAc;IAM3C,MAAM,CAAY;IAMlB,aAAa,CAAY;IAMzB,aAAa,CAAY;IAMzB,aAAa,CAAY;IAMzB,WAAW,CAAY;IAMvB,YAAY,CAAY;IAMxB,cAAc,CAAY;IAM1B,cAAc,CAAY;IAM1B,MAAM,CAAY;IAMlB,WAAW,CAAW;CACzB,CAAA;AAvDG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;2CACK;AAMlB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;kDACY;AAMzB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;kDACY;AAMzB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;kDACY;AAMzB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;gDACU;AAMvB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;iDACW;AAMxB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;mDACa;AAM1B;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;mDACa;AAM1B;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;2CACK;AAMlB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,UAAU,EAAE;IACZ,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;gDACG;AA5Db,WAAW;IADvB,SAAS,EAAE;GACC,WAAW,CA6DvB"}
@@ -0,0 +1,7 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class PageFilter extends AbstractFilter {
3
+ name?: string[];
4
+ summary?: string[];
5
+ content?: string[];
6
+ }
7
+ //# sourceMappingURL=page.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/page.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,UAAW,SAAQ,cAAc;IAM1C,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAMhB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAMnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CAEtB"}
@@ -0,0 +1,44 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let PageFilter = class PageFilter extends AbstractFilter {
15
+ name;
16
+ summary;
17
+ content;
18
+ };
19
+ __decorate([
20
+ IsArray(),
21
+ Field(() => [String], { nullable: true }),
22
+ Type(() => String),
23
+ IsOptional(),
24
+ __metadata("design:type", Array)
25
+ ], PageFilter.prototype, "name", void 0);
26
+ __decorate([
27
+ IsArray(),
28
+ Field(() => [String], { nullable: true }),
29
+ Type(() => String),
30
+ IsOptional(),
31
+ __metadata("design:type", Array)
32
+ ], PageFilter.prototype, "summary", void 0);
33
+ __decorate([
34
+ IsArray(),
35
+ Field(() => [String], { nullable: true }),
36
+ Type(() => String),
37
+ IsOptional(),
38
+ __metadata("design:type", Array)
39
+ ], PageFilter.prototype, "content", void 0);
40
+ PageFilter = __decorate([
41
+ InputType()
42
+ ], PageFilter);
43
+ export { PageFilter };
44
+ //# sourceMappingURL=page.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/page.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,cAAc;IAM1C,IAAI,CAAY;IAMhB,OAAO,CAAY;IAMnB,OAAO,CAAY;CAEtB,CAAA;AAdG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;wCACG;AAMhB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;2CACM;AAMnB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;2CACM;AAlBV,UAAU;IADtB,SAAS,EAAE;GACC,UAAU,CAoBtB"}
@@ -0,0 +1,5 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class ProductBrandFilter extends AbstractFilter {
3
+ name?: string[];
4
+ }
5
+ //# sourceMappingURL=product-brand.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product-brand.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product-brand.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,kBAAmB,SAAQ,cAAc;IAMlD,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB"}
@@ -0,0 +1,28 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let ProductBrandFilter = class ProductBrandFilter extends AbstractFilter {
15
+ name;
16
+ };
17
+ __decorate([
18
+ IsArray(),
19
+ Field(() => [String], { nullable: true }),
20
+ IsOptional(),
21
+ Type(() => String),
22
+ __metadata("design:type", Array)
23
+ ], ProductBrandFilter.prototype, "name", void 0);
24
+ ProductBrandFilter = __decorate([
25
+ InputType()
26
+ ], ProductBrandFilter);
27
+ export { ProductBrandFilter };
28
+ //# sourceMappingURL=product-brand.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product-brand.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product-brand.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,cAAc;IAMlD,IAAI,CAAY;CACnB,CAAA;AADG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,UAAU,EAAE;IACZ,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;gDACH;AANP,kBAAkB;IAD9B,SAAS,EAAE;GACC,kBAAkB,CAO9B"}
@@ -0,0 +1,5 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class ProductCategoryFilter extends AbstractFilter {
3
+ name?: string[];
4
+ }
5
+ //# sourceMappingURL=product-category.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product-category.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product-category.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,qBAAsB,SAAQ,cAAc;IAKrD,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB"}
@@ -0,0 +1,28 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let ProductCategoryFilter = class ProductCategoryFilter extends AbstractFilter {
15
+ name;
16
+ };
17
+ __decorate([
18
+ IsArray(),
19
+ Field(() => [String], { nullable: true }),
20
+ IsOptional(),
21
+ Type(() => String),
22
+ __metadata("design:type", Array)
23
+ ], ProductCategoryFilter.prototype, "name", void 0);
24
+ ProductCategoryFilter = __decorate([
25
+ InputType()
26
+ ], ProductCategoryFilter);
27
+ export { ProductCategoryFilter };
28
+ //# sourceMappingURL=product-category.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product-category.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product-category.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,cAAc;IAKrD,IAAI,CAAY;CACnB,CAAA;AADG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,UAAU,EAAE;IACZ,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;;mDACH;AALP,qBAAqB;IADjC,SAAS,EAAE;GACC,qBAAqB,CAMjC"}
@@ -0,0 +1,9 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class ProductFilter extends AbstractFilter {
3
+ name?: string[];
4
+ model?: string[];
5
+ serialNumber?: string[];
6
+ brandId?: number;
7
+ categoryId?: string;
8
+ }
9
+ //# sourceMappingURL=product.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,aAAc,SAAQ,cAAc;IAM7C,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAMhB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IAMjB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IAMxB,OAAO,CAAC,EAAE,MAAM,CAAA;IAMhB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,60 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let ProductFilter = class ProductFilter extends AbstractFilter {
15
+ name;
16
+ model;
17
+ serialNumber;
18
+ brandId;
19
+ categoryId;
20
+ };
21
+ __decorate([
22
+ IsArray(),
23
+ Field(() => [String], { nullable: true }),
24
+ Type(() => String),
25
+ IsOptional(),
26
+ __metadata("design:type", Array)
27
+ ], ProductFilter.prototype, "name", void 0);
28
+ __decorate([
29
+ IsArray(),
30
+ Field(() => [String], { nullable: true }),
31
+ Type(() => String),
32
+ IsOptional(),
33
+ __metadata("design:type", Array)
34
+ ], ProductFilter.prototype, "model", void 0);
35
+ __decorate([
36
+ IsArray(),
37
+ Field(() => [String], { nullable: true }),
38
+ Type(() => String),
39
+ IsOptional(),
40
+ __metadata("design:type", Array)
41
+ ], ProductFilter.prototype, "serialNumber", void 0);
42
+ __decorate([
43
+ IsArray(),
44
+ Field(() => [Number], { nullable: true }),
45
+ Type(() => Number),
46
+ IsOptional(),
47
+ __metadata("design:type", Number)
48
+ ], ProductFilter.prototype, "brandId", void 0);
49
+ __decorate([
50
+ IsArray(),
51
+ Field(() => [Number], { nullable: true }),
52
+ Type(() => Number),
53
+ IsOptional(),
54
+ __metadata("design:type", String)
55
+ ], ProductFilter.prototype, "categoryId", void 0);
56
+ ProductFilter = __decorate([
57
+ InputType()
58
+ ], ProductFilter);
59
+ export { ProductFilter };
60
+ //# sourceMappingURL=product.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/product.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,cAAc;IAM7C,IAAI,CAAY;IAMhB,KAAK,CAAY;IAMjB,YAAY,CAAY;IAMxB,OAAO,CAAS;IAMhB,UAAU,CAAU;CACvB,CAAA;AAzBG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;2CACG;AAMhB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;4CACI;AAMjB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;mDACW;AAMxB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;8CACG;AAMhB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;iDACO;AA9BX,aAAa;IADzB,SAAS,EAAE;GACC,aAAa,CA+BzB"}
@@ -0,0 +1,7 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class UserFilter extends AbstractFilter {
3
+ email?: string[];
4
+ username?: string[];
5
+ isOnline?: number;
6
+ }
7
+ //# sourceMappingURL=user.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/user.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,UAAW,SAAQ,cAAc;IAM1C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IAMjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IAKpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAErB"}
@@ -0,0 +1,43 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsNumber, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let UserFilter = class UserFilter extends AbstractFilter {
15
+ email;
16
+ username;
17
+ isOnline;
18
+ };
19
+ __decorate([
20
+ IsArray(),
21
+ Field(() => [String], { nullable: true }),
22
+ Type(() => String),
23
+ IsOptional(),
24
+ __metadata("design:type", Array)
25
+ ], UserFilter.prototype, "email", void 0);
26
+ __decorate([
27
+ IsArray(),
28
+ Field(() => [String], { nullable: true }),
29
+ Type(() => String),
30
+ IsOptional(),
31
+ __metadata("design:type", Array)
32
+ ], UserFilter.prototype, "username", void 0);
33
+ __decorate([
34
+ IsNumber(),
35
+ Field({ nullable: true }),
36
+ IsOptional(),
37
+ __metadata("design:type", Number)
38
+ ], UserFilter.prototype, "isOnline", void 0);
39
+ UserFilter = __decorate([
40
+ InputType()
41
+ ], UserFilter);
42
+ export { UserFilter };
43
+ //# sourceMappingURL=user.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/user.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,cAAc;IAM1C,KAAK,CAAY;IAMjB,QAAQ,CAAY;IAKpB,QAAQ,CAAU;CAErB,CAAA;AAbG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;yCACI;AAMjB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;4CACO;AAKpB;IAHC,QAAQ,EAAE;IACV,KAAK,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzB,UAAU,EAAE;;4CACK;AAjBT,UAAU;IADtB,SAAS,EAAE;GACC,UAAU,CAmBtB"}
@@ -0,0 +1,6 @@
1
+ import { AbstractFilter } from "@app/common";
2
+ export declare class VisitLogFilter extends AbstractFilter {
3
+ content?: string[];
4
+ memberId?: string[];
5
+ }
6
+ //# sourceMappingURL=visit-log.filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"visit-log.filter.d.ts","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/visit-log.filter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,qBACa,cAAe,SAAQ,cAAc;IAM9C,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAMnB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACvB"}
@@ -0,0 +1,36 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { Type } from "class-transformer";
12
+ import { IsArray, IsOptional } from "class-validator";
13
+ import { AbstractFilter } from "@app/common";
14
+ let VisitLogFilter = class VisitLogFilter extends AbstractFilter {
15
+ content;
16
+ memberId;
17
+ };
18
+ __decorate([
19
+ IsArray(),
20
+ Field(() => [String], { nullable: true }),
21
+ Type(() => String),
22
+ IsOptional(),
23
+ __metadata("design:type", Array)
24
+ ], VisitLogFilter.prototype, "content", void 0);
25
+ __decorate([
26
+ IsArray(),
27
+ Field(() => [String], { nullable: true }),
28
+ Type(() => String),
29
+ IsOptional(),
30
+ __metadata("design:type", Array)
31
+ ], VisitLogFilter.prototype, "memberId", void 0);
32
+ VisitLogFilter = __decorate([
33
+ InputType()
34
+ ], VisitLogFilter);
35
+ export { VisitLogFilter };
36
+ //# sourceMappingURL=visit-log.filter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"visit-log.filter.js","sourceRoot":"","sources":["../../../../src/paginate/dto/filter/visit-log.filter.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAGtC,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,cAAc;IAM9C,OAAO,CAAY;IAMnB,QAAQ,CAAY;CACvB,CAAA;AAPG;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;+CACM;AAMnB;IAJC,OAAO,EAAE;IACT,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,UAAU,EAAE;;gDACO;AAZX,cAAc;IAD1B,SAAS,EAAE;GACC,cAAc,CAa1B"}
@@ -0,0 +1,15 @@
1
+ export * from './chat-message.paginate.dto.ts';
2
+ export * from './banner.paginate.dto.ts';
3
+ export * from './chat-read.dto.ts';
4
+ export * from './log.paginate.dto.ts';
5
+ export * from './member.paginate.dto.ts';
6
+ export * from './news.paginate.dto.ts';
7
+ export * from './order.paginate.dto.ts';
8
+ export * from './page.paginate.dto.ts';
9
+ export * from './product-brand.paginate.dto.ts';
10
+ export * from './product-category.paginate.dto.ts';
11
+ export * from './product.paginate.dto.ts';
12
+ export * from './user.paginate.dto.ts';
13
+ export * from './visit-log.paginate.dto.ts';
14
+ export * from './filter/index.ts';
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/paginate/dto/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC;AAChD,cAAc,oCAAoC,CAAC;AACnD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,15 @@
1
+ export * from "./chat-message.paginate.dto.js";
2
+ export * from "./banner.paginate.dto.js";
3
+ export * from "./chat-read.dto.js";
4
+ export * from "./log.paginate.dto.js";
5
+ export * from "./member.paginate.dto.js";
6
+ export * from "./news.paginate.dto.js";
7
+ export * from "./order.paginate.dto.js";
8
+ export * from "./page.paginate.dto.js";
9
+ export * from "./product-brand.paginate.dto.js";
10
+ export * from "./product-category.paginate.dto.js";
11
+ export * from "./product.paginate.dto.js";
12
+ export * from "./user.paginate.dto.js";
13
+ export * from "./visit-log.paginate.dto.js";
14
+ export * from "./filter/index.js";
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/paginate/dto/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC;AAChD,cAAc,oCAAoC,CAAC;AACnD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { AbstractPaginateDto, LogFilter } from "@app/common";
2
+ export declare class LogPaginateDto extends AbstractPaginateDto {
3
+ filter?: LogFilter;
4
+ }
5
+ //# sourceMappingURL=log.paginate.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log.paginate.dto.d.ts","sourceRoot":"","sources":["../../../src/paginate/dto/log.paginate.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAI7D,qBACa,cAAe,SAAQ,mBAAmB;IAOnD,MAAM,CAAC,EAAE,SAAS,CAAA;CACrB"}
@@ -0,0 +1,29 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { AbstractPaginateDto, LogFilter } from "@app/common";
12
+ import { IsObject, IsOptional, ValidateNested } from "class-validator";
13
+ import { Type } from "class-transformer";
14
+ let LogPaginateDto = class LogPaginateDto extends AbstractPaginateDto {
15
+ filter;
16
+ };
17
+ __decorate([
18
+ IsObject({ each: true }),
19
+ Field(() => LogFilter, { nullable: true }),
20
+ ValidateNested(),
21
+ Type(() => LogFilter),
22
+ IsOptional(),
23
+ __metadata("design:type", LogFilter)
24
+ ], LogPaginateDto.prototype, "filter", void 0);
25
+ LogPaginateDto = __decorate([
26
+ InputType()
27
+ ], LogPaginateDto);
28
+ export { LogPaginateDto };
29
+ //# sourceMappingURL=log.paginate.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log.paginate.dto.js","sourceRoot":"","sources":["../../../src/paginate/dto/log.paginate.dto.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAGlC,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,mBAAmB;IAOnD,MAAM,CAAY;CACrB,CAAA;AADG;IALC,QAAQ,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,KAAK,CAAC,GAAG,EAAE,CAAC,SAAS,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1C,cAAc,EAAE;IAChB,IAAI,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC;IACrB,UAAU,EAAE;8BACJ,SAAS;8CAAA;AAPT,cAAc;IAD1B,SAAS,EAAE;GACC,cAAc,CAQ1B"}
@@ -0,0 +1,5 @@
1
+ import { AbstractPaginateDto, MemberFilter } from "@app/common";
2
+ export declare class MemberPaginateDto extends AbstractPaginateDto {
3
+ filter?: MemberFilter;
4
+ }
5
+ //# sourceMappingURL=member.paginate.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"member.paginate.dto.d.ts","sourceRoot":"","sources":["../../../src/paginate/dto/member.paginate.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAIhE,qBACa,iBAAkB,SAAQ,mBAAmB;IAOtD,MAAM,CAAC,EAAE,YAAY,CAAA;CACxB"}
@@ -0,0 +1,29 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { AbstractPaginateDto, MemberFilter } from "@app/common";
12
+ import { IsObject, IsOptional, ValidateNested } from "class-validator";
13
+ import { Type } from "class-transformer";
14
+ let MemberPaginateDto = class MemberPaginateDto extends AbstractPaginateDto {
15
+ filter;
16
+ };
17
+ __decorate([
18
+ IsObject({ each: true }),
19
+ Field(() => MemberFilter, { nullable: true }),
20
+ ValidateNested(),
21
+ Type(() => MemberFilter),
22
+ IsOptional(),
23
+ __metadata("design:type", MemberFilter)
24
+ ], MemberPaginateDto.prototype, "filter", void 0);
25
+ MemberPaginateDto = __decorate([
26
+ InputType()
27
+ ], MemberPaginateDto);
28
+ export { MemberPaginateDto };
29
+ //# sourceMappingURL=member.paginate.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"member.paginate.dto.js","sourceRoot":"","sources":["../../../src/paginate/dto/member.paginate.dto.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAGlC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,mBAAmB;IAOtD,MAAM,CAAe;CACxB,CAAA;AADG;IALC,QAAQ,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,KAAK,CAAC,GAAG,EAAE,CAAC,YAAY,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,cAAc,EAAE;IAChB,IAAI,CAAC,GAAG,EAAE,CAAC,YAAY,CAAC;IACxB,UAAU,EAAE;8BACJ,YAAY;iDAAA;AAPZ,iBAAiB;IAD7B,SAAS,EAAE;GACC,iBAAiB,CAQ7B"}
@@ -0,0 +1,5 @@
1
+ import { AbstractPaginateDto, NewsFilter } from "@app/common";
2
+ export declare class NewsPaginateDto extends AbstractPaginateDto {
3
+ filter?: NewsFilter;
4
+ }
5
+ //# sourceMappingURL=news.paginate.dto.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"news.paginate.dto.d.ts","sourceRoot":"","sources":["../../../src/paginate/dto/news.paginate.dto.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAI9D,qBACa,eAAgB,SAAQ,mBAAmB;IAOpD,MAAM,CAAC,EAAE,UAAU,CAAA;CACtB"}
@@ -0,0 +1,29 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Field, InputType } from "@nestjs/graphql";
11
+ import { AbstractPaginateDto, NewsFilter } from "@app/common";
12
+ import { IsObject, IsOptional, ValidateNested } from "class-validator";
13
+ import { Type } from "class-transformer";
14
+ let NewsPaginateDto = class NewsPaginateDto extends AbstractPaginateDto {
15
+ filter;
16
+ };
17
+ __decorate([
18
+ IsObject({ each: true }),
19
+ Field(() => NewsFilter, { nullable: true }),
20
+ ValidateNested(),
21
+ Type(() => NewsFilter),
22
+ IsOptional(),
23
+ __metadata("design:type", NewsFilter)
24
+ ], NewsPaginateDto.prototype, "filter", void 0);
25
+ NewsPaginateDto = __decorate([
26
+ InputType()
27
+ ], NewsPaginateDto);
28
+ export { NewsPaginateDto };
29
+ //# sourceMappingURL=news.paginate.dto.js.map