@contractspec/example.analytics-dashboard 1.57.0 → 1.59.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 (173) hide show
  1. package/dist/browser/dashboard/dashboard.enum.js +34 -0
  2. package/dist/browser/dashboard/dashboard.operation.js +289 -0
  3. package/dist/browser/dashboard/dashboard.presentation.js +197 -0
  4. package/dist/browser/dashboard/dashboard.schema.js +126 -0
  5. package/dist/browser/dashboard/dashboard.test-spec.js +213 -0
  6. package/dist/browser/dashboard/index.js +299 -0
  7. package/dist/browser/dashboard.feature.js +84 -0
  8. package/dist/browser/datasource/posthog-datasource.js +289 -0
  9. package/dist/browser/docs/analytics-dashboard.docblock.js +103 -0
  10. package/dist/browser/docs/index.js +103 -0
  11. package/dist/browser/events.js +81 -0
  12. package/dist/browser/example.js +42 -0
  13. package/dist/browser/handlers/analytics.handlers.js +278 -0
  14. package/dist/browser/handlers/index.js +571 -0
  15. package/dist/browser/handlers/query.handlers.js +294 -0
  16. package/dist/browser/index.js +1677 -0
  17. package/dist/browser/query/index.js +159 -0
  18. package/dist/browser/query/query.enum.js +11 -0
  19. package/dist/browser/query/query.operation.js +154 -0
  20. package/dist/browser/query/query.presentation.js +119 -0
  21. package/dist/browser/query/query.schema.js +70 -0
  22. package/dist/browser/query/query.test-spec.js +113 -0
  23. package/dist/browser/query-engine/index.js +491 -0
  24. package/dist/browser/seeders/index.js +20 -0
  25. package/dist/browser/ui/AnalyticsDashboard.js +394 -0
  26. package/dist/browser/ui/hooks/index.js +69 -0
  27. package/dist/browser/ui/hooks/useAnalyticsData.js +66 -0
  28. package/dist/browser/ui/index.js +671 -0
  29. package/dist/browser/ui/renderers/analytics.markdown.js +275 -0
  30. package/dist/browser/ui/renderers/index.js +275 -0
  31. package/dist/dashboard/dashboard.enum.d.ts +3 -8
  32. package/dist/dashboard/dashboard.enum.d.ts.map +1 -1
  33. package/dist/dashboard/dashboard.enum.js +31 -39
  34. package/dist/dashboard/dashboard.operation.d.ts +444 -450
  35. package/dist/dashboard/dashboard.operation.d.ts.map +1 -1
  36. package/dist/dashboard/dashboard.operation.js +284 -207
  37. package/dist/dashboard/dashboard.presentation.d.ts +3 -8
  38. package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
  39. package/dist/dashboard/dashboard.presentation.js +193 -85
  40. package/dist/dashboard/dashboard.schema.d.ts +289 -294
  41. package/dist/dashboard/dashboard.schema.d.ts.map +1 -1
  42. package/dist/dashboard/dashboard.schema.js +119 -228
  43. package/dist/dashboard/dashboard.test-spec.d.ts +4 -9
  44. package/dist/dashboard/dashboard.test-spec.d.ts.map +1 -1
  45. package/dist/dashboard/dashboard.test-spec.js +209 -228
  46. package/dist/dashboard/index.d.ts +7 -4
  47. package/dist/dashboard/index.d.ts.map +1 -0
  48. package/dist/dashboard/index.js +299 -4
  49. package/dist/dashboard.feature.d.ts +1 -6
  50. package/dist/dashboard.feature.d.ts.map +1 -1
  51. package/dist/dashboard.feature.js +83 -175
  52. package/dist/datasource/posthog-datasource.d.ts +15 -19
  53. package/dist/datasource/posthog-datasource.d.ts.map +1 -1
  54. package/dist/datasource/posthog-datasource.js +274 -238
  55. package/dist/docs/analytics-dashboard.docblock.d.ts +2 -1
  56. package/dist/docs/analytics-dashboard.docblock.d.ts.map +1 -0
  57. package/dist/docs/analytics-dashboard.docblock.js +45 -56
  58. package/dist/docs/index.d.ts +2 -1
  59. package/dist/docs/index.d.ts.map +1 -0
  60. package/dist/docs/index.js +104 -1
  61. package/dist/events.d.ts +109 -115
  62. package/dist/events.d.ts.map +1 -1
  63. package/dist/events.js +74 -120
  64. package/dist/example.d.ts +2 -6
  65. package/dist/example.d.ts.map +1 -1
  66. package/dist/example.js +41 -55
  67. package/dist/handlers/analytics.handlers.d.ts +110 -109
  68. package/dist/handlers/analytics.handlers.d.ts.map +1 -1
  69. package/dist/handlers/analytics.handlers.js +267 -298
  70. package/dist/handlers/index.d.ts +3 -3
  71. package/dist/handlers/index.d.ts.map +1 -0
  72. package/dist/handlers/index.js +571 -3
  73. package/dist/handlers/query.handlers.d.ts +7 -11
  74. package/dist/handlers/query.handlers.d.ts.map +1 -1
  75. package/dist/handlers/query.handlers.js +292 -7
  76. package/dist/index.d.ts +12 -13
  77. package/dist/index.d.ts.map +1 -0
  78. package/dist/index.js +1678 -14
  79. package/dist/node/dashboard/dashboard.enum.js +34 -0
  80. package/dist/node/dashboard/dashboard.operation.js +289 -0
  81. package/dist/node/dashboard/dashboard.presentation.js +197 -0
  82. package/dist/node/dashboard/dashboard.schema.js +126 -0
  83. package/dist/node/dashboard/dashboard.test-spec.js +213 -0
  84. package/dist/node/dashboard/index.js +299 -0
  85. package/dist/node/dashboard.feature.js +84 -0
  86. package/dist/node/datasource/posthog-datasource.js +289 -0
  87. package/dist/node/docs/analytics-dashboard.docblock.js +103 -0
  88. package/dist/node/docs/index.js +103 -0
  89. package/dist/node/events.js +81 -0
  90. package/dist/node/example.js +42 -0
  91. package/dist/node/handlers/analytics.handlers.js +278 -0
  92. package/dist/node/handlers/index.js +571 -0
  93. package/dist/node/handlers/query.handlers.js +294 -0
  94. package/dist/node/index.js +1677 -0
  95. package/dist/node/query/index.js +159 -0
  96. package/dist/node/query/query.enum.js +11 -0
  97. package/dist/node/query/query.operation.js +154 -0
  98. package/dist/node/query/query.presentation.js +119 -0
  99. package/dist/node/query/query.schema.js +70 -0
  100. package/dist/node/query/query.test-spec.js +113 -0
  101. package/dist/node/query-engine/index.js +491 -0
  102. package/dist/node/seeders/index.js +20 -0
  103. package/dist/node/ui/AnalyticsDashboard.js +394 -0
  104. package/dist/node/ui/hooks/index.js +69 -0
  105. package/dist/node/ui/hooks/useAnalyticsData.js +66 -0
  106. package/dist/node/ui/index.js +671 -0
  107. package/dist/node/ui/renderers/analytics.markdown.js +275 -0
  108. package/dist/node/ui/renderers/index.js +275 -0
  109. package/dist/query/index.d.ts +7 -4
  110. package/dist/query/index.d.ts.map +1 -0
  111. package/dist/query/index.js +159 -4
  112. package/dist/query/query.enum.d.ts +1 -6
  113. package/dist/query/query.enum.d.ts.map +1 -1
  114. package/dist/query/query.enum.js +10 -14
  115. package/dist/query/query.operation.d.ts +148 -154
  116. package/dist/query/query.operation.d.ts.map +1 -1
  117. package/dist/query/query.operation.js +151 -109
  118. package/dist/query/query.presentation.d.ts +2 -7
  119. package/dist/query/query.presentation.d.ts.map +1 -1
  120. package/dist/query/query.presentation.js +116 -56
  121. package/dist/query/query.schema.d.ts +121 -126
  122. package/dist/query/query.schema.d.ts.map +1 -1
  123. package/dist/query/query.schema.js +66 -152
  124. package/dist/query/query.test-spec.d.ts +2 -7
  125. package/dist/query/query.test-spec.d.ts.map +1 -1
  126. package/dist/query/query.test-spec.js +111 -121
  127. package/dist/query-engine/index.d.ts +84 -88
  128. package/dist/query-engine/index.d.ts.map +1 -1
  129. package/dist/query-engine/index.js +489 -188
  130. package/dist/seeders/index.d.ts +4 -8
  131. package/dist/seeders/index.d.ts.map +1 -1
  132. package/dist/seeders/index.js +18 -16
  133. package/dist/ui/AnalyticsDashboard.d.ts +1 -6
  134. package/dist/ui/AnalyticsDashboard.d.ts.map +1 -1
  135. package/dist/ui/AnalyticsDashboard.js +389 -259
  136. package/dist/ui/hooks/index.d.ts +2 -2
  137. package/dist/ui/hooks/index.d.ts.map +1 -0
  138. package/dist/ui/hooks/index.js +69 -4
  139. package/dist/ui/hooks/useAnalyticsData.d.ts +16 -20
  140. package/dist/ui/hooks/useAnalyticsData.d.ts.map +1 -1
  141. package/dist/ui/hooks/useAnalyticsData.js +63 -69
  142. package/dist/ui/index.d.ts +7 -6
  143. package/dist/ui/index.d.ts.map +1 -0
  144. package/dist/ui/index.js +671 -5
  145. package/dist/ui/renderers/analytics.markdown.d.ts +13 -14
  146. package/dist/ui/renderers/analytics.markdown.d.ts.map +1 -1
  147. package/dist/ui/renderers/analytics.markdown.js +266 -254
  148. package/dist/ui/renderers/index.d.ts +2 -2
  149. package/dist/ui/renderers/index.d.ts.map +1 -0
  150. package/dist/ui/renderers/index.js +275 -2
  151. package/package.json +328 -67
  152. package/dist/dashboard/dashboard.enum.js.map +0 -1
  153. package/dist/dashboard/dashboard.operation.js.map +0 -1
  154. package/dist/dashboard/dashboard.presentation.js.map +0 -1
  155. package/dist/dashboard/dashboard.schema.js.map +0 -1
  156. package/dist/dashboard/dashboard.test-spec.js.map +0 -1
  157. package/dist/dashboard.feature.js.map +0 -1
  158. package/dist/datasource/posthog-datasource.js.map +0 -1
  159. package/dist/docs/analytics-dashboard.docblock.js.map +0 -1
  160. package/dist/events.js.map +0 -1
  161. package/dist/example.js.map +0 -1
  162. package/dist/handlers/analytics.handlers.js.map +0 -1
  163. package/dist/handlers/query.handlers.js.map +0 -1
  164. package/dist/query/query.enum.js.map +0 -1
  165. package/dist/query/query.operation.js.map +0 -1
  166. package/dist/query/query.presentation.js.map +0 -1
  167. package/dist/query/query.schema.js.map +0 -1
  168. package/dist/query/query.test-spec.js.map +0 -1
  169. package/dist/query-engine/index.js.map +0 -1
  170. package/dist/seeders/index.js.map +0 -1
  171. package/dist/ui/AnalyticsDashboard.js.map +0 -1
  172. package/dist/ui/hooks/useAnalyticsData.js.map +0 -1
  173. package/dist/ui/renderers/analytics.markdown.js.map +0 -1
