@contractspec/example.crm-pipeline 0.0.0-canary-20260119224015 → 0.0.0-canary-20260119225944
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 +6 -6
- package/.turbo/turbo-build.log +16 -16
- package/CHANGELOG.md +7 -7
- 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 +127 -127
- package/dist/deal/deal.operation.d.ts.map +1 -1
- package/dist/deal/deal.schema.d.ts +71 -71
- package/dist/deal/deal.schema.d.ts.map +1 -1
- package/dist/entities/company.entity.d.ts +28 -28
- package/dist/entities/contact.entity.d.ts +32 -32
- package/dist/entities/deal.entity.d.ts +53 -53
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/ui/modals/CreateDealModal.d.ts +2 -2
- package/dist/ui/modals/DealActionsModal.d.ts +2 -2
- package/package.json +9 -8
- package/tsconfig.tsbuildinfo +1 -1
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,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime3 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_runtime3.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_runtime2 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_runtime2.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-20260119225944",
|
|
4
4
|
"description": "CRM Pipeline - Contacts, Companies, Deals, Tasks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -62,18 +62,19 @@
|
|
|
62
62
|
"lint": "bun lint:fix",
|
|
63
63
|
"lint:fix": "eslint src --fix",
|
|
64
64
|
"lint:check": "eslint src",
|
|
65
|
-
"test": "bun test"
|
|
65
|
+
"test": "bun test",
|
|
66
|
+
"validate": "contractspec validate"
|
|
66
67
|
},
|
|
67
68
|
"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-
|
|
69
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260119225944",
|
|
70
|
+
"@contractspec/lib.design-system": "0.0.0-canary-20260119225944",
|
|
71
|
+
"@contractspec/lib.example-shared-ui": "0.0.0-canary-20260119225944",
|
|
72
|
+
"@contractspec/lib.identity-rbac": "0.0.0-canary-20260119225944",
|
|
72
73
|
"@contractspec/lib.runtime-sandbox": "0.3.0",
|
|
73
74
|
"@contractspec/lib.schema": "1.48.0",
|
|
74
75
|
"@contractspec/lib.ui-kit-web": "1.48.0",
|
|
75
|
-
"@contractspec/module.audit-trail": "0.0.0-canary-
|
|
76
|
-
"@contractspec/module.notifications": "0.0.0-canary-
|
|
76
|
+
"@contractspec/module.audit-trail": "0.0.0-canary-20260119225944",
|
|
77
|
+
"@contractspec/module.notifications": "0.0.0-canary-20260119225944",
|
|
77
78
|
"react": "19.2.3",
|
|
78
79
|
"react-dom": "19.2.3"
|
|
79
80
|
},
|