@arken/seer-protocol 0.1.4 → 0.1.5

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 (348) hide show
  1. package/.rush/temp/shrinkwrap-deps.json +10 -3
  2. package/build/area/area.models.d.ts +6 -0
  3. package/build/area/area.models.js +11 -0
  4. package/build/area/area.models.js.map +1 -0
  5. package/build/area/area.router.d.ts +274 -0
  6. package/build/area/area.router.js +59 -0
  7. package/build/area/area.router.js.map +1 -0
  8. package/build/area/area.schema.d.ts +241 -0
  9. package/build/area/area.schema.js +13 -0
  10. package/build/area/area.schema.js.map +1 -0
  11. package/build/area/area.types.d.ts +19 -0
  12. package/build/area/area.types.js +2 -0
  13. package/build/area/area.types.js.map +1 -0
  14. package/build/area/index.d.ts +4 -0
  15. package/build/area/index.js +5 -0
  16. package/build/area/index.js.map +1 -0
  17. package/build/asset/asset.models.d.ts +5 -0
  18. package/build/asset/asset.models.js +44 -0
  19. package/build/asset/asset.models.js.map +1 -0
  20. package/build/asset/asset.router.d.ts +189 -0
  21. package/build/asset/asset.router.js +41 -0
  22. package/build/asset/asset.router.js.map +1 -0
  23. package/build/asset/asset.schema.d.ts +204 -0
  24. package/build/asset/asset.schema.js +22 -0
  25. package/build/asset/asset.schema.js.map +1 -0
  26. package/build/asset/asset.types.d.ts +16 -0
  27. package/build/asset/asset.types.js +2 -0
  28. package/build/asset/asset.types.js.map +1 -0
  29. package/build/asset/index.d.ts +4 -0
  30. package/build/asset/index.js +5 -0
  31. package/build/asset/index.js.map +1 -0
  32. package/build/chain/chain.models.d.ts +6 -0
  33. package/build/chain/chain.models.js +42 -0
  34. package/build/chain/chain.models.js.map +1 -0
  35. package/build/chain/chain.router.d.ts +364 -0
  36. package/build/chain/chain.router.js +84 -0
  37. package/build/chain/chain.router.js.map +1 -0
  38. package/build/chain/chain.schema.d.ts +317 -0
  39. package/build/chain/chain.schema.js +56 -0
  40. package/build/chain/chain.schema.js.map +1 -0
  41. package/build/chain/chain.types.d.ts +19 -0
  42. package/build/chain/chain.types.js +2 -0
  43. package/build/chain/chain.types.js.map +1 -0
  44. package/build/chain/index.d.ts +4 -0
  45. package/build/chain/index.js +5 -0
  46. package/build/chain/index.js.map +1 -0
  47. package/build/character/character.models.d.ts +14 -0
  48. package/build/character/character.models.js +123 -0
  49. package/build/character/character.models.js.map +1 -0
  50. package/build/character/character.router.d.ts +945 -0
  51. package/build/character/character.router.js +246 -0
  52. package/build/character/character.router.js.map +1 -0
  53. package/build/character/character.schema.d.ts +1223 -0
  54. package/build/character/character.schema.js +70 -0
  55. package/build/character/character.schema.js.map +1 -0
  56. package/build/character/character.types.d.ts +47 -0
  57. package/build/character/character.types.js +2 -0
  58. package/build/character/character.types.js.map +1 -0
  59. package/build/character/index.d.ts +4 -0
  60. package/build/character/index.js +5 -0
  61. package/build/character/index.js.map +1 -0
  62. package/build/chat/chat.models.d.ts +4 -0
  63. package/build/chat/chat.models.js +35 -0
  64. package/build/chat/chat.models.js.map +1 -0
  65. package/build/chat/chat.router.d.ts +223 -0
  66. package/build/chat/chat.router.js +51 -0
  67. package/build/chat/chat.router.js.map +1 -0
  68. package/build/chat/chat.schema.d.ts +179 -0
  69. package/build/chat/chat.schema.js +32 -0
  70. package/build/chat/chat.schema.js.map +1 -0
  71. package/build/chat/chat.types.d.ts +13 -0
  72. package/build/chat/chat.types.js +2 -0
  73. package/build/chat/chat.types.js.map +1 -0
  74. package/build/chat/index.d.ts +4 -0
  75. package/build/chat/index.js +5 -0
  76. package/build/chat/index.js.map +1 -0
  77. package/build/collection/collection.models.d.ts +9 -0
  78. package/build/collection/collection.models.js +69 -0
  79. package/build/collection/collection.models.js.map +1 -0
  80. package/build/collection/collection.router.d.ts +361 -0
  81. package/build/collection/collection.router.js +71 -0
  82. package/build/collection/collection.router.js.map +1 -0
  83. package/build/collection/collection.schema.d.ts +660 -0
  84. package/build/collection/collection.schema.js +70 -0
  85. package/build/collection/collection.schema.js.map +1 -0
  86. package/build/collection/collection.types.d.ts +28 -0
  87. package/build/collection/collection.types.js +2 -0
  88. package/build/collection/collection.types.js.map +1 -0
  89. package/build/collection/index.d.ts +4 -0
  90. package/build/collection/index.js +5 -0
  91. package/build/collection/index.js.map +1 -0
  92. package/build/core/core.models.d.ts +123 -0
  93. package/build/core/core.models.js +811 -0
  94. package/build/core/core.models.js.map +1 -0
  95. package/build/core/core.router.d.ts +5297 -0
  96. package/build/core/core.router.js +1372 -0
  97. package/build/core/core.router.js.map +1 -0
  98. package/build/core/core.schema.d.ts +5808 -0
  99. package/build/core/core.schema.js +612 -0
  100. package/build/core/core.schema.js.map +1 -0
  101. package/build/core/core.types.d.ts +250 -0
  102. package/build/core/core.types.js +2 -0
  103. package/build/core/core.types.js.map +1 -0
  104. package/build/core/index.d.ts +4 -0
  105. package/build/core/index.js +5 -0
  106. package/build/core/index.js.map +1 -0
  107. package/build/evolution/evolution.models.d.ts +1 -0
  108. package/build/evolution/evolution.models.js +3 -0
  109. package/build/evolution/evolution.models.js.map +1 -0
  110. package/build/evolution/evolution.router.d.ts +244 -0
  111. package/build/evolution/evolution.router.js +112 -0
  112. package/build/evolution/evolution.router.js.map +1 -0
  113. package/build/evolution/evolution.schema.d.ts +1 -0
  114. package/build/evolution/evolution.schema.js +2 -0
  115. package/build/evolution/evolution.schema.js.map +1 -0
  116. package/build/evolution/evolution.types.d.ts +3 -0
  117. package/build/evolution/evolution.types.js +2 -0
  118. package/build/evolution/evolution.types.js.map +1 -0
  119. package/build/evolution/index.d.ts +4 -0
  120. package/build/evolution/index.js +4 -0
  121. package/build/evolution/index.js.map +1 -0
  122. package/build/game/game.models.d.ts +6 -0
  123. package/build/game/game.models.js +29 -0
  124. package/build/game/game.models.js.map +1 -0
  125. package/build/game/game.router.d.ts +428 -0
  126. package/build/game/game.router.js +90 -0
  127. package/build/game/game.router.js.map +1 -0
  128. package/build/game/game.schema.d.ts +339 -0
  129. package/build/game/game.schema.js +14 -0
  130. package/build/game/game.schema.js.map +1 -0
  131. package/build/game/game.types.d.ts +19 -0
  132. package/build/game/game.types.js +2 -0
  133. package/build/game/game.types.js.map +1 -0
  134. package/build/game/index.d.ts +4 -0
  135. package/build/game/index.js +4 -0
  136. package/build/game/index.js.map +1 -0
  137. package/build/index.d.ts +30 -0
  138. package/build/index.js +26 -0
  139. package/build/index.js.map +1 -0
  140. package/build/infinite/index.d.ts +4 -0
  141. package/build/infinite/index.js +4 -0
  142. package/build/infinite/index.js.map +1 -0
  143. package/build/infinite/infinite.models.d.ts +1 -0
  144. package/build/infinite/infinite.models.js +3 -0
  145. package/build/infinite/infinite.models.js.map +1 -0
  146. package/build/infinite/infinite.router.d.ts +95 -0
  147. package/build/infinite/infinite.router.js +40 -0
  148. package/build/infinite/infinite.router.js.map +1 -0
  149. package/build/infinite/infinite.schema.d.ts +1 -0
  150. package/build/infinite/infinite.schema.js +2 -0
  151. package/build/infinite/infinite.schema.js.map +1 -0
  152. package/build/infinite/infinite.types.d.ts +3 -0
  153. package/build/infinite/infinite.types.js +2 -0
  154. package/build/infinite/infinite.types.js.map +1 -0
  155. package/build/interface/index.d.ts +4 -0
  156. package/build/interface/index.js +5 -0
  157. package/build/interface/index.js.map +1 -0
  158. package/build/interface/interface.canonicalize.d.ts +2 -0
  159. package/build/interface/interface.canonicalize.js +241 -0
  160. package/build/interface/interface.canonicalize.js.map +1 -0
  161. package/build/interface/interface.models.d.ts +6 -0
  162. package/build/interface/interface.models.js +30 -0
  163. package/build/interface/interface.models.js.map +1 -0
  164. package/build/interface/interface.router.d.ts +472 -0
  165. package/build/interface/interface.router.js +113 -0
  166. package/build/interface/interface.router.js.map +1 -0
  167. package/build/interface/interface.schema.d.ts +305 -0
  168. package/build/interface/interface.schema.js +36 -0
  169. package/build/interface/interface.schema.js.map +1 -0
  170. package/build/interface/interface.types.d.ts +18 -0
  171. package/build/interface/interface.types.js +2 -0
  172. package/build/interface/interface.types.js.map +1 -0
  173. package/build/isles/index.d.ts +4 -0
  174. package/build/isles/index.js +4 -0
  175. package/build/isles/index.js.map +1 -0
  176. package/build/isles/isles.models.d.ts +1 -0
  177. package/build/isles/isles.models.js +3 -0
  178. package/build/isles/isles.models.js.map +1 -0
  179. package/build/isles/isles.router.d.ts +95 -0
  180. package/build/isles/isles.router.js +40 -0
  181. package/build/isles/isles.router.js.map +1 -0
  182. package/build/isles/isles.schema.d.ts +1 -0
  183. package/build/isles/isles.schema.js +2 -0
  184. package/build/isles/isles.schema.js.map +1 -0
  185. package/build/isles/isles.types.d.ts +3 -0
  186. package/build/isles/isles.types.js +2 -0
  187. package/build/isles/isles.types.js.map +1 -0
  188. package/build/item/index.d.ts +4 -0
  189. package/build/item/index.js +5 -0
  190. package/build/item/index.js.map +1 -0
  191. package/build/item/item.models.d.ts +16 -0
  192. package/build/item/item.models.js +101 -0
  193. package/build/item/item.models.js.map +1 -0
  194. package/build/item/item.router.d.ts +263 -0
  195. package/build/item/item.router.js +70 -0
  196. package/build/item/item.router.js.map +1 -0
  197. package/build/item/item.schema.d.ts +765 -0
  198. package/build/item/item.schema.js +86 -0
  199. package/build/item/item.schema.js.map +1 -0
  200. package/build/item/item.types.d.ts +54 -0
  201. package/build/item/item.types.js +2 -0
  202. package/build/item/item.types.js.map +1 -0
  203. package/build/job/index.d.ts +4 -0
  204. package/build/job/index.js +5 -0
  205. package/build/job/index.js.map +1 -0
  206. package/build/job/job.models.d.ts +3 -0
  207. package/build/job/job.models.js +9 -0
  208. package/build/job/job.models.js.map +1 -0
  209. package/build/job/job.router.d.ts +146 -0
  210. package/build/job/job.router.js +32 -0
  211. package/build/job/job.router.js.map +1 -0
  212. package/build/job/job.schema.d.ts +66 -0
  213. package/build/job/job.schema.js +7 -0
  214. package/build/job/job.schema.js.map +1 -0
  215. package/build/job/job.types.d.ts +15 -0
  216. package/build/job/job.types.js +2 -0
  217. package/build/job/job.types.js.map +1 -0
  218. package/build/market/index.d.ts +4 -0
  219. package/build/market/index.js +5 -0
  220. package/build/market/index.js.map +1 -0
  221. package/build/market/market.models.d.ts +14 -0
  222. package/build/market/market.models.js +98 -0
  223. package/build/market/market.models.js.map +1 -0
  224. package/build/market/market.router.d.ts +230 -0
  225. package/build/market/market.router.js +56 -0
  226. package/build/market/market.router.js.map +1 -0
  227. package/build/market/market.schema.d.ts +937 -0
  228. package/build/market/market.schema.js +110 -0
  229. package/build/market/market.schema.js.map +1 -0
  230. package/build/market/market.types.d.ts +48 -0
  231. package/build/market/market.types.js +2 -0
  232. package/build/market/market.types.js.map +1 -0
  233. package/build/oasis/index.d.ts +4 -0
  234. package/build/oasis/index.js +4 -0
  235. package/build/oasis/index.js.map +1 -0
  236. package/build/oasis/oasis.models.d.ts +1 -0
  237. package/build/oasis/oasis.models.js +3 -0
  238. package/build/oasis/oasis.models.js.map +1 -0
  239. package/build/oasis/oasis.router.d.ts +91 -0
  240. package/build/oasis/oasis.router.js +52 -0
  241. package/build/oasis/oasis.router.js.map +1 -0
  242. package/build/oasis/oasis.schema.d.ts +1 -0
  243. package/build/oasis/oasis.schema.js +2 -0
  244. package/build/oasis/oasis.schema.js.map +1 -0
  245. package/build/oasis/oasis.types.d.ts +3 -0
  246. package/build/oasis/oasis.types.js +2 -0
  247. package/build/oasis/oasis.types.js.map +1 -0
  248. package/build/package.json +29 -0
  249. package/build/product/index.d.ts +4 -0
  250. package/build/product/index.js +5 -0
  251. package/build/product/index.js.map +1 -0
  252. package/build/product/product.models.d.ts +4 -0
  253. package/build/product/product.models.js +113 -0
  254. package/build/product/product.models.js.map +1 -0
  255. package/build/product/product.router.d.ts +447 -0
  256. package/build/product/product.router.js +71 -0
  257. package/build/product/product.router.js.map +1 -0
  258. package/build/product/product.schema.d.ts +640 -0
  259. package/build/product/product.schema.js +154 -0
  260. package/build/product/product.schema.js.map +1 -0
  261. package/build/product/product.types.d.ts +27 -0
  262. package/build/product/product.types.js +2 -0
  263. package/build/product/product.types.js.map +1 -0
  264. package/build/profile/index.d.ts +4 -0
  265. package/build/profile/index.js +5 -0
  266. package/build/profile/index.js.map +1 -0
  267. package/build/profile/profile.models.d.ts +2 -0
  268. package/build/profile/profile.models.js +165 -0
  269. package/build/profile/profile.models.js.map +1 -0
  270. package/build/profile/profile.router.d.ts +163 -0
  271. package/build/profile/profile.router.js +54 -0
  272. package/build/profile/profile.router.js.map +1 -0
  273. package/build/profile/profile.schema.d.ts +1 -0
  274. package/build/profile/profile.schema.js +201 -0
  275. package/build/profile/profile.schema.js.map +1 -0
  276. package/build/profile/profile.types.d.ts +15 -0
  277. package/build/profile/profile.types.js +2 -0
  278. package/build/profile/profile.types.js.map +1 -0
  279. package/build/raffle/index.d.ts +4 -0
  280. package/build/raffle/index.js +5 -0
  281. package/build/raffle/index.js.map +1 -0
  282. package/build/raffle/raffle.models.d.ts +6 -0
  283. package/build/raffle/raffle.models.js +36 -0
  284. package/build/raffle/raffle.models.js.map +1 -0
  285. package/build/raffle/raffle.router.d.ts +299 -0
  286. package/build/raffle/raffle.router.js +71 -0
  287. package/build/raffle/raffle.router.js.map +1 -0
  288. package/build/raffle/raffle.schema.d.ts +261 -0
  289. package/build/raffle/raffle.schema.js +21 -0
  290. package/build/raffle/raffle.schema.js.map +1 -0
  291. package/build/raffle/raffle.types.d.ts +24 -0
  292. package/build/raffle/raffle.types.js +2 -0
  293. package/build/raffle/raffle.types.js.map +1 -0
  294. package/build/router.d.ts +10755 -0
  295. package/build/router.js +87 -0
  296. package/build/router.js.map +1 -0
  297. package/build/schema.d.ts +279 -0
  298. package/build/schema.js +157 -0
  299. package/build/schema.js.map +1 -0
  300. package/build/skill/index.d.ts +4 -0
  301. package/build/skill/index.js +5 -0
  302. package/build/skill/index.js.map +1 -0
  303. package/build/skill/skill.models.d.ts +9 -0
  304. package/build/skill/skill.models.js +9 -0
  305. package/build/skill/skill.models.js.map +1 -0
  306. package/build/skill/skill.router.d.ts +659 -0
  307. package/build/skill/skill.router.js +152 -0
  308. package/build/skill/skill.router.js.map +1 -0
  309. package/build/skill/skill.schema.d.ts +536 -0
  310. package/build/skill/skill.schema.js +38 -0
  311. package/build/skill/skill.schema.js.map +1 -0
  312. package/build/skill/skill.types.d.ts +28 -0
  313. package/build/skill/skill.types.js +2 -0
  314. package/build/skill/skill.types.js.map +1 -0
  315. package/build/trek/index.d.ts +4 -0
  316. package/build/trek/index.js +4 -0
  317. package/build/trek/index.js.map +1 -0
  318. package/build/trek/trek.models.d.ts +1 -0
  319. package/build/trek/trek.models.js +2 -0
  320. package/build/trek/trek.models.js.map +1 -0
  321. package/build/trek/trek.router.d.ts +86 -0
  322. package/build/trek/trek.router.js +43 -0
  323. package/build/trek/trek.router.js.map +1 -0
  324. package/build/trek/trek.schema.d.ts +1 -0
  325. package/build/trek/trek.schema.js +2 -0
  326. package/build/trek/trek.schema.js.map +1 -0
  327. package/build/trek/trek.types.d.ts +1 -0
  328. package/build/trek/trek.types.js +2 -0
  329. package/build/trek/trek.types.js.map +1 -0
  330. package/build/types.d.ts +187 -0
  331. package/build/types.js +29 -0
  332. package/build/types.js.map +1 -0
  333. package/build/video/index.d.ts +4 -0
  334. package/build/video/index.js +5 -0
  335. package/build/video/index.js.map +1 -0
  336. package/build/video/video.models.d.ts +7 -0
  337. package/build/video/video.models.js +19 -0
  338. package/build/video/video.models.js.map +1 -0
  339. package/build/video/video.router.d.ts +563 -0
  340. package/build/video/video.router.js +112 -0
  341. package/build/video/video.router.js.map +1 -0
  342. package/build/video/video.schema.d.ts +446 -0
  343. package/build/video/video.schema.js +31 -0
  344. package/build/video/video.schema.js.map +1 -0
  345. package/build/video/video.types.d.ts +27 -0
  346. package/build/video/video.types.js +2 -0
  347. package/build/video/video.types.js.map +1 -0
  348. package/package.json +11 -4
