breez-sdk-liquid 0.11.5.dev1__cp313-cp313-win32.whl → 0.11.7__cp313-cp313-win32.whl
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.
Potentially problematic release.
This version of breez-sdk-liquid might be problematic. Click here for more details.
- breez_sdk_liquid/breez_sdk_liquid.py +30 -1
- breez_sdk_liquid/breez_sdk_liquid_bindings.dll +0 -0
- {breez_sdk_liquid-0.11.5.dev1.dist-info → breez_sdk_liquid-0.11.7.dist-info}/METADATA +1 -1
- breez_sdk_liquid-0.11.7.dist-info/RECORD +9 -0
- breez_sdk_liquid-0.11.5.dev1.dist-info/RECORD +0 -9
- {breez_sdk_liquid-0.11.5.dev1.dist-info → breez_sdk_liquid-0.11.7.dist-info}/WHEEL +0 -0
- {breez_sdk_liquid-0.11.5.dev1.dist-info → breez_sdk_liquid-0.11.7.dist-info}/top_level.txt +0 -0
|
@@ -8880,6 +8880,22 @@ class SdkEvent:
|
|
|
8880
8880
|
return False
|
|
8881
8881
|
return True
|
|
8882
8882
|
|
|
8883
|
+
class SYNC_FAILED:
|
|
8884
|
+
error: "str"
|
|
8885
|
+
|
|
8886
|
+
def __init__(self,error: "str"):
|
|
8887
|
+
self.error = error
|
|
8888
|
+
|
|
8889
|
+
def __str__(self):
|
|
8890
|
+
return "SdkEvent.SYNC_FAILED(error={})".format(self.error)
|
|
8891
|
+
|
|
8892
|
+
def __eq__(self, other):
|
|
8893
|
+
if not other.is_sync_failed():
|
|
8894
|
+
return False
|
|
8895
|
+
if self.error != other.error:
|
|
8896
|
+
return False
|
|
8897
|
+
return True
|
|
8898
|
+
|
|
8883
8899
|
class DATA_SYNCED:
|
|
8884
8900
|
did_pull_new_records: "bool"
|
|
8885
8901
|
|
|
@@ -8918,6 +8934,8 @@ class SdkEvent:
|
|
|
8918
8934
|
return isinstance(self, SdkEvent.PAYMENT_WAITING_FEE_ACCEPTANCE)
|
|
8919
8935
|
def is_synced(self) -> bool:
|
|
8920
8936
|
return isinstance(self, SdkEvent.SYNCED)
|
|
8937
|
+
def is_sync_failed(self) -> bool:
|
|
8938
|
+
return isinstance(self, SdkEvent.SYNC_FAILED)
|
|
8921
8939
|
def is_data_synced(self) -> bool:
|
|
8922
8940
|
return isinstance(self, SdkEvent.DATA_SYNCED)
|
|
8923
8941
|
|
|
@@ -8934,6 +8952,7 @@ SdkEvent.PAYMENT_SUCCEEDED = type("SdkEvent.PAYMENT_SUCCEEDED", (SdkEvent.PAYMEN
|
|
|
8934
8952
|
SdkEvent.PAYMENT_WAITING_CONFIRMATION = type("SdkEvent.PAYMENT_WAITING_CONFIRMATION", (SdkEvent.PAYMENT_WAITING_CONFIRMATION, SdkEvent,), {}) # type: ignore
|
|
8935
8953
|
SdkEvent.PAYMENT_WAITING_FEE_ACCEPTANCE = type("SdkEvent.PAYMENT_WAITING_FEE_ACCEPTANCE", (SdkEvent.PAYMENT_WAITING_FEE_ACCEPTANCE, SdkEvent,), {}) # type: ignore
|
|
8936
8954
|
SdkEvent.SYNCED = type("SdkEvent.SYNCED", (SdkEvent.SYNCED, SdkEvent,), {}) # type: ignore
|
|
8955
|
+
SdkEvent.SYNC_FAILED = type("SdkEvent.SYNC_FAILED", (SdkEvent.SYNC_FAILED, SdkEvent,), {}) # type: ignore
|
|
8937
8956
|
SdkEvent.DATA_SYNCED = type("SdkEvent.DATA_SYNCED", (SdkEvent.DATA_SYNCED, SdkEvent,), {}) # type: ignore
|
|
8938
8957
|
|
|
8939
8958
|
|
|
@@ -8979,6 +8998,10 @@ class _UniffiConverterTypeSdkEvent(_UniffiConverterRustBuffer):
|
|
|
8979
8998
|
return SdkEvent.SYNCED(
|
|
8980
8999
|
)
|
|
8981
9000
|
if variant == 10:
|
|
9001
|
+
return SdkEvent.SYNC_FAILED(
|
|
9002
|
+
_UniffiConverterString.read(buf),
|
|
9003
|
+
)
|
|
9004
|
+
if variant == 11:
|
|
8982
9005
|
return SdkEvent.DATA_SYNCED(
|
|
8983
9006
|
_UniffiConverterBool.read(buf),
|
|
8984
9007
|
)
|
|
@@ -9012,6 +9035,9 @@ class _UniffiConverterTypeSdkEvent(_UniffiConverterRustBuffer):
|
|
|
9012
9035
|
return
|
|
9013
9036
|
if value.is_synced():
|
|
9014
9037
|
return
|
|
9038
|
+
if value.is_sync_failed():
|
|
9039
|
+
_UniffiConverterString.check_lower(value.error)
|
|
9040
|
+
return
|
|
9015
9041
|
if value.is_data_synced():
|
|
9016
9042
|
_UniffiConverterBool.check_lower(value.did_pull_new_records)
|
|
9017
9043
|
return
|
|
@@ -9045,8 +9071,11 @@ class _UniffiConverterTypeSdkEvent(_UniffiConverterRustBuffer):
|
|
|
9045
9071
|
_UniffiConverterTypePayment.write(value.details, buf)
|
|
9046
9072
|
if value.is_synced():
|
|
9047
9073
|
buf.write_i32(9)
|
|
9048
|
-
if value.
|
|
9074
|
+
if value.is_sync_failed():
|
|
9049
9075
|
buf.write_i32(10)
|
|
9076
|
+
_UniffiConverterString.write(value.error, buf)
|
|
9077
|
+
if value.is_data_synced():
|
|
9078
|
+
buf.write_i32(11)
|
|
9050
9079
|
_UniffiConverterBool.write(value.did_pull_new_records, buf)
|
|
9051
9080
|
|
|
9052
9081
|
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
breez_sdk_liquid/__init__.py,sha256=JTIU0kFshR8_XJV8dlYm2bxL4Sj91Hjs-Wf-zlUAB0c,49
|
|
2
|
+
breez_sdk_liquid/breez_sdk_liquid.py,sha256=XiOvO9nwlJfJwDp5O4Ia_KqhIn_H7DbGmD-6zN1KETE,418800
|
|
3
|
+
breez_sdk_liquid/breez_sdk_liquid_bindings.dll,sha256=6wEHk0keRWlxW8bi2qOwz98W1MynAYQ41VJV0jLAOjA,15747584
|
|
4
|
+
breez_sdk_liquid/msvcp140.dll,sha256=l-caPGl_sas693fbOQCeRgJSXow6_wg37McDHLoYgWU,447616
|
|
5
|
+
breez_sdk_liquid/vcruntime140.dll,sha256=qddzKjw94J8GAaf6JVUJPctJ8I4vxiqGCRRh8PODk-0,91216
|
|
6
|
+
breez_sdk_liquid-0.11.7.dist-info/METADATA,sha256=ATWKarQxMD2b1uAaWtDgis22LkvS5rU0Uvxta7K05bM,588
|
|
7
|
+
breez_sdk_liquid-0.11.7.dist-info/WHEEL,sha256=0ABLuJ37exXk5N_efmYNs2NU9NK1K2Qlod_6bYkofEA,97
|
|
8
|
+
breez_sdk_liquid-0.11.7.dist-info/top_level.txt,sha256=PRVWnsMm1hlS5nHU4ilnVCQg4vpaYkqxQXeBQZkNa3s,17
|
|
9
|
+
breez_sdk_liquid-0.11.7.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
breez_sdk_liquid/__init__.py,sha256=JTIU0kFshR8_XJV8dlYm2bxL4Sj91Hjs-Wf-zlUAB0c,49
|
|
2
|
-
breez_sdk_liquid/breez_sdk_liquid.py,sha256=-Ud82xppkNeiaNkHhOT1yHkjBa3Ye2JSh0Ekyoj14h0,417810
|
|
3
|
-
breez_sdk_liquid/breez_sdk_liquid_bindings.dll,sha256=MItBSTK2EeugjTVqruhTTupzjNnSRs-IqgLfkWEd6AM,15765504
|
|
4
|
-
breez_sdk_liquid/msvcp140.dll,sha256=l-caPGl_sas693fbOQCeRgJSXow6_wg37McDHLoYgWU,447616
|
|
5
|
-
breez_sdk_liquid/vcruntime140.dll,sha256=qddzKjw94J8GAaf6JVUJPctJ8I4vxiqGCRRh8PODk-0,91216
|
|
6
|
-
breez_sdk_liquid-0.11.5.dev1.dist-info/METADATA,sha256=dPVUGjNwdE7qVOAnloxfdIaumYkwaBvzrB9xkRtIW7g,593
|
|
7
|
-
breez_sdk_liquid-0.11.5.dev1.dist-info/WHEEL,sha256=0ABLuJ37exXk5N_efmYNs2NU9NK1K2Qlod_6bYkofEA,97
|
|
8
|
-
breez_sdk_liquid-0.11.5.dev1.dist-info/top_level.txt,sha256=PRVWnsMm1hlS5nHU4ilnVCQg4vpaYkqxQXeBQZkNa3s,17
|
|
9
|
-
breez_sdk_liquid-0.11.5.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|