@arken/seer-protocol 0.1.3 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (348) hide show
  1. package/.rush/temp/shrinkwrap-deps.json +5 -229
  2. package/build/area/area.models.d.ts +6 -0
  3. package/build/area/area.models.js +11 -0
  4. package/build/area/area.models.js.map +1 -0
  5. package/build/area/area.router.d.ts +274 -0
  6. package/build/area/area.router.js +59 -0
  7. package/build/area/area.router.js.map +1 -0
  8. package/build/area/area.schema.d.ts +241 -0
  9. package/build/area/area.schema.js +13 -0
  10. package/build/area/area.schema.js.map +1 -0
  11. package/build/area/area.types.d.ts +19 -0
  12. package/build/area/area.types.js +2 -0
  13. package/build/area/area.types.js.map +1 -0
  14. package/build/area/index.d.ts +4 -0
  15. package/build/area/index.js +5 -0
  16. package/build/area/index.js.map +1 -0
  17. package/build/asset/asset.models.d.ts +5 -0
  18. package/build/asset/asset.models.js +44 -0
  19. package/build/asset/asset.models.js.map +1 -0
  20. package/build/asset/asset.router.d.ts +189 -0
  21. package/build/asset/asset.router.js +41 -0
  22. package/build/asset/asset.router.js.map +1 -0
  23. package/build/asset/asset.schema.d.ts +204 -0
  24. package/build/asset/asset.schema.js +22 -0
  25. package/build/asset/asset.schema.js.map +1 -0
  26. package/build/asset/asset.types.d.ts +16 -0
  27. package/build/asset/asset.types.js +2 -0
  28. package/build/asset/asset.types.js.map +1 -0
  29. package/build/asset/index.d.ts +4 -0
  30. package/build/asset/index.js +5 -0
  31. package/build/asset/index.js.map +1 -0
  32. package/build/chain/chain.models.d.ts +6 -0
  33. package/build/chain/chain.models.js +42 -0
  34. package/build/chain/chain.models.js.map +1 -0
  35. package/build/chain/chain.router.d.ts +364 -0
  36. package/build/chain/chain.router.js +84 -0
  37. package/build/chain/chain.router.js.map +1 -0
  38. package/build/chain/chain.schema.d.ts +317 -0
  39. package/build/chain/chain.schema.js +56 -0
  40. package/build/chain/chain.schema.js.map +1 -0
  41. package/build/chain/chain.types.d.ts +19 -0
  42. package/build/chain/chain.types.js +2 -0
  43. package/build/chain/chain.types.js.map +1 -0
  44. package/build/chain/index.d.ts +4 -0
  45. package/build/chain/index.js +5 -0
  46. package/build/chain/index.js.map +1 -0
  47. package/build/character/character.models.d.ts +14 -0
  48. package/build/character/character.models.js +123 -0
  49. package/build/character/character.models.js.map +1 -0
  50. package/build/character/character.router.d.ts +945 -0
  51. package/build/character/character.router.js +246 -0
  52. package/build/character/character.router.js.map +1 -0
  53. package/build/character/character.schema.d.ts +1223 -0
  54. package/build/character/character.schema.js +70 -0
  55. package/build/character/character.schema.js.map +1 -0
  56. package/build/character/character.types.d.ts +47 -0
  57. package/build/character/character.types.js +2 -0
  58. package/build/character/character.types.js.map +1 -0
  59. package/build/character/index.d.ts +4 -0
  60. package/build/character/index.js +5 -0
  61. package/build/character/index.js.map +1 -0
  62. package/build/chat/chat.models.d.ts +4 -0
  63. package/build/chat/chat.models.js +35 -0
  64. package/build/chat/chat.models.js.map +1 -0
  65. package/build/chat/chat.router.d.ts +223 -0
  66. package/build/chat/chat.router.js +51 -0
  67. package/build/chat/chat.router.js.map +1 -0
  68. package/build/chat/chat.schema.d.ts +179 -0
  69. package/build/chat/chat.schema.js +32 -0
  70. package/build/chat/chat.schema.js.map +1 -0
  71. package/build/chat/chat.types.d.ts +13 -0
  72. package/build/chat/chat.types.js +2 -0
  73. package/build/chat/chat.types.js.map +1 -0
  74. package/build/chat/index.d.ts +4 -0
  75. package/build/chat/index.js +5 -0
  76. package/build/chat/index.js.map +1 -0
  77. package/build/collection/collection.models.d.ts +9 -0
  78. package/build/collection/collection.models.js +69 -0
  79. package/build/collection/collection.models.js.map +1 -0
  80. package/build/collection/collection.router.d.ts +361 -0
  81. package/build/collection/collection.router.js +71 -0
  82. package/build/collection/collection.router.js.map +1 -0
  83. package/build/collection/collection.schema.d.ts +660 -0
  84. package/build/collection/collection.schema.js +70 -0
  85. package/build/collection/collection.schema.js.map +1 -0
  86. package/build/collection/collection.types.d.ts +28 -0
  87. package/build/collection/collection.types.js +2 -0
  88. package/build/collection/collection.types.js.map +1 -0
  89. package/build/collection/index.d.ts +4 -0
  90. package/build/collection/index.js +5 -0
  91. package/build/collection/index.js.map +1 -0
  92. package/build/core/core.models.d.ts +123 -0
  93. package/build/core/core.models.js +811 -0
  94. package/build/core/core.models.js.map +1 -0
  95. package/build/core/core.router.d.ts +5297 -0
  96. package/build/core/core.router.js +1372 -0
  97. package/build/core/core.router.js.map +1 -0
  98. package/build/core/core.schema.d.ts +5808 -0
  99. package/build/core/core.schema.js +612 -0
  100. package/build/core/core.schema.js.map +1 -0
  101. package/build/core/core.types.d.ts +250 -0
  102. package/build/core/core.types.js +2 -0
  103. package/build/core/core.types.js.map +1 -0
  104. package/build/core/index.d.ts +4 -0
  105. package/build/core/index.js +5 -0
  106. package/build/core/index.js.map +1 -0
  107. package/build/evolution/evolution.models.d.ts +1 -0
  108. package/build/evolution/evolution.models.js +3 -0
  109. package/build/evolution/evolution.models.js.map +1 -0
  110. package/build/evolution/evolution.router.d.ts +244 -0
  111. package/build/evolution/evolution.router.js +112 -0
  112. package/build/evolution/evolution.router.js.map +1 -0
  113. package/build/evolution/evolution.schema.d.ts +1 -0
  114. package/build/evolution/evolution.schema.js +2 -0
  115. package/build/evolution/evolution.schema.js.map +1 -0
  116. package/build/evolution/evolution.types.d.ts +3 -0
  117. package/build/evolution/evolution.types.js +2 -0
  118. package/build/evolution/evolution.types.js.map +1 -0
  119. package/build/evolution/index.d.ts +4 -0
  120. package/build/evolution/index.js +4 -0
  121. package/build/evolution/index.js.map +1 -0
  122. package/build/game/game.models.d.ts +6 -0
  123. package/build/game/game.models.js +29 -0
  124. package/build/game/game.models.js.map +1 -0
  125. package/build/game/game.router.d.ts +428 -0
  126. package/build/game/game.router.js +90 -0
  127. package/build/game/game.router.js.map +1 -0
  128. package/build/game/game.schema.d.ts +339 -0
  129. package/build/game/game.schema.js +14 -0
  130. package/build/game/game.schema.js.map +1 -0
  131. package/build/game/game.types.d.ts +19 -0
  132. package/build/game/game.types.js +2 -0
  133. package/build/game/game.types.js.map +1 -0
  134. package/build/game/index.d.ts +4 -0
  135. package/build/game/index.js +4 -0
  136. package/build/game/index.js.map +1 -0
  137. package/build/index.d.ts +30 -0
  138. package/build/index.js +26 -0
  139. package/build/index.js.map +1 -0
  140. package/build/infinite/index.d.ts +4 -0
  141. package/build/infinite/index.js +4 -0
  142. package/build/infinite/index.js.map +1 -0
  143. package/build/infinite/infinite.models.d.ts +1 -0
  144. package/build/infinite/infinite.models.js +3 -0
  145. package/build/infinite/infinite.models.js.map +1 -0
  146. package/build/infinite/infinite.router.d.ts +95 -0
  147. package/build/infinite/infinite.router.js +40 -0
  148. package/build/infinite/infinite.router.js.map +1 -0
  149. package/build/infinite/infinite.schema.d.ts +1 -0
  150. package/build/infinite/infinite.schema.js +2 -0
  151. package/build/infinite/infinite.schema.js.map +1 -0
  152. package/build/infinite/infinite.types.d.ts +3 -0
  153. package/build/infinite/infinite.types.js +2 -0
  154. package/build/infinite/infinite.types.js.map +1 -0
  155. package/build/interface/index.d.ts +4 -0
  156. package/build/interface/index.js +5 -0
  157. package/build/interface/index.js.map +1 -0
  158. package/build/interface/interface.canonicalize.d.ts +2 -0
  159. package/build/interface/interface.canonicalize.js +241 -0
  160. package/build/interface/interface.canonicalize.js.map +1 -0
  161. package/build/interface/interface.models.d.ts +6 -0
  162. package/build/interface/interface.models.js +30 -0
  163. package/build/interface/interface.models.js.map +1 -0
  164. package/build/interface/interface.router.d.ts +472 -0
  165. package/build/interface/interface.router.js +113 -0
  166. package/build/interface/interface.router.js.map +1 -0
  167. package/build/interface/interface.schema.d.ts +305 -0
  168. package/build/interface/interface.schema.js +36 -0
  169. package/build/interface/interface.schema.js.map +1 -0
  170. package/build/interface/interface.types.d.ts +18 -0
  171. package/build/interface/interface.types.js +2 -0
  172. package/build/interface/interface.types.js.map +1 -0
  173. package/build/isles/index.d.ts +4 -0
  174. package/build/isles/index.js +4 -0
  175. package/build/isles/index.js.map +1 -0
  176. package/build/isles/isles.models.d.ts +1 -0
  177. package/build/isles/isles.models.js +3 -0
  178. package/build/isles/isles.models.js.map +1 -0
  179. package/build/isles/isles.router.d.ts +95 -0
  180. package/build/isles/isles.router.js +40 -0
  181. package/build/isles/isles.router.js.map +1 -0
  182. package/build/isles/isles.schema.d.ts +1 -0
  183. package/build/isles/isles.schema.js +2 -0
  184. package/build/isles/isles.schema.js.map +1 -0
  185. package/build/isles/isles.types.d.ts +3 -0
  186. package/build/isles/isles.types.js +2 -0
  187. package/build/isles/isles.types.js.map +1 -0
  188. package/build/item/index.d.ts +4 -0
  189. package/build/item/index.js +5 -0
  190. package/build/item/index.js.map +1 -0
  191. package/build/item/item.models.d.ts +16 -0
  192. package/build/item/item.models.js +101 -0
  193. package/build/item/item.models.js.map +1 -0
  194. package/build/item/item.router.d.ts +263 -0
  195. package/build/item/item.router.js +70 -0
  196. package/build/item/item.router.js.map +1 -0
  197. package/build/item/item.schema.d.ts +765 -0
  198. package/build/item/item.schema.js +86 -0
  199. package/build/item/item.schema.js.map +1 -0
  200. package/build/item/item.types.d.ts +54 -0
  201. package/build/item/item.types.js +2 -0
  202. package/build/item/item.types.js.map +1 -0
  203. package/build/job/index.d.ts +4 -0
  204. package/build/job/index.js +5 -0
  205. package/build/job/index.js.map +1 -0
  206. package/build/job/job.models.d.ts +3 -0
  207. package/build/job/job.models.js +9 -0
  208. package/build/job/job.models.js.map +1 -0
  209. package/build/job/job.router.d.ts +146 -0
  210. package/build/job/job.router.js +32 -0
  211. package/build/job/job.router.js.map +1 -0
  212. package/build/job/job.schema.d.ts +66 -0
  213. package/build/job/job.schema.js +7 -0
  214. package/build/job/job.schema.js.map +1 -0
  215. package/build/job/job.types.d.ts +15 -0
  216. package/build/job/job.types.js +2 -0
  217. package/build/job/job.types.js.map +1 -0
  218. package/build/market/index.d.ts +4 -0
  219. package/build/market/index.js +5 -0
  220. package/build/market/index.js.map +1 -0
  221. package/build/market/market.models.d.ts +14 -0
  222. package/build/market/market.models.js +98 -0
  223. package/build/market/market.models.js.map +1 -0
  224. package/build/market/market.router.d.ts +230 -0
  225. package/build/market/market.router.js +56 -0
  226. package/build/market/market.router.js.map +1 -0
  227. package/build/market/market.schema.d.ts +937 -0
  228. package/build/market/market.schema.js +110 -0
  229. package/build/market/market.schema.js.map +1 -0
  230. package/build/market/market.types.d.ts +48 -0
  231. package/build/market/market.types.js +2 -0
  232. package/build/market/market.types.js.map +1 -0
  233. package/build/oasis/index.d.ts +4 -0
  234. package/build/oasis/index.js +4 -0
  235. package/build/oasis/index.js.map +1 -0
  236. package/build/oasis/oasis.models.d.ts +1 -0
  237. package/build/oasis/oasis.models.js +3 -0
  238. package/build/oasis/oasis.models.js.map +1 -0
  239. package/build/oasis/oasis.router.d.ts +91 -0
  240. package/build/oasis/oasis.router.js +52 -0
  241. package/build/oasis/oasis.router.js.map +1 -0
  242. package/build/oasis/oasis.schema.d.ts +1 -0
  243. package/build/oasis/oasis.schema.js +2 -0
  244. package/build/oasis/oasis.schema.js.map +1 -0
  245. package/build/oasis/oasis.types.d.ts +3 -0
  246. package/build/oasis/oasis.types.js +2 -0
  247. package/build/oasis/oasis.types.js.map +1 -0
  248. package/build/package.json +29 -0
  249. package/build/product/index.d.ts +4 -0
  250. package/build/product/index.js +5 -0
  251. package/build/product/index.js.map +1 -0
  252. package/build/product/product.models.d.ts +4 -0
  253. package/build/product/product.models.js +113 -0
  254. package/build/product/product.models.js.map +1 -0
  255. package/build/product/product.router.d.ts +447 -0
  256. package/build/product/product.router.js +71 -0
  257. package/build/product/product.router.js.map +1 -0
  258. package/build/product/product.schema.d.ts +640 -0
  259. package/build/product/product.schema.js +154 -0
  260. package/build/product/product.schema.js.map +1 -0
  261. package/build/product/product.types.d.ts +27 -0
  262. package/build/product/product.types.js +2 -0
  263. package/build/product/product.types.js.map +1 -0
  264. package/build/profile/index.d.ts +4 -0
  265. package/build/profile/index.js +5 -0
  266. package/build/profile/index.js.map +1 -0
  267. package/build/profile/profile.models.d.ts +2 -0
  268. package/build/profile/profile.models.js +165 -0
  269. package/build/profile/profile.models.js.map +1 -0
  270. package/build/profile/profile.router.d.ts +163 -0
  271. package/build/profile/profile.router.js +54 -0
  272. package/build/profile/profile.router.js.map +1 -0
  273. package/build/profile/profile.schema.d.ts +1 -0
  274. package/build/profile/profile.schema.js +201 -0
  275. package/build/profile/profile.schema.js.map +1 -0
  276. package/build/profile/profile.types.d.ts +15 -0
  277. package/build/profile/profile.types.js +2 -0
  278. package/build/profile/profile.types.js.map +1 -0
  279. package/build/raffle/index.d.ts +4 -0
  280. package/build/raffle/index.js +5 -0
  281. package/build/raffle/index.js.map +1 -0
  282. package/build/raffle/raffle.models.d.ts +6 -0
  283. package/build/raffle/raffle.models.js +36 -0
  284. package/build/raffle/raffle.models.js.map +1 -0
  285. package/build/raffle/raffle.router.d.ts +299 -0
  286. package/build/raffle/raffle.router.js +71 -0
  287. package/build/raffle/raffle.router.js.map +1 -0
  288. package/build/raffle/raffle.schema.d.ts +261 -0
  289. package/build/raffle/raffle.schema.js +21 -0
  290. package/build/raffle/raffle.schema.js.map +1 -0
  291. package/build/raffle/raffle.types.d.ts +24 -0
  292. package/build/raffle/raffle.types.js +2 -0
  293. package/build/raffle/raffle.types.js.map +1 -0
  294. package/build/router.d.ts +10755 -0
  295. package/build/router.js +87 -0
  296. package/build/router.js.map +1 -0
  297. package/build/schema.d.ts +279 -0
  298. package/build/schema.js +157 -0
  299. package/build/schema.js.map +1 -0
  300. package/build/skill/index.d.ts +4 -0
  301. package/build/skill/index.js +5 -0
  302. package/build/skill/index.js.map +1 -0
  303. package/build/skill/skill.models.d.ts +9 -0
  304. package/build/skill/skill.models.js +9 -0
  305. package/build/skill/skill.models.js.map +1 -0
  306. package/build/skill/skill.router.d.ts +659 -0
  307. package/build/skill/skill.router.js +152 -0
  308. package/build/skill/skill.router.js.map +1 -0
  309. package/build/skill/skill.schema.d.ts +536 -0
  310. package/build/skill/skill.schema.js +38 -0
  311. package/build/skill/skill.schema.js.map +1 -0
  312. package/build/skill/skill.types.d.ts +28 -0
  313. package/build/skill/skill.types.js +2 -0
  314. package/build/skill/skill.types.js.map +1 -0
  315. package/build/trek/index.d.ts +4 -0
  316. package/build/trek/index.js +4 -0
  317. package/build/trek/index.js.map +1 -0
  318. package/build/trek/trek.models.d.ts +1 -0
  319. package/build/trek/trek.models.js +2 -0
  320. package/build/trek/trek.models.js.map +1 -0
  321. package/build/trek/trek.router.d.ts +86 -0
  322. package/build/trek/trek.router.js +43 -0
  323. package/build/trek/trek.router.js.map +1 -0
  324. package/build/trek/trek.schema.d.ts +1 -0
  325. package/build/trek/trek.schema.js +2 -0
  326. package/build/trek/trek.schema.js.map +1 -0
  327. package/build/trek/trek.types.d.ts +1 -0
  328. package/build/trek/trek.types.js +2 -0
  329. package/build/trek/trek.types.js.map +1 -0
  330. package/build/types.d.ts +187 -0
  331. package/build/types.js +29 -0
  332. package/build/types.js.map +1 -0
  333. package/build/video/index.d.ts +4 -0
  334. package/build/video/index.js +5 -0
  335. package/build/video/index.js.map +1 -0
  336. package/build/video/video.models.d.ts +7 -0
  337. package/build/video/video.models.js +19 -0
  338. package/build/video/video.models.js.map +1 -0
  339. package/build/video/video.router.d.ts +563 -0
  340. package/build/video/video.router.js +112 -0
  341. package/build/video/video.router.js.map +1 -0
  342. package/build/video/video.schema.d.ts +446 -0
  343. package/build/video/video.schema.js +31 -0
  344. package/build/video/video.schema.js.map +1 -0
  345. package/build/video/video.types.d.ts +27 -0
  346. package/build/video/video.types.js +2 -0
  347. package/build/video/video.types.js.map +1 -0
  348. package/package.json +11 -4
