@messagebird/sdk 0.29.0 → 0.30.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 +2 -2
- package/dist/index.d.mts +7082 -4356
- package/dist/index.mjs +1951 -506
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@messagebird/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "The official TypeScript SDK for the Bird API: email, SMS, WhatsApp, verification, and Realtime on one typed client.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Bird",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "tsdown",
|
|
51
51
|
"test": "vitest run",
|
|
52
|
-
"lint": "tsc --noEmit && tsc --noEmit -p examples/tsconfig.json",
|
|
52
|
+
"lint": "tsc --noEmit && tsc --noEmit -p examples/tsconfig.json && tsc -p tsconfig.types.json",
|
|
53
53
|
"generate": "openapi-ts",
|
|
54
54
|
"prepack": "npm run build"
|
|
55
55
|
},
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
},
|
|
59
59
|
"//unrun": "tsdown's TypeScript-config loader, declared by tsdown as an optional peer. Keep it an explicit devDependency: clean installs omit optional peers, and the mirror build then fails to load tsdown.config.ts. Do not prune.",
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@hey-api/openapi-ts": "0.
|
|
62
|
-
"tsdown": "0.22.
|
|
63
|
-
"typescript": "npm:@typescript/typescript6@^6",
|
|
61
|
+
"@hey-api/openapi-ts": "0.99.0",
|
|
62
|
+
"tsdown": "0.22.14",
|
|
63
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
64
64
|
"typescript-7": "npm:typescript@7.0.2",
|
|
65
65
|
"unrun": "0.3.1",
|
|
66
66
|
"vitest": "4.1.10"
|