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

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 +130 -130
  2. package/dist/dashboard/dashboard.contracts.js +1 -1
  3. package/dist/dashboard/dashboard.enum.d.ts +4 -4
  4. package/dist/dashboard/dashboard.enum.js +2 -1
  5. package/dist/dashboard/dashboard.schema.d.ts +79 -79
  6. package/dist/dashboard/dashboard.schema.js +3 -1
  7. package/dist/docs/analytics-dashboard.docblock.js +2 -1
  8. package/dist/events.d.ts +1 -1
  9. package/dist/events.js +5 -2
  10. package/dist/index.d.ts +0 -1
  11. package/dist/libs/contracts/dist/capabilities/openbanking.js +88 -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 +60 -0
  18. package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -0
  19. package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -0
  20. package/dist/libs/contracts/dist/docs/index.js +29 -0
  21. package/dist/libs/contracts/dist/docs/presentations.js +71 -0
  22. package/dist/libs/contracts/dist/docs/registry.js +44 -0
  23. package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -0
  24. package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -0
  25. package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -0
  26. package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -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 +16 -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 +37 -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 +20 -0
  35. package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -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 +45 -0
  39. package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -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 +69 -0
  42. package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -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 +10 -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 +377 -0
  53. package/dist/libs/contracts/dist/integrations/index.js +18 -0
  54. package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +228 -0
  55. package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +159 -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 +210 -0
  58. package/dist/libs/contracts/dist/integrations/openbanking/models.js +242 -0
  59. package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +13 -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 +306 -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 +19 -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 +196 -0
  86. package/dist/libs/contracts/dist/openapi.js +1 -0
  87. package/dist/libs/contracts/dist/ownership.js +21 -0
  88. package/dist/libs/contracts/dist/presentations.js +1 -0
  89. package/dist/libs/contracts/dist/presentations.v2.js +11 -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 +6 -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 +49 -0
  98. package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +236 -0
  99. package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +34 -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 +34 -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 +56 -0
  125. package/dist/libs/schema/dist/FieldType.js +49 -0
  126. package/dist/libs/schema/dist/ScalarTypeEnum.js +236 -0
  127. package/dist/libs/schema/dist/SchemaModel.js +39 -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 +1 -1
  134. package/dist/query/query.enum.d.ts +2 -2
  135. package/dist/query/query.enum.js +2 -1
  136. package/dist/query/query.schema.d.ts +34 -34
  137. package/dist/query/query.schema.js +3 -1
  138. package/package.json +10 -10
@@ -1,9 +1,9 @@
1
- import * as _lssm_lib_schema37 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema290 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/query/query.enum.d.ts
4
4
  /**
5
5
  * Query type enum.
6
6
  */
7
- declare const QueryTypeEnum: _lssm_lib_schema37.EnumType<[string, string, string, string]>;
7
+ declare const QueryTypeEnum: _lssm_lib_schema290.EnumType<[string, string, string, string]>;
8
8
  //#endregion
9
9
  export { QueryTypeEnum };
@@ -1,4 +1,5 @@
1
- import { defineEnum } from "@lssm/lib.schema";
1
+ import { defineEnum } from "../libs/schema/dist/EnumType.js";
2
+ import "../libs/schema/dist/index.js";
2
3
 
3
4
  //#region src/query/query.enum.ts
4
5
  /**
@@ -1,140 +1,140 @@
1
- import * as _lssm_lib_schema38 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema291 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/query/query.schema.d.ts
4
4
  /**
5
5
  * A data query.
6
6
  */
