@arken/seer-protocol 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (348) hide show
  1. package/.rush/temp/shrinkwrap-deps.json +10 -3
  2. package/build/area/area.models.d.ts +6 -0
  3. package/build/area/area.models.js +11 -0
  4. package/build/area/area.models.js.map +1 -0
  5. package/build/area/area.router.d.ts +274 -0
  6. package/build/area/area.router.js +59 -0
  7. package/build/area/area.router.js.map +1 -0
  8. package/build/area/area.schema.d.ts +241 -0
  9. package/build/area/area.schema.js +13 -0
  10. package/build/area/area.schema.js.map +1 -0
  11. package/build/area/area.types.d.ts +19 -0
  12. package/build/area/area.types.js +2 -0
  13. package/build/area/area.types.js.map +1 -0
  14. package/build/area/index.d.ts +4 -0
  15. package/build/area/index.js +5 -0
  16. package/build/area/index.js.map +1 -0
  17. package/build/asset/asset.models.d.ts +5 -0
  18. package/build/asset/asset.models.js +44 -0
  19. package/build/asset/asset.models.js.map +1 -0
  20. package/build/asset/asset.router.d.ts +189 -0
  21. package/build/asset/asset.router.js +41 -0
  22. package/build/asset/asset.router.js.map +1 -0
  23. package/build/asset/asset.schema.d.ts +204 -0
  24. package/build/asset/asset.schema.js +22 -0
  25. package/build/asset/asset.schema.js.map +1 -0
  26. package/build/asset/asset.types.d.ts +16 -0
  27. package/build/asset/asset.types.js +2 -0
  28. package/build/asset/asset.types.js.map +1 -0
  29. package/build/asset/index.d.ts +4 -0
  30. package/build/asset/index.js +5 -0
  31. package/build/asset/index.js.map +1 -0
  32. package/build/chain/chain.models.d.ts +6 -0
  33. package/build/chain/chain.models.js +42 -0
  34. package/build/chain/chain.models.js.map +1 -0
  35. package/build/chain/chain.router.d.ts +364 -0
  36. package/build/chain/chain.router.js +84 -0
  37. package/build/chain/chain.router.js.map +1 -0
  38. package/build/chain/chain.schema.d.ts +317 -0
  39. package/build/chain/chain.schema.js +56 -0
  40. package/build/chain/chain.schema.js.map +1 -0
  41. package/build/chain/chain.types.d.ts +19 -0
  42. package/build/chain/chain.types.js +2 -0
  43. package/build/chain/chain.types.js.map +1 -0
  44. package/build/chain/index.d.ts +4 -0
  45. package/build/chain/index.js +5 -0
  46. package/build/chain/index.js.map +1 -0
  47. package/build/character/character.models.d.ts +14 -0
  48. package/build/character/character.models.js +123 -0
  49. package/build/character/character.models.js.map +1 -0
  50. package/build/character/character.router.d.ts +945 -0
  51. package/build/character/character.router.js +246 -0
  52. package/build/character/character.router.js.map +1 -0
  53. package/build/character/character.schema.d.ts +1223 -0
  54. package/build/character/character.schema.js +70 -0
  55. package/build/character/character.schema.js.map +1 -0
  56. package/build/character/character.types.d.ts +47 -0
  57. package/build/character/character.types.js +2 -0
  58. package/build/character/character.types.js.map +1 -0
  59. package/build/character/index.d.ts +4 -0
  60. package/build/character/index.js +5 -0
  61. package/build/character/index.js.map +1 -0
  62. package/build/chat/chat.models.d.ts +4 -0
  63. package/build/chat/chat.models.js +35 -0
  64. package/build/chat/chat.models.js.map +1 -0
  65. package/build/chat/chat.router.d.ts +223 -0
  66. package/build/chat/chat.router.js +51 -0
  67. package/build/chat/chat.router.js.map +1 -0
  68. package/build/chat/chat.schema.d.ts +179 -0
  69. package/build/chat/chat.schema.js +32 -0
  70. package/build/chat/chat.schema.js.map +1 -0
  71. package/build/chat/chat.types.d.ts +13 -0
  72. package/build/chat/chat.types.js +2 -0
  73. package/build/chat/chat.types.js.map +1 -0
  74. package/build/chat/index.d.ts +4 -0
  75. package/build/chat/index.js +5 -0
  76. package/build/chat/index.js.map +1 -0
  77. package/build/collection/collection.models.d.ts +9 -0
  78. package/build/collection/collection.models.js +69 -0
  79. package/build/collection/collection.models.js.map +1 -0
  80. package/build/collection/collection.router.d.ts +361 -0
  81. package/build/collection/collection.router.js +71 -0
  82. package/build/collection/collection.router.js.map +1 -0
  83. package/build/collection/collection.schema.d.ts +660 -0
  84. package/build/collection/collection.schema.js +70 -0
  85. package/build/collection/collection.schema.js.map +1 -0
  86. package/build/collection/collection.types.d.ts +28 -0
  87. package/build/collection/collection.types.js +2 -0
  88. package/build/collection/collection.types.js.map +1 -0
  89. package/build/collection/index.d.ts +4 -0
  90. package/build/collection/index.js +5 -0
  91. package/build/collection/index.js.map +1 -0
  92. package/build/core/core.models.d.ts +123 -0
  93. package/build/core/core.models.js +811 -0
  94. package/build/core/core.models.js.map +1 -0
  95. package/build/core/core.router.d.ts +5297 -0
  96. package/build/core/core.router.js +1372 -0
  97. package/build/core/core.router.js.map +1 -0
  98. package/build/core/core.schema.d.ts +5808 -0
  99. package/build/core/core.schema.js +612 -0
  100. package/build/core/core.schema.js.map +1 -0
  101. package/build/core/core.types.d.ts +250 -0
  102. package/build/core/core.types.js +2 -0
  103. package/build/core/core.types.js.map +1 -0
  104. package/build/core/index.d.ts +4 -0
  105. package/build/core/index.js +5 -0
  106. package/build/core/index.js.map +1 -0
  107. package/build/evolution/evolution.models.d.ts +1 -0
  108. package/build/evolution/evolution.models.js +3 -0
  109. package/build/evolution/evolution.models.js.map +1 -0
  110. package/build/evolution/evolution.router.d.ts +244 -0
  111. package/build/evolution/evolution.router.js +112 -0
  112. package/build/evolution/evolution.router.js.map +1 -0
  113. package/build/evolution/evolution.schema.d.ts +1 -0
  114. package/build/evolution/evolution.schema.js +2 -0
  115. package/build/evolution/evolution.schema.js.map +1 -0
  116. package/build/evolution/evolution.types.d.ts +3 -0
  117. package/build/evolution/evolution.types.js +2 -0
  118. package/build/evolution/evolution.types.js.map +1 -0
  119. package/build/evolution/index.d.ts +4 -0
  120. package/build/evolution/index.js +4 -0
  121. package/build/evolution/index.js.map +1 -0
  122. package/build/game/game.models.d.ts +6 -0
  123. package/build/game/game.models.js +29 -0
  124. package/build/game/game.models.js.map +1 -0
  125. package/build/game/game.router.d.ts +428 -0
  126. package/build/game/game.router.js +90 -0
  127. package/build/game/game.router.js.map +1 -0
  128. package/build/game/game.schema.d.ts +339 -0
  129. package/build/game/game.schema.js +14 -0
  130. package/build/game/game.schema.js.map +1 -0
  131. package/build/game/game.types.d.ts +19 -0
  132. package/build/game/game.types.js +2 -0
  133. package/build/game/game.types.js.map +1 -0
  134. package/build/game/index.d.ts +4 -0
  135. package/build/game/index.js +4 -0
  136. package/build/game/index.js.map +1 -0
  137. package/build/index.d.ts +30 -0
  138. package/build/index.js +26 -0
  139. package/build/index.js.map +1 -0
  140. package/build/infinite/index.d.ts +4 -0
  141. package/build/infinite/index.js +4 -0
  142. package/build/infinite/index.js.map +1 -0
  143. package/build/infinite/infinite.models.d.ts +1 -0
  144. package/build/infinite/infinite.models.js +3 -0
  145. package/build/infinite/infinite.models.js.map +1 -0
  146. package/build/infinite/infinite.router.d.ts +95 -0
  147. package/build/infinite/infinite.router.js +40 -0
  148. package/build/infinite/infinite.router.js.map +1 -0
  149. package/build/infinite/infinite.schema.d.ts +1 -0
  150. package/build/infinite/infinite.schema.js +2 -0
  151. package/build/infinite/infinite.schema.js.map +1 -0
  152. package/build/infinite/infinite.types.d.ts +3 -0
  153. package/build/infinite/infinite.types.js +2 -0
  154. package/build/infinite/infinite.types.js.map +1 -0
  155. package/build/interface/index.d.ts +4 -0
  156. package/build/interface/index.js +5 -0
  157. package/build/interface/index.js.map +1 -0
  158. package/build/interface/interface.canonicalize.d.ts +2 -0
  159. package/build/interface/interface.canonicalize.js +241 -0
  160. package/build/interface/interface.canonicalize.js.map +1 -0
  161. package/build/interface/interface.models.d.ts +6 -0
  162. package/build/interface/interface.models.js +30 -0
  163. package/build/interface/interface.models.js.map +1 -0
  164. package/build/interface/interface.router.d.ts +472 -0
  165. package/build/interface/interface.router.js +113 -0
  166. package/build/interface/interface.router.js.map +1 -0
  167. package/build/interface/interface.schema.d.ts +305 -0
  168. package/build/interface/interface.schema.js +36 -0
  169. package/build/interface/interface.schema.js.map +1 -0
  170. package/build/interface/interface.types.d.ts +18 -0
  171. package/build/interface/interface.types.js +2 -0
  172. package/build/interface/interface.types.js.map +1 -0
  173. package/build/isles/index.d.ts +4 -0
  174. package/build/isles/index.js +4 -0
  175. package/build/isles/index.js.map +1 -0
  176. package/build/isles/isles.models.d.ts +1 -0
  177. package/build/isles/isles.models.js +3 -0
  178. package/build/isles/isles.models.js.map +1 -0
  179. package/build/isles/isles.router.d.ts +95 -0
  180. package/build/isles/isles.router.js +40 -0
  181. package/build/isles/isles.router.js.map +1 -0
  182. package/build/isles/isles.schema.d.ts +1 -0
  183. package/build/isles/isles.schema.js +2 -0
  184. package/build/isles/isles.schema.js.map +1 -0
  185. package/build/isles/isles.types.d.ts +3 -0
  186. package/build/isles/isles.types.js +2 -0
  187. package/build/isles/isles.types.js.map +1 -0
  188. package/build/item/index.d.ts +4 -0
  189. package/build/item/index.js +5 -0
  190. package/build/item/index.js.map +1 -0
  191. package/build/item/item.models.d.ts +16 -0
  192. package/build/item/item.models.js +101 -0
  193. package/build/item/item.models.js.map +1 -0
  194. package/build/item/item.router.d.ts +263 -0
  195. package/build/item/item.router.js +70 -0
  196. package/build/item/item.router.js.map +1 -0
  197. package/build/item/item.schema.d.ts +765 -0
  198. package/build/item/item.schema.js +86 -0
  199. package/build/item/item.schema.js.map +1 -0
  200. package/build/item/item.types.d.ts +54 -0
  201. package/build/item/item.types.js +2 -0
  202. package/build/item/item.types.js.map +1 -0
  203. package/build/job/index.d.ts +4 -0
  204. package/build/job/index.js +5 -0
  205. package/build/job/index.js.map +1 -0
  206. package/build/job/job.models.d.ts +3 -0
  207. package/build/job/job.models.js +9 -0
  208. package/build/job/job.models.js.map +1 -0
  209. package/build/job/job.router.d.ts +146 -0
  210. package/build/job/job.router.js +32 -0
  211. package/build/job/job.router.js.map +1 -0
  212. package/build/job/job.schema.d.ts +66 -0
  213. package/build/job/job.schema.js +7 -0
  214. package/build/job/job.schema.js.map +1 -0
  215. package/build/job/job.types.d.ts +15 -0
  216. package/build/job/job.types.js +2 -0
  217. package/build/job/job.types.js.map +1 -0
  218. package/build/market/index.d.ts +4 -0
  219. package/build/market/index.js +5 -0
  220. package/build/market/index.js.map +1 -0
  221. package/build/market/market.models.d.ts +14 -0
  222. package/build/market/market.models.js +98 -0
  223. package/build/market/market.models.js.map +1 -0
  224. package/build/market/market.router.d.ts +230 -0
  225. package/build/market/market.router.js +56 -0
  226. package/build/market/market.router.js.map +1 -0
  227. package/build/market/market.schema.d.ts +937 -0
  228. package/build/market/market.schema.js +110 -0
  229. package/build/market/market.schema.js.map +1 -0
  230. package/build/market/market.types.d.ts +48 -0
  231. package/build/market/market.types.js +2 -0
  232. package/build/market/market.types.js.map +1 -0
  233. package/build/oasis/index.d.ts +4 -0
  234. package/build/oasis/index.js +4 -0
  235. package/build/oasis/index.js.map +1 -0
  236. package/build/oasis/oasis.models.d.ts +1 -0
  237. package/build/oasis/oasis.models.js +3 -0
  238. package/build/oasis/oasis.models.js.map +1 -0
  239. package/build/oasis/oasis.router.d.ts +91 -0
  240. package/build/oasis/oasis.router.js +52 -0
  241. package/build/oasis/oasis.router.js.map +1 -0
  242. package/build/oasis/oasis.schema.d.ts +1 -0
  243. package/build/oasis/oasis.schema.js +2 -0
  244. package/build/oasis/oasis.schema.js.map +1 -0
  245. package/build/oasis/oasis.types.d.ts +3 -0
  246. package/build/oasis/oasis.types.js +2 -0
  247. package/build/oasis/oasis.types.js.map +1 -0
  248. package/build/package.json +29 -0
  249. package/build/product/index.d.ts +4 -0
  250. package/build/product/index.js +5 -0
  251. package/build/product/index.js.map +1 -0
  252. package/build/product/product.models.d.ts +4 -0
  253. package/build/product/product.models.js +113 -0
  254. package/build/product/product.models.js.map +1 -0
  255. package/build/product/product.router.d.ts +447 -0
  256. package/build/product/product.router.js +71 -0
  257. package/build/product/product.router.js.map +1 -0
  258. package/build/product/product.schema.d.ts +640 -0
  259. package/build/product/product.schema.js +154 -0
  260. package/build/product/product.schema.js.map +1 -0
  261. package/build/product/product.types.d.ts +27 -0
  262. package/build/product/product.types.js +2 -0
  263. package/build/product/product.types.js.map +1 -0
  264. package/build/profile/index.d.ts +4 -0
  265. package/build/profile/index.js +5 -0
  266. package/build/profile/index.js.map +1 -0
  267. package/build/profile/profile.models.d.ts +2 -0
  268. package/build/profile/profile.models.js +165 -0
  269. package/build/profile/profile.models.js.map +1 -0
  270. package/build/profile/profile.router.d.ts +163 -0
  271. package/build/profile/profile.router.js +54 -0
  272. package/build/profile/profile.router.js.map +1 -0
  273. package/build/profile/profile.schema.d.ts +1 -0
  274. package/build/profile/profile.schema.js +201 -0
  275. package/build/profile/profile.schema.js.map +1 -0
  276. package/build/profile/profile.types.d.ts +15 -0
  277. package/build/profile/profile.types.js +2 -0
  278. package/build/profile/profile.types.js.map +1 -0
  279. package/build/raffle/index.d.ts +4 -0
  280. package/build/raffle/index.js +5 -0
  281. package/build/raffle/index.js.map +1 -0
  282. package/build/raffle/raffle.models.d.ts +6 -0
  283. package/build/raffle/raffle.models.js +36 -0
  284. package/build/raffle/raffle.models.js.map +1 -0
  285. package/build/raffle/raffle.router.d.ts +299 -0
  286. package/build/raffle/raffle.router.js +71 -0
  287. package/build/raffle/raffle.router.js.map +1 -0
  288. package/build/raffle/raffle.schema.d.ts +261 -0
  289. package/build/raffle/raffle.schema.js +21 -0
  290. package/build/raffle/raffle.schema.js.map +1 -0
  291. package/build/raffle/raffle.types.d.ts +24 -0
  292. package/build/raffle/raffle.types.js +2 -0
  293. package/build/raffle/raffle.types.js.map +1 -0
  294. package/build/router.d.ts +10755 -0
  295. package/build/router.js +87 -0
  296. package/build/router.js.map +1 -0
  297. package/build/schema.d.ts +279 -0
  298. package/build/schema.js +157 -0
  299. package/build/schema.js.map +1 -0
  300. package/build/skill/index.d.ts +4 -0
  301. package/build/skill/index.js +5 -0
  302. package/build/skill/index.js.map +1 -0
  303. package/build/skill/skill.models.d.ts +9 -0
  304. package/build/skill/skill.models.js +9 -0
  305. package/build/skill/skill.models.js.map +1 -0
  306. package/build/skill/skill.router.d.ts +659 -0
  307. package/build/skill/skill.router.js +152 -0
  308. package/build/skill/skill.router.js.map +1 -0
  309. package/build/skill/skill.schema.d.ts +536 -0
  310. package/build/skill/skill.schema.js +38 -0
  311. package/build/skill/skill.schema.js.map +1 -0
  312. package/build/skill/skill.types.d.ts +28 -0
  313. package/build/skill/skill.types.js +2 -0
  314. package/build/skill/skill.types.js.map +1 -0
  315. package/build/trek/index.d.ts +4 -0
  316. package/build/trek/index.js +4 -0
  317. package/build/trek/index.js.map +1 -0
  318. package/build/trek/trek.models.d.ts +1 -0
  319. package/build/trek/trek.models.js +2 -0
  320. package/build/trek/trek.models.js.map +1 -0
  321. package/build/trek/trek.router.d.ts +86 -0
  322. package/build/trek/trek.router.js +43 -0
  323. package/build/trek/trek.router.js.map +1 -0
  324. package/build/trek/trek.schema.d.ts +1 -0
  325. package/build/trek/trek.schema.js +2 -0
  326. package/build/trek/trek.schema.js.map +1 -0
  327. package/build/trek/trek.types.d.ts +1 -0
  328. package/build/trek/trek.types.js +2 -0
  329. package/build/trek/trek.types.js.map +1 -0
  330. package/build/types.d.ts +187 -0
  331. package/build/types.js +29 -0
  332. package/build/types.js.map +1 -0
  333. package/build/video/index.d.ts +4 -0
  334. package/build/video/index.js +5 -0
  335. package/build/video/index.js.map +1 -0
  336. package/build/video/video.models.d.ts +7 -0
  337. package/build/video/video.models.js +19 -0
  338. package/build/video/video.models.js.map +1 -0
  339. package/build/video/video.router.d.ts +563 -0
  340. package/build/video/video.router.js +112 -0
  341. package/build/video/video.router.js.map +1 -0
  342. package/build/video/video.schema.d.ts +446 -0
  343. package/build/video/video.schema.js +31 -0
  344. package/build/video/video.schema.js.map +1 -0
  345. package/build/video/video.types.d.ts +27 -0
  346. package/build/video/video.types.js +2 -0
  347. package/build/video/video.types.js.map +1 -0
  348. package/package.json +11 -4
