@junobuild/core 0.0.41 → 0.0.43
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 +11 -11
- package/dist/browser/index.js.map +3 -3
- package/dist/node/index.mjs +12 -12
- package/dist/node/index.mjs.map +3 -3
- package/dist/types/api/actor.api.d.ts +1 -1
- package/dist/types/types/env.types.d.ts +1 -1
- package/dist/types/utils/actor.utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { _SERVICE as SatelliteActor } from '../../declarations/satellite/satellite.did';
|
|
2
2
|
import type { Satellite } from '../types/satellite.types';
|
|
3
|
-
export declare const getSatelliteActor: ({ satelliteId, ...rest }: Satellite) => Promise<SatelliteActor>;
|
|
3
|
+
export declare const getSatelliteActor: ({ satelliteId, container: customContainer, ...rest }: Satellite) => Promise<SatelliteActor>;
|
|
@@ -3,4 +3,4 @@ import type { IDL } from '@dfinity/candid';
|
|
|
3
3
|
import type { Satellite } from '../types/satellite.types';
|
|
4
4
|
export declare const createActor: <T = Record<string, ActorMethod<unknown[], unknown>>>({ satelliteId: canisterId, idlFactory, identity, fetch, container }: {
|
|
5
5
|
idlFactory: IDL.InterfaceFactory;
|
|
6
|
-
} & Required<Pick<Satellite, "satelliteId" | "identity">> & Pick<Satellite, "
|
|
6
|
+
} & Required<Pick<Satellite, "satelliteId" | "identity">> & Pick<Satellite, "fetch" | "container">) => Promise<ActorSubclass<T>>;
|