@contractspec/example.openbanking-powens 3.7.21 → 3.7.23
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/.turbo/turbo-build.log +30 -31
- package/CHANGELOG.md +19 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build types[0m
|
|
1
|
+
$ contractspec-bun-build prebuild
|
|
2
|
+
$ bun run build:bundle && bun run build:types
|
|
3
|
+
$ contractspec-bun-build transpile
|
|
4
|
+
[contractspec-bun-build] transpile target=bun root=src entries=9 noBundle=false
|
|
5
|
+
Bundled 9 modules in 41ms
|
|
6
|
+
|
|
7
|
+
docs/index.js 1.39 KB (entry point)
|
|
8
|
+
./index.js 6.92 KB (entry point)
|
|
9
|
+
./openbanking-powens.feature.js 0.56 KB (entry point)
|
|
10
|
+
docs/openbanking-powens.docblock.js 1.39 KB (entry point)
|
|
11
|
+
./example.js 0.69 KB (entry point)
|
|
12
|
+
handlers/oauth-callback.js 1.31 KB (entry point)
|
|
13
|
+
handlers/webhook-handler.js 1.87 KB (entry point)
|
|
14
|
+
jobs/index.js 1.17 KB (entry point)
|
|
15
|
+
jobs/powens-sync-dispatch.job.js 1.17 KB (entry point)
|
|
16
|
+
|
|
17
|
+
[contractspec-bun-build] transpile target=node root=src entries=9 noBundle=false
|
|
18
|
+
Bundled 9 modules in 30ms
|
|
19
|
+
|
|
20
|
+
docs/index.js 1.37 KB (entry point)
|
|
21
|
+
./index.js 6.90 KB (entry point)
|
|
22
|
+
./openbanking-powens.feature.js 0.56 KB (entry point)
|
|
23
|
+
docs/openbanking-powens.docblock.js 1.37 KB (entry point)
|
|
24
|
+
./example.js 0.68 KB (entry point)
|
|
25
|
+
handlers/oauth-callback.js 1.30 KB (entry point)
|
|
26
|
+
handlers/webhook-handler.js 1.87 KB (entry point)
|
|
27
|
+
jobs/index.js 1.16 KB (entry point)
|
|
28
|
+
jobs/powens-sync-dispatch.job.js 1.16 KB (entry point)
|
|
29
|
+
|
|
30
|
+
$ contractspec-bun-build types
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @contractspec/example.openbanking-powens
|
|
2
2
|
|
|
3
|
+
## 3.7.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: auto-bump internal dependents
|
|
8
|
+
- Updated dependencies because of chore: auto-bump internal dependents
|
|
9
|
+
- Updated dependencies because of Stabilize Turborepo build caching by making generated artifacts deterministic, modeling web LLM generation explicitly, and avoiding no-op build-tool rewrites.
|
|
10
|
+
- @contractspec/integration.providers-impls@4.0.1
|
|
11
|
+
- @contractspec/lib.contracts-spec@5.5.1
|
|
12
|
+
|
|
13
|
+
## 3.7.22
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- chore: auto-bump internal dependents
|
|
18
|
+
- Updated dependencies because of Reduce published install and bundle size by optionalizing heavy runtime families and adding a repo dependency audit.
|
|
19
|
+
- @contractspec/integration.providers-impls@4.0.0
|
|
20
|
+
- @contractspec/lib.contracts-spec@5.5.0
|
|
21
|
+
|
|
3
22
|
## 3.7.21
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.openbanking-powens",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.23",
|
|
4
4
|
"description": "OpenBanking Powens example: OAuth callback + webhook handler patterns (provider + workflows).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -76,13 +76,13 @@
|
|
|
76
76
|
"typecheck": "tsc --noEmit"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@contractspec/integration.providers-impls": "
|
|
80
|
-
"@contractspec/lib.contracts-spec": "5.5.
|
|
79
|
+
"@contractspec/integration.providers-impls": "4.0.1",
|
|
80
|
+
"@contractspec/lib.contracts-spec": "5.5.1"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@contractspec/tool.typescript": "3.7.13",
|
|
84
84
|
"typescript": "^5.9.3",
|
|
85
|
-
"@contractspec/tool.bun": "3.7.
|
|
85
|
+
"@contractspec/tool.bun": "3.7.17"
|
|
86
86
|
},
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public",
|