@breeztech/breez-sdk-spark 0.1.2 → 0.1.3
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/breez-sdk-spark.tgz +0 -0
- package/bundler/breez_sdk_spark_wasm.d.ts +3 -3
- package/bundler/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/deno/breez_sdk_spark_wasm.d.ts +3 -3
- package/deno/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/nodejs/breez_sdk_spark_wasm.d.ts +3 -3
- package/nodejs/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/package.json +1 -1
- package/web/breez_sdk_spark_wasm.d.ts +3 -3
- package/web/breez_sdk_spark_wasm_bg.wasm +0 -0
package/breez-sdk-spark.tgz
CHANGED
|
Binary file
|
|
@@ -354,16 +354,16 @@ export interface BitcoinAddressDetails {
|
|
|
354
354
|
source: PaymentRequestSource;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
export interface
|
|
357
|
+
export interface SatsPaymentDetails {
|
|
358
358
|
amount?: number;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
export interface
|
|
361
|
+
export interface TokensPaymentDetails {
|
|
362
362
|
tokenIdentifier?: string;
|
|
363
363
|
amount?: number;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
export type SparkAddressPaymentType = ({ type: "tokensPayment" } &
|
|
366
|
+
export type SparkAddressPaymentType = ({ type: "tokensPayment" } & TokensPaymentDetails) | ({ type: "satsPayment" } & SatsPaymentDetails);
|
|
367
367
|
|
|
368
368
|
export interface SparkInvoiceFields {
|
|
369
369
|
id: string;
|
|
Binary file
|
|
@@ -354,16 +354,16 @@ export interface BitcoinAddressDetails {
|
|
|
354
354
|
source: PaymentRequestSource;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
export interface
|
|
357
|
+
export interface SatsPaymentDetails {
|
|
358
358
|
amount?: number;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
export interface
|
|
361
|
+
export interface TokensPaymentDetails {
|
|
362
362
|
tokenIdentifier?: string;
|
|
363
363
|
amount?: number;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
export type SparkAddressPaymentType = ({ type: "tokensPayment" } &
|
|
366
|
+
export type SparkAddressPaymentType = ({ type: "tokensPayment" } & TokensPaymentDetails) | ({ type: "satsPayment" } & SatsPaymentDetails);
|
|
367
367
|
|
|
368
368
|
export interface SparkInvoiceFields {
|
|
369
369
|
id: string;
|
|
Binary file
|
|
@@ -354,16 +354,16 @@ export interface BitcoinAddressDetails {
|
|
|
354
354
|
source: PaymentRequestSource;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
export interface
|
|
357
|
+
export interface SatsPaymentDetails {
|
|
358
358
|
amount?: number;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
export interface
|
|
361
|
+
export interface TokensPaymentDetails {
|
|
362
362
|
tokenIdentifier?: string;
|
|
363
363
|
amount?: number;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
export type SparkAddressPaymentType = ({ type: "tokensPayment" } &
|
|
366
|
+
export type SparkAddressPaymentType = ({ type: "tokensPayment" } & TokensPaymentDetails) | ({ type: "satsPayment" } & SatsPaymentDetails);
|
|
367
367
|
|
|
368
368
|
export interface SparkInvoiceFields {
|
|
369
369
|
id: string;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -354,16 +354,16 @@ export interface BitcoinAddressDetails {
|
|
|
354
354
|
source: PaymentRequestSource;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
export interface
|
|
357
|
+
export interface SatsPaymentDetails {
|
|
358
358
|
amount?: number;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
export interface
|
|
361
|
+
export interface TokensPaymentDetails {
|
|
362
362
|
tokenIdentifier?: string;
|
|
363
363
|
amount?: number;
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
-
export type SparkAddressPaymentType = ({ type: "tokensPayment" } &
|
|
366
|
+
export type SparkAddressPaymentType = ({ type: "tokensPayment" } & TokensPaymentDetails) | ({ type: "satsPayment" } & SatsPaymentDetails);
|
|
367
367
|
|
|
368
368
|
export interface SparkInvoiceFields {
|
|
369
369
|
id: string;
|
|
Binary file
|