@@ -1,233 +1,214 @@
1
+ // @bun
2
+ // src/dashboard/dashboard.test-spec.ts
1
3
  import { defineTestSpec } from "@contractspec/lib.contracts";
2
-
3
- //#region src/dashboard/dashboard.test-spec.ts
4
- const CreateDashboardTest = defineTestSpec({
5
- meta: {
6
- key: "analytics.dashboard.create.test",
7
- version: "1.0.0",
8
- title: "Create Dashboard Test",
9
- description: "Verifies dashboard creation flow",
10
- owners: ["@example.analytics-dashboard"],
11
- tags: [
12
- "analytics",
13
- "dashboard",
14
- "test"
15
- ],
16
- stability: "stable"
17
- },
18
- target: {
19
- type: "operation",
20
- operation: {
21
- key: "analytics.dashboard.create",
22
- version: "1.0.0"
23
- }
24
- },
25
- scenarios: [{
26
- key: "success",
27
- description: "Successfully create a dashboard",
28
- when: {
29
- operation: {
30
- key: "analytics.dashboard.create",
31
- version: "1.0.0"
32
- },
33
- input: {
34
- name: "Test Dashboard",
35
- description: "Test Description"
36
- }
37
- },
38
- then: [{
39
- type: "expectOutput",
40
- match: { name: "Test Dashboard" }
41
- }]
42
- }, {
43
- key: "error-invalid-input",
44
- description: "Fail to create dashboard with invalid input",
45
- when: {
46
- operation: {
47
- key: "analytics.dashboard.create",
48
- version: "1.0.0"
49
- },
50
- input: { name: "" }
51
- },
52
- then: [{
53
- type: "expectError",
54
- messageIncludes: "VALIDATION_ERROR"
55
- }]
56
- }]
4
+ var CreateDashboardTest = defineTestSpec({
5
+ meta: {
6
+ key: "analytics.dashboard.create.test",
7
+ version: "1.0.0",
8
+ title: "Create Dashboard Test",
9
+ description: "Verifies dashboard creation flow",
10
+ owners: ["@example.analytics-dashboard"],
11
+ tags: ["analytics", "dashboard", "test"],
12
+ stability: "stable"
13
+ },
14
+ target: {
15
+ type: "operation",
16
+ operation: { key: "analytics.dashboard.create", version: "1.0.0" }
17
+ },
18
+ scenarios: [
19
+ {
20
+ key: "success",
21
+ description: "Successfully create a dashboard",
22
+ when: {
23
+ operation: { key: "analytics.dashboard.create", version: "1.0.0" },
24
+ input: {
25
+ name: "Test Dashboard",
26
+ description: "Test Description"
27
+ }
28
+ },
29
+ then: [
30
+ {
31
+ type: "expectOutput",
32
+ match: {
33
+ name: "Test Dashboard"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ {
39
+ key: "error-invalid-input",
40
+ description: "Fail to create dashboard with invalid input",
41
+ when: {
42
+ operation: { key: "analytics.dashboard.create", version: "1.0.0" },
43
+ input: {
44
+ name: ""
45
+ }
46
+ },
47
+ then: [
48
+ {
49
+ type: "expectError",
50
+ messageIncludes: "VALIDATION_ERROR"
51
+ }
52
+ ]
53
+ }
54
+ ]
57
55
  });
58
- const ListDashboardsTest = defineTestSpec({
59
- meta: {
60
- key: "analytics.dashboard.list.test",
61
- version: "1.0.0",
62
- title: "List Dashboards Test",
63
- description: "Verifies dashboard listing",
64
- owners: ["@example.analytics-dashboard"],
65
- tags: [
66
- "analytics",
67
- "dashboard",
68
- "test"
69
- ],
70
- stability: "stable"
71
- },
72
- target: {
73
- type: "operation",
74
- operation: {
75
- key: "analytics.dashboard.list",
76
- version: "1.0.0"
77
- }
78
- },
79
- scenarios: [{
80
- key: "success",
81
- description: "Successfully list dashboards",
82
- when: {
83
- operation: {
84
- key: "analytics.dashboard.list",
85
- version: "1.0.0"
86
- },
87
- input: {
88
- limit: 10,
89
- offset: 0
90
- }
91
- },
92
- then: [{
93
- type: "expectOutput",
94
- match: {
95
- items: [],
96
- total: 0
97
- }
98
- }]
99
- }, {
100
- key: "error-invalid-format",
101
- description: "Fail with invalid pagination",
102
- when: {
103
- operation: {
104
- key: "analytics.dashboard.list",
105
- version: "1.0.0"
106
- },
107
- input: { limit: -1 }
108
- },
109
- then: [{
110
- type: "expectError",
111
- messageIncludes: "VALIDATION_ERROR"
112
- }]
113
- }]
56
+ var ListDashboardsTest = defineTestSpec({
57
+ meta: {
58
+ key: "analytics.dashboard.list.test",
59
+ version: "1.0.0",
60
+ title: "List Dashboards Test",
61
+ description: "Verifies dashboard listing",
62
+ owners: ["@example.analytics-dashboard"],
63
+ tags: ["analytics", "dashboard", "test"],
64
+ stability: "stable"
65
+ },
66
+ target: {
67
+ type: "operation",
68
+ operation: { key: "analytics.dashboard.list", version: "1.0.0" }
69
+ },
70
+ scenarios: [
71
+ {
72
+ key: "success",
73
+ description: "Successfully list dashboards",
74
+ when: {
75
+ operation: { key: "analytics.dashboard.list", version: "1.0.0" },
76
+ input: { limit: 10, offset: 0 }
77
+ },
78
+ then: [
79
+ {
80
+ type: "expectOutput",
81
+ match: {
82
+ items: [],
83
+ total: 0
84
+ }
85
+ }
86
+ ]
87
+ },
88
+ {
89
+ key: "error-invalid-format",
90
+ description: "Fail with invalid pagination",
91
+ when: {
92
+ operation: { key: "analytics.dashboard.list", version: "1.0.0" },
93
+ input: { limit: -1 }
94
+ },
95
+ then: [
96
+ {
97
+ type: "expectError",
98
+ messageIncludes: "VALIDATION_ERROR"
99
+ }
100
+ ]
101
+ }
102
+ ]
114
103
  });
115
- const GetDashboardTest = defineTestSpec({
116
- meta: {
117
- key: "analytics.dashboard.get.test",
118
- version: "1.0.0",
119
- title: "Get Dashboard Test",
120
- description: "Verifies dashboard retrieval",
121
- owners: ["@example.analytics-dashboard"],
122
- tags: [
123
- "analytics",
124
- "dashboard",
125
- "test"
126
- ],
127
- stability: "stable"
128
- },
129
- target: {
130
- type: "operation",
131
- operation: {
132
- key: "analytics.dashboard.get",
133
- version: "1.0.0"
134
- }
135
- },
136
- scenarios: [{
137
- key: "success",
138
- description: "Successfully get dashboard",
139
- when: {
140
- operation: {
141
- key: "analytics.dashboard.get",
142
- version: "1.0.0"
143
- },
144
- input: { dashboardId: "dash-123" }
145
- },
146
- then: [{
147
- type: "expectOutput",
148
- match: { id: "dash-123" }
149
- }]
150
- }, {
151
- key: "error-not-found",
152
- description: "Fail when dashboard not found",
153
- when: {
154
- operation: {
155
- key: "analytics.dashboard.get",
156
- version: "1.0.0"
157
- },
158
- input: { dashboardId: "dash-999" }
159
- },
160
- then: [{
161
- type: "expectError",
162
- messageIncludes: "NOT_FOUND"
163
- }]
164
- }]
104
+ var GetDashboardTest = defineTestSpec({
105
+ meta: {
106
+ key: "analytics.dashboard.get.test",
107
+ version: "1.0.0",
108
+ title: "Get Dashboard Test",
109
+ description: "Verifies dashboard retrieval",
110
+ owners: ["@example.analytics-dashboard"],
111
+ tags: ["analytics", "dashboard", "test"],
112
+ stability: "stable"
113
+ },
114
+ target: {
115
+ type: "operation",
116
+ operation: { key: "analytics.dashboard.get", version: "1.0.0" }
117
+ },
118
+ scenarios: [
119
+ {
120
+ key: "success",
121
+ description: "Successfully get dashboard",
122
+ when: {
123
+ operation: { key: "analytics.dashboard.get", version: "1.0.0" },
124
+ input: { dashboardId: "dash-123" }
125
+ },
126
+ then: [
127
+ {
128
+ type: "expectOutput",
129
+ match: {
130
+ id: "dash-123"
131
+ }
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ key: "error-not-found",
137
+ description: "Fail when dashboard not found",
138
+ when: {
139
+ operation: { key: "analytics.dashboard.get", version: "1.0.0" },
140
+ input: { dashboardId: "dash-999" }
141
+ },
142
+ then: [
143
+ {
144
+ type: "expectError",
145
+ messageIncludes: "NOT_FOUND"
146
+ }
147
+ ]
148
+ }
149
+ ]
165
150
  });
166
- const AddWidgetTest = defineTestSpec({
167
- meta: {
168
- key: "analytics.widget.add.test",
169
- version: "1.0.0",
170
- title: "Add Widget Test",
171
- description: "Verifies adding widget to dashboard",
172
- owners: ["@example.analytics-dashboard"],
173
- tags: [
174
- "analytics",
175
- "widget",
176
- "test"
177
- ],
178
- stability: "stable"
179
- },
180
- target: {
181
- type: "operation",
182
- operation: {
183
- key: "analytics.widget.add",
184
- version: "1.0.0"
185
- }
186
- },
187
- scenarios: [{
188
- key: "success",
189
- description: "Successfully add widget",
190
- when: {
191
- operation: {
192
- key: "analytics.widget.add",
193
- version: "1.0.0"
194
- },
195
- input: {
196
- dashboardId: "dash-123",
197
- type: "chart",
198
- queryId: "q-1",
199
- config: {}
200
- }
201
- },
202
- then: [{
203
- type: "expectOutput",
204
- match: {
205
- type: "chart",
206
- dashboardId: "dash-123"
207
- }
208
- }]
209
- }, {
210
- key: "error-dashboard-not-found",
211
- description: "Fail when dashboard does not exist",
212
- when: {
213
- operation: {
214
- key: "analytics.widget.add",
215
- version: "1.0.0"
216
- },
217
- input: {
218
- dashboardId: "dash-999",
219
- type: "chart",
220
- queryId: "q-1",
221
- config: {}
222
- }
223
- },
224
- then: [{
225
- type: "expectError",
226
- messageIncludes: "NOT_FOUND"
227
- }]
228
- }]
151
+ var AddWidgetTest = defineTestSpec({
152
+ meta: {
153
+ key: "analytics.widget.add.test",
154
+ version: "1.0.0",
155
+ title: "Add Widget Test",
156
+ description: "Verifies adding widget to dashboard",
157
+ owners: ["@example.analytics-dashboard"],
158
+ tags: ["analytics", "widget", "test"],
159
+ stability: "stable"
160
+ },
161
+ target: {
162
+ type: "operation",
163
+ operation: { key: "analytics.widget.add", version: "1.0.0" }
164
+ },
165
+ scenarios: [
166
+ {
167
+ key: "success",
168
+ description: "Successfully add widget",
169
+ when: {
170
+ operation: { key: "analytics.widget.add", version: "1.0.0" },
171
+ input: {
172
+ dashboardId: "dash-123",
173
+ type: "chart",
174
+ queryId: "q-1",
175
+ config: {}
176
+ }
177
+ },
178
+ then: [
179
+ {
180
+ type: "expectOutput",
181
+ match: {
182
+ type: "chart",
183
+ dashboardId: "dash-123"
184
+ }
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ key: "error-dashboard-not-found",
190
+ description: "Fail when dashboard does not exist",
191
+ when: {
192
+ operation: { key: "analytics.widget.add", version: "1.0.0" },
193
+ input: {
194
+ dashboardId: "dash-999",
195
+ type: "chart",
196
+ queryId: "q-1",
197
+ config: {}
198
+ }
199
+ },
200
+ then: [
201
+ {
202
+ type: "expectError",
203
+ messageIncludes: "NOT_FOUND"
204
+ }
205
+ ]
206
+ }
207
+ ]
229
208
  });
230
-
231
- //#endregion
232
- export { AddWidgetTest, CreateDashboardTest, GetDashboardTest, ListDashboardsTest };
233
- //# sourceMappingURL=dashboard.test-spec.js.map
209
+ export {
210
+ ListDashboardsTest,
211
+ GetDashboardTest,
212
+ CreateDashboardTest,
213
+ AddWidgetTest
214
+ };
@@ -1,4 +1,7 @@
1
- import { DashboardStatusEnum, RefreshIntervalEnum, WidgetTypeEnum } from "./dashboard.enum.js";
2
- import { AddWidgetContract, CreateDashboardContract, GetDashboardContract, ListDashboardsContract } from "./dashboard.operation.js";
3
- import { AddWidgetInputModel, CreateDashboardInputModel, DashboardModel, GetDashboardInputModel, ListDashboardsInputModel, ListDashboardsOutputModel, WidgetModel } from "./dashboard.schema.js";
4
- export { AddWidgetContract, AddWidgetInputModel, CreateDashboardContract, CreateDashboardInputModel, DashboardModel, DashboardStatusEnum, GetDashboardContract, GetDashboardInputModel, ListDashboardsContract, ListDashboardsInputModel, ListDashboardsOutputModel, RefreshIntervalEnum, WidgetModel, WidgetTypeEnum };
1
+ /**
2
+ * Dashboard domain - Dashboard and widget management.
3
+ */
4
+ export { DashboardStatusEnum, WidgetTypeEnum, RefreshIntervalEnum, } from './dashboard.enum';
5
+ export { WidgetModel, DashboardModel, CreateDashboardInputModel, AddWidgetInputModel, ListDashboardsInputModel, ListDashboardsOutputModel, GetDashboardInputModel, } from './dashboard.schema';
6
+ export { CreateDashboardContract, AddWidgetContract, ListDashboardsContract, GetDashboardContract, } from './dashboard.operation';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dashboard/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACL,WAAW,EACX,cAAc,EACd,yBAAyB,EACzB,mBAAmB,EACnB,wBAAwB,EACxB,yBAAyB,EACzB,sBAAsB,GACvB,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EACL,uBAAuB,EACvB,iBAAiB,EACjB,sBAAsB,EACtB,oBAAoB,GACrB,MAAM,uBAAuB,CAAC"}