@contractspec/example.wealth-snapshot 1.57.0 → 1.58.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/browser/docs/index.js +93 -0
- package/dist/browser/docs/wealth-snapshot.docblock.js +93 -0
- package/dist/browser/entities/index.js +191 -0
- package/dist/browser/events.js +111 -0
- package/dist/browser/example.js +42 -0
- package/dist/browser/handlers/index.js +5 -0
- package/dist/browser/index.js +885 -0
- package/dist/browser/operations/index.js +238 -0
- package/dist/browser/presentations/index.js +11 -0
- package/dist/browser/presentations.js +124 -0
- package/dist/browser/wealth-snapshot.capability.js +40 -0
- package/dist/browser/wealth-snapshot.feature.js +72 -0
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +94 -1
- package/dist/docs/wealth-snapshot.docblock.d.ts +2 -1
- package/dist/docs/wealth-snapshot.docblock.d.ts.map +1 -0
- package/dist/docs/wealth-snapshot.docblock.js +45 -55
- package/dist/entities/index.d.ts +120 -125
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +181 -219
- package/dist/events.d.ts +167 -173
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +103 -172
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +41 -54
- package/dist/handlers/index.d.ts +1 -4
- package/dist/handlers/index.d.ts.map +1 -1
- package/dist/handlers/index.js +5 -8
- package/dist/index.d.ts +12 -16
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +882 -23
- package/dist/node/docs/index.js +93 -0
- package/dist/node/docs/wealth-snapshot.docblock.js +93 -0
- package/dist/node/entities/index.js +191 -0
- package/dist/node/events.js +111 -0
- package/dist/node/example.js +42 -0
- package/dist/node/handlers/index.js +5 -0
- package/dist/node/index.js +885 -0
- package/dist/node/operations/index.js +238 -0
- package/dist/node/presentations/index.js +11 -0
- package/dist/node/presentations.js +124 -0
- package/dist/node/wealth-snapshot.capability.js +40 -0
- package/dist/node/wealth-snapshot.feature.js +72 -0
- package/dist/operations/index.d.ts +392 -398
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +237 -425
- package/dist/presentations/index.d.ts +1 -4
- package/dist/presentations/index.d.ts.map +1 -1
- package/dist/presentations/index.js +11 -11
- package/dist/presentations.d.ts +5 -10
- package/dist/presentations.d.ts.map +1 -1
- package/dist/presentations.js +120 -127
- package/dist/wealth-snapshot.capability.d.ts +3 -8
- package/dist/wealth-snapshot.capability.d.ts.map +1 -1
- package/dist/wealth-snapshot.capability.js +41 -46
- package/dist/wealth-snapshot.feature.d.ts +1 -6
- package/dist/wealth-snapshot.feature.d.ts.map +1 -1
- package/dist/wealth-snapshot.feature.js +71 -139
- package/package.json +144 -37
- package/dist/docs/wealth-snapshot.docblock.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/index.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/operations/index.js.map +0 -1
- package/dist/presentations/index.js.map +0 -1
- package/dist/presentations.js.map +0 -1
- package/dist/wealth-snapshot.capability.js.map +0 -1
- package/dist/wealth-snapshot.feature.js.map +0 -1
|
@@ -1,20 +1,16 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// src/docs/wealth-snapshot.docblock.ts
|
|
1
3
|
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
tags: [
|
|
13
|
-
"finance",
|
|
14
|
-
"net-worth",
|
|
15
|
-
"goals"
|
|
16
|
-
],
|
|
17
|
-
body: `## Features
|
|
4
|
+
var wealthSnapshotDocBlocks = [
|
|
5
|
+
{
|
|
6
|
+
id: "docs.examples.wealth-snapshot",
|
|
7
|
+
title: "Wealth Snapshot",
|
|
8
|
+
summary: "Simple wealth overview with accounts, assets, liabilities, goals, and net-worth snapshots.",
|
|
9
|
+
kind: "reference",
|
|
10
|
+
visibility: "public",
|
|
11
|
+
route: "/docs/examples/wealth-snapshot",
|
|
12
|
+
tags: ["finance", "net-worth", "goals"],
|
|
13
|
+
body: `## Features
|
|
18
14
|
|
|
19
15
|
- Accounts with balances/currencies.
|
|
20
16
|
- Assets & liabilities categorized for net worth.
|
|
@@ -29,16 +25,16 @@ registerDocBlocks([
|
|
|
29
25
|
## Presentations
|
|
30
26
|
- Dashboard, accounts list, assets list, liabilities list, goals list (React + Markdown targets).
|
|
31
27
|
`
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
id: "docs.examples.wealth-snapshot.goal",
|
|
31
|
+
title: "Wealth Snapshot \u2014 Goal",
|
|
32
|
+
summary: "Why this personal/household finance template exists.",
|
|
33
|
+
kind: "goal",
|
|
34
|
+
visibility: "public",
|
|
35
|
+
route: "/docs/examples/wealth-snapshot/goal",
|
|
36
|
+
tags: ["finance", "goal"],
|
|
37
|
+
body: `## Why it matters
|
|
42
38
|
- Provides a regenerable net-worth and goals view without bespoke finance code.
|
|
43
39
|
- Keeps accounts/assets/liabilities/goals consistent across surfaces with PII care.
|
|
44
40
|
|
|
@@ -49,16 +45,16 @@ registerDocBlocks([
|
|
|
49
45
|
## Success criteria
|
|
50
46
|
- Spec changes to assets/liabilities/goals regenerate UI/API/events cleanly.
|
|
51
47
|
- PII and sensitive values are marked and redacted where needed.`
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
id: "docs.examples.wealth-snapshot.usage",
|
|
51
|
+
title: "Wealth Snapshot \u2014 Usage",
|
|
52
|
+
summary: "How to seed, extend, and regenerate wealth tracking safely.",
|
|
53
|
+
kind: "usage",
|
|
54
|
+
visibility: "public",
|
|
55
|
+
route: "/docs/examples/wealth-snapshot/usage",
|
|
56
|
+
tags: ["finance", "usage"],
|
|
57
|
+
body: `## Setup
|
|
62
58
|
1) Seed (if provided) or add accounts/assets/liabilities/goals via UI.
|
|
63
59
|
2) Configure Notifications for goal reminders/threshold alerts; Audit for changes.
|
|
64
60
|
|
|
@@ -71,20 +67,16 @@ registerDocBlocks([
|
|
|
71
67
|
- Emit events for asset/liability/goal changes; log in Audit Trail.
|
|
72
68
|
- Redact sensitive identifiers in presentations.
|
|
73
69
|
- Keep calculations (net worth) transparent and driven by spec fields.`
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"constraints",
|
|
85
|
-
"internal"
|
|
86
|
-
],
|
|
87
|
-
body: `## Constraints
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
id: "docs.examples.wealth-snapshot.constraints",
|
|
73
|
+
title: "Wealth Snapshot \u2014 Constraints & Safety",
|
|
74
|
+
summary: "Internal guardrails for finance data, PII, and regeneration semantics.",
|
|
75
|
+
kind: "reference",
|
|
76
|
+
visibility: "internal",
|
|
77
|
+
route: "/docs/examples/wealth-snapshot/constraints",
|
|
78
|
+
tags: ["finance", "constraints", "internal"],
|
|
79
|
+
body: `## Constraints
|
|
88
80
|
- Net worth and goal calculations must stay spec-driven; avoid hidden math.
|
|
89
81
|
- Events to emit: asset.created/updated, liability.created/updated, goal.created/updated, snapshot.recorded.
|
|
90
82
|
- Regeneration should not alter currency/unit semantics without explicit spec change.
|
|
@@ -97,8 +89,6 @@ registerDocBlocks([
|
|
|
97
89
|
- Add fixtures for currency/unit changes and snapshot calculations.
|
|
98
90
|
- Ensure Audit Trail covers all financial mutations; Notifications optional for goals/thresholds.
|
|
99
91
|
- Use Feature Flags for new indicators/alert rules; default safe/off.`
|
|
100
|
-
|
|
101
|
-
]
|
|
102
|
-
|
|
103
|
-
//#endregion
|
|
104
|
-
//# sourceMappingURL=wealth-snapshot.docblock.js.map
|
|
92
|
+
}
|
|
93
|
+
];
|
|
94
|
+
registerDocBlocks(wealthSnapshotDocBlocks);
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,132 +1,127 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
ownerId: _contractspec_lib_schema0.EntityScalarField;
|
|
18
|
-
createdAt: _contractspec_lib_schema0.EntityScalarField;
|
|
19
|
-
updatedAt: _contractspec_lib_schema0.EntityScalarField;
|
|
1
|
+
import type { ModuleSchemaContribution } from '@contractspec/lib.schema';
|
|
2
|
+
export declare const AccountTypeEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
3
|
+
export declare const AssetCategoryEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
4
|
+
export declare const LiabilityCategoryEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
5
|
+
export declare const GoalStatusEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
6
|
+
export declare const AccountEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
7
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
8
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
9
|
+
type: import("@contractspec/lib.schema").EntityEnumField;
|
|
10
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
11
|
+
balance: import("@contractspec/lib.schema").EntityScalarField;
|
|
12
|
+
institution: import("@contractspec/lib.schema").EntityScalarField;
|
|
13
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
14
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
15
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
16
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
20
17
|
}>;
|
|
21
|
-
declare const AssetEntity:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
18
|
+
export declare const AssetEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
19
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
20
|
+
accountId: import("@contractspec/lib.schema").EntityScalarField;
|
|
21
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
22
|
+
category: import("@contractspec/lib.schema").EntityEnumField;
|
|
23
|
+
value: import("@contractspec/lib.schema").EntityScalarField;
|
|
24
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
25
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
26
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
27
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
28
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
29
|
+
account: import("@contractspec/lib.schema").EntityRelationField;
|
|
33
30
|
}>;
|
|
34
|
-
declare const LiabilityEntity:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
31
|
+
export declare const LiabilityEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
32
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
33
|
+
accountId: import("@contractspec/lib.schema").EntityScalarField;
|
|
34
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
35
|
+
category: import("@contractspec/lib.schema").EntityEnumField;
|
|
36
|
+
balance: import("@contractspec/lib.schema").EntityScalarField;
|
|
37
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
38
|
+
interestRate: import("@contractspec/lib.schema").EntityScalarField;
|
|
39
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
40
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
41
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
42
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
43
|
+
account: import("@contractspec/lib.schema").EntityRelationField;
|
|
47
44
|
}>;
|
|
48
|
-
declare const GoalEntity:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
45
|
+
export declare const GoalEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
46
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
47
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
48
|
+
targetAmount: import("@contractspec/lib.schema").EntityScalarField;
|
|
49
|
+
currentAmount: import("@contractspec/lib.schema").EntityScalarField;
|
|
50
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
51
|
+
targetDate: import("@contractspec/lib.schema").EntityScalarField;
|
|
52
|
+
status: import("@contractspec/lib.schema").EntityEnumField;
|
|
53
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
54
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
55
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
56
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
60
57
|
}>;
|
|
61
|
-
declare const NetWorthSnapshotEntity:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
58
|
+
export declare const NetWorthSnapshotEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
59
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
60
|
+
asOf: import("@contractspec/lib.schema").EntityScalarField;
|
|
61
|
+
totalAssets: import("@contractspec/lib.schema").EntityScalarField;
|
|
62
|
+
totalLiabilities: import("@contractspec/lib.schema").EntityScalarField;
|
|
63
|
+
netWorth: import("@contractspec/lib.schema").EntityScalarField;
|
|
64
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
65
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
66
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
70
67
|
}>;
|
|
71
|
-
declare const wealthSnapshotEntities: (
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}> |
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
}> |
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}> |
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}> |
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
68
|
+
export declare const wealthSnapshotEntities: (import("@contractspec/lib.schema").EntitySpec<{
|
|
69
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
70
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
71
|
+
type: import("@contractspec/lib.schema").EntityEnumField;
|
|
72
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
73
|
+
balance: import("@contractspec/lib.schema").EntityScalarField;
|
|
74
|
+
institution: import("@contractspec/lib.schema").EntityScalarField;
|
|
75
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
76
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
77
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
78
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
79
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
80
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
81
|
+
accountId: import("@contractspec/lib.schema").EntityScalarField;
|
|
82
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
83
|
+
category: import("@contractspec/lib.schema").EntityEnumField;
|
|
84
|
+
value: import("@contractspec/lib.schema").EntityScalarField;
|
|
85
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
86
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
87
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
88
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
89
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
90
|
+
account: import("@contractspec/lib.schema").EntityRelationField;
|
|
91
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
92
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
93
|
+
accountId: import("@contractspec/lib.schema").EntityScalarField;
|
|
94
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
95
|
+
category: import("@contractspec/lib.schema").EntityEnumField;
|
|
96
|
+
balance: import("@contractspec/lib.schema").EntityScalarField;
|
|
97
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
98
|
+
interestRate: import("@contractspec/lib.schema").EntityScalarField;
|
|
99
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
100
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
101
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
102
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
103
|
+
account: import("@contractspec/lib.schema").EntityRelationField;
|
|
104
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
105
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
106
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
107
|
+
targetAmount: import("@contractspec/lib.schema").EntityScalarField;
|
|
108
|
+
currentAmount: import("@contractspec/lib.schema").EntityScalarField;
|
|
109
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
110
|
+
targetDate: import("@contractspec/lib.schema").EntityScalarField;
|
|
111
|
+
status: import("@contractspec/lib.schema").EntityEnumField;
|
|
112
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
113
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
114
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
115
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
116
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
117
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
118
|
+
asOf: import("@contractspec/lib.schema").EntityScalarField;
|
|
119
|
+
totalAssets: import("@contractspec/lib.schema").EntityScalarField;
|
|
120
|
+
totalLiabilities: import("@contractspec/lib.schema").EntityScalarField;
|
|
121
|
+
netWorth: import("@contractspec/lib.schema").EntityScalarField;
|
|
122
|
+
currency: import("@contractspec/lib.schema").EntityScalarField;
|
|
123
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
124
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
128
125
|
}>)[];
|
|
129
|
-
declare const wealthSnapshotSchemaContribution: ModuleSchemaContribution;
|
|
130
|
-
//#endregion
|
|
131
|
-
export { AccountEntity, AccountTypeEnum, AssetCategoryEnum, AssetEntity, GoalEntity, GoalStatusEnum, LiabilityCategoryEnum, LiabilityEntity, NetWorthSnapshotEntity, wealthSnapshotEntities, wealthSnapshotSchemaContribution };
|
|
126
|
+
export declare const wealthSnapshotSchemaContribution: ModuleSchemaContribution;
|
|
132
127
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAIzE,eAAO,MAAM,eAAe,kDAK1B,CAAC;AAEH,eAAO,MAAM,iBAAiB,kDAK5B,CAAC;AAEH,eAAO,MAAM,qBAAqB,kDAKhC,CAAC;AAEH,eAAO,MAAM,cAAc,kDAKzB,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;EAmBxB,CAAC;AAEH,eAAO,MAAM,WAAW;;;;;;;;;;;;EAyBtB,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;EA+B1B,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;EAiCrB,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;EAgBjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAMlC,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,wBAU9C,CAAC"}
|