@contractspec/example.openbanking-powens 3.1.1 → 3.3.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.
@@ -2,24 +2,26 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=6
6
- Bundled 6 modules in 21ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=7
6
+ Bundled 7 modules in 32ms
7
7
 
8
8
  docs/index.js 1.58 KB (entry point)
9
- ./index.js 8.1 KB (entry point)
9
+ ./index.js 8.80 KB (entry point)
10
10
  docs/openbanking-powens.docblock.js 1.58 KB (entry point)
11
11
  ./example.js 1.0 KB (entry point)
12
12
  handlers/oauth-callback.js 2.26 KB (entry point)
13
13
  handlers/webhook-handler.js 3.22 KB (entry point)
14
+ ./openbanking-powens.feature.js 0.72 KB (entry point)
14
15
 
15
- [contractspec-bun-build] transpile target=node root=src entries=6
16
- Bundled 6 modules in 17ms
16
+ [contractspec-bun-build] transpile target=node root=src entries=7
17
+ Bundled 7 modules in 18ms
17
18
 
18
19
  docs/index.js 1.56 KB (entry point)
19
- ./index.js 8.1 KB (entry point)
20
+ ./index.js 8.78 KB (entry point)
20
21
  docs/openbanking-powens.docblock.js 1.56 KB (entry point)
21
22
  ./example.js 1.0 KB (entry point)
22
23
  handlers/oauth-callback.js 2.26 KB (entry point)
23
24
  handlers/webhook-handler.js 3.21 KB (entry point)
25
+ ./openbanking-powens.feature.js 0.72 KB (entry point)
24
26
 
25
27
  $ contractspec-bun-build types
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @contractspec/example.openbanking-powens
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 890a0da: fix: stability improvements
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [890a0da]
12
+ - @contractspec/integration.providers-impls@3.3.0
13
+ - @contractspec/lib.contracts-spec@3.3.0
14
+
15
+ ## 3.2.0
16
+
17
+ ### Minor Changes
18
+
19
+ - a281fc5: fix: missing dependencies
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [a281fc5]
24
+ - @contractspec/integration.providers-impls@3.2.0
25
+ - @contractspec/lib.contracts-spec@3.2.0
26
+
3
27
  ## 3.1.1
4
28
 
5
29
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './handlers/oauth-callback';
2
2
  export * from './handlers/webhook-handler';
3
+ export * from './openbanking-powens.feature';
3
4
  export { default as example } from './example';
4
5
  import './docs';
package/dist/index.js CHANGED
@@ -222,8 +222,31 @@ var fakeWorkflowQueue2 = {
222
222
  var fakeTelemetryLogger = {
223
223
  record: async (_payload) => {}
224
224
  };
225
+
226
+ // src/openbanking-powens.feature.ts
227
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
228
+ var OpenbankingPowensFeature = defineFeature({
229
+ meta: {
230
+ key: "openbanking-powens",
231
+ version: "1.0.0",
232
+ title: "Open Banking - Powens",
233
+ description: "Powens open banking OAuth callback and webhook handler patterns",
234
+ domain: "integration",
235
+ owners: ["@examples"],
236
+ tags: ["openbanking", "powens", "oauth", "webhooks"],
237
+ stability: "experimental"
238
+ },
239
+ integrations: [
240
+ { key: "openbanking-powens.integration.powens", version: "1.0.0" }
241
+ ],
242
+ docs: [
243
+ "docs.examples.openbanking-powens",
244
+ "docs.examples.openbanking-powens.usage"
245
+ ]
246
+ });
225
247
  export {
226
248
  powensWebhookHandler,
227
249
  powensOAuthCallbackHandler,
228
- example_default as example
250
+ example_default as example,
251
+ OpenbankingPowensFeature
229
252
  };
@@ -221,8 +221,31 @@ var fakeWorkflowQueue2 = {
221
221
  var fakeTelemetryLogger = {
222
222
  record: async (_payload) => {}
223
223
  };
224
+
225
+ // src/openbanking-powens.feature.ts
226
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
227
+ var OpenbankingPowensFeature = defineFeature({
228
+ meta: {
229
+ key: "openbanking-powens",
230
+ version: "1.0.0",
231
+ title: "Open Banking - Powens",
232
+ description: "Powens open banking OAuth callback and webhook handler patterns",
233
+ domain: "integration",
234
+ owners: ["@examples"],
235
+ tags: ["openbanking", "powens", "oauth", "webhooks"],
236
+ stability: "experimental"
237
+ },
238
+ integrations: [
239
+ { key: "openbanking-powens.integration.powens", version: "1.0.0" }
240
+ ],
241
+ docs: [
242
+ "docs.examples.openbanking-powens",
243
+ "docs.examples.openbanking-powens.usage"
244
+ ]
245
+ });
224
246
  export {
225
247
  powensWebhookHandler,
226
248
  powensOAuthCallbackHandler,
227
- example_default as example
249
+ example_default as example,
250
+ OpenbankingPowensFeature
228
251
  };
@@ -0,0 +1,24 @@
1
+ // src/openbanking-powens.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var OpenbankingPowensFeature = defineFeature({
4
+ meta: {
5
+ key: "openbanking-powens",
6
+ version: "1.0.0",
7
+ title: "Open Banking - Powens",
8
+ description: "Powens open banking OAuth callback and webhook handler patterns",
9
+ domain: "integration",
10
+ owners: ["@examples"],
11
+ tags: ["openbanking", "powens", "oauth", "webhooks"],
12
+ stability: "experimental"
13
+ },
14
+ integrations: [
15
+ { key: "openbanking-powens.integration.powens", version: "1.0.0" }
16
+ ],
17
+ docs: [
18
+ "docs.examples.openbanking-powens",
19
+ "docs.examples.openbanking-powens.usage"
20
+ ]
21
+ });
22
+ export {
23
+ OpenbankingPowensFeature
24
+ };
@@ -0,0 +1 @@
1
+ export declare const OpenbankingPowensFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,25 @@
1
+ // @bun
2
+ // src/openbanking-powens.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var OpenbankingPowensFeature = defineFeature({
5
+ meta: {
6
+ key: "openbanking-powens",
7
+ version: "1.0.0",
8
+ title: "Open Banking - Powens",
9
+ description: "Powens open banking OAuth callback and webhook handler patterns",
10
+ domain: "integration",
11
+ owners: ["@examples"],
12
+ tags: ["openbanking", "powens", "oauth", "webhooks"],
13
+ stability: "experimental"
14
+ },
15
+ integrations: [
16
+ { key: "openbanking-powens.integration.powens", version: "1.0.0" }
17
+ ],
18
+ docs: [
19
+ "docs.examples.openbanking-powens",
20
+ "docs.examples.openbanking-powens.usage"
21
+ ]
22
+ });
23
+ export {
24
+ OpenbankingPowensFeature
25
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.openbanking-powens",
3
- "version": "3.1.1",
3
+ "version": "3.3.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",
@@ -46,6 +46,12 @@
46
46
  "bun": "./dist/handlers/webhook-handler.js",
47
47
  "node": "./dist/node/handlers/webhook-handler.js",
48
48
  "default": "./dist/handlers/webhook-handler.js"
49
+ },
50
+ "./openbanking-powens.feature": {
51
+ "types": "./dist/openbanking-powens.feature.d.ts",
52
+ "bun": "./dist/openbanking-powens.feature.js",
53
+ "node": "./dist/node/openbanking-powens.feature.js",
54
+ "default": "./dist/openbanking-powens.feature.js"
49
55
  }
