@lssm/example.openbanking-powens 0.0.0-canary-20251213172311 → 0.0.0-canary-20251215220103
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 +3 -3
- package/package.json +2 -2
- package/src/docs/index.ts +0 -2
- package/src/example.ts +0 -2
- package/src/handlers/oauth-callback.ts +1 -3
- package/src/handlers/webhook-handler.ts +1 -3
- package/src/index.ts +0 -2
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$ bun build:bundle && bun build:types
|
|
2
2
|
$ tsdown
|
|
3
|
-
[34mℹ[39m tsdown [2mv0.17.
|
|
3
|
+
[34mℹ[39m tsdown [2mv0.17.4[22m powered by rolldown [2mv1.0.0-beta.53[22m
|
|
4
4
|
[34mℹ[39m config file: [4m/home/runner/work/contractspec/contractspec/packages/examples/openbanking-powens/tsdown.config.js[24m
|
|
5
5
|
[34mℹ[39m entry: [34msrc/example.ts, src/index.ts, src/docs/index.ts, src/docs/openbanking-powens.docblock.ts, src/handlers/oauth-callback.ts, src/handlers/webhook-handler.ts[39m
|
|
6
6
|
[34mℹ[39m target: [34mesnext[39m
|
|
@@ -23,5 +23,5 @@ $ tsdown
|
|
|
23
23
|
[38;5;240m │[0m [38;5;115mHelp[0m: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
|
|
24
24
|
[38;5;246m───╯[0m
|
|
25
25
|
|
|
26
|
-
[32m✔[39m Build complete in [
|
|
26
|
+
[32m✔[39m Build complete in [32m56ms[39m
|
|
27
27
|
$ tsc --noEmit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# @lssm/example.openbanking-powens
|
|
2
2
|
|
|
3
|
-
## 0.0.0-canary-
|
|
3
|
+
## 0.0.0-canary-20251215220103
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies [3086383]
|
|
8
|
-
- @lssm/lib.contracts@0.0.0-canary-
|
|
9
|
-
- @lssm/integration.providers-impls@0.0.0-canary-
|
|
8
|
+
- @lssm/lib.contracts@0.0.0-canary-20251215220103
|
|
9
|
+
- @lssm/integration.providers-impls@0.0.0-canary-20251215220103
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.openbanking-powens",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251215220103",
|
|
4
4
|
"description": "OpenBanking Powens example: OAuth callback + webhook handler patterns (provider + workflows).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@lssm/tool.tsdown": "workspace:*",
|
|
34
34
|
"@lssm/tool.typescript": "workspace:*",
|
|
35
|
-
"tsdown": "^0.17.
|
|
35
|
+
"tsdown": "^0.17.4",
|
|
36
36
|
"typescript": "^5.9.3"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
package/src/docs/index.ts
CHANGED
package/src/example.ts
CHANGED
|
@@ -101,7 +101,7 @@ async function enqueueWorkflow(name: string, input: Record<string, unknown>) {
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
const fakeDatabase = {
|
|
104
|
-
connections: [] as
|
|
104
|
+
connections: [] as (ExampleIntegrationConnection & { state: string })[],
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
const fakeSecretStore: Record<string, ExamplePowensSecrets> = {};
|
|
@@ -111,5 +111,3 @@ const fakeWorkflowQueue = {
|
|
|
111
111
|
/* no-op */
|
|
112
112
|
},
|
|
113
113
|
};
|
|
114
|
-
|
|
115
|
-
|
|
@@ -129,7 +129,7 @@ async function logUnmappedEvent(_event: PowensWebhookEvent) {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
const fakeDatabase = {
|
|
132
|
-
connections: [] as
|
|
132
|
+
connections: [] as (ExampleIntegrationConnection & { state: string })[],
|
|
133
133
|
};
|
|
134
134
|
|
|
135
135
|
const fakeSecretStore: Record<string, ExamplePowensSecrets> = {};
|
|
@@ -145,5 +145,3 @@ const fakeTelemetryLogger = {
|
|
|
145
145
|
/* no-op */
|
|
146
146
|
},
|
|
147
147
|
};
|
|
148
|
-
|
|
149
|
-
|