@breeztech/breez-sdk-spark-react-native 0.13.4 → 0.13.6

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.
@@ -5311,12 +5311,12 @@ export declare const BuyBitcoinRequest: Readonly<{
5311
5311
  CashApp: {
5312
5312
  new (inner: {
5313
5313
  /**
5314
- * Amount in satoshis for the Lightning invoice.
5315
- */ amountSats: /*u64*/ bigint | undefined;
5314
+ * Amount in satoshis for the Lightning invoice. Must be non-zero.
5315
+ */ amountSats: bigint;
5316
5316
  }): {
5317
5317
  readonly tag: BuyBitcoinRequest_Tags.CashApp;
5318
5318
  readonly inner: Readonly<{
5319
- amountSats: /*u64*/ bigint | undefined;
5319
+ amountSats: bigint;
5320
5320
  }>;
5321
5321
  /**
5322
5322
  * @private
@@ -5326,12 +5326,12 @@ export declare const BuyBitcoinRequest: Readonly<{
5326
5326
  };
5327
5327
  "new"(inner: {
5328
5328
  /**
5329
- * Amount in satoshis for the Lightning invoice.
5330
- */ amountSats: /*u64*/ bigint | undefined;
5329
+ * Amount in satoshis for the Lightning invoice. Must be non-zero.
5330
+ */ amountSats: bigint;
5331
5331
  }): {
5332
5332
  readonly tag: BuyBitcoinRequest_Tags.CashApp;
5333
5333
  readonly inner: Readonly<{
5334
- amountSats: /*u64*/ bigint | undefined;
5334
+ amountSats: bigint;
5335
5335
  }>;
5336
5336
  /**
5337
5337
  * @private
@@ -5342,7 +5342,7 @@ export declare const BuyBitcoinRequest: Readonly<{
5342
5342
  instanceOf(obj: any): obj is {
5343
5343
  readonly tag: BuyBitcoinRequest_Tags.CashApp;
5344
5344
  readonly inner: Readonly<{
5345
- amountSats: /*u64*/ bigint | undefined;
5345
+ amountSats: bigint;
5346
5346
  }>;
5347
5347
  /**
5348
5348
  * @private