@contractspec/example.openbanking-powens 1.60.0 → 1.62.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 +2 -2
- package/CHANGELOG.md +25 -0
- package/package.json +19 -19
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=6
|
|
6
|
-
Bundled 6 modules in
|
|
6
|
+
Bundled 6 modules in 19ms
|
|
7
7
|
|
|
8
8
|
docs/index.js 1.57 KB (entry point)
|
|
9
9
|
./index.js 8.1 KB (entry point)
|
|
@@ -13,7 +13,7 @@ Bundled 6 modules in 25ms
|
|
|
13
13
|
handlers/webhook-handler.js 3.22 KB (entry point)
|
|
14
14
|
|
|
15
15
|
[contractspec-bun-build] transpile target=node root=src entries=6
|
|
16
|
-
Bundled 6 modules in
|
|
16
|
+
Bundled 6 modules in 10ms
|
|
17
17
|
|
|
18
18
|
docs/index.js 1.55 KB (entry point)
|
|
19
19
|
./index.js 8.1 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @contractspec/example.openbanking-powens
|
|
2
2
|
|
|
3
|
+
## 1.62.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 064258d: feat: upgrade all dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [064258d]
|
|
12
|
+
- Updated dependencies [064258d]
|
|
13
|
+
- @contractspec/integration.providers-impls@1.62.0
|
|
14
|
+
- @contractspec/lib.contracts@1.62.0
|
|
15
|
+
|
|
16
|
+
## 1.61.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 374fd71: fix: publishing
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [374fd71]
|
|
25
|
+
- @contractspec/integration.providers-impls@1.61.0
|
|
26
|
+
- @contractspec/lib.contracts@1.61.0
|
|
27
|
+
|
|
3
28
|
## 1.60.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.openbanking-powens",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.62.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",
|
|
@@ -8,43 +8,43 @@
|
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"bun": "./dist/index.js",
|
|
11
|
-
"node": "./dist/node/index.
|
|
11
|
+
"node": "./dist/node/index.js",
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"./docs": {
|
|
15
15
|
"types": "./dist/docs/index.d.ts",
|
|
16
16
|
"bun": "./dist/docs/index.js",
|
|
17
|
-
"node": "./dist/node/docs/index.
|
|
17
|
+
"node": "./dist/node/docs/index.js",
|
|
18
18
|
"default": "./dist/docs/index.js"
|
|
19
19
|
},
|
|
20
20
|
"./docs/index": {
|
|
21
21
|
"types": "./dist/docs/index.d.ts",
|
|
22
22
|
"bun": "./dist/docs/index.js",
|
|
23
|
-
"node": "./dist/node/docs/index.
|
|
23
|
+
"node": "./dist/node/docs/index.js",
|
|
24
24
|
"default": "./dist/docs/index.js"
|
|
25
25
|
},
|
|
26
26
|
"./docs/openbanking-powens.docblock": {
|
|
27
27
|
"types": "./dist/docs/openbanking-powens.docblock.d.ts",
|
|
28
28
|
"bun": "./dist/docs/openbanking-powens.docblock.js",
|
|
29
|
-
"node": "./dist/node/docs/openbanking-powens.docblock.
|
|
29
|
+
"node": "./dist/node/docs/openbanking-powens.docblock.js",
|
|
30
30
|
"default": "./dist/docs/openbanking-powens.docblock.js"
|
|
31
31
|
},
|
|
32
32
|
"./example": {
|
|
33
33
|
"types": "./dist/example.d.ts",
|
|
34
34
|
"bun": "./dist/example.js",
|
|
35
|
-
"node": "./dist/node/example.
|
|
35
|
+
"node": "./dist/node/example.js",
|
|
36
36
|
"default": "./dist/example.js"
|
|
37
37
|
},
|
|
38
38
|
"./handlers/oauth-callback": {
|
|
39
39
|
"types": "./dist/handlers/oauth-callback.d.ts",
|
|
40
40
|
"bun": "./dist/handlers/oauth-callback.js",
|
|
41
|
-
"node": "./dist/node/handlers/oauth-callback.
|
|
41
|
+
"node": "./dist/node/handlers/oauth-callback.js",
|
|
42
42
|
"default": "./dist/handlers/oauth-callback.js"
|
|
43
43
|
},
|
|
44
44
|
"./handlers/webhook-handler": {
|
|
45
45
|
"types": "./dist/handlers/webhook-handler.d.ts",
|
|
46
46
|
"bun": "./dist/handlers/webhook-handler.js",
|
|
47
|
-
"node": "./dist/node/handlers/webhook-handler.
|
|
47
|
+
"node": "./dist/node/handlers/webhook-handler.js",
|
|
48
48
|
"default": "./dist/handlers/webhook-handler.js"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"typecheck": "tsc --noEmit"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@contractspec/integration.providers-impls": "1.
|
|
68
|
-
"@contractspec/lib.contracts": "1.
|
|
67
|
+
"@contractspec/integration.providers-impls": "1.62.0",
|
|
68
|
+
"@contractspec/lib.contracts": "1.62.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@contractspec/tool.typescript": "1.
|
|
71
|
+
"@contractspec/tool.typescript": "1.62.0",
|
|
72
72
|
"typescript": "^5.9.3",
|
|
73
|
-
"@contractspec/tool.bun": "1.
|
|
73
|
+
"@contractspec/tool.bun": "1.61.0"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public",
|
|
@@ -78,43 +78,43 @@
|
|
|
78
78
|
".": {
|
|
79
79
|
"types": "./dist/index.d.ts",
|
|
80
80
|
"bun": "./dist/index.js",
|
|
81
|
-
"node": "./dist/node/index.
|
|
81
|
+
"node": "./dist/node/index.js",
|
|
82
82
|
"default": "./dist/index.js"
|
|
83
83
|
},
|
|
84
84
|
"./docs": {
|
|
85
85
|
"types": "./dist/docs/index.d.ts",
|
|
86
86
|
"bun": "./dist/docs/index.js",
|
|
87
|
-
"node": "./dist/node/docs/index.
|
|
87
|
+
"node": "./dist/node/docs/index.js",
|
|
88
88
|
"default": "./dist/docs/index.js"
|
|
89
89
|
},
|
|
90
90
|
"./docs/index": {
|
|
91
91
|
"types": "./dist/docs/index.d.ts",
|
|
92
92
|
"bun": "./dist/docs/index.js",
|
|
93
|
-
"node": "./dist/node/docs/index.
|
|
93
|
+
"node": "./dist/node/docs/index.js",
|
|
94
94
|
"default": "./dist/docs/index.js"
|
|
95
95
|
},
|
|
96
96
|
"./docs/openbanking-powens.docblock": {
|
|
97
97
|
"types": "./dist/docs/openbanking-powens.docblock.d.ts",
|
|
98
98
|
"bun": "./dist/docs/openbanking-powens.docblock.js",
|
|
99
|
-
"node": "./dist/node/docs/openbanking-powens.docblock.
|
|
99
|
+
"node": "./dist/node/docs/openbanking-powens.docblock.js",
|
|
100
100
|
"default": "./dist/docs/openbanking-powens.docblock.js"
|
|
101
101
|
},
|
|
102
102
|
"./example": {
|
|
103
103
|
"types": "./dist/example.d.ts",
|
|
104
104
|
"bun": "./dist/example.js",
|
|
105
|
-
"node": "./dist/node/example.
|
|
105
|
+
"node": "./dist/node/example.js",
|
|
106
106
|
"default": "./dist/example.js"
|
|
107
107
|
},
|
|
108
108
|
"./handlers/oauth-callback": {
|
|
109
109
|
"types": "./dist/handlers/oauth-callback.d.ts",
|
|
110
110
|
"bun": "./dist/handlers/oauth-callback.js",
|
|
111
|
-
"node": "./dist/node/handlers/oauth-callback.
|
|
111
|
+
"node": "./dist/node/handlers/oauth-callback.js",
|
|
112
112
|
"default": "./dist/handlers/oauth-callback.js"
|
|
113
113
|
},
|
|
114
114
|
"./handlers/webhook-handler": {
|
|
115
115
|
"types": "./dist/handlers/webhook-handler.d.ts",
|
|
116
116
|
"bun": "./dist/handlers/webhook-handler.js",
|
|
117
|
-
"node": "./dist/node/handlers/webhook-handler.
|
|
117
|
+
"node": "./dist/node/handlers/webhook-handler.js",
|
|
118
118
|
"default": "./dist/handlers/webhook-handler.js"
|
|
119
119
|
}
|
|
120
120
|
},
|