@lssm-tech/example.wealth-snapshot 3.8.5 → 5.0.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.
Files changed (62) hide show
  1. package/README.md +5 -5
  2. package/package.json +79 -117
  3. package/dist/browser/docs/index.js +0 -49
  4. package/dist/browser/docs/wealth-snapshot.docblock.js +0 -49
  5. package/dist/browser/entities/index.js +0 -1
  6. package/dist/browser/events.js +0 -1
  7. package/dist/browser/example.js +0 -1
  8. package/dist/browser/handlers/index.js +0 -1
  9. package/dist/browser/index.js +0 -49
  10. package/dist/browser/operations/index.js +0 -1
  11. package/dist/browser/presentations/index.js +0 -1
  12. package/dist/browser/presentations.js +0 -1
  13. package/dist/browser/ui/WealthSnapshotPreview.js +0 -1
  14. package/dist/browser/ui/index.js +0 -1
  15. package/dist/browser/ui/wealth-snapshot-preview.data.js +0 -1
  16. package/dist/browser/wealth-snapshot.capability.js +0 -1
  17. package/dist/browser/wealth-snapshot.feature.js +0 -1
  18. package/dist/docs/index.d.ts +0 -1
  19. package/dist/docs/index.js +0 -50
  20. package/dist/docs/wealth-snapshot.docblock.d.ts +0 -1
  21. package/dist/docs/wealth-snapshot.docblock.js +0 -50
  22. package/dist/entities/index.d.ts +0 -126
  23. package/dist/entities/index.js +0 -2
  24. package/dist/events.d.ts +0 -218
  25. package/dist/events.js +0 -2
  26. package/dist/example.d.ts +0 -3
  27. package/dist/example.js +0 -2
  28. package/dist/handlers/index.d.ts +0 -4
  29. package/dist/handlers/index.js +0 -2
  30. package/dist/index.d.ts +0 -15
  31. package/dist/index.js +0 -50
  32. package/dist/node/docs/index.js +0 -49
  33. package/dist/node/docs/wealth-snapshot.docblock.js +0 -49
  34. package/dist/node/entities/index.js +0 -1
  35. package/dist/node/events.js +0 -1
  36. package/dist/node/example.js +0 -1
  37. package/dist/node/handlers/index.js +0 -1
  38. package/dist/node/index.js +0 -49
  39. package/dist/node/operations/index.js +0 -1
  40. package/dist/node/presentations/index.js +0 -1
  41. package/dist/node/presentations.js +0 -1
  42. package/dist/node/ui/WealthSnapshotPreview.js +0 -1
  43. package/dist/node/ui/index.js +0 -1
  44. package/dist/node/ui/wealth-snapshot-preview.data.js +0 -1
  45. package/dist/node/wealth-snapshot.capability.js +0 -1
  46. package/dist/node/wealth-snapshot.feature.js +0 -1
  47. package/dist/operations/index.d.ts +0 -403
  48. package/dist/operations/index.js +0 -2
  49. package/dist/presentations/index.d.ts +0 -1
  50. package/dist/presentations/index.js +0 -2
  51. package/dist/presentations.d.ts +0 -5
  52. package/dist/presentations.js +0 -2
  53. package/dist/ui/WealthSnapshotPreview.d.ts +0 -1
  54. package/dist/ui/WealthSnapshotPreview.js +0 -2
  55. package/dist/ui/index.d.ts +0 -1
  56. package/dist/ui/index.js +0 -2
  57. package/dist/ui/wealth-snapshot-preview.data.d.ts +0 -51
  58. package/dist/ui/wealth-snapshot-preview.data.js +0 -2
  59. package/dist/wealth-snapshot.capability.d.ts +0 -3
  60. package/dist/wealth-snapshot.capability.js +0 -2
  61. package/dist/wealth-snapshot.feature.d.ts +0 -1
  62. package/dist/wealth-snapshot.feature.js +0 -2
