@decentrl/sdk 0.0.17 → 0.0.18
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/package.json +4 -4
- package/src/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decentrl/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Declarative SDK for building Decentrl protocol applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"zod": "^4.0.10",
|
|
10
10
|
"axios": "1.11.0",
|
|
11
|
-
"@decentrl/crypto": "0.0.
|
|
12
|
-
"@decentrl/identity": "0.0.
|
|
13
|
-
"@decentrl/event-store": "0.0.
|
|
11
|
+
"@decentrl/crypto": "0.0.18",
|
|
12
|
+
"@decentrl/identity": "0.0.18",
|
|
13
|
+
"@decentrl/event-store": "0.0.18"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"typescript": "^5.8.3",
|
package/src/types.ts
CHANGED
|
@@ -130,7 +130,7 @@ export type StateDefinitions<
|
|
|
130
130
|
TEvents extends EventDefinitions = EventDefinitions,
|
|
131
131
|
TPublicEvents extends PublicEventDefinitions = PublicEventDefinitions,
|
|
132
132
|
TChannels extends ChannelDefinitions = ChannelDefinitions,
|
|
133
|
-
//
|
|
133
|
+
// biome-ignore lint/suspicious/noExplicitAny: generic state slice requires any
|
|
134
134
|
> = Record<string, StateSliceDefinition<any, TEvents, TPublicEvents, TChannels>>;
|
|
135
135
|
|
|
136
136
|
// --- Inferred State ---
|