@contractspec/example.analytics-dashboard 0.0.0-canary-20260113170453

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 (98) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +281 -0
  3. package/dist/dashboard/dashboard.enum.d.ts +18 -0
  4. package/dist/dashboard/dashboard.enum.d.ts.map +1 -0
  5. package/dist/dashboard/dashboard.enum.js +43 -0
  6. package/dist/dashboard/dashboard.enum.js.map +1 -0
  7. package/dist/dashboard/dashboard.operation.d.ts +537 -0
  8. package/dist/dashboard/dashboard.operation.d.ts.map +1 -0
  9. package/dist/dashboard/dashboard.operation.js +213 -0
  10. package/dist/dashboard/dashboard.operation.js.map +1 -0
  11. package/dist/dashboard/dashboard.presentation.d.ts +9 -0
  12. package/dist/dashboard/dashboard.presentation.d.ts.map +1 -0
  13. package/dist/dashboard/dashboard.presentation.js +90 -0
  14. package/dist/dashboard/dashboard.presentation.js.map +1 -0
  15. package/dist/dashboard/dashboard.schema.d.ts +333 -0
  16. package/dist/dashboard/dashboard.schema.d.ts.map +1 -0
  17. package/dist/dashboard/dashboard.schema.js +236 -0
  18. package/dist/dashboard/dashboard.schema.js.map +1 -0
  19. package/dist/dashboard/dashboard.test-spec.d.ts +10 -0
  20. package/dist/dashboard/dashboard.test-spec.d.ts.map +1 -0
  21. package/dist/dashboard/dashboard.test-spec.js +233 -0
  22. package/dist/dashboard/dashboard.test-spec.js.map +1 -0
  23. package/dist/dashboard/index.d.ts +4 -0
  24. package/dist/dashboard/index.js +5 -0
  25. package/dist/dashboard.feature.d.ts +17 -0
  26. package/dist/dashboard.feature.d.ts.map +1 -0
  27. package/dist/dashboard.feature.js +177 -0
  28. package/dist/dashboard.feature.js.map +1 -0
  29. package/dist/docs/analytics-dashboard.docblock.d.ts +1 -0
  30. package/dist/docs/analytics-dashboard.docblock.js +114 -0
  31. package/dist/docs/analytics-dashboard.docblock.js.map +1 -0
  32. package/dist/docs/index.d.ts +1 -0
  33. package/dist/docs/index.js +1 -0
  34. package/dist/events.d.ts +149 -0
  35. package/dist/events.d.ts.map +1 -0
  36. package/dist/events.js +128 -0
  37. package/dist/events.js.map +1 -0
  38. package/dist/example.d.ts +7 -0
  39. package/dist/example.d.ts.map +1 -0
  40. package/dist/example.js +58 -0
  41. package/dist/example.js.map +1 -0
  42. package/dist/handlers/analytics.handlers.d.ts +122 -0
  43. package/dist/handlers/analytics.handlers.d.ts.map +1 -0
  44. package/dist/handlers/analytics.handlers.js +310 -0
  45. package/dist/handlers/analytics.handlers.js.map +1 -0
  46. package/dist/handlers/index.d.ts +2 -0
  47. package/dist/handlers/index.js +3 -0
  48. package/dist/index.d.ts +12 -0
  49. package/dist/index.js +13 -0
  50. package/dist/query/index.d.ts +4 -0
  51. package/dist/query/index.js +5 -0
  52. package/dist/query/query.enum.d.ts +10 -0
  53. package/dist/query/query.enum.d.ts.map +1 -0
  54. package/dist/query/query.enum.js +16 -0
  55. package/dist/query/query.enum.js.map +1 -0
  56. package/dist/query/query.operation.d.ts +181 -0
  57. package/dist/query/query.operation.d.ts.map +1 -0
  58. package/dist/query/query.operation.js +113 -0
  59. package/dist/query/query.operation.js.map +1 -0
  60. package/dist/query/query.presentation.d.ts +8 -0
  61. package/dist/query/query.presentation.d.ts.map +1 -0
  62. package/dist/query/query.presentation.js +60 -0
  63. package/dist/query/query.presentation.js.map +1 -0
  64. package/dist/query/query.schema.d.ts +143 -0
  65. package/dist/query/query.schema.d.ts.map +1 -0
  66. package/dist/query/query.schema.js +157 -0
  67. package/dist/query/query.schema.js.map +1 -0
  68. package/dist/query/query.test-spec.d.ts +8 -0
  69. package/dist/query/query.test-spec.d.ts.map +1 -0
  70. package/dist/query/query.test-spec.js +124 -0
  71. package/dist/query/query.test-spec.js.map +1 -0
  72. package/dist/query-engine/index.d.ts +106 -0
  73. package/dist/query-engine/index.d.ts.map +1 -0
  74. package/dist/query-engine/index.js +189 -0
  75. package/dist/query-engine/index.js.map +1 -0
  76. package/dist/seeders/index.d.ts +10 -0
  77. package/dist/seeders/index.d.ts.map +1 -0
  78. package/dist/seeders/index.js +19 -0
  79. package/dist/seeders/index.js.map +1 -0
  80. package/dist/ui/AnalyticsDashboard.d.ts +7 -0
  81. package/dist/ui/AnalyticsDashboard.d.ts.map +1 -0
  82. package/dist/ui/AnalyticsDashboard.js +265 -0
  83. package/dist/ui/AnalyticsDashboard.js.map +1 -0
  84. package/dist/ui/hooks/index.d.ts +2 -0
  85. package/dist/ui/hooks/index.js +5 -0
  86. package/dist/ui/hooks/useAnalyticsData.d.ts +23 -0
  87. package/dist/ui/hooks/useAnalyticsData.d.ts.map +1 -0
  88. package/dist/ui/hooks/useAnalyticsData.js +73 -0
  89. package/dist/ui/hooks/useAnalyticsData.js.map +1 -0
  90. package/dist/ui/index.d.ts +6 -0
  91. package/dist/ui/index.js +6 -0
  92. package/dist/ui/renderers/analytics.markdown.d.ts +28 -0
  93. package/dist/ui/renderers/analytics.markdown.d.ts.map +1 -0
  94. package/dist/ui/renderers/analytics.markdown.js +264 -0
  95. package/dist/ui/renderers/analytics.markdown.js.map +1 -0
  96. package/dist/ui/renderers/index.d.ts +2 -0
  97. package/dist/ui/renderers/index.js +3 -0
  98. package/package.json +101 -0
