@contractspec/example.analytics-dashboard 1.47.0 → 1.48.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.
- package/dist/dashboard/dashboard.operation.d.ts +5 -5
- package/dist/dashboard/dashboard.operation.d.ts.map +1 -1
- package/dist/dashboard/dashboard.presentation.d.ts +4 -4
- package/dist/dashboard/dashboard.test-spec.d.ts +5 -5
- package/dist/dashboard/dashboard.test-spec.d.ts.map +1 -1
- package/dist/example.d.ts +2 -2
- package/dist/example.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts11 from "@contractspec/lib.contracts";
|
|
2
2
|
import * as _contractspec_lib_schema40 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/dashboard/dashboard.operation.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Create a new analytics dashboard.
|
|
7
7
|
*/
|
|
8
|
-
declare const CreateDashboardContract:
|
|
8
|
+
declare const CreateDashboardContract: _contractspec_lib_contracts11.OperationSpec<_contractspec_lib_schema40.SchemaModel<{
|
|
9
9
|
name: {
|
|
10
10
|
type: _contractspec_lib_schema40.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
@@ -196,7 +196,7 @@ declare const CreateDashboardContract: _contractspec_lib_contracts7.OperationSpe
|
|
|
196
196
|
/**
|
|
197
197
|
* Add a widget to a dashboard.
|
|
198
198
|
*/
|
|
199
|
-
declare const AddWidgetContract:
|
|
199
|
+
declare const AddWidgetContract: _contractspec_lib_contracts11.OperationSpec<_contractspec_lib_schema40.SchemaModel<{
|
|
200
200
|
dashboardId: {
|
|
201
201
|
type: _contractspec_lib_schema40.FieldType<string, string>;
|
|
202
202
|
isOptional: false;
|
|
@@ -327,7 +327,7 @@ declare const AddWidgetContract: _contractspec_lib_contracts7.OperationSpec<_con
|
|
|
327
327
|
/**
|
|
328
328
|
* List dashboards.
|
|
329
329
|
*/
|
|
330
|
-
declare const ListDashboardsContract:
|
|
330
|
+
declare const ListDashboardsContract: _contractspec_lib_contracts11.OperationSpec<_contractspec_lib_schema40.SchemaModel<{
|
|
331
331
|
status: {
|
|
332
332
|
type: _contractspec_lib_schema40.EnumType<[string, string, string]>;
|
|
333
333
|
isOptional: true;
|
|
@@ -439,7 +439,7 @@ declare const ListDashboardsContract: _contractspec_lib_contracts7.OperationSpec
|
|
|
439
439
|
/**
|
|
440
440
|
* Get a dashboard with widgets.
|
|
441
441
|
*/
|
|
442
|
-
declare const GetDashboardContract:
|
|
442
|
+
declare const GetDashboardContract: _contractspec_lib_contracts11.OperationSpec<_contractspec_lib_schema40.SchemaModel<{
|
|
443
443
|
dashboardId: {
|
|
444
444
|
type: _contractspec_lib_schema40.FieldType<string, string>;
|
|
445
445
|
isOptional: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard.operation.d.ts","names":[],"sources":["../../src/dashboard/dashboard.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAmBa,
|
|
1
|
+
{"version":3,"file":"dashboard.operation.d.ts","names":[],"sources":["../../src/dashboard/dashboard.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAmBa,uDAAuB,yCAAA;EAAvB,IAAA,EAAA;IA+CX,IAAA,EAAA,0BAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;EA/CkC,CAAA;;;;;;;;;;;;;;;UAAA,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,IAAA,wCAAA,CAAA;MAoDvB,EAAA,EAAA;QAgDX,IAAA,sCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;oBAhD4B,KAAA;MAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;kDAAA,CAAA,MAAA,EAAA,MAAA,CAAA;QAAA,UAAA,EAAA,IAAA;MAqDjB,CAAA;MA8BX,MAAA,EAAA;;;;;IA9BiC,OAAA,EAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;MAAA,IAAA,sCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;MAmCtB,UAAA,EAAA,KA8BX;IAAA,CAAA;;;sBA9B+B;IAAA,CAAA;;;;;;;;;;;;;;;;;;;;;sBAAA,KAAA;QAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAxFpB,iDAAiB,yCAAA;;UAgD5B,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAhD4B,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqDjB,sDAAsB,yCAAA;;UA8BjC,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;cA9BiC,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCtB,oDAAoB,yCAAA;;UA8B/B,0BAAA,CAAA;;;;;;;;;;;;;UA9B+B,0BAAA,CAAA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts15 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/dashboard/dashboard.presentation.d.ts
|
|
4
|
-
declare const DashboardsListPresentation:
|
|
5
|
-
declare const DashboardViewPresentation:
|
|
6
|
-
declare const DashboardEditorPresentation:
|
|
4
|
+
declare const DashboardsListPresentation: _contractspec_lib_contracts15.PresentationSpec;
|
|
5
|
+
declare const DashboardViewPresentation: _contractspec_lib_contracts15.PresentationSpec;
|
|
6
|
+
declare const DashboardEditorPresentation: _contractspec_lib_contracts15.PresentationSpec;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { DashboardEditorPresentation, DashboardViewPresentation, DashboardsListPresentation };
|
|
9
9
|
//# sourceMappingURL=dashboard.presentation.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts6 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/dashboard/dashboard.test-spec.d.ts
|
|
4
|
-
declare const CreateDashboardTest:
|
|
5
|
-
declare const ListDashboardsTest:
|
|
6
|
-
declare const GetDashboardTest:
|
|
7
|
-
declare const AddWidgetTest:
|
|
4
|
+
declare const CreateDashboardTest: _contractspec_lib_contracts6.TestSpec;
|
|
5
|
+
declare const ListDashboardsTest: _contractspec_lib_contracts6.TestSpec;
|
|
6
|
+
declare const GetDashboardTest: _contractspec_lib_contracts6.TestSpec;
|
|
7
|
+
declare const AddWidgetTest: _contractspec_lib_contracts6.TestSpec;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { AddWidgetTest, CreateDashboardTest, GetDashboardTest, ListDashboardsTest };
|
|
10
10
|
//# sourceMappingURL=dashboard.test-spec.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard.test-spec.d.ts","names":[],"sources":["../../src/dashboard/dashboard.test-spec.ts"],"sourcesContent":[],"mappings":";;;cAEa,qBAmDX,
|
|
1
|
+
{"version":3,"file":"dashboard.test-spec.d.ts","names":[],"sources":["../../src/dashboard/dashboard.test-spec.ts"],"sourcesContent":[],"mappings":";;;cAEa,qBAmDX,4BAAA,CAnD8B;cAqDnB,oBA+CX,4BAAA,CA/C6B;cAiDlB,kBA8CX,4BAAA,CA9C2B;AAtGhB,cAsJA,aAnGX,EA4JA,4BAAA,CAzDwB,QAnGxB"}
|
package/dist/example.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts10 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/example.d.ts
|
|
4
|
-
declare const example:
|
|
4
|
+
declare const example: _contractspec_lib_contracts10.ExampleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { example as default };
|
|
7
7
|
//# sourceMappingURL=example.d.ts.map
|
package/dist/example.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"example.d.ts","names":[],"sources":["../src/example.ts"],"sourcesContent":[],"mappings":";;;cAEM,SAoCJ,
|
|
1
|
+
{"version":3,"file":"example.d.ts","names":[],"sources":["../src/example.ts"],"sourcesContent":[],"mappings":";;;cAEM,SAoCJ,6BAAA,CApCW"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.analytics-dashboard",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.0",
|
|
4
4
|
"description": "Analytics Dashboard example with widgets and query engine for ContractSpec",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"lint:check": "eslint src"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@contractspec/lib.schema": "1.
|
|
21
|
-
"@contractspec/lib.contracts": "1.
|
|
22
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
23
|
-
"@contractspec/lib.design-system": "1.
|
|
24
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
20
|
+
"@contractspec/lib.schema": "1.48.0",
|
|
21
|
+
"@contractspec/lib.contracts": "1.48.0",
|
|
22
|
+
"@contractspec/lib.example-shared-ui": "1.2.0",
|
|
23
|
+
"@contractspec/lib.design-system": "1.48.0",
|
|
24
|
+
"@contractspec/lib.runtime-sandbox": "0.3.0",
|
|
25
25
|
"react": "19.2.3",
|
|
26
26
|
"react-dom": "19.2.3"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@contractspec/tool.typescript": "1.
|
|
30
|
-
"@contractspec/tool.tsdown": "1.
|
|
29
|
+
"@contractspec/tool.typescript": "1.48.0",
|
|
30
|
+
"@contractspec/tool.tsdown": "1.48.0",
|
|
31
31
|
"typescript": "^5.9.3",
|
|
32
32
|
"@types/react": "^19.2.8",
|
|
33
33
|
"@types/react-dom": "^19.2.2"
|