@databolsa/credit-sdk 3.7.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/README.md +71 -0
- package/dist/client.d.ts +408 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +161 -0
- package/dist/schema.d.ts +2218 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@databolsa/credit-sdk",
|
|
3
|
+
"version": "3.7.0",
|
|
4
|
+
"databolsa": {
|
|
5
|
+
"group": "extensions",
|
|
6
|
+
"kind": "client",
|
|
7
|
+
"public": true,
|
|
8
|
+
"layer": "extension",
|
|
9
|
+
"extension": "databolsa.credit",
|
|
10
|
+
"component": "sdk"
|
|
11
|
+
},
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"description": "SDK TypeScript tipado para a API da mesa de crédito do DataBolsa (Credit Desk), gerado a partir do contrato OpenAPI do Credit.",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"gen:schema": "openapi-typescript ../../../api/openapi-credit.yaml -o src/schema.ts",
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"build": "rm -rf dist && bun build src/index.ts --target browser --format esm --outfile dist/index.js && tsc --declaration --emitDeclarationOnly --outDir dist --noEmit false",
|
|
26
|
+
"prepack": "bun run build"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/bun": "latest",
|
|
30
|
+
"openapi-typescript": "^7",
|
|
31
|
+
"typescript": "^5.9.2"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18"
|
|
41
|
+
},
|
|
42
|
+
"author": "Rodrigo Klosowski",
|
|
43
|
+
"homepage": "https://github.com/databolsahq/databolsa/tree/main/extensions/credit/credit-sdk",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/databolsahq/databolsa.git",
|
|
47
|
+
"directory": "extensions/credit/credit-sdk"
|
|
48
|
+
},
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/databolsahq/databolsa/issues"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"databolsa",
|
|
54
|
+
"credit",
|
|
55
|
+
"credito-privado",
|
|
56
|
+
"fidc",
|
|
57
|
+
"sdk",
|
|
58
|
+
"typescript",
|
|
59
|
+
"openapi"
|
|
60
|
+
]
|
|
61
|
+
}
|