@contractspec/example.wealth-snapshot 1.55.0 → 1.56.1
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/operations/index.d.ts +7 -7
- package/dist/presentations.d.ts +6 -6
- package/dist/presentations.d.ts.map +1 -1
- package/dist/wealth-snapshot.capability.d.ts +4 -4
- package/dist/wealth-snapshot.capability.d.ts.map +1 -1
- package/dist/wealth-snapshot.feature.d.ts +2 -2
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _contractspec_lib_schema176 from "@contractspec/lib.schema";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _contractspec_lib_contracts17 from "@contractspec/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/operations/index.d.ts
|
|
5
5
|
declare const AccountModel: _contractspec_lib_schema176.SchemaModel<{
|
|
@@ -116,7 +116,7 @@ declare const NetWorthSnapshotModel: _contractspec_lib_schema176.SchemaModel<{
|
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
}>;
|
|
119
|
-
declare const CreateAccountContract:
|
|
119
|
+
declare const CreateAccountContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
120
120
|
name: {
|
|
121
121
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
@@ -159,7 +159,7 @@ declare const CreateAccountContract: _contractspec_lib_contracts12.OperationSpec
|
|
|
159
159
|
isOptional: false;
|
|
160
160
|
};
|
|
161
161
|
}>, undefined>;
|
|
162
|
-
declare const AddAssetContract:
|
|
162
|
+
declare const AddAssetContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
163
163
|
accountId: {
|
|
164
164
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
165
165
|
isOptional: true;
|
|
@@ -206,7 +206,7 @@ declare const AddAssetContract: _contractspec_lib_contracts12.OperationSpec<_con
|
|
|
206
206
|
isOptional: false;
|
|
207
207
|
};
|
|
208
208
|
}>, undefined>;
|
|
209
|
-
declare const AddLiabilityContract:
|
|
209
|
+
declare const AddLiabilityContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
210
210
|
accountId: {
|
|
211
211
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
212
212
|
isOptional: true;
|
|
@@ -253,7 +253,7 @@ declare const AddLiabilityContract: _contractspec_lib_contracts12.OperationSpec<
|
|
|
253
253
|
isOptional: false;
|
|
254
254
|
};
|
|
255
255
|
}>, undefined>;
|
|
256
|
-
declare const CreateGoalContract:
|
|
256
|
+
declare const CreateGoalContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
257
257
|
name: {
|
|
258
258
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
259
259
|
isOptional: false;
|
|
@@ -300,7 +300,7 @@ declare const CreateGoalContract: _contractspec_lib_contracts12.OperationSpec<_c
|
|
|
300
300
|
isOptional: false;
|
|
301
301
|
};
|
|
302
302
|
}>, undefined>;
|
|
303
|
-
declare const UpdateGoalContract:
|
|
303
|
+
declare const UpdateGoalContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
304
304
|
goalId: {
|
|
305
305
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
306
306
|
isOptional: false;
|
|
@@ -339,7 +339,7 @@ declare const UpdateGoalContract: _contractspec_lib_contracts12.OperationSpec<_c
|
|
|
339
339
|
isOptional: false;
|
|
340
340
|
};
|
|
341
341
|
}>, undefined>;
|
|
342
|
-
declare const GetNetWorthContract:
|
|
342
|
+
declare const GetNetWorthContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema176.SchemaModel<{
|
|
343
343
|
orgId: {
|
|
344
344
|
type: _contractspec_lib_schema176.FieldType<string, string>;
|
|
345
345
|
isOptional: false;
|
package/dist/presentations.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts8 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/presentations.d.ts
|
|
4
|
-
declare const WealthDashboardPresentation:
|
|
5
|
-
declare const AccountsListPresentation:
|
|
6
|
-
declare const AssetsListPresentation:
|
|
7
|
-
declare const LiabilitiesListPresentation:
|
|
8
|
-
declare const GoalsListPresentation:
|
|
4
|
+
declare const WealthDashboardPresentation: _contractspec_lib_contracts8.PresentationSpec;
|
|
5
|
+
declare const AccountsListPresentation: _contractspec_lib_contracts8.PresentationSpec;
|
|
6
|
+
declare const AssetsListPresentation: _contractspec_lib_contracts8.PresentationSpec;
|
|
7
|
+
declare const LiabilitiesListPresentation: _contractspec_lib_contracts8.PresentationSpec;
|
|
8
|
+
declare const GoalsListPresentation: _contractspec_lib_contracts8.PresentationSpec;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { AccountsListPresentation, AssetsListPresentation, GoalsListPresentation, LiabilitiesListPresentation, WealthDashboardPresentation };
|
|
11
11
|
//# sourceMappingURL=presentations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"presentations.d.ts","names":[],"sources":["../src/presentations.ts"],"sourcesContent":[],"mappings":";;;cAEa,6BAsBX,
|
|
1
|
+
{"version":3,"file":"presentations.d.ts","names":[],"sources":["../src/presentations.ts"],"sourcesContent":[],"mappings":";;;cAEa,6BAsBX,4BAAA,CAtBsC;cAwB3B,0BAsBX,4BAAA,CAtBmC;cAwBxB,wBAsBX,4BAAA,CAtBiC;AAhDtB,cAwEA,2BAlDX,EAwEA,4BAAA,CAtBsC,gBAlDtC;AAEW,cAwEA,qBAlDX,EAwEA,4BAAA,CAtBgC,gBAlDhC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts13 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/wealth-snapshot.capability.d.ts
|
|
4
|
-
declare const AccountsCapability:
|
|
5
|
-
declare const NetWorthCapability:
|
|
6
|
-
declare const GoalsCapability:
|
|
4
|
+
declare const AccountsCapability: _contractspec_lib_contracts13.CapabilitySpec;
|
|
5
|
+
declare const NetWorthCapability: _contractspec_lib_contracts13.CapabilitySpec;
|
|
6
|
+
declare const GoalsCapability: _contractspec_lib_contracts13.CapabilitySpec;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { AccountsCapability, GoalsCapability, NetWorthCapability };
|
|
9
9
|
//# sourceMappingURL=wealth-snapshot.capability.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wealth-snapshot.capability.d.ts","names":[],"sources":["../src/wealth-snapshot.capability.ts"],"sourcesContent":[],"mappings":";;;cAEa,oBAUX,
|
|
1
|
+
{"version":3,"file":"wealth-snapshot.capability.d.ts","names":[],"sources":["../src/wealth-snapshot.capability.ts"],"sourcesContent":[],"mappings":";;;cAEa,oBAUX,6BAAA,CAV6B;cAYlB,oBAUX,6BAAA,CAV6B;cAYlB,iBAUX,6BAAA,CAV0B"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts16 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/wealth-snapshot.feature.d.ts
|
|
4
|
-
declare const WealthSnapshotFeature:
|
|
4
|
+
declare const WealthSnapshotFeature: _contractspec_lib_contracts16.FeatureModuleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { WealthSnapshotFeature };
|
|
7
7
|
//# sourceMappingURL=wealth-snapshot.feature.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.wealth-snapshot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.56.1",
|
|
4
4
|
"description": "Wealth Snapshot mini-app for accounts, assets, liabilities, and goals",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"lint:check": "eslint src"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@contractspec/lib.identity-rbac": "1.
|
|
21
|
-
"@contractspec/lib.schema": "1.
|
|
22
|
-
"@contractspec/lib.contracts": "1.
|
|
23
|
-
"@contractspec/module.audit-trail": "1.
|
|
24
|
-
"@contractspec/module.notifications": "1.
|
|
20
|
+
"@contractspec/lib.identity-rbac": "1.56.1",
|
|
21
|
+
"@contractspec/lib.schema": "1.56.1",
|
|
22
|
+
"@contractspec/lib.contracts": "1.56.1",
|
|
23
|
+
"@contractspec/module.audit-trail": "1.56.1",
|
|
24
|
+
"@contractspec/module.notifications": "1.56.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@contractspec/tool.typescript": "1.
|
|
28
|
-
"@contractspec/tool.tsdown": "1.
|
|
27
|
+
"@contractspec/tool.typescript": "1.56.1",
|
|
28
|
+
"@contractspec/tool.tsdown": "1.56.1",
|
|
29
29
|
"typescript": "^5.9.3"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|