@@ -0,0 +1,536 @@
1
+ export declare const Skill: import("zod").ZodObject<{
2
+ key: import("zod").ZodOptional<import("zod").ZodString>;
3
+ 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>]>>;
4
+ 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>]>>;
5
+ 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>]>>;
6
+ meta: import("zod").ZodAny;
7
+ data: import("zod").ZodAny;
8
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
9
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
10
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
11
+ createdById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
12
+ editedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
13
+ deletedById: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
14
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
15
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
16
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
17
+ } & {
18
+ name: import("zod").ZodString;
19
+ description: import("zod").ZodOptional<import("zod").ZodString>;
20
+ type: import("zod").ZodEnum<["attack", "defense", "utility"]>;
21
+ cooldown: import("zod").ZodOptional<import("zod").ZodNumber>;
22
+ power: import("zod").ZodOptional<import("zod").ZodNumber>;
23
+ }, "strip", import("zod").ZodTypeAny, {
24
+ name?: string;
25
+ key?: string;
26
+ id?: string | import("mongoose").Types.ObjectId;
27
+ data?: any;
28
+ type?: "attack" | "defense" | "utility";
29
+ description?: string;
30
+ applicationId?: string | import("mongoose").Types.ObjectId;
31
+ createdDate?: Date;
32
+ updatedDate?: Date;
33
+ status?: "Active" | "Paused" | "Pending" | "Archived";
34
+ ownerId?: string | import("mongoose").Types.ObjectId;
35
+ meta?: any;
36
+ merkleLeaf?: string;
37
+ merkleIndex?: number;
38
+ createdById?: string | import("mongoose").Types.ObjectId;
39
+ editedById?: string | import("mongoose").Types.ObjectId;
40
+ deletedById?: string | import("mongoose").Types.ObjectId;
41
+ deletedDate?: Date;
42
+ cooldown?: number;
43
+ power?: number;
44
+ }, {
45
+ name?: string;
46
+ key?: string;
47
+ id?: string | import("mongoose").Types.ObjectId;
48
+ data?: any;
49
+ type?: "attack" | "defense" | "utility";
50
+ description?: string;
51
+ applicationId?: string | import("mongoose").Types.ObjectId;
52
+ createdDate?: Date;
53
+ updatedDate?: Date;
54
+ status?: "Active" | "Paused" | "Pending" | "Archived";
55
+ ownerId?: string | import("mongoose").Types.ObjectId;
56
+ meta?: any;
57
+ merkleLeaf?: string;
58
+ merkleIndex?: number;
59
+ createdById?: string | import("mongoose").Types.ObjectId;
60
+ editedById?: string | import("mongoose").Types.ObjectId;
61
+ deletedById?: string | import("mongoose").Types.ObjectId;
62
+ deletedDate?: Date;
63
+ cooldown?: number;
64
+ power?: number;
65
+ }>;
66
+ export declare const SkillEffect: import("zod").ZodObject<{
67
+ key: import("zod").ZodOptional<import("zod").ZodString>;
68
+ name: import("zod").ZodOptional<import("zod").ZodString>;
69
+ description: import("zod").ZodOptional<import("zod").ZodString>;
70
+ 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>]>>;
71
+ 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>]>>;
72
+ } & {
73
+ 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>]>>;
74
+ meta: import("zod").ZodAny;
75
+ data: import("zod").ZodAny;
76
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
77
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
78
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
79
+ 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>]>>;
80
+ 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>]>>;
81
+ 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>]>>;
82
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
83
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
84
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
85
+ } & {
86
+ skillId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
87
+ effectType: import("zod").ZodEnum<["damage", "heal", "buff", "debuff"]>;
88
+ magnitude: import("zod").ZodNumber;
89
+ duration: import("zod").ZodOptional<import("zod").ZodNumber>;
90
+ }, "strip", import("zod").ZodTypeAny, {
91
+ name?: string;
92
+ key?: string;
93
+ id?: string | import("mongoose").Types.ObjectId;
94
+ data?: any;
95
+ description?: string;
96
+ applicationId?: string | import("mongoose").Types.ObjectId;
97
+ createdDate?: Date;
98
+ updatedDate?: Date;
99
+ status?: "Active" | "Paused" | "Pending" | "Archived";
100
+ ownerId?: string | import("mongoose").Types.ObjectId;
101
+ meta?: any;
102
+ merkleLeaf?: string;
103
+ merkleIndex?: number;
104
+ createdById?: string | import("mongoose").Types.ObjectId;
105
+ editedById?: string | import("mongoose").Types.ObjectId;
106
+ deletedById?: string | import("mongoose").Types.ObjectId;
107
+ deletedDate?: Date;
108
+ skillId?: string | import("mongoose").Types.ObjectId;
109
+ effectType?: "damage" | "heal" | "buff" | "debuff";
110
+ magnitude?: number;
111
+ duration?: number;
112
+ }, {
113
+ name?: string;
114
+ key?: string;
115
+ id?: string | import("mongoose").Types.ObjectId;
116
+ data?: any;
117
+ description?: string;
118
+ applicationId?: string | import("mongoose").Types.ObjectId;
119
+ createdDate?: Date;
120
+ updatedDate?: Date;
121
+ status?: "Active" | "Paused" | "Pending" | "Archived";
122
+ ownerId?: string | import("mongoose").Types.ObjectId;
123
+ meta?: any;
124
+ merkleLeaf?: string;
125
+ merkleIndex?: number;
126
+ createdById?: string | import("mongoose").Types.ObjectId;
127
+ editedById?: string | import("mongoose").Types.ObjectId;
128
+ deletedById?: string | import("mongoose").Types.ObjectId;
129
+ deletedDate?: Date;
130
+ skillId?: string | import("mongoose").Types.ObjectId;
131
+ effectType?: "damage" | "heal" | "buff" | "debuff";
132
+ magnitude?: number;
133
+ duration?: number;
134
+ }>;
135
+ export declare const SkillRequirement: import("zod").ZodObject<{
136
+ key: import("zod").ZodOptional<import("zod").ZodString>;
137
+ name: import("zod").ZodOptional<import("zod").ZodString>;
138
+ description: import("zod").ZodOptional<import("zod").ZodString>;
139
+ 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>]>>;
140
+ 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>]>>;
141
+ } & {
142
+ 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>]>>;
143
+ meta: import("zod").ZodAny;
144
+ data: import("zod").ZodAny;
145
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
146
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
147
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
148
+ 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>]>>;
149
+ 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>]>>;
150
+ 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>]>>;
151
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
152
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
153
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
154
+ } & {
155
+ skillId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
156
+ levelRequired: import("zod").ZodNumber;
157
+ previousSkillId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
158
+ }, "strip", import("zod").ZodTypeAny, {
159
+ name?: string;
160
+ key?: string;
161
+ id?: string | import("mongoose").Types.ObjectId;
162
+ data?: any;
163
+ description?: string;
164
+ applicationId?: string | import("mongoose").Types.ObjectId;
165
+ createdDate?: Date;
166
+ updatedDate?: Date;
167
+ status?: "Active" | "Paused" | "Pending" | "Archived";
168
+ ownerId?: string | import("mongoose").Types.ObjectId;
169
+ meta?: any;
170
+ merkleLeaf?: string;
171
+ merkleIndex?: number;
172
+ createdById?: string | import("mongoose").Types.ObjectId;
173
+ editedById?: string | import("mongoose").Types.ObjectId;
174
+ deletedById?: string | import("mongoose").Types.ObjectId;
175
+ deletedDate?: Date;
176
+ levelRequired?: number;
177
+ skillId?: string | import("mongoose").Types.ObjectId;
178
+ previousSkillId?: string | import("mongoose").Types.ObjectId;
179
+ }, {
180
+ name?: string;
181
+ key?: string;
182
+ id?: string | import("mongoose").Types.ObjectId;
183
+ data?: any;
184
+ description?: string;
185
+ applicationId?: string | import("mongoose").Types.ObjectId;
186
+ createdDate?: Date;
187
+ updatedDate?: Date;
188
+ status?: "Active" | "Paused" | "Pending" | "Archived";
189
+ ownerId?: string | import("mongoose").Types.ObjectId;
190
+ meta?: any;
191
+ merkleLeaf?: string;
192
+ merkleIndex?: number;
193
+ createdById?: string | import("mongoose").Types.ObjectId;
194
+ editedById?: string | import("mongoose").Types.ObjectId;
195
+ deletedById?: string | import("mongoose").Types.ObjectId;
196
+ deletedDate?: Date;
197
+ levelRequired?: number;
198
+ skillId?: string | import("mongoose").Types.ObjectId;
199
+ previousSkillId?: string | import("mongoose").Types.ObjectId;
200
+ }>;
201
+ export declare const SkillMod: import("zod").ZodObject<{
202
+ key: import("zod").ZodOptional<import("zod").ZodString>;
203
+ name: import("zod").ZodOptional<import("zod").ZodString>;
204
+ description: import("zod").ZodOptional<import("zod").ZodString>;
205
+ 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>]>>;
206
+ 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>]>>;
207
+ } & {
208
+ 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>]>>;
209
+ meta: import("zod").ZodAny;
210
+ data: import("zod").ZodAny;
211
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
212
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
213
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
214
+ 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>]>>;
215
+ 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>]>>;
216
+ 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>]>>;
217
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
218
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
219
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
220
+ }, "strip", import("zod").ZodTypeAny, {
221
+ name?: string;
222
+ key?: string;
223
+ id?: string | import("mongoose").Types.ObjectId;
224
+ data?: any;
225
+ description?: string;
226
+ applicationId?: string | import("mongoose").Types.ObjectId;
227
+ createdDate?: Date;
228
+ updatedDate?: Date;
229
+ status?: "Active" | "Paused" | "Pending" | "Archived";
230
+ ownerId?: string | import("mongoose").Types.ObjectId;
231
+ meta?: any;
232
+ merkleLeaf?: string;
233
+ merkleIndex?: number;
234
+ createdById?: string | import("mongoose").Types.ObjectId;
235
+ editedById?: string | import("mongoose").Types.ObjectId;
236
+ deletedById?: string | import("mongoose").Types.ObjectId;
237
+ deletedDate?: Date;
238
+ }, {
239
+ name?: string;
240
+ key?: string;
241
+ id?: string | import("mongoose").Types.ObjectId;
242
+ data?: any;
243
+ description?: string;
244
+ applicationId?: string | import("mongoose").Types.ObjectId;
245
+ createdDate?: Date;
246
+ updatedDate?: Date;
247
+ status?: "Active" | "Paused" | "Pending" | "Archived";
248
+ ownerId?: string | import("mongoose").Types.ObjectId;
249
+ meta?: any;
250
+ merkleLeaf?: string;
251
+ merkleIndex?: number;
252
+ createdById?: string | import("mongoose").Types.ObjectId;
253
+ editedById?: string | import("mongoose").Types.ObjectId;
254
+ deletedById?: string | import("mongoose").Types.ObjectId;
255
+ deletedDate?: Date;
256
+ }>;
257
+ export declare const SkillClassification: import("zod").ZodObject<{
258
+ key: import("zod").ZodOptional<import("zod").ZodString>;
259
+ name: import("zod").ZodOptional<import("zod").ZodString>;
260
+ description: import("zod").ZodOptional<import("zod").ZodString>;
261
+ 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>]>>;
262
+ 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>]>>;
263
+ } & {
264
+ 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>]>>;
265
+ meta: import("zod").ZodAny;
266
+ data: import("zod").ZodAny;
267
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
268
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
269
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
270
+ 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>]>>;
271
+ 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>]>>;
272
+ 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>]>>;
273
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
274
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
275
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
276
+ }, "strip", import("zod").ZodTypeAny, {
277
+ name?: string;
278
+ key?: string;
279
+ id?: string | import("mongoose").Types.ObjectId;
280
+ data?: any;
281
+ description?: string;
282
+ applicationId?: string | import("mongoose").Types.ObjectId;
283
+ createdDate?: Date;
284
+ updatedDate?: Date;
285
+ status?: "Active" | "Paused" | "Pending" | "Archived";
286
+ ownerId?: string | import("mongoose").Types.ObjectId;
287
+ meta?: any;
288
+ merkleLeaf?: string;
289
+ merkleIndex?: number;
290
+ createdById?: string | import("mongoose").Types.ObjectId;
291
+ editedById?: string | import("mongoose").Types.ObjectId;
292
+ deletedById?: string | import("mongoose").Types.ObjectId;
293
+ deletedDate?: Date;
294
+ }, {
295
+ name?: string;
296
+ key?: string;
297
+ id?: string | import("mongoose").Types.ObjectId;
298
+ data?: any;
299
+ description?: string;
300
+ applicationId?: string | import("mongoose").Types.ObjectId;
301
+ createdDate?: Date;
302
+ updatedDate?: Date;
303
+ status?: "Active" | "Paused" | "Pending" | "Archived";
304
+ ownerId?: string | import("mongoose").Types.ObjectId;
305
+ meta?: any;
306
+ merkleLeaf?: string;
307
+ merkleIndex?: number;
308
+ createdById?: string | import("mongoose").Types.ObjectId;
309
+ editedById?: string | import("mongoose").Types.ObjectId;
310
+ deletedById?: string | import("mongoose").Types.ObjectId;
311
+ deletedDate?: Date;
312
+ }>;
313
+ export declare const SkillCondition: import("zod").ZodObject<{
314
+ key: import("zod").ZodOptional<import("zod").ZodString>;
315
+ name: import("zod").ZodOptional<import("zod").ZodString>;
316
+ description: import("zod").ZodOptional<import("zod").ZodString>;
317
+ 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>]>>;
318
+ 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>]>>;
319
+ } & {
320
+ 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>]>>;
321
+ meta: import("zod").ZodAny;
322
+ data: import("zod").ZodAny;
323
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
324
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
325
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
326
+ 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>]>>;
327
+ 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>]>>;
328
+ 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>]>>;
329
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
330
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
331
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
332
+ }, "strip", import("zod").ZodTypeAny, {
333
+ name?: string;
334
+ key?: string;
335
+ id?: string | import("mongoose").Types.ObjectId;
336
+ data?: any;
337
+ description?: string;
338
+ applicationId?: string | import("mongoose").Types.ObjectId;
339
+ createdDate?: Date;
340
+ updatedDate?: Date;
341
+ status?: "Active" | "Paused" | "Pending" | "Archived";
342
+ ownerId?: string | import("mongoose").Types.ObjectId;
343
+ meta?: any;
344
+ merkleLeaf?: string;
345
+ merkleIndex?: number;
346
+ createdById?: string | import("mongoose").Types.ObjectId;
347
+ editedById?: string | import("mongoose").Types.ObjectId;
348
+ deletedById?: string | import("mongoose").Types.ObjectId;
349
+ deletedDate?: Date;
350
+ }, {
351
+ name?: string;
352
+ key?: string;
353
+ id?: string | import("mongoose").Types.ObjectId;
354
+ data?: any;
355
+ description?: string;
356
+ applicationId?: string | import("mongoose").Types.ObjectId;
357
+ createdDate?: Date;
358
+ updatedDate?: Date;
359
+ status?: "Active" | "Paused" | "Pending" | "Archived";
360
+ ownerId?: string | import("mongoose").Types.ObjectId;
361
+ meta?: any;
362
+ merkleLeaf?: string;
363
+ merkleIndex?: number;
364
+ createdById?: string | import("mongoose").Types.ObjectId;
365
+ editedById?: string | import("mongoose").Types.ObjectId;
366
+ deletedById?: string | import("mongoose").Types.ObjectId;
367
+ deletedDate?: Date;
368
+ }>;
369
+ export declare const SkillStatusEffect: import("zod").ZodObject<{
370
+ key: import("zod").ZodOptional<import("zod").ZodString>;
371
+ name: import("zod").ZodOptional<import("zod").ZodString>;
372
+ description: import("zod").ZodOptional<import("zod").ZodString>;
373
+ 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>]>>;
374
+ 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>]>>;
375
+ } & {
376
+ 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>]>>;
377
+ meta: import("zod").ZodAny;
378
+ data: import("zod").ZodAny;
379
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
380
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
381
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
382
+ 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>]>>;
383
+ 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>]>>;
384
+ 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>]>>;
385
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
386
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
387
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
388
+ }, "strip", import("zod").ZodTypeAny, {
389
+ name?: string;
390
+ key?: string;
391
+ id?: string | import("mongoose").Types.ObjectId;
392
+ data?: any;
393
+ description?: string;
394
+ applicationId?: string | import("mongoose").Types.ObjectId;
395
+ createdDate?: Date;
396
+ updatedDate?: Date;
397
+ status?: "Active" | "Paused" | "Pending" | "Archived";
398
+ ownerId?: string | import("mongoose").Types.ObjectId;
399
+ meta?: any;
400
+ merkleLeaf?: string;
401
+ merkleIndex?: number;
402
+ createdById?: string | import("mongoose").Types.ObjectId;
403
+ editedById?: string | import("mongoose").Types.ObjectId;
404
+ deletedById?: string | import("mongoose").Types.ObjectId;
405
+ deletedDate?: Date;
406
+ }, {
407
+ name?: string;
408
+ key?: string;
409
+ id?: string | import("mongoose").Types.ObjectId;
410
+ data?: any;
411
+ description?: string;
412
+ applicationId?: string | import("mongoose").Types.ObjectId;
413
+ createdDate?: Date;
414
+ updatedDate?: Date;
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
+ }>;
425
+ export declare const SkillTree: import("zod").ZodObject<{
426
+ key: import("zod").ZodOptional<import("zod").ZodString>;
427
+ name: import("zod").ZodOptional<import("zod").ZodString>;
428
+ description: import("zod").ZodOptional<import("zod").ZodString>;
429
+ 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>]>>;
430
+ 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>]>>;
431
+ } & {
432
+ 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>]>>;
433
+ meta: import("zod").ZodAny;
434
+ data: import("zod").ZodAny;
435
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
436
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
437
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
438
+ 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>]>>;
439
+ 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>]>>;
440
+ 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>]>>;
441
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
442
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
443
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
444
+ }, "strip", import("zod").ZodTypeAny, {
445
+ name?: string;
446
+ key?: string;
447
+ id?: string | import("mongoose").Types.ObjectId;
448
+ data?: any;
449
+ description?: string;
450
+ applicationId?: string | import("mongoose").Types.ObjectId;
451
+ createdDate?: Date;
452
+ updatedDate?: Date;
453
+ status?: "Active" | "Paused" | "Pending" | "Archived";
454
+ ownerId?: string | import("mongoose").Types.ObjectId;
455
+ meta?: any;
456
+ merkleLeaf?: string;
457
+ merkleIndex?: number;
458
+ createdById?: string | import("mongoose").Types.ObjectId;
459
+ editedById?: string | import("mongoose").Types.ObjectId;
460
+ deletedById?: string | import("mongoose").Types.ObjectId;
461
+ deletedDate?: Date;
462
+ }, {
463
+ name?: string;
464
+ key?: string;
465
+ id?: string | import("mongoose").Types.ObjectId;
466
+ data?: any;
467
+ description?: string;
468
+ applicationId?: string | import("mongoose").Types.ObjectId;
469
+ createdDate?: Date;
470
+ updatedDate?: Date;
471
+ status?: "Active" | "Paused" | "Pending" | "Archived";
472
+ ownerId?: string | import("mongoose").Types.ObjectId;
473
+ meta?: any;
474
+ merkleLeaf?: string;
475
+ merkleIndex?: number;
476
+ createdById?: string | import("mongoose").Types.ObjectId;
477
+ editedById?: string | import("mongoose").Types.ObjectId;
478
+ deletedById?: string | import("mongoose").Types.ObjectId;
479
+ deletedDate?: Date;
480
+ }>;
481
+ export declare const SkillTreeNode: import("zod").ZodObject<{
482
+ key: import("zod").ZodOptional<import("zod").ZodString>;
483
+ name: import("zod").ZodOptional<import("zod").ZodString>;
484
+ description: import("zod").ZodOptional<import("zod").ZodString>;
485
+ 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>]>>;
486
+ 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>]>>;
487
+ } & {
488
+ 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>]>>;
489
+ meta: import("zod").ZodAny;
490
+ data: import("zod").ZodAny;
491
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
492
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
493
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
494
+ 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>]>>;
495
+ 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>]>>;
496
+ 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>]>>;
497
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
498
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
499
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
500
+ }, "strip", import("zod").ZodTypeAny, {
501
+ name?: string;
502
+ key?: string;
503
+ id?: string | import("mongoose").Types.ObjectId;
504
+ data?: any;
505
+ description?: string;
506
+ applicationId?: string | import("mongoose").Types.ObjectId;
507
+ createdDate?: Date;
508
+ updatedDate?: Date;
509
+ status?: "Active" | "Paused" | "Pending" | "Archived";
510
+ ownerId?: string | import("mongoose").Types.ObjectId;
511
+ meta?: any;
512
+ merkleLeaf?: string;
513
+ merkleIndex?: number;
514
+ createdById?: string | import("mongoose").Types.ObjectId;
515
+ editedById?: string | import("mongoose").Types.ObjectId;
516
+ deletedById?: string | import("mongoose").Types.ObjectId;
517
+ deletedDate?: Date;
518
+ }, {
519
+ name?: string;
520
+ key?: string;
521
+ id?: string | import("mongoose").Types.ObjectId;
522
+ data?: any;
523
+ description?: string;
524
+ applicationId?: string | import("mongoose").Types.ObjectId;
525
+ createdDate?: Date;
526
+ updatedDate?: Date;
527
+ status?: "Active" | "Paused" | "Pending" | "Archived";
528
+ ownerId?: string | import("mongoose").Types.ObjectId;
529
+ meta?: any;
530
+ merkleLeaf?: string;
531
+ merkleIndex?: number;
532
+ createdById?: string | import("mongoose").Types.ObjectId;
533
+ editedById?: string | import("mongoose").Types.ObjectId;
534
+ deletedById?: string | import("mongoose").Types.ObjectId;
535
+ deletedDate?: Date;
536
+ }>;
@@ -0,0 +1,38 @@
1
+ import { z, ObjectId, Entity } from '../schema';
2
+ export const Skill = Entity.merge(z.object({
3
+ name: z.string().min(1),
4
+ description: z
5
+ .string()
6
+ .min(1)
7
+ .optional(),
8
+ type: z.enum(['attack', 'defense', 'utility']),
9
+ cooldown: z
10
+ .number()
11
+ .min(0)
12
+ .optional(),
13
+ power: z
14
+ .number()
15
+ .min(0)
16
+ .optional(),
17
+ }));
18
+ export const SkillEffect = Entity.merge(z.object({
19
+ skillId: ObjectId,
20
+ effectType: z.enum(['damage', 'heal', 'buff', 'debuff']),
21
+ magnitude: z.number().min(0),
22
+ duration: z
23
+ .number()
24
+ .min(0)
25
+ .optional(),
26
+ }));
27
+ export const SkillRequirement = Entity.merge(z.object({
28
+ skillId: ObjectId,
29
+ levelRequired: z.number().min(1),
30
+ previousSkillId: ObjectId.optional(),
31
+ }));
32
+ export const SkillMod = Entity.merge(z.object({}));
33
+ export const SkillClassification = Entity.merge(z.object({}));
34
+ export const SkillCondition = Entity.merge(z.object({}));
35
+ export const SkillStatusEffect = Entity.merge(z.object({}));
36
+ export const SkillTree = Entity.merge(z.object({}));
37
+ export const SkillTreeNode = Entity.merge(z.object({}));
38
+ //# sourceMappingURL=skill.schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skill.schema.js","sourceRoot":"","sources":["../../skill/skill.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEhD,MAAM,CAAC,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAC/B,CAAC,CAAC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;IACb,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC,CAAC;IAC9C,QAAQ,EAAE,CAAC;SACR,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;IACb,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;CACd,CAAC,CACH,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CACrC,CAAC,CAAC,MAAM,CAAC;IACP,OAAO,EAAE,QAAQ;IACjB,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;IACxD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC5B,QAAQ,EAAE,CAAC;SACR,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;CACd,CAAC,CACH,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,KAAK,CAC1C,CAAC,CAAC,MAAM,CAAC;IACP,OAAO,EAAE,QAAQ;IACjB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAChC,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;CACrC,CAAC,CACH,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAEnD,MAAM,CAAC,MAAM,mBAAmB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAE9D,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAEzD,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAE5D,MAAM,CAAC,MAAM,SAAS,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC;AAEpD,MAAM,CAAC,MAAM,aAAa,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { z } from 'zod';
2
+ import * as schema from './skill.schema';
3
+ import { Document, Model } from '@arken/node/mongo';
4
+ export type * from './skill.router';
5
+ export type { RouterContext } from '../types';
6
+ export type Skill = z.infer<typeof schema.Skill>;
7
+ export type SkillMod = z.infer<typeof schema.SkillMod>;
8
+ export type SkillClassification = z.infer<typeof schema.SkillClassification>;
9
+ export type SkillCondition = z.infer<typeof schema.SkillCondition>;
10
+ export type SkillStatusEffect = z.infer<typeof schema.SkillStatusEffect>;
11
+ export type SkillTree = z.infer<typeof schema.SkillTree>;
12
+ export type SkillTreeNode = z.infer<typeof schema.SkillTreeNode>;
13
+ export type SkillDocument = Skill & Document;
14
+ export type SkillModDocument = SkillMod & Document;
15
+ export type SkillClassificationDocument = SkillClassification & Document;
16
+ export type SkillConditionDocument = SkillCondition & Document;
17
+ export type SkillStatusEffectDocument = SkillStatusEffect & Document;
18
+ export type SkillTreeDocument = SkillTree & Document;
19
+ export type SkillTreeNodeDocument = SkillTreeNode & Document;
20
+ export type Mappings = {
21
+ Skill: Model<SkillDocument>;
22
+ SkillMod: Model<SkillModDocument>;
23
+ SkillClassification: Model<SkillClassificationDocument>;
24
+ SkillCondition: Model<SkillConditionDocument>;
25
+ SkillStatusEffect: Model<SkillStatusEffectDocument>;
26
+ SkillTree: Model<SkillTreeDocument>;
27
+ SkillTreeNode: Model<SkillTreeNodeDocument>;
28
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=skill.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skill.types.js","sourceRoot":"","sources":["../../skill/skill.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ export type * as Types from './trek.types';
2
+ export * as Models from './trek.models';
3
+ export * as Schemas from './trek.schema';
4
+ export * from './trek.router';
@@ -0,0 +1,4 @@
1
+ export * as Models from './trek.models';
2
+ export * as Schemas from './trek.schema';
3
+ export * from './trek.router';
4
+ //# sourceMappingURL=index.js.map