@roarkanalytics/sdk 0.141.0 → 0.141.1
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 +8 -0
- package/package.json +29 -8
- package/src/version.ts +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,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.141.1 (2025-02-14)
|
4
|
+
|
5
|
+
Full Changelog: [v0.141.0...v0.141.1](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v0.141.0...v0.141.1)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* **client:** fix export map for index exports ([#465](https://github.com/roarkhq/sdk-roark-analytics-node/issues/465)) ([69126eb](https://github.com/roarkhq/sdk-roark-analytics-node/commit/69126ebb3e1a768e4303c5b7dceacd02ac27ea2e))
|
10
|
+
|
3
11
|
## 0.141.0 (2025-02-14)
|
4
12
|
|
5
13
|
Full Changelog: [v0.140.0...v0.141.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v0.140.0...v0.141.0)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@roarkanalytics/sdk",
|
3
|
-
"version": "0.141.
|
3
|
+
"version": "0.141.1",
|
4
4
|
"description": "The official TypeScript library for the Roark API",
|
5
5
|
"author": "Roark <james@roark.ai>",
|
6
6
|
"types": "./index.d.ts",
|
@@ -87,17 +87,38 @@
|
|
87
87
|
"default": "./index.mjs"
|
88
88
|
},
|
89
89
|
"./*.mjs": {
|
90
|
-
"types":
|
91
|
-
|
90
|
+
"types": [
|
91
|
+
"./*.d.ts",
|
92
|
+
"./*/index.d.ts"
|
93
|
+
],
|
94
|
+
"default": [
|
95
|
+
"./*.mjs",
|
96
|
+
"./*/index.mjs"
|
97
|
+
]
|
92
98
|
},
|
93
99
|
"./*.js": {
|
94
|
-
"types":
|
95
|
-
|
100
|
+
"types": [
|
101
|
+
"./*.d.ts",
|
102
|
+
"./*/index.d.ts"
|
103
|
+
],
|
104
|
+
"default": [
|
105
|
+
"./*.js",
|
106
|
+
"./*/index.js"
|
107
|
+
]
|
96
108
|
},
|
97
109
|
"./*": {
|
98
|
-
"types":
|
99
|
-
|
100
|
-
|
110
|
+
"types": [
|
111
|
+
"./*.d.ts",
|
112
|
+
"./*/index.d.ts"
|
113
|
+
],
|
114
|
+
"require": [
|
115
|
+
"./*.js",
|
116
|
+
"./*/index.js"
|
117
|
+
],
|
118
|
+
"default": [
|
119
|
+
"./*.mjs",
|
120
|
+
"./*/index.mjs"
|
121
|
+
]
|
101
122
|
}
|
102
123
|
}
|
103
124
|
}
|
package/src/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const VERSION = '0.141.
|
1
|
+
export const VERSION = '0.141.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const VERSION = "0.141.
|
1
|
+
export declare const VERSION = "0.141.1";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const VERSION = '0.141.
|
1
|
+
export const VERSION = '0.141.1'; // x-release-please-version
|
2
2
|
//# sourceMappingURL=version.mjs.map
|