@junobuild/core-peer 0.1.10 → 0.1.11
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/browser/index.js +1 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +2 -2
- package/dist/types/api/actor.api.d.ts +1 -1
- package/dist/types/services/factory.services.d.ts +1 -1
- package/dist/types/types/doc.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,6 @@ import type { IDL } from '@dfinity/candid';
|
|
|
4
4
|
import type { _SERVICE as SatelliteActor } from '../../declarations/satellite/satellite.did';
|
|
5
5
|
import type { Satellite } from '../types/satellite.types';
|
|
6
6
|
export declare const getSatelliteActor: (satellite: Satellite) => Promise<SatelliteActor>;
|
|
7
|
-
export declare const getSatelliteExtendedActor: <T = Record<string, ActorMethod
|
|
7
|
+
export declare const getSatelliteExtendedActor: <T = Record<string, ActorMethod>>({ idlFactory, ...rest }: Satellite & {
|
|
8
8
|
idlFactory: IDL.InterfaceFactory;
|
|
9
9
|
}) => Promise<ActorSubclass<T>>;
|
|
@@ -2,7 +2,7 @@ import type { ActorSubclass } from '@dfinity/agent';
|
|
|
2
2
|
import type { ActorMethod } from '@dfinity/agent/lib/esm/actor';
|
|
3
3
|
import type { IDL } from '@dfinity/candid';
|
|
4
4
|
import type { SatelliteOptions } from '../types/satellite.types';
|
|
5
|
-
export declare const getSatelliteExtendedActor: <T = Record<string, ActorMethod
|
|
5
|
+
export declare const getSatelliteExtendedActor: <T = Record<string, ActorMethod>>({ idlFactory, satellite }: {
|
|
6
6
|
idlFactory: IDL.InterfaceFactory;
|
|
7
7
|
satellite?: SatelliteOptions;
|
|
8
8
|
}) => Promise<ActorSubclass<T>>;
|
package/package.json
CHANGED