@lorikeetai/node-sdk 2.0.0 → 2.1.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 +10 -0
- package/package.json +2 -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,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.1.0 (2026-02-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0...v2.1.0](https://github.com/optechai/node-sdk/compare/v0.1.0...v2.1.0)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* update SDK settings ([e207c4a](https://github.com/optechai/node-sdk/commit/e207c4a0f935d40b79fb30584b22e0303b8eeb27))
|
|
10
|
+
* update SDK settings ([f359b1f](https://github.com/optechai/node-sdk/commit/f359b1f53ce498599b903a2a7e809df033165c4a))
|
|
11
|
+
* update SDK settings ([64b66be](https://github.com/optechai/node-sdk/commit/64b66becba11270688b6c72a844c7a639a1eb9f9))
|
|
12
|
+
|
|
3
13
|
## 0.1.0 (2026-02-25)
|
|
4
14
|
|
|
5
15
|
Full Changelog: [v0.0.1...v0.1.0](https://github.com/optechai/node-sdk/compare/v0.0.1...v0.1.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lorikeetai/node-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "The official TypeScript library for the Lorikeet API",
|
|
5
5
|
"author": "Lorikeet <support@lorikeetcx.ai>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"test": "./scripts/test",
|
|
21
21
|
"build": "./scripts/build",
|
|
22
22
|
"format": "./scripts/format",
|
|
23
|
-
"nowpublish": "cd dist; pnpm publish",
|
|
24
23
|
"tsn": "ts-node -r tsconfig-paths/register",
|
|
25
24
|
"lint": "./scripts/lint",
|
|
26
25
|
"fix": "./scripts/format"
|
|
@@ -151,4 +150,4 @@
|
|
|
151
150
|
"default": "./version.mjs"
|
|
152
151
|
}
|
|
153
152
|
}
|
|
154
|
-
}
|
|
153
|
+
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '
|
|
1
|
+
export const VERSION = '2.1.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "
|
|
1
|
+
export declare const VERSION = "2.1.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "
|
|
1
|
+
export declare const VERSION = "2.1.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '
|
|
1
|
+
export const VERSION = '2.1.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|