@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.
@@ -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",
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": "^8",
64
- "@dfinity/utils": "^4",
65
- "@icp-sdk/core": "^4"
63
+ "@dfinity/ledger-icp": "next",
64
+ "@dfinity/utils": "next",
65
+ "@icp-sdk/core": "*"
66
66
  }
67
- }
67
+ }