@lssm/example.openbanking-powens 0.0.0-canary-20251213172311 → 0.0.0-canary-20251215231151

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.
@@ -1,6 +1,6 @@
1
1
  $ bun build:bundle && bun build:types
2
2
  $ tsdown
3
- ℹ tsdown v0.17.0 powered by rolldown v1.0.0-beta.53
3
+ ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
4
4
  ℹ config file: /home/runner/work/contractspec/contractspec/packages/examples/openbanking-powens/tsdown.config.js
5
5
  ℹ entry: src/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
6
6
  ℹ target: esnext
@@ -23,5 +23,5 @@ $ tsdown
23
23
   │ Help: The "main" field here was ignored. Main fields must be configured explicitly when using the "neutral" platform.
24
24
  ───╯
25
25
 
26
- ✔ Build complete in 67ms
26
+ ✔ Build complete in 52ms
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-20251213172311
3
+ ## 0.0.0-canary-20251215231151
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies [3086383]
8
- - @lssm/lib.contracts@0.0.0-canary-20251213172311
9
- - @lssm/integration.providers-impls@0.0.0-canary-20251213172311
8
+ - @lssm/lib.contracts@0.0.0-canary-20251215231151
9
+ - @lssm/integration.providers-impls@0.0.0-canary-20251215231151
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.openbanking-powens",
3
- "version": "0.0.0-canary-20251213172311",
3
+ "version": "0.0.0-canary-20251215231151",
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.0",
35
+ "tsdown": "^0.17.4",
36
36
  "typescript": "^5.9.3"
37
37
  },
38
38
  "publishConfig": {
package/src/docs/index.ts CHANGED
@@ -1,3 +1 @@
1
1
  import './openbanking-powens.docblock';
2
-
3
-
package/src/example.ts CHANGED
@@ -23,5 +23,3 @@ const example = {
23
23
  } as const;
24
24
 
25
25
  export default example;
26
-
27
-
@@ -101,7 +101,7 @@ async function enqueueWorkflow(name: string, input: Record<string, unknown>) {
101
101
  }
102
102
 
103
103
  const fakeDatabase = {
104
- connections: [] as Array<ExampleIntegrationConnection & { state: string }>,
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 Array<ExampleIntegrationConnection & { state: string }>,
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
-
package/src/index.ts CHANGED
@@ -2,5 +2,3 @@ export * from './handlers/oauth-callback';
2
2
  export * from './handlers/webhook-handler';
3
3
  export { default as example } from './example';
4
4
  import './docs';
5
-
6
-