@nirvana-labs/nirvana 1.18.1 → 1.18.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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.18.2 (2025-10-04)
4
+
5
+ Full Changelog: [v1.18.1...v1.18.2](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.18.1...v1.18.2)
6
+
7
+ ### Chores
8
+
9
+ * **jsdoc:** fix [@link](https://github.com/link) annotations to refer only to parts of the package‘s public interface ([8a4739c](https://github.com/nirvana-labs/nirvana-typescript/commit/8a4739c1d7c1372f6083a3edf05d8a71cc793354))
10
+
3
11
  ## 1.18.1 (2025-10-03)
4
12
 
5
13
  Full Changelog: [v1.18.0...v1.18.1](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.18.0...v1.18.1)
@@ -33,7 +33,7 @@ export interface ResponseLike {
33
33
  export type ToFileInput = FileLike | ResponseLike | Exclude<BlobLikePart, string> | AsyncIterable<BlobLikePart>;
34
34
  /**
35
35
  * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats
36
- * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s
36
+ * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts
37
37
  * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible
38
38
  * @param {Object=} options additional properties
39
39
  * @param {string=} options.type the MIME type of the content
@@ -33,7 +33,7 @@ export interface ResponseLike {
33
33
  export type ToFileInput = FileLike | ResponseLike | Exclude<BlobLikePart, string> | AsyncIterable<BlobLikePart>;
34
34
  /**
35
35
  * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats
36
- * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s
36
+ * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts
37
37
  * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible
38
38
  * @param {Object=} options additional properties
39
39
  * @param {string=} options.type the MIME type of the content
@@ -27,7 +27,7 @@ const isResponseLike = (value) => value != null &&
27
27
  typeof value.blob === 'function';
28
28
  /**
29
29
  * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats
30
- * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s
30
+ * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts
31
31
  * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible
32
32
  * @param {Object=} options additional properties
33
33
  * @param {string=} options.type the MIME type of the content
@@ -24,7 +24,7 @@ const isResponseLike = (value) => value != null &&
24
24
  typeof value.blob === 'function';
25
25
  /**
26
26
  * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats
27
- * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s
27
+ * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts
28
28
  * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible
29
29
  * @param {Object=} options additional properties
30
30
  * @param {string=} options.type the MIME type of the content
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nirvana-labs/nirvana",
3
- "version": "1.18.1",
3
+ "version": "1.18.2",
4
4
  "description": "The official TypeScript library for the Nirvana Labs API",
5
5
  "author": "Nirvana Labs <engineering@nirvanalabs.io>",
6
6
  "types": "./index.d.ts",
@@ -73,7 +73,7 @@ export type ToFileInput =
73
73
 
74
74
  /**
75
75
  * Helper for creating a {@link File} to pass to an SDK upload method from a variety of different data formats
76
- * @param value the raw content of the file. Can be an {@link Uploadable}, {@link BlobLikePart}, or {@link AsyncIterable} of {@link BlobLikePart}s
76
+ * @param value the raw content of the file. Can be an {@link Uploadable}, BlobLikePart, or AsyncIterable of BlobLikeParts
77
77
  * @param {string=} name the name of the file. If omitted, toFile will try to determine a file name from bits if possible
78
78
  * @param {Object=} options additional properties
79
79
  * @param {string=} options.type the MIME type of the content
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.18.1'; // x-release-please-version
1
+ export const VERSION = '1.18.2'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.18.1";
1
+ export declare const VERSION = "1.18.2";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.18.1";
1
+ export declare const VERSION = "1.18.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.18.1'; // x-release-please-version
4
+ exports.VERSION = '1.18.2'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.18.1'; // x-release-please-version
1
+ export const VERSION = '1.18.2'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map