@sats-connect/core 0.13.1-49d1c59 → 0.13.1-7ac4592
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 +7 -5
- package/dist/index.d.ts +7 -5
- package/dist/index.js +9 -7
- package/dist/index.mjs +9 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1135,11 +1135,13 @@ type SparkFlashnetExecuteSwap = MethodParamsAndResult<SparkFlashnetExecuteSwapPa
|
|
|
1135
1135
|
declare const sparkGetClawbackEligibleTransfersMethodName = "spark_flashnet_getClawbackEligibleTransfers";
|
|
1136
1136
|
declare const sparkGetClawbackEligibleTransfersParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
1137
1137
|
type SparkGetClawbackEligibleTransfersParams = v.InferOutput<typeof sparkGetClawbackEligibleTransfersParamsSchema>;
|
|
1138
|
-
declare const sparkGetClawbackEligibleTransfersResultSchema: v.
|
|
1139
|
-
readonly
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1138
|
+
declare const sparkGetClawbackEligibleTransfersResultSchema: v.ObjectSchema<{
|
|
1139
|
+
readonly eligibleTransfers: v.ArraySchema<v.ObjectSchema<{
|
|
1140
|
+
readonly txId: v.StringSchema<undefined>;
|
|
1141
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
1142
|
+
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1143
|
+
}, undefined>, undefined>;
|
|
1144
|
+
}, undefined>;
|
|
1143
1145
|
type SparkGetClawbackEligibleTransfersResult = v.InferOutput<typeof sparkGetClawbackEligibleTransfersResultSchema>;
|
|
1144
1146
|
declare const sparkGetClawbackEligibleTransfersRequestMessageSchema: v.ObjectSchema<{
|
|
1145
1147
|
readonly method: v.LiteralSchema<"spark_flashnet_getClawbackEligibleTransfers", undefined>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1135,11 +1135,13 @@ type SparkFlashnetExecuteSwap = MethodParamsAndResult<SparkFlashnetExecuteSwapPa
|
|
|
1135
1135
|
declare const sparkGetClawbackEligibleTransfersMethodName = "spark_flashnet_getClawbackEligibleTransfers";
|
|
1136
1136
|
declare const sparkGetClawbackEligibleTransfersParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
1137
1137
|
type SparkGetClawbackEligibleTransfersParams = v.InferOutput<typeof sparkGetClawbackEligibleTransfersParamsSchema>;
|
|
1138
|
-
declare const sparkGetClawbackEligibleTransfersResultSchema: v.
|
|
1139
|
-
readonly
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1138
|
+
declare const sparkGetClawbackEligibleTransfersResultSchema: v.ObjectSchema<{
|
|
1139
|
+
readonly eligibleTransfers: v.ArraySchema<v.ObjectSchema<{
|
|
1140
|
+
readonly txId: v.StringSchema<undefined>;
|
|
1141
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
1142
|
+
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1143
|
+
}, undefined>, undefined>;
|
|
1144
|
+
}, undefined>;
|
|
1143
1145
|
type SparkGetClawbackEligibleTransfersResult = v.InferOutput<typeof sparkGetClawbackEligibleTransfersResultSchema>;
|
|
1144
1146
|
declare const sparkGetClawbackEligibleTransfersRequestMessageSchema: v.ObjectSchema<{
|
|
1145
1147
|
readonly method: v.LiteralSchema<"spark_flashnet_getClawbackEligibleTransfers", undefined>;
|
package/dist/index.js
CHANGED
|
@@ -1233,13 +1233,15 @@ var sparkFlashnetExecuteSwapRequestMessageSchema = v14.object({
|
|
|
1233
1233
|
var v15 = __toESM(require("valibot"));
|
|
1234
1234
|
var sparkGetClawbackEligibleTransfersMethodName = "spark_flashnet_getClawbackEligibleTransfers";
|
|
1235
1235
|
var sparkGetClawbackEligibleTransfersParamsSchema = v15.nullish(v15.null());
|
|
1236
|
-
var sparkGetClawbackEligibleTransfersResultSchema = v15.
|
|
1237
|
-
v15.
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
)
|
|
1236
|
+
var sparkGetClawbackEligibleTransfersResultSchema = v15.object({
|
|
1237
|
+
eligibleTransfers: v15.array(
|
|
1238
|
+
v15.object({
|
|
1239
|
+
txId: v15.string(),
|
|
1240
|
+
createdAt: v15.string(),
|
|
1241
|
+
lpIdentityPublicKey: v15.string()
|
|
1242
|
+
})
|
|
1243
|
+
)
|
|
1244
|
+
});
|
|
1243
1245
|
var sparkGetClawbackEligibleTransfersRequestMessageSchema = v15.object({
|
|
1244
1246
|
...rpcRequestMessageSchema.entries,
|
|
1245
1247
|
...v15.object({
|
package/dist/index.mjs
CHANGED
|
@@ -958,13 +958,15 @@ var sparkFlashnetExecuteSwapRequestMessageSchema = v14.object({
|
|
|
958
958
|
import * as v15 from "valibot";
|
|
959
959
|
var sparkGetClawbackEligibleTransfersMethodName = "spark_flashnet_getClawbackEligibleTransfers";
|
|
960
960
|
var sparkGetClawbackEligibleTransfersParamsSchema = v15.nullish(v15.null());
|
|
961
|
-
var sparkGetClawbackEligibleTransfersResultSchema = v15.
|
|
962
|
-
v15.
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
)
|
|
961
|
+
var sparkGetClawbackEligibleTransfersResultSchema = v15.object({
|
|
962
|
+
eligibleTransfers: v15.array(
|
|
963
|
+
v15.object({
|
|
964
|
+
txId: v15.string(),
|
|
965
|
+
createdAt: v15.string(),
|
|
966
|
+
lpIdentityPublicKey: v15.string()
|
|
967
|
+
})
|
|
968
|
+
)
|
|
969
|
+
});
|
|
968
970
|
var sparkGetClawbackEligibleTransfersRequestMessageSchema = v15.object({
|
|
969
971
|
...rpcRequestMessageSchema.entries,
|
|
970
972
|
...v15.object({
|