@contractspec/example.openbanking-powens 3.2.0 → 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.
- package/.turbo/turbo-build.log +8 -6
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +24 -1
- package/dist/node/index.js +24 -1
- package/dist/node/openbanking-powens.feature.js +24 -0
- package/dist/openbanking-powens.feature.d.ts +1 -0
- package/dist/openbanking-powens.feature.js +25 -0
- package/package.json +17 -5
- package/src/index.ts +1 -0
- package/src/openbanking-powens.feature.ts +24 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -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
|
-
Bundled
|
|
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.
|
|
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=
|
|
16
|
-
Bundled
|
|
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.
|
|
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,17 @@
|
|
|
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
|
+
|
|
3
15
|
## 3.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
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
|
};
|
package/dist/node/index.js
CHANGED
|
@@ -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.
|
|
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.
|
|
68
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
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.
|
|
77
|
+
"@contractspec/tool.typescript": "3.3.0",
|
|
72
78
|
"typescript": "^5.9.3",
|
|
73
|
-
"@contractspec/tool.bun": "3.
|
|
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
|
@@ -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
|
+
});
|