@zavudev/sdk 0.28.0 → 0.29.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 +33 -0
- package/package.json +7 -1
- package/resources/messages.d.mts +3 -3
- package/resources/messages.d.ts +3 -3
- package/resources/messages.js +3 -3
- package/resources/messages.mjs +3 -3
- package/src/resources/messages.ts +3 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.29.0 (2026-03-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.28.0...v0.29.0](https://github.com/zavudev/sdk-typescript/compare/v0.28.0...v0.29.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([d8c1fae](https://github.com/zavudev/sdk-typescript/commit/d8c1fae5771215c07e17800fb06e9e2b59c21060))
|
|
10
|
+
* **api:** api update ([b20d511](https://github.com/zavudev/sdk-typescript/commit/b20d5112174d2aa9a335ef0c3db4786e9851dc50))
|
|
11
|
+
* **api:** api update ([ebfca90](https://github.com/zavudev/sdk-typescript/commit/ebfca904272902cffa5be5eb3fbed428de0109e8))
|
|
12
|
+
* **api:** api update ([0cc6fcf](https://github.com/zavudev/sdk-typescript/commit/0cc6fcf3063a006094fdc9502d6bd58a9ec7220f))
|
|
13
|
+
* **api:** api update ([e20ee83](https://github.com/zavudev/sdk-typescript/commit/e20ee831bc1086e7d3b76a1c11d51f1a2be2d6a2))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Chores
|
|
17
|
+
|
|
18
|
+
* **internal:** codegen related update ([08024f2](https://github.com/zavudev/sdk-typescript/commit/08024f2babdebbe509b36369128311f7ef0a5e96))
|
|
19
|
+
* **internal:** codegen related update ([0ca9682](https://github.com/zavudev/sdk-typescript/commit/0ca9682232e6e225ce7f60aa8a9fc32256d61f3d))
|
|
20
|
+
* **internal:** codegen related update ([4b3e287](https://github.com/zavudev/sdk-typescript/commit/4b3e2879e85d6d7ffd71da4190a72cd695c752b3))
|
|
21
|
+
* **internal:** codegen related update ([fa95076](https://github.com/zavudev/sdk-typescript/commit/fa95076ccf3d285f1cdfe16c152a163f166bd6e3))
|
|
22
|
+
* **internal:** codegen related update ([febb461](https://github.com/zavudev/sdk-typescript/commit/febb4612e728d4a38f92e4c148dd67b404570581))
|
|
23
|
+
* **internal:** codegen related update ([023e67e](https://github.com/zavudev/sdk-typescript/commit/023e67e19eb82b77599e36ea730f9f1588dba26c))
|
|
24
|
+
* **internal:** codegen related update ([efa6643](https://github.com/zavudev/sdk-typescript/commit/efa664321a0fad5eef0e5fb85597dae4e05e9338))
|
|
25
|
+
* **internal:** codegen related update ([a29697d](https://github.com/zavudev/sdk-typescript/commit/a29697d3accbe7f5f73b25adedfa6ed293fe9b66))
|
|
26
|
+
* **internal:** codegen related update ([07819d7](https://github.com/zavudev/sdk-typescript/commit/07819d7d51551255ca2d46c71a1b312506950f65))
|
|
27
|
+
* **internal:** codegen related update ([4ac9cbb](https://github.com/zavudev/sdk-typescript/commit/4ac9cbbfa7755e4b57565141b4a7e5ecf7a502ef))
|
|
28
|
+
* **internal:** codegen related update ([4d0b931](https://github.com/zavudev/sdk-typescript/commit/4d0b931f6a491a5b645798828564b878824c306c))
|
|
29
|
+
* **internal:** update dependencies to address dependabot vulnerabilities ([e9998cf](https://github.com/zavudev/sdk-typescript/commit/e9998cfe88df76ca2501615288ac24dc013a42c8))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Refactors
|
|
33
|
+
|
|
34
|
+
* update sdk ([ce58a0b](https://github.com/zavudev/sdk-typescript/commit/ce58a0b85c12b78e9d1ce38cf933b3ffcb24114d))
|
|
35
|
+
|
|
3
36
|
## 0.28.0 (2026-03-08)
|
|
4
37
|
|
|
5
38
|
Full Changelog: [v0.27.0...v0.28.0](https://github.com/zavudev/sdk-typescript/compare/v0.27.0...v0.28.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zavudev/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "The official TypeScript library for the Zavudev API",
|
|
5
5
|
"author": "Zavudev <hi@zavu.dev>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {},
|
|
19
|
+
"overrides": {
|
|
20
|
+
"minimatch": "^9.0.5"
|
|
21
|
+
},
|
|
22
|
+
"resolutions": {
|
|
23
|
+
"minimatch": "^9.0.5"
|
|
24
|
+
},
|
|
19
25
|
"exports": {
|
|
20
26
|
".": {
|
|
21
27
|
"require": {
|
package/resources/messages.d.mts
CHANGED
|
@@ -53,10 +53,10 @@ export declare class Messages extends APIResource {
|
|
|
53
53
|
* - Window opens when the user messages you first
|
|
54
54
|
* - Use template messages to initiate conversations outside the window
|
|
55
55
|
*
|
|
56
|
-
* **
|
|
56
|
+
* **Daily limits:**
|
|
57
57
|
*
|
|
58
|
-
* -
|
|
59
|
-
*
|
|
58
|
+
* - Unverified accounts: 200 messages per channel per day
|
|
59
|
+
* - Complete KYC verification to increase limits to 10,000/day
|
|
60
60
|
*
|
|
61
61
|
* @example
|
|
62
62
|
* ```ts
|
package/resources/messages.d.ts
CHANGED
|
@@ -53,10 +53,10 @@ export declare class Messages extends APIResource {
|
|
|
53
53
|
* - Window opens when the user messages you first
|
|
54
54
|
* - Use template messages to initiate conversations outside the window
|
|
55
55
|
*
|
|
56
|
-
* **
|
|
56
|
+
* **Daily limits:**
|
|
57
57
|
*
|
|
58
|
-
* -
|
|
59
|
-
*
|
|
58
|
+
* - Unverified accounts: 200 messages per channel per day
|
|
59
|
+
* - Complete KYC verification to increase limits to 10,000/day
|
|
60
60
|
*
|
|
61
61
|
* @example
|
|
62
62
|
* ```ts
|
package/resources/messages.js
CHANGED
|
@@ -71,10 +71,10 @@ class Messages extends resource_1.APIResource {
|
|
|
71
71
|
* - Window opens when the user messages you first
|
|
72
72
|
* - Use template messages to initiate conversations outside the window
|
|
73
73
|
*
|
|
74
|
-
* **
|
|
74
|
+
* **Daily limits:**
|
|
75
75
|
*
|
|
76
|
-
* -
|
|
77
|
-
*
|
|
76
|
+
* - Unverified accounts: 200 messages per channel per day
|
|
77
|
+
* - Complete KYC verification to increase limits to 10,000/day
|
|
78
78
|
*
|
|
79
79
|
* @example
|
|
80
80
|
* ```ts
|
package/resources/messages.mjs
CHANGED
|
@@ -68,10 +68,10 @@ export class Messages extends APIResource {
|
|
|
68
68
|
* - Window opens when the user messages you first
|
|
69
69
|
* - Use template messages to initiate conversations outside the window
|
|
70
70
|
*
|
|
71
|
-
* **
|
|
71
|
+
* **Daily limits:**
|
|
72
72
|
*
|
|
73
|
-
* -
|
|
74
|
-
*
|
|
73
|
+
* - Unverified accounts: 200 messages per channel per day
|
|
74
|
+
* - Complete KYC verification to increase limits to 10,000/day
|
|
75
75
|
*
|
|
76
76
|
* @example
|
|
77
77
|
* ```ts
|
|
@@ -82,10 +82,10 @@ export class Messages extends APIResource {
|
|
|
82
82
|
* - Window opens when the user messages you first
|
|
83
83
|
* - Use template messages to initiate conversations outside the window
|
|
84
84
|
*
|
|
85
|
-
* **
|
|
85
|
+
* **Daily limits:**
|
|
86
86
|
*
|
|
87
|
-
* -
|
|
88
|
-
*
|
|
87
|
+
* - Unverified accounts: 200 messages per channel per day
|
|
88
|
+
* - Complete KYC verification to increase limits to 10,000/day
|
|
89
89
|
*
|
|
90
90
|
* @example
|
|
91
91
|
* ```ts
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.29.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.29.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.29.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.29.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|