@junobuild/core 0.0.3 → 0.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.
- package/dist/cjs/index.cjs.js.map +2 -2
- package/dist/declarations/cmc/cmc.did +122 -0
- package/dist/declarations/cmc/cmc.did.d.ts +48 -0
- package/dist/declarations/cmc/cmc.factory.did.js +65 -0
- package/dist/declarations/cmc/index.d.ts +45 -0
- package/dist/declarations/cmc/index.js +32 -0
- package/dist/declarations/console/console.did.d.ts +47 -0
- package/dist/declarations/console/console.factory.did.js +49 -0
- package/dist/declarations/console/console.factory.did.mjs +49 -0
- package/dist/declarations/console/index.d.ts +45 -0
- package/dist/declarations/console/index.js +32 -0
- package/dist/declarations/frontend/frontend.did +147 -0
- package/dist/declarations/frontend/frontend.did.d.ts +128 -0
- package/dist/declarations/frontend/frontend.factory.did.js +165 -0
- package/dist/declarations/frontend/index.d.ts +45 -0
- package/dist/declarations/frontend/index.js +32 -0
- package/dist/declarations/ic/ic.did +82 -0
- package/dist/declarations/ic/ic.did.d.ts +77 -0
- package/dist/declarations/ic/ic.factory.did.js +128 -0
- package/dist/declarations/internet_identity/index.d.ts +45 -0
- package/dist/declarations/internet_identity/index.js +32 -0
- package/dist/declarations/internet_identity/internet_identity.did +271 -0
- package/dist/declarations/internet_identity/internet_identity.did.d.ts +161 -0
- package/dist/declarations/internet_identity/internet_identity.factory.did.js +187 -0
- package/dist/declarations/ledger/index.d.ts +45 -0
- package/dist/declarations/ledger/index.js +32 -0
- package/dist/declarations/ledger/ledger.did +249 -0
- package/dist/declarations/ledger/ledger.did.d.ts +100 -0
- package/dist/declarations/ledger/ledger.factory.did.js +98 -0
- package/dist/declarations/mission_control/index.d.ts +45 -0
- package/dist/declarations/mission_control/index.js +32 -0
- package/dist/declarations/mission_control/mission_control.did.d.ts +24 -0
- package/dist/declarations/mission_control/mission_control.factory.did.js +28 -0
- package/dist/declarations/satellite/index.d.ts +45 -0
- package/dist/declarations/satellite/index.js +32 -0
- package/dist/declarations/satellite/satellite.did.d.ts +166 -0
- package/dist/declarations/satellite/satellite.factory.did.js +164 -0
- package/dist/declarations/satellite/satellite.factory.did.mjs +164 -0
- package/dist/esm/index.js.map +2 -2
- package/dist/types/api/actor.api.d.ts +1 -1
- package/dist/types/api/storage.api.d.ts +1 -1
- package/dist/types/types/storage.types.d.ts +1 -1
- package/package.json +9 -3
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { _SERVICE as SatelliteActor } from '
|
|
1
|
+
import type { _SERVICE as SatelliteActor } from '../../declarations/satellite/satellite.did';
|
|
2
2
|
import type { Satellite } from '../types/satellite.types';
|
|
3
3
|
export declare const getSatelliteActor: ({ satelliteId, ...rest }: Satellite) => Promise<SatelliteActor>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AssetNoContent } from '
|
|
1
|
+
import type { AssetNoContent } from '../../declarations/satellite/satellite.did';
|
|
2
2
|
import type { ListParams, ListResults } from '../types/list.types';
|
|
3
3
|
import type { Satellite } from '../types/satellite.types';
|
|
4
4
|
import type { Asset, Storage } from '../types/storage.types';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AssetNoContent } from '
|
|
1
|
+
import type { AssetNoContent } from '../../declarations/satellite/satellite.did';
|
|
2
2
|
import type { ListResults } from './list.types';
|
|
3
3
|
export interface AssetEncoding {
|
|
4
4
|
modified: bigint;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "JavaScript core client for Juno",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"rmdir": "node ../../scripts/rmdir.mjs",
|
|
17
17
|
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
|
|
18
|
-
"build": "npm run rmdir && mkdir -p dist && node esbuild.mjs && npm run ts-declaration",
|
|
18
|
+
"build": "npm run rmdir && mkdir -p dist && cp -R declarations dist && node esbuild.mjs && npm run ts-declaration",
|
|
19
19
|
"prepack": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
@@ -35,5 +35,11 @@
|
|
|
35
35
|
"smart-contracts",
|
|
36
36
|
"web3"
|
|
37
37
|
],
|
|
38
|
-
"homepage": "https://juno.build"
|
|
38
|
+
"homepage": "https://juno.build",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@dfinity/agent": "^0.15.3",
|
|
41
|
+
"@dfinity/auth-client": "^0.15.3",
|
|
42
|
+
"@dfinity/identity": "^0.15.3",
|
|
43
|
+
"@dfinity/principal": "^0.15.3"
|
|
44
|
+
}
|
|
39
45
|
}
|