@dfinity/cmc 3.0.3 → 3.0.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.
@@ -1,4 +1,5 @@
1
1
  import type { ActorMethod } from "@dfinity/agent";
2
+ import type { IDL } from "@dfinity/candid";
2
3
  import type { Principal } from "@dfinity/principal";
3
4
 
4
5
  export type AccountIdentifier = string;
@@ -114,3 +115,5 @@ export interface _SERVICE {
114
115
  >;
115
116
  notify_top_up: ActorMethod<[NotifyTopUpArg], NotifyTopUpResult>;
116
117
  }
118
+ export declare const idlFactory: IDL.InterfaceFactory;
119
+ export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dfinity/cmc",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "A library for interfacing with the cycle minting canister.",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/cjs/index.cjs.js",
@@ -36,9 +36,9 @@
36
36
  ],
37
37
  "homepage": "https://github.com/dfinity/ic-js#readme",
38
38
  "peerDependencies": {
39
- "@dfinity/agent": "^1.0.1",
40
- "@dfinity/candid": "^1.0.1",
41
- "@dfinity/principal": "^1.0.1",
42
- "@dfinity/utils": "^2.1.3"
39
+ "@dfinity/agent": "^1.2.1",
40
+ "@dfinity/candid": "^1.2.1",
41
+ "@dfinity/principal": "^1.2.1",
42
+ "@dfinity/utils": "^2.2.0"
43
43
  }
44
44
  }