50
56
  },
51
57
  "scripts": {
@@ -64,13 +70,13 @@
64
70
  "typecheck": "tsc --noEmit"
65
71
  },
66
72
  "dependencies": {
67
- "@contractspec/integration.providers-impls": "3.1.1",
68
- "@contractspec/lib.contracts-spec": "3.1.1"
73
+ "@contractspec/integration.providers-impls": "3.3.0",
74
+ "@contractspec/lib.contracts-spec": "3.3.0"
69
75
  },
70
76
  "devDependencies": {
71
- "@contractspec/tool.typescript": "3.1.0",
77
+ "@contractspec/tool.typescript": "3.3.0",
72
78
  "typescript": "^5.9.3",
73
- "@contractspec/tool.bun": "3.1.0"
79
+ "@contractspec/tool.bun": "3.3.0"
74
80
  },
75
81
  "publishConfig": {
76
82
  "access": "public",
@@ -116,6 +122,12 @@
116
122
  "bun": "./dist/handlers/webhook-handler.js",
117
123
  "node": "./dist/node/handlers/webhook-handler.js",
118
124
  "default": "./dist/handlers/webhook-handler.js"
125
+ },
126
+ "./openbanking-powens.feature": {
127
+ "types": "./dist/openbanking-powens.feature.d.ts",
128
+ "bun": "./dist/openbanking-powens.feature.js",
129
+ "node": "./dist/node/openbanking-powens.feature.js",
130
+ "default": "./dist/openbanking-powens.feature.js"
119
131
  }
120
132
  },
121
133
  "registry": "https://registry.npmjs.org/"
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './handlers/oauth-callback';
2
2
  export * from './handlers/webhook-handler';
3
+ export * from './openbanking-powens.feature';
3
4
  export { default as example } from './example';
4
5
  import './docs';
@@ -0,0 +1,24 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const OpenbankingPowensFeature = defineFeature({
4
+ meta: {
5
+ key: 'openbanking-powens',
6
+ version: '1.0.0',
7
+ title: 'Open Banking - Powens',
8
+ description:
9
+ 'Powens open banking OAuth callback and webhook handler patterns',
10
+ domain: 'integration',
11
+ owners: ['@examples'],
12
+ tags: ['openbanking', 'powens', 'oauth', 'webhooks'],
13
+ stability: 'experimental',
14
+ },
15
+
16
+ integrations: [
17
+ { key: 'openbanking-powens.integration.powens', version: '1.0.0' },
18
+ ],
19
+
20
+ docs: [
21
+ 'docs.examples.openbanking-powens',
22
+ 'docs.examples.openbanking-powens.usage',
23
+ ],
24
+ });