File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ - fix(agent): remove the ` nonce ` from the ` ActorConfig ` type. This field must be used through the ` CallConfig ` type instead.
6
+
5
7
## [ 4.0.3] - 2025-09-16
6
8
7
9
- fix(identity): expose all the exported elements from the ` ed25519 ` module.
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ export interface CallConfig {
56
56
}
57
57
58
58
/**
59
- * Configuration that can be passed to customize the Actor behaviour .
59
+ * Configuration that can be passed to customize the Actor behavior .
60
60
*/
61
- export interface ActorConfig extends CallConfig {
61
+ export interface ActorConfig extends Pick < CallConfig , 'agent' | 'effectiveCanisterId' > {
62
62
/**
63
63
* The Canister ID of this Actor. This is required for an Actor.
64
64
*/
You can’t perform that action at this time.
0 commit comments