@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,765 @@
1
+ export declare const ItemAttribute: 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
+ }, "strip", import("zod").ZodTypeAny, {
21
+ name?: string;
22
+ key?: string;
23
+ id?: string | import("mongoose").Types.ObjectId;
24
+ data?: any;
25
+ description?: string;
26
+ applicationId?: string | import("mongoose").Types.ObjectId;
27
+ createdDate?: Date;
28
+ updatedDate?: Date;
29
+ status?: "Active" | "Paused" | "Pending" | "Archived";
30
+ ownerId?: string | import("mongoose").Types.ObjectId;
31
+ meta?: any;
32
+ merkleLeaf?: string;
33
+ merkleIndex?: number;
34
+ createdById?: string | import("mongoose").Types.ObjectId;
35
+ editedById?: string | import("mongoose").Types.ObjectId;
36
+ deletedById?: string | import("mongoose").Types.ObjectId;
37
+ deletedDate?: Date;
38
+ }, {
39
+ name?: string;
40
+ key?: string;
41
+ id?: string | import("mongoose").Types.ObjectId;
42
+ data?: any;
43
+ description?: string;
44
+ applicationId?: string | import("mongoose").Types.ObjectId;
45
+ createdDate?: Date;
46
+ updatedDate?: Date;
47
+ status?: "Active" | "Paused" | "Pending" | "Archived";
48
+ ownerId?: string | import("mongoose").Types.ObjectId;
49
+ meta?: any;
50
+ merkleLeaf?: string;
51
+ merkleIndex?: number;
52
+ createdById?: string | import("mongoose").Types.ObjectId;
53
+ editedById?: string | import("mongoose").Types.ObjectId;
54
+ deletedById?: string | import("mongoose").Types.ObjectId;
55
+ deletedDate?: Date;
56
+ }>;
57
+ export declare const ItemMaterial: import("zod").ZodObject<{
58
+ key: import("zod").ZodOptional<import("zod").ZodString>;
59
+ name: import("zod").ZodOptional<import("zod").ZodString>;
60
+ description: import("zod").ZodOptional<import("zod").ZodString>;
61
+ 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>]>>;
62
+ 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>]>>;
63
+ } & {
64
+ 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>]>>;
65
+ meta: import("zod").ZodAny;
66
+ data: import("zod").ZodAny;
67
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
68
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
69
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
70
+ 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>]>>;
71
+ 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>]>>;
72
+ 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>]>>;
73
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
74
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
75
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
76
+ }, "strip", import("zod").ZodTypeAny, {
77
+ name?: string;
78
+ key?: string;
79
+ id?: string | import("mongoose").Types.ObjectId;
80
+ data?: any;
81
+ description?: string;
82
+ applicationId?: string | import("mongoose").Types.ObjectId;
83
+ createdDate?: Date;
84
+ updatedDate?: Date;
85
+ status?: "Active" | "Paused" | "Pending" | "Archived";
86
+ ownerId?: string | import("mongoose").Types.ObjectId;
87
+ meta?: any;
88
+ merkleLeaf?: string;
89
+ merkleIndex?: number;
90
+ createdById?: string | import("mongoose").Types.ObjectId;
91
+ editedById?: string | import("mongoose").Types.ObjectId;
92
+ deletedById?: string | import("mongoose").Types.ObjectId;
93
+ deletedDate?: Date;
94
+ }, {
95
+ name?: string;
96
+ key?: string;
97
+ id?: string | import("mongoose").Types.ObjectId;
98
+ data?: any;
99
+ description?: string;
100
+ applicationId?: string | import("mongoose").Types.ObjectId;
101
+ createdDate?: Date;
102
+ updatedDate?: Date;
103
+ status?: "Active" | "Paused" | "Pending" | "Archived";
104
+ ownerId?: string | import("mongoose").Types.ObjectId;
105
+ meta?: any;
106
+ merkleLeaf?: string;
107
+ merkleIndex?: number;
108
+ createdById?: string | import("mongoose").Types.ObjectId;
109
+ editedById?: string | import("mongoose").Types.ObjectId;
110
+ deletedById?: string | import("mongoose").Types.ObjectId;
111
+ deletedDate?: Date;
112
+ }>;
113
+ export declare const ItemSet: import("zod").ZodObject<{
114
+ key: import("zod").ZodOptional<import("zod").ZodString>;
115
+ name: import("zod").ZodOptional<import("zod").ZodString>;
116
+ description: import("zod").ZodOptional<import("zod").ZodString>;
117
+ 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>]>>;
118
+ 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>]>>;
119
+ } & {
120
+ 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>]>>;
121
+ meta: import("zod").ZodAny;
122
+ data: import("zod").ZodAny;
123
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
124
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
125
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
126
+ 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>]>>;
127
+ 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>]>>;
128
+ 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>]>>;
129
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
130
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
131
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
132
+ }, "strip", import("zod").ZodTypeAny, {
133
+ name?: string;
134
+ key?: string;
135
+ id?: string | import("mongoose").Types.ObjectId;
136
+ data?: any;
137
+ description?: string;
138
+ applicationId?: string | import("mongoose").Types.ObjectId;
139
+ createdDate?: Date;
140
+ updatedDate?: Date;
141
+ status?: "Active" | "Paused" | "Pending" | "Archived";
142
+ ownerId?: string | import("mongoose").Types.ObjectId;
143
+ meta?: any;
144
+ merkleLeaf?: string;
145
+ merkleIndex?: number;
146
+ createdById?: string | import("mongoose").Types.ObjectId;
147
+ editedById?: string | import("mongoose").Types.ObjectId;
148
+ deletedById?: string | import("mongoose").Types.ObjectId;
149
+ deletedDate?: Date;
150
+ }, {
151
+ name?: string;
152
+ key?: string;
153
+ id?: string | import("mongoose").Types.ObjectId;
154
+ data?: any;
155
+ description?: string;
156
+ applicationId?: string | import("mongoose").Types.ObjectId;
157
+ createdDate?: Date;
158
+ updatedDate?: Date;
159
+ status?: "Active" | "Paused" | "Pending" | "Archived";
160
+ ownerId?: string | import("mongoose").Types.ObjectId;
161
+ meta?: any;
162
+ merkleLeaf?: string;
163
+ merkleIndex?: number;
164
+ createdById?: string | import("mongoose").Types.ObjectId;
165
+ editedById?: string | import("mongoose").Types.ObjectId;
166
+ deletedById?: string | import("mongoose").Types.ObjectId;
167
+ deletedDate?: Date;
168
+ }>;
169
+ export declare const ItemSlot: import("zod").ZodObject<{
170
+ key: import("zod").ZodOptional<import("zod").ZodString>;
171
+ name: import("zod").ZodOptional<import("zod").ZodString>;
172
+ description: import("zod").ZodOptional<import("zod").ZodString>;
173
+ 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>]>>;
174
+ 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>]>>;
175
+ } & {
176
+ 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>]>>;
177
+ meta: import("zod").ZodAny;
178
+ data: import("zod").ZodAny;
179
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
180
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
181
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
182
+ 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>]>>;
183
+ 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>]>>;
184
+ 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>]>>;
185
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
186
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
187
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
188
+ }, "strip", import("zod").ZodTypeAny, {
189
+ name?: string;
190
+ key?: string;
191
+ id?: string | import("mongoose").Types.ObjectId;
192
+ data?: any;
193
+ description?: string;
194
+ applicationId?: string | import("mongoose").Types.ObjectId;
195
+ createdDate?: Date;
196
+ updatedDate?: Date;
197
+ status?: "Active" | "Paused" | "Pending" | "Archived";
198
+ ownerId?: string | import("mongoose").Types.ObjectId;
199
+ meta?: any;
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
+ }, {
207
+ name?: string;
208
+ key?: string;
209
+ id?: string | import("mongoose").Types.ObjectId;
210
+ data?: any;
211
+ description?: string;
212
+ applicationId?: string | import("mongoose").Types.ObjectId;
213
+ createdDate?: Date;
214
+ updatedDate?: Date;
215
+ status?: "Active" | "Paused" | "Pending" | "Archived";
216
+ ownerId?: string | import("mongoose").Types.ObjectId;
217
+ meta?: any;
218
+ merkleLeaf?: string;
219
+ merkleIndex?: number;
220
+ createdById?: string | import("mongoose").Types.ObjectId;
221
+ editedById?: string | import("mongoose").Types.ObjectId;
222
+ deletedById?: string | import("mongoose").Types.ObjectId;
223
+ deletedDate?: Date;
224
+ }>;
225
+ export declare const ItemRarity: import("zod").ZodObject<{
226
+ key: import("zod").ZodOptional<import("zod").ZodString>;
227
+ name: import("zod").ZodOptional<import("zod").ZodString>;
228
+ description: import("zod").ZodOptional<import("zod").ZodString>;
229
+ 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>]>>;
230
+ 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>]>>;
231
+ } & {
232
+ 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>]>>;
233
+ meta: import("zod").ZodAny;
234
+ data: import("zod").ZodAny;
235
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
236
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
237
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
238
+ 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>]>>;
239
+ 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>]>>;
240
+ 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>]>>;
241
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
242
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
243
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
244
+ }, "strip", import("zod").ZodTypeAny, {
245
+ name?: string;
246
+ key?: string;
247
+ id?: string | import("mongoose").Types.ObjectId;
248
+ data?: any;
249
+ description?: string;
250
+ applicationId?: string | import("mongoose").Types.ObjectId;
251
+ createdDate?: Date;
252
+ updatedDate?: Date;
253
+ status?: "Active" | "Paused" | "Pending" | "Archived";
254
+ ownerId?: string | import("mongoose").Types.ObjectId;
255
+ meta?: any;
256
+ merkleLeaf?: string;
257
+ merkleIndex?: number;
258
+ createdById?: string | import("mongoose").Types.ObjectId;
259
+ editedById?: string | import("mongoose").Types.ObjectId;
260
+ deletedById?: string | import("mongoose").Types.ObjectId;
261
+ deletedDate?: Date;
262
+ }, {
263
+ name?: string;
264
+ key?: string;
265
+ id?: string | import("mongoose").Types.ObjectId;
266
+ data?: any;
267
+ description?: string;
268
+ applicationId?: string | import("mongoose").Types.ObjectId;
269
+ createdDate?: Date;
270
+ updatedDate?: Date;
271
+ status?: "Active" | "Paused" | "Pending" | "Archived";
272
+ ownerId?: string | import("mongoose").Types.ObjectId;
273
+ meta?: any;
274
+ merkleLeaf?: string;
275
+ merkleIndex?: number;
276
+ createdById?: string | import("mongoose").Types.ObjectId;
277
+ editedById?: string | import("mongoose").Types.ObjectId;
278
+ deletedById?: string | import("mongoose").Types.ObjectId;
279
+ deletedDate?: Date;
280
+ }>;
281
+ export declare const ItemRank: import("zod").ZodObject<{
282
+ key: import("zod").ZodOptional<import("zod").ZodString>;
283
+ name: import("zod").ZodOptional<import("zod").ZodString>;
284
+ description: import("zod").ZodOptional<import("zod").ZodString>;
285
+ 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>]>>;
286
+ 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>]>>;
287
+ } & {
288
+ 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>]>>;
289
+ meta: import("zod").ZodAny;
290
+ data: import("zod").ZodAny;
291
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
292
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
293
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
294
+ 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>]>>;
295
+ 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>]>>;
296
+ 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>]>>;
297
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
298
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
299
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
300
+ } & {
301
+ value: import("zod").ZodNumber;
302
+ }, "strip", import("zod").ZodTypeAny, {
303
+ name?: string;
304
+ value?: number;
305
+ key?: string;
306
+ id?: string | import("mongoose").Types.ObjectId;
307
+ data?: any;
308
+ description?: string;
309
+ applicationId?: string | import("mongoose").Types.ObjectId;
310
+ createdDate?: Date;
311
+ updatedDate?: Date;
312
+ status?: "Active" | "Paused" | "Pending" | "Archived";
313
+ ownerId?: string | import("mongoose").Types.ObjectId;
314
+ meta?: any;
315
+ merkleLeaf?: string;
316
+ merkleIndex?: number;
317
+ createdById?: string | import("mongoose").Types.ObjectId;
318
+ editedById?: string | import("mongoose").Types.ObjectId;
319
+ deletedById?: string | import("mongoose").Types.ObjectId;
320
+ deletedDate?: Date;
321
+ }, {
322
+ name?: string;
323
+ value?: number;
324
+ key?: string;
325
+ id?: string | import("mongoose").Types.ObjectId;
326
+ data?: any;
327
+ description?: string;
328
+ applicationId?: string | import("mongoose").Types.ObjectId;
329
+ createdDate?: Date;
330
+ updatedDate?: Date;
331
+ status?: "Active" | "Paused" | "Pending" | "Archived";
332
+ ownerId?: string | import("mongoose").Types.ObjectId;
333
+ meta?: any;
334
+ merkleLeaf?: string;
335
+ merkleIndex?: number;
336
+ createdById?: string | import("mongoose").Types.ObjectId;
337
+ editedById?: string | import("mongoose").Types.ObjectId;
338
+ deletedById?: string | import("mongoose").Types.ObjectId;
339
+ deletedDate?: Date;
340
+ }>;
341
+ export declare const ItemType: import("zod").ZodObject<{
342
+ key: import("zod").ZodOptional<import("zod").ZodString>;
343
+ name: import("zod").ZodOptional<import("zod").ZodString>;
344
+ description: import("zod").ZodOptional<import("zod").ZodString>;
345
+ 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>]>>;
346
+ 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>]>>;
347
+ } & {
348
+ 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>]>>;
349
+ meta: import("zod").ZodAny;
350
+ data: import("zod").ZodAny;
351
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
352
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
353
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
354
+ 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>]>>;
355
+ 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>]>>;
356
+ 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>]>>;
357
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
358
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
359
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
360
+ }, "strip", import("zod").ZodTypeAny, {
361
+ name?: string;
362
+ key?: string;
363
+ id?: string | import("mongoose").Types.ObjectId;
364
+ data?: any;
365
+ description?: string;
366
+ applicationId?: string | import("mongoose").Types.ObjectId;
367
+ createdDate?: Date;
368
+ updatedDate?: Date;
369
+ status?: "Active" | "Paused" | "Pending" | "Archived";
370
+ ownerId?: string | import("mongoose").Types.ObjectId;
371
+ meta?: any;
372
+ merkleLeaf?: string;
373
+ merkleIndex?: number;
374
+ createdById?: string | import("mongoose").Types.ObjectId;
375
+ editedById?: string | import("mongoose").Types.ObjectId;
376
+ deletedById?: string | import("mongoose").Types.ObjectId;
377
+ deletedDate?: Date;
378
+ }, {
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
+ }>;
397
+ export declare const ItemSubType: import("zod").ZodObject<{
398
+ key: import("zod").ZodOptional<import("zod").ZodString>;
399
+ name: import("zod").ZodOptional<import("zod").ZodString>;
400
+ description: import("zod").ZodOptional<import("zod").ZodString>;
401
+ 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>]>>;
402
+ 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>]>>;
403
+ } & {
404
+ 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>]>>;
405
+ meta: import("zod").ZodAny;
406
+ data: import("zod").ZodAny;
407
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
408
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
409
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
410
+ 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>]>>;
411
+ 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>]>>;
412
+ 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>]>>;
413
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
414
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
415
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
416
+ }, "strip", import("zod").ZodTypeAny, {
417
+ name?: string;
418
+ key?: string;
419
+ id?: string | import("mongoose").Types.ObjectId;
420
+ data?: any;
421
+ description?: string;
422
+ applicationId?: string | import("mongoose").Types.ObjectId;
423
+ createdDate?: Date;
424
+ updatedDate?: Date;
425
+ status?: "Active" | "Paused" | "Pending" | "Archived";
426
+ ownerId?: string | import("mongoose").Types.ObjectId;
427
+ meta?: any;
428
+ merkleLeaf?: string;
429
+ merkleIndex?: number;
430
+ createdById?: string | import("mongoose").Types.ObjectId;
431
+ editedById?: string | import("mongoose").Types.ObjectId;
432
+ deletedById?: string | import("mongoose").Types.ObjectId;
433
+ deletedDate?: Date;
434
+ }, {
435
+ name?: string;
436
+ key?: string;
437
+ id?: string | import("mongoose").Types.ObjectId;
438
+ data?: any;
439
+ description?: string;
440
+ applicationId?: string | import("mongoose").Types.ObjectId;
441
+ createdDate?: Date;
442
+ updatedDate?: Date;
443
+ status?: "Active" | "Paused" | "Pending" | "Archived";
444
+ ownerId?: string | import("mongoose").Types.ObjectId;
445
+ meta?: any;
446
+ merkleLeaf?: string;
447
+ merkleIndex?: number;
448
+ createdById?: string | import("mongoose").Types.ObjectId;
449
+ editedById?: string | import("mongoose").Types.ObjectId;
450
+ deletedById?: string | import("mongoose").Types.ObjectId;
451
+ deletedDate?: Date;
452
+ }>;
453
+ export declare const ItemSpecificType: import("zod").ZodObject<{
454
+ key: import("zod").ZodOptional<import("zod").ZodString>;
455
+ name: import("zod").ZodOptional<import("zod").ZodString>;
456
+ description: import("zod").ZodOptional<import("zod").ZodString>;
457
+ 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>]>>;
458
+ 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>]>>;
459
+ } & {
460
+ 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>]>>;
461
+ meta: import("zod").ZodAny;
462
+ data: import("zod").ZodAny;
463
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
464
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
465
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
466
+ 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>]>>;
467
+ 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>]>>;
468
+ 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>]>>;
469
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
470
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
471
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
472
+ }, "strip", import("zod").ZodTypeAny, {
473
+ name?: string;
474
+ key?: string;
475
+ id?: string | import("mongoose").Types.ObjectId;
476
+ data?: any;
477
+ description?: string;
478
+ applicationId?: string | import("mongoose").Types.ObjectId;
479
+ createdDate?: Date;
480
+ updatedDate?: Date;
481
+ status?: "Active" | "Paused" | "Pending" | "Archived";
482
+ ownerId?: string | import("mongoose").Types.ObjectId;
483
+ meta?: any;
484
+ merkleLeaf?: string;
485
+ merkleIndex?: number;
486
+ createdById?: string | import("mongoose").Types.ObjectId;
487
+ editedById?: string | import("mongoose").Types.ObjectId;
488
+ deletedById?: string | import("mongoose").Types.ObjectId;
489
+ deletedDate?: Date;
490
+ }, {
491
+ name?: string;
492
+ key?: string;
493
+ id?: string | import("mongoose").Types.ObjectId;
494
+ data?: any;
495
+ description?: string;
496
+ applicationId?: string | import("mongoose").Types.ObjectId;
497
+ createdDate?: Date;
498
+ updatedDate?: Date;
499
+ status?: "Active" | "Paused" | "Pending" | "Archived";
500
+ ownerId?: string | import("mongoose").Types.ObjectId;
501
+ meta?: any;
502
+ merkleLeaf?: string;
503
+ merkleIndex?: number;
504
+ createdById?: string | import("mongoose").Types.ObjectId;
505
+ editedById?: string | import("mongoose").Types.ObjectId;
506
+ deletedById?: string | import("mongoose").Types.ObjectId;
507
+ deletedDate?: Date;
508
+ }>;
509
+ export declare const ItemAffix: import("zod").ZodObject<{
510
+ key: import("zod").ZodOptional<import("zod").ZodString>;
511
+ name: import("zod").ZodOptional<import("zod").ZodString>;
512
+ description: import("zod").ZodOptional<import("zod").ZodString>;
513
+ 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>]>>;
514
+ 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>]>>;
515
+ } & {
516
+ 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>]>>;
517
+ meta: import("zod").ZodAny;
518
+ data: import("zod").ZodAny;
519
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
520
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
521
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
522
+ 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>]>>;
523
+ 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>]>>;
524
+ 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>]>>;
525
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
526
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
527
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
528
+ } & {
529
+ isPrefix: import("zod").ZodDefault<import("zod").ZodBoolean>;
530
+ isSuffix: import("zod").ZodDefault<import("zod").ZodBoolean>;
531
+ isTitle: import("zod").ZodDefault<import("zod").ZodBoolean>;
532
+ weight: import("zod").ZodDefault<import("zod").ZodNumber>;
533
+ typeIds: 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">>;
534
+ rarityIds: 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">>;
535
+ }, "strip", import("zod").ZodTypeAny, {
536
+ name?: string;
537
+ key?: string;
538
+ id?: string | import("mongoose").Types.ObjectId;
539
+ data?: any;
540
+ description?: string;
541
+ applicationId?: string | import("mongoose").Types.ObjectId;
542
+ createdDate?: Date;
543
+ updatedDate?: Date;
544
+ weight?: number;
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
+ isPrefix?: boolean;
555
+ isSuffix?: boolean;
556
+ isTitle?: boolean;
557
+ typeIds?: (string | import("mongoose").Types.ObjectId)[];
558
+ rarityIds?: (string | import("mongoose").Types.ObjectId)[];
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
+ weight?: number;
569
+ status?: "Active" | "Paused" | "Pending" | "Archived";
570
+ ownerId?: string | import("mongoose").Types.ObjectId;
571
+ meta?: any;
572
+ merkleLeaf?: string;
573
+ merkleIndex?: number;
574
+ createdById?: string | import("mongoose").Types.ObjectId;
575
+ editedById?: string | import("mongoose").Types.ObjectId;
576
+ deletedById?: string | import("mongoose").Types.ObjectId;
577
+ deletedDate?: Date;
578
+ isPrefix?: boolean;
579
+ isSuffix?: boolean;
580
+ isTitle?: boolean;
581
+ typeIds?: (string | import("mongoose").Types.ObjectId)[];
582
+ rarityIds?: (string | import("mongoose").Types.ObjectId)[];
583
+ }>;
584
+ export declare const ItemRecipe: import("zod").ZodObject<{
585
+ key: import("zod").ZodOptional<import("zod").ZodString>;
586
+ name: import("zod").ZodOptional<import("zod").ZodString>;
587
+ description: import("zod").ZodOptional<import("zod").ZodString>;
588
+ 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>]>>;
589
+ 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>]>>;
590
+ } & {
591
+ 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>]>>;
592
+ meta: import("zod").ZodAny;
593
+ data: import("zod").ZodAny;
594
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
595
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
596
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
597
+ 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>]>>;
598
+ 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>]>>;
599
+ 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>]>>;
600
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
601
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
602
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
603
+ }, "strip", import("zod").ZodTypeAny, {
604
+ name?: string;
605
+ key?: string;
606
+ id?: string | import("mongoose").Types.ObjectId;
607
+ data?: any;
608
+ description?: string;
609
+ applicationId?: string | import("mongoose").Types.ObjectId;
610
+ createdDate?: Date;
611
+ updatedDate?: Date;
612
+ status?: "Active" | "Paused" | "Pending" | "Archived";
613
+ ownerId?: string | import("mongoose").Types.ObjectId;
614
+ meta?: any;
615
+ merkleLeaf?: string;
616
+ merkleIndex?: number;
617
+ createdById?: string | import("mongoose").Types.ObjectId;
618
+ editedById?: string | import("mongoose").Types.ObjectId;
619
+ deletedById?: string | import("mongoose").Types.ObjectId;
620
+ deletedDate?: Date;
621
+ }, {
622
+ name?: string;
623
+ key?: string;
624
+ id?: string | import("mongoose").Types.ObjectId;
625
+ data?: any;
626
+ description?: string;
627
+ applicationId?: string | import("mongoose").Types.ObjectId;
628
+ createdDate?: Date;
629
+ updatedDate?: Date;
630
+ status?: "Active" | "Paused" | "Pending" | "Archived";
631
+ ownerId?: string | import("mongoose").Types.ObjectId;
632
+ meta?: any;
633
+ merkleLeaf?: string;
634
+ merkleIndex?: number;
635
+ createdById?: string | import("mongoose").Types.ObjectId;
636
+ editedById?: string | import("mongoose").Types.ObjectId;
637
+ deletedById?: string | import("mongoose").Types.ObjectId;
638
+ deletedDate?: Date;
639
+ }>;
640
+ export declare const ItemSkin: import("zod").ZodObject<{
641
+ key: import("zod").ZodOptional<import("zod").ZodString>;
642
+ name: import("zod").ZodOptional<import("zod").ZodString>;
643
+ description: import("zod").ZodOptional<import("zod").ZodString>;
644
+ 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>]>>;
645
+ 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>]>>;
646
+ } & {
647
+ 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>]>>;
648
+ meta: import("zod").ZodAny;
649
+ data: import("zod").ZodAny;
650
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
651
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
652
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
653
+ 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>]>>;
654
+ 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>]>>;
655
+ 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>]>>;
656
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
657
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
658
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
659
+ }, "strip", import("zod").ZodTypeAny, {
660
+ name?: string;
661
+ key?: string;
662
+ id?: string | import("mongoose").Types.ObjectId;
663
+ data?: any;
664
+ description?: string;
665
+ applicationId?: string | import("mongoose").Types.ObjectId;
666
+ createdDate?: Date;
667
+ updatedDate?: Date;
668
+ status?: "Active" | "Paused" | "Pending" | "Archived";
669
+ ownerId?: string | import("mongoose").Types.ObjectId;
670
+ meta?: any;
671
+ merkleLeaf?: string;
672
+ merkleIndex?: number;
673
+ createdById?: string | import("mongoose").Types.ObjectId;
674
+ editedById?: string | import("mongoose").Types.ObjectId;
675
+ deletedById?: string | import("mongoose").Types.ObjectId;
676
+ deletedDate?: Date;
677
+ }, {
678
+ name?: string;
679
+ key?: string;
680
+ id?: string | import("mongoose").Types.ObjectId;
681
+ data?: any;
682
+ description?: string;
683
+ applicationId?: string | import("mongoose").Types.ObjectId;
684
+ createdDate?: Date;
685
+ updatedDate?: Date;
686
+ status?: "Active" | "Paused" | "Pending" | "Archived";
687
+ ownerId?: string | import("mongoose").Types.ObjectId;
688
+ meta?: any;
689
+ merkleLeaf?: string;
690
+ merkleIndex?: number;
691
+ createdById?: string | import("mongoose").Types.ObjectId;
692
+ editedById?: string | import("mongoose").Types.ObjectId;
693
+ deletedById?: string | import("mongoose").Types.ObjectId;
694
+ deletedDate?: Date;
695
+ }>;
696
+ export declare const ItemTransmute: import("zod").ZodObject<{
697
+ key: import("zod").ZodOptional<import("zod").ZodString>;
698
+ name: import("zod").ZodOptional<import("zod").ZodString>;
699
+ description: import("zod").ZodOptional<import("zod").ZodString>;
700
+ 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>]>>;
701
+ 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>]>>;
702
+ } & {
703
+ 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>]>>;
704
+ meta: import("zod").ZodAny;
705
+ data: import("zod").ZodAny;
706
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
707
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
708
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
709
+ 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>]>>;
710
+ 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>]>>;
711
+ 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>]>>;
712
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
713
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
714
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
715
+ } & {
716
+ token: import("zod").ZodString;
717
+ assetId: 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>]>;
718
+ itemId: 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>]>;
719
+ chainId: 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>]>>;
720
+ }, "strip", import("zod").ZodTypeAny, {
721
+ name?: string;
722
+ key?: string;
723
+ id?: string | import("mongoose").Types.ObjectId;
724
+ data?: any;
725
+ description?: string;
726
+ applicationId?: string | import("mongoose").Types.ObjectId;
727
+ createdDate?: Date;
728
+ updatedDate?: Date;
729
+ token?: string;
730
+ status?: "Active" | "Paused" | "Pending" | "Archived";
731
+ ownerId?: string | import("mongoose").Types.ObjectId;
732
+ meta?: any;
733
+ merkleLeaf?: string;
734
+ merkleIndex?: number;
735
+ createdById?: string | import("mongoose").Types.ObjectId;
736
+ editedById?: string | import("mongoose").Types.ObjectId;
737
+ deletedById?: string | import("mongoose").Types.ObjectId;
738
+ deletedDate?: Date;
739
+ chainId?: string | import("mongoose").Types.ObjectId;
740
+ assetId?: string | import("mongoose").Types.ObjectId;
741
+ itemId?: string | import("mongoose").Types.ObjectId;
742
+ }, {
743
+ name?: string;
744
+ key?: string;
745
+ id?: string | import("mongoose").Types.ObjectId;
746
+ data?: any;
747
+ description?: string;
748
+ applicationId?: string | import("mongoose").Types.ObjectId;
749
+ createdDate?: Date;
750
+ updatedDate?: Date;
751
+ token?: string;
752
+ status?: "Active" | "Paused" | "Pending" | "Archived";
753
+ ownerId?: string | import("mongoose").Types.ObjectId;
754
+ meta?: any;
755
+ merkleLeaf?: string;
756
+ merkleIndex?: number;
757
+ createdById?: string | import("mongoose").Types.ObjectId;
758
+ editedById?: string | import("mongoose").Types.ObjectId;
759
+ deletedById?: string | import("mongoose").Types.ObjectId;
760
+ deletedDate?: Date;
761
+ chainId?: string | import("mongoose").Types.ObjectId;
762
+ assetId?: string | import("mongoose").Types.ObjectId;
763
+ itemId?: string | import("mongoose").Types.ObjectId;
764
+ }>;
765
+ export declare const Item: any;