@knocklabs/node 1.10.0 → 1.10.2

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.10.2 (2025-06-19)
4
+
5
+ Full Changelog: [v1.10.1...v1.10.2](https://github.com/knocklabs/knock-node/compare/v1.10.1...v1.10.2)
6
+
7
+ ### Chores
8
+
9
+ * **readme:** use better example snippet for undocumented params ([5b521fb](https://github.com/knocklabs/knock-node/commit/5b521fbfa92dcccd78811f33c6f7e962dd86639f))
10
+
11
+ ## 1.10.1 (2025-06-18)
12
+
13
+ Full Changelog: [v1.10.0...v1.10.1](https://github.com/knocklabs/knock-node/compare/v1.10.0...v1.10.1)
14
+
15
+ ### Chores
16
+
17
+ * **readme:** update badges ([a4c5e03](https://github.com/knocklabs/knock-node/commit/a4c5e03d3eb8f10c021c89487db0432cb68e7a0d))
18
+
3
19
  ## 1.10.0 (2025-06-17)
4
20
 
5
21
  Full Changelog: [v1.9.0...v1.10.0](https://github.com/knocklabs/knock-node/compare/v1.9.0...v1.10.0)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Knock TypeScript API Library
2
2
 
3
- [![NPM version](https://img.shields.io/npm/v/@knocklabs/node.svg)](https://npmjs.org/package/@knocklabs/node) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/@knocklabs/node)
3
+ [![NPM version](<https://img.shields.io/npm/v/@knocklabs/node.svg?label=npm%20(stable)>)](https://npmjs.org/package/@knocklabs/node) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/@knocklabs/node)
4
4
 
5
5
  This library provides convenient access to the Knock REST API from server-side TypeScript or JavaScript.
6
6
 
@@ -304,9 +304,8 @@ parameter. This library doesn't validate at runtime that the request matches the
304
304
  send will be sent as-is.
305
305
 
306
306
  ```ts
307
- client.foo.create({
308
- foo: 'my_param',
309
- bar: 12,
307
+ client.workflows.trigger({
308
+ // ...
310
309
  // @ts-expect-error baz is not yet public
311
310
  baz: 'undocumented option',
312
311
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knocklabs/node",
3
- "version": "1.10.0",
3
+ "version": "1.10.2",
4
4
  "description": "The official TypeScript library for the Knock API",
5
5
  "author": "Knock <support@knock.app>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.10.0'; // x-release-please-version
1
+ export const VERSION = '1.10.2'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.10.0";
1
+ export declare const VERSION = "1.10.2";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.10.0";
1
+ export declare const VERSION = "1.10.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.10.0'; // x-release-please-version
4
+ exports.VERSION = '1.10.2'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.10.0'; // x-release-please-version
1
+ export const VERSION = '1.10.2'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map