@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,1223 @@
1
+ export declare const CharacterEquipment: 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
+ characterId: 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>]>;
22
+ leftHand: any;
23
+ rightHand: any;
24
+ head: any;
25
+ pet: any;
26
+ neck: any;
27
+ legs: any;
28
+ chest: any;
29
+ waist: any;
30
+ hands: any;
31
+ wrists: any;
32
+ shoulders: any;
33
+ feet: any;
34
+ finger1: any;
35
+ finger2: any;
36
+ trinket1: any;
37
+ trinket2: any;
38
+ trinket3: any;
39
+ body: any;
40
+ companion: any;
41
+ mount: any;
42
+ }, "strip", import("zod").ZodTypeAny, {
43
+ name?: string;
44
+ key?: string;
45
+ id?: string | import("mongoose").Types.ObjectId;
46
+ data?: any;
47
+ description?: string;
48
+ applicationId?: string | import("mongoose").Types.ObjectId;
49
+ createdDate?: Date;
50
+ updatedDate?: Date;
51
+ status?: "Active" | "Paused" | "Pending" | "Archived";
52
+ ownerId?: string | import("mongoose").Types.ObjectId;
53
+ meta?: any;
54
+ merkleLeaf?: string;
55
+ merkleIndex?: number;
56
+ createdById?: string | import("mongoose").Types.ObjectId;
57
+ editedById?: string | import("mongoose").Types.ObjectId;
58
+ deletedById?: string | import("mongoose").Types.ObjectId;
59
+ deletedDate?: Date;
60
+ characterId?: string | import("mongoose").Types.ObjectId;
61
+ leftHand?: any;
62
+ rightHand?: any;
63
+ head?: any;
64
+ pet?: any;
65
+ neck?: any;
66
+ legs?: any;
67
+ chest?: any;
68
+ waist?: any;
69
+ hands?: any;
70
+ wrists?: any;
71
+ shoulders?: any;
72
+ feet?: any;
73
+ finger1?: any;
74
+ finger2?: any;
75
+ trinket1?: any;
76
+ trinket2?: any;
77
+ trinket3?: any;
78
+ body?: any;
79
+ companion?: any;
80
+ mount?: any;
81
+ }, {
82
+ name?: string;
83
+ key?: string;
84
+ id?: string | import("mongoose").Types.ObjectId;
85
+ data?: any;
86
+ description?: string;
87
+ applicationId?: string | import("mongoose").Types.ObjectId;
88
+ createdDate?: Date;
89
+ updatedDate?: Date;
90
+ status?: "Active" | "Paused" | "Pending" | "Archived";
91
+ ownerId?: string | import("mongoose").Types.ObjectId;
92
+ meta?: any;
93
+ merkleLeaf?: string;
94
+ merkleIndex?: number;
95
+ createdById?: string | import("mongoose").Types.ObjectId;
96
+ editedById?: string | import("mongoose").Types.ObjectId;
97
+ deletedById?: string | import("mongoose").Types.ObjectId;
98
+ deletedDate?: Date;
99
+ characterId?: string | import("mongoose").Types.ObjectId;
100
+ leftHand?: any;
101
+ rightHand?: any;
102
+ head?: any;
103
+ pet?: any;
104
+ neck?: any;
105
+ legs?: any;
106
+ chest?: any;
107
+ waist?: any;
108
+ hands?: any;
109
+ wrists?: any;
110
+ shoulders?: any;
111
+ feet?: any;
112
+ finger1?: any;
113
+ finger2?: any;
114
+ trinket1?: any;
115
+ trinket2?: any;
116
+ trinket3?: any;
117
+ body?: any;
118
+ companion?: any;
119
+ mount?: any;
120
+ }>;
121
+ export declare const CharacterInventory: import("zod").ZodObject<{
122
+ key: import("zod").ZodOptional<import("zod").ZodString>;
123
+ name: import("zod").ZodOptional<import("zod").ZodString>;
124
+ description: import("zod").ZodOptional<import("zod").ZodString>;
125
+ 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>]>>;
126
+ 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>]>>;
127
+ } & {
128
+ 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>]>>;
129
+ meta: import("zod").ZodAny;
130
+ data: import("zod").ZodAny;
131
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
132
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
133
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
134
+ 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>]>>;
135
+ 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>]>>;
136
+ 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>]>>;
137
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
138
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
139
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
140
+ } & {
141
+ characterId: 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
+ items: import("zod").ZodDefault<import("zod").ZodArray<any, "many">>;
143
+ }, "strip", import("zod").ZodTypeAny, {
144
+ name?: string;
145
+ key?: string;
146
+ id?: string | import("mongoose").Types.ObjectId;
147
+ data?: any;
148
+ description?: string;
149
+ applicationId?: string | import("mongoose").Types.ObjectId;
150
+ createdDate?: Date;
151
+ updatedDate?: Date;
152
+ status?: "Active" | "Paused" | "Pending" | "Archived";
153
+ ownerId?: string | import("mongoose").Types.ObjectId;
154
+ meta?: any;
155
+ merkleLeaf?: string;
156
+ merkleIndex?: number;
157
+ createdById?: string | import("mongoose").Types.ObjectId;
158
+ editedById?: string | import("mongoose").Types.ObjectId;
159
+ deletedById?: string | import("mongoose").Types.ObjectId;
160
+ deletedDate?: Date;
161
+ items?: any[];
162
+ characterId?: string | import("mongoose").Types.ObjectId;
163
+ }, {
164
+ name?: string;
165
+ key?: string;
166
+ id?: string | import("mongoose").Types.ObjectId;
167
+ data?: any;
168
+ description?: string;
169
+ applicationId?: string | import("mongoose").Types.ObjectId;
170
+ createdDate?: Date;
171
+ updatedDate?: Date;
172
+ status?: "Active" | "Paused" | "Pending" | "Archived";
173
+ ownerId?: string | import("mongoose").Types.ObjectId;
174
+ meta?: any;
175
+ merkleLeaf?: string;
176
+ merkleIndex?: number;
177
+ createdById?: string | import("mongoose").Types.ObjectId;
178
+ editedById?: string | import("mongoose").Types.ObjectId;
179
+ deletedById?: string | import("mongoose").Types.ObjectId;
180
+ deletedDate?: Date;
181
+ items?: any[];
182
+ characterId?: string | import("mongoose").Types.ObjectId;
183
+ }>;
184
+ export declare const Character: import("zod").ZodObject<{
185
+ key: import("zod").ZodOptional<import("zod").ZodString>;
186
+ name: import("zod").ZodOptional<import("zod").ZodString>;
187
+ description: import("zod").ZodOptional<import("zod").ZodString>;
188
+ 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>]>>;
189
+ 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>]>>;
190
+ } & {
191
+ 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>]>>;
192
+ meta: import("zod").ZodAny;
193
+ data: import("zod").ZodAny;
194
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
195
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
196
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
197
+ 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>]>>;
198
+ 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>]>>;
199
+ 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>]>>;
200
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
201
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
202
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
203
+ } & {
204
+ profileId: 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>]>>;
205
+ ratingId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
206
+ classId: 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>]>>;
207
+ raceId: 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>]>>;
208
+ factionId: 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>]>>;
209
+ genderId: 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>]>>;
210
+ guildId: 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>]>>;
211
+ token: import("zod").ZodOptional<import("zod").ZodString>;
212
+ points: import("zod").ZodDefault<import("zod").ZodNumber>;
213
+ isPrimary: import("zod").ZodDefault<import("zod").ZodBoolean>;
214
+ isBoss: import("zod").ZodDefault<import("zod").ZodBoolean>;
215
+ isPlayer: import("zod").ZodDefault<import("zod").ZodBoolean>;
216
+ equipmentIndex: import("zod").ZodDefault<import("zod").ZodNumber>;
217
+ equipment: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
218
+ key: import("zod").ZodOptional<import("zod").ZodString>;
219
+ name: import("zod").ZodOptional<import("zod").ZodString>;
220
+ description: import("zod").ZodOptional<import("zod").ZodString>;
221
+ 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>]>>;
222
+ 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>]>>;
223
+ } & {
224
+ 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>]>>;
225
+ meta: import("zod").ZodAny;
226
+ data: import("zod").ZodAny;
227
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
228
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
229
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
230
+ 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>]>>;
231
+ 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>]>>;
232
+ 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>]>>;
233
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
234
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
235
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
236
+ } & {
237
+ characterId: 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>]>;
238
+ leftHand: any;
239
+ rightHand: any;
240
+ head: any;
241
+ pet: any;
242
+ neck: any;
243
+ legs: any;
244
+ chest: any;
245
+ waist: any;
246
+ hands: any;
247
+ wrists: any;
248
+ shoulders: any;
249
+ feet: any;
250
+ finger1: any;
251
+ finger2: any;
252
+ trinket1: any;
253
+ trinket2: any;
254
+ trinket3: any;
255
+ body: any;
256
+ companion: any;
257
+ mount: any;
258
+ }, "strip", import("zod").ZodTypeAny, {
259
+ name?: string;
260
+ key?: string;
261
+ id?: string | import("mongoose").Types.ObjectId;
262
+ data?: any;
263
+ description?: string;
264
+ applicationId?: string | import("mongoose").Types.ObjectId;
265
+ createdDate?: Date;
266
+ updatedDate?: Date;
267
+ status?: "Active" | "Paused" | "Pending" | "Archived";
268
+ ownerId?: string | import("mongoose").Types.ObjectId;
269
+ meta?: any;
270
+ merkleLeaf?: string;
271
+ merkleIndex?: number;
272
+ createdById?: string | import("mongoose").Types.ObjectId;
273
+ editedById?: string | import("mongoose").Types.ObjectId;
274
+ deletedById?: string | import("mongoose").Types.ObjectId;
275
+ deletedDate?: Date;
276
+ characterId?: string | import("mongoose").Types.ObjectId;
277
+ leftHand?: any;
278
+ rightHand?: any;
279
+ head?: any;
280
+ pet?: any;
281
+ neck?: any;
282
+ legs?: any;
283
+ chest?: any;
284
+ waist?: any;
285
+ hands?: any;
286
+ wrists?: any;
287
+ shoulders?: any;
288
+ feet?: any;
289
+ finger1?: any;
290
+ finger2?: any;
291
+ trinket1?: any;
292
+ trinket2?: any;
293
+ trinket3?: any;
294
+ body?: any;
295
+ companion?: any;
296
+ mount?: any;
297
+ }, {
298
+ name?: string;
299
+ key?: string;
300
+ id?: string | import("mongoose").Types.ObjectId;
301
+ data?: any;
302
+ description?: string;
303
+ applicationId?: string | import("mongoose").Types.ObjectId;
304
+ createdDate?: Date;
305
+ updatedDate?: Date;
306
+ status?: "Active" | "Paused" | "Pending" | "Archived";
307
+ ownerId?: string | import("mongoose").Types.ObjectId;
308
+ meta?: any;
309
+ merkleLeaf?: string;
310
+ merkleIndex?: number;
311
+ createdById?: string | import("mongoose").Types.ObjectId;
312
+ editedById?: string | import("mongoose").Types.ObjectId;
313
+ deletedById?: string | import("mongoose").Types.ObjectId;
314
+ deletedDate?: Date;
315
+ characterId?: string | import("mongoose").Types.ObjectId;
316
+ leftHand?: any;
317
+ rightHand?: any;
318
+ head?: any;
319
+ pet?: any;
320
+ neck?: any;
321
+ legs?: any;
322
+ chest?: any;
323
+ waist?: any;
324
+ hands?: any;
325
+ wrists?: any;
326
+ shoulders?: any;
327
+ feet?: any;
328
+ finger1?: any;
329
+ finger2?: any;
330
+ trinket1?: any;
331
+ trinket2?: any;
332
+ trinket3?: any;
333
+ body?: any;
334
+ companion?: any;
335
+ mount?: any;
336
+ }>, "many">>;
337
+ inventoryIndex: import("zod").ZodDefault<import("zod").ZodNumber>;
338
+ inventory: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
339
+ key: import("zod").ZodOptional<import("zod").ZodString>;
340
+ name: import("zod").ZodOptional<import("zod").ZodString>;
341
+ description: import("zod").ZodOptional<import("zod").ZodString>;
342
+ 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>]>>;
343
+ 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>]>>;
344
+ } & {
345
+ 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>]>>;
346
+ meta: import("zod").ZodAny;
347
+ data: import("zod").ZodAny;
348
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
349
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
350
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
351
+ 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>]>>;
352
+ 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>]>>;
353
+ 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>]>>;
354
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
355
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
356
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
357
+ } & {
358
+ characterId: 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
+ items: import("zod").ZodDefault<import("zod").ZodArray<any, "many">>;
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
+ items?: any[];
379
+ characterId?: string | import("mongoose").Types.ObjectId;
380
+ }, {
381
+ name?: string;
382
+ key?: string;
383
+ id?: string | import("mongoose").Types.ObjectId;
384
+ data?: any;
385
+ description?: string;
386
+ applicationId?: string | import("mongoose").Types.ObjectId;
387
+ createdDate?: Date;
388
+ updatedDate?: Date;
389
+ status?: "Active" | "Paused" | "Pending" | "Archived";
390
+ ownerId?: string | import("mongoose").Types.ObjectId;
391
+ meta?: any;
392
+ merkleLeaf?: string;
393
+ merkleIndex?: number;
394
+ createdById?: string | import("mongoose").Types.ObjectId;
395
+ editedById?: string | import("mongoose").Types.ObjectId;
396
+ deletedById?: string | import("mongoose").Types.ObjectId;
397
+ deletedDate?: Date;
398
+ items?: any[];
399
+ characterId?: string | import("mongoose").Types.ObjectId;
400
+ }>, "many">>;
401
+ energyIds: 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">>;
402
+ areaIds: 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">>;
403
+ 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">>;
404
+ itemMaterialIds: 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">>;
405
+ }, "strip", import("zod").ZodTypeAny, {
406
+ name?: string;
407
+ key?: string;
408
+ id?: string | import("mongoose").Types.ObjectId;
409
+ data?: any;
410
+ description?: string;
411
+ applicationId?: string | import("mongoose").Types.ObjectId;
412
+ createdDate?: Date;
413
+ updatedDate?: Date;
414
+ token?: string;
415
+ status?: "Active" | "Paused" | "Pending" | "Archived";
416
+ ownerId?: string | import("mongoose").Types.ObjectId;
417
+ meta?: any;
418
+ merkleLeaf?: string;
419
+ merkleIndex?: number;
420
+ createdById?: string | import("mongoose").Types.ObjectId;
421
+ editedById?: string | import("mongoose").Types.ObjectId;
422
+ deletedById?: string | import("mongoose").Types.ObjectId;
423
+ deletedDate?: Date;
424
+ typeIds?: (string | import("mongoose").Types.ObjectId)[];
425
+ points?: number;
426
+ profileId?: string | import("mongoose").Types.ObjectId;
427
+ ratingId?: string | import("mongoose").Types.ObjectId;
428
+ classId?: string | import("mongoose").Types.ObjectId;
429
+ raceId?: string | import("mongoose").Types.ObjectId;
430
+ factionId?: string | import("mongoose").Types.ObjectId;
431
+ genderId?: string | import("mongoose").Types.ObjectId;
432
+ guildId?: string | import("mongoose").Types.ObjectId;
433
+ isPrimary?: boolean;
434
+ isBoss?: boolean;
435
+ isPlayer?: boolean;
436
+ equipmentIndex?: number;
437
+ equipment?: {
438
+ name?: string;
439
+ key?: string;
440
+ id?: string | import("mongoose").Types.ObjectId;
441
+ data?: any;
442
+ description?: string;
443
+ applicationId?: string | import("mongoose").Types.ObjectId;
444
+ createdDate?: Date;
445
+ updatedDate?: Date;
446
+ status?: "Active" | "Paused" | "Pending" | "Archived";
447
+ ownerId?: string | import("mongoose").Types.ObjectId;
448
+ meta?: any;
449
+ merkleLeaf?: string;
450
+ merkleIndex?: number;
451
+ createdById?: string | import("mongoose").Types.ObjectId;
452
+ editedById?: string | import("mongoose").Types.ObjectId;
453
+ deletedById?: string | import("mongoose").Types.ObjectId;
454
+ deletedDate?: Date;
455
+ characterId?: string | import("mongoose").Types.ObjectId;
456
+ leftHand?: any;
457
+ rightHand?: any;
458
+ head?: any;
459
+ pet?: any;
460
+ neck?: any;
461
+ legs?: any;
462
+ chest?: any;
463
+ waist?: any;
464
+ hands?: any;
465
+ wrists?: any;
466
+ shoulders?: any;
467
+ feet?: any;
468
+ finger1?: any;
469
+ finger2?: any;
470
+ trinket1?: any;
471
+ trinket2?: any;
472
+ trinket3?: any;
473
+ body?: any;
474
+ companion?: any;
475
+ mount?: any;
476
+ }[];
477
+ inventoryIndex?: number;
478
+ inventory?: {
479
+ name?: string;
480
+ key?: string;
481
+ id?: string | import("mongoose").Types.ObjectId;
482
+ data?: any;
483
+ description?: string;
484
+ applicationId?: string | import("mongoose").Types.ObjectId;
485
+ createdDate?: Date;
486
+ updatedDate?: Date;
487
+ status?: "Active" | "Paused" | "Pending" | "Archived";
488
+ ownerId?: string | import("mongoose").Types.ObjectId;
489
+ meta?: any;
490
+ merkleLeaf?: string;
491
+ merkleIndex?: number;
492
+ createdById?: string | import("mongoose").Types.ObjectId;
493
+ editedById?: string | import("mongoose").Types.ObjectId;
494
+ deletedById?: string | import("mongoose").Types.ObjectId;
495
+ deletedDate?: Date;
496
+ items?: any[];
497
+ characterId?: string | import("mongoose").Types.ObjectId;
498
+ }[];
499
+ energyIds?: (string | import("mongoose").Types.ObjectId)[];
500
+ areaIds?: (string | import("mongoose").Types.ObjectId)[];
501
+ itemMaterialIds?: (string | import("mongoose").Types.ObjectId)[];
502
+ }, {
503
+ name?: string;
504
+ key?: string;
505
+ id?: string | import("mongoose").Types.ObjectId;
506
+ data?: any;
507
+ description?: string;
508
+ applicationId?: string | import("mongoose").Types.ObjectId;
509
+ createdDate?: Date;
510
+ updatedDate?: Date;
511
+ token?: string;
512
+ status?: "Active" | "Paused" | "Pending" | "Archived";
513
+ ownerId?: string | import("mongoose").Types.ObjectId;
514
+ meta?: any;
515
+ merkleLeaf?: string;
516
+ merkleIndex?: number;
517
+ createdById?: string | import("mongoose").Types.ObjectId;
518
+ editedById?: string | import("mongoose").Types.ObjectId;
519
+ deletedById?: string | import("mongoose").Types.ObjectId;
520
+ deletedDate?: Date;
521
+ typeIds?: (string | import("mongoose").Types.ObjectId)[];
522
+ points?: number;
523
+ profileId?: string | import("mongoose").Types.ObjectId;
524
+ ratingId?: string | import("mongoose").Types.ObjectId;
525
+ classId?: string | import("mongoose").Types.ObjectId;
526
+ raceId?: string | import("mongoose").Types.ObjectId;
527
+ factionId?: string | import("mongoose").Types.ObjectId;
528
+ genderId?: string | import("mongoose").Types.ObjectId;
529
+ guildId?: string | import("mongoose").Types.ObjectId;
530
+ isPrimary?: boolean;
531
+ isBoss?: boolean;
532
+ isPlayer?: boolean;
533
+ equipmentIndex?: number;
534
+ equipment?: {
535
+ name?: string;
536
+ key?: string;
537
+ id?: string | import("mongoose").Types.ObjectId;
538
+ data?: any;
539
+ description?: string;
540
+ applicationId?: string | import("mongoose").Types.ObjectId;
541
+ createdDate?: Date;
542
+ updatedDate?: Date;
543
+ status?: "Active" | "Paused" | "Pending" | "Archived";
544
+ ownerId?: string | import("mongoose").Types.ObjectId;
545
+ meta?: any;
546
+ merkleLeaf?: string;
547
+ merkleIndex?: number;
548
+ createdById?: string | import("mongoose").Types.ObjectId;
549
+ editedById?: string | import("mongoose").Types.ObjectId;
550
+ deletedById?: string | import("mongoose").Types.ObjectId;
551
+ deletedDate?: Date;
552
+ characterId?: string | import("mongoose").Types.ObjectId;
553
+ leftHand?: any;
554
+ rightHand?: any;
555
+ head?: any;
556
+ pet?: any;
557
+ neck?: any;
558
+ legs?: any;
559
+ chest?: any;
560
+ waist?: any;
561
+ hands?: any;
562
+ wrists?: any;
563
+ shoulders?: any;
564
+ feet?: any;
565
+ finger1?: any;
566
+ finger2?: any;
567
+ trinket1?: any;
568
+ trinket2?: any;
569
+ trinket3?: any;
570
+ body?: any;
571
+ companion?: any;
572
+ mount?: any;
573
+ }[];
574
+ inventoryIndex?: number;
575
+ inventory?: {
576
+ name?: string;
577
+ key?: string;
578
+ id?: string | import("mongoose").Types.ObjectId;
579
+ data?: any;
580
+ description?: string;
581
+ applicationId?: string | import("mongoose").Types.ObjectId;
582
+ createdDate?: Date;
583
+ updatedDate?: Date;
584
+ status?: "Active" | "Paused" | "Pending" | "Archived";
585
+ ownerId?: string | import("mongoose").Types.ObjectId;
586
+ meta?: any;
587
+ merkleLeaf?: string;
588
+ merkleIndex?: number;
589
+ createdById?: string | import("mongoose").Types.ObjectId;
590
+ editedById?: string | import("mongoose").Types.ObjectId;
591
+ deletedById?: string | import("mongoose").Types.ObjectId;
592
+ deletedDate?: Date;
593
+ items?: any[];
594
+ characterId?: string | import("mongoose").Types.ObjectId;
595
+ }[];
596
+ energyIds?: (string | import("mongoose").Types.ObjectId)[];
597
+ areaIds?: (string | import("mongoose").Types.ObjectId)[];
598
+ itemMaterialIds?: (string | import("mongoose").Types.ObjectId)[];
599
+ }>;
600
+ export declare const CharacterAbility: import("zod").ZodObject<{
601
+ key: import("zod").ZodOptional<import("zod").ZodString>;
602
+ name: import("zod").ZodOptional<import("zod").ZodString>;
603
+ description: import("zod").ZodOptional<import("zod").ZodString>;
604
+ 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>]>>;
605
+ 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>]>>;
606
+ } & {
607
+ 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>]>>;
608
+ meta: import("zod").ZodAny;
609
+ data: import("zod").ZodAny;
610
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
611
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
612
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
613
+ 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>]>>;
614
+ 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>]>>;
615
+ 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>]>>;
616
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
617
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
618
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
619
+ }, "strip", import("zod").ZodTypeAny, {
620
+ name?: string;
621
+ key?: string;
622
+ id?: string | import("mongoose").Types.ObjectId;
623
+ data?: any;
624
+ description?: string;
625
+ applicationId?: string | import("mongoose").Types.ObjectId;
626
+ createdDate?: Date;
627
+ updatedDate?: Date;
628
+ status?: "Active" | "Paused" | "Pending" | "Archived";
629
+ ownerId?: string | import("mongoose").Types.ObjectId;
630
+ meta?: any;
631
+ merkleLeaf?: string;
632
+ merkleIndex?: number;
633
+ createdById?: string | import("mongoose").Types.ObjectId;
634
+ editedById?: string | import("mongoose").Types.ObjectId;
635
+ deletedById?: string | import("mongoose").Types.ObjectId;
636
+ deletedDate?: Date;
637
+ }, {
638
+ name?: string;
639
+ key?: string;
640
+ id?: string | import("mongoose").Types.ObjectId;
641
+ data?: any;
642
+ description?: string;
643
+ applicationId?: string | import("mongoose").Types.ObjectId;
644
+ createdDate?: Date;
645
+ updatedDate?: Date;
646
+ status?: "Active" | "Paused" | "Pending" | "Archived";
647
+ ownerId?: string | import("mongoose").Types.ObjectId;
648
+ meta?: any;
649
+ merkleLeaf?: string;
650
+ merkleIndex?: number;
651
+ createdById?: string | import("mongoose").Types.ObjectId;
652
+ editedById?: string | import("mongoose").Types.ObjectId;
653
+ deletedById?: string | import("mongoose").Types.ObjectId;
654
+ deletedDate?: Date;
655
+ }>;
656
+ export declare const CharacterAttribute: import("zod").ZodObject<{
657
+ key: import("zod").ZodOptional<import("zod").ZodString>;
658
+ name: import("zod").ZodOptional<import("zod").ZodString>;
659
+ description: import("zod").ZodOptional<import("zod").ZodString>;
660
+ 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>]>>;
661
+ 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>]>>;
662
+ } & {
663
+ 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>]>>;
664
+ meta: import("zod").ZodAny;
665
+ data: import("zod").ZodAny;
666
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
667
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
668
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
669
+ 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>]>>;
670
+ 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>]>>;
671
+ 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>]>>;
672
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
673
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
674
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
675
+ }, "strip", import("zod").ZodTypeAny, {
676
+ name?: string;
677
+ key?: string;
678
+ id?: string | import("mongoose").Types.ObjectId;
679
+ data?: any;
680
+ description?: string;
681
+ applicationId?: string | import("mongoose").Types.ObjectId;
682
+ createdDate?: Date;
683
+ updatedDate?: Date;
684
+ status?: "Active" | "Paused" | "Pending" | "Archived";
685
+ ownerId?: string | import("mongoose").Types.ObjectId;
686
+ meta?: any;
687
+ merkleLeaf?: string;
688
+ merkleIndex?: number;
689
+ createdById?: string | import("mongoose").Types.ObjectId;
690
+ editedById?: string | import("mongoose").Types.ObjectId;
691
+ deletedById?: string | import("mongoose").Types.ObjectId;
692
+ deletedDate?: Date;
693
+ }, {
694
+ name?: string;
695
+ key?: string;
696
+ id?: string | import("mongoose").Types.ObjectId;
697
+ data?: any;
698
+ description?: string;
699
+ applicationId?: string | import("mongoose").Types.ObjectId;
700
+ createdDate?: Date;
701
+ updatedDate?: Date;
702
+ status?: "Active" | "Paused" | "Pending" | "Archived";
703
+ ownerId?: string | import("mongoose").Types.ObjectId;
704
+ meta?: any;
705
+ merkleLeaf?: string;
706
+ merkleIndex?: number;
707
+ createdById?: string | import("mongoose").Types.ObjectId;
708
+ editedById?: string | import("mongoose").Types.ObjectId;
709
+ deletedById?: string | import("mongoose").Types.ObjectId;
710
+ deletedDate?: Date;
711
+ }>;
712
+ export declare const CharacterType: import("zod").ZodObject<{
713
+ key: import("zod").ZodOptional<import("zod").ZodString>;
714
+ name: import("zod").ZodOptional<import("zod").ZodString>;
715
+ description: import("zod").ZodOptional<import("zod").ZodString>;
716
+ 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>]>>;
717
+ 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>]>>;
718
+ } & {
719
+ 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>]>>;
720
+ meta: import("zod").ZodAny;
721
+ data: import("zod").ZodAny;
722
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
723
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
724
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
725
+ 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>]>>;
726
+ 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>]>>;
727
+ 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>]>>;
728
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
729
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
730
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
731
+ }, "strip", import("zod").ZodTypeAny, {
732
+ name?: string;
733
+ key?: string;
734
+ id?: string | import("mongoose").Types.ObjectId;
735
+ data?: any;
736
+ description?: string;
737
+ applicationId?: string | import("mongoose").Types.ObjectId;
738
+ createdDate?: Date;
739
+ updatedDate?: Date;
740
+ status?: "Active" | "Paused" | "Pending" | "Archived";
741
+ ownerId?: string | import("mongoose").Types.ObjectId;
742
+ meta?: any;
743
+ merkleLeaf?: string;
744
+ merkleIndex?: number;
745
+ createdById?: string | import("mongoose").Types.ObjectId;
746
+ editedById?: string | import("mongoose").Types.ObjectId;
747
+ deletedById?: string | import("mongoose").Types.ObjectId;
748
+ deletedDate?: Date;
749
+ }, {
750
+ name?: string;
751
+ key?: string;
752
+ id?: string | import("mongoose").Types.ObjectId;
753
+ data?: any;
754
+ description?: string;
755
+ applicationId?: string | import("mongoose").Types.ObjectId;
756
+ createdDate?: Date;
757
+ updatedDate?: Date;
758
+ status?: "Active" | "Paused" | "Pending" | "Archived";
759
+ ownerId?: string | import("mongoose").Types.ObjectId;
760
+ meta?: any;
761
+ merkleLeaf?: string;
762
+ merkleIndex?: number;
763
+ createdById?: string | import("mongoose").Types.ObjectId;
764
+ editedById?: string | import("mongoose").Types.ObjectId;
765
+ deletedById?: string | import("mongoose").Types.ObjectId;
766
+ deletedDate?: Date;
767
+ }>;
768
+ export declare const CharacterClass: import("zod").ZodObject<{
769
+ key: import("zod").ZodOptional<import("zod").ZodString>;
770
+ name: import("zod").ZodOptional<import("zod").ZodString>;
771
+ description: import("zod").ZodOptional<import("zod").ZodString>;
772
+ 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>]>>;
773
+ 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>]>>;
774
+ } & {
775
+ 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>]>>;
776
+ meta: import("zod").ZodAny;
777
+ data: import("zod").ZodAny;
778
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
779
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
780
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
781
+ 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>]>>;
782
+ 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>]>>;
783
+ 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>]>>;
784
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
785
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
786
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
787
+ }, "strip", import("zod").ZodTypeAny, {
788
+ name?: string;
789
+ key?: string;
790
+ id?: string | import("mongoose").Types.ObjectId;
791
+ data?: any;
792
+ description?: string;
793
+ applicationId?: string | import("mongoose").Types.ObjectId;
794
+ createdDate?: Date;
795
+ updatedDate?: Date;
796
+ status?: "Active" | "Paused" | "Pending" | "Archived";
797
+ ownerId?: string | import("mongoose").Types.ObjectId;
798
+ meta?: any;
799
+ merkleLeaf?: string;
800
+ merkleIndex?: number;
801
+ createdById?: string | import("mongoose").Types.ObjectId;
802
+ editedById?: string | import("mongoose").Types.ObjectId;
803
+ deletedById?: string | import("mongoose").Types.ObjectId;
804
+ deletedDate?: Date;
805
+ }, {
806
+ name?: string;
807
+ key?: string;
808
+ id?: string | import("mongoose").Types.ObjectId;
809
+ data?: any;
810
+ description?: string;
811
+ applicationId?: string | import("mongoose").Types.ObjectId;
812
+ createdDate?: Date;
813
+ updatedDate?: Date;
814
+ status?: "Active" | "Paused" | "Pending" | "Archived";
815
+ ownerId?: string | import("mongoose").Types.ObjectId;
816
+ meta?: any;
817
+ merkleLeaf?: string;
818
+ merkleIndex?: number;
819
+ createdById?: string | import("mongoose").Types.ObjectId;
820
+ editedById?: string | import("mongoose").Types.ObjectId;
821
+ deletedById?: string | import("mongoose").Types.ObjectId;
822
+ deletedDate?: Date;
823
+ }>;
824
+ export declare const CharacterRace: import("zod").ZodObject<{
825
+ key: import("zod").ZodOptional<import("zod").ZodString>;
826
+ name: import("zod").ZodOptional<import("zod").ZodString>;
827
+ description: import("zod").ZodOptional<import("zod").ZodString>;
828
+ 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>]>>;
829
+ 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>]>>;
830
+ } & {
831
+ 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>]>>;
832
+ meta: import("zod").ZodAny;
833
+ data: import("zod").ZodAny;
834
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
835
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
836
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
837
+ 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>]>>;
838
+ 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>]>>;
839
+ 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>]>>;
840
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
841
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
842
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
843
+ } & {
844
+ npcs: 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">>;
845
+ }, "strip", import("zod").ZodTypeAny, {
846
+ name?: string;
847
+ key?: string;
848
+ id?: string | import("mongoose").Types.ObjectId;
849
+ data?: any;
850
+ description?: string;
851
+ applicationId?: string | import("mongoose").Types.ObjectId;
852
+ createdDate?: Date;
853
+ updatedDate?: Date;
854
+ status?: "Active" | "Paused" | "Pending" | "Archived";
855
+ ownerId?: string | import("mongoose").Types.ObjectId;
856
+ meta?: any;
857
+ merkleLeaf?: string;
858
+ merkleIndex?: number;
859
+ createdById?: string | import("mongoose").Types.ObjectId;
860
+ editedById?: string | import("mongoose").Types.ObjectId;
861
+ deletedById?: string | import("mongoose").Types.ObjectId;
862
+ deletedDate?: Date;
863
+ npcs?: (string | import("mongoose").Types.ObjectId)[];
864
+ }, {
865
+ name?: string;
866
+ key?: string;
867
+ id?: string | import("mongoose").Types.ObjectId;
868
+ data?: any;
869
+ description?: string;
870
+ applicationId?: string | import("mongoose").Types.ObjectId;
871
+ createdDate?: Date;
872
+ updatedDate?: Date;
873
+ status?: "Active" | "Paused" | "Pending" | "Archived";
874
+ ownerId?: string | import("mongoose").Types.ObjectId;
875
+ meta?: any;
876
+ merkleLeaf?: string;
877
+ merkleIndex?: number;
878
+ createdById?: string | import("mongoose").Types.ObjectId;
879
+ editedById?: string | import("mongoose").Types.ObjectId;
880
+ deletedById?: string | import("mongoose").Types.ObjectId;
881
+ deletedDate?: Date;
882
+ npcs?: (string | import("mongoose").Types.ObjectId)[];
883
+ }>;
884
+ export declare const CharacterGender: import("zod").ZodObject<{
885
+ key: import("zod").ZodOptional<import("zod").ZodString>;
886
+ name: import("zod").ZodOptional<import("zod").ZodString>;
887
+ description: import("zod").ZodOptional<import("zod").ZodString>;
888
+ 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>]>>;
889
+ 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>]>>;
890
+ } & {
891
+ 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>]>>;
892
+ meta: import("zod").ZodAny;
893
+ data: import("zod").ZodAny;
894
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
895
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
896
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
897
+ 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>]>>;
898
+ 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>]>>;
899
+ 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>]>>;
900
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
901
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
902
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
903
+ }, "strip", import("zod").ZodTypeAny, {
904
+ name?: string;
905
+ key?: string;
906
+ id?: string | import("mongoose").Types.ObjectId;
907
+ data?: any;
908
+ description?: string;
909
+ applicationId?: string | import("mongoose").Types.ObjectId;
910
+ createdDate?: Date;
911
+ updatedDate?: Date;
912
+ status?: "Active" | "Paused" | "Pending" | "Archived";
913
+ ownerId?: string | import("mongoose").Types.ObjectId;
914
+ meta?: any;
915
+ merkleLeaf?: string;
916
+ merkleIndex?: number;
917
+ createdById?: string | import("mongoose").Types.ObjectId;
918
+ editedById?: string | import("mongoose").Types.ObjectId;
919
+ deletedById?: string | import("mongoose").Types.ObjectId;
920
+ deletedDate?: Date;
921
+ }, {
922
+ name?: string;
923
+ key?: string;
924
+ id?: string | import("mongoose").Types.ObjectId;
925
+ data?: any;
926
+ description?: string;
927
+ applicationId?: string | import("mongoose").Types.ObjectId;
928
+ createdDate?: Date;
929
+ updatedDate?: Date;
930
+ status?: "Active" | "Paused" | "Pending" | "Archived";
931
+ ownerId?: string | import("mongoose").Types.ObjectId;
932
+ meta?: any;
933
+ merkleLeaf?: string;
934
+ merkleIndex?: number;
935
+ createdById?: string | import("mongoose").Types.ObjectId;
936
+ editedById?: string | import("mongoose").Types.ObjectId;
937
+ deletedById?: string | import("mongoose").Types.ObjectId;
938
+ deletedDate?: Date;
939
+ }>;
940
+ export declare const CharacterPersonality: import("zod").ZodObject<{
941
+ key: import("zod").ZodOptional<import("zod").ZodString>;
942
+ name: import("zod").ZodOptional<import("zod").ZodString>;
943
+ description: import("zod").ZodOptional<import("zod").ZodString>;
944
+ 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>]>>;
945
+ 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>]>>;
946
+ } & {
947
+ 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>]>>;
948
+ meta: import("zod").ZodAny;
949
+ data: import("zod").ZodAny;
950
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
951
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
952
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
953
+ 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>]>>;
954
+ 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>]>>;
955
+ 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>]>>;
956
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
957
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
958
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
959
+ }, "strip", import("zod").ZodTypeAny, {
960
+ name?: string;
961
+ key?: string;
962
+ id?: string | import("mongoose").Types.ObjectId;
963
+ data?: any;
964
+ description?: string;
965
+ applicationId?: string | import("mongoose").Types.ObjectId;
966
+ createdDate?: Date;
967
+ updatedDate?: Date;
968
+ status?: "Active" | "Paused" | "Pending" | "Archived";
969
+ ownerId?: string | import("mongoose").Types.ObjectId;
970
+ meta?: any;
971
+ merkleLeaf?: string;
972
+ merkleIndex?: number;
973
+ createdById?: string | import("mongoose").Types.ObjectId;
974
+ editedById?: string | import("mongoose").Types.ObjectId;
975
+ deletedById?: string | import("mongoose").Types.ObjectId;
976
+ deletedDate?: Date;
977
+ }, {
978
+ name?: string;
979
+ key?: string;
980
+ id?: string | import("mongoose").Types.ObjectId;
981
+ data?: any;
982
+ description?: string;
983
+ applicationId?: string | import("mongoose").Types.ObjectId;
984
+ createdDate?: Date;
985
+ updatedDate?: Date;
986
+ status?: "Active" | "Paused" | "Pending" | "Archived";
987
+ ownerId?: string | import("mongoose").Types.ObjectId;
988
+ meta?: any;
989
+ merkleLeaf?: string;
990
+ merkleIndex?: number;
991
+ createdById?: string | import("mongoose").Types.ObjectId;
992
+ editedById?: string | import("mongoose").Types.ObjectId;
993
+ deletedById?: string | import("mongoose").Types.ObjectId;
994
+ deletedDate?: Date;
995
+ }>;
996
+ export declare const CharacterTitle: import("zod").ZodObject<{
997
+ key: import("zod").ZodOptional<import("zod").ZodString>;
998
+ name: import("zod").ZodOptional<import("zod").ZodString>;
999
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1000
+ 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>]>>;
1001
+ 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>]>>;
1002
+ } & {
1003
+ 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>]>>;
1004
+ meta: import("zod").ZodAny;
1005
+ data: import("zod").ZodAny;
1006
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
1007
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
1008
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
1009
+ 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>]>>;
1010
+ 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>]>>;
1011
+ 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>]>>;
1012
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
1013
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1014
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1015
+ }, "strip", import("zod").ZodTypeAny, {
1016
+ name?: string;
1017
+ key?: string;
1018
+ id?: string | import("mongoose").Types.ObjectId;
1019
+ data?: any;
1020
+ description?: string;
1021
+ applicationId?: string | import("mongoose").Types.ObjectId;
1022
+ createdDate?: Date;
1023
+ updatedDate?: Date;
1024
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1025
+ ownerId?: string | import("mongoose").Types.ObjectId;
1026
+ meta?: any;
1027
+ merkleLeaf?: string;
1028
+ merkleIndex?: number;
1029
+ createdById?: string | import("mongoose").Types.ObjectId;
1030
+ editedById?: string | import("mongoose").Types.ObjectId;
1031
+ deletedById?: string | import("mongoose").Types.ObjectId;
1032
+ deletedDate?: Date;
1033
+ }, {
1034
+ name?: string;
1035
+ key?: string;
1036
+ id?: string | import("mongoose").Types.ObjectId;
1037
+ data?: any;
1038
+ description?: string;
1039
+ applicationId?: string | import("mongoose").Types.ObjectId;
1040
+ createdDate?: Date;
1041
+ updatedDate?: Date;
1042
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1043
+ ownerId?: string | import("mongoose").Types.ObjectId;
1044
+ meta?: any;
1045
+ merkleLeaf?: string;
1046
+ merkleIndex?: number;
1047
+ createdById?: string | import("mongoose").Types.ObjectId;
1048
+ editedById?: string | import("mongoose").Types.ObjectId;
1049
+ deletedById?: string | import("mongoose").Types.ObjectId;
1050
+ deletedDate?: Date;
1051
+ }>;
1052
+ export declare const CharacterFaction: import("zod").ZodObject<{
1053
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1054
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1055
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1056
+ 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>]>>;
1057
+ 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>]>>;
1058
+ } & {
1059
+ 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>]>>;
1060
+ meta: import("zod").ZodAny;
1061
+ data: import("zod").ZodAny;
1062
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
1063
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
1064
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
1065
+ 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>]>>;
1066
+ 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>]>>;
1067
+ 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>]>>;
1068
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
1069
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1070
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1071
+ } & {
1072
+ shortDescription: import("zod").ZodString;
1073
+ }, "strip", import("zod").ZodTypeAny, {
1074
+ name?: string;
1075
+ key?: string;
1076
+ id?: string | import("mongoose").Types.ObjectId;
1077
+ data?: any;
1078
+ description?: string;
1079
+ applicationId?: string | import("mongoose").Types.ObjectId;
1080
+ createdDate?: Date;
1081
+ updatedDate?: Date;
1082
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1083
+ ownerId?: string | import("mongoose").Types.ObjectId;
1084
+ meta?: any;
1085
+ merkleLeaf?: string;
1086
+ merkleIndex?: number;
1087
+ createdById?: string | import("mongoose").Types.ObjectId;
1088
+ editedById?: string | import("mongoose").Types.ObjectId;
1089
+ deletedById?: string | import("mongoose").Types.ObjectId;
1090
+ deletedDate?: Date;
1091
+ shortDescription?: string;
1092
+ }, {
1093
+ name?: string;
1094
+ key?: string;
1095
+ id?: string | import("mongoose").Types.ObjectId;
1096
+ data?: any;
1097
+ description?: string;
1098
+ applicationId?: string | import("mongoose").Types.ObjectId;
1099
+ createdDate?: Date;
1100
+ updatedDate?: Date;
1101
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1102
+ ownerId?: string | import("mongoose").Types.ObjectId;
1103
+ meta?: any;
1104
+ merkleLeaf?: string;
1105
+ merkleIndex?: number;
1106
+ createdById?: string | import("mongoose").Types.ObjectId;
1107
+ editedById?: string | import("mongoose").Types.ObjectId;
1108
+ deletedById?: string | import("mongoose").Types.ObjectId;
1109
+ deletedDate?: Date;
1110
+ shortDescription?: string;
1111
+ }>;
1112
+ export declare const CharacterNameChoice: import("zod").ZodObject<{
1113
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1114
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1115
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1116
+ 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>]>>;
1117
+ 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>]>>;
1118
+ } & {
1119
+ 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>]>>;
1120
+ meta: import("zod").ZodAny;
1121
+ data: import("zod").ZodAny;
1122
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
1123
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
1124
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
1125
+ 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>]>>;
1126
+ 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>]>>;
1127
+ 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>]>>;
1128
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
1129
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1130
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1131
+ }, "strip", import("zod").ZodTypeAny, {
1132
+ name?: string;
1133
+ key?: string;
1134
+ id?: string | import("mongoose").Types.ObjectId;
1135
+ data?: any;
1136
+ description?: string;
1137
+ applicationId?: string | import("mongoose").Types.ObjectId;
1138
+ createdDate?: Date;
1139
+ updatedDate?: Date;
1140
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1141
+ ownerId?: string | import("mongoose").Types.ObjectId;
1142
+ meta?: any;
1143
+ merkleLeaf?: string;
1144
+ merkleIndex?: number;
1145
+ createdById?: string | import("mongoose").Types.ObjectId;
1146
+ editedById?: string | import("mongoose").Types.ObjectId;
1147
+ deletedById?: string | import("mongoose").Types.ObjectId;
1148
+ deletedDate?: Date;
1149
+ }, {
1150
+ name?: string;
1151
+ key?: string;
1152
+ id?: string | import("mongoose").Types.ObjectId;
1153
+ data?: any;
1154
+ description?: string;
1155
+ applicationId?: string | import("mongoose").Types.ObjectId;
1156
+ createdDate?: Date;
1157
+ updatedDate?: Date;
1158
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1159
+ ownerId?: string | import("mongoose").Types.ObjectId;
1160
+ meta?: any;
1161
+ merkleLeaf?: string;
1162
+ merkleIndex?: number;
1163
+ createdById?: string | import("mongoose").Types.ObjectId;
1164
+ editedById?: string | import("mongoose").Types.ObjectId;
1165
+ deletedById?: string | import("mongoose").Types.ObjectId;
1166
+ deletedDate?: Date;
1167
+ }>;
1168
+ export declare const CharacterGuild: import("zod").ZodObject<{
1169
+ key: import("zod").ZodOptional<import("zod").ZodString>;
1170
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1171
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1172
+ 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>]>>;
1173
+ 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>]>>;
1174
+ } & {
1175
+ 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>]>>;
1176
+ meta: import("zod").ZodAny;
1177
+ data: import("zod").ZodAny;
1178
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
1179
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
1180
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
1181
+ 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>]>>;
1182
+ 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>]>>;
1183
+ 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>]>>;
1184
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
1185
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1186
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
1187
+ }, "strip", import("zod").ZodTypeAny, {
1188
+ name?: string;
1189
+ key?: string;
1190
+ id?: string | import("mongoose").Types.ObjectId;
1191
+ data?: any;
1192
+ description?: string;
1193
+ applicationId?: string | import("mongoose").Types.ObjectId;
1194
+ createdDate?: Date;
1195
+ updatedDate?: Date;
1196
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1197
+ ownerId?: string | import("mongoose").Types.ObjectId;
1198
+ meta?: any;
1199
+ merkleLeaf?: string;
1200
+ merkleIndex?: number;
1201
+ createdById?: string | import("mongoose").Types.ObjectId;
1202
+ editedById?: string | import("mongoose").Types.ObjectId;
1203
+ deletedById?: string | import("mongoose").Types.ObjectId;
1204
+ deletedDate?: Date;
1205
+ }, {
1206
+ name?: string;
1207
+ key?: string;
1208
+ id?: string | import("mongoose").Types.ObjectId;
1209
+ data?: any;
1210
+ description?: string;
1211
+ applicationId?: string | import("mongoose").Types.ObjectId;
1212
+ createdDate?: Date;
1213
+ updatedDate?: Date;
1214
+ status?: "Active" | "Paused" | "Pending" | "Archived";
1215
+ ownerId?: string | import("mongoose").Types.ObjectId;
1216
+ meta?: any;
1217
+ merkleLeaf?: string;
1218
+ merkleIndex?: number;
1219
+ createdById?: string | import("mongoose").Types.ObjectId;
1220
+ editedById?: string | import("mongoose").Types.ObjectId;
1221
+ deletedById?: string | import("mongoose").Types.ObjectId;
1222
+ deletedDate?: Date;
1223
+ }>;