7
- declare const QueryModel: _lssm_lib_schema38.SchemaModel<{
7
+ declare const QueryModel: _lssm_lib_schema291.SchemaModel<{
8
8
  id: {
9
- type: _lssm_lib_schema38.FieldType<string, string>;
9
+ type: _lssm_lib_schema291.FieldType<string, string>;
10
10
  isOptional: false;
11
11
  };
12
12
  name: {
13
- type: _lssm_lib_schema38.FieldType<string, string>;
13
+ type: _lssm_lib_schema291.FieldType<string, string>;
14
14
  isOptional: false;
15
15
  };
16
16
  description: {
17
- type: _lssm_lib_schema38.FieldType<string, string>;
17
+ type: _lssm_lib_schema291.FieldType<string, string>;
18
18
  isOptional: true;
19
19
  };
20
20
  type: {
21
- type: _lssm_lib_schema38.EnumType<[string, string, string, string]>;
21
+ type: _lssm_lib_schema291.EnumType<[string, string, string, string]>;
22
22
  isOptional: false;
23
23
  };
24
24
  definition: {
25
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
25
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
26
26
  isOptional: false;
27
27
  };
28
28
  sql: {
29
- type: _lssm_lib_schema38.FieldType<string, string>;
29
+ type: _lssm_lib_schema291.FieldType<string, string>;
30
30
  isOptional: true;
31
31
  };
32
32
  cacheTtlSeconds: {
33
- type: _lssm_lib_schema38.FieldType<number, number>;
33
+ type: _lssm_lib_schema291.FieldType<number, number>;
34
34
  isOptional: false;
35
35
  };
36
36
  isShared: {
37
- type: _lssm_lib_schema38.FieldType<boolean, boolean>;
37
+ type: _lssm_lib_schema291.FieldType<boolean, boolean>;
38
38
  isOptional: false;
39
39
  };
40
40
  createdAt: {
41
- type: _lssm_lib_schema38.FieldType<Date, string>;
41
+ type: _lssm_lib_schema291.FieldType<Date, string>;
42
42
  isOptional: false;
43
43
  };
44
44
  }>;
45
45
  /**
46
46
  * Query execution result.
47
47
  */
48
- declare const QueryResultModel: _lssm_lib_schema38.SchemaModel<{
48
+ declare const QueryResultModel: _lssm_lib_schema291.SchemaModel<{
49
49
  queryId: {
50
- type: _lssm_lib_schema38.FieldType<string, string>;
50
+ type: _lssm_lib_schema291.FieldType<string, string>;
51
51
  isOptional: false;
52
52
  };
53
53
  data: {
54
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
54
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
55
55
  isOptional: false;
56
56
  };
57
57
  columns: {
58
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
58
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
59
59
  isOptional: false;
60
60
  };
61
61
  rowCount: {
62
- type: _lssm_lib_schema38.FieldType<number, number>;
62
+ type: _lssm_lib_schema291.FieldType<number, number>;
63
63
  isOptional: false;
64
64
  };
65
65
  executionTimeMs: {
66
- type: _lssm_lib_schema38.FieldType<number, number>;
66
+ type: _lssm_lib_schema291.FieldType<number, number>;
67
67
  isOptional: false;
68
68
  };
69
69
  cachedAt: {
70
- type: _lssm_lib_schema38.FieldType<Date, string>;
70
+ type: _lssm_lib_schema291.FieldType<Date, string>;
71
71
  isOptional: true;
72
72
  };
73
73
  error: {
74
- type: _lssm_lib_schema38.FieldType<string, string>;
74
+ type: _lssm_lib_schema291.FieldType<string, string>;
75
75
  isOptional: true;
76
76
  };
77
77
  }>;
78
78
  /**
79
79
  * Input for creating a query.
80
80
  */
81
- declare const CreateQueryInputModel: _lssm_lib_schema38.SchemaModel<{
81
+ declare const CreateQueryInputModel: _lssm_lib_schema291.SchemaModel<{
82
82
  name: {
83
- type: _lssm_lib_schema38.FieldType<string, string>;
83
+ type: _lssm_lib_schema291.FieldType<string, string>;
84
84
  isOptional: false;
85
85
  };
86
86
  description: {
87
- type: _lssm_lib_schema38.FieldType<string, string>;
87
+ type: _lssm_lib_schema291.FieldType<string, string>;
88
88
  isOptional: true;
89
89
  };
90
90
  type: {
91
- type: _lssm_lib_schema38.EnumType<[string, string, string, string]>;
91
+ type: _lssm_lib_schema291.EnumType<[string, string, string, string]>;
92
92
  isOptional: false;
93
93
  };
94
94
  definition: {
95
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
95
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
96
96
  isOptional: false;
97
97
  };
98
98
  sql: {
99
- type: _lssm_lib_schema38.FieldType<string, string>;
99
+ type: _lssm_lib_schema291.FieldType<string, string>;
100
100
  isOptional: true;
101
101
  };
102
102
  metricIds: {
103
- type: _lssm_lib_schema38.FieldType<string, string>;
103
+ type: _lssm_lib_schema291.FieldType<string, string>;
104
104
  isArray: true;
105
105
  isOptional: true;
106
106
  };
107
107
  cacheTtlSeconds: {
108
- type: _lssm_lib_schema38.FieldType<number, number>;
108
+ type: _lssm_lib_schema291.FieldType<number, number>;
109
109
  isOptional: true;
110
110
  };
111
111
  isShared: {
112
- type: _lssm_lib_schema38.FieldType<boolean, boolean>;
112
+ type: _lssm_lib_schema291.FieldType<boolean, boolean>;
113
113
  isOptional: true;
114
114
  };
115
115
  }>;
116
116
  /**
117
117
  * Input for executing a query.
118
118
  */
119
- declare const ExecuteQueryInputModel: _lssm_lib_schema38.SchemaModel<{
119
+ declare const ExecuteQueryInputModel: _lssm_lib_schema291.SchemaModel<{
120
120
  queryId: {
121
- type: _lssm_lib_schema38.FieldType<string, string>;
121
+ type: _lssm_lib_schema291.FieldType<string, string>;
122
122
  isOptional: false;
123
123
  };
124
124
  parameters: {
125
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
125
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
126
126
  isOptional: true;
127
127
  };
128
128
  dateRange: {
129
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
129
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
130
130
  isOptional: true;
131
131
  };
132
132
  filters: {
133
- type: _lssm_lib_schema38.FieldType<unknown, unknown>;
133
+ type: _lssm_lib_schema291.FieldType<unknown, unknown>;
134
134
  isOptional: true;
135
135
  };
136
136
  forceRefresh: {
137
- type: _lssm_lib_schema38.FieldType<boolean, boolean>;
137
+ type: _lssm_lib_schema291.FieldType<boolean, boolean>;
138
138
  isOptional: true;
139
139
  };
140
140
  }>;
@@ -1,5 +1,7 @@
1
+ import { ScalarTypeEnum } from "../libs/schema/dist/ScalarTypeEnum.js";
2
+ import { defineSchemaModel } from "../libs/schema/dist/SchemaModel.js";
3
+ import "../libs/schema/dist/index.js";
1
4
  import { QueryTypeEnum } from "./query.enum.js";
2
- import { ScalarTypeEnum, defineSchemaModel } from "@lssm/lib.schema";
3
5
 
4
6
  //#region src/query/query.schema.ts
5
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.analytics-dashboard",
3
- "version": "0.0.0-canary-20251217060834",
3
+ "version": "0.0.0-canary-20251217072406",
4
4
  "description": "Analytics Dashboard example with widgets and query engine for ContractSpec",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -18,18 +18,18 @@
18
18
  "lint:check": "eslint src"
19
19
  },
20
20
  "dependencies": {
21
- "@lssm/lib.schema": "0.0.0-canary-20251217060834",
22
- "@lssm/lib.contracts": "0.0.0-canary-20251217060834",
23
- "@lssm/lib.bus": "0.0.0-canary-20251217060834",
24
- "@lssm/lib.identity-rbac": "0.0.0-canary-20251217060834",
25
- "@lssm/lib.metering": "0.0.0-canary-20251217060834",
26
- "@lssm/lib.jobs": "0.0.0-canary-20251217060834",
27
- "@lssm/module.audit-trail": "0.0.0-canary-20251217060834",
21
+ "@lssm/lib.schema": "0.0.0-canary-20251217072406",
22
+ "@lssm/lib.contracts": "0.0.0-canary-20251217072406",
23
+ "@lssm/lib.bus": "0.0.0-canary-20251217072406",
24
+ "@lssm/lib.identity-rbac": "0.0.0-canary-20251217072406",
25
+ "@lssm/lib.metering": "0.0.0-canary-20251217072406",
26
+ "@lssm/lib.jobs": "0.0.0-canary-20251217072406",
27
+ "@lssm/module.audit-trail": "0.0.0-canary-20251217072406",
28
28
  "zod": "^4.1.13"
29
29
  },
30
30
  "devDependencies": {
31
- "@lssm/tool.typescript": "0.0.0-canary-20251217060834",
32
- "@lssm/tool.tsdown": "0.0.0-canary-20251217060834",
31
+ "@lssm/tool.typescript": "0.0.0-canary-20251217072406",
32
+ "@lssm/tool.tsdown": "0.0.0-canary-20251217072406",
33
33
  "typescript": "^5.9.3"
34
34
  },
35
35
  "exports": {