@needmoretruth/nmts-cli 0.34.3 → 0.34.4
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 +7 -0
- package/README.ko.md +1 -1
- package/README.md +1 -1
- package/dist/api-advice.js +4 -0
- package/dist/artifact-about.d.ts +1 -1
- package/dist/product.d.ts +1 -1
- package/dist/product.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
Each version's entry is what changed for the person or the program using `nmts`. The product's own
|
|
4
4
|
update history, which covers the site and the server too, is at https://nmts.me/updates.
|
|
5
5
|
|
|
6
|
+
## 0.34.4 — 2026-09-07
|
|
7
|
+
|
|
8
|
+
- The advice for `SPONSORED_IDEM_MISMATCH`: the server now refuses a credit reservation repeated
|
|
9
|
+
under the same key with a different blob (the piece was re-encrypted after it was reserved).
|
|
10
|
+
Repeating the call cannot work; the advice says to start the upload again so new keys are
|
|
11
|
+
derived, and that nothing was charged for the refused call.
|
|
12
|
+
|
|
6
13
|
## 0.34.3 — 2026-09-07
|
|
7
14
|
|
|
8
15
|
- Security. `nmts wallet swap` on Bluefin now calls only the contract package pinned in this
|
package/README.ko.md
CHANGED
|
@@ -51,7 +51,7 @@ nmts --help
|
|
|
51
51
|
|
|
52
52
|
```sh
|
|
53
53
|
npm install -g github:needmoretruth/nmts-cli # 기본 브랜치
|
|
54
|
-
npm install -g github:needmoretruth/nmts-cli#v0.34.
|
|
54
|
+
npm install -g github:needmoretruth/nmts-cli#v0.34.4 # 버전을 고정할 때
|
|
55
55
|
npm install -g https://github.com/needmoretruth/nmts-cli/releases/latest/download/nmts.tgz
|
|
56
56
|
```
|
|
57
57
|
|
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ default branch, from a pinned version, or from the tarball attached to the
|
|
|
53
53
|
|
|
54
54
|
```sh
|
|
55
55
|
npm install -g github:needmoretruth/nmts-cli # the default branch
|
|
56
|
-
npm install -g github:needmoretruth/nmts-cli#v0.34.
|
|
56
|
+
npm install -g github:needmoretruth/nmts-cli#v0.34.4 # a pinned version
|
|
57
57
|
npm install -g https://github.com/needmoretruth/nmts-cli/releases/latest/download/nmts.tgz
|
|
58
58
|
```
|
|
59
59
|
|
package/dist/api-advice.js
CHANGED
|
@@ -168,6 +168,10 @@ export function adviseFor(code) {
|
|
|
168
168
|
case "RELEASE_NOT_SPONSORED":
|
|
169
169
|
return ("This file's storage was not paid for with credits, so it is not the server's to release. " +
|
|
170
170
|
"Storage bought from a wallet is released by that wallet.");
|
|
171
|
+
case "SPONSORED_IDEM_MISMATCH":
|
|
172
|
+
return ("This reservation key already names a different blob: the piece was re-encrypted after it " +
|
|
173
|
+
"was reserved. Repeating the call under this key cannot work. Start the upload again so it " +
|
|
174
|
+
"derives new keys; nothing was charged for this call.");
|
|
171
175
|
case "SPONSORED_STATE":
|
|
172
176
|
return ("The upload is not at the step that call belongs to — the steps have an order and one was " +
|
|
173
177
|
"skipped or already done. Start the upload again rather than repeating this call.");
|
package/dist/artifact-about.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare const CRYPTO_SPEC_URL = "https://github.com/needmoretruth/nmts-re
|
|
|
11
11
|
* is the field's own contract — what the writer says about itself — and a person holding two
|
|
12
12
|
* copies of one account's artefacts can then tell which program made each.
|
|
13
13
|
*/
|
|
14
|
-
export declare const WRITTEN_BY = "nmts-cli 0.34.
|
|
14
|
+
export declare const WRITTEN_BY = "nmts-cli 0.34.4";
|
|
15
15
|
/** Which of the three artefacts a wrapper is. A reader holding several can sort them. */
|
|
16
16
|
export type ArtifactKind = "recovery-list" | "file-list" | "recovery-kit";
|
|
17
17
|
/**
|
package/dist/product.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const BINARY_NAME = "nmts";
|
|
|
9
9
|
* beside it. Here rather than in `main.ts` because the MCP server has to say it too, and a
|
|
10
10
|
* command importing the entry point is a cycle waiting to bite.
|
|
11
11
|
*/
|
|
12
|
-
export declare const VERSION = "0.34.
|
|
12
|
+
export declare const VERSION = "0.34.4";
|
|
13
13
|
/** Where the product lives, for messages that need to send somebody somewhere real. */
|
|
14
14
|
export declare const HOME_URL = "https://nmts.me";
|
|
15
15
|
/** The source, so a person holding only the built program can find what it was built from. */
|
package/dist/product.js
CHANGED
|
@@ -18,7 +18,7 @@ export const BINARY_NAME = "nmts";
|
|
|
18
18
|
* beside it. Here rather than in `main.ts` because the MCP server has to say it too, and a
|
|
19
19
|
* command importing the entry point is a cycle waiting to bite.
|
|
20
20
|
*/
|
|
21
|
-
export const VERSION = "0.34.
|
|
21
|
+
export const VERSION = "0.34.4";
|
|
22
22
|
/** Where the product lives, for messages that need to send somebody somewhere real. */
|
|
23
23
|
export const HOME_URL = "https://nmts.me";
|
|
24
24
|
/** The source, so a person holding only the built program can find what it was built from. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@needmoretruth/nmts-cli",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.4",
|
|
4
4
|
"description": "Command-line and MCP access to NMTS (NeedMoreTruthStorage, https://nmts.me): open-source, end-to-end encrypted storage on the Walrus network. No fee to NMTS; you pay the network from your own wallet. For people and for their agents.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|