@@ -0,0 +1,640 @@
1
+ export declare const Product: import("zod").ZodObject<{
2
+ key: import("zod").ZodOptional<import("zod").ZodString>;
3
+ name: import("zod").ZodOptional<import("zod").ZodString>;
4
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5
+ applicationId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
6
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
7
+ data: import("zod").ZodAny;
8
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
9
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
10
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
11
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
12
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
13
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
14
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
15
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
16
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
17
+ } & {
18
+ shortDescription: import("zod").ZodString;
19
+ content: import("zod").ZodString;
20
+ communityId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
21
+ type: import("zod").ZodDefault<import("zod").ZodString>;
22
+ releaseDate: import("zod").ZodOptional<import("zod").ZodDate>;
23
+ sku: import("zod").ZodString;
24
+ categoryId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
25
+ price: import("zod").ZodNumber;
26
+ discountPrice: import("zod").ZodOptional<import("zod").ZodNumber>;
27
+ currency: import("zod").ZodString;
28
+ images: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
29
+ videos: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
30
+ digitalContent: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
31
+ url: import("zod").ZodString;
32
+ size: import("zod").ZodNumber;
33
+ drm: import("zod").ZodOptional<import("zod").ZodEnum<["None", "Steam", "Epic", "Uplay", "Origin"]>>;
34
+ }, "strip", import("zod").ZodTypeAny, {
35
+ size?: number;
36
+ url?: string;
37
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
38
+ }, {
39
+ size?: number;
40
+ url?: string;
41
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
42
+ }>, "many">>;
43
+ dlcs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">>;
44
+ bundles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">>;
45
+ achievements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
46
+ name: import("zod").ZodString;
47
+ description: import("zod").ZodOptional<import("zod").ZodString>;
48
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
49
+ }, "strip", import("zod").ZodTypeAny, {
50
+ name?: string;
51
+ description?: string;
52
+ icon?: string;
53
+ }, {
54
+ name?: string;
55
+ description?: string;
56
+ icon?: string;
57
+ }>, "many">>;
58
+ reviews: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
59
+ userId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
60
+ rating: import("zod").ZodNumber;
61
+ comment: import("zod").ZodOptional<import("zod").ZodString>;
62
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
63
+ }, "strip", import("zod").ZodTypeAny, {
64
+ comment?: string;
65
+ createdDate?: Date;
66
+ rating?: number;
67
+ userId?: string | import("mongoose").Types.ObjectId;
68
+ }, {
69
+ comment?: string;
70
+ createdDate?: Date;
71
+ rating?: number;
72
+ userId?: string | import("mongoose").Types.ObjectId;
73
+ }>, "many">>;
74
+ cloudSave: import("zod").ZodDefault<import("zod").ZodBoolean>;
75
+ ugcSupport: import("zod").ZodDefault<import("zod").ZodBoolean>;
76
+ wishlistCount: import("zod").ZodDefault<import("zod").ZodNumber>;
77
+ parentId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
78
+ score: import("zod").ZodOptional<import("zod").ZodNumber>;
79
+ ownerId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
80
+ ratingId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
81
+ ideaId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
82
+ meta: import("zod").ZodOptional<import("zod").ZodObject<{
83
+ name: import("zod").ZodString;
84
+ members: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">;
85
+ isProposal: import("zod").ZodBoolean;
86
+ price: import("zod").ZodNumber;
87
+ oldPrice: import("zod").ZodOptional<import("zod").ZodNumber>;
88
+ images: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>;
89
+ video: import("zod").ZodString;
90
+ genre: import("zod").ZodString;
91
+ releaseDate: import("zod").ZodString;
92
+ developer: import("zod").ZodString;
93
+ publisher: import("zod").ZodString;
94
+ developerTags: import("zod").ZodArray<import("zod").ZodString, "many">;
95
+ languageSupport: import("zod").ZodArray<import("zod").ZodAny, "many">;
96
+ systemRequirements: import("zod").ZodArray<import("zod").ZodAny, "many">;
97
+ tags: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">;
98
+ type: import("zod").ZodString;
99
+ downloads: import("zod").ZodNumber;
100
+ plans: import("zod").ZodArray<import("zod").ZodAny, "many">;
101
+ frequentlyTradedAssets: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">;
102
+ saleBox: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>;
103
+ assets: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">;
104
+ community: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>;
105
+ nameUrl: import("zod").ZodString;
106
+ steamId: import("zod").ZodNumber;
107
+ author: import("zod").ZodString;
108
+ }, "strip", import("zod").ZodTypeAny, {
109
+ name?: string;
110
+ type?: string;
111
+ tags?: (string | import("mongoose").Types.ObjectId)[];
112
+ assets?: (string | import("mongoose").Types.ObjectId)[];
113
+ price?: number;
114
+ members?: (string | import("mongoose").Types.ObjectId)[];
115
+ video?: string;
116
+ releaseDate?: string;
117
+ isProposal?: boolean;
118
+ oldPrice?: number;
119
+ images?: Record<string, any>;
120
+ genre?: string;
121
+ developer?: string;
122
+ publisher?: string;
123
+ developerTags?: string[];
124
+ languageSupport?: any[];
125
+ systemRequirements?: any[];
126
+ downloads?: number;
127
+ plans?: any[];
128
+ frequentlyTradedAssets?: (string | import("mongoose").Types.ObjectId)[];
129
+ saleBox?: Record<string, any>;
130
+ community?: Record<string, any>;
131
+ nameUrl?: string;
132
+ steamId?: number;
133
+ author?: string;
134
+ }, {
135
+ name?: string;
136
+ type?: string;
137
+ tags?: (string | import("mongoose").Types.ObjectId)[];
138
+ assets?: (string | import("mongoose").Types.ObjectId)[];
139
+ price?: number;
140
+ members?: (string | import("mongoose").Types.ObjectId)[];
141
+ video?: string;
142
+ releaseDate?: string;
143
+ isProposal?: boolean;
144
+ oldPrice?: number;
145
+ images?: Record<string, any>;
146
+ genre?: string;
147
+ developer?: string;
148
+ publisher?: string;
149
+ developerTags?: string[];
150
+ languageSupport?: any[];
151
+ systemRequirements?: any[];
152
+ downloads?: number;
153
+ plans?: any[];
154
+ frequentlyTradedAssets?: (string | import("mongoose").Types.ObjectId)[];
155
+ saleBox?: Record<string, any>;
156
+ community?: Record<string, any>;
157
+ nameUrl?: string;
158
+ steamId?: number;
159
+ author?: string;
160
+ }>>;
161
+ }, "strip", import("zod").ZodTypeAny, {
162
+ name?: string;
163
+ key?: string;
164
+ id?: string | import("mongoose").Types.ObjectId;
165
+ data?: any;
166
+ type?: string;
167
+ description?: string;
168
+ applicationId?: string | import("mongoose").Types.ObjectId;
169
+ createdDate?: Date;
170
+ updatedDate?: Date;
171
+ status?: "Active" | "Paused" | "Pending" | "Archived";
172
+ ownerId?: string | import("mongoose").Types.ObjectId;
173
+ meta?: {
174
+ name?: string;
175
+ type?: string;
176
+ tags?: (string | import("mongoose").Types.ObjectId)[];
177
+ assets?: (string | import("mongoose").Types.ObjectId)[];
178
+ price?: number;
179
+ members?: (string | import("mongoose").Types.ObjectId)[];
180
+ video?: string;
181
+ releaseDate?: string;
182
+ isProposal?: boolean;
183
+ oldPrice?: number;
184
+ images?: Record<string, any>;
185
+ genre?: string;
186
+ developer?: string;
187
+ publisher?: string;
188
+ developerTags?: string[];
189
+ languageSupport?: any[];
190
+ systemRequirements?: any[];
191
+ downloads?: number;
192
+ plans?: any[];
193
+ frequentlyTradedAssets?: (string | import("mongoose").Types.ObjectId)[];
194
+ saleBox?: Record<string, any>;
195
+ community?: Record<string, any>;
196
+ nameUrl?: string;
197
+ steamId?: number;
198
+ author?: string;
199
+ };
200
+ merkleLeaf?: string;
201
+ merkleIndex?: number;
202
+ createdById?: string | import("mongoose").Types.ObjectId;
203
+ editedById?: string | import("mongoose").Types.ObjectId;
204
+ deletedById?: string | import("mongoose").Types.ObjectId;
205
+ deletedDate?: Date;
206
+ shortDescription?: string;
207
+ parentId?: string | import("mongoose").Types.ObjectId;
208
+ content?: string;
209
+ price?: number;
210
+ ratingId?: string | import("mongoose").Types.ObjectId;
211
+ releaseDate?: Date;
212
+ achievements?: {
213
+ name?: string;
214
+ description?: string;
215
+ icon?: string;
216
+ }[];
217
+ communityId?: string | import("mongoose").Types.ObjectId;
218
+ score?: number;
219
+ reviews?: {
220
+ comment?: string;
221
+ createdDate?: Date;
222
+ rating?: number;
223
+ userId?: string | import("mongoose").Types.ObjectId;
224
+ }[];
225
+ currency?: string;
226
+ images?: string[];
227
+ sku?: string;
228
+ categoryId?: string | import("mongoose").Types.ObjectId;
229
+ discountPrice?: number;
230
+ videos?: string[];
231
+ digitalContent?: {
232
+ size?: number;
233
+ url?: string;
234
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
235
+ }[];
236
+ dlcs?: (string | import("mongoose").Types.ObjectId)[];
237
+ bundles?: (string | import("mongoose").Types.ObjectId)[];
238
+ cloudSave?: boolean;
239
+ ugcSupport?: boolean;
240
+ wishlistCount?: number;
241
+ ideaId?: string | import("mongoose").Types.ObjectId;
242
+ }, {
243
+ name?: string;
244
+ key?: string;
245
+ id?: string | import("mongoose").Types.ObjectId;
246
+ data?: any;
247
+ type?: string;
248
+ description?: string;
249
+ applicationId?: string | import("mongoose").Types.ObjectId;
250
+ createdDate?: Date;
251
+ updatedDate?: Date;
252
+ status?: "Active" | "Paused" | "Pending" | "Archived";
253
+ ownerId?: string | import("mongoose").Types.ObjectId;
254
+ meta?: {
255
+ name?: string;
256
+ type?: string;
257
+ tags?: (string | import("mongoose").Types.ObjectId)[];
258
+ assets?: (string | import("mongoose").Types.ObjectId)[];
259
+ price?: number;
260
+ members?: (string | import("mongoose").Types.ObjectId)[];
261
+ video?: string;
262
+ releaseDate?: string;
263
+ isProposal?: boolean;
264
+ oldPrice?: number;
265
+ images?: Record<string, any>;
266
+ genre?: string;
267
+ developer?: string;
268
+ publisher?: string;
269
+ developerTags?: string[];
270
+ languageSupport?: any[];
271
+ systemRequirements?: any[];
272
+ downloads?: number;
273
+ plans?: any[];
274
+ frequentlyTradedAssets?: (string | import("mongoose").Types.ObjectId)[];
275
+ saleBox?: Record<string, any>;
276
+ community?: Record<string, any>;
277
+ nameUrl?: string;
278
+ steamId?: number;
279
+ author?: string;
280
+ };
281
+ merkleLeaf?: string;
282
+ merkleIndex?: number;
283
+ createdById?: string | import("mongoose").Types.ObjectId;
284
+ editedById?: string | import("mongoose").Types.ObjectId;
285
+ deletedById?: string | import("mongoose").Types.ObjectId;
286
+ deletedDate?: Date;
287
+ shortDescription?: string;
288
+ parentId?: string | import("mongoose").Types.ObjectId;
289
+ content?: string;
290
+ price?: number;
291
+ ratingId?: string | import("mongoose").Types.ObjectId;
292
+ releaseDate?: Date;
293
+ achievements?: {
294
+ name?: string;
295
+ description?: string;
296
+ icon?: string;
297
+ }[];
298
+ communityId?: string | import("mongoose").Types.ObjectId;
299
+ score?: number;
300
+ reviews?: {
301
+ comment?: string;
302
+ createdDate?: Date;
303
+ rating?: number;
304
+ userId?: string | import("mongoose").Types.ObjectId;
305
+ }[];
306
+ currency?: string;
307
+ images?: string[];
308
+ sku?: string;
309
+ categoryId?: string | import("mongoose").Types.ObjectId;
310
+ discountPrice?: number;
311
+ videos?: string[];
312
+ digitalContent?: {
313
+ size?: number;
314
+ url?: string;
315
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
316
+ }[];
317
+ dlcs?: (string | import("mongoose").Types.ObjectId)[];
318
+ bundles?: (string | import("mongoose").Types.ObjectId)[];
319
+ cloudSave?: boolean;
320
+ ugcSupport?: boolean;
321
+ wishlistCount?: number;
322
+ ideaId?: string | import("mongoose").Types.ObjectId;
323
+ }>;
324
+ export declare const ProductDLC: import("zod").ZodObject<{
325
+ key: import("zod").ZodOptional<import("zod").ZodString>;
326
+ applicationId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
327
+ ownerId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
328
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
329
+ meta: import("zod").ZodAny;
330
+ data: import("zod").ZodAny;
331
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
332
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
333
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
334
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
335
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
336
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
337
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
338
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
339
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
340
+ } & {
341
+ name: import("zod").ZodString;
342
+ description: import("zod").ZodOptional<import("zod").ZodString>;
343
+ gameId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
344
+ price: import("zod").ZodNumber;
345
+ discountPrice: import("zod").ZodOptional<import("zod").ZodNumber>;
346
+ currency: import("zod").ZodString;
347
+ digitalContent: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
348
+ url: import("zod").ZodString;
349
+ size: import("zod").ZodNumber;
350
+ drm: import("zod").ZodOptional<import("zod").ZodEnum<["None", "Steam", "Epic", "Uplay", "Origin"]>>;
351
+ }, "strip", import("zod").ZodTypeAny, {
352
+ size?: number;
353
+ url?: string;
354
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
355
+ }, {
356
+ size?: number;
357
+ url?: string;
358
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
359
+ }>, "many">>;
360
+ achievements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
361
+ name: import("zod").ZodString;
362
+ description: import("zod").ZodOptional<import("zod").ZodString>;
363
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
364
+ }, "strip", import("zod").ZodTypeAny, {
365
+ name?: string;
366
+ description?: string;
367
+ icon?: string;
368
+ }, {
369
+ name?: string;
370
+ description?: string;
371
+ icon?: string;
372
+ }>, "many">>;
373
+ }, "strip", import("zod").ZodTypeAny, {
374
+ name?: string;
375
+ key?: string;
376
+ id?: string | import("mongoose").Types.ObjectId;
377
+ data?: any;
378
+ description?: string;
379
+ applicationId?: string | import("mongoose").Types.ObjectId;
380
+ createdDate?: Date;
381
+ updatedDate?: Date;
382
+ status?: "Active" | "Paused" | "Pending" | "Archived";
383
+ ownerId?: string | import("mongoose").Types.ObjectId;
384
+ meta?: any;
385
+ merkleLeaf?: string;
386
+ merkleIndex?: number;
387
+ createdById?: string | import("mongoose").Types.ObjectId;
388
+ editedById?: string | import("mongoose").Types.ObjectId;
389
+ deletedById?: string | import("mongoose").Types.ObjectId;
390
+ deletedDate?: Date;
391
+ price?: number;
392
+ achievements?: {
393
+ name?: string;
394
+ description?: string;
395
+ icon?: string;
396
+ }[];
397
+ gameId?: string | import("mongoose").Types.ObjectId;
398
+ currency?: string;
399
+ discountPrice?: number;
400
+ digitalContent?: {
401
+ size?: number;
402
+ url?: string;
403
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
404
+ }[];
405
+ }, {
406
+ name?: string;
407
+ key?: string;
408
+ id?: string | import("mongoose").Types.ObjectId;
409
+ data?: any;
410
+ description?: string;
411
+ applicationId?: string | import("mongoose").Types.ObjectId;
412
+ createdDate?: Date;
413
+ updatedDate?: Date;
414
+ status?: "Active" | "Paused" | "Pending" | "Archived";
415
+ ownerId?: string | import("mongoose").Types.ObjectId;
416
+ meta?: any;
417
+ merkleLeaf?: string;
418
+ merkleIndex?: number;
419
+ createdById?: string | import("mongoose").Types.ObjectId;
420
+ editedById?: string | import("mongoose").Types.ObjectId;
421
+ deletedById?: string | import("mongoose").Types.ObjectId;
422
+ deletedDate?: Date;
423
+ price?: number;
424
+ achievements?: {
425
+ name?: string;
426
+ description?: string;
427
+ icon?: string;
428
+ }[];
429
+ gameId?: string | import("mongoose").Types.ObjectId;
430
+ currency?: string;
431
+ discountPrice?: number;
432
+ digitalContent?: {
433
+ size?: number;
434
+ url?: string;
435
+ drm?: "None" | "Steam" | "Epic" | "Uplay" | "Origin";
436
+ }[];
437
+ }>;
438
+ export declare const ProductBundle: import("zod").ZodObject<{
439
+ key: import("zod").ZodOptional<import("zod").ZodString>;
440
+ applicationId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
441
+ ownerId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
442
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
443
+ meta: import("zod").ZodAny;
444
+ data: import("zod").ZodAny;
445
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
446
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
447
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
448
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
449
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
450
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
451
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
452
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
453
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
454
+ } & {
455
+ name: import("zod").ZodString;
456
+ description: import("zod").ZodOptional<import("zod").ZodString>;
457
+ products: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>, "many">;
458
+ price: import("zod").ZodNumber;
459
+ discountPrice: import("zod").ZodOptional<import("zod").ZodNumber>;
460
+ currency: import("zod").ZodString;
461
+ }, "strip", import("zod").ZodTypeAny, {
462
+ name?: string;
463
+ key?: string;
464
+ id?: string | import("mongoose").Types.ObjectId;
465
+ data?: any;
466
+ description?: string;
467
+ applicationId?: string | import("mongoose").Types.ObjectId;
468
+ createdDate?: Date;
469
+ updatedDate?: Date;
470
+ status?: "Active" | "Paused" | "Pending" | "Archived";
471
+ ownerId?: string | import("mongoose").Types.ObjectId;
472
+ meta?: any;
473
+ merkleLeaf?: string;
474
+ merkleIndex?: number;
475
+ createdById?: string | import("mongoose").Types.ObjectId;
476
+ editedById?: string | import("mongoose").Types.ObjectId;
477
+ deletedById?: string | import("mongoose").Types.ObjectId;
478
+ deletedDate?: Date;
479
+ price?: number;
480
+ products?: (string | import("mongoose").Types.ObjectId)[];
481
+ currency?: string;
482
+ discountPrice?: number;
483
+ }, {
484
+ name?: string;
485
+ key?: string;
486
+ id?: string | import("mongoose").Types.ObjectId;
487
+ data?: any;
488
+ description?: string;
489
+ applicationId?: string | import("mongoose").Types.ObjectId;
490
+ createdDate?: Date;
491
+ updatedDate?: Date;
492
+ status?: "Active" | "Paused" | "Pending" | "Archived";
493
+ ownerId?: string | import("mongoose").Types.ObjectId;
494
+ meta?: any;
495
+ merkleLeaf?: string;
496
+ merkleIndex?: number;
497
+ createdById?: string | import("mongoose").Types.ObjectId;
498
+ editedById?: string | import("mongoose").Types.ObjectId;
499
+ deletedById?: string | import("mongoose").Types.ObjectId;
500
+ deletedDate?: Date;
501
+ price?: number;
502
+ products?: (string | import("mongoose").Types.ObjectId)[];
503
+ currency?: string;
504
+ discountPrice?: number;
505
+ }>;
506
+ export declare const ProductReview: import("zod").ZodObject<{
507
+ key: import("zod").ZodOptional<import("zod").ZodString>;
508
+ name: import("zod").ZodOptional<import("zod").ZodString>;
509
+ description: import("zod").ZodOptional<import("zod").ZodString>;
510
+ applicationId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
511
+ ownerId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
512
+ } & {
513
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
514
+ meta: import("zod").ZodAny;
515
+ data: import("zod").ZodAny;
516
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
517
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
518
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
519
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
520
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
521
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
522
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
523
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
524
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
525
+ } & {
526
+ userId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
527
+ productId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
528
+ rating: import("zod").ZodNumber;
529
+ comment: import("zod").ZodOptional<import("zod").ZodString>;
530
+ }, "strip", import("zod").ZodTypeAny, {
531
+ name?: string;
532
+ comment?: string;
533
+ key?: string;
534
+ id?: string | import("mongoose").Types.ObjectId;
535
+ data?: any;
536
+ description?: string;
537
+ applicationId?: string | import("mongoose").Types.ObjectId;
538
+ createdDate?: Date;
539
+ updatedDate?: Date;
540
+ status?: "Active" | "Paused" | "Pending" | "Archived";
541
+ ownerId?: string | import("mongoose").Types.ObjectId;
542
+ meta?: any;
543
+ merkleLeaf?: string;
544
+ merkleIndex?: number;
545
+ createdById?: string | import("mongoose").Types.ObjectId;
546
+ editedById?: string | import("mongoose").Types.ObjectId;
547
+ deletedById?: string | import("mongoose").Types.ObjectId;
548
+ deletedDate?: Date;
549
+ rating?: number;
550
+ productId?: string | import("mongoose").Types.ObjectId;
551
+ userId?: string | import("mongoose").Types.ObjectId;
552
+ }, {
553
+ name?: string;
554
+ comment?: string;
555
+ key?: string;
556
+ id?: string | import("mongoose").Types.ObjectId;
557
+ data?: any;
558
+ description?: string;
559
+ applicationId?: string | import("mongoose").Types.ObjectId;
560
+ createdDate?: Date;
561
+ updatedDate?: Date;
562
+ status?: "Active" | "Paused" | "Pending" | "Archived";
563
+ ownerId?: string | import("mongoose").Types.ObjectId;
564
+ meta?: any;
565
+ merkleLeaf?: string;
566
+ merkleIndex?: number;
567
+ createdById?: string | import("mongoose").Types.ObjectId;
568
+ editedById?: string | import("mongoose").Types.ObjectId;
569
+ deletedById?: string | import("mongoose").Types.ObjectId;
570
+ deletedDate?: Date;
571
+ rating?: number;
572
+ productId?: string | import("mongoose").Types.ObjectId;
573
+ userId?: string | import("mongoose").Types.ObjectId;
574
+ }>;
575
+ export declare const ProductUpdate: import("zod").ZodObject<{
576
+ key: import("zod").ZodOptional<import("zod").ZodString>;
577
+ name: import("zod").ZodOptional<import("zod").ZodString>;
578
+ description: import("zod").ZodOptional<import("zod").ZodString>;
579
+ applicationId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
580
+ ownerId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
581
+ } & {
582
+ id: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
583
+ meta: import("zod").ZodAny;
584
+ data: import("zod").ZodAny;
585
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
586
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
587
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
588
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
589
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
590
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
591
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
592
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
593
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
594
+ } & {
595
+ productId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
596
+ updateContent: import("zod").ZodString;
597
+ updateDate: import("zod").ZodDate;
598
+ }, "strip", import("zod").ZodTypeAny, {
599
+ name?: string;
600
+ key?: string;
601
+ id?: string | import("mongoose").Types.ObjectId;
602
+ data?: any;
603
+ description?: string;
604
+ applicationId?: string | import("mongoose").Types.ObjectId;
605
+ createdDate?: Date;
606
+ updatedDate?: Date;
607
+ status?: "Active" | "Paused" | "Pending" | "Archived";
608
+ ownerId?: string | import("mongoose").Types.ObjectId;
609
+ meta?: any;
610
+ merkleLeaf?: string;
611
+ merkleIndex?: number;
612
+ createdById?: string | import("mongoose").Types.ObjectId;
613
+ editedById?: string | import("mongoose").Types.ObjectId;
614
+ deletedById?: string | import("mongoose").Types.ObjectId;
615
+ deletedDate?: Date;
616
+ productId?: string | import("mongoose").Types.ObjectId;
617
+ updateContent?: string;
618
+ updateDate?: Date;
619
+ }, {
620
+ name?: string;
621
+ key?: string;
622
+ id?: string | import("mongoose").Types.ObjectId;
623
+ data?: any;
624
+ description?: string;
625
+ applicationId?: string | import("mongoose").Types.ObjectId;
626
+ createdDate?: Date;
627
+ updatedDate?: Date;
628
+ status?: "Active" | "Paused" | "Pending" | "Archived";
629
+ ownerId?: string | import("mongoose").Types.ObjectId;
630
+ meta?: any;
631
+ merkleLeaf?: string;
632
+ merkleIndex?: number;
633
+ createdById?: string | import("mongoose").Types.ObjectId;
634
+ editedById?: string | import("mongoose").Types.ObjectId;
635
+ deletedById?: string | import("mongoose").Types.ObjectId;
636
+ deletedDate?: Date;
637
+ productId?: string | import("mongoose").Types.ObjectId;
638
+ updateContent?: string;
639
+ updateDate?: Date;
640
+ }>;