@@ -1,403 +0,0 @@
1
- export declare const AccountModel: import("@contractspec/lib.schema").SchemaModel<{
2
- id: {
3
- type: import("@contractspec/lib.schema").FieldType<string, string>;
4
- isOptional: false;
5
- };
6
- name: {
7
- type: import("@contractspec/lib.schema").FieldType<string, string>;
8
- isOptional: false;
9
- };
10
- type: {
11
- type: import("@contractspec/lib.schema").FieldType<string, string>;
12
- isOptional: false;
13
- };
14
- currency: {
15
- type: import("@contractspec/lib.schema").FieldType<string, string>;
16
- isOptional: false;
17
- };
18
- balance: {
19
- type: import("@contractspec/lib.schema").FieldType<number, number>;
20
- isOptional: false;
21
- };
22
- }>;
23
- export declare const AssetModel: import("@contractspec/lib.schema").SchemaModel<{
24
- id: {
25
- type: import("@contractspec/lib.schema").FieldType<string, string>;
26
- isOptional: false;
27
- };
28
- name: {
29
- type: import("@contractspec/lib.schema").FieldType<string, string>;
30
- isOptional: false;
31
- };
32
- category: {
33
- type: import("@contractspec/lib.schema").FieldType<string, string>;
34
- isOptional: false;
35
- };
36
- value: {
37
- type: import("@contractspec/lib.schema").FieldType<number, number>;
38
- isOptional: false;
39
- };
40
- currency: {
41
- type: import("@contractspec/lib.schema").FieldType<string, string>;
42
- isOptional: false;
43
- };
44
- }>;
45
- export declare const LiabilityModel: import("@contractspec/lib.schema").SchemaModel<{
46
- id: {
47
- type: import("@contractspec/lib.schema").FieldType<string, string>;
48
- isOptional: false;
49
- };
50
- name: {
51
- type: import("@contractspec/lib.schema").FieldType<string, string>;
52
- isOptional: false;
53
- };
54
- category: {
55
- type: import("@contractspec/lib.schema").FieldType<string, string>;
56
- isOptional: false;
57
- };
58
- balance: {
59
- type: import("@contractspec/lib.schema").FieldType<number, number>;
60
- isOptional: false;
61
- };
62
- currency: {
63
- type: import("@contractspec/lib.schema").FieldType<string, string>;
64
- isOptional: false;
65
- };
66
- }>;
67
- export declare const GoalModel: import("@contractspec/lib.schema").SchemaModel<{
68
- id: {
69
- type: import("@contractspec/lib.schema").FieldType<string, string>;
70
- isOptional: false;
71
- };
72
- name: {
73
- type: import("@contractspec/lib.schema").FieldType<string, string>;
74
- isOptional: false;
75
- };
76
- targetAmount: {
77
- type: import("@contractspec/lib.schema").FieldType<number, number>;
78
- isOptional: false;
79
- };
80
- currentAmount: {
81
- type: import("@contractspec/lib.schema").FieldType<number, number>;
82
- isOptional: false;
83
- };
84
- currency: {
85
- type: import("@contractspec/lib.schema").FieldType<string, string>;
86
- isOptional: false;
87
- };
88
- status: {
89
- type: import("@contractspec/lib.schema").FieldType<string, string>;
90
- isOptional: false;
91
- };
92
- }>;
93
- export declare const NetWorthSnapshotModel: import("@contractspec/lib.schema").SchemaModel<{
94
- asOf: {
95
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
96
- isOptional: false;
97
- };
98
- totalAssets: {
99
- type: import("@contractspec/lib.schema").FieldType<number, number>;
100
- isOptional: false;
101
- };
102
- totalLiabilities: {
103
- type: import("@contractspec/lib.schema").FieldType<number, number>;
104
- isOptional: false;
105
- };
106
- netWorth: {
107
- type: import("@contractspec/lib.schema").FieldType<number, number>;
108
- isOptional: false;
109
- };
110
- currency: {
111
- type: import("@contractspec/lib.schema").FieldType<string, string>;
112
- isOptional: false;
113
- };
114
- }>;
115
- export declare const CreateAccountContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
116
- name: {
117
- type: import("@contractspec/lib.schema").FieldType<string, string>;
118
- isOptional: false;
119
- };
120
- type: {
121
- type: import("@contractspec/lib.schema").FieldType<string, string>;
122
- isOptional: false;
123
- };
124
- currency: {
125
- type: import("@contractspec/lib.schema").FieldType<string, string>;
126
- isOptional: true;
127
- };
128
- balance: {
129
- type: import("@contractspec/lib.schema").FieldType<number, number>;
130
- isOptional: true;
131
- };
132
- orgId: {
133
- type: import("@contractspec/lib.schema").FieldType<string, string>;
134
- isOptional: false;
135
- };
136
- }>, import("@contractspec/lib.schema").SchemaModel<{
137
- id: {
138
- type: import("@contractspec/lib.schema").FieldType<string, string>;
139
- isOptional: false;
140
- };
141
- name: {
142
- type: import("@contractspec/lib.schema").FieldType<string, string>;
143
- isOptional: false;
144
- };
145
- type: {
146
- type: import("@contractspec/lib.schema").FieldType<string, string>;
147
- isOptional: false;
148
- };
149
- currency: {
150
- type: import("@contractspec/lib.schema").FieldType<string, string>;
151
- isOptional: false;
152
- };
153
- balance: {
154
- type: import("@contractspec/lib.schema").FieldType<number, number>;
155
- isOptional: false;
156
- };
157
- }>, undefined>;
158
- export declare const AddAssetContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
159
- accountId: {
160
- type: import("@contractspec/lib.schema").FieldType<string, string>;
161
- isOptional: true;
162
- };
163
- name: {
164
- type: import("@contractspec/lib.schema").FieldType<string, string>;
165
- isOptional: false;
166
- };
167
- category: {
168
- type: import("@contractspec/lib.schema").FieldType<string, string>;
169
- isOptional: false;
170
- };
171
- value: {
172
- type: import("@contractspec/lib.schema").FieldType<number, number>;
173
- isOptional: false;
174
- };
175
- currency: {
176
- type: import("@contractspec/lib.schema").FieldType<string, string>;
177
- isOptional: true;
178
- };
179
- orgId: {
180
- type: import("@contractspec/lib.schema").FieldType<string, string>;
181
- isOptional: false;
182
- };
183
- }>, import("@contractspec/lib.schema").SchemaModel<{
184
- id: {
185
- type: import("@contractspec/lib.schema").FieldType<string, string>;
186
- isOptional: false;
187
- };
188
- name: {
189
- type: import("@contractspec/lib.schema").FieldType<string, string>;
190
- isOptional: false;
191
- };
192
- category: {
193
- type: import("@contractspec/lib.schema").FieldType<string, string>;
194
- isOptional: false;
195
- };
196
- value: {
197
- type: import("@contractspec/lib.schema").FieldType<number, number>;
198
- isOptional: false;
199
- };
200
- currency: {
201
- type: import("@contractspec/lib.schema").FieldType<string, string>;
202
- isOptional: false;
203
- };
204
- }>, undefined>;
205
- export declare const AddLiabilityContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
206
- accountId: {
207
- type: import("@contractspec/lib.schema").FieldType<string, string>;
208
- isOptional: true;
209
- };
210
- name: {
211
- type: import("@contractspec/lib.schema").FieldType<string, string>;
212
- isOptional: false;
213
- };
214
- category: {
215
- type: import("@contractspec/lib.schema").FieldType<string, string>;
216
- isOptional: false;
217
- };
218
- balance: {
219
- type: import("@contractspec/lib.schema").FieldType<number, number>;
220
- isOptional: false;
221
- };
222
- currency: {
223
- type: import("@contractspec/lib.schema").FieldType<string, string>;
224
- isOptional: true;
225
- };
226
- orgId: {
227
- type: import("@contractspec/lib.schema").FieldType<string, string>;
228
- isOptional: false;
229
- };
230
- }>, import("@contractspec/lib.schema").SchemaModel<{
231
- id: {
232
- type: import("@contractspec/lib.schema").FieldType<string, string>;
233
- isOptional: false;
234
- };
235
- name: {
236
- type: import("@contractspec/lib.schema").FieldType<string, string>;
237
- isOptional: false;
238
- };
239
- category: {
240
- type: import("@contractspec/lib.schema").FieldType<string, string>;
241
- isOptional: false;
242
- };
243
- balance: {
244
- type: import("@contractspec/lib.schema").FieldType<number, number>;
245
- isOptional: false;
246
- };
247
- currency: {
248
- type: import("@contractspec/lib.schema").FieldType<string, string>;
249
- isOptional: false;
250
- };
251
- }>, undefined>;
252
- export declare const CreateGoalContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
253
- name: {
254
- type: import("@contractspec/lib.schema").FieldType<string, string>;
255
- isOptional: false;
256
- };
257
- targetAmount: {
258
- type: import("@contractspec/lib.schema").FieldType<number, number>;
259
- isOptional: false;
260
- };
261
- currency: {
262
- type: import("@contractspec/lib.schema").FieldType<string, string>;
263
- isOptional: true;
264
- };
265
- targetDate: {
266
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
267
- isOptional: true;
268
- };
269
- orgId: {
270
- type: import("@contractspec/lib.schema").FieldType<string, string>;
271
- isOptional: false;
272
- };
273
- }>, import("@contractspec/lib.schema").SchemaModel<{
274
- id: {
275
- type: import("@contractspec/lib.schema").FieldType<string, string>;
276
- isOptional: false;
277
- };
278
- name: {
279
- type: import("@contractspec/lib.schema").FieldType<string, string>;
280
- isOptional: false;
281
- };
282
- targetAmount: {
283
- type: import("@contractspec/lib.schema").FieldType<number, number>;
284
- isOptional: false;
285
- };
286
- currentAmount: {
287
- type: import("@contractspec/lib.schema").FieldType<number, number>;
288
- isOptional: false;
289
- };
290
- currency: {
291
- type: import("@contractspec/lib.schema").FieldType<string, string>;
292
- isOptional: false;
293
- };
294
- status: {
295
- type: import("@contractspec/lib.schema").FieldType<string, string>;
296
- isOptional: false;
297
- };
298
- }>, undefined>;
299
- export declare const UpdateGoalContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
300
- goalId: {
301
- type: import("@contractspec/lib.schema").FieldType<string, string>;
302
- isOptional: false;
303
- };
304
- currentAmount: {
305
- type: import("@contractspec/lib.schema").FieldType<number, number>;
306
- isOptional: false;
307
- };
308
- status: {
309
- type: import("@contractspec/lib.schema").FieldType<string, string>;
310
- isOptional: true;
311
- };
312
- }>, import("@contractspec/lib.schema").SchemaModel<{
313
- id: {
314
- type: import("@contractspec/lib.schema").FieldType<string, string>;
315
- isOptional: false;
316
- };
317
- name: {
318
- type: import("@contractspec/lib.schema").FieldType<string, string>;
319
- isOptional: false;
320
- };
321
- targetAmount: {
322
- type: import("@contractspec/lib.schema").FieldType<number, number>;
323
- isOptional: false;
324
- };
325
- currentAmount: {
326
- type: import("@contractspec/lib.schema").FieldType<number, number>;
327
- isOptional: false;
328
- };
329
- currency: {
330
- type: import("@contractspec/lib.schema").FieldType<string, string>;
331
- isOptional: false;
332
- };
333
- status: {
334
- type: import("@contractspec/lib.schema").FieldType<string, string>;
335
- isOptional: false;
336
- };
337
- }>, undefined>;
338
- export declare const GetNetWorthContract: import("@contractspec/lib.contracts-spec").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
339
- orgId: {
340
- type: import("@contractspec/lib.schema").FieldType<string, string>;
341
- isOptional: false;
342
- };
343
- from: {
344
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
345
- isOptional: true;
346
- };
347
- to: {
348
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
349
- isOptional: true;
350
- };
351
- }>, import("@contractspec/lib.schema").SchemaModel<{
352
- snapshots: {
353
- type: import("@contractspec/lib.schema").SchemaModel<{
354
- asOf: {
355
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
356
- isOptional: false;
357
- };
358
- totalAssets: {
359
- type: import("@contractspec/lib.schema").FieldType<number, number>;
360
- isOptional: false;
361
- };
362
- totalLiabilities: {
363
- type: import("@contractspec/lib.schema").FieldType<number, number>;
364
- isOptional: false;
365
- };
366
- netWorth: {
367
- type: import("@contractspec/lib.schema").FieldType<number, number>;
368
- isOptional: false;
369
- };
370
- currency: {
371
- type: import("@contractspec/lib.schema").FieldType<string, string>;
372
- isOptional: false;
373
- };
374
- }>;
375
- isArray: true;
376
- isOptional: false;
377
- };
378
- latest: {
379
- type: import("@contractspec/lib.schema").SchemaModel<{
380
- asOf: {
381
- type: import("@contractspec/lib.schema").FieldType<Date, string>;
382
- isOptional: false;
383
- };
384
- totalAssets: {
385
- type: import("@contractspec/lib.schema").FieldType<number, number>;
386
- isOptional: false;
387
- };
388
- totalLiabilities: {
389
- type: import("@contractspec/lib.schema").FieldType<number, number>;
390
- isOptional: false;
391
- };
392
- netWorth: {
393
- type: import("@contractspec/lib.schema").FieldType<number, number>;
394
- isOptional: false;
395
- };
396
- currency: {
397
- type: import("@contractspec/lib.schema").FieldType<string, string>;
398
- isOptional: false;
399
- };
400
- }>;
401
- isOptional: true;
402
- };
403
- }>, undefined>;
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{defineCommand as q,defineQuery as x}from"@contractspec/lib.contracts-spec";import{defineSchemaModel as j,ScalarTypeEnum as g}from"@contractspec/lib.schema";var k=["examples.wealth-snapshot"],z=j({name:"Account",description:"Account model",fields:{id:{type:g.String_unsecure(),isOptional:!1},name:{type:g.String_unsecure(),isOptional:!1},type:{type:g.String_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!1},balance:{type:g.Float_unsecure(),isOptional:!1}}}),B=j({name:"Asset",description:"Asset model",fields:{id:{type:g.String_unsecure(),isOptional:!1},name:{type:g.String_unsecure(),isOptional:!1},category:{type:g.String_unsecure(),isOptional:!1},value:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!1}}}),D=j({name:"Liability",description:"Liability model",fields:{id:{type:g.String_unsecure(),isOptional:!1},name:{type:g.String_unsecure(),isOptional:!1},category:{type:g.String_unsecure(),isOptional:!1},balance:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!1}}}),w=j({name:"Goal",description:"Goal model",fields:{id:{type:g.String_unsecure(),isOptional:!1},name:{type:g.String_unsecure(),isOptional:!1},targetAmount:{type:g.Float_unsecure(),isOptional:!1},currentAmount:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!1},status:{type:g.String_unsecure(),isOptional:!1}}}),v=j({name:"NetWorthSnapshot",description:"Net worth snapshot model",fields:{asOf:{type:g.DateTime(),isOptional:!1},totalAssets:{type:g.Float_unsecure(),isOptional:!1},totalLiabilities:{type:g.Float_unsecure(),isOptional:!1},netWorth:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!1}}}),F=j({name:"CreateAccountInput",description:"Create account input",fields:{name:{type:g.String_unsecure(),isOptional:!1},type:{type:g.String_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!0},balance:{type:g.Float_unsecure(),isOptional:!0},orgId:{type:g.String_unsecure(),isOptional:!1}}}),H=j({name:"AddAssetInput",description:"Add asset input",fields:{accountId:{type:g.String_unsecure(),isOptional:!0},name:{type:g.String_unsecure(),isOptional:!1},category:{type:g.String_unsecure(),isOptional:!1},value:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!0},orgId:{type:g.String_unsecure(),isOptional:!1}}}),J=j({name:"AddLiabilityInput",description:"Add liability input",fields:{accountId:{type:g.String_unsecure(),isOptional:!0},name:{type:g.String_unsecure(),isOptional:!1},category:{type:g.String_unsecure(),isOptional:!1},balance:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!0},orgId:{type:g.String_unsecure(),isOptional:!1}}}),K=j({name:"UpdateGoalInput",description:"Update goal progress",fields:{goalId:{type:g.String_unsecure(),isOptional:!1},currentAmount:{type:g.Float_unsecure(),isOptional:!1},status:{type:g.String_unsecure(),isOptional:!0}}}),P=j({name:"CreateGoalInput",description:"Create goal input",fields:{name:{type:g.String_unsecure(),isOptional:!1},targetAmount:{type:g.Float_unsecure(),isOptional:!1},currency:{type:g.String_unsecure(),isOptional:!0},targetDate:{type:g.DateTime(),isOptional:!0},orgId:{type:g.String_unsecure(),isOptional:!1}}}),V=j({name:"NetWorthQueryInput",description:"Filter for net worth snapshots",fields:{orgId:{type:g.String_unsecure(),isOptional:!1},from:{type:g.DateTime(),isOptional:!0},to:{type:g.DateTime(),isOptional:!0}}}),Z=q({meta:{key:"wealth.account.create",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","account","create"],description:"Create a financial account.",goal:"Track account balances.",context:"Onboarding/import."},io:{input:F,output:z},policy:{auth:"user"}}),_=q({meta:{key:"wealth.asset.add",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","asset","add"],description:"Add an asset position.",goal:"Track holdings.",context:"Asset onboarding/update."},io:{input:H,output:B},policy:{auth:"user"}}),$=q({meta:{key:"wealth.liability.add",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","liability","add"],description:"Add a liability.",goal:"Track debts.",context:"Debt onboarding/update."},io:{input:J,output:D},policy:{auth:"user"}}),U=q({meta:{key:"wealth.goal.create",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","goal","create"],description:"Create a financial goal.",goal:"Track progress toward goals.",context:"Planning."},io:{input:P,output:w},policy:{auth:"user"}}),L=q({meta:{key:"wealth.goal.update",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","goal","update"],description:"Update goal progress.",goal:"Keep progress current.",context:"Periodic update."},io:{input:K,output:w},policy:{auth:"user"}}),Q=x({meta:{key:"wealth.networth.get",version:"1.0.0",stability:"stable",owners:[...k],tags:["wealth","networth"],description:"Get net worth snapshots for a period.",goal:"Render charts and indicators.",context:"Dashboard."},io:{input:V,output:j({name:"NetWorthQueryOutput",description:"Snapshots + latest indicators",fields:{snapshots:{type:v,isArray:!0,isOptional:!1},latest:{type:v,isOptional:!0}}})},policy:{auth:"user"}});export{L as UpdateGoalContract,v as NetWorthSnapshotModel,D as LiabilityModel,w as GoalModel,Q as GetNetWorthContract,U as CreateGoalContract,Z as CreateAccountContract,B as AssetModel,$ as AddLiabilityContract,_ as AddAssetContract,z as AccountModel};
@@ -1 +0,0 @@
1
- export declare const WealthSnapshotPresentations: string[];
@@ -1,2 +0,0 @@
1
- // @bun
2
- var s=["wealth-snapshot.dashboard","wealth-snapshot.accounts.list","wealth-snapshot.assets.list","wealth-snapshot.liabilities.list","wealth-snapshot.goals.list"];export{s as WealthSnapshotPresentations};
@@ -1,5 +0,0 @@
1
- export declare const WealthDashboardPresentation: import("@contractspec/lib.contracts-spec").PresentationSpec;
2
- export declare const AccountsListPresentation: import("@contractspec/lib.contracts-spec").PresentationSpec;
3
- export declare const AssetsListPresentation: import("@contractspec/lib.contracts-spec").PresentationSpec;
4
- export declare const LiabilitiesListPresentation: import("@contractspec/lib.contracts-spec").PresentationSpec;
5
- export declare const GoalsListPresentation: import("@contractspec/lib.contracts-spec").PresentationSpec;
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{definePresentation as g,StabilityEnum as h}from"@contractspec/lib.contracts-spec";var k=g({meta:{key:"wealth-snapshot.dashboard",version:"1.0.0",title:"Wealth Dashboard",description:"Wealth snapshot dashboard with net worth overview",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","wealth","dashboard"],stability:h.Experimental,goal:"Overview of wealth",context:"Dashboard"},source:{type:"component",framework:"react",componentKey:"WealthDashboard"},targets:["react","markdown"],policy:{flags:["wealth.dashboard.enabled"]}}),q=g({meta:{key:"wealth-snapshot.accounts.list",version:"1.0.0",title:"Accounts List",description:"List of financial accounts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","accounts","list"],stability:h.Experimental,goal:"List accounts",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AccountsList"},targets:["react","markdown"],policy:{flags:["wealth.accounts.enabled"]}}),v=g({meta:{key:"wealth-snapshot.assets.list",version:"1.0.0",title:"Assets List",description:"List of assets with valuations",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","assets","list"],stability:h.Experimental,goal:"List assets",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AssetsList"},targets:["react","markdown"],policy:{flags:["wealth.assets.enabled"]}}),w=g({meta:{key:"wealth-snapshot.liabilities.list",version:"1.0.0",title:"Liabilities List",description:"List of liabilities and debts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","liabilities","list"],stability:h.Experimental,goal:"List liabilities",context:"Overview"},source:{type:"component",framework:"react",componentKey:"LiabilitiesList"},targets:["react","markdown"],policy:{flags:["wealth.liabilities.enabled"]}}),x=g({meta:{key:"wealth-snapshot.goals.list",version:"1.0.0",title:"Goals List",description:"List of financial goals with progress",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","goals","list"],stability:h.Experimental,goal:"List goals",context:"Overview"},source:{type:"component",framework:"react",componentKey:"GoalsList"},targets:["react","markdown"],policy:{flags:["wealth.goals.enabled"]}});export{k as WealthDashboardPresentation,w as LiabilitiesListPresentation,x as GoalsListPresentation,v as AssetsListPresentation,q as AccountsListPresentation};
@@ -1 +0,0 @@
1
- export declare function WealthSnapshotPreview(): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{definePresentation as v,StabilityEnum as l}from"@contractspec/lib.contracts-spec";var h=v({meta:{key:"wealth-snapshot.dashboard",version:"1.0.0",title:"Wealth Dashboard",description:"Wealth snapshot dashboard with net worth overview",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","wealth","dashboard"],stability:l.Experimental,goal:"Overview of wealth",context:"Dashboard"},source:{type:"component",framework:"react",componentKey:"WealthDashboard"},targets:["react","markdown"],policy:{flags:["wealth.dashboard.enabled"]}}),p=v({meta:{key:"wealth-snapshot.accounts.list",version:"1.0.0",title:"Accounts List",description:"List of financial accounts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","accounts","list"],stability:l.Experimental,goal:"List accounts",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AccountsList"},targets:["react","markdown"],policy:{flags:["wealth.accounts.enabled"]}}),A=v({meta:{key:"wealth-snapshot.assets.list",version:"1.0.0",title:"Assets List",description:"List of assets with valuations",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","assets","list"],stability:l.Experimental,goal:"List assets",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AssetsList"},targets:["react","markdown"],policy:{flags:["wealth.assets.enabled"]}}),L=v({meta:{key:"wealth-snapshot.liabilities.list",version:"1.0.0",title:"Liabilities List",description:"List of liabilities and debts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","liabilities","list"],stability:l.Experimental,goal:"List liabilities",context:"Overview"},source:{type:"component",framework:"react",componentKey:"LiabilitiesList"},targets:["react","markdown"],policy:{flags:["wealth.liabilities.enabled"]}}),$=v({meta:{key:"wealth-snapshot.goals.list",version:"1.0.0",title:"Goals List",description:"List of financial goals with progress",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","goals","list"],stability:l.Experimental,goal:"List goals",context:"Overview"},source:{type:"component",framework:"react",componentKey:"GoalsList"},targets:["react","markdown"],policy:{flags:["wealth.goals.enabled"]}});var b=[{label:"Net worth",value:"$1.42M",tone:"positive"},{label:"Assets",value:"$1.78M",tone:"neutral"},{label:"Liabilities",value:"$360K",tone:"warning"},{label:"Goals",value:"4 active",tone:"neutral"}],m=[{name:"Operating cash",type:"Checking",balance:"$42,400",institution:"Northstar Bank"},{name:"Brokerage",type:"Investment",balance:"$684,900",institution:"Atlas Wealth"},{name:"Primary mortgage",type:"Loan",balance:"-$312,000",institution:"Home Credit"}],w=[{name:"Emergency runway",progress:"92%",status:"On track"},{name:"Retirement bridge",progress:"68%",status:"Active"},{name:"Education reserve",progress:"41%",status:"At risk"}],i=[h,p,A,L,$].map((e)=>({key:e.meta.key,title:e.meta.title,description:e.meta.description}));import{HStack as n,VStack as o}from"@contractspec/lib.design-system/layout";import{H2 as B,H3 as C,Text as a}from"@contractspec/lib.design-system/typography";import{jsx as t,jsxs as r}from"react/jsx-runtime";function D(){return r(o,{as:"section",gap:"xl",className:"p-4 sm:p-6",children:[r(o,{gap:"sm",className:"rounded-lg border border-border bg-card p-5 shadow-sm",children:[t(a,{className:"font-semibold text-muted-foreground text-xs uppercase",children:"Wealth template"}),t(B,{className:"font-serif text-3xl tracking-normal",children:"Wealth Snapshot"}),t(a,{className:"max-w-3xl text-muted-foreground text-sm leading-6",children:"An inline preview of the finance template contracts for accounts, assets, liabilities, goals, net-worth snapshots, and presentation surfaces."})]}),t(n,{align:"stretch",className:"gap-3 lg:flex-nowrap",children:b.map((e)=>r(o,{gap:"xs",className:"min-w-0 flex-1 rounded-lg border border-border bg-background p-4",children:[t(a,{className:"text-muted-foreground text-xs uppercase",children:e.label}),t(a,{className:"font-semibold text-2xl",children:e.value}),t(a,{className:"text-muted-foreground text-xs capitalize",children:e.tone})]},e.label))}),r(n,{align:"start",className:"gap-6 xl:flex-nowrap",children:[t(g,{title:"Household accounts",description:"Sample balances show how account and debt entities sit behind the dashboard surface.",children:m.map((e)=>r(n,{justify:"between",wrap:"nowrap",className:"rounded-md border border-border bg-background p-3",children:[r(o,{gap:"xs",className:"min-w-0",children:[t(a,{className:"font-semibold text-sm",children:e.name}),r(a,{className:"text-muted-foreground text-xs",children:[e.type," \xB7 ",e.institution]})]}),t(a,{className:"font-semibold text-sm",children:e.balance})]},e.name))}),r(g,{title:"Goals and surfaces",description:"The example also publishes presentation specs that host apps can map to their own UI.",children:[w.map((e)=>r(o,{gap:"xs",className:"rounded-md border border-border bg-background p-3",children:[r(n,{justify:"between",wrap:"nowrap",children:[t(a,{className:"font-semibold text-sm",children:e.name}),t(a,{className:"text-muted-foreground text-xs",children:e.status})]}),r(a,{className:"text-muted-foreground text-xs",children:["Progress ",e.progress]})]},e.name)),t(o,{gap:"xs",className:"rounded-md border border-border bg-muted/40 p-3",children:i.map((e)=>t(a,{className:"text-xs",children:e.title},e.key))})]})]})]})}function g({title:e,description:k,children:y}){return r(o,{as:"article",gap:"md",className:"min-w-0 flex-1 rounded-lg border border-border bg-card p-4 shadow-sm",children:[r(o,{as:"header",gap:"xs",children:[t(C,{className:"font-semibold text-lg",children:e}),t(a,{className:"text-muted-foreground text-sm leading-6",children:k})]}),y]})}export{D as WealthSnapshotPreview};
@@ -1 +0,0 @@
1
- export { WealthSnapshotPreview } from './WealthSnapshotPreview';
package/dist/ui/index.js DELETED
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{definePresentation as v,StabilityEnum as l}from"@contractspec/lib.contracts-spec";var n=v({meta:{key:"wealth-snapshot.dashboard",version:"1.0.0",title:"Wealth Dashboard",description:"Wealth snapshot dashboard with net worth overview",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","wealth","dashboard"],stability:l.Experimental,goal:"Overview of wealth",context:"Dashboard"},source:{type:"component",framework:"react",componentKey:"WealthDashboard"},targets:["react","markdown"],policy:{flags:["wealth.dashboard.enabled"]}}),p=v({meta:{key:"wealth-snapshot.accounts.list",version:"1.0.0",title:"Accounts List",description:"List of financial accounts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","accounts","list"],stability:l.Experimental,goal:"List accounts",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AccountsList"},targets:["react","markdown"],policy:{flags:["wealth.accounts.enabled"]}}),A=v({meta:{key:"wealth-snapshot.assets.list",version:"1.0.0",title:"Assets List",description:"List of assets with valuations",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","assets","list"],stability:l.Experimental,goal:"List assets",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AssetsList"},targets:["react","markdown"],policy:{flags:["wealth.assets.enabled"]}}),L=v({meta:{key:"wealth-snapshot.liabilities.list",version:"1.0.0",title:"Liabilities List",description:"List of liabilities and debts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","liabilities","list"],stability:l.Experimental,goal:"List liabilities",context:"Overview"},source:{type:"component",framework:"react",componentKey:"LiabilitiesList"},targets:["react","markdown"],policy:{flags:["wealth.liabilities.enabled"]}}),m=v({meta:{key:"wealth-snapshot.goals.list",version:"1.0.0",title:"Goals List",description:"List of financial goals with progress",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","goals","list"],stability:l.Experimental,goal:"List goals",context:"Overview"},source:{type:"component",framework:"react",componentKey:"GoalsList"},targets:["react","markdown"],policy:{flags:["wealth.goals.enabled"]}});var w=[{label:"Net worth",value:"$1.42M",tone:"positive"},{label:"Assets",value:"$1.78M",tone:"neutral"},{label:"Liabilities",value:"$360K",tone:"warning"},{label:"Goals",value:"4 active",tone:"neutral"}],$=[{name:"Operating cash",type:"Checking",balance:"$42,400",institution:"Northstar Bank"},{name:"Brokerage",type:"Investment",balance:"$684,900",institution:"Atlas Wealth"},{name:"Primary mortgage",type:"Loan",balance:"-$312,000",institution:"Home Credit"}],b=[{name:"Emergency runway",progress:"92%",status:"On track"},{name:"Retirement bridge",progress:"68%",status:"Active"},{name:"Education reserve",progress:"41%",status:"At risk"}],i=[n,p,A,L,m].map((e)=>({key:e.meta.key,title:e.meta.title,description:e.meta.description}));import{HStack as h,VStack as o}from"@contractspec/lib.design-system/layout";import{H2 as P,H3 as W,Text as a}from"@contractspec/lib.design-system/typography";import{jsx as t,jsxs as r}from"react/jsx-runtime";function B(){return r(o,{as:"section",gap:"xl",className:"p-4 sm:p-6",children:[r(o,{gap:"sm",className:"rounded-lg border border-border bg-card p-5 shadow-sm",children:[t(a,{className:"font-semibold text-muted-foreground text-xs uppercase",children:"Wealth template"}),t(P,{className:"font-serif text-3xl tracking-normal",children:"Wealth Snapshot"}),t(a,{className:"max-w-3xl text-muted-foreground text-sm leading-6",children:"An inline preview of the finance template contracts for accounts, assets, liabilities, goals, net-worth snapshots, and presentation surfaces."})]}),t(h,{align:"stretch",className:"gap-3 lg:flex-nowrap",children:w.map((e)=>r(o,{gap:"xs",className:"min-w-0 flex-1 rounded-lg border border-border bg-background p-4",children:[t(a,{className:"text-muted-foreground text-xs uppercase",children:e.label}),t(a,{className:"font-semibold text-2xl",children:e.value}),t(a,{className:"text-muted-foreground text-xs capitalize",children:e.tone})]},e.label))}),r(h,{align:"start",className:"gap-6 xl:flex-nowrap",children:[t(g,{title:"Household accounts",description:"Sample balances show how account and debt entities sit behind the dashboard surface.",children:$.map((e)=>r(h,{justify:"between",wrap:"nowrap",className:"rounded-md border border-border bg-background p-3",children:[r(o,{gap:"xs",className:"min-w-0",children:[t(a,{className:"font-semibold text-sm",children:e.name}),r(a,{className:"text-muted-foreground text-xs",children:[e.type," \xB7 ",e.institution]})]}),t(a,{className:"font-semibold text-sm",children:e.balance})]},e.name))}),r(g,{title:"Goals and surfaces",description:"The example also publishes presentation specs that host apps can map to their own UI.",children:[b.map((e)=>r(o,{gap:"xs",className:"rounded-md border border-border bg-background p-3",children:[r(h,{justify:"between",wrap:"nowrap",children:[t(a,{className:"font-semibold text-sm",children:e.name}),t(a,{className:"text-muted-foreground text-xs",children:e.status})]}),r(a,{className:"text-muted-foreground text-xs",children:["Progress ",e.progress]})]},e.name)),t(o,{gap:"xs",className:"rounded-md border border-border bg-muted/40 p-3",children:i.map((e)=>t(a,{className:"text-xs",children:e.title},e.key))})]})]})]})}function g({title:e,description:k,children:y}){return r(o,{as:"article",gap:"md",className:"min-w-0 flex-1 rounded-lg border border-border bg-card p-4 shadow-sm",children:[r(o,{as:"header",gap:"xs",children:[t(W,{className:"font-semibold text-lg",children:e}),t(a,{className:"text-muted-foreground text-sm leading-6",children:k})]}),y]})}export{B as WealthSnapshotPreview};
@@ -1,51 +0,0 @@
1
- export declare const wealthSnapshotPreviewMetrics: readonly [{
2
- readonly label: "Net worth";
3
- readonly value: "$1.42M";
4
- readonly tone: "positive";
5
- }, {
6
- readonly label: "Assets";
7
- readonly value: "$1.78M";
8
- readonly tone: "neutral";
9
- }, {
10
- readonly label: "Liabilities";
11
- readonly value: "$360K";
12
- readonly tone: "warning";
13
- }, {
14
- readonly label: "Goals";
15
- readonly value: "4 active";
16
- readonly tone: "neutral";
17
- }];
18
- export declare const wealthSnapshotPreviewAccounts: readonly [{
19
- readonly name: "Operating cash";
20
- readonly type: "Checking";
21
- readonly balance: "$42,400";
22
- readonly institution: "Northstar Bank";
23
- }, {
24
- readonly name: "Brokerage";
25
- readonly type: "Investment";
26
- readonly balance: "$684,900";
27
- readonly institution: "Atlas Wealth";
28
- }, {
29
- readonly name: "Primary mortgage";
30
- readonly type: "Loan";
31
- readonly balance: "-$312,000";
32
- readonly institution: "Home Credit";
33
- }];
34
- export declare const wealthSnapshotPreviewGoals: readonly [{
35
- readonly name: "Emergency runway";
36
- readonly progress: "92%";
37
- readonly status: "On track";
38
- }, {
39
- readonly name: "Retirement bridge";
40
- readonly progress: "68%";
41
- readonly status: "Active";
42
- }, {
43
- readonly name: "Education reserve";
44
- readonly progress: "41%";
45
- readonly status: "At risk";
46
- }];
47
- export declare const wealthSnapshotPreviewPresentations: {
48
- key: string;
49
- title: string | undefined;
50
- description: string;
51
- }[];
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{definePresentation as e,StabilityEnum as t}from"@contractspec/lib.contracts-spec";var s=e({meta:{key:"wealth-snapshot.dashboard",version:"1.0.0",title:"Wealth Dashboard",description:"Wealth snapshot dashboard with net worth overview",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","wealth","dashboard"],stability:t.Experimental,goal:"Overview of wealth",context:"Dashboard"},source:{type:"component",framework:"react",componentKey:"WealthDashboard"},targets:["react","markdown"],policy:{flags:["wealth.dashboard.enabled"]}}),o=e({meta:{key:"wealth-snapshot.accounts.list",version:"1.0.0",title:"Accounts List",description:"List of financial accounts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","accounts","list"],stability:t.Experimental,goal:"List accounts",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AccountsList"},targets:["react","markdown"],policy:{flags:["wealth.accounts.enabled"]}}),r=e({meta:{key:"wealth-snapshot.assets.list",version:"1.0.0",title:"Assets List",description:"List of assets with valuations",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","assets","list"],stability:t.Experimental,goal:"List assets",context:"Overview"},source:{type:"component",framework:"react",componentKey:"AssetsList"},targets:["react","markdown"],policy:{flags:["wealth.assets.enabled"]}}),n=e({meta:{key:"wealth-snapshot.liabilities.list",version:"1.0.0",title:"Liabilities List",description:"List of liabilities and debts",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","liabilities","list"],stability:t.Experimental,goal:"List liabilities",context:"Overview"},source:{type:"component",framework:"react",componentKey:"LiabilitiesList"},targets:["react","markdown"],policy:{flags:["wealth.liabilities.enabled"]}}),i=e({meta:{key:"wealth-snapshot.goals.list",version:"1.0.0",title:"Goals List",description:"List of financial goals with progress",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","goals","list"],stability:t.Experimental,goal:"List goals",context:"Overview"},source:{type:"component",framework:"react",componentKey:"GoalsList"},targets:["react","markdown"],policy:{flags:["wealth.goals.enabled"]}});var h=[{label:"Net worth",value:"$1.42M",tone:"positive"},{label:"Assets",value:"$1.78M",tone:"neutral"},{label:"Liabilities",value:"$360K",tone:"warning"},{label:"Goals",value:"4 active",tone:"neutral"}],m=[{name:"Operating cash",type:"Checking",balance:"$42,400",institution:"Northstar Bank"},{name:"Brokerage",type:"Investment",balance:"$684,900",institution:"Atlas Wealth"},{name:"Primary mortgage",type:"Loan",balance:"-$312,000",institution:"Home Credit"}],v=[{name:"Emergency runway",progress:"92%",status:"On track"},{name:"Retirement bridge",progress:"68%",status:"Active"},{name:"Education reserve",progress:"41%",status:"At risk"}],g=[s,o,r,n,i].map((a)=>({key:a.meta.key,title:a.meta.title,description:a.meta.description}));export{g as wealthSnapshotPreviewPresentations,h as wealthSnapshotPreviewMetrics,v as wealthSnapshotPreviewGoals,m as wealthSnapshotPreviewAccounts};
@@ -1,3 +0,0 @@
1
- export declare const AccountsCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
2
- export declare const NetWorthCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
3
- export declare const GoalsCapability: import("@contractspec/lib.contracts-spec").CapabilitySpec;
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{defineCapability as g,StabilityEnum as h}from"@contractspec/lib.contracts-spec";var k=g({meta:{key:"accounts",version:"1.0.0",kind:"data",stability:h.Experimental,description:"Financial accounts tracking and aggregation",owners:["platform.finance"],tags:["accounts","finance","wealth"]}}),q=g({meta:{key:"net-worth",version:"1.0.0",kind:"ui",stability:h.Experimental,description:"Net worth visualization and tracking",owners:["platform.finance"],tags:["net-worth","wealth","dashboard"]}}),v=g({meta:{key:"goals",version:"1.0.0",kind:"ui",stability:h.Experimental,description:"Financial goal setting and progress tracking",owners:["platform.finance"],tags:["goals","planning","wealth"]}});export{q as NetWorthCapability,v as GoalsCapability,k as AccountsCapability};
@@ -1 +0,0 @@
1
- export declare const WealthSnapshotFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -1,2 +0,0 @@
1
- // @bun
2
- import{defineFeature as g}from"@contractspec/lib.contracts-spec/features";var j=g({meta:{key:"wealth-snapshot",version:"1.0.0",title:"Wealth Snapshot",description:"Mini-app for accounts, assets, liabilities, goals, and net worth.",domain:"finance",owners:["@wealth-snapshot"],tags:["finance","net-worth","goals"],stability:"experimental"},operations:[{key:"wealth.account.create",version:"1.0.0"},{key:"wealth.asset.add",version:"1.0.0"},{key:"wealth.liability.add",version:"1.0.0"},{key:"wealth.goal.create",version:"1.0.0"},{key:"wealth.goal.update",version:"1.0.0"},{key:"wealth.networth.get",version:"1.0.0"}],events:[{key:"wealth.asset.added",version:"1.0.0"},{key:"wealth.liability.added",version:"1.0.0"},{key:"wealth.goal.updated",version:"1.0.0"},{key:"wealth.networth.snapshot_created",version:"1.0.0"}],presentations:[{key:"wealth-snapshot.dashboard",version:"1.0.0"},{key:"wealth-snapshot.accounts.list",version:"1.0.0"},{key:"wealth-snapshot.assets.list",version:"1.0.0"},{key:"wealth-snapshot.liabilities.list",version:"1.0.0"},{key:"wealth-snapshot.goals.list",version:"1.0.0"}],presentationsTargets:[{key:"wealth-snapshot.dashboard",version:"1.0.0",targets:["react","markdown"]},{key:"wealth-snapshot.assets.list",version:"1.0.0",targets:["react","markdown"]},{key:"wealth-snapshot.liabilities.list",version:"1.0.0",targets:["react","markdown"]},{key:"wealth-snapshot.goals.list",version:"1.0.0",targets:["react","markdown"]}],capabilities:{requires:[{key:"identity",version:"1.0.0"},{key:"audit-trail",version:"1.0.0"},{key:"notifications",version:"1.0.0"}],provides:[{key:"accounts",version:"1.0.0"},{key:"net-worth",version:"1.0.0"},{key:"goals",version:"1.0.0"}]},telemetry:[{key:"wealth-snapshot.telemetry",version:"1.0.0"}],docs:["docs.examples.wealth-snapshot","docs.examples.wealth-snapshot.goal","docs.examples.wealth-snapshot.usage","docs.examples.wealth-snapshot.constraints"]});export{j as WealthSnapshotFeature};