@lssm/example.analytics-dashboard 0.0.0-canary-20251217060834 → 0.0.0-canary-20251217063201

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 (138) hide show
  1. package/dist/dashboard/dashboard.contracts.d.ts +131 -131
  2. package/dist/dashboard/dashboard.contracts.js +5 -5
  3. package/dist/dashboard/dashboard.enum.d.ts +4 -4
  4. package/dist/dashboard/dashboard.enum.js +5 -4
  5. package/dist/dashboard/dashboard.schema.d.ts +79 -79
  6. package/dist/dashboard/dashboard.schema.js +44 -42
  7. package/dist/docs/analytics-dashboard.docblock.js +3 -2
  8. package/dist/events.d.ts +40 -40
  9. package/dist/events.js +27 -24
  10. package/dist/index.d.ts +0 -1
  11. package/dist/libs/contracts/dist/capabilities/openbanking.js +84 -0
  12. package/dist/libs/contracts/dist/client/index.js +5 -0
  13. package/dist/libs/contracts/dist/client/react/feature-render.js +2 -0
  14. package/dist/libs/contracts/dist/client/react/form-render.js +4 -0
  15. package/dist/libs/contracts/dist/client/react/index.js +4 -0
  16. package/dist/libs/contracts/dist/contract-registry/index.js +1 -0
  17. package/dist/libs/contracts/dist/contract-registry/schemas.js +57 -0
  18. package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +91 -0
  19. package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +365 -0
  20. package/dist/libs/contracts/dist/docs/index.js +29 -0
  21. package/dist/libs/contracts/dist/docs/presentations.js +67 -0
  22. package/dist/libs/contracts/dist/docs/registry.js +42 -0
  23. package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +398 -0
  24. package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +83 -0
  25. package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +155 -0
  26. package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +101 -0
  27. package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -0
  28. package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +80 -0
  29. package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +57 -0
  30. package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +228 -0
  31. package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +357 -0
  32. package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +21 -0
  33. package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -0
  34. package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +281 -0
  35. package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +22 -0
  36. package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +79 -0
  37. package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +84 -0
  38. package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +57 -0
  39. package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +22 -0
  40. package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +40 -0
  41. package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +86 -0
  42. package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +22 -0
  43. package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +62 -0
  44. package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +155 -0
  45. package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -0
  46. package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +101 -0
  47. package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -0
  48. package/dist/libs/contracts/dist/events.js +9 -0
  49. package/dist/libs/contracts/dist/experiments/evaluator.js +1 -0
  50. package/dist/libs/contracts/dist/index.js +71 -0
  51. package/dist/libs/contracts/dist/install.js +2 -0
  52. package/dist/libs/contracts/dist/integrations/contracts.js +371 -0
  53. package/dist/libs/contracts/dist/integrations/index.js +18 -0
  54. package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +225 -0
  55. package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +157 -0
  56. package/dist/libs/contracts/dist/integrations/openbanking/contracts/index.js +3 -0
  57. package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +208 -0
  58. package/dist/libs/contracts/dist/integrations/openbanking/models.js +240 -0
  59. package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +24 -0
  60. package/dist/libs/contracts/dist/integrations/providers/elevenlabs.js +52 -0
  61. package/dist/libs/contracts/dist/integrations/providers/gcs-storage.js +75 -0
  62. package/dist/libs/contracts/dist/integrations/providers/gmail.js +87 -0
  63. package/dist/libs/contracts/dist/integrations/providers/google-calendar.js +66 -0
  64. package/dist/libs/contracts/dist/integrations/providers/index.js +11 -0
  65. package/dist/libs/contracts/dist/integrations/providers/mistral.js +68 -0
  66. package/dist/libs/contracts/dist/integrations/providers/postmark.js +68 -0
  67. package/dist/libs/contracts/dist/integrations/providers/powens.js +116 -0
  68. package/dist/libs/contracts/dist/integrations/providers/qdrant.js +73 -0
  69. package/dist/libs/contracts/dist/integrations/providers/registry.js +10 -0
  70. package/dist/libs/contracts/dist/integrations/providers/stripe.js +83 -0
  71. package/dist/libs/contracts/dist/integrations/providers/twilio-sms.js +61 -0
  72. package/dist/libs/contracts/dist/jsonschema.js +1 -0
  73. package/dist/libs/contracts/dist/knowledge/contracts.js +299 -0
  74. package/dist/libs/contracts/dist/knowledge/index.js +7 -0
  75. package/dist/libs/contracts/dist/knowledge/spaces/email-threads.js +34 -0
  76. package/dist/libs/contracts/dist/knowledge/spaces/financial-docs.js +34 -0
  77. package/dist/libs/contracts/dist/knowledge/spaces/financial-overview.js +38 -0
  78. package/dist/libs/contracts/dist/knowledge/spaces/index.js +6 -0
  79. package/dist/libs/contracts/dist/knowledge/spaces/product-canon.js +34 -0
  80. package/dist/libs/contracts/dist/knowledge/spaces/support-faq.js +37 -0
  81. package/dist/libs/contracts/dist/knowledge/spaces/uploaded-docs.js +34 -0
  82. package/dist/libs/contracts/dist/llm/exporters.js +18 -0
  83. package/dist/libs/contracts/dist/llm/index.js +2 -0
  84. package/dist/libs/contracts/dist/llm/prompts.js +1 -0
  85. package/dist/libs/contracts/dist/onboarding-base.js +179 -0
  86. package/dist/libs/contracts/dist/openapi.js +1 -0
  87. package/dist/libs/contracts/dist/ownership.js +36 -0
  88. package/dist/libs/contracts/dist/presentations.js +1 -0
  89. package/dist/libs/contracts/dist/presentations.v2.js +7 -0
  90. package/dist/libs/contracts/dist/prompt.js +1 -0
  91. package/dist/libs/contracts/dist/promptRegistry.js +1 -0
  92. package/dist/libs/contracts/dist/regenerator/index.js +1 -0
  93. package/dist/libs/contracts/dist/regenerator/service.js +1 -0
  94. package/dist/libs/contracts/dist/registry.js +2 -0
  95. package/dist/libs/contracts/dist/resources.js +1 -0
  96. package/dist/libs/contracts/dist/schema/dist/EnumType.js +2 -0
  97. package/dist/libs/contracts/dist/schema/dist/FieldType.js +39 -0
  98. package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +222 -0
  99. package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +23 -0
  100. package/dist/libs/contracts/dist/schema/dist/entity/defineEntity.js +1 -0
  101. package/dist/libs/contracts/dist/schema/dist/entity/index.js +2 -0
  102. package/dist/libs/contracts/dist/schema/dist/entity/types.js +1 -0
  103. package/dist/libs/contracts/dist/schema/dist/index.js +6 -0
  104. package/dist/libs/contracts/dist/server/graphql-pothos.js +6 -0
  105. package/dist/libs/contracts/dist/server/index.js +8 -0
  106. package/dist/libs/contracts/dist/server/mcp/createMcpServer.js +4 -0
  107. package/dist/libs/contracts/dist/server/mcp/registerPresentations.js +2 -0
  108. package/dist/libs/contracts/dist/server/mcp/registerPrompts.js +1 -0
  109. package/dist/libs/contracts/dist/server/mcp/registerResources.js +2 -0
  110. package/dist/libs/contracts/dist/server/mcp/registerTools.js +1 -0
  111. package/dist/libs/contracts/dist/server/provider-mcp.js +1 -0
  112. package/dist/libs/contracts/dist/server/rest-elysia.js +1 -0
  113. package/dist/libs/contracts/dist/server/rest-express.js +1 -0
  114. package/dist/libs/contracts/dist/server/rest-generic.js +1 -0
  115. package/dist/libs/contracts/dist/server/rest-next-app.js +1 -0
  116. package/dist/libs/contracts/dist/server/rest-next-pages.js +1 -0
  117. package/dist/libs/contracts/dist/spec.js +25 -0
  118. package/dist/libs/contracts/dist/telemetry/index.js +1 -0
  119. package/dist/libs/contracts/dist/telemetry/tracker.js +1 -0
  120. package/dist/libs/contracts/dist/tests/index.js +1 -0
  121. package/dist/libs/contracts/dist/tests/runner.js +2 -0
  122. package/dist/libs/contracts/dist/workflow/index.js +1 -0
  123. package/dist/libs/contracts/dist/workflow/runner.js +1 -0
  124. package/dist/libs/schema/dist/EnumType.js +40 -0
  125. package/dist/libs/schema/dist/FieldType.js +39 -0
  126. package/dist/libs/schema/dist/ScalarTypeEnum.js +222 -0
  127. package/dist/libs/schema/dist/SchemaModel.js +24 -0
  128. package/dist/libs/schema/dist/entity/defineEntity.js +1 -0
  129. package/dist/libs/schema/dist/entity/index.js +2 -0
  130. package/dist/libs/schema/dist/entity/types.js +1 -0
  131. package/dist/libs/schema/dist/index.js +6 -0
  132. package/dist/query/query.contracts.d.ts +44 -44
  133. package/dist/query/query.contracts.js +3 -3
  134. package/dist/query/query.enum.d.ts +2 -2
  135. package/dist/query/query.enum.js +3 -2
  136. package/dist/query/query.schema.d.ts +34 -34
  137. package/dist/query/query.schema.js +34 -32
  138. package/package.json +10 -10
