@sats-connect/core 0.6.0 → 0.6.1-5d3e25f
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/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -859,6 +859,7 @@ declare const runesGetBalanceResultSchema: v.ObjectSchema<{
|
|
|
859
859
|
readonly divisibility: v.NumberSchema<undefined>;
|
|
860
860
|
readonly symbol: v.StringSchema<undefined>;
|
|
861
861
|
readonly inscriptionId: v.NullishSchema<v.StringSchema<undefined>, never>;
|
|
862
|
+
readonly spendableBalance: v.StringSchema<undefined>;
|
|
862
863
|
}, undefined>, undefined>;
|
|
863
864
|
}, undefined>;
|
|
864
865
|
type RunesGetBalanceResult = v.InferOutput<typeof runesGetBalanceResultSchema>;
|
package/dist/index.d.ts
CHANGED
|
@@ -859,6 +859,7 @@ declare const runesGetBalanceResultSchema: v.ObjectSchema<{
|
|
|
859
859
|
readonly divisibility: v.NumberSchema<undefined>;
|
|
860
860
|
readonly symbol: v.StringSchema<undefined>;
|
|
861
861
|
readonly inscriptionId: v.NullishSchema<v.StringSchema<undefined>, never>;
|
|
862
|
+
readonly spendableBalance: v.StringSchema<undefined>;
|
|
862
863
|
}, undefined>, undefined>;
|
|
863
864
|
}, undefined>;
|
|
864
865
|
type RunesGetBalanceResult = v.InferOutput<typeof runesGetBalanceResultSchema>;
|
package/dist/index.js
CHANGED
|
@@ -1193,7 +1193,8 @@ var runesGetBalanceResultSchema = v17.object({
|
|
|
1193
1193
|
amount: v17.string(),
|
|
1194
1194
|
divisibility: v17.number(),
|
|
1195
1195
|
symbol: v17.string(),
|
|
1196
|
-
inscriptionId: v17.nullish(v17.string())
|
|
1196
|
+
inscriptionId: v17.nullish(v17.string()),
|
|
1197
|
+
spendableBalance: v17.string()
|
|
1197
1198
|
})
|
|
1198
1199
|
)
|
|
1199
1200
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -986,7 +986,8 @@ var runesGetBalanceResultSchema = v17.object({
|
|
|
986
986
|
amount: v17.string(),
|
|
987
987
|
divisibility: v17.number(),
|
|
988
988
|
symbol: v17.string(),
|
|
989
|
-
inscriptionId: v17.nullish(v17.string())
|
|
989
|
+
inscriptionId: v17.nullish(v17.string()),
|
|
990
|
+
spendableBalance: v17.string()
|
|
990
991
|
})
|
|
991
992
|
)
|
|
992
993
|
});
|