@@ -0,0 +1,537 @@
1
+ import * as _contractspec_lib_contracts20 from "@contractspec/lib.contracts";
2
+ import * as _contractspec_lib_schema195 from "@contractspec/lib.schema";
3
+
4
+ //#region src/dashboard/dashboard.operation.d.ts
5
+ /**
6
+ * Create a new analytics dashboard.
7
+ */
8
+ declare const CreateDashboardContract: _contractspec_lib_contracts20.OperationSpec<_contractspec_lib_schema195.SchemaModel<{
9
+ name: {
10
+ type: _contractspec_lib_schema195.FieldType<string, string>;
11
+ isOptional: false;
12
+ };
13
+ slug: {
14
+ type: _contractspec_lib_schema195.FieldType<string, string>;
15
+ isOptional: false;
16
+ };
17
+ description: {
18
+ type: _contractspec_lib_schema195.FieldType<string, string>;
19
+ isOptional: true;
20
+ };
21
+ refreshInterval: {
22
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string]>;
23
+ isOptional: true;
24
+ };
25
+ dateRange: {
26
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
27
+ isOptional: true;
28
+ };
29
+ }>, _contractspec_lib_schema195.SchemaModel<{
30
+ id: {
31
+ type: _contractspec_lib_schema195.FieldType<string, string>;
32
+ isOptional: false;
33
+ };
34
+ name: {
35
+ type: _contractspec_lib_schema195.FieldType<string, string>;
36
+ isOptional: false;
37
+ };
38
+ slug: {
39
+ type: _contractspec_lib_schema195.FieldType<string, string>;
40
+ isOptional: false;
41
+ };
42
+ description: {
43
+ type: _contractspec_lib_schema195.FieldType<string, string>;
44
+ isOptional: true;
45
+ };
46
+ status: {
47
+ type: _contractspec_lib_schema195.EnumType<[string, string, string]>;
48
+ isOptional: false;
49
+ };
50
+ refreshInterval: {
51
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string]>;
52
+ isOptional: false;
53
+ };
54
+ isPublic: {
55
+ type: _contractspec_lib_schema195.FieldType<boolean, boolean>;
56
+ isOptional: false;
57
+ };
58
+ widgets: {
59
+ type: _contractspec_lib_schema195.SchemaModel<{
60
+ id: {
61
+ type: _contractspec_lib_schema195.FieldType<string, string>;
62
+ isOptional: false;
63
+ };
64
+ dashboardId: {
65
+ type: _contractspec_lib_schema195.FieldType<string, string>;
66
+ isOptional: false;
67
+ };
68
+ name: {
69
+ type: _contractspec_lib_schema195.FieldType<string, string>;
70
+ isOptional: false;
71
+ };
72
+ type: {
73
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
74
+ isOptional: false;
75
+ };
76
+ gridX: {
77
+ type: _contractspec_lib_schema195.FieldType<number, number>;
78
+ isOptional: false;
79
+ };
80
+ gridY: {
81
+ type: _contractspec_lib_schema195.FieldType<number, number>;
82
+ isOptional: false;
83
+ };
84
+ gridWidth: {
85
+ type: _contractspec_lib_schema195.FieldType<number, number>;
86
+ isOptional: false;
87
+ };
88
+ gridHeight: {
89
+ type: _contractspec_lib_schema195.FieldType<number, number>;
90
+ isOptional: false;
91
+ };
92
+ queryId: {
93
+ type: _contractspec_lib_schema195.FieldType<string, string>;
94
+ isOptional: true;
95
+ };
96
+ config: {
97
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
98
+ isOptional: true;
99
+ };
100
+ }>;
101
+ isArray: true;
102
+ isOptional: true;
103
+ };
104
+ createdAt: {
105
+ type: _contractspec_lib_schema195.FieldType<Date, string>;
106
+ isOptional: false;
107
+ };
108
+ }>, {
109
+ key: string;
110
+ version: string;
111
+ stability: string;
112
+ owners: "@example.analytics-dashboard"[];
113
+ tags: string[];
114
+ when: string;
115
+ payload: _contractspec_lib_schema195.SchemaModel<{
116
+ id: {
117
+ type: _contractspec_lib_schema195.FieldType<string, string>;
118
+ isOptional: false;
119
+ };
120
+ name: {
121
+ type: _contractspec_lib_schema195.FieldType<string, string>;
122
+ isOptional: false;
123
+ };
124
+ slug: {
125
+ type: _contractspec_lib_schema195.FieldType<string, string>;
126
+ isOptional: false;
127
+ };
128
+ description: {
129
+ type: _contractspec_lib_schema195.FieldType<string, string>;
130
+ isOptional: true;
131
+ };
132
+ status: {
133
+ type: _contractspec_lib_schema195.EnumType<[string, string, string]>;
134
+ isOptional: false;
135
+ };
136
+ refreshInterval: {
137
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string]>;
138
+ isOptional: false;
139
+ };
140
+ isPublic: {
141
+ type: _contractspec_lib_schema195.FieldType<boolean, boolean>;
142
+ isOptional: false;
143
+ };
144
+ widgets: {
145
+ type: _contractspec_lib_schema195.SchemaModel<{
146
+ id: {
147
+ type: _contractspec_lib_schema195.FieldType<string, string>;
148
+ isOptional: false;
149
+ };
150
+ dashboardId: {
151
+ type: _contractspec_lib_schema195.FieldType<string, string>;
152
+ isOptional: false;
153
+ };
154
+ name: {
155
+ type: _contractspec_lib_schema195.FieldType<string, string>;
156
+ isOptional: false;
157
+ };
158
+ type: {
159
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
160
+ isOptional: false;
161
+ };
162
+ gridX: {
163
+ type: _contractspec_lib_schema195.FieldType<number, number>;
164
+ isOptional: false;
165
+ };
166
+ gridY: {
167
+ type: _contractspec_lib_schema195.FieldType<number, number>;
168
+ isOptional: false;
169
+ };
170
+ gridWidth: {
171
+ type: _contractspec_lib_schema195.FieldType<number, number>;
172
+ isOptional: false;
173
+ };
174
+ gridHeight: {
175
+ type: _contractspec_lib_schema195.FieldType<number, number>;
176
+ isOptional: false;
177
+ };
178
+ queryId: {
179
+ type: _contractspec_lib_schema195.FieldType<string, string>;
180
+ isOptional: true;
181
+ };
182
+ config: {
183
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
184
+ isOptional: true;
185
+ };
186
+ }>;
187
+ isArray: true;
188
+ isOptional: true;
189
+ };
190
+ createdAt: {
191
+ type: _contractspec_lib_schema195.FieldType<Date, string>;
192
+ isOptional: false;
193
+ };
194
+ }>;
195
+ }[]>;
196
+ /**
197
+ * Add a widget to a dashboard.
198
+ */
199
+ declare const AddWidgetContract: _contractspec_lib_contracts20.OperationSpec<_contractspec_lib_schema195.SchemaModel<{
200
+ dashboardId: {
201
+ type: _contractspec_lib_schema195.FieldType<string, string>;
202
+ isOptional: false;
203
+ };
204
+ name: {
205
+ type: _contractspec_lib_schema195.FieldType<string, string>;
206
+ isOptional: false;
207
+ };
208
+ type: {
209
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
210
+ isOptional: false;
211
+ };
212
+ gridX: {
213
+ type: _contractspec_lib_schema195.FieldType<number, number>;
214
+ isOptional: true;
215
+ };
216
+ gridY: {
217
+ type: _contractspec_lib_schema195.FieldType<number, number>;
218
+ isOptional: true;
219
+ };
220
+ gridWidth: {
221
+ type: _contractspec_lib_schema195.FieldType<number, number>;
222
+ isOptional: true;
223
+ };
224
+ gridHeight: {
225
+ type: _contractspec_lib_schema195.FieldType<number, number>;
226
+ isOptional: true;
227
+ };
228
+ queryId: {
229
+ type: _contractspec_lib_schema195.FieldType<string, string>;
230
+ isOptional: true;
231
+ };
232
+ config: {
233
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
234
+ isOptional: true;
235
+ };
236
+ }>, _contractspec_lib_schema195.SchemaModel<{
237
+ id: {
238
+ type: _contractspec_lib_schema195.FieldType<string, string>;
239
+ isOptional: false;
240
+ };
241
+ dashboardId: {
242
+ type: _contractspec_lib_schema195.FieldType<string, string>;
243
+ isOptional: false;
244
+ };
245
+ name: {
246
+ type: _contractspec_lib_schema195.FieldType<string, string>;
247
+ isOptional: false;
248
+ };
249
+ type: {
250
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
251
+ isOptional: false;
252
+ };
253
+ gridX: {
254
+ type: _contractspec_lib_schema195.FieldType<number, number>;
255
+ isOptional: false;
256
+ };
257
+ gridY: {
258
+ type: _contractspec_lib_schema195.FieldType<number, number>;
259
+ isOptional: false;
260
+ };
261
+ gridWidth: {
262
+ type: _contractspec_lib_schema195.FieldType<number, number>;
263
+ isOptional: false;
264
+ };
265
+ gridHeight: {
266
+ type: _contractspec_lib_schema195.FieldType<number, number>;
267
+ isOptional: false;
268
+ };
269
+ queryId: {
270
+ type: _contractspec_lib_schema195.FieldType<string, string>;
271
+ isOptional: true;
272
+ };
273
+ config: {
274
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
275
+ isOptional: true;
276
+ };
277
+ }>, {
278
+ key: string;
279
+ version: string;
280
+ stability: string;
281
+ owners: "@example.analytics-dashboard"[];
282
+ tags: string[];
283
+ when: string;
284
+ payload: _contractspec_lib_schema195.SchemaModel<{
285
+ id: {
286
+ type: _contractspec_lib_schema195.FieldType<string, string>;
287
+ isOptional: false;
288
+ };
289
+ dashboardId: {
290
+ type: _contractspec_lib_schema195.FieldType<string, string>;
291
+ isOptional: false;
292
+ };
293
+ name: {
294
+ type: _contractspec_lib_schema195.FieldType<string, string>;
295
+ isOptional: false;
296
+ };
297
+ type: {
298
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
299
+ isOptional: false;
300
+ };
301
+ gridX: {
302
+ type: _contractspec_lib_schema195.FieldType<number, number>;
303
+ isOptional: false;
304
+ };
305
+ gridY: {
306
+ type: _contractspec_lib_schema195.FieldType<number, number>;
307
+ isOptional: false;
308
+ };
309
+ gridWidth: {
310
+ type: _contractspec_lib_schema195.FieldType<number, number>;
311
+ isOptional: false;
312
+ };
313
+ gridHeight: {
314
+ type: _contractspec_lib_schema195.FieldType<number, number>;
315
+ isOptional: false;
316
+ };
317
+ queryId: {
318
+ type: _contractspec_lib_schema195.FieldType<string, string>;
319
+ isOptional: true;
320
+ };
321
+ config: {
322
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
323
+ isOptional: true;
324
+ };
325
+ }>;
326
+ }[]>;
327
+ /**
328
+ * List dashboards.
329
+ */
330
+ declare const ListDashboardsContract: _contractspec_lib_contracts20.OperationSpec<_contractspec_lib_schema195.SchemaModel<{
331
+ status: {
332
+ type: _contractspec_lib_schema195.EnumType<[string, string, string]>;
333
+ isOptional: true;
334
+ };
335
+ search: {
336
+ type: _contractspec_lib_schema195.FieldType<string, string>;
337
+ isOptional: true;
338
+ };
339
+ limit: {
340
+ type: _contractspec_lib_schema195.FieldType<number, number>;
341
+ isOptional: true;
342
+ defaultValue: number;
343
+ };
344
+ offset: {
345
+ type: _contractspec_lib_schema195.FieldType<number, number>;
346
+ isOptional: true;
347
+ defaultValue: number;
348
+ };
349
+ }>, _contractspec_lib_schema195.SchemaModel<{
350
+ dashboards: {
351
+ type: _contractspec_lib_schema195.SchemaModel<{
352
+ id: {
353
+ type: _contractspec_lib_schema195.FieldType<string, string>;
354
+ isOptional: false;
355
+ };
356
+ name: {
357
+ type: _contractspec_lib_schema195.FieldType<string, string>;
358
+ isOptional: false;
359
+ };
360
+ slug: {
361
+ type: _contractspec_lib_schema195.FieldType<string, string>;
362
+ isOptional: false;
363
+ };
364
+ description: {
365
+ type: _contractspec_lib_schema195.FieldType<string, string>;
366
+ isOptional: true;
367
+ };
368
+ status: {
369
+ type: _contractspec_lib_schema195.EnumType<[string, string, string]>;
370
+ isOptional: false;
371
+ };
372
+ refreshInterval: {
373
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string]>;
374
+ isOptional: false;
375
+ };
376
+ isPublic: {
377
+ type: _contractspec_lib_schema195.FieldType<boolean, boolean>;
378
+ isOptional: false;
379
+ };
380
+ widgets: {
381
+ type: _contractspec_lib_schema195.SchemaModel<{
382
+ id: {
383
+ type: _contractspec_lib_schema195.FieldType<string, string>;
384
+ isOptional: false;
385
+ };
386
+ dashboardId: {
387
+ type: _contractspec_lib_schema195.FieldType<string, string>;
388
+ isOptional: false;
389
+ };
390
+ name: {
391
+ type: _contractspec_lib_schema195.FieldType<string, string>;
392
+ isOptional: false;
393
+ };
394
+ type: {
395
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
396
+ isOptional: false;
397
+ };
398
+ gridX: {
399
+ type: _contractspec_lib_schema195.FieldType<number, number>;
400
+ isOptional: false;
401
+ };
402
+ gridY: {
403
+ type: _contractspec_lib_schema195.FieldType<number, number>;
404
+ isOptional: false;
405
+ };
406
+ gridWidth: {
407
+ type: _contractspec_lib_schema195.FieldType<number, number>;
408
+ isOptional: false;
409
+ };
410
+ gridHeight: {
411
+ type: _contractspec_lib_schema195.FieldType<number, number>;
412
+ isOptional: false;
413
+ };
414
+ queryId: {
415
+ type: _contractspec_lib_schema195.FieldType<string, string>;
416
+ isOptional: true;
417
+ };
418
+ config: {
419
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
420
+ isOptional: true;
421
+ };
422
+ }>;
423
+ isArray: true;
424
+ isOptional: true;
425
+ };
426
+ createdAt: {
427
+ type: _contractspec_lib_schema195.FieldType<Date, string>;
428
+ isOptional: false;
429
+ };
430
+ }>;
431
+ isArray: true;
432
+ isOptional: false;
433
+ };
434
+ total: {
435
+ type: _contractspec_lib_schema195.FieldType<number, number>;
436
+ isOptional: false;
437
+ };
438
+ }>, undefined>;
439
+ /**
440
+ * Get a dashboard with widgets.
441
+ */
442
+ declare const GetDashboardContract: _contractspec_lib_contracts20.OperationSpec<_contractspec_lib_schema195.SchemaModel<{
443
+ dashboardId: {
444
+ type: _contractspec_lib_schema195.FieldType<string, string>;
445
+ isOptional: true;
446
+ };
447
+ slug: {
448
+ type: _contractspec_lib_schema195.FieldType<string, string>;
449
+ isOptional: true;
450
+ };
451
+ shareToken: {
452
+ type: _contractspec_lib_schema195.FieldType<string, string>;
453
+ isOptional: true;
454
+ };
455
+ }>, _contractspec_lib_schema195.SchemaModel<{
456
+ id: {
457
+ type: _contractspec_lib_schema195.FieldType<string, string>;
458
+ isOptional: false;
459
+ };
460
+ name: {
461
+ type: _contractspec_lib_schema195.FieldType<string, string>;
462
+ isOptional: false;
463
+ };
464
+ slug: {
465
+ type: _contractspec_lib_schema195.FieldType<string, string>;
466
+ isOptional: false;
467
+ };
468
+ description: {
469
+ type: _contractspec_lib_schema195.FieldType<string, string>;
470
+ isOptional: true;
471
+ };
472
+ status: {
473
+ type: _contractspec_lib_schema195.EnumType<[string, string, string]>;
474
+ isOptional: false;
475
+ };
476
+ refreshInterval: {
477
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string]>;
478
+ isOptional: false;
479
+ };
480
+ isPublic: {
481
+ type: _contractspec_lib_schema195.FieldType<boolean, boolean>;
482
+ isOptional: false;
483
+ };
484
+ widgets: {
485
+ type: _contractspec_lib_schema195.SchemaModel<{
486
+ id: {
487
+ type: _contractspec_lib_schema195.FieldType<string, string>;
488
+ isOptional: false;
489
+ };
490
+ dashboardId: {
491
+ type: _contractspec_lib_schema195.FieldType<string, string>;
492
+ isOptional: false;
493
+ };
494
+ name: {
495
+ type: _contractspec_lib_schema195.FieldType<string, string>;
496
+ isOptional: false;
497
+ };
498
+ type: {
499
+ type: _contractspec_lib_schema195.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
500
+ isOptional: false;
501
+ };
502
+ gridX: {
503
+ type: _contractspec_lib_schema195.FieldType<number, number>;
504
+ isOptional: false;
505
+ };
506
+ gridY: {
507
+ type: _contractspec_lib_schema195.FieldType<number, number>;
508
+ isOptional: false;
509
+ };
510
+ gridWidth: {
511
+ type: _contractspec_lib_schema195.FieldType<number, number>;
512
+ isOptional: false;
513
+ };
514
+ gridHeight: {
515
+ type: _contractspec_lib_schema195.FieldType<number, number>;
516
+ isOptional: false;
517
+ };
518
+ queryId: {
519
+ type: _contractspec_lib_schema195.FieldType<string, string>;
520
+ isOptional: true;
521
+ };
522
+ config: {
523
+ type: _contractspec_lib_schema195.FieldType<unknown, unknown>;
524
+ isOptional: true;
525
+ };
526
+ }>;
527
+ isArray: true;
528
+ isOptional: true;
529
+ };
530
+ createdAt: {
531
+ type: _contractspec_lib_schema195.FieldType<Date, string>;
532
+ isOptional: false;
533
+ };
534
+ }>, undefined>;
535
+ //#endregion
536
+ export { AddWidgetContract, CreateDashboardContract, GetDashboardContract, ListDashboardsContract };
537
+ //# sourceMappingURL=dashboard.operation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dashboard.operation.d.ts","names":[],"sources":["../../src/dashboard/dashboard.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAmBa,uDAAuB,0CAAA;EAAvB,IAAA,EAAA;IA+CX,IAAA,EAAA,2BAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;EA/CkC,CAAA;;;;;;;;;;;;;;;UAAA,2BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,IAAA,yCAAA,CAAA;MAoDvB,EAAA,EAAA;QAgDX,IAAA,uCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;yBAhD4B;MAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;mDAAA,CAAA,MAAA,EAAA,MAAA,CAAA;QAAA,UAAA,EAAA,IAAA;MAqDjB,CAAA;MA8BX,MAAA,EAAA;;;;;IA9BiC,OAAA,EAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;MAAA,IAAA,uCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;MAmCtB,UAAA,EAAA,KA8BX;IAAA,CAAA;;;;IA9B+B,CAAA;;;;;;;;;;;;;;;;;;;;;sBAAA,KAAA;QAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAxFpB,iDAAiB,0CAAA;;UAgD5B,2BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAhD4B,2BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqDjB,sDAAsB,0CAAA;;UA8BjC,2BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;cA9BiC,2BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCtB,oDAAoB,0CAAA;;UA8B/B,2BAAA,CAAA;;;;;;;;;;;;;UA9B+B,2BAAA,CAAA"}