@contractspec/example.pocket-family-office 3.7.7 → 3.7.10
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/README.md +6 -2
- package/dist/contracts.test.d.ts +1 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Website: https://contractspec.io
|
|
|
10
10
|
- Financial summary and overview generation workflows.
|
|
11
11
|
- Document processing and email thread ingestion.
|
|
12
12
|
- Capability and feature definition patterns.
|
|
13
|
-
-
|
|
13
|
+
- Canonical `telemetry` export via `pocketFamilyOfficeTelemetry`.
|
|
14
14
|
- Sample tenant and connection configuration.
|
|
15
15
|
|
|
16
16
|
## Running Locally
|
|
@@ -18,6 +18,7 @@ Website: https://contractspec.io
|
|
|
18
18
|
From `packages/examples/pocket-family-office`:
|
|
19
19
|
- `bun run dev`
|
|
20
20
|
- `bun run build`
|
|
21
|
+
- `bun run test`
|
|
21
22
|
- `bun run typecheck`
|
|
22
23
|
|
|
23
24
|
## Usage
|
|
@@ -33,6 +34,7 @@ Use `@contractspec/example.pocket-family-office` as a reference implementation,
|
|
|
33
34
|
- `src/index.ts` is the root public barrel and package entrypoint.
|
|
34
35
|
- `src/knowledge` is part of the package's public or composition surface.
|
|
35
36
|
- `src/operations` is part of the package's public or composition surface.
|
|
37
|
+
- `src/telemetry.ts` defines the exported telemetry spec.
|
|
36
38
|
|
|
37
39
|
## Public Entry Points
|
|
38
40
|
|
|
@@ -46,12 +48,14 @@ Use `@contractspec/example.pocket-family-office` as a reference implementation,
|
|
|
46
48
|
- Export `./operations` resolves through `./src/operations/index.ts`.
|
|
47
49
|
- Export `./pocket-family-office.capability` resolves through `./src/pocket-family-office.capability.ts`.
|
|
48
50
|
- Export `./pocket-family-office.feature` resolves through `./src/pocket-family-office.feature.ts`.
|
|
49
|
-
-
|
|
51
|
+
- Export `./telemetry` resolves through `./src/telemetry.ts`.
|
|
52
|
+
- The package publishes 20 total export subpaths; keep docs aligned with `package.json`.
|
|
50
53
|
|
|
51
54
|
## Local Commands
|
|
52
55
|
|
|
53
56
|
- `bun run dev` — contractspec-bun-build dev
|
|
54
57
|
- `bun run build` — bun run prebuild && bun run build:bundle && bun run build:types
|
|
58
|
+
- `bun run test` — bun test
|
|
55
59
|
- `bun run lint` — bun lint:fix
|
|
56
60
|
- `bun run lint:check` — biome check .
|
|
57
61
|
- `bun run lint:fix` — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.pocket-family-office",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.10",
|
|
4
4
|
"description": "Pocket Family Office example - personal finance automation with open banking",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -25,18 +25,19 @@
|
|
|
25
25
|
"lint:fix": "biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .",
|
|
26
26
|
"lint:check": "biome check .",
|
|
27
27
|
"prebuild": "contractspec-bun-build prebuild",
|
|
28
|
+
"test": "bun test",
|
|
28
29
|
"typecheck": "tsc --noEmit"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@contractspec/lib.knowledge": "3.7.
|
|
32
|
-
"@contractspec/lib.contracts-spec": "4.
|
|
33
|
-
"@contractspec/lib.contracts-integrations": "3.
|
|
34
|
-
"@contractspec/lib.schema": "3.7.
|
|
32
|
+
"@contractspec/lib.knowledge": "3.7.10",
|
|
33
|
+
"@contractspec/lib.contracts-spec": "4.1.2",
|
|
34
|
+
"@contractspec/lib.contracts-integrations": "3.8.2",
|
|
35
|
+
"@contractspec/lib.schema": "3.7.8"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@contractspec/tool.typescript": "3.7.
|
|
38
|
+
"@contractspec/tool.typescript": "3.7.8",
|
|
38
39
|
"typescript": "^5.9.3",
|
|
39
|
-
"@contractspec/tool.bun": "3.7.
|
|
40
|
+
"@contractspec/tool.bun": "3.7.8"
|
|
40
41
|
},
|
|
41
42
|
"exports": {
|
|
42
43
|
".": {
|