@dfinity/nns 11.1.3 → 11.1.4-next-2025-12-03
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/dist/candid/genesis_token.did +1 -1
- package/dist/candid/governance.certified.idl.js +53 -9
- package/dist/candid/governance.d.ts +49 -28
- package/dist/candid/governance.did +30 -8
- package/dist/candid/governance.idl.js +53 -9
- package/dist/candid/governance_test.certified.idl.js +53 -9
- package/dist/candid/governance_test.d.ts +49 -28
- package/dist/candid/governance_test.did +30 -8
- package/dist/candid/governance_test.idl.js +53 -9
- package/dist/candid/sns_wasm.did +1 -1
- package/dist/canisters/governance/request.converters.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +3 -3
- package/dist/types/governance_converters.d.ts +2 -1
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { DerEncodedPublicKey } from "@dfinity/agent";
|
|
2
1
|
import type { AccountIdentifierHex } from "@dfinity/ledger-icp";
|
|
2
|
+
import type { DerEncodedPublicKey } from "@icp-sdk/core/agent";
|
|
3
3
|
import type { Principal } from "@icp-sdk/core/principal";
|
|
4
4
|
import type { TopicToFollow } from "../candid/governance";
|
|
5
5
|
import type { CanisterAction, CanisterInstallMode, LogVisibility, NeuronState, NeuronType, NeuronVisibility, ProposalRewardStatus, ProposalStatus, Topic, Vote } from "../enums/governance.enums";
|
|
@@ -270,6 +270,7 @@ export interface ListProposalsRequest {
|
|
|
270
270
|
includeAllManageNeuronProposals: boolean;
|
|
271
271
|
includeStatus: Array<ProposalStatus>;
|
|
272
272
|
omitLargeFields?: boolean;
|
|
273
|
+
returnSelfDescribingAction?: boolean;
|
|
273
274
|
}
|
|
274
275
|
export interface ListProposalsResponse {
|
|
275
276
|
proposals: Array<ProposalInfo>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfinity/nns",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.4-next-2025-12-03",
|
|
4
4
|
"description": "A library for interfacing with the Internet Computer's Network Nervous System.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"network-nervous-system"
|
|
61
61
|
],
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@dfinity/ledger-icp": "
|
|
64
|
-
"@dfinity/utils": "
|
|
65
|
-
"@icp-sdk/core": "
|
|
63
|
+
"@dfinity/ledger-icp": "next",
|
|
64
|
+
"@dfinity/utils": "next",
|
|
65
|
+
"@icp-sdk/core": "*"
|
|
66
66
|
}
|
|
67
|
-
}
|
|
67
|
+
}
|