@contractspec/example.crm-pipeline 0.0.0-canary-20260113170453 → 0.0.0-canary-20260113173657
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/.turbo/turbo-build$colon$bundle.log +5 -5
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +10 -10
- package/dist/crm-pipeline.feature.d.ts +2 -2
- package/dist/deal/deal.enum.d.ts +3 -3
- package/dist/deal/deal.enum.d.ts.map +1 -1
- package/dist/deal/deal.operation.d.ts +128 -128
- package/dist/deal/deal.operation.d.ts.map +1 -1
- package/dist/deal/deal.schema.d.ts +71 -71
- package/dist/entities/company.entity.d.ts +28 -28
- package/dist/entities/company.entity.d.ts.map +1 -1
- package/dist/entities/contact.entity.d.ts +32 -32
- package/dist/entities/deal.entity.d.ts +53 -53
- package/dist/events/task.event.d.ts +2 -2
- package/dist/example.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/presentations/dashboard.presentation.d.ts +3 -3
- package/dist/presentations/pipeline.presentation.d.ts +5 -5
- package/dist/ui/CrmDealCard.d.ts +2 -2
- package/dist/ui/CrmPipelineBoard.d.ts +2 -2
- package/dist/ui/modals/CreateDealModal.d.ts +2 -2
- package/dist/ui/modals/DealActionsModal.d.ts +2 -2
- package/package.json +12 -12
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts13 from "@contractspec/lib.contracts";
|
|
2
2
|
import * as _contractspec_lib_schema384 from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/events/task.event.d.ts
|
|
5
|
-
declare const TaskCompletedEvent:
|
|
5
|
+
declare const TaskCompletedEvent: _contractspec_lib_contracts13.EventSpec<_contractspec_lib_schema384.SchemaModel<{
|
|
6
6
|
taskId: {
|
|
7
7
|
type: _contractspec_lib_schema384.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
package/dist/example.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/example.d.ts
|
|
4
|
-
declare const example:
|
|
4
|
+
declare const example: _contractspec_lib_contracts0.ExampleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { example as default };
|
|
7
7
|
//# sourceMappingURL=example.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -31,14 +31,14 @@ import { crmPipelineReactRenderer } from "./ui/renderers/pipeline.renderer.js";
|
|
|
31
31
|
import { crmDashboardMarkdownRenderer, crmPipelineMarkdownRenderer } from "./ui/renderers/pipeline.markdown.js";
|
|
32
32
|
import { crmDemoOverlay, crmOverlays, crmSalesRepOverlay } from "./ui/overlays/demo-overlays.js";
|
|
33
33
|
import "./ui/index.js";
|
|
34
|
-
import * as
|
|
34
|
+
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
35
35
|
|
|
36
36
|
//#region src/index.d.ts
|
|
37
37
|
/**
|
|
38
38
|
* Complete schema composition for CRM Pipeline.
|
|
39
39
|
*/
|
|
40
40
|
declare const schemaComposition: {
|
|
41
|
-
modules:
|
|
41
|
+
modules: _contractspec_lib_schema0.ModuleSchemaContribution[];
|
|
42
42
|
provider: "postgresql";
|
|
43
43
|
outputPath: string;
|
|
44
44
|
};
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAsBa;WASZ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAsBa;WASZ,yBAAA,CAAA,wBAAA"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts14 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/presentations/dashboard.presentation.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Main CRM dashboard presentation.
|
|
6
6
|
*/
|
|
7
|
-
declare const CrmDashboardPresentation:
|
|
7
|
+
declare const CrmDashboardPresentation: _contractspec_lib_contracts14.PresentationSpec;
|
|
8
8
|
/**
|
|
9
9
|
* Pipeline metrics presentation.
|
|
10
10
|
*/
|
|
11
|
-
declare const PipelineMetricsPresentation:
|
|
11
|
+
declare const PipelineMetricsPresentation: _contractspec_lib_contracts14.PresentationSpec;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { CrmDashboardPresentation, PipelineMetricsPresentation };
|
|
14
14
|
//# sourceMappingURL=dashboard.presentation.d.ts.map
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts16 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/presentations/pipeline.presentation.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Kanban board presentation for the sales pipeline.
|
|
6
6
|
*/
|
|
7
|
-
declare const PipelineKanbanPresentation:
|
|
7
|
+
declare const PipelineKanbanPresentation: _contractspec_lib_contracts16.PresentationSpec;
|
|
8
8
|
/**
|
|
9
9
|
* List view of deals with filtering.
|
|
10
10
|
*/
|
|
11
|
-
declare const DealListPresentation:
|
|
11
|
+
declare const DealListPresentation: _contractspec_lib_contracts16.PresentationSpec;
|
|
12
12
|
/**
|
|
13
13
|
* Deal detail presentation.
|
|
14
14
|
*/
|
|
15
|
-
declare const DealDetailPresentation:
|
|
15
|
+
declare const DealDetailPresentation: _contractspec_lib_contracts16.PresentationSpec;
|
|
16
16
|
/**
|
|
17
17
|
* Deal card for kanban board.
|
|
18
18
|
*/
|
|
19
|
-
declare const DealCardPresentation:
|
|
19
|
+
declare const DealCardPresentation: _contractspec_lib_contracts16.PresentationSpec;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { DealCardPresentation, DealDetailPresentation, DealListPresentation, PipelineKanbanPresentation };
|
|
22
22
|
//# sourceMappingURL=pipeline.presentation.d.ts.map
|
package/dist/ui/CrmDealCard.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Deal } from "./hooks/useDealList.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ui/CrmDealCard.d.ts
|
|
5
5
|
interface CrmDealCardProps {
|
|
@@ -9,7 +9,7 @@ interface CrmDealCardProps {
|
|
|
9
9
|
declare function CrmDealCard({
|
|
10
10
|
deal,
|
|
11
11
|
onClick
|
|
12
|
-
}: CrmDealCardProps):
|
|
12
|
+
}: CrmDealCardProps): react_jsx_runtime1.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { CrmDealCard };
|
|
15
15
|
//# sourceMappingURL=CrmDealCard.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Deal } from "./hooks/useDealList.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/ui/CrmPipelineBoard.d.ts
|
|
5
5
|
interface CrmPipelineBoardProps {
|
|
@@ -17,7 +17,7 @@ declare function CrmPipelineBoard({
|
|
|
17
17
|
stages,
|
|
18
18
|
onDealClick,
|
|
19
19
|
onDealMove
|
|
20
|
-
}: CrmPipelineBoardProps):
|
|
20
|
+
}: CrmPipelineBoardProps): react_jsx_runtime0.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { CrmPipelineBoard };
|
|
23
23
|
//# sourceMappingURL=CrmPipelineBoard.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/modals/CreateDealModal.d.ts
|
|
4
4
|
interface CreateDealInput {
|
|
@@ -27,7 +27,7 @@ declare function CreateDealModal({
|
|
|
27
27
|
onSubmit,
|
|
28
28
|
stages,
|
|
29
29
|
isLoading
|
|
30
|
-
}: CreateDealModalProps):
|
|
30
|
+
}: CreateDealModalProps): react_jsx_runtime2.JSX.Element | null;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { CreateDealInput, CreateDealModal };
|
|
33
33
|
//# sourceMappingURL=CreateDealModal.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/modals/DealActionsModal.d.ts
|
|
4
4
|
interface Deal {
|
|
@@ -45,7 +45,7 @@ declare function DealActionsModal({
|
|
|
45
45
|
onLose,
|
|
46
46
|
onMove,
|
|
47
47
|
isLoading
|
|
48
|
-
}: DealActionsModalProps):
|
|
48
|
+
}: DealActionsModalProps): react_jsx_runtime3.JSX.Element | null;
|
|
49
49
|
//#endregion
|
|
50
50
|
export { Deal, DealActionsModal, LoseDealInput, MoveDealInput, WinDealInput };
|
|
51
51
|
//# sourceMappingURL=DealActionsModal.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.crm-pipeline",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20260113173657",
|
|
4
4
|
"description": "CRM Pipeline - Contacts, Companies, Deals, Tasks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -65,21 +65,21 @@
|
|
|
65
65
|
"test": "bun test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@contractspec/lib.contracts": "0.0.0-canary-
|
|
69
|
-
"@contractspec/lib.design-system": "0.0.0-canary-
|
|
70
|
-
"@contractspec/lib.example-shared-ui": "0.0.0-canary-
|
|
71
|
-
"@contractspec/lib.identity-rbac": "0.0.0-canary-
|
|
72
|
-
"@contractspec/lib.runtime-sandbox": "0.0.0-canary-
|
|
73
|
-
"@contractspec/lib.schema": "0.0.0-canary-
|
|
74
|
-
"@contractspec/lib.ui-kit-web": "0.0.0-canary-
|
|
75
|
-
"@contractspec/module.audit-trail": "0.0.0-canary-
|
|
76
|
-
"@contractspec/module.notifications": "0.0.0-canary-
|
|
68
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260113173657",
|
|
69
|
+
"@contractspec/lib.design-system": "0.0.0-canary-20260113173657",
|
|
70
|
+
"@contractspec/lib.example-shared-ui": "0.0.0-canary-20260113173657",
|
|
71
|
+
"@contractspec/lib.identity-rbac": "0.0.0-canary-20260113173657",
|
|
72
|
+
"@contractspec/lib.runtime-sandbox": "0.0.0-canary-20260113173657",
|
|
73
|
+
"@contractspec/lib.schema": "0.0.0-canary-20260113173657",
|
|
74
|
+
"@contractspec/lib.ui-kit-web": "0.0.0-canary-20260113173657",
|
|
75
|
+
"@contractspec/module.audit-trail": "0.0.0-canary-20260113173657",
|
|
76
|
+
"@contractspec/module.notifications": "0.0.0-canary-20260113173657",
|
|
77
77
|
"react": "19.2.3",
|
|
78
78
|
"react-dom": "19.2.3"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@contractspec/tool.tsdown": "0.0.0-canary-
|
|
82
|
-
"@contractspec/tool.typescript": "0.0.0-canary-
|
|
81
|
+
"@contractspec/tool.tsdown": "0.0.0-canary-20260113173657",
|
|
82
|
+
"@contractspec/tool.typescript": "0.0.0-canary-20260113173657",
|
|
83
83
|
"tsdown": "^0.19.0",
|
|
84
84
|
"typescript": "^5.9.3",
|
|
85
85
|
"@types/react": "^19.2.8",
|