@secondts/bark-react-native 0.9.0 → 0.10.0
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/README.md +1 -1
- package/lib/commonjs/generated/bark.js +8 -2
- package/lib/commonjs/generated/bark.js.map +1 -1
- package/lib/module/generated/bark.js +8 -2
- package/lib/module/generated/bark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark.d.ts +5 -2
- package/lib/typescript/commonjs/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark.d.ts +5 -2
- package/lib/typescript/module/src/generated/bark.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/generated/bark.ts +13 -1
|
@@ -724,7 +724,10 @@ const FfiConverterTypeMovement = (() => {
|
|
|
724
724
|
exitedVtxoIds: FfiConverterArrayString.read(from),
|
|
725
725
|
createdAt: FfiConverterString.read(from),
|
|
726
726
|
updatedAt: FfiConverterString.read(from),
|
|
727
|
-
completedAt: FfiConverterOptionalString.read(from)
|
|
727
|
+
completedAt: FfiConverterOptionalString.read(from),
|
|
728
|
+
paymentHash: FfiConverterOptionalString.read(from),
|
|
729
|
+
lightningInvoice: FfiConverterOptionalString.read(from),
|
|
730
|
+
lightningOffer: FfiConverterOptionalString.read(from)
|
|
728
731
|
};
|
|
729
732
|
}
|
|
730
733
|
write(value, into) {
|
|
@@ -744,9 +747,12 @@ const FfiConverterTypeMovement = (() => {
|
|
|
744
747
|
FfiConverterString.write(value.createdAt, into);
|
|
745
748
|
FfiConverterString.write(value.updatedAt, into);
|
|
746
749
|
FfiConverterOptionalString.write(value.completedAt, into);
|
|
750
|
+
FfiConverterOptionalString.write(value.paymentHash, into);
|
|
751
|
+
FfiConverterOptionalString.write(value.lightningInvoice, into);
|
|
752
|
+
FfiConverterOptionalString.write(value.lightningOffer, into);
|
|
747
753
|
}
|
|
748
754
|
allocationSize(value) {
|
|
749
|
-
return FfiConverterUInt32.allocationSize(value.id) + FfiConverterString.allocationSize(value.status) + FfiConverterString.allocationSize(value.subsystemName) + FfiConverterString.allocationSize(value.subsystemKind) + FfiConverterString.allocationSize(value.metadataJson) + FfiConverterInt64.allocationSize(value.intendedBalanceSats) + FfiConverterInt64.allocationSize(value.effectiveBalanceSats) + FfiConverterUInt64.allocationSize(value.offchainFeeSats) + FfiConverterArrayString.allocationSize(value.sentToAddresses) + FfiConverterArrayString.allocationSize(value.receivedOnAddresses) + FfiConverterArrayString.allocationSize(value.inputVtxoIds) + FfiConverterArrayString.allocationSize(value.outputVtxoIds) + FfiConverterArrayString.allocationSize(value.exitedVtxoIds) + FfiConverterString.allocationSize(value.createdAt) + FfiConverterString.allocationSize(value.updatedAt) + FfiConverterOptionalString.allocationSize(value.completedAt);
|
|
755
|
+
return FfiConverterUInt32.allocationSize(value.id) + FfiConverterString.allocationSize(value.status) + FfiConverterString.allocationSize(value.subsystemName) + FfiConverterString.allocationSize(value.subsystemKind) + FfiConverterString.allocationSize(value.metadataJson) + FfiConverterInt64.allocationSize(value.intendedBalanceSats) + FfiConverterInt64.allocationSize(value.effectiveBalanceSats) + FfiConverterUInt64.allocationSize(value.offchainFeeSats) + FfiConverterArrayString.allocationSize(value.sentToAddresses) + FfiConverterArrayString.allocationSize(value.receivedOnAddresses) + FfiConverterArrayString.allocationSize(value.inputVtxoIds) + FfiConverterArrayString.allocationSize(value.outputVtxoIds) + FfiConverterArrayString.allocationSize(value.exitedVtxoIds) + FfiConverterString.allocationSize(value.createdAt) + FfiConverterString.allocationSize(value.updatedAt) + FfiConverterOptionalString.allocationSize(value.completedAt) + FfiConverterOptionalString.allocationSize(value.paymentHash) + FfiConverterOptionalString.allocationSize(value.lightningInvoice) + FfiConverterOptionalString.allocationSize(value.lightningOffer);
|
|
750
756
|
}
|
|
751
757
|
}
|
|
752
758
|
return new FFIConverter();
|