@@ -0,0 +1,937 @@
1
+ export declare const Market: 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
+ value: import("zod").ZodString;
22
+ }, "strip", import("zod").ZodTypeAny, {
23
+ name?: string;
24
+ value?: string;
25
+ key?: string;
26
+ id?: string | import("mongoose").Types.ObjectId;
27
+ data?: any;
28
+ description?: string;
29
+ applicationId?: string | import("mongoose").Types.ObjectId;
30
+ createdDate?: Date;
31
+ updatedDate?: Date;
32
+ status?: "Active" | "Paused" | "Pending" | "Archived";
33
+ ownerId?: string | import("mongoose").Types.ObjectId;
34
+ meta?: any;
35
+ merkleLeaf?: string;
36
+ merkleIndex?: number;
37
+ createdById?: string | import("mongoose").Types.ObjectId;
38
+ editedById?: string | import("mongoose").Types.ObjectId;
39
+ deletedById?: string | import("mongoose").Types.ObjectId;
40
+ deletedDate?: Date;
41
+ }, {
42
+ name?: string;
43
+ value?: 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
+ }>;
61
+ export declare const MarketPair: import("zod").ZodObject<{
62
+ key: import("zod").ZodOptional<import("zod").ZodString>;
63
+ name: import("zod").ZodOptional<import("zod").ZodString>;
64
+ description: import("zod").ZodOptional<import("zod").ZodString>;
65
+ 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>]>>;
66
+ 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>]>>;
67
+ } & {
68
+ 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>]>>;
69
+ meta: import("zod").ZodAny;
70
+ data: import("zod").ZodAny;
71
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
72
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
73
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
74
+ 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>]>>;
75
+ 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>]>>;
76
+ 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>]>>;
77
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
78
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
79
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
80
+ } & {
81
+ value: import("zod").ZodString;
82
+ }, "strip", import("zod").ZodTypeAny, {
83
+ name?: string;
84
+ value?: string;
85
+ key?: string;
86
+ id?: string | import("mongoose").Types.ObjectId;
87
+ data?: any;
88
+ description?: string;
89
+ applicationId?: string | import("mongoose").Types.ObjectId;
90
+ createdDate?: Date;
91
+ updatedDate?: Date;
92
+ status?: "Active" | "Paused" | "Pending" | "Archived";
93
+ ownerId?: string | import("mongoose").Types.ObjectId;
94
+ meta?: any;
95
+ merkleLeaf?: string;
96
+ merkleIndex?: number;
97
+ createdById?: string | import("mongoose").Types.ObjectId;
98
+ editedById?: string | import("mongoose").Types.ObjectId;
99
+ deletedById?: string | import("mongoose").Types.ObjectId;
100
+ deletedDate?: Date;
101
+ }, {
102
+ name?: string;
103
+ value?: string;
104
+ key?: string;
105
+ id?: string | import("mongoose").Types.ObjectId;
106
+ data?: any;
107
+ description?: string;
108
+ applicationId?: string | import("mongoose").Types.ObjectId;
109
+ createdDate?: Date;
110
+ updatedDate?: Date;
111
+ status?: "Active" | "Paused" | "Pending" | "Archived";
112
+ ownerId?: string | import("mongoose").Types.ObjectId;
113
+ meta?: any;
114
+ merkleLeaf?: string;
115
+ merkleIndex?: number;
116
+ createdById?: string | import("mongoose").Types.ObjectId;
117
+ editedById?: string | import("mongoose").Types.ObjectId;
118
+ deletedById?: string | import("mongoose").Types.ObjectId;
119
+ deletedDate?: Date;
120
+ }>;
121
+ export declare const MarketExchange: 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
+ value: import("zod").ZodString;
142
+ }, "strip", import("zod").ZodTypeAny, {
143
+ name?: string;
144
+ value?: 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
+ }, {
162
+ name?: string;
163
+ value?: string;
164
+ key?: string;
165
+ id?: string | import("mongoose").Types.ObjectId;
166
+ data?: any;
167
+ description?: string;
168
+ applicationId?: string | import("mongoose").Types.ObjectId;
169
+ createdDate?: Date;
170
+ updatedDate?: Date;
171
+ status?: "Active" | "Paused" | "Pending" | "Archived";
172
+ ownerId?: string | import("mongoose").Types.ObjectId;
173
+ meta?: any;
174
+ merkleLeaf?: string;
175
+ merkleIndex?: number;
176
+ createdById?: string | import("mongoose").Types.ObjectId;
177
+ editedById?: string | import("mongoose").Types.ObjectId;
178
+ deletedById?: string | import("mongoose").Types.ObjectId;
179
+ deletedDate?: Date;
180
+ }>;
181
+ export declare const MarketAnalysis: import("zod").ZodObject<{
182
+ key: import("zod").ZodOptional<import("zod").ZodString>;
183
+ name: import("zod").ZodOptional<import("zod").ZodString>;
184
+ description: import("zod").ZodOptional<import("zod").ZodString>;
185
+ 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>]>>;
186
+ 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>]>>;
187
+ } & {
188
+ 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>]>>;
189
+ meta: import("zod").ZodAny;
190
+ data: import("zod").ZodAny;
191
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
192
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
193
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
194
+ 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>]>>;
195
+ 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>]>>;
196
+ 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>]>>;
197
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
198
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
199
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
200
+ } & {
201
+ action: import("zod").ZodEnum<["Buy", "Sell"]>;
202
+ asset: import("zod").ZodString;
203
+ signalType: import("zod").ZodString;
204
+ confidence: import("zod").ZodNumber;
205
+ riskLevel: import("zod").ZodEnum<["Low", "Medium", "High"]>;
206
+ timeFrame: import("zod").ZodEnum<["Short-Term", "Long-Term"]>;
207
+ source: import("zod").ZodString;
208
+ summary: import("zod").ZodString;
209
+ labels: import("zod").ZodObject<{
210
+ sector: import("zod").ZodOptional<import("zod").ZodString>;
211
+ topic: import("zod").ZodOptional<import("zod").ZodString>;
212
+ sentiment: import("zod").ZodOptional<import("zod").ZodEnum<["Positive", "Neutral", "Negative"]>>;
213
+ }, "strip", import("zod").ZodTypeAny, {
214
+ sector?: string;
215
+ topic?: string;
216
+ sentiment?: "Positive" | "Neutral" | "Negative";
217
+ }, {
218
+ sector?: string;
219
+ topic?: string;
220
+ sentiment?: "Positive" | "Neutral" | "Negative";
221
+ }>;
222
+ }, "strip", import("zod").ZodTypeAny, {
223
+ name?: string;
224
+ key?: string;
225
+ id?: string | import("mongoose").Types.ObjectId;
226
+ data?: any;
227
+ description?: string;
228
+ applicationId?: string | import("mongoose").Types.ObjectId;
229
+ createdDate?: Date;
230
+ updatedDate?: Date;
231
+ status?: "Active" | "Paused" | "Pending" | "Archived";
232
+ ownerId?: string | import("mongoose").Types.ObjectId;
233
+ meta?: any;
234
+ merkleLeaf?: string;
235
+ merkleIndex?: number;
236
+ createdById?: string | import("mongoose").Types.ObjectId;
237
+ editedById?: string | import("mongoose").Types.ObjectId;
238
+ deletedById?: string | import("mongoose").Types.ObjectId;
239
+ deletedDate?: Date;
240
+ summary?: string;
241
+ action?: "Buy" | "Sell";
242
+ source?: string;
243
+ asset?: string;
244
+ signalType?: string;
245
+ confidence?: number;
246
+ riskLevel?: "Low" | "Medium" | "High";
247
+ timeFrame?: "Short-Term" | "Long-Term";
248
+ labels?: {
249
+ sector?: string;
250
+ topic?: string;
251
+ sentiment?: "Positive" | "Neutral" | "Negative";
252
+ };
253
+ }, {
254
+ name?: string;
255
+ key?: string;
256
+ id?: string | import("mongoose").Types.ObjectId;
257
+ data?: any;
258
+ description?: string;
259
+ applicationId?: string | import("mongoose").Types.ObjectId;
260
+ createdDate?: Date;
261
+ updatedDate?: Date;
262
+ status?: "Active" | "Paused" | "Pending" | "Archived";
263
+ ownerId?: string | import("mongoose").Types.ObjectId;
264
+ meta?: any;
265
+ merkleLeaf?: string;
266
+ merkleIndex?: number;
267
+ createdById?: string | import("mongoose").Types.ObjectId;
268
+ editedById?: string | import("mongoose").Types.ObjectId;
269
+ deletedById?: string | import("mongoose").Types.ObjectId;
270
+ deletedDate?: Date;
271
+ summary?: string;
272
+ action?: "Buy" | "Sell";
273
+ source?: string;
274
+ asset?: string;
275
+ signalType?: string;
276
+ confidence?: number;
277
+ riskLevel?: "Low" | "Medium" | "High";
278
+ timeFrame?: "Short-Term" | "Long-Term";
279
+ labels?: {
280
+ sector?: string;
281
+ topic?: string;
282
+ sentiment?: "Positive" | "Neutral" | "Negative";
283
+ };
284
+ }>;
285
+ export declare const MarketInvestor: import("zod").ZodObject<{
286
+ key: import("zod").ZodOptional<import("zod").ZodString>;
287
+ name: import("zod").ZodOptional<import("zod").ZodString>;
288
+ description: import("zod").ZodOptional<import("zod").ZodString>;
289
+ 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>]>>;
290
+ 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>]>>;
291
+ } & {
292
+ 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>]>>;
293
+ meta: import("zod").ZodAny;
294
+ data: import("zod").ZodAny;
295
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
296
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
297
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
298
+ 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>]>>;
299
+ 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>]>>;
300
+ 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>]>>;
301
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
302
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
303
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
304
+ } & {
305
+ portfolioIds: 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">;
306
+ totalPnl: import("zod").ZodOptional<import("zod").ZodNumber>;
307
+ }, "strip", import("zod").ZodTypeAny, {
308
+ name?: string;
309
+ key?: string;
310
+ id?: string | import("mongoose").Types.ObjectId;
311
+ data?: any;
312
+ description?: string;
313
+ applicationId?: string | import("mongoose").Types.ObjectId;
314
+ createdDate?: Date;
315
+ updatedDate?: Date;
316
+ status?: "Active" | "Paused" | "Pending" | "Archived";
317
+ ownerId?: string | import("mongoose").Types.ObjectId;
318
+ meta?: any;
319
+ merkleLeaf?: string;
320
+ merkleIndex?: number;
321
+ createdById?: string | import("mongoose").Types.ObjectId;
322
+ editedById?: string | import("mongoose").Types.ObjectId;
323
+ deletedById?: string | import("mongoose").Types.ObjectId;
324
+ deletedDate?: Date;
325
+ portfolioIds?: (string | import("mongoose").Types.ObjectId)[];
326
+ totalPnl?: number;
327
+ }, {
328
+ name?: string;
329
+ key?: string;
330
+ id?: string | import("mongoose").Types.ObjectId;
331
+ data?: any;
332
+ description?: string;
333
+ applicationId?: string | import("mongoose").Types.ObjectId;
334
+ createdDate?: Date;
335
+ updatedDate?: Date;
336
+ status?: "Active" | "Paused" | "Pending" | "Archived";
337
+ ownerId?: string | import("mongoose").Types.ObjectId;
338
+ meta?: any;
339
+ merkleLeaf?: string;
340
+ merkleIndex?: number;
341
+ createdById?: string | import("mongoose").Types.ObjectId;
342
+ editedById?: string | import("mongoose").Types.ObjectId;
343
+ deletedById?: string | import("mongoose").Types.ObjectId;
344
+ deletedDate?: Date;
345
+ portfolioIds?: (string | import("mongoose").Types.ObjectId)[];
346
+ totalPnl?: number;
347
+ }>;
348
+ export declare const MarketInvestmentPortfolio: import("zod").ZodObject<{
349
+ key: import("zod").ZodOptional<import("zod").ZodString>;
350
+ name: import("zod").ZodOptional<import("zod").ZodString>;
351
+ description: import("zod").ZodOptional<import("zod").ZodString>;
352
+ 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>]>>;
353
+ 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>]>>;
354
+ } & {
355
+ 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>]>>;
356
+ meta: import("zod").ZodAny;
357
+ data: import("zod").ZodAny;
358
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
359
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
360
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
361
+ 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>]>>;
362
+ 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>]>>;
363
+ 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>]>>;
364
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
365
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
366
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
367
+ } & {
368
+ categoryGoals: import("zod").ZodArray<import("zod").ZodObject<{
369
+ category: import("zod").ZodString;
370
+ goalPercentage: import("zod").ZodNumber;
371
+ currentPnl: import("zod").ZodOptional<import("zod").ZodNumber>;
372
+ historicalPnL: import("zod").ZodOptional<import("zod").ZodNumber>;
373
+ }, "strip", import("zod").ZodTypeAny, {
374
+ category?: string;
375
+ goalPercentage?: number;
376
+ currentPnl?: number;
377
+ historicalPnL?: number;
378
+ }, {
379
+ category?: string;
380
+ goalPercentage?: number;
381
+ currentPnl?: number;
382
+ historicalPnL?: number;
383
+ }>, "many">;
384
+ investmentIds: 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">;
385
+ totalPnl: import("zod").ZodOptional<import("zod").ZodNumber>;
386
+ }, "strip", import("zod").ZodTypeAny, {
387
+ name?: string;
388
+ key?: string;
389
+ id?: string | import("mongoose").Types.ObjectId;
390
+ data?: any;
391
+ description?: string;
392
+ applicationId?: string | import("mongoose").Types.ObjectId;
393
+ createdDate?: Date;
394
+ updatedDate?: Date;
395
+ status?: "Active" | "Paused" | "Pending" | "Archived";
396
+ ownerId?: string | import("mongoose").Types.ObjectId;
397
+ meta?: any;
398
+ merkleLeaf?: string;
399
+ merkleIndex?: number;
400
+ createdById?: string | import("mongoose").Types.ObjectId;
401
+ editedById?: string | import("mongoose").Types.ObjectId;
402
+ deletedById?: string | import("mongoose").Types.ObjectId;
403
+ deletedDate?: Date;
404
+ totalPnl?: number;
405
+ categoryGoals?: {
406
+ category?: string;
407
+ goalPercentage?: number;
408
+ currentPnl?: number;
409
+ historicalPnL?: number;
410
+ }[];
411
+ investmentIds?: (string | import("mongoose").Types.ObjectId)[];
412
+ }, {
413
+ name?: string;
414
+ key?: string;
415
+ id?: string | import("mongoose").Types.ObjectId;
416
+ data?: any;
417
+ description?: string;
418
+ applicationId?: string | import("mongoose").Types.ObjectId;
419
+ createdDate?: Date;
420
+ updatedDate?: Date;
421
+ status?: "Active" | "Paused" | "Pending" | "Archived";
422
+ ownerId?: string | import("mongoose").Types.ObjectId;
423
+ meta?: any;
424
+ merkleLeaf?: string;
425
+ merkleIndex?: number;
426
+ createdById?: string | import("mongoose").Types.ObjectId;
427
+ editedById?: string | import("mongoose").Types.ObjectId;
428
+ deletedById?: string | import("mongoose").Types.ObjectId;
429
+ deletedDate?: Date;
430
+ totalPnl?: number;
431
+ categoryGoals?: {
432
+ category?: string;
433
+ goalPercentage?: number;
434
+ currentPnl?: number;
435
+ historicalPnL?: number;
436
+ }[];
437
+ investmentIds?: (string | import("mongoose").Types.ObjectId)[];
438
+ }>;
439
+ export declare const MarketInvestment: import("zod").ZodObject<{
440
+ key: import("zod").ZodOptional<import("zod").ZodString>;
441
+ name: import("zod").ZodOptional<import("zod").ZodString>;
442
+ description: import("zod").ZodOptional<import("zod").ZodString>;
443
+ 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>]>>;
444
+ 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>]>>;
445
+ } & {
446
+ 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>]>>;
447
+ meta: import("zod").ZodAny;
448
+ data: import("zod").ZodAny;
449
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
450
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
451
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
452
+ 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>]>>;
453
+ 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>]>>;
454
+ 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>]>>;
455
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
456
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
457
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
458
+ } & {
459
+ type: import("zod").ZodEnum<["Stock", "ChainToken"]>;
460
+ category: import("zod").ZodEnum<["Historically Safe", "Economy Bull", "Economy Bear", "Custom"]>;
461
+ amount: import("zod").ZodNumber;
462
+ purchasePrice: import("zod").ZodNumber;
463
+ currentValue: import("zod").ZodOptional<import("zod").ZodNumber>;
464
+ pnl: import("zod").ZodOptional<import("zod").ZodNumber>;
465
+ transactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
466
+ date: import("zod").ZodString;
467
+ type: import("zod").ZodEnum<["Buy", "Sell"]>;
468
+ price: import("zod").ZodNumber;
469
+ quantity: import("zod").ZodNumber;
470
+ }, "strip", import("zod").ZodTypeAny, {
471
+ type?: "Buy" | "Sell";
472
+ date?: string;
473
+ price?: number;
474
+ quantity?: number;
475
+ }, {
476
+ type?: "Buy" | "Sell";
477
+ date?: string;
478
+ price?: number;
479
+ quantity?: number;
480
+ }>, "many">>;
481
+ stockId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
482
+ chainTokenId: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>>;
483
+ }, "strip", import("zod").ZodTypeAny, {
484
+ name?: string;
485
+ key?: string;
486
+ id?: string | import("mongoose").Types.ObjectId;
487
+ data?: any;
488
+ type?: "ChainToken" | "Stock";
489
+ description?: string;
490
+ applicationId?: string | import("mongoose").Types.ObjectId;
491
+ createdDate?: Date;
492
+ updatedDate?: Date;
493
+ status?: "Active" | "Paused" | "Pending" | "Archived";
494
+ ownerId?: string | import("mongoose").Types.ObjectId;
495
+ meta?: any;
496
+ merkleLeaf?: string;
497
+ merkleIndex?: number;
498
+ createdById?: string | import("mongoose").Types.ObjectId;
499
+ editedById?: string | import("mongoose").Types.ObjectId;
500
+ deletedById?: string | import("mongoose").Types.ObjectId;
501
+ deletedDate?: Date;
502
+ category?: "Historically Safe" | "Economy Bull" | "Economy Bear" | "Custom";
503
+ transactions?: {
504
+ type?: "Buy" | "Sell";
505
+ date?: string;
506
+ price?: number;
507
+ quantity?: number;
508
+ }[];
509
+ amount?: number;
510
+ purchasePrice?: number;
511
+ currentValue?: number;
512
+ pnl?: number;
513
+ stockId?: string | import("mongoose").Types.ObjectId;
514
+ chainTokenId?: string | import("mongoose").Types.ObjectId;
515
+ }, {
516
+ name?: string;
517
+ key?: string;
518
+ id?: string | import("mongoose").Types.ObjectId;
519
+ data?: any;
520
+ type?: "ChainToken" | "Stock";
521
+ description?: string;
522
+ applicationId?: string | import("mongoose").Types.ObjectId;
523
+ createdDate?: Date;
524
+ updatedDate?: Date;
525
+ status?: "Active" | "Paused" | "Pending" | "Archived";
526
+ ownerId?: string | import("mongoose").Types.ObjectId;
527
+ meta?: any;
528
+ merkleLeaf?: string;
529
+ merkleIndex?: number;
530
+ createdById?: string | import("mongoose").Types.ObjectId;
531
+ editedById?: string | import("mongoose").Types.ObjectId;
532
+ deletedById?: string | import("mongoose").Types.ObjectId;
533
+ deletedDate?: Date;
534
+ category?: "Historically Safe" | "Economy Bull" | "Economy Bear" | "Custom";
535
+ transactions?: {
536
+ type?: "Buy" | "Sell";
537
+ date?: string;
538
+ price?: number;
539
+ quantity?: number;
540
+ }[];
541
+ amount?: number;
542
+ purchasePrice?: number;
543
+ currentValue?: number;
544
+ pnl?: number;
545
+ stockId?: string | import("mongoose").Types.ObjectId;
546
+ chainTokenId?: string | import("mongoose").Types.ObjectId;
547
+ }>;
548
+ export declare const MarketStock: import("zod").ZodObject<{
549
+ key: import("zod").ZodOptional<import("zod").ZodString>;
550
+ name: import("zod").ZodOptional<import("zod").ZodString>;
551
+ description: import("zod").ZodOptional<import("zod").ZodString>;
552
+ 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>]>>;
553
+ 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>]>>;
554
+ } & {
555
+ 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>]>>;
556
+ meta: import("zod").ZodAny;
557
+ data: import("zod").ZodAny;
558
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
559
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
560
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
561
+ 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>]>>;
562
+ 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>]>>;
563
+ 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>]>>;
564
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
565
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
566
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
567
+ } & {
568
+ ticker: import("zod").ZodString;
569
+ companyId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
570
+ marketCap: import("zod").ZodOptional<import("zod").ZodNumber>;
571
+ aum: import("zod").ZodOptional<import("zod").ZodNumber>;
572
+ quoteType: import("zod").ZodString;
573
+ currentPrice: import("zod").ZodNumber;
574
+ dailyChange: import("zod").ZodOptional<import("zod").ZodNumber>;
575
+ dailyChangePercent: import("zod").ZodOptional<import("zod").ZodNumber>;
576
+ volume: import("zod").ZodNumber;
577
+ currency: import("zod").ZodString;
578
+ }, "strip", import("zod").ZodTypeAny, {
579
+ name?: string;
580
+ key?: string;
581
+ id?: string | import("mongoose").Types.ObjectId;
582
+ data?: any;
583
+ description?: string;
584
+ applicationId?: string | import("mongoose").Types.ObjectId;
585
+ createdDate?: Date;
586
+ updatedDate?: Date;
587
+ status?: "Active" | "Paused" | "Pending" | "Archived";
588
+ ownerId?: string | import("mongoose").Types.ObjectId;
589
+ meta?: any;
590
+ merkleLeaf?: string;
591
+ merkleIndex?: number;
592
+ createdById?: string | import("mongoose").Types.ObjectId;
593
+ editedById?: string | import("mongoose").Types.ObjectId;
594
+ deletedById?: string | import("mongoose").Types.ObjectId;
595
+ deletedDate?: Date;
596
+ marketCap?: number;
597
+ volume?: number;
598
+ companyId?: string | import("mongoose").Types.ObjectId;
599
+ ticker?: string;
600
+ aum?: number;
601
+ quoteType?: string;
602
+ currentPrice?: number;
603
+ dailyChange?: number;
604
+ dailyChangePercent?: number;
605
+ currency?: string;
606
+ }, {
607
+ name?: string;
608
+ key?: string;
609
+ id?: string | import("mongoose").Types.ObjectId;
610
+ data?: any;
611
+ description?: string;
612
+ applicationId?: string | import("mongoose").Types.ObjectId;
613
+ createdDate?: Date;
614
+ updatedDate?: Date;
615
+ status?: "Active" | "Paused" | "Pending" | "Archived";
616
+ ownerId?: string | import("mongoose").Types.ObjectId;
617
+ meta?: any;
618
+ merkleLeaf?: string;
619
+ merkleIndex?: number;
620
+ createdById?: string | import("mongoose").Types.ObjectId;
621
+ editedById?: string | import("mongoose").Types.ObjectId;
622
+ deletedById?: string | import("mongoose").Types.ObjectId;
623
+ deletedDate?: Date;
624
+ marketCap?: number;
625
+ volume?: number;
626
+ companyId?: string | import("mongoose").Types.ObjectId;
627
+ ticker?: string;
628
+ aum?: number;
629
+ quoteType?: string;
630
+ currentPrice?: number;
631
+ dailyChange?: number;
632
+ dailyChangePercent?: number;
633
+ currency?: string;
634
+ }>;
635
+ export declare const MarketToken: import("zod").ZodObject<{
636
+ key: import("zod").ZodOptional<import("zod").ZodString>;
637
+ name: import("zod").ZodOptional<import("zod").ZodString>;
638
+ description: import("zod").ZodOptional<import("zod").ZodString>;
639
+ 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>]>>;
640
+ 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>]>>;
641
+ } & {
642
+ 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>]>>;
643
+ meta: import("zod").ZodAny;
644
+ data: import("zod").ZodAny;
645
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
646
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
647
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
648
+ 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>]>>;
649
+ 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>]>>;
650
+ 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>]>>;
651
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
652
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
653
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
654
+ } & {
655
+ symbol: import("zod").ZodString;
656
+ currentPrice: import("zod").ZodNumber;
657
+ }, "strip", import("zod").ZodTypeAny, {
658
+ symbol?: string;
659
+ name?: string;
660
+ key?: string;
661
+ id?: string | import("mongoose").Types.ObjectId;
662
+ data?: any;
663
+ description?: string;
664
+ applicationId?: string | import("mongoose").Types.ObjectId;
665
+ createdDate?: Date;
666
+ updatedDate?: Date;
667
+ status?: "Active" | "Paused" | "Pending" | "Archived";
668
+ ownerId?: string | import("mongoose").Types.ObjectId;
669
+ meta?: any;
670
+ merkleLeaf?: string;
671
+ merkleIndex?: number;
672
+ createdById?: string | import("mongoose").Types.ObjectId;
673
+ editedById?: string | import("mongoose").Types.ObjectId;
674
+ deletedById?: string | import("mongoose").Types.ObjectId;
675
+ deletedDate?: Date;
676
+ currentPrice?: number;
677
+ }, {
678
+ symbol?: string;
679
+ name?: string;
680
+ key?: string;
681
+ id?: string | import("mongoose").Types.ObjectId;
682
+ data?: any;
683
+ description?: string;
684
+ applicationId?: string | import("mongoose").Types.ObjectId;
685
+ createdDate?: Date;
686
+ updatedDate?: Date;
687
+ status?: "Active" | "Paused" | "Pending" | "Archived";
688
+ ownerId?: string | import("mongoose").Types.ObjectId;
689
+ meta?: any;
690
+ merkleLeaf?: string;
691
+ merkleIndex?: number;
692
+ createdById?: string | import("mongoose").Types.ObjectId;
693
+ editedById?: string | import("mongoose").Types.ObjectId;
694
+ deletedById?: string | import("mongoose").Types.ObjectId;
695
+ deletedDate?: Date;
696
+ currentPrice?: number;
697
+ }>;
698
+ export declare const MarketCompany: import("zod").ZodObject<{
699
+ key: import("zod").ZodOptional<import("zod").ZodString>;
700
+ name: import("zod").ZodOptional<import("zod").ZodString>;
701
+ description: import("zod").ZodOptional<import("zod").ZodString>;
702
+ 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>]>>;
703
+ 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>]>>;
704
+ } & {
705
+ 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>]>>;
706
+ meta: import("zod").ZodAny;
707
+ data: import("zod").ZodAny;
708
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
709
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
710
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
711
+ 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>]>>;
712
+ 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>]>>;
713
+ 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>]>>;
714
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
715
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
716
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
717
+ } & {
718
+ ticker: import("zod").ZodString;
719
+ type: import("zod").ZodEnum<["Public Company", "ETF Issuer", "Both", "Other"]>;
720
+ country: import("zod").ZodOptional<import("zod").ZodString>;
721
+ industry: import("zod").ZodOptional<import("zod").ZodString>;
722
+ sector: import("zod").ZodOptional<import("zod").ZodString>;
723
+ issuedETFs: 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">>;
724
+ }, "strip", import("zod").ZodTypeAny, {
725
+ name?: string;
726
+ key?: string;
727
+ id?: string | import("mongoose").Types.ObjectId;
728
+ data?: any;
729
+ type?: "Public Company" | "ETF Issuer" | "Both" | "Other";
730
+ description?: string;
731
+ applicationId?: string | import("mongoose").Types.ObjectId;
732
+ createdDate?: Date;
733
+ updatedDate?: Date;
734
+ status?: "Active" | "Paused" | "Pending" | "Archived";
735
+ ownerId?: string | import("mongoose").Types.ObjectId;
736
+ meta?: any;
737
+ merkleLeaf?: string;
738
+ merkleIndex?: number;
739
+ createdById?: string | import("mongoose").Types.ObjectId;
740
+ editedById?: string | import("mongoose").Types.ObjectId;
741
+ deletedById?: string | import("mongoose").Types.ObjectId;
742
+ deletedDate?: Date;
743
+ ticker?: string;
744
+ sector?: string;
745
+ country?: string;
746
+ industry?: string;
747
+ issuedETFs?: (string | import("mongoose").Types.ObjectId)[];
748
+ }, {
749
+ name?: string;
750
+ key?: string;
751
+ id?: string | import("mongoose").Types.ObjectId;
752
+ data?: any;
753
+ type?: "Public Company" | "ETF Issuer" | "Both" | "Other";
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
+ ticker?: string;
768
+ sector?: string;
769
+ country?: string;
770
+ industry?: string;
771
+ issuedETFs?: (string | import("mongoose").Types.ObjectId)[];
772
+ }>;
773
+ export declare const MarketETF: import("zod").ZodObject<{
774
+ key: import("zod").ZodOptional<import("zod").ZodString>;
775
+ name: import("zod").ZodOptional<import("zod").ZodString>;
776
+ description: import("zod").ZodOptional<import("zod").ZodString>;
777
+ 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>]>>;
778
+ 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>]>>;
779
+ } & {
780
+ 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>]>>;
781
+ meta: import("zod").ZodAny;
782
+ data: import("zod").ZodAny;
783
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
784
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
785
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
786
+ 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>]>>;
787
+ 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>]>>;
788
+ 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>]>>;
789
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
790
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
791
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
792
+ } & {
793
+ ticker: import("zod").ZodString;
794
+ issuerId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
795
+ leverage: import("zod").ZodOptional<import("zod").ZodNumber>;
796
+ country: import("zod").ZodOptional<import("zod").ZodString>;
797
+ currency: import("zod").ZodOptional<import("zod").ZodString>;
798
+ AUM: import("zod").ZodOptional<import("zod").ZodNumber>;
799
+ industry: import("zod").ZodOptional<import("zod").ZodString>;
800
+ sector: import("zod").ZodOptional<import("zod").ZodString>;
801
+ }, "strip", import("zod").ZodTypeAny, {
802
+ name?: string;
803
+ key?: string;
804
+ id?: string | import("mongoose").Types.ObjectId;
805
+ data?: any;
806
+ description?: string;
807
+ applicationId?: string | import("mongoose").Types.ObjectId;
808
+ createdDate?: Date;
809
+ updatedDate?: Date;
810
+ status?: "Active" | "Paused" | "Pending" | "Archived";
811
+ ownerId?: string | import("mongoose").Types.ObjectId;
812
+ meta?: any;
813
+ merkleLeaf?: string;
814
+ merkleIndex?: number;
815
+ createdById?: string | import("mongoose").Types.ObjectId;
816
+ editedById?: string | import("mongoose").Types.ObjectId;
817
+ deletedById?: string | import("mongoose").Types.ObjectId;
818
+ deletedDate?: Date;
819
+ ticker?: string;
820
+ sector?: string;
821
+ currency?: string;
822
+ country?: string;
823
+ industry?: string;
824
+ issuerId?: string | import("mongoose").Types.ObjectId;
825
+ leverage?: number;
826
+ AUM?: number;
827
+ }, {
828
+ name?: string;
829
+ key?: string;
830
+ id?: string | import("mongoose").Types.ObjectId;
831
+ data?: any;
832
+ description?: string;
833
+ applicationId?: string | import("mongoose").Types.ObjectId;
834
+ createdDate?: Date;
835
+ updatedDate?: Date;
836
+ status?: "Active" | "Paused" | "Pending" | "Archived";
837
+ ownerId?: string | import("mongoose").Types.ObjectId;
838
+ meta?: any;
839
+ merkleLeaf?: string;
840
+ merkleIndex?: number;
841
+ createdById?: string | import("mongoose").Types.ObjectId;
842
+ editedById?: string | import("mongoose").Types.ObjectId;
843
+ deletedById?: string | import("mongoose").Types.ObjectId;
844
+ deletedDate?: Date;
845
+ ticker?: string;
846
+ sector?: string;
847
+ currency?: string;
848
+ country?: string;
849
+ industry?: string;
850
+ issuerId?: string | import("mongoose").Types.ObjectId;
851
+ leverage?: number;
852
+ AUM?: number;
853
+ }>;
854
+ export declare const MarketStockSentiment: import("zod").ZodObject<{
855
+ key: import("zod").ZodOptional<import("zod").ZodString>;
856
+ name: import("zod").ZodOptional<import("zod").ZodString>;
857
+ description: import("zod").ZodOptional<import("zod").ZodString>;
858
+ 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>]>>;
859
+ 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>]>>;
860
+ } & {
861
+ 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>]>>;
862
+ meta: import("zod").ZodAny;
863
+ data: import("zod").ZodAny;
864
+ status: import("zod").ZodDefault<import("zod").ZodEnum<["Paused", "Pending", "Active", "Archived"]>>;
865
+ merkleLeaf: import("zod").ZodOptional<import("zod").ZodString>;
866
+ merkleIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
867
+ 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>]>>;
868
+ 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>]>>;
869
+ 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>]>>;
870
+ createdDate: import("zod").ZodDefault<import("zod").ZodDate>;
871
+ updatedDate: import("zod").ZodOptional<import("zod").ZodDate>;
872
+ deletedDate: import("zod").ZodOptional<import("zod").ZodDate>;
873
+ } & {
874
+ ticker: import("zod").ZodString;
875
+ companyId: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodType<import("mongoose").Types.ObjectId, import("zod").ZodTypeDef, import("mongoose").Types.ObjectId>]>;
876
+ sentiment: import("zod").ZodObject<{
877
+ label: import("zod").ZodEnum<["Positive", "Neutral", "Negative"]>;
878
+ score: import("zod").ZodNumber;
879
+ }, "strip", import("zod").ZodTypeAny, {
880
+ score?: number;
881
+ label?: "Positive" | "Neutral" | "Negative";
882
+ }, {
883
+ score?: number;
884
+ label?: "Positive" | "Neutral" | "Negative";
885
+ }>;
886
+ confidence: import("zod").ZodNumber;
887
+ }, "strip", import("zod").ZodTypeAny, {
888
+ name?: string;
889
+ key?: string;
890
+ id?: string | import("mongoose").Types.ObjectId;
891
+ data?: any;
892
+ description?: string;
893
+ applicationId?: string | import("mongoose").Types.ObjectId;
894
+ createdDate?: Date;
895
+ updatedDate?: Date;
896
+ status?: "Active" | "Paused" | "Pending" | "Archived";
897
+ ownerId?: string | import("mongoose").Types.ObjectId;
898
+ meta?: any;
899
+ merkleLeaf?: string;
900
+ merkleIndex?: number;
901
+ createdById?: string | import("mongoose").Types.ObjectId;
902
+ editedById?: string | import("mongoose").Types.ObjectId;
903
+ deletedById?: string | import("mongoose").Types.ObjectId;
904
+ deletedDate?: Date;
905
+ companyId?: string | import("mongoose").Types.ObjectId;
906
+ ticker?: string;
907
+ sentiment?: {
908
+ score?: number;
909
+ label?: "Positive" | "Neutral" | "Negative";
910
+ };
911
+ confidence?: number;
912
+ }, {
913
+ name?: string;
914
+ key?: string;
915
+ id?: string | import("mongoose").Types.ObjectId;
916
+ data?: any;
917
+ description?: string;
918
+ applicationId?: string | import("mongoose").Types.ObjectId;
919
+ createdDate?: Date;
920
+ updatedDate?: Date;
921
+ status?: "Active" | "Paused" | "Pending" | "Archived";
922
+ ownerId?: string | import("mongoose").Types.ObjectId;
923
+ meta?: any;
924
+ merkleLeaf?: string;
925
+ merkleIndex?: number;
926
+ createdById?: string | import("mongoose").Types.ObjectId;
927
+ editedById?: string | import("mongoose").Types.ObjectId;
928
+ deletedById?: string | import("mongoose").Types.ObjectId;
929
+ deletedDate?: Date;
930
+ companyId?: string | import("mongoose").Types.ObjectId;
931
+ ticker?: string;
932
+ sentiment?: {
933
+ score?: number;
934
+ label?: "Positive" | "Neutral" | "Negative";
935
+ };
936
+ confidence?: number;
937
+ }>;