@crvouga/mockingbird-service-flex 0.1.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/CHANGELOG.md +5 -0
- package/README.md +213 -0
- package/dist/chunk-Q6AKODYZ.js +380 -0
- package/dist/chunk-Q6AKODYZ.js.map +7 -0
- package/dist/chunk-RB3RIE5G.js +4546 -0
- package/dist/chunk-RB3RIE5G.js.map +7 -0
- package/dist/cli.js +19 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.d.ts +1112 -0
- package/dist/index.js +43 -0
- package/dist/index.js.map +7 -0
- package/dist/server.d.ts +1414 -0
- package/dist/server.js +12 -0
- package/dist/server.js.map +7 -0
- package/package.json +97 -0
package/dist/server.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@crvouga/mockingbird-service-flex",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Stateful mock of the Flex HSA/FSA payments API: products (recorded catalog corpus), checkout sessions in payment, off-session and setup modes, customers, setup intents, refunds, the hosted checkout page, and Svix-signed webhooks.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"CHANGELOG.md"
|
|
12
|
+
],
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./server": {
|
|
21
|
+
"types": "./dist/server.d.ts",
|
|
22
|
+
"default": "./dist/server.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"mockingbird-flex": "./dist/cli.js"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/crvouga/mockingbird.git",
|
|
35
|
+
"directory": "packages/service/flex"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/crvouga/mockingbird/tree/main/packages/service/flex#readme",
|
|
38
|
+
"keywords": [
|
|
39
|
+
"mockingbird",
|
|
40
|
+
"service",
|
|
41
|
+
"flex",
|
|
42
|
+
"withflex",
|
|
43
|
+
"hsa",
|
|
44
|
+
"fsa",
|
|
45
|
+
"payments",
|
|
46
|
+
"checkout"
|
|
47
|
+
],
|
|
48
|
+
"mockingbird": {
|
|
49
|
+
"runtime": "portable",
|
|
50
|
+
"entries": {
|
|
51
|
+
"server": "node",
|
|
52
|
+
"cli": "node"
|
|
53
|
+
},
|
|
54
|
+
"layer": "service",
|
|
55
|
+
"category": "payments",
|
|
56
|
+
"displayName": "Flex",
|
|
57
|
+
"status": "wip",
|
|
58
|
+
"playground": {
|
|
59
|
+
"headers": {
|
|
60
|
+
"authorization": "Bearer fsk_test_mockingbird"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"generate": "bun ../../openapi/codegen/dist/cli.js",
|
|
66
|
+
"generate:check": "bun ../../openapi/codegen/dist/cli.js --check",
|
|
67
|
+
"openapi:check": "bun ../../openapi/codegen/dist/cli.js --validate",
|
|
68
|
+
"build": "bun ../../../scripts/bundle-service.ts",
|
|
69
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
70
|
+
"lint": "biome check .",
|
|
71
|
+
"test": "bun test",
|
|
72
|
+
"parity": "bun scripts/parity.ts",
|
|
73
|
+
"portability": "bun ../../../scripts/portability.ts",
|
|
74
|
+
"pack:check": "bun ../../../scripts/pack-check.ts"
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@crvouga/mockingbird-service-sqlite": "0.3.0",
|
|
78
|
+
"hono": "4.11.9"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"fast-check": "4.9.0",
|
|
82
|
+
"@crvouga/mockingbird-testing": "0.1.0",
|
|
83
|
+
"@crvouga/mockingbird-service-sqlite": "0.0.0-development",
|
|
84
|
+
"@crvouga/mockingbird-parity": "0.0.0-development",
|
|
85
|
+
"@crvouga/mockingbird-openbao": "0.0.0-development",
|
|
86
|
+
"@crvouga/mockingbird-openapi-codegen": "0.1.0",
|
|
87
|
+
"@crvouga/mockingbird-openapi-metadata": "0.0.0-development",
|
|
88
|
+
"@crvouga/mockingbird-core": "0.0.0-development",
|
|
89
|
+
"@crvouga/mockingbird-sqlite": "0.0.0-development",
|
|
90
|
+
"@crvouga/mockingbird-openapi": "0.0.0-development",
|
|
91
|
+
"@crvouga/mockingbird-service": "0.0.0-development",
|
|
92
|
+
"@crvouga/mockingbird-http-codec": "0.0.0-development",
|
|
93
|
+
"@crvouga/mockingbird-adapter-node": "0.0.0-development",
|
|
94
|
+
"svix": "1.41.0",
|
|
95
|
+
"zod": "3.25.76"
|
|
96
|
+
}
|
|
97
|
+
}
|