dodopayments 2.33.0 → 2.34.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 +3 -8
- package/README.md +3 -6
- package/package.json +1 -1
- 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,17 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.
|
|
3
|
+
## [2.34.0](https://github.com/dodopayments/dodopayments-typescript/compare/v2.33.0...v2.34.0) (2026-06-01)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
* **
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Chores
|
|
12
|
-
|
|
13
|
-
* re-seal custom code for 1.101.0 spec (python/go/typescript/kotlin/ruby/php) ([a48da50](https://github.com/dodopayments/dodopayments-typescript/commit/a48da50e42829241f23e9772fb38e0dd672a4e0e))
|
|
14
|
-
* release 2.33.0 ([6e0b513](https://github.com/dodopayments/dodopayments-typescript/commit/6e0b513db906489eb70a52908babb73bcd5a4102))
|
|
8
|
+
* **readme:** drop 'generated with Stainless' attribution from SDK READMEs ([b263085](https://github.com/dodopayments/dodopayments-typescript/commit/b263085f1a4ec952049a2aa2e60f3e19e69e412b))
|
|
9
|
+
* **readme:** drop 'generated with Stainless' attribution from SDK READMEs ([ecb1f48](https://github.com/dodopayments/dodopayments-typescript/commit/ecb1f4866992b21a414001129fe3a00ab81459d4))
|
|
15
10
|
|
|
16
11
|
## [2.32.2](https://github.com/dodopayments/dodopayments-typescript/compare/v2.32.1...v2.32.2) (2026-06-01)
|
|
17
12
|
|
package/README.md
CHANGED
|
@@ -6,14 +6,11 @@ This library provides convenient access to the [Dodo Payments](https://dodopayme
|
|
|
6
6
|
|
|
7
7
|
The REST API documentation can be found on [docs.dodopayments.com](https://docs.dodopayments.com/api-reference/introduction). The full API of this library can be found in [api.md](api.md).
|
|
8
8
|
|
|
9
|
-
It is generated with [Stainless](https://www.stainless.com/).
|
|
10
|
-
|
|
11
9
|
## MCP Server
|
|
12
10
|
|
|
13
11
|
Use the Dodo Payments MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
|
|
14
12
|
|
|
15
13
|
[](https://cursor.com/en-US/install-mcp?name=dodopayments-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImRvZG9wYXltZW50cy1tY3AiXSwiZW52Ijp7IkRPRE9fUEFZTUVOVFNfQVBJX0tFWSI6Ik15IEJlYXJlciBUb2tlbiIsIkRPRE9fUEFZTUVOVFNfV0VCSE9PS19LRVkiOiJNeSBXZWJob29rIEtleSJ9fQ)
|
|
16
|
-
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22dodopayments-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22dodopayments-mcp%22%5D%2C%22env%22%3A%7B%22DODO_PAYMENTS_API_KEY%22%3A%22My%20Bearer%20Token%22%2C%22DODO_PAYMENTS_WEBHOOK_KEY%22%3A%22My%20Webhook%20Key%22%7D%7D)
|
|
17
14
|
|
|
18
15
|
> Note: You may need to set environment variables in your MCP client.
|
|
19
16
|
|
|
@@ -335,7 +332,7 @@ const client = new DodoPayments({
|
|
|
335
332
|
To modify proxy behavior, you can provide custom `fetchOptions` that add runtime-specific proxy
|
|
336
333
|
options to requests:
|
|
337
334
|
|
|
338
|
-
|
|
335
|
+
**Node** <sup>[[docs](https://github.com/nodejs/undici/blob/main/docs/docs/api/ProxyAgent.md#example---proxyagent-with-fetch)]</sup>
|
|
339
336
|
|
|
340
337
|
```ts
|
|
341
338
|
import DodoPayments from 'dodopayments';
|
|
@@ -349,7 +346,7 @@ const client = new DodoPayments({
|
|
|
349
346
|
});
|
|
350
347
|
```
|
|
351
348
|
|
|
352
|
-
|
|
349
|
+
**Bun** <sup>[[docs](https://bun.sh/guides/http/proxy)]</sup>
|
|
353
350
|
|
|
354
351
|
```ts
|
|
355
352
|
import DodoPayments from 'dodopayments';
|
|
@@ -361,7 +358,7 @@ const client = new DodoPayments({
|
|
|
361
358
|
});
|
|
362
359
|
```
|
|
363
360
|
|
|
364
|
-
|
|
361
|
+
**Deno** <sup>[[docs](https://docs.deno.com/api/deno/~/Deno.createHttpClient)]</sup>
|
|
365
362
|
|
|
366
363
|
```ts
|
|
367
364
|
import DodoPayments from 'npm:dodopayments';
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.34.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.34.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.34.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.34.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|