@papr/memory 1.8.0 → 1.8.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 +9 -0
- package/README.md +3 -4
- 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,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.8.1 (2025-06-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.8.0...v1.8.1](https://github.com/Papr-ai/papr-TypescriptSDK/compare/v1.8.0...v1.8.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **readme:** update badges ([6c070ec](https://github.com/Papr-ai/papr-TypescriptSDK/commit/6c070ec5cdc4727a13a6565c64c51143b9acf5f4))
|
|
10
|
+
* **readme:** use better example snippet for undocumented params ([477b777](https://github.com/Papr-ai/papr-TypescriptSDK/commit/477b777b5be8f6f846e9d138e5e3decb9d1ae2f5))
|
|
11
|
+
|
|
3
12
|
## 1.8.0 (2025-06-17)
|
|
4
13
|
|
|
5
14
|
Full Changelog: [v1.7.1...v1.8.0](https://github.com/Papr-ai/papr-TypescriptSDK/compare/v1.7.1...v1.8.0)
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Papr TypeScript API Library
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.org/package/@papr/memory) 
|
|
3
|
+
[>)](https://npmjs.org/package/@papr/memory) 
|
|
4
4
|
|
|
5
5
|
This library provides convenient access to the Papr REST API from server-side TypeScript or JavaScript.
|
|
6
6
|
|
|
@@ -225,9 +225,8 @@ parameter. This library doesn't validate at runtime that the request matches the
|
|
|
225
225
|
send will be sent as-is.
|
|
226
226
|
|
|
227
227
|
```ts
|
|
228
|
-
client.
|
|
229
|
-
|
|
230
|
-
bar: 12,
|
|
228
|
+
client.user.create({
|
|
229
|
+
// ...
|
|
231
230
|
// @ts-expect-error baz is not yet public
|
|
232
231
|
baz: 'undocumented option',
|
|
233
232
|
});
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.8.
|
|
1
|
+
export const VERSION = '1.8.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.8.
|
|
1
|
+
export declare const VERSION = "1.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.8.
|
|
1
|
+
export declare const VERSION = "1.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.8.
|
|
1
|
+
export const VERSION = '1.8.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|