@contractspec/example.pocket-family-office 1.44.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.
Files changed (40) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +43 -0
  3. package/dist/blueprint.d.ts +5 -0
  4. package/dist/blueprint.d.ts.map +1 -0
  5. package/dist/connections/samples.d.ts +4 -0
  6. package/dist/connections/samples.d.ts.map +1 -0
  7. package/dist/index.d.ts +9 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +63 -0
  10. package/dist/knowledge/sources.sample.d.ts +3 -0
  11. package/dist/knowledge/sources.sample.d.ts.map +1 -0
  12. package/dist/operations/index.d.ts +492 -0
  13. package/dist/operations/index.d.ts.map +1 -0
  14. package/dist/pocket-family-office.feature.d.ts +12 -0
  15. package/dist/pocket-family-office.feature.d.ts.map +1 -0
  16. package/dist/telemetry.d.ts +4 -0
  17. package/dist/telemetry.d.ts.map +1 -0
  18. package/dist/tenant.sample.d.ts +3 -0
  19. package/dist/tenant.sample.d.ts.map +1 -0
  20. package/dist/tests/pocket-family-office.test.d.ts +2 -0
  21. package/dist/tests/pocket-family-office.test.d.ts.map +1 -0
  22. package/dist/workflows/generate-financial-summary.d.ts +3 -0
  23. package/dist/workflows/generate-financial-summary.d.ts.map +1 -0
  24. package/dist/workflows/generate-openbanking-overview.d.ts +3 -0
  25. package/dist/workflows/generate-openbanking-overview.d.ts.map +1 -0
  26. package/dist/workflows/index.d.ts +9 -0
  27. package/dist/workflows/index.d.ts.map +1 -0
  28. package/dist/workflows/ingest-email-threads.d.ts +3 -0
  29. package/dist/workflows/ingest-email-threads.d.ts.map +1 -0
  30. package/dist/workflows/process-uploaded-document.d.ts +3 -0
  31. package/dist/workflows/process-uploaded-document.d.ts.map +1 -0
  32. package/dist/workflows/refresh-openbanking-balances.d.ts +3 -0
  33. package/dist/workflows/refresh-openbanking-balances.d.ts.map +1 -0
  34. package/dist/workflows/sync-openbanking-accounts.d.ts +3 -0
  35. package/dist/workflows/sync-openbanking-accounts.d.ts.map +1 -0
  36. package/dist/workflows/sync-openbanking-transactions.d.ts +3 -0
  37. package/dist/workflows/sync-openbanking-transactions.d.ts.map +1 -0
  38. package/dist/workflows/upcoming-payments-reminder.d.ts +3 -0
  39. package/dist/workflows/upcoming-payments-reminder.d.ts.map +1 -0
  40. package/package.json +87 -0
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@contractspec/example.pocket-family-office",
3
+ "version": "1.44.0",
4
+ "description": "Pocket Family Office example - personal finance automation with open banking",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "type": "module",
8
+ "scripts": {
9
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
10
+ "publish:pkg:canary": "bun publish:pkg --tag canary",
11
+ "build": "bun build:types && bun build:bundle",
12
+ "build:bundle": "bun build ./src/index.ts --outfile ./dist/index.js --minify",
13
+ "build:types": "tsc --emitDeclarationOnly",
14
+ "dev": "bun build:bundle --watch",
15
+ "clean": "bun rimraf dist .turbo",
16
+ "lint": "bun lint:fix",
17
+ "lint:fix": "eslint src --fix",
18
+ "lint:check": "eslint src"
19
+ },
20
+ "dependencies": {
21
+ "@contractspec/lib.knowledge": "1.44.0",
22
+ "@contractspec/lib.schema": "1.44.0",
23
+ "@contractspec/lib.contracts": "1.44.0",
24
+ "zod": "^4.1.13"
25
+ },
26
+ "devDependencies": {
27
+ "@contractspec/tool.typescript": "1.44.0",
28
+ "@contractspec/tool.tsdown": "1.44.0",
29
+ "typescript": "^5.9.3"
30
+ },
31
+ "exports": {
32
+ ".": "./dist/index.js",
33
+ "./blueprint": "./dist/blueprint.js",
34
+ "./connections/samples": "./dist/connections/samples.js",
35
+ "./contracts": "./dist/contracts/index.js",
36
+ "./knowledge/sources.sample": "./dist/knowledge/sources.sample.js",
37
+ "./pocket-family-office.feature": "./dist/pocket-family-office.feature.js",
38
+ "./telemetry": "./dist/telemetry.js",
39
+ "./tenant.sample": "./dist/tenant.sample.js",
40
+ "./workflows": "./dist/workflows/index.js",
41
+ "./workflows/generate-financial-summary": "./dist/workflows/generate-financial-summary.js",
42
+ "./workflows/generate-openbanking-overview": "./dist/workflows/generate-openbanking-overview.js",
43
+ "./workflows/ingest-email-threads": "./dist/workflows/ingest-email-threads.js",
44
+ "./workflows/process-uploaded-document": "./dist/workflows/process-uploaded-document.js",
45
+ "./workflows/refresh-openbanking-balances": "./dist/workflows/refresh-openbanking-balances.js",
46
+ "./workflows/sync-openbanking-accounts": "./dist/workflows/sync-openbanking-accounts.js",
47
+ "./workflows/sync-openbanking-transactions": "./dist/workflows/sync-openbanking-transactions.js",
48
+ "./workflows/upcoming-payments-reminder": "./dist/workflows/upcoming-payments-reminder.js",
49
+ "./*": "./*"
50
+ },
51
+ "module": "./dist/index.js",
52
+ "files": [
53
+ "dist",
54
+ "README.md"
55
+ ],
56
+ "publishConfig": {
57
+ "access": "public",
58
+ "exports": {
59
+ ".": "./dist/index.js",
60
+ "./blueprint": "./dist/blueprint.js",
61
+ "./connections/samples": "./dist/connections/samples.js",
62
+ "./contracts": "./dist/contracts/index.js",
63
+ "./knowledge/sources.sample": "./dist/knowledge/sources.sample.js",
64
+ "./pocket-family-office.feature": "./dist/pocket-family-office.feature.js",
65
+ "./telemetry": "./dist/telemetry.js",
66
+ "./tenant.sample": "./dist/tenant.sample.js",
67
+ "./workflows": "./dist/workflows/index.js",
68
+ "./workflows/generate-financial-summary": "./dist/workflows/generate-financial-summary.js",
69
+ "./workflows/generate-openbanking-overview": "./dist/workflows/generate-openbanking-overview.js",
70
+ "./workflows/ingest-email-threads": "./dist/workflows/ingest-email-threads.js",
71
+ "./workflows/process-uploaded-document": "./dist/workflows/process-uploaded-document.js",
72
+ "./workflows/refresh-openbanking-balances": "./dist/workflows/refresh-openbanking-balances.js",
73
+ "./workflows/sync-openbanking-accounts": "./dist/workflows/sync-openbanking-accounts.js",
74
+ "./workflows/sync-openbanking-transactions": "./dist/workflows/sync-openbanking-transactions.js",
75
+ "./workflows/upcoming-payments-reminder": "./dist/workflows/upcoming-payments-reminder.js",
76
+ "./*": "./*"
77
+ },
78
+ "registry": "https://registry.npmjs.org/"
79
+ },
80
+ "license": "MIT",
81
+ "repository": {
82
+ "type": "git",
83
+ "url": "https://github.com/lssm-tech/contractspec.git",
84
+ "directory": "packages/examples/pocket-family-office"
85
+ },
86
+ "homepage": "https://contractspec.io"
87
+ }