@junobuild/core 0.1.15 → 0.1.16-next-2025-06-24
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/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Asset, AssetEncoding, AssetKey,
|
|
1
|
+
import type { Asset, AssetEncoding, AssetKey, EncodingType, Storage } from '@junobuild/storage';
|
|
2
2
|
import type { User } from './types/auth.types';
|
|
3
3
|
import type { UserEnvironment } from './types/env.types';
|
|
4
4
|
import type { Unsubscribe } from './types/subscription.types';
|
|
@@ -16,7 +16,7 @@ export type * from './types/satellite.types';
|
|
|
16
16
|
export type * from './types/storage.types';
|
|
17
17
|
export type * from './types/subscription.types';
|
|
18
18
|
export type * from './types/utility.types';
|
|
19
|
-
export type { Asset, AssetEncoding, AssetKey,
|
|
19
|
+
export type { Asset, AssetEncoding, AssetKey, EncodingType, Storage };
|
|
20
20
|
/**
|
|
21
21
|
* Initializes Juno with the provided optional environment parameters.
|
|
22
22
|
* If no environment is provided, the variables injected by the Vite or NextJS plugins will be used.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16-next-2025-06-24",
|
|
4
4
|
"description": "JavaScript core client for Juno",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"@junobuild/utils": "*"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@dfinity/agent": "
|
|
59
|
-
"@dfinity/auth-client": "
|
|
60
|
-
"@dfinity/candid": "
|
|
61
|
-
"@dfinity/identity": "
|
|
62
|
-
"@dfinity/principal": "
|
|
63
|
-
"@dfinity/utils": "
|
|
58
|
+
"@dfinity/agent": "*",
|
|
59
|
+
"@dfinity/auth-client": "*",
|
|
60
|
+
"@dfinity/candid": "*",
|
|
61
|
+
"@dfinity/identity": "*",
|
|
62
|
+
"@dfinity/principal": "*",
|
|
63
|
+
"@dfinity/utils": "*"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
}
|