@@ -1,12 +1,12 @@
1
+ import { n, t } from "../libs/contracts/dist/spec.js";
1
2
  import { AddWidgetInputModel, CreateDashboardInputModel, DashboardModel, GetDashboardInputModel, ListDashboardsInputModel, ListDashboardsOutputModel, WidgetModel } from "./dashboard.schema.js";
2
- import { defineCommand, defineQuery } from "@lssm/lib.contracts/spec";
3
3
 
4
4
  //#region src/dashboard/dashboard.contracts.ts
5
5
  const OWNERS = ["@example.analytics-dashboard"];
6
6
  /**
7
7
  * Create a new analytics dashboard.
8
8
  */
9
- const CreateDashboardContract = defineCommand({
9
+ const CreateDashboardContract = t({
10
10
  meta: {
11
11
  name: "analytics.dashboard.create",
12
12
  version: 1,
@@ -39,7 +39,7 @@ const CreateDashboardContract = defineCommand({
39
39
  /**
40
40
  * Add a widget to a dashboard.
41
41
  */
42
- const AddWidgetContract = defineCommand({
42
+ const AddWidgetContract = t({
43
43
  meta: {
44
44
  name: "analytics.widget.add",
45
45
  version: 1,
@@ -69,7 +69,7 @@ const AddWidgetContract = defineCommand({
69
69
  /**
70
70
  * List dashboards.
71
71
  */
72
- const ListDashboardsContract = defineQuery({
72
+ const ListDashboardsContract = n({
73
73
  meta: {
74
74
  name: "analytics.dashboard.list",
75
75
  version: 1,
@@ -93,7 +93,7 @@ const ListDashboardsContract = defineQuery({
93
93
  /**
94
94
  * Get a dashboard with widgets.
95
95
  */
96
- const GetDashboardContract = defineQuery({
96
+ const GetDashboardContract = n({
97
97
  meta: {
98
98
  name: "analytics.dashboard.get",
99
99
  version: 1,
@@ -1,17 +1,17 @@
1
- import * as _lssm_lib_schema278 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema128 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/dashboard/dashboard.enum.d.ts
4
4
  /**
5
5
  * Dashboard status enum.
6
6
  */
7
- declare const DashboardStatusEnum: _lssm_lib_schema278.EnumType<[string, string, string]>;
7
+ declare const DashboardStatusEnum: _lssm_lib_schema128.EnumType<[string, string, string]>;
8
8
  /**
9
9
  * Widget type enum.
10
10
  */
11
- declare const WidgetTypeEnum: _lssm_lib_schema278.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
11
+ declare const WidgetTypeEnum: _lssm_lib_schema128.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
12
12
  /**
13
13
  * Refresh interval enum.
14
14
  */
15
- declare const RefreshIntervalEnum: _lssm_lib_schema278.EnumType<[string, string, string, string, string, string]>;
15
+ declare const RefreshIntervalEnum: _lssm_lib_schema128.EnumType<[string, string, string, string, string, string]>;
16
16
  //#endregion
17
17
  export { DashboardStatusEnum, RefreshIntervalEnum, WidgetTypeEnum };
@@ -1,10 +1,11 @@
1
- import { defineEnum } from "@lssm/lib.schema";
1
+ import { r } from "../libs/schema/dist/EnumType.js";
2
+ import "../libs/schema/dist/index.js";
2
3
 
3
4
  //#region src/dashboard/dashboard.enum.ts
4
5
  /**
5
6
  * Dashboard status enum.
6
7
  */
7
- const DashboardStatusEnum = defineEnum("DashboardStatus", [
8
+ const DashboardStatusEnum = r("DashboardStatus", [
8
9
  "DRAFT",
9
10
  "PUBLISHED",
10
11
  "ARCHIVED"
@@ -12,7 +13,7 @@ const DashboardStatusEnum = defineEnum("DashboardStatus", [
12
13
  /**
13
14
  * Widget type enum.
14
15
  */
15
- const WidgetTypeEnum = defineEnum("WidgetType", [
16
+ const WidgetTypeEnum = r("WidgetType", [
16
17
  "LINE_CHART",
17
18
  "BAR_CHART",
18
19
  "PIE_CHART",
@@ -29,7 +30,7 @@ const WidgetTypeEnum = defineEnum("WidgetType", [
29
30
  /**
30
31
  * Refresh interval enum.
31
32
  */
32
- const RefreshIntervalEnum = defineEnum("RefreshInterval", [
33
+ const RefreshIntervalEnum = r("RefreshInterval", [
33
34
  "NONE",
34
35
  "MINUTE",
35
36
  "FIVE_MINUTES",
@@ -1,123 +1,123 @@
1
- import * as _lssm_lib_schema200 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema212 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/dashboard/dashboard.schema.d.ts
4
4
  /**
5
5
  * A dashboard widget.
6
6
  */
7
- declare const WidgetModel: _lssm_lib_schema200.SchemaModel<{
7
+ declare const WidgetModel: _lssm_lib_schema212.SchemaModel<{
8
8
  id: {
9
- type: _lssm_lib_schema200.FieldType<string, string>;
9
+ type: _lssm_lib_schema212.FieldType<string, string>;
10
10
  isOptional: false;
11
11
  };
12
12
  dashboardId: {
13
- type: _lssm_lib_schema200.FieldType<string, string>;
13
+ type: _lssm_lib_schema212.FieldType<string, string>;
14
14
  isOptional: false;
15
15
  };
16
16
  name: {
17
- type: _lssm_lib_schema200.FieldType<string, string>;
17
+ type: _lssm_lib_schema212.FieldType<string, string>;
18
18
  isOptional: false;
19
19
  };
20
20
  type: {
21
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
21
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
22
22
  isOptional: false;
23
23
  };
24
24
  gridX: {
25
- type: _lssm_lib_schema200.FieldType<number, number>;
25
+ type: _lssm_lib_schema212.FieldType<number, number>;
26
26
  isOptional: false;
27
27
  };
28
28
  gridY: {
29
- type: _lssm_lib_schema200.FieldType<number, number>;
29
+ type: _lssm_lib_schema212.FieldType<number, number>;
30
30
  isOptional: false;
31
31
  };
32
32
  gridWidth: {
33
- type: _lssm_lib_schema200.FieldType<number, number>;
33
+ type: _lssm_lib_schema212.FieldType<number, number>;
34
34
  isOptional: false;
35
35
  };
36
36
  gridHeight: {
37
- type: _lssm_lib_schema200.FieldType<number, number>;
37
+ type: _lssm_lib_schema212.FieldType<number, number>;
38
38
  isOptional: false;
39
39
  };
40
40
  queryId: {
41
- type: _lssm_lib_schema200.FieldType<string, string>;
41
+ type: _lssm_lib_schema212.FieldType<string, string>;
42
42
  isOptional: true;
43
43
  };
44
44
  config: {
45
- type: _lssm_lib_schema200.FieldType<unknown, unknown>;
45
+ type: _lssm_lib_schema212.FieldType<unknown, unknown>;
46
46
  isOptional: true;
47
47
  };
48
48
  }>;
49
49
  /**
50
50
  * An analytics dashboard.
51
51
  */
52
- declare const DashboardModel: _lssm_lib_schema200.SchemaModel<{
52
+ declare const DashboardModel: _lssm_lib_schema212.SchemaModel<{
53
53
  id: {
54
- type: _lssm_lib_schema200.FieldType<string, string>;
54
+ type: _lssm_lib_schema212.FieldType<string, string>;
55
55
  isOptional: false;
56
56
  };
57
57
  name: {
58
- type: _lssm_lib_schema200.FieldType<string, string>;
58
+ type: _lssm_lib_schema212.FieldType<string, string>;
59
59
  isOptional: false;
60
60
  };
61
61
  slug: {
62
- type: _lssm_lib_schema200.FieldType<string, string>;
62
+ type: _lssm_lib_schema212.FieldType<string, string>;
63
63
  isOptional: false;
64
64
  };
65
65
  description: {
66
- type: _lssm_lib_schema200.FieldType<string, string>;
66
+ type: _lssm_lib_schema212.FieldType<string, string>;
67
67
  isOptional: true;
68
68
  };
69
69
  status: {
70
- type: _lssm_lib_schema200.EnumType<[string, string, string]>;
70
+ type: _lssm_lib_schema212.EnumType<[string, string, string]>;
71
71
  isOptional: false;
72
72
  };
73
73
  refreshInterval: {
74
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string]>;
74
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string]>;
75
75
  isOptional: false;
76
76
  };
77
77
  isPublic: {
78
- type: _lssm_lib_schema200.FieldType<boolean, boolean>;
78
+ type: _lssm_lib_schema212.FieldType<boolean, boolean>;
79
79
  isOptional: false;
80
80
  };
81
81
  widgets: {
82
- type: _lssm_lib_schema200.SchemaModel<{
82
+ type: _lssm_lib_schema212.SchemaModel<{
83
83
  id: {
84
- type: _lssm_lib_schema200.FieldType<string, string>;
84
+ type: _lssm_lib_schema212.FieldType<string, string>;
85
85
  isOptional: false;
86
86
  };
87
87
  dashboardId: {
88
- type: _lssm_lib_schema200.FieldType<string, string>;
88
+ type: _lssm_lib_schema212.FieldType<string, string>;
89
89
  isOptional: false;
90
90
  };
91
91
  name: {
92
- type: _lssm_lib_schema200.FieldType<string, string>;
92
+ type: _lssm_lib_schema212.FieldType<string, string>;
93
93
  isOptional: false;
94
94
  };
95
95
  type: {
96
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
96
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
97
97
  isOptional: false;
98
98
  };
99
99
  gridX: {
100
- type: _lssm_lib_schema200.FieldType<number, number>;
100
+ type: _lssm_lib_schema212.FieldType<number, number>;
101
101
  isOptional: false;
102
102
  };
103
103
  gridY: {
104
- type: _lssm_lib_schema200.FieldType<number, number>;
104
+ type: _lssm_lib_schema212.FieldType<number, number>;
105
105
  isOptional: false;
106
106
  };
107
107
  gridWidth: {
108
- type: _lssm_lib_schema200.FieldType<number, number>;
108
+ type: _lssm_lib_schema212.FieldType<number, number>;
109
109
  isOptional: false;
110
110
  };
111
111
  gridHeight: {
112
- type: _lssm_lib_schema200.FieldType<number, number>;
112
+ type: _lssm_lib_schema212.FieldType<number, number>;
113
113
  isOptional: false;
114
114
  };
115
115
  queryId: {
116
- type: _lssm_lib_schema200.FieldType<string, string>;
116
+ type: _lssm_lib_schema212.FieldType<string, string>;
117
117
  isOptional: true;
118
118
  };
119
119
  config: {
120
- type: _lssm_lib_schema200.FieldType<unknown, unknown>;
120
+ type: _lssm_lib_schema212.FieldType<unknown, unknown>;
121
121
  isOptional: true;
122
122
  };
123
123
  }>;
@@ -125,95 +125,95 @@ declare const DashboardModel: _lssm_lib_schema200.SchemaModel<{
125
125
  isOptional: true;
126
126
  };
127
127
  createdAt: {
128
- type: _lssm_lib_schema200.FieldType<Date, string>;
128
+ type: _lssm_lib_schema212.FieldType<Date, string>;
129
129
  isOptional: false;
130
130
  };
131
131
  }>;
132
132
  /**
133
133
  * Input for creating a dashboard.
134
134
  */
135
- declare const CreateDashboardInputModel: _lssm_lib_schema200.SchemaModel<{
135
+ declare const CreateDashboardInputModel: _lssm_lib_schema212.SchemaModel<{
136
136
  name: {
137
- type: _lssm_lib_schema200.FieldType<string, string>;
137
+ type: _lssm_lib_schema212.FieldType<string, string>;
138
138
  isOptional: false;
139
139
  };
140
140
  slug: {
141
- type: _lssm_lib_schema200.FieldType<string, string>;
141
+ type: _lssm_lib_schema212.FieldType<string, string>;
142
142
  isOptional: false;
143
143
  };
144
144
  description: {
145
- type: _lssm_lib_schema200.FieldType<string, string>;
145
+ type: _lssm_lib_schema212.FieldType<string, string>;
146
146
  isOptional: true;
147
147
  };
148
148
  refreshInterval: {
149
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string]>;
149
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string]>;
150
150
  isOptional: true;
151
151
  };
152
152
  dateRange: {
153
- type: _lssm_lib_schema200.FieldType<unknown, unknown>;
153
+ type: _lssm_lib_schema212.FieldType<unknown, unknown>;
154
154
  isOptional: true;
155
155
  };
156
156
  }>;
157
157
  /**
158
158
  * Input for adding a widget.
159
159
  */
160
- declare const AddWidgetInputModel: _lssm_lib_schema200.SchemaModel<{
160
+ declare const AddWidgetInputModel: _lssm_lib_schema212.SchemaModel<{
161
161
  dashboardId: {
162
- type: _lssm_lib_schema200.FieldType<string, string>;
162
+ type: _lssm_lib_schema212.FieldType<string, string>;
163
163
  isOptional: false;
164
164
  };
165
165
  name: {
166
- type: _lssm_lib_schema200.FieldType<string, string>;
166
+ type: _lssm_lib_schema212.FieldType<string, string>;
167
167
  isOptional: false;
168
168
  };
169
169
  type: {
170
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
170
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
171
171
  isOptional: false;
172
172
  };
173
173
  gridX: {
174
- type: _lssm_lib_schema200.FieldType<number, number>;
174
+ type: _lssm_lib_schema212.FieldType<number, number>;
175
175
  isOptional: true;
176
176
  };
177
177
  gridY: {
178
- type: _lssm_lib_schema200.FieldType<number, number>;
178
+ type: _lssm_lib_schema212.FieldType<number, number>;
179
179
  isOptional: true;
180
180
  };
181
181
  gridWidth: {
182
- type: _lssm_lib_schema200.FieldType<number, number>;
182
+ type: _lssm_lib_schema212.FieldType<number, number>;
183
183
  isOptional: true;
184
184
  };
185
185
  gridHeight: {
186
- type: _lssm_lib_schema200.FieldType<number, number>;
186
+ type: _lssm_lib_schema212.FieldType<number, number>;
187
187
  isOptional: true;
188
188
  };
189
189
  queryId: {
190
- type: _lssm_lib_schema200.FieldType<string, string>;
190
+ type: _lssm_lib_schema212.FieldType<string, string>;
191
191
  isOptional: true;
192
192
  };
193
193
  config: {
194
- type: _lssm_lib_schema200.FieldType<unknown, unknown>;
194
+ type: _lssm_lib_schema212.FieldType<unknown, unknown>;
195
195
  isOptional: true;
196
196
  };
197
197
  }>;
198
198
  /**
199
199
  * Input for listing dashboards.
200
200
  */
201
- declare const ListDashboardsInputModel: _lssm_lib_schema200.SchemaModel<{
201
+ declare const ListDashboardsInputModel: _lssm_lib_schema212.SchemaModel<{
202
202
  status: {
203
- type: _lssm_lib_schema200.EnumType<[string, string, string]>;
203
+ type: _lssm_lib_schema212.EnumType<[string, string, string]>;
204
204
  isOptional: true;
205
205
  };
206
206
  search: {
207
- type: _lssm_lib_schema200.FieldType<string, string>;
207
+ type: _lssm_lib_schema212.FieldType<string, string>;
208
208
  isOptional: true;
209
209
  };
210
210
  limit: {
211
- type: _lssm_lib_schema200.FieldType<number, number>;
211
+ type: _lssm_lib_schema212.FieldType<number, number>;
212
212
  isOptional: true;
213
213
  defaultValue: number;
214
214
  };
215
215
  offset: {
216
- type: _lssm_lib_schema200.FieldType<number, number>;
216
+ type: _lssm_lib_schema212.FieldType<number, number>;
217
217
  isOptional: true;
218
218
  defaultValue: number;
219
219
  };
@@ -221,77 +221,77 @@ declare const ListDashboardsInputModel: _lssm_lib_schema200.SchemaModel<{
221
221
  /**
222
222
  * Output for listing dashboards.
223
223
  */
224
- declare const ListDashboardsOutputModel: _lssm_lib_schema200.SchemaModel<{
224
+ declare const ListDashboardsOutputModel: _lssm_lib_schema212.SchemaModel<{
225
225
  dashboards: {
226
- type: _lssm_lib_schema200.SchemaModel<{
226
+ type: _lssm_lib_schema212.SchemaModel<{
227
227
  id: {
228
- type: _lssm_lib_schema200.FieldType<string, string>;
228
+ type: _lssm_lib_schema212.FieldType<string, string>;
229
229
  isOptional: false;
230
230
  };
231
231
  name: {
232
- type: _lssm_lib_schema200.FieldType<string, string>;
232
+ type: _lssm_lib_schema212.FieldType<string, string>;
233
233
  isOptional: false;
234
234
  };
235
235
  slug: {
236
- type: _lssm_lib_schema200.FieldType<string, string>;
236
+ type: _lssm_lib_schema212.FieldType<string, string>;
237
237
  isOptional: false;
238
238
  };
239
239
  description: {
240
- type: _lssm_lib_schema200.FieldType<string, string>;
240
+ type: _lssm_lib_schema212.FieldType<string, string>;
241
241
  isOptional: true;
242
242
  };
243
243
  status: {
244
- type: _lssm_lib_schema200.EnumType<[string, string, string]>;
244
+ type: _lssm_lib_schema212.EnumType<[string, string, string]>;
245
245
  isOptional: false;
246
246
  };
247
247
  refreshInterval: {
248
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string]>;
248
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string]>;
249
249
  isOptional: false;
250
250
  };
251
251
  isPublic: {
252
- type: _lssm_lib_schema200.FieldType<boolean, boolean>;
252
+ type: _lssm_lib_schema212.FieldType<boolean, boolean>;
253
253
  isOptional: false;
254
254
  };
255
255
  widgets: {
256
- type: _lssm_lib_schema200.SchemaModel<{
256
+ type: _lssm_lib_schema212.SchemaModel<{
257
257
  id: {
258
- type: _lssm_lib_schema200.FieldType<string, string>;
258
+ type: _lssm_lib_schema212.FieldType<string, string>;
259
259
  isOptional: false;
260
260
  };
261
261
  dashboardId: {
262
- type: _lssm_lib_schema200.FieldType<string, string>;
262
+ type: _lssm_lib_schema212.FieldType<string, string>;
263
263
  isOptional: false;
264
264
  };
265
265
  name: {
266
- type: _lssm_lib_schema200.FieldType<string, string>;
266
+ type: _lssm_lib_schema212.FieldType<string, string>;
267
267
  isOptional: false;
268
268
  };
269
269
  type: {
270
- type: _lssm_lib_schema200.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
270
+ type: _lssm_lib_schema212.EnumType<[string, string, string, string, string, string, string, string, string, string, string, string]>;
271
271
  isOptional: false;
272
272
  };
273
273
  gridX: {
274
- type: _lssm_lib_schema200.FieldType<number, number>;
274
+ type: _lssm_lib_schema212.FieldType<number, number>;
275
275
  isOptional: false;
276
276
  };
277
277
  gridY: {
278
- type: _lssm_lib_schema200.FieldType<number, number>;
278
+ type: _lssm_lib_schema212.FieldType<number, number>;
279
279
  isOptional: false;
280
280
  };
281
281
  gridWidth: {
282
- type: _lssm_lib_schema200.FieldType<number, number>;
282
+ type: _lssm_lib_schema212.FieldType<number, number>;
283
283
  isOptional: false;
284
284
  };
285
285
  gridHeight: {
286
- type: _lssm_lib_schema200.FieldType<number, number>;
286
+ type: _lssm_lib_schema212.FieldType<number, number>;
287
287
  isOptional: false;
288
288
  };
289
289
  queryId: {
290
- type: _lssm_lib_schema200.FieldType<string, string>;
290
+ type: _lssm_lib_schema212.FieldType<string, string>;
291
291
  isOptional: true;
292
292
  };
293
293
  config: {
294
- type: _lssm_lib_schema200.FieldType<unknown, unknown>;
294
+ type: _lssm_lib_schema212.FieldType<unknown, unknown>;
295
295
  isOptional: true;
296
296
  };
297
297
  }>;
@@ -299,7 +299,7 @@ declare const ListDashboardsOutputModel: _lssm_lib_schema200.SchemaModel<{
299
299
  isOptional: true;
300
300
  };
301
301
  createdAt: {
302
- type: _lssm_lib_schema200.FieldType<Date, string>;
302
+ type: _lssm_lib_schema212.FieldType<Date, string>;
303
303
  isOptional: false;
304
304
  };
305
305
  }>;
@@ -307,24 +307,24 @@ declare const ListDashboardsOutputModel: _lssm_lib_schema200.SchemaModel<{
307
307
  isOptional: false;
308
308
  };
309
309
  total: {
310
- type: _lssm_lib_schema200.FieldType<number, number>;
310
+ type: _lssm_lib_schema212.FieldType<number, number>;
311
311
  isOptional: false;
312
312
  };
313
313
  }>;
314
314
  /**
315
315
  * Input for getting a dashboard.
316
316
  */
317
- declare const GetDashboardInputModel: _lssm_lib_schema200.SchemaModel<{
317
+ declare const GetDashboardInputModel: _lssm_lib_schema212.SchemaModel<{
318
318
  dashboardId: {
319
- type: _lssm_lib_schema200.FieldType<string, string>;
319
+ type: _lssm_lib_schema212.FieldType<string, string>;
320
320
  isOptional: true;
321
321
  };
322
322
  slug: {
323
- type: _lssm_lib_schema200.FieldType<string, string>;
323
+ type: _lssm_lib_schema212.FieldType<string, string>;
324
324
  isOptional: true;
325
325
  };
326
326
  shareToken: {
327
- type: _lssm_lib_schema200.FieldType<string, string>;
327
+ type: _lssm_lib_schema212.FieldType<string, string>;
328
328
  isOptional: true;
329
329
  };
330
330
  }>;