@arken/seer-protocol 0.1.4 → 0.1.6

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 +36 -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,660 @@
1
+ export declare const CollectibleCollection: 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
+ 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>]>>;
7
+ } & {
8
+ 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>]>>;
9
+ meta: import("zod").ZodAny;
10
+ data: import("zod").ZodAny;
11
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
12
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
13
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
14
+ 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>]>>;
15
+ 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>]>>;
16
+ 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>]>>;
17
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
18
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
19
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
20
+ } & {
21
+ hype: import("zod").ZodOptional<import("zod").ZodNumber>;
22
+ value: import("zod").ZodOptional<import("zod").ZodNumber>;
23
+ }, "strip", import("zod").ZodTypeAny, {
24
+ name?: string;
25
+ value?: number;
26
+ key?: string;
27
+ id?: string | import("mongoose").Types.ObjectId;
28
+ data?: any;
29
+ description?: string;
30
+ applicationId?: string | import("mongoose").Types.ObjectId;
31
+ createdDate?: Date;
32
+ updatedDate?: Date;
33
+ status?: "Active" | "Paused" | "Pending" | "Archived";
34
+ ownerId?: string | import("mongoose").Types.ObjectId;
35
+ meta?: any;
36
+ merkleLeaf?: string;
37
+ merkleIndex?: number;
38
+ createdById?: string | import("mongoose").Types.ObjectId;
39
+ editedById?: string | import("mongoose").Types.ObjectId;
40
+ deletedById?: string | import("mongoose").Types.ObjectId;
41
+ deletedDate?: Date;
42
+ hype?: number;
43
+ }, {
44
+ name?: string;
45
+ value?: number;
46
+ key?: string;
47
+ id?: string | import("mongoose").Types.ObjectId;
48
+ data?: any;
49
+ description?: string;
50
+ applicationId?: string | import("mongoose").Types.ObjectId;
51
+ createdDate?: Date;
52
+ updatedDate?: Date;
53
+ status?: "Active" | "Paused" | "Pending" | "Archived";
54
+ ownerId?: string | import("mongoose").Types.ObjectId;
55
+ meta?: any;
56
+ merkleLeaf?: string;
57
+ merkleIndex?: number;
58
+ createdById?: string | import("mongoose").Types.ObjectId;
59
+ editedById?: string | import("mongoose").Types.ObjectId;
60
+ deletedById?: string | import("mongoose").Types.ObjectId;
61
+ deletedDate?: Date;
62
+ hype?: number;
63
+ }>;
64
+ export declare const CollectibleCardBox: import("zod").ZodObject<{
65
+ key: import("zod").ZodOptional<import("zod").ZodString>;
66
+ name: import("zod").ZodOptional<import("zod").ZodString>;
67
+ description: import("zod").ZodOptional<import("zod").ZodString>;
68
+ 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>]>>;
69
+ 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>]>>;
70
+ } & {
71
+ 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>]>>;
72
+ meta: import("zod").ZodAny;
73
+ data: import("zod").ZodAny;
74
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
75
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
76
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
77
+ 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>]>>;
78
+ 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>]>>;
79
+ 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>]>>;
80
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
81
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
82
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
83
+ } & {
84
+ collectibleCollectionId: 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>]>;
85
+ franchise: import("zod").ZodString;
86
+ }, "strip", import("zod").ZodTypeAny, {
87
+ name?: string;
88
+ key?: string;
89
+ id?: string | import("mongoose").Types.ObjectId;
90
+ data?: any;
91
+ description?: string;
92
+ applicationId?: string | import("mongoose").Types.ObjectId;
93
+ createdDate?: Date;
94
+ updatedDate?: Date;
95
+ status?: "Active" | "Paused" | "Pending" | "Archived";
96
+ ownerId?: string | import("mongoose").Types.ObjectId;
97
+ meta?: any;
98
+ merkleLeaf?: string;
99
+ merkleIndex?: number;
100
+ createdById?: string | import("mongoose").Types.ObjectId;
101
+ editedById?: string | import("mongoose").Types.ObjectId;
102
+ deletedById?: string | import("mongoose").Types.ObjectId;
103
+ deletedDate?: Date;
104
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
105
+ franchise?: string;
106
+ }, {
107
+ name?: string;
108
+ key?: string;
109
+ id?: string | import("mongoose").Types.ObjectId;
110
+ data?: any;
111
+ description?: string;
112
+ applicationId?: string | import("mongoose").Types.ObjectId;
113
+ createdDate?: Date;
114
+ updatedDate?: Date;
115
+ status?: "Active" | "Paused" | "Pending" | "Archived";
116
+ ownerId?: string | import("mongoose").Types.ObjectId;
117
+ meta?: any;
118
+ merkleLeaf?: string;
119
+ merkleIndex?: number;
120
+ createdById?: string | import("mongoose").Types.ObjectId;
121
+ editedById?: string | import("mongoose").Types.ObjectId;
122
+ deletedById?: string | import("mongoose").Types.ObjectId;
123
+ deletedDate?: Date;
124
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
125
+ franchise?: string;
126
+ }>;
127
+ export declare const CollectibleCardPack: import("zod").ZodObject<{
128
+ key: import("zod").ZodOptional<import("zod").ZodString>;
129
+ name: import("zod").ZodOptional<import("zod").ZodString>;
130
+ description: import("zod").ZodOptional<import("zod").ZodString>;
131
+ 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>]>>;
132
+ 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>]>>;
133
+ } & {
134
+ 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>]>>;
135
+ meta: import("zod").ZodAny;
136
+ data: import("zod").ZodAny;
137
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
138
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
139
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
140
+ 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>]>>;
141
+ 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>]>>;
142
+ 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>]>>;
143
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
144
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
145
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
146
+ } & {
147
+ collectibleCollectionId: 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>]>;
148
+ franchise: import("zod").ZodString;
149
+ ungraded: import("zod").ZodOptional<import("zod").ZodNumber>;
150
+ grade10: import("zod").ZodOptional<import("zod").ZodNumber>;
151
+ grade9: import("zod").ZodOptional<import("zod").ZodNumber>;
152
+ grade8: import("zod").ZodOptional<import("zod").ZodNumber>;
153
+ grade7: import("zod").ZodOptional<import("zod").ZodNumber>;
154
+ grade6: import("zod").ZodOptional<import("zod").ZodNumber>;
155
+ grade5: import("zod").ZodOptional<import("zod").ZodNumber>;
156
+ grade4: import("zod").ZodOptional<import("zod").ZodNumber>;
157
+ grade3: import("zod").ZodOptional<import("zod").ZodNumber>;
158
+ grade2: import("zod").ZodOptional<import("zod").ZodNumber>;
159
+ grade1: import("zod").ZodOptional<import("zod").ZodNumber>;
160
+ additional: import("zod").ZodOptional<import("zod").ZodString>;
161
+ code: import("zod").ZodOptional<import("zod").ZodString>;
162
+ hype: import("zod").ZodOptional<import("zod").ZodNumber>;
163
+ series: import("zod").ZodOptional<import("zod").ZodString>;
164
+ category: import("zod").ZodOptional<import("zod").ZodString>;
165
+ year: import("zod").ZodOptional<import("zod").ZodNumber>;
166
+ }, "strip", import("zod").ZodTypeAny, {
167
+ name?: string;
168
+ key?: string;
169
+ id?: string | import("mongoose").Types.ObjectId;
170
+ data?: any;
171
+ description?: string;
172
+ applicationId?: string | import("mongoose").Types.ObjectId;
173
+ createdDate?: Date;
174
+ updatedDate?: Date;
175
+ status?: "Active" | "Paused" | "Pending" | "Archived";
176
+ ownerId?: string | import("mongoose").Types.ObjectId;
177
+ meta?: any;
178
+ merkleLeaf?: string;
179
+ merkleIndex?: number;
180
+ createdById?: string | import("mongoose").Types.ObjectId;
181
+ editedById?: string | import("mongoose").Types.ObjectId;
182
+ deletedById?: string | import("mongoose").Types.ObjectId;
183
+ deletedDate?: Date;
184
+ code?: string;
185
+ hype?: number;
186
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
187
+ franchise?: string;
188
+ ungraded?: number;
189
+ grade10?: number;
190
+ grade9?: number;
191
+ grade8?: number;
192
+ grade7?: number;
193
+ grade6?: number;
194
+ grade5?: number;
195
+ grade4?: number;
196
+ grade3?: number;
197
+ grade2?: number;
198
+ grade1?: number;
199
+ additional?: string;
200
+ series?: string;
201
+ category?: string;
202
+ year?: number;
203
+ }, {
204
+ name?: string;
205
+ key?: string;
206
+ id?: string | import("mongoose").Types.ObjectId;
207
+ data?: any;
208
+ description?: string;
209
+ applicationId?: string | import("mongoose").Types.ObjectId;
210
+ createdDate?: Date;
211
+ updatedDate?: Date;
212
+ status?: "Active" | "Paused" | "Pending" | "Archived";
213
+ ownerId?: string | import("mongoose").Types.ObjectId;
214
+ meta?: any;
215
+ merkleLeaf?: string;
216
+ merkleIndex?: number;
217
+ createdById?: string | import("mongoose").Types.ObjectId;
218
+ editedById?: string | import("mongoose").Types.ObjectId;
219
+ deletedById?: string | import("mongoose").Types.ObjectId;
220
+ deletedDate?: Date;
221
+ code?: string;
222
+ hype?: number;
223
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
224
+ franchise?: string;
225
+ ungraded?: number;
226
+ grade10?: number;
227
+ grade9?: number;
228
+ grade8?: number;
229
+ grade7?: number;
230
+ grade6?: number;
231
+ grade5?: number;
232
+ grade4?: number;
233
+ grade3?: number;
234
+ grade2?: number;
235
+ grade1?: number;
236
+ additional?: string;
237
+ series?: string;
238
+ category?: string;
239
+ year?: number;
240
+ }>;
241
+ export declare const CollectibleCard: import("zod").ZodObject<{
242
+ key: import("zod").ZodOptional<import("zod").ZodString>;
243
+ name: import("zod").ZodOptional<import("zod").ZodString>;
244
+ description: import("zod").ZodOptional<import("zod").ZodString>;
245
+ 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>]>>;
246
+ 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>]>>;
247
+ } & {
248
+ 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>]>>;
249
+ meta: import("zod").ZodAny;
250
+ data: import("zod").ZodAny;
251
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
252
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
253
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
254
+ 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>]>>;
255
+ 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>]>>;
256
+ 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>]>>;
257
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
258
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
259
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
260
+ } & {
261
+ collectibleCollectionId: 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>]>;
262
+ franchise: import("zod").ZodString;
263
+ ungraded: import("zod").ZodOptional<import("zod").ZodNumber>;
264
+ grade10: import("zod").ZodOptional<import("zod").ZodNumber>;
265
+ grade9: import("zod").ZodOptional<import("zod").ZodNumber>;
266
+ grade8: import("zod").ZodOptional<import("zod").ZodNumber>;
267
+ grade7: import("zod").ZodOptional<import("zod").ZodNumber>;
268
+ grade6: import("zod").ZodOptional<import("zod").ZodNumber>;
269
+ grade5: import("zod").ZodOptional<import("zod").ZodNumber>;
270
+ grade4: import("zod").ZodOptional<import("zod").ZodNumber>;
271
+ grade3: import("zod").ZodOptional<import("zod").ZodNumber>;
272
+ grade2: import("zod").ZodOptional<import("zod").ZodNumber>;
273
+ grade1: import("zod").ZodOptional<import("zod").ZodNumber>;
274
+ additional: import("zod").ZodOptional<import("zod").ZodString>;
275
+ code: import("zod").ZodOptional<import("zod").ZodString>;
276
+ hype: import("zod").ZodOptional<import("zod").ZodNumber>;
277
+ series: import("zod").ZodOptional<import("zod").ZodString>;
278
+ category: import("zod").ZodOptional<import("zod").ZodString>;
279
+ year: import("zod").ZodOptional<import("zod").ZodNumber>;
280
+ }, "strip", import("zod").ZodTypeAny, {
281
+ name?: string;
282
+ key?: string;
283
+ id?: string | import("mongoose").Types.ObjectId;
284
+ data?: any;
285
+ description?: string;
286
+ applicationId?: string | import("mongoose").Types.ObjectId;
287
+ createdDate?: Date;
288
+ updatedDate?: Date;
289
+ status?: "Active" | "Paused" | "Pending" | "Archived";
290
+ ownerId?: string | import("mongoose").Types.ObjectId;
291
+ meta?: any;
292
+ merkleLeaf?: string;
293
+ merkleIndex?: number;
294
+ createdById?: string | import("mongoose").Types.ObjectId;
295
+ editedById?: string | import("mongoose").Types.ObjectId;
296
+ deletedById?: string | import("mongoose").Types.ObjectId;
297
+ deletedDate?: Date;
298
+ code?: string;
299
+ hype?: number;
300
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
301
+ franchise?: string;
302
+ ungraded?: number;
303
+ grade10?: number;
304
+ grade9?: number;
305
+ grade8?: number;
306
+ grade7?: number;
307
+ grade6?: number;
308
+ grade5?: number;
309
+ grade4?: number;
310
+ grade3?: number;
311
+ grade2?: number;
312
+ grade1?: number;
313
+ additional?: string;
314
+ series?: string;
315
+ category?: string;
316
+ year?: number;
317
+ }, {
318
+ name?: string;
319
+ key?: string;
320
+ id?: string | import("mongoose").Types.ObjectId;
321
+ data?: any;
322
+ description?: string;
323
+ applicationId?: string | import("mongoose").Types.ObjectId;
324
+ createdDate?: Date;
325
+ updatedDate?: Date;
326
+ status?: "Active" | "Paused" | "Pending" | "Archived";
327
+ ownerId?: string | import("mongoose").Types.ObjectId;
328
+ meta?: any;
329
+ merkleLeaf?: string;
330
+ merkleIndex?: number;
331
+ createdById?: string | import("mongoose").Types.ObjectId;
332
+ editedById?: string | import("mongoose").Types.ObjectId;
333
+ deletedById?: string | import("mongoose").Types.ObjectId;
334
+ deletedDate?: Date;
335
+ code?: string;
336
+ hype?: number;
337
+ collectibleCollectionId?: string | import("mongoose").Types.ObjectId;
338
+ franchise?: string;
339
+ ungraded?: number;
340
+ grade10?: number;
341
+ grade9?: number;
342
+ grade8?: number;
343
+ grade7?: number;
344
+ grade6?: number;
345
+ grade5?: number;
346
+ grade4?: number;
347
+ grade3?: number;
348
+ grade2?: number;
349
+ grade1?: number;
350
+ additional?: string;
351
+ series?: string;
352
+ category?: string;
353
+ year?: number;
354
+ }>;
355
+ export declare const Card: import("zod").ZodObject<{
356
+ key: import("zod").ZodOptional<import("zod").ZodString>;
357
+ description: import("zod").ZodOptional<import("zod").ZodString>;
358
+ 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>]>>;
359
+ 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>]>>;
360
+ 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>]>>;
361
+ meta: import("zod").ZodAny;
362
+ data: import("zod").ZodAny;
363
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
364
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
365
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
366
+ 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>]>>;
367
+ 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>]>>;
368
+ 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>]>>;
369
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
370
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
371
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
372
+ } & {
373
+ setId: 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>]>;
374
+ name: import("zod").ZodString;
375
+ language: import("zod").ZodString;
376
+ releaseDate: import("zod").ZodString;
377
+ cardId: import("zod").ZodNumber;
378
+ }, "strip", import("zod").ZodTypeAny, {
379
+ name?: string;
380
+ key?: string;
381
+ id?: string | import("mongoose").Types.ObjectId;
382
+ data?: any;
383
+ description?: string;
384
+ applicationId?: string | import("mongoose").Types.ObjectId;
385
+ createdDate?: Date;
386
+ updatedDate?: Date;
387
+ status?: "Active" | "Paused" | "Pending" | "Archived";
388
+ ownerId?: string | import("mongoose").Types.ObjectId;
389
+ meta?: any;
390
+ merkleLeaf?: string;
391
+ merkleIndex?: number;
392
+ createdById?: string | import("mongoose").Types.ObjectId;
393
+ editedById?: string | import("mongoose").Types.ObjectId;
394
+ deletedById?: string | import("mongoose").Types.ObjectId;
395
+ deletedDate?: Date;
396
+ setId?: string | import("mongoose").Types.ObjectId;
397
+ language?: string;
398
+ releaseDate?: string;
399
+ cardId?: number;
400
+ }, {
401
+ name?: string;
402
+ key?: string;
403
+ id?: string | import("mongoose").Types.ObjectId;
404
+ data?: any;
405
+ description?: string;
406
+ applicationId?: string | import("mongoose").Types.ObjectId;
407
+ createdDate?: Date;
408
+ updatedDate?: Date;
409
+ status?: "Active" | "Paused" | "Pending" | "Archived";
410
+ ownerId?: string | import("mongoose").Types.ObjectId;
411
+ meta?: any;
412
+ merkleLeaf?: string;
413
+ merkleIndex?: number;
414
+ createdById?: string | import("mongoose").Types.ObjectId;
415
+ editedById?: string | import("mongoose").Types.ObjectId;
416
+ deletedById?: string | import("mongoose").Types.ObjectId;
417
+ deletedDate?: Date;
418
+ setId?: string | import("mongoose").Types.ObjectId;
419
+ language?: string;
420
+ releaseDate?: string;
421
+ cardId?: number;
422
+ }>;
423
+ export declare const Set: import("zod").ZodObject<{
424
+ key: import("zod").ZodOptional<import("zod").ZodString>;
425
+ description: import("zod").ZodOptional<import("zod").ZodString>;
426
+ 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>]>>;
427
+ 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>]>>;
428
+ 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>]>>;
429
+ meta: import("zod").ZodAny;
430
+ data: import("zod").ZodAny;
431
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
432
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
433
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
434
+ 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>]>>;
435
+ 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>]>>;
436
+ 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>]>>;
437
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
438
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
439
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
440
+ } & {
441
+ seriesId: 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
+ name: import("zod").ZodString;
443
+ language: import("zod").ZodString;
444
+ live: import("zod").ZodBoolean;
445
+ releaseDate: import("zod").ZodString;
446
+ cards: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
447
+ key: import("zod").ZodOptional<import("zod").ZodString>;
448
+ description: import("zod").ZodOptional<import("zod").ZodString>;
449
+ 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>]>>;
450
+ 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>]>>;
451
+ 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>]>>;
452
+ meta: import("zod").ZodAny;
453
+ data: import("zod").ZodAny;
454
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
455
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
456
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
457
+ 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>]>>;
458
+ 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>]>>;
459
+ 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>]>>;
460
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
461
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
462
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
463
+ } & {
464
+ setId: 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>]>;
465
+ name: import("zod").ZodString;
466
+ language: import("zod").ZodString;
467
+ releaseDate: import("zod").ZodString;
468
+ cardId: import("zod").ZodNumber;
469
+ }, "strip", import("zod").ZodTypeAny, {
470
+ name?: string;
471
+ key?: string;
472
+ id?: string | import("mongoose").Types.ObjectId;
473
+ data?: any;
474
+ description?: string;
475
+ applicationId?: string | import("mongoose").Types.ObjectId;
476
+ createdDate?: Date;
477
+ updatedDate?: Date;
478
+ status?: "Active" | "Paused" | "Pending" | "Archived";
479
+ ownerId?: string | import("mongoose").Types.ObjectId;
480
+ meta?: any;
481
+ merkleLeaf?: string;
482
+ merkleIndex?: number;
483
+ createdById?: string | import("mongoose").Types.ObjectId;
484
+ editedById?: string | import("mongoose").Types.ObjectId;
485
+ deletedById?: string | import("mongoose").Types.ObjectId;
486
+ deletedDate?: Date;
487
+ setId?: string | import("mongoose").Types.ObjectId;
488
+ language?: string;
489
+ releaseDate?: string;
490
+ cardId?: number;
491
+ }, {
492
+ name?: string;
493
+ key?: string;
494
+ id?: string | import("mongoose").Types.ObjectId;
495
+ data?: any;
496
+ description?: string;
497
+ applicationId?: string | import("mongoose").Types.ObjectId;
498
+ createdDate?: Date;
499
+ updatedDate?: Date;
500
+ status?: "Active" | "Paused" | "Pending" | "Archived";
501
+ ownerId?: string | import("mongoose").Types.ObjectId;
502
+ meta?: any;
503
+ merkleLeaf?: string;
504
+ merkleIndex?: number;
505
+ createdById?: string | import("mongoose").Types.ObjectId;
506
+ editedById?: string | import("mongoose").Types.ObjectId;
507
+ deletedById?: string | import("mongoose").Types.ObjectId;
508
+ deletedDate?: Date;
509
+ setId?: string | import("mongoose").Types.ObjectId;
510
+ language?: string;
511
+ releaseDate?: string;
512
+ cardId?: number;
513
+ }>, "many">>;
514
+ }, "strip", import("zod").ZodTypeAny, {
515
+ name?: string;
516
+ key?: string;
517
+ id?: string | import("mongoose").Types.ObjectId;
518
+ data?: any;
519
+ description?: string;
520
+ applicationId?: string | import("mongoose").Types.ObjectId;
521
+ createdDate?: Date;
522
+ updatedDate?: Date;
523
+ status?: "Active" | "Paused" | "Pending" | "Archived";
524
+ ownerId?: string | import("mongoose").Types.ObjectId;
525
+ meta?: any;
526
+ merkleLeaf?: string;
527
+ merkleIndex?: number;
528
+ createdById?: string | import("mongoose").Types.ObjectId;
529
+ editedById?: string | import("mongoose").Types.ObjectId;
530
+ deletedById?: string | import("mongoose").Types.ObjectId;
531
+ deletedDate?: Date;
532
+ language?: string;
533
+ releaseDate?: string;
534
+ seriesId?: string | import("mongoose").Types.ObjectId;
535
+ live?: boolean;
536
+ cards?: {
537
+ name?: string;
538
+ key?: string;
539
+ id?: string | import("mongoose").Types.ObjectId;
540
+ data?: any;
541
+ description?: string;
542
+ applicationId?: string | import("mongoose").Types.ObjectId;
543
+ createdDate?: Date;
544
+ updatedDate?: Date;
545
+ status?: "Active" | "Paused" | "Pending" | "Archived";
546
+ ownerId?: string | import("mongoose").Types.ObjectId;
547
+ meta?: any;
548
+ merkleLeaf?: string;
549
+ merkleIndex?: number;
550
+ createdById?: string | import("mongoose").Types.ObjectId;
551
+ editedById?: string | import("mongoose").Types.ObjectId;
552
+ deletedById?: string | import("mongoose").Types.ObjectId;
553
+ deletedDate?: Date;
554
+ setId?: string | import("mongoose").Types.ObjectId;
555
+ language?: string;
556
+ releaseDate?: string;
557
+ cardId?: number;
558
+ }[];
559
+ }, {
560
+ name?: string;
561
+ key?: string;
562
+ id?: string | import("mongoose").Types.ObjectId;
563
+ data?: any;
564
+ description?: string;
565
+ applicationId?: string | import("mongoose").Types.ObjectId;
566
+ createdDate?: Date;
567
+ updatedDate?: Date;
568
+ status?: "Active" | "Paused" | "Pending" | "Archived";
569
+ ownerId?: string | import("mongoose").Types.ObjectId;
570
+ meta?: any;
571
+ merkleLeaf?: string;
572
+ merkleIndex?: number;
573
+ createdById?: string | import("mongoose").Types.ObjectId;
574
+ editedById?: string | import("mongoose").Types.ObjectId;
575
+ deletedById?: string | import("mongoose").Types.ObjectId;
576
+ deletedDate?: Date;
577
+ language?: string;
578
+ releaseDate?: string;
579
+ seriesId?: string | import("mongoose").Types.ObjectId;
580
+ live?: boolean;
581
+ cards?: {
582
+ name?: string;
583
+ key?: string;
584
+ id?: string | import("mongoose").Types.ObjectId;
585
+ data?: any;
586
+ description?: string;
587
+ applicationId?: string | import("mongoose").Types.ObjectId;
588
+ createdDate?: Date;
589
+ updatedDate?: Date;
590
+ status?: "Active" | "Paused" | "Pending" | "Archived";
591
+ ownerId?: string | import("mongoose").Types.ObjectId;
592
+ meta?: any;
593
+ merkleLeaf?: string;
594
+ merkleIndex?: number;
595
+ createdById?: string | import("mongoose").Types.ObjectId;
596
+ editedById?: string | import("mongoose").Types.ObjectId;
597
+ deletedById?: string | import("mongoose").Types.ObjectId;
598
+ deletedDate?: Date;
599
+ setId?: string | import("mongoose").Types.ObjectId;
600
+ language?: string;
601
+ releaseDate?: string;
602
+ cardId?: number;
603
+ }[];
604
+ }>;
605
+ export declare const Series: import("zod").ZodObject<{
606
+ key: import("zod").ZodOptional<import("zod").ZodString>;
607
+ description: import("zod").ZodOptional<import("zod").ZodString>;
608
+ 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>]>>;
609
+ 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>]>>;
610
+ 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>]>>;
611
+ meta: import("zod").ZodAny;
612
+ data: import("zod").ZodAny;
613
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
614
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
615
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
616
+ 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>]>>;
617
+ 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>]>>;
618
+ 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>]>>;
619
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
620
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
621
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
622
+ } & {
623
+ name: import("zod").ZodString;
624
+ }, "strip", import("zod").ZodTypeAny, {
625
+ name?: string;
626
+ key?: string;
627
+ id?: string | import("mongoose").Types.ObjectId;
628
+ data?: any;
629
+ description?: string;
630
+ applicationId?: string | import("mongoose").Types.ObjectId;
631
+ createdDate?: Date;
632
+ updatedDate?: Date;
633
+ status?: "Active" | "Paused" | "Pending" | "Archived";
634
+ ownerId?: string | import("mongoose").Types.ObjectId;
635
+ meta?: any;
636
+ merkleLeaf?: string;
637
+ merkleIndex?: number;
638
+ createdById?: string | import("mongoose").Types.ObjectId;
639
+ editedById?: string | import("mongoose").Types.ObjectId;
640
+ deletedById?: string | import("mongoose").Types.ObjectId;
641
+ deletedDate?: Date;
642
+ }, {
643
+ name?: string;
644
+ key?: string;
645
+ id?: string | import("mongoose").Types.ObjectId;
646
+ data?: any;
647
+ description?: string;
648
+ applicationId?: string | import("mongoose").Types.ObjectId;
649
+ createdDate?: Date;
650
+ updatedDate?: Date;
651
+ status?: "Active" | "Paused" | "Pending" | "Archived";
652
+ ownerId?: string | import("mongoose").Types.ObjectId;
653
+ meta?: any;
654
+ merkleLeaf?: string;
655
+ merkleIndex?: number;
656
+ createdById?: string | import("mongoose").Types.ObjectId;
657
+ editedById?: string | import("mongoose").Types.ObjectId;
658
+ deletedById?: string | import("mongoose").Types.ObjectId;
659
+ deletedDate?: Date;
660
+ }>;