@contractspec/example.openbanking-powens 3.3.0 → 3.4.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.
- package/.turbo/turbo-build.log +28 -27
- package/.turbo/turbo-prebuild.log +2 -1
- package/CHANGELOG.md +13 -0
- package/package.json +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
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
|
-
|
|
1
|
+
|
|
2
|
+
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build prebuild[0m
|
|
3
|
+
[0m[2m[35m$[0m [2m[1mbun run prebuild && bun run build:bundle && bun run build:types[0m
|
|
4
|
+
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build prebuild[0m
|
|
5
|
+
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build transpile[0m
|
|
6
|
+
[contractspec-bun-build] transpile target=bun root=src entries=7
|
|
7
|
+
[32mBundled 7 modules in 35ms[0m
|
|
8
|
+
|
|
9
|
+
[34mdocs/index.js[0m 1.58 KB [2m(entry point)[0m
|
|
10
|
+
[34m./index.js[0m 8.80 KB [2m(entry point)[0m
|
|
11
|
+
[34mdocs/openbanking-powens.docblock.js[0m 1.58 KB [2m(entry point)[0m
|
|
12
|
+
[34m./example.js[0m 1.0 KB [2m(entry point)[0m
|
|
13
|
+
[34mhandlers/oauth-callback.js[0m 2.26 KB [2m(entry point)[0m
|
|
14
|
+
[34mhandlers/webhook-handler.js[0m 3.22 KB [2m(entry point)[0m
|
|
15
|
+
[34m./openbanking-powens.feature.js[0m 0.72 KB [2m(entry point)[0m
|
|
16
|
+
|
|
17
|
+
[contractspec-bun-build] transpile target=node root=src entries=7
|
|
18
|
+
[32mBundled 7 modules in 22ms[0m
|
|
19
|
+
|
|
20
|
+
[34mdocs/index.js[0m 1.56 KB [2m(entry point)[0m
|
|
21
|
+
[34m./index.js[0m 8.78 KB [2m(entry point)[0m
|
|
22
|
+
[34mdocs/openbanking-powens.docblock.js[0m 1.56 KB [2m(entry point)[0m
|
|
23
|
+
[34m./example.js[0m 1.0 KB [2m(entry point)[0m
|
|
24
|
+
[34mhandlers/oauth-callback.js[0m 2.26 KB [2m(entry point)[0m
|
|
25
|
+
[34mhandlers/webhook-handler.js[0m 3.21 KB [2m(entry point)[0m
|
|
26
|
+
[34m./openbanking-powens.feature.js[0m 0.72 KB [2m(entry point)[0m
|
|
27
|
+
|
|
28
|
+
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build types[0m
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
[0m[2m[35m$[0m [2m[1mcontractspec-bun-build prebuild[0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @contractspec/example.openbanking-powens
|
|
2
2
|
|
|
3
|
+
## 3.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0ee467a: feat: improve ai and customization
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [0ee467a]
|
|
12
|
+
- Updated dependencies [56ee8e6]
|
|
13
|
+
- @contractspec/integration.providers-impls@3.4.0
|
|
14
|
+
- @contractspec/lib.contracts-spec@3.4.0
|
|
15
|
+
|
|
3
16
|
## 3.3.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.openbanking-powens",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "OpenBanking Powens example: OAuth callback + webhook handler patterns (provider + workflows).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
"typecheck": "tsc --noEmit"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@contractspec/integration.providers-impls": "3.
|
|
74
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
73
|
+
"@contractspec/integration.providers-impls": "3.4.0",
|
|
74
|
+
"@contractspec/lib.contracts-spec": "3.4.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@contractspec/tool.typescript": "3.
|
|
77
|
+
"@contractspec/tool.typescript": "3.4.0",
|
|
78
78
|
"typescript": "^5.9.3",
|
|
79
|
-
"@contractspec/tool.bun": "3.
|
|
79
|
+
"@contractspec/tool.bun": "3.4.0"
|
|
80
80
|
},
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public",
|