@contractspec/example.crm-pipeline 1.57.0 → 1.58.0

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 (259) hide show
  1. package/.turbo/turbo-build.log +148 -164
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +20 -0
  4. package/dist/browser/crm-pipeline.feature.js +75 -0
  5. package/dist/browser/deal/deal.enum.js +18 -0
  6. package/dist/browser/deal/deal.operation.js +396 -0
  7. package/dist/browser/deal/deal.schema.js +141 -0
  8. package/dist/browser/deal/deal.test-spec.js +58 -0
  9. package/dist/browser/deal/index.js +408 -0
  10. package/dist/browser/docs/crm-pipeline.docblock.js +113 -0
  11. package/dist/browser/docs/index.js +113 -0
  12. package/dist/browser/entities/company.entity.js +52 -0
  13. package/dist/browser/entities/contact.entity.js +66 -0
  14. package/dist/browser/entities/deal.entity.js +107 -0
  15. package/dist/browser/entities/index.js +343 -0
  16. package/dist/browser/entities/task.entity.js +99 -0
  17. package/dist/browser/events/contact.event.js +31 -0
  18. package/dist/browser/events/deal.event.js +101 -0
  19. package/dist/browser/events/index.js +158 -0
  20. package/dist/browser/events/task.event.js +28 -0
  21. package/dist/browser/example.js +39 -0
  22. package/dist/browser/handlers/crm.handlers.js +160 -0
  23. package/dist/browser/handlers/deal.handlers.js +293 -0
  24. package/dist/browser/handlers/index.js +456 -0
  25. package/dist/browser/handlers/mock-data.js +165 -0
  26. package/dist/browser/index.js +3279 -0
  27. package/dist/browser/operations/index.js +407 -0
  28. package/dist/browser/presentations/dashboard.presentation.js +52 -0
  29. package/dist/browser/presentations/index.js +284 -0
  30. package/dist/browser/presentations/pipeline.presentation.js +233 -0
  31. package/dist/browser/seeders/index.js +22 -0
  32. package/dist/browser/shared/overlay-types.js +0 -0
  33. package/dist/browser/ui/CrmDashboard.js +1325 -0
  34. package/dist/browser/ui/CrmDealCard.js +50 -0
  35. package/dist/browser/ui/CrmPipelineBoard.js +160 -0
  36. package/dist/browser/ui/hooks/index.js +186 -0
  37. package/dist/browser/ui/hooks/useDealList.js +84 -0
  38. package/dist/browser/ui/hooks/useDealMutations.js +100 -0
  39. package/dist/browser/ui/index.js +1972 -0
  40. package/dist/browser/ui/modals/CreateDealModal.js +211 -0
  41. package/dist/browser/ui/modals/DealActionsModal.js +428 -0
  42. package/dist/browser/ui/modals/index.js +638 -0
  43. package/dist/browser/ui/overlays/demo-overlays.js +55 -0
  44. package/dist/browser/ui/overlays/index.js +55 -0
  45. package/dist/browser/ui/renderers/index.js +827 -0
  46. package/dist/browser/ui/renderers/pipeline.markdown.js +564 -0
  47. package/dist/browser/ui/renderers/pipeline.renderer.js +264 -0
  48. package/dist/crm-pipeline.feature.d.ts +1 -6
  49. package/dist/crm-pipeline.feature.d.ts.map +1 -1
  50. package/dist/crm-pipeline.feature.js +74 -164
  51. package/dist/deal/deal.enum.d.ts +2 -7
  52. package/dist/deal/deal.enum.d.ts.map +1 -1
  53. package/dist/deal/deal.enum.js +16 -22
  54. package/dist/deal/deal.operation.d.ts +444 -450
  55. package/dist/deal/deal.operation.d.ts.map +1 -1
  56. package/dist/deal/deal.operation.js +390 -263
  57. package/dist/deal/deal.schema.d.ts +251 -256
  58. package/dist/deal/deal.schema.d.ts.map +1 -1
  59. package/dist/deal/deal.schema.js +131 -275
  60. package/dist/deal/deal.test-spec.d.ts +2 -7
  61. package/dist/deal/deal.test-spec.d.ts.map +1 -1
  62. package/dist/deal/deal.test-spec.js +56 -62
  63. package/dist/deal/index.d.ts +7 -4
  64. package/dist/deal/index.d.ts.map +1 -0
  65. package/dist/deal/index.js +408 -4
  66. package/dist/docs/crm-pipeline.docblock.d.ts +2 -1
  67. package/dist/docs/crm-pipeline.docblock.d.ts.map +1 -0
  68. package/dist/docs/crm-pipeline.docblock.js +45 -51
  69. package/dist/docs/index.d.ts +2 -1
  70. package/dist/docs/index.d.ts.map +1 -0
  71. package/dist/docs/index.js +114 -1
  72. package/dist/entities/company.entity.d.ts +27 -32
  73. package/dist/entities/company.entity.d.ts.map +1 -1
  74. package/dist/entities/company.entity.js +51 -61
  75. package/dist/entities/contact.entity.d.ts +31 -36
  76. package/dist/entities/contact.entity.d.ts.map +1 -1
  77. package/dist/entities/contact.entity.js +65 -76
  78. package/dist/entities/deal.entity.d.ts +52 -57
  79. package/dist/entities/deal.entity.d.ts.map +1 -1
  80. package/dist/entities/deal.entity.js +104 -116
  81. package/dist/entities/index.d.ts +6 -10
  82. package/dist/entities/index.d.ts.map +1 -1
  83. package/dist/entities/index.js +342 -31
  84. package/dist/entities/task.entity.d.ts +42 -47
  85. package/dist/entities/task.entity.d.ts.map +1 -1
  86. package/dist/entities/task.entity.js +95 -124
  87. package/dist/events/contact.event.d.ts +21 -27
  88. package/dist/events/contact.event.d.ts.map +1 -1
  89. package/dist/events/contact.event.js +29 -42
  90. package/dist/events/deal.event.d.ts +100 -106
  91. package/dist/events/deal.event.d.ts.map +1 -1
  92. package/dist/events/deal.event.js +93 -163
  93. package/dist/events/index.d.ts +4 -4
  94. package/dist/events/index.d.ts.map +1 -0
  95. package/dist/events/index.js +158 -4
  96. package/dist/events/task.event.d.ts +21 -27
  97. package/dist/events/task.event.d.ts.map +1 -1
  98. package/dist/events/task.event.js +26 -42
  99. package/dist/example.d.ts +2 -6
  100. package/dist/example.d.ts.map +1 -1
  101. package/dist/example.js +38 -50
  102. package/dist/handlers/crm.handlers.d.ts +80 -78
  103. package/dist/handlers/crm.handlers.d.ts.map +1 -1
  104. package/dist/handlers/crm.handlers.js +155 -166
  105. package/dist/handlers/deal.handlers.d.ts +58 -63
  106. package/dist/handlers/deal.handlers.d.ts.map +1 -1
  107. package/dist/handlers/deal.handlers.js +279 -105
  108. package/dist/handlers/index.d.ts +10 -4
  109. package/dist/handlers/index.d.ts.map +1 -0
  110. package/dist/handlers/index.js +456 -4
  111. package/dist/handlers/mock-data.d.ts +38 -41
  112. package/dist/handlers/mock-data.d.ts.map +1 -1
  113. package/dist/handlers/mock-data.js +162 -184
  114. package/dist/index.d.ts +13 -42
  115. package/dist/index.d.ts.map +1 -1
  116. package/dist/index.js +3277 -53
  117. package/dist/node/crm-pipeline.feature.js +75 -0
  118. package/dist/node/deal/deal.enum.js +18 -0
  119. package/dist/node/deal/deal.operation.js +396 -0
  120. package/dist/node/deal/deal.schema.js +141 -0
  121. package/dist/node/deal/deal.test-spec.js +58 -0
  122. package/dist/node/deal/index.js +408 -0
  123. package/dist/node/docs/crm-pipeline.docblock.js +113 -0
  124. package/dist/node/docs/index.js +113 -0
  125. package/dist/node/entities/company.entity.js +52 -0
  126. package/dist/node/entities/contact.entity.js +66 -0
  127. package/dist/node/entities/deal.entity.js +107 -0
  128. package/dist/node/entities/index.js +343 -0
  129. package/dist/node/entities/task.entity.js +99 -0
  130. package/dist/node/events/contact.event.js +31 -0
  131. package/dist/node/events/deal.event.js +101 -0
  132. package/dist/node/events/index.js +158 -0
  133. package/dist/node/events/task.event.js +28 -0
  134. package/dist/node/example.js +39 -0
  135. package/dist/node/handlers/crm.handlers.js +160 -0
  136. package/dist/node/handlers/deal.handlers.js +293 -0
  137. package/dist/node/handlers/index.js +456 -0
  138. package/dist/node/handlers/mock-data.js +165 -0
  139. package/dist/node/index.js +3279 -0
  140. package/dist/node/operations/index.js +407 -0
  141. package/dist/node/presentations/dashboard.presentation.js +52 -0
  142. package/dist/node/presentations/index.js +284 -0
  143. package/dist/node/presentations/pipeline.presentation.js +233 -0
  144. package/dist/node/seeders/index.js +22 -0
  145. package/dist/node/shared/overlay-types.js +0 -0
  146. package/dist/node/ui/CrmDashboard.js +1325 -0
  147. package/dist/node/ui/CrmDealCard.js +50 -0
  148. package/dist/node/ui/CrmPipelineBoard.js +160 -0
  149. package/dist/node/ui/hooks/index.js +186 -0
  150. package/dist/node/ui/hooks/useDealList.js +84 -0
  151. package/dist/node/ui/hooks/useDealMutations.js +100 -0
  152. package/dist/node/ui/index.js +1972 -0
  153. package/dist/node/ui/modals/CreateDealModal.js +211 -0
  154. package/dist/node/ui/modals/DealActionsModal.js +428 -0
  155. package/dist/node/ui/modals/index.js +638 -0
  156. package/dist/node/ui/overlays/demo-overlays.js +55 -0
  157. package/dist/node/ui/overlays/index.js +55 -0
  158. package/dist/node/ui/renderers/index.js +827 -0
  159. package/dist/node/ui/renderers/pipeline.markdown.js +564 -0
  160. package/dist/node/ui/renderers/pipeline.renderer.js +264 -0
  161. package/dist/operations/index.d.ts +2 -5
  162. package/dist/operations/index.d.ts.map +1 -0
  163. package/dist/operations/index.js +407 -5
  164. package/dist/presentations/dashboard.presentation.d.ts +2 -7
  165. package/dist/presentations/dashboard.presentation.d.ts.map +1 -1
  166. package/dist/presentations/dashboard.presentation.js +51 -60
  167. package/dist/presentations/index.d.ts +3 -3
  168. package/dist/presentations/index.d.ts.map +1 -0
  169. package/dist/presentations/index.js +284 -3
  170. package/dist/presentations/pipeline.presentation.d.ts +4 -9
  171. package/dist/presentations/pipeline.presentation.d.ts.map +1 -1
  172. package/dist/presentations/pipeline.presentation.js +228 -116
  173. package/dist/seeders/index.d.ts +4 -8
  174. package/dist/seeders/index.d.ts.map +1 -1
  175. package/dist/seeders/index.js +21 -45
  176. package/dist/shared/overlay-types.d.ts +25 -28
  177. package/dist/shared/overlay-types.d.ts.map +1 -1
  178. package/dist/shared/overlay-types.js +1 -0
  179. package/dist/ui/CrmDashboard.d.ts +1 -6
  180. package/dist/ui/CrmDashboard.d.ts.map +1 -1
  181. package/dist/ui/CrmDashboard.js +1318 -296
  182. package/dist/ui/CrmDealCard.d.ts +8 -12
  183. package/dist/ui/CrmDealCard.d.ts.map +1 -1
  184. package/dist/ui/CrmDealCard.js +47 -45
  185. package/dist/ui/CrmPipelineBoard.d.ts +11 -20
  186. package/dist/ui/CrmPipelineBoard.d.ts.map +1 -1
  187. package/dist/ui/CrmPipelineBoard.js +157 -94
  188. package/dist/ui/hooks/index.d.ts +3 -3
  189. package/dist/ui/hooks/index.d.ts.map +1 -0
  190. package/dist/ui/hooks/index.js +185 -4
  191. package/dist/ui/hooks/useDealList.d.ts +28 -32
  192. package/dist/ui/hooks/useDealList.d.ts.map +1 -1
  193. package/dist/ui/hooks/useDealList.js +81 -90
  194. package/dist/ui/hooks/useDealMutations.d.ts +18 -22
  195. package/dist/ui/hooks/useDealMutations.d.ts.map +1 -1
  196. package/dist/ui/hooks/useDealMutations.js +97 -155
  197. package/dist/ui/index.d.ts +8 -14
  198. package/dist/ui/index.d.ts.map +1 -0
  199. package/dist/ui/index.js +1973 -15
  200. package/dist/ui/modals/CreateDealModal.d.ts +19 -29
  201. package/dist/ui/modals/CreateDealModal.d.ts.map +1 -1
  202. package/dist/ui/modals/CreateDealModal.js +209 -180
  203. package/dist/ui/modals/DealActionsModal.d.ts +31 -44
  204. package/dist/ui/modals/DealActionsModal.d.ts.map +1 -1
  205. package/dist/ui/modals/DealActionsModal.js +424 -367
  206. package/dist/ui/modals/index.d.ts +3 -3
  207. package/dist/ui/modals/index.d.ts.map +1 -0
  208. package/dist/ui/modals/index.js +638 -3
  209. package/dist/ui/overlays/demo-overlays.d.ts +10 -8
  210. package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
  211. package/dist/ui/overlays/demo-overlays.js +54 -66
  212. package/dist/ui/overlays/index.d.ts +2 -2
  213. package/dist/ui/overlays/index.d.ts.map +1 -0
  214. package/dist/ui/overlays/index.js +56 -3
  215. package/dist/ui/renderers/index.d.ts +3 -3
  216. package/dist/ui/renderers/index.d.ts.map +1 -0
  217. package/dist/ui/renderers/index.js +827 -3
  218. package/dist/ui/renderers/pipeline.markdown.d.ts +12 -11
  219. package/dist/ui/renderers/pipeline.markdown.d.ts.map +1 -1
  220. package/dist/ui/renderers/pipeline.markdown.js +560 -114
  221. package/dist/ui/renderers/pipeline.renderer.d.ts +9 -7
  222. package/dist/ui/renderers/pipeline.renderer.d.ts.map +1 -1
  223. package/dist/ui/renderers/pipeline.renderer.js +261 -24
  224. package/package.json +476 -90
  225. package/tsdown.config.js +1 -2
  226. package/.turbo/turbo-build$colon$bundle.log +0 -164
  227. package/dist/crm-pipeline.feature.js.map +0 -1
  228. package/dist/deal/deal.enum.js.map +0 -1
  229. package/dist/deal/deal.operation.js.map +0 -1
  230. package/dist/deal/deal.schema.js.map +0 -1
  231. package/dist/deal/deal.test-spec.js.map +0 -1
  232. package/dist/docs/crm-pipeline.docblock.js.map +0 -1
  233. package/dist/entities/company.entity.js.map +0 -1
  234. package/dist/entities/contact.entity.js.map +0 -1
  235. package/dist/entities/deal.entity.js.map +0 -1
  236. package/dist/entities/index.js.map +0 -1
  237. package/dist/entities/task.entity.js.map +0 -1
  238. package/dist/events/contact.event.js.map +0 -1
  239. package/dist/events/deal.event.js.map +0 -1
  240. package/dist/events/task.event.js.map +0 -1
  241. package/dist/example.js.map +0 -1
  242. package/dist/handlers/crm.handlers.js.map +0 -1
  243. package/dist/handlers/deal.handlers.js.map +0 -1
  244. package/dist/handlers/mock-data.js.map +0 -1
  245. package/dist/index.js.map +0 -1
  246. package/dist/presentations/dashboard.presentation.js.map +0 -1
  247. package/dist/presentations/pipeline.presentation.js.map +0 -1
  248. package/dist/seeders/index.js.map +0 -1
  249. package/dist/ui/CrmDashboard.js.map +0 -1
  250. package/dist/ui/CrmDealCard.js.map +0 -1
  251. package/dist/ui/CrmPipelineBoard.js.map +0 -1
  252. package/dist/ui/hooks/useDealList.js.map +0 -1
  253. package/dist/ui/hooks/useDealMutations.js.map +0 -1
  254. package/dist/ui/modals/CreateDealModal.js.map +0 -1
  255. package/dist/ui/modals/DealActionsModal.js.map +0 -1
  256. package/dist/ui/overlays/demo-overlays.js.map +0 -1
  257. package/dist/ui/renderers/pipeline.markdown.js.map +0 -1
  258. package/dist/ui/renderers/pipeline.renderer.js.map +0 -1
  259. package/tsconfig.tsbuildinfo +0 -1
@@ -1,165 +1,149 @@
1
- $ bun build:types && bun build:bundle
2
- $ tsc --noEmit
3
- $ tsdown
4
- ℹ tsdown v0.20.3 powered by rolldown v1.0.0-rc.3
5
- ℹ config file: /home/runner/work/contractspec/contractspec/packages/examples/crm-pipeline/tsdown.config.js
6
- ℹ entry: src/crm-pipeline.feature.ts, src/example.ts, src/index.ts, src/deal/deal.enum.ts, src/deal/deal.operation.ts, src/deal/deal.schema.ts, src/deal/deal.test-spec.ts, src/deal/index.ts, src/docs/crm-pipeline.docblock.ts, src/docs/index.ts, src/entities/company.entity.ts, src/entities/contact.entity.ts, src/entities/deal.entity.ts, src/entities/index.ts, src/entities/task.entity.ts, src/events/contact.event.ts, src/events/deal.event.ts, src/events/index.ts, src/events/task.event.ts, src/handlers/crm.handlers.ts, src/handlers/deal.handlers.ts, src/handlers/index.ts, src/handlers/mock-data.ts, src/operations/index.ts, src/presentations/dashboard.presentation.ts, src/presentations/index.ts, src/presentations/pipeline.presentation.ts, src/seeders/index.ts, src/shared/overlay-types.ts, src/ui/CrmDashboard.tsx, src/ui/CrmDealCard.tsx, src/ui/CrmPipelineBoard.tsx, src/ui/index.ts, src/ui/hooks/index.ts, src/ui/hooks/useDealList.ts, src/ui/hooks/useDealMutations.ts, src/ui/modals/CreateDealModal.tsx, src/ui/modals/DealActionsModal.tsx, src/ui/modals/index.ts, src/ui/overlays/demo-overlays.ts, src/ui/overlays/index.ts, src/ui/renderers/index.ts, src/ui/renderers/pipeline.markdown.ts, src/ui/renderers/pipeline.renderer.tsx
7
- ℹ target: esnext
8
- ℹ tsconfig: tsconfig.json
9
- ℹ Build start
10
- ℹ dist/ui/modals/DealActionsModal.js 12.27 kB │ gzip: 2.56 kB
11
- ℹ dist/ui/CrmDashboard.js  9.75 kB │ gzip: 2.51 kB
12
- ℹ dist/ui/modals/CreateDealModal.js  6.04 kB │ gzip: 1.84 kB
13
- ℹ dist/deal/deal.schema.js  5.86 kB │ gzip: 0.87 kB
14
- ℹ dist/deal/deal.operation.js  5.63 kB │ gzip: 1.47 kB
15
- ℹ dist/handlers/crm.handlers.js  5.59 kB │ gzip: 1.54 kB
16
- ℹ dist/index.js  4.72 kB │ gzip: 1.14 kB
17
- ℹ dist/ui/renderers/pipeline.markdown.js  4.50 kB │ gzip: 1.34 kB
18
- ℹ dist/handlers/mock-data.js  4.50 kB │ gzip: 1.09 kB
19
- ℹ dist/docs/crm-pipeline.docblock.js  4.36 kB │ gzip: 1.75 kB
20
- ℹ dist/ui/CrmPipelineBoard.js  3.88 kB │ gzip: 1.39 kB
21
- ℹ dist/events/deal.event.js  3.77 kB │ gzip: 0.67 kB
22
- ℹ dist/handlers/deal.handlers.js  3.73 kB │ gzip: 1.06 kB
23
- ℹ dist/entities/deal.entity.js  3.56 kB │ gzip: 1.05 kB
24
- ℹ dist/ui/hooks/useDealMutations.js  3.49 kB │ gzip: 0.80 kB
25
- ℹ dist/entities/task.entity.js  3.41 kB │ gzip: 0.98 kB
26
- ℹ dist/presentations/pipeline.presentation.js  3.23 kB │ gzip: 0.96 kB
27
- ℹ dist/crm-pipeline.feature.js  2.69 kB │ gzip: 0.71 kB
28
- ℹ dist/ui/hooks/useDealList.js  2.54 kB │ gzip: 1.03 kB
29
- ℹ dist/entities/contact.entity.js  2.38 kB │ gzip: 0.83 kB
30
- ℹ dist/entities/company.entity.js  1.97 kB │ gzip: 0.72 kB
31
- ℹ dist/ui/CrmDealCard.js  1.96 kB │ gzip: 0.91 kB
32
- ℹ dist/presentations/dashboard.presentation.js  1.67 kB │ gzip: 0.64 kB
33
- ℹ dist/deal/deal.test-spec.js  1.33 kB │ gzip: 0.43 kB
34
- ℹ dist/ui/overlays/demo-overlays.js  1.32 kB │ gzip: 0.51 kB
35
- ℹ dist/events/contact.event.js  1.09 kB │ gzip: 0.45 kB
36
- ℹ dist/events/task.event.js  1.07 kB │ gzip: 0.44 kB
37
- ℹ dist/entities/index.js  1.05 kB │ gzip: 0.39 kB
38
- ℹ dist/example.js  1.03 kB │ gzip: 0.54 kB
39
- ℹ dist/seeders/index.js  1.03 kB │ gzip: 0.50 kB
40
- ℹ dist/ui/index.js  1.03 kB │ gzip: 0.29 kB
41
- ℹ dist/ui/renderers/pipeline.renderer.js  0.90 kB │ gzip: 0.44 kB
42
- ℹ dist/operations/index.js  0.79 kB │ gzip: 0.23 kB
43
- ℹ dist/deal/index.js  0.78 kB │ gzip: 0.23 kB
44
- ℹ dist/handlers/index.js  0.60 kB │ gzip: 0.20 kB
45
- ℹ dist/deal/deal.enum.js  0.44 kB │ gzip: 0.24 kB
46
- ℹ dist/presentations/index.js  0.40 kB │ gzip: 0.15 kB
47
- ℹ dist/events/index.js  0.32 kB │ gzip: 0.14 kB
48
- ℹ dist/ui/renderers/index.js  0.26 kB │ gzip: 0.12 kB
49
- ℹ dist/ui/hooks/index.js  0.16 kB │ gzip: 0.10 kB
50
- ℹ dist/ui/modals/index.js  0.16 kB │ gzip: 0.09 kB
51
- ℹ dist/ui/overlays/index.js  0.15 kB │ gzip: 0.09 kB
52
- ℹ dist/docs/index.js  0.04 kB │ gzip: 0.06 kB
53
- ℹ dist/shared/overlay-types.js  0.00 kB │ gzip: 0.02 kB
54
- ℹ dist/ui/modals/DealActionsModal.js.map 17.99 kB │ gzip: 4.12 kB
55
- ℹ dist/handlers/crm.handlers.js.map 13.46 kB │ gzip: 3.36 kB
56
- ℹ dist/ui/CrmDashboard.js.map 13.33 kB │ gzip: 3.99 kB
57
- ℹ dist/ui/modals/CreateDealModal.js.map  9.71 kB │ gzip: 3.02 kB
58
- ℹ dist/deal/deal.operation.js.map  9.58 kB │ gzip: 2.06 kB
59
- ℹ dist/deal/deal.schema.js.map  8.70 kB │ gzip: 1.25 kB
60
- ℹ dist/ui/renderers/pipeline.markdown.js.map  8.65 kB │ gzip: 2.46 kB
61
- ℹ dist/handlers/deal.handlers.js.map  7.82 kB │ gzip: 2.05 kB
62
- ℹ dist/handlers/mock-data.js.map  7.43 kB │ gzip: 1.54 kB
63
- ℹ dist/ui/CrmPipelineBoard.js.map  6.91 kB │ gzip: 2.34 kB
64
- ℹ dist/ui/hooks/useDealMutations.js.map  6.85 kB │ gzip: 1.65 kB
65
- ℹ dist/entities/deal.entity.js.map  6.68 kB │ gzip: 1.76 kB
66
- ℹ dist/entities/task.entity.js.map  6.10 kB │ gzip: 1.56 kB
67
- ℹ dist/events/deal.event.js.map  5.88 kB │ gzip: 1.02 kB
68
- ℹ dist/docs/crm-pipeline.docblock.js.map  5.26 kB │ gzip: 1.97 kB
69
- ℹ dist/ui/hooks/useDealList.js.map  4.93 kB │ gzip: 1.83 kB
70
- ℹ dist/presentations/pipeline.presentation.js.map  4.69 kB │ gzip: 1.22 kB
71
- ℹ dist/crm-pipeline.feature.js.map  4.44 kB │ gzip: 1.21 kB
72
- ℹ dist/entities/contact.entity.js.map  4.32 kB │ gzip: 1.37 kB
73
- ℹ dist/entities/company.entity.js.map  3.58 kB │ gzip: 1.17 kB
74
- ℹ dist/ui/CrmDealCard.js.map  3.37 kB │ gzip: 1.49 kB
75
- ℹ dist/presentations/dashboard.presentation.js.map  2.40 kB │ gzip: 0.86 kB
76
- ℹ dist/deal/deal.test-spec.js.map  2.35 kB │ gzip: 0.63 kB
77
- ℹ dist/ui/overlays/demo-overlays.js.map  2.27 kB │ gzip: 0.84 kB
78
- ℹ dist/seeders/index.js.map  1.78 kB │ gzip: 0.84 kB
79
- ℹ dist/events/contact.event.js.map  1.65 kB │ gzip: 0.70 kB
80
- ℹ dist/ui/renderers/pipeline.renderer.js.map  1.62 kB │ gzip: 0.75 kB
81
- ℹ dist/events/task.event.js.map  1.61 kB │ gzip: 0.65 kB
82
- ℹ dist/example.js.map  1.56 kB │ gzip: 0.77 kB
83
- ℹ dist/entities/index.js.map  1.32 kB │ gzip: 0.49 kB
84
- ℹ dist/index.js.map  1.31 kB │ gzip: 0.54 kB
85
- ℹ dist/handlers/crm.handlers.d.ts.map  1.19 kB │ gzip: 0.39 kB
86
- ℹ dist/handlers/deal.handlers.d.ts.map  1.17 kB │ gzip: 0.39 kB
87
- ℹ dist/deal/deal.operation.d.ts.map  0.95 kB │ gzip: 0.25 kB
88
- ℹ dist/deal/deal.schema.d.ts.map  0.79 kB │ gzip: 0.25 kB
89
- ℹ dist/ui/modals/DealActionsModal.d.ts.map  0.72 kB │ gzip: 0.29 kB
90
- ℹ dist/deal/deal.enum.js.map  0.60 kB │ gzip: 0.32 kB
91
- ℹ dist/shared/overlay-types.d.ts.map  0.49 kB │ gzip: 0.22 kB
92
- ℹ dist/handlers/mock-data.d.ts.map  0.48 kB │ gzip: 0.24 kB
93
- ℹ dist/ui/modals/CreateDealModal.d.ts.map  0.48 kB │ gzip: 0.25 kB
94
- ℹ dist/events/deal.event.d.ts.map  0.45 kB │ gzip: 0.19 kB
95
- ℹ dist/ui/hooks/useDealMutations.d.ts.map  0.43 kB │ gzip: 0.24 kB
96
- ℹ dist/ui/CrmPipelineBoard.d.ts.map  0.37 kB │ gzip: 0.24 kB
97
- ℹ dist/entities/task.entity.d.ts.map  0.35 kB │ gzip: 0.20 kB
98
- ℹ dist/entities/deal.entity.d.ts.map  0.31 kB │ gzip: 0.19 kB
99
- ℹ dist/presentations/pipeline.presentation.d.ts.map  0.31 kB │ gzip: 0.18 kB
100
- ℹ dist/ui/hooks/useDealList.d.ts.map  0.27 kB │ gzip: 0.19 kB
101
- ℹ dist/ui/renderers/pipeline.markdown.d.ts.map  0.24 kB │ gzip: 0.17 kB
102
- ℹ dist/ui/CrmDealCard.d.ts.map  0.24 kB │ gzip: 0.18 kB
103
- ℹ dist/presentations/dashboard.presentation.d.ts.map  0.22 kB │ gzip: 0.16 kB
104
- ℹ dist/ui/overlays/demo-overlays.d.ts.map  0.21 kB │ gzip: 0.17 kB
105
- ℹ dist/entities/contact.entity.d.ts.map  0.20 kB │ gzip: 0.16 kB
106
- ℹ dist/entities/company.entity.d.ts.map  0.20 kB │ gzip: 0.16 kB
107
- ℹ dist/deal/deal.test-spec.d.ts.map  0.19 kB │ gzip: 0.15 kB
108
- ℹ dist/events/contact.event.d.ts.map  0.18 kB │ gzip: 0.15 kB
109
- ℹ dist/ui/renderers/pipeline.renderer.d.ts.map  0.18 kB │ gzip: 0.15 kB
110
- ℹ dist/events/task.event.d.ts.map  0.18 kB │ gzip: 0.15 kB
111
- ℹ dist/deal/deal.enum.d.ts.map  0.18 kB │ gzip: 0.15 kB
112
- ℹ dist/seeders/index.d.ts.map  0.17 kB │ gzip: 0.15 kB
113
- ℹ dist/crm-pipeline.feature.d.ts.map  0.16 kB │ gzip: 0.14 kB
114
- ℹ dist/index.d.ts.map  0.16 kB │ gzip: 0.13 kB
115
- ℹ dist/ui/CrmDashboard.d.ts.map  0.16 kB │ gzip: 0.14 kB
116
- ℹ dist/entities/index.d.ts.map  0.14 kB │ gzip: 0.13 kB
117
- ℹ dist/example.d.ts.map  0.13 kB │ gzip: 0.13 kB
118
- ℹ dist/deal/deal.operation.d.ts 14.01 kB │ gzip: 0.97 kB
119
- ℹ dist/deal/deal.schema.d.ts  8.12 kB │ gzip: 0.84 kB
120
- ℹ dist/index.d.ts  4.79 kB │ gzip: 1.16 kB
121
- ℹ dist/entities/deal.entity.d.ts  3.44 kB │ gzip: 0.55 kB
122
- ℹ dist/events/deal.event.d.ts  3.25 kB │ gzip: 0.42 kB
123
- ℹ dist/entities/task.entity.d.ts  2.90 kB │ gzip: 0.50 kB
124
- ℹ dist/handlers/deal.handlers.d.ts  2.40 kB │ gzip: 0.69 kB
125
- ℹ dist/handlers/crm.handlers.d.ts  2.18 kB │ gzip: 0.69 kB
126
- ℹ dist/entities/contact.entity.d.ts  2.10 kB │ gzip: 0.45 kB
127
- ℹ dist/entities/company.entity.d.ts  1.86 kB │ gzip: 0.42 kB
128
- ℹ dist/ui/modals/DealActionsModal.d.ts  1.14 kB │ gzip: 0.48 kB
129
- ℹ dist/ui/index.d.ts  1.11 kB │ gzip: 0.31 kB
130
- ℹ dist/handlers/mock-data.d.ts  1.04 kB │ gzip: 0.43 kB
131
- ℹ dist/shared/overlay-types.d.ts  1.00 kB │ gzip: 0.40 kB
132
- ℹ dist/ui/hooks/useDealList.d.ts  0.98 kB │ gzip: 0.47 kB
133
- ℹ dist/ui/hooks/useDealMutations.d.ts  0.96 kB │ gzip: 0.38 kB
134
- ℹ dist/events/contact.event.d.ts  0.92 kB │ gzip: 0.30 kB
135
- ℹ dist/events/task.event.d.ts  0.91 kB │ gzip: 0.30 kB
136
- ℹ dist/handlers/index.d.ts  0.91 kB │ gzip: 0.28 kB
137
- ℹ dist/entities/index.d.ts  0.85 kB │ gzip: 0.32 kB
138
- ℹ dist/presentations/pipeline.presentation.d.ts  0.83 kB │ gzip: 0.29 kB
139
- ℹ dist/operations/index.d.ts  0.79 kB │ gzip: 0.24 kB
140
- ℹ dist/deal/index.d.ts  0.78 kB │ gzip: 0.23 kB
141
- ℹ dist/ui/modals/CreateDealModal.d.ts  0.77 kB │ gzip: 0.39 kB
142
- ℹ dist/ui/renderers/pipeline.markdown.d.ts  0.70 kB │ gzip: 0.30 kB
143
- ℹ dist/ui/CrmPipelineBoard.d.ts  0.63 kB │ gzip: 0.34 kB
144
- ℹ dist/presentations/dashboard.presentation.d.ts  0.53 kB │ gzip: 0.23 kB
145
- ℹ dist/ui/overlays/demo-overlays.d.ts  0.52 kB │ gzip: 0.27 kB
146
- ℹ dist/deal/deal.enum.d.ts  0.48 kB │ gzip: 0.23 kB
147
- ℹ dist/crm-pipeline.feature.d.ts  0.44 kB │ gzip: 0.25 kB
148
- ℹ dist/presentations/index.d.ts  0.40 kB │ gzip: 0.15 kB
149
- ℹ dist/ui/CrmDealCard.d.ts  0.39 kB │ gzip: 0.25 kB
150
- ℹ dist/deal/deal.test-spec.d.ts  0.35 kB │ gzip: 0.19 kB
151
- ℹ dist/ui/renderers/pipeline.renderer.d.ts  0.33 kB │ gzip: 0.20 kB
152
- ℹ dist/events/index.d.ts  0.32 kB │ gzip: 0.14 kB
153
- ℹ dist/seeders/index.d.ts  0.28 kB │ gzip: 0.21 kB
154
- ℹ dist/ui/renderers/index.d.ts  0.26 kB │ gzip: 0.12 kB
155
- ℹ dist/example.d.ts  0.25 kB │ gzip: 0.17 kB
156
- ℹ dist/ui/hooks/index.d.ts  0.25 kB │ gzip: 0.11 kB
157
- ℹ dist/ui/CrmDashboard.d.ts  0.24 kB │ gzip: 0.17 kB
158
- ℹ dist/ui/modals/index.d.ts  0.16 kB │ gzip: 0.09 kB
159
- ℹ dist/ui/overlays/index.d.ts  0.14 kB │ gzip: 0.09 kB
160
- ℹ dist/docs/crm-pipeline.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
161
- ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
162
- ℹ 152 files, total: 370.26 kB
163
- [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `tsdown:external`. See https://rolldown.rs/options/checks#plugintimings for more details.
1
+ $ contractspec-bun-build prebuild
2
+ $ bun run prebuild && bun run build:bundle && bun run build:types
3
+ $ contractspec-bun-build prebuild
4
+ $ contractspec-bun-build transpile
5
+ [contractspec-bun-build] transpile target=bun root=src entries=44
6
+ Bundled 44 modules in 67ms
164
7
 
165
- ✔ Build complete in 37759ms
8
+ ./crm-pipeline.feature.js 2.29 KB (entry point)
9
+ seeders/index.js 1.00 KB (entry point)
10
+ shared/overlay-types.js 8 bytes (entry point)
11
+ ./index.js 116.39 KB (entry point)
12
+ ui/index.js 74.41 KB (entry point)
13
+ ui/overlays/index.js 1.19 KB (entry point)
14
+ ui/renderers/index.js 28.45 KB (entry point)
15
+ ui/renderers/pipeline.markdown.js 17.75 KB (entry point)
16
+ ui/renderers/pipeline.renderer.js 10.71 KB (entry point)
17
+ ui/hooks/index.js 5.75 KB (entry point)
18
+ ui/modals/index.js 27.54 KB (entry point)
19
+ ui/overlays/demo-overlays.js 1.19 KB (entry point)
20
+ presentations/index.js 9.77 KB (entry point)
21
+ presentations/dashboard.presentation.js 1.54 KB (entry point)
22
+ presentations/pipeline.presentation.js 8.19 KB (entry point)
23
+ ui/CrmDashboard.js 54.56 KB (entry point)
24
+ ui/hooks/useDealList.js 2.49 KB (entry point)
25
+ ui/hooks/useDealMutations.js 3.18 KB (entry point)
26
+ ui/modals/CreateDealModal.js 8.89 KB (entry point)
27
+ ui/modals/DealActionsModal.js 18.56 KB (entry point)
28
+ ui/CrmPipelineBoard.js 7.49 KB (entry point)
29
+ ui/CrmDealCard.js 2.29 KB (entry point)
30
+ ./example.js 1.0 KB (entry point)
31
+ handlers/index.js 13.62 KB (entry point)
32
+ handlers/crm.handlers.js 5.81 KB (entry point)
33
+ handlers/deal.handlers.js 7.76 KB (entry point)
34
+ handlers/mock-data.js 4.33 KB (entry point)
35
+ operations/index.js 11.35 KB (entry point)
36
+ entities/index.js 11.64 KB (entry point)
37
+ entities/company.entity.js 1.88 KB (entry point)
38
+ entities/contact.entity.js 2.33 KB (entry point)
39
+ entities/deal.entity.js 3.49 KB (entry point)
40
+ entities/task.entity.js 3.26 KB (entry point)
41
+ events/index.js 5.80 KB (entry point)
42
+ events/task.event.js 1.0 KB (entry point)
43
+ events/contact.event.js 1.0 KB (entry point)
44
+ events/deal.event.js 3.64 KB (entry point)
45
+ deal/deal.test-spec.js 1.37 KB (entry point)
46
+ deal/index.js 11.37 KB (entry point)
47
+ deal/deal.operation.js 11.10 KB (entry point)
48
+ deal/deal.schema.js 5.41 KB (entry point)
49
+ deal/deal.enum.js 333 bytes (entry point)
50
+ docs/index.js 4.42 KB (entry point)
51
+ docs/crm-pipeline.docblock.js 4.42 KB (entry point)
52
+
53
+ [contractspec-bun-build] transpile target=node root=src entries=44
54
+ Bundled 44 modules in 77ms
55
+
56
+ ./crm-pipeline.feature.js 2.28 KB (entry point)
57
+ seeders/index.js 0.99 KB (entry point)
58
+ shared/overlay-types.js 0 KB (entry point)
59
+ ./index.js 116.35 KB (entry point)
60
+ ui/index.js 74.38 KB (entry point)
61
+ ui/overlays/index.js 1.19 KB (entry point)
62
+ ui/renderers/index.js 28.44 KB (entry point)
63
+ ui/renderers/pipeline.markdown.js 17.74 KB (entry point)
64
+ ui/renderers/pipeline.renderer.js 10.69 KB (entry point)
65
+ ui/hooks/index.js 5.74 KB (entry point)
66
+ ui/modals/index.js 27.52 KB (entry point)
67
+ ui/overlays/demo-overlays.js 1.19 KB (entry point)
68
+ presentations/index.js 9.76 KB (entry point)
69
+ presentations/dashboard.presentation.js 1.54 KB (entry point)
70
+ presentations/pipeline.presentation.js 8.18 KB (entry point)
71
+ ui/CrmDashboard.js 54.53 KB (entry point)
72
+ ui/hooks/useDealList.js 2.48 KB (entry point)
73
+ ui/hooks/useDealMutations.js 3.17 KB (entry point)
74
+ ui/modals/CreateDealModal.js 8.88 KB (entry point)
75
+ ui/modals/DealActionsModal.js 18.54 KB (entry point)
76
+ ui/CrmPipelineBoard.js 7.47 KB (entry point)
77
+ ui/CrmDealCard.js 2.28 KB (entry point)
78
+ ./example.js 1.0 KB (entry point)
79
+ handlers/index.js 13.61 KB (entry point)
80
+ handlers/crm.handlers.js 5.80 KB (entry point)
81
+ handlers/deal.handlers.js 7.75 KB (entry point)
82
+ handlers/mock-data.js 4.32 KB (entry point)
83
+ operations/index.js 11.34 KB (entry point)
84
+ entities/index.js 11.64 KB (entry point)
85
+ entities/company.entity.js 1.87 KB (entry point)
86
+ entities/contact.entity.js 2.32 KB (entry point)
87
+ entities/deal.entity.js 3.48 KB (entry point)
88
+ entities/task.entity.js 3.25 KB (entry point)
89
+ events/index.js 5.79 KB (entry point)
90
+ events/task.event.js 1.00 KB (entry point)
91
+ events/contact.event.js 1.0 KB (entry point)
92
+ events/deal.event.js 3.63 KB (entry point)
93
+ deal/deal.test-spec.js 1.36 KB (entry point)
94
+ deal/index.js 11.36 KB (entry point)
95
+ deal/deal.operation.js 11.1 KB (entry point)
96
+ deal/deal.schema.js 5.40 KB (entry point)
97
+ deal/deal.enum.js 325 bytes (entry point)
98
+ docs/index.js 4.40 KB (entry point)
99
+ docs/crm-pipeline.docblock.js 4.40 KB (entry point)
100
+
101
+ [contractspec-bun-build] transpile target=browser root=src entries=44
102
+ Bundled 44 modules in 68ms
103
+
104
+ ./crm-pipeline.feature.js 2.28 KB (entry point)
105
+ seeders/index.js 0.99 KB (entry point)
106
+ shared/overlay-types.js 0 KB (entry point)
107
+ ./index.js 116.35 KB (entry point)
108
+ ui/index.js 74.38 KB (entry point)
109
+ ui/overlays/index.js 1.19 KB (entry point)
110
+ ui/renderers/index.js 28.44 KB (entry point)
111
+ ui/renderers/pipeline.markdown.js 17.74 KB (entry point)
112
+ ui/renderers/pipeline.renderer.js 10.69 KB (entry point)
113
+ ui/hooks/index.js 5.74 KB (entry point)
114
+ ui/modals/index.js 27.52 KB (entry point)
115
+ ui/overlays/demo-overlays.js 1.19 KB (entry point)
116
+ presentations/index.js 9.76 KB (entry point)
117
+ presentations/dashboard.presentation.js 1.54 KB (entry point)
118
+ presentations/pipeline.presentation.js 8.18 KB (entry point)
119
+ ui/CrmDashboard.js 54.53 KB (entry point)
120
+ ui/hooks/useDealList.js 2.48 KB (entry point)
121
+ ui/hooks/useDealMutations.js 3.17 KB (entry point)
122
+ ui/modals/CreateDealModal.js 8.88 KB (entry point)
123
+ ui/modals/DealActionsModal.js 18.54 KB (entry point)
124
+ ui/CrmPipelineBoard.js 7.47 KB (entry point)
125
+ ui/CrmDealCard.js 2.28 KB (entry point)
126
+ ./example.js 1.0 KB (entry point)
127
+ handlers/index.js 13.61 KB (entry point)
128
+ handlers/crm.handlers.js 5.80 KB (entry point)
129
+ handlers/deal.handlers.js 7.75 KB (entry point)
130
+ handlers/mock-data.js 4.32 KB (entry point)
131
+ operations/index.js 11.34 KB (entry point)
132
+ entities/index.js 11.64 KB (entry point)
133
+ entities/company.entity.js 1.87 KB (entry point)
134
+ entities/contact.entity.js 2.32 KB (entry point)
135
+ entities/deal.entity.js 3.48 KB (entry point)
136
+ entities/task.entity.js 3.25 KB (entry point)
137
+ events/index.js 5.79 KB (entry point)
138
+ events/task.event.js 1.00 KB (entry point)
139
+ events/contact.event.js 1.0 KB (entry point)
140
+ events/deal.event.js 3.63 KB (entry point)
141
+ deal/deal.test-spec.js 1.36 KB (entry point)
142
+ deal/index.js 11.36 KB (entry point)
143
+ deal/deal.operation.js 11.1 KB (entry point)
144
+ deal/deal.schema.js 5.40 KB (entry point)
145
+ deal/deal.enum.js 325 bytes (entry point)
146
+ docs/index.js 4.40 KB (entry point)
147
+ docs/crm-pipeline.docblock.js 4.40 KB (entry point)
148
+
149
+ $ contractspec-bun-build types
@@ -0,0 +1 @@
1
+ $ contractspec-bun-build prebuild
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @contractspec/example.crm-pipeline
2
2
 
3
+ ## 1.58.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d1f0fd0: chore: Migrate non-app package builds from tsdown to shared Bun tooling, add `@contractspec/tool.bun`, and standardize `prebuild`/`build`/`typecheck` with platform-aware exports and `tsc` declaration emission into `dist`.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [d1f0fd0]
12
+ - Updated dependencies [4355a9e]
13
+ - @contractspec/lib.example-shared-ui@1.12.0
14
+ - @contractspec/module.notifications@1.58.0
15
+ - @contractspec/lib.runtime-sandbox@0.13.0
16
+ - @contractspec/module.audit-trail@1.58.0
17
+ - @contractspec/lib.design-system@1.58.0
18
+ - @contractspec/lib.identity-rbac@1.58.0
19
+ - @contractspec/lib.ui-kit-web@1.58.0
20
+ - @contractspec/lib.contracts@1.58.0
21
+ - @contractspec/lib.schema@1.58.0
22
+
3
23
  ## 1.57.0
4
24
 
5
25
  ### Minor Changes
@@ -0,0 +1,75 @@
1
+ // src/crm-pipeline.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts";
3
+ var CrmPipelineFeature = defineFeature({
4
+ meta: {
5
+ key: "crm-pipeline",
6
+ title: "CRM Pipeline",
7
+ description: "CRM and sales pipeline management with deals, contacts, and companies",
8
+ domain: "crm",
9
+ owners: ["@crm-team"],
10
+ tags: ["crm", "sales", "pipeline", "deals"],
11
+ stability: "experimental",
12
+ version: "1.0.0"
13
+ },
14
+ operations: [
15
+ { key: "crm.deal.create", version: "1.0.0" },
16
+ { key: "crm.deal.move", version: "1.0.0" },
17
+ { key: "crm.deal.win", version: "1.0.0" },
18
+ { key: "crm.deal.lose", version: "1.0.0" },
19
+ { key: "crm.deal.list", version: "1.0.0" }
20
+ ],
21
+ events: [
22
+ { key: "deal.created", version: "1.0.0" },
23
+ { key: "deal.moved", version: "1.0.0" },
24
+ { key: "deal.won", version: "1.0.0" },
25
+ { key: "deal.lost", version: "1.0.0" },
26
+ { key: "contact.created", version: "1.0.0" },
27
+ { key: "task.completed", version: "1.0.0" }
28
+ ],
29
+ presentations: [
30
+ { key: "crm.dashboard", version: "1.0.0" },
31
+ { key: "crm.pipeline.kanban", version: "1.0.0" },
32
+ { key: "crm.deal.viewList", version: "1.0.0" },
33
+ { key: "crm.deal.detail", version: "1.0.0" },
34
+ { key: "crm.deal.card", version: "1.0.0" },
35
+ { key: "crm.pipeline.metrics", version: "1.0.0" }
36
+ ],
37
+ opToPresentation: [
38
+ {
39
+ op: { key: "crm.deal.list", version: "1.0.0" },
40
+ pres: { key: "crm.pipeline.kanban", version: "1.0.0" }
41
+ },
42
+ {
43
+ op: { key: "crm.deal.move", version: "1.0.0" },
44
+ pres: { key: "crm.pipeline.kanban", version: "1.0.0" }
45
+ }
46
+ ],
47
+ presentationsTargets: [
48
+ { key: "crm.dashboard", version: "1.0.0", targets: ["react", "markdown"] },
49
+ {
50
+ key: "crm.pipeline.kanban",
51
+ version: "1.0.0",
52
+ targets: ["react", "markdown"]
53
+ },
54
+ {
55
+ key: "crm.deal.viewList",
56
+ version: "1.0.0",
57
+ targets: ["react", "markdown", "application/json"]
58
+ },
59
+ {
60
+ key: "crm.pipeline.metrics",
61
+ version: "1.0.0",
62
+ targets: ["react", "markdown"]
63
+ }
64
+ ],
65
+ capabilities: {
66
+ requires: [
67
+ { key: "identity", version: "1.0.0" },
68
+ { key: "audit-trail", version: "1.0.0" },
69
+ { key: "notifications", version: "1.0.0" }
70
+ ]
71
+ }
72
+ });
73
+ export {
74
+ CrmPipelineFeature
75
+ };
@@ -0,0 +1,18 @@
1
+ // src/deal/deal.enum.ts
2
+ import { defineEnum } from "@contractspec/lib.schema";
3
+ var DealStatusEnum = defineEnum("DealStatus", [
4
+ "OPEN",
5
+ "WON",
6
+ "LOST",
7
+ "STALE"
8
+ ]);
9
+ var DealStatusFilterEnum = defineEnum("DealStatusFilter", [
10
+ "OPEN",
11
+ "WON",
12
+ "LOST",
13
+ "all"
14
+ ]);
15
+ export {
16
+ DealStatusFilterEnum,
17
+ DealStatusEnum
18
+ };