Update CI references to 0.0.111
[ldk-java] / ts / structs / MonitorEvent.mts
index 3f5cd4dd2295a0889c314c4fe6afa4f9db0559d5..63bdd036330410d93ac01e9d06f2c8f3eb6b2ae7 100644 (file)
@@ -67,6 +67,9 @@ import { Result_PaymentPurposeDecodeErrorZ } from '../structs/Result_PaymentPurp
 import { ClosureReason } from '../structs/ClosureReason.mjs';
 import { Option_ClosureReasonZ } from '../structs/Option_ClosureReasonZ.mjs';
 import { Result_COption_ClosureReasonZDecodeErrorZ } from '../structs/Result_COption_ClosureReasonZDecodeErrorZ.mjs';
+import { HTLCDestination } from '../structs/HTLCDestination.mjs';
+import { Option_HTLCDestinationZ } from '../structs/Option_HTLCDestinationZ.mjs';
+import { Result_COption_HTLCDestinationZDecodeErrorZ } from '../structs/Result_COption_HTLCDestinationZDecodeErrorZ.mjs';
 import { ChannelUpdate } from '../structs/ChannelUpdate.mjs';
 import { NetworkUpdate } from '../structs/NetworkUpdate.mjs';
 import { Option_NetworkUpdateZ } from '../structs/Option_NetworkUpdateZ.mjs';
@@ -103,7 +106,7 @@ import { Result_TxOutAccessErrorZ } from '../structs/Result_TxOutAccessErrorZ.mj
 import { TwoTuple_usizeTransactionZ } from '../structs/TwoTuple_usizeTransactionZ.mjs';
 import { Result_NoneChannelMonitorUpdateErrZ } from '../structs/Result_NoneChannelMonitorUpdateErrZ.mjs';
 import { HTLCUpdate } from '../structs/HTLCUpdate.mjs';
-import { TwoTuple_OutPointCVec_MonitorEventZZ } from '../structs/TwoTuple_OutPointCVec_MonitorEventZZ.mjs';
+import { ThreeTuple_OutPointCVec_MonitorEventZPublicKeyZ } from '../structs/ThreeTuple_OutPointCVec_MonitorEventZPublicKeyZ.mjs';
 import { Option_C2Tuple_usizeTransactionZZ } from '../structs/Option_C2Tuple_usizeTransactionZZ.mjs';
 import { FixedPenaltyScorer } from '../structs/FixedPenaltyScorer.mjs';
 import { Result_FixedPenaltyScorerDecodeErrorZ } from '../structs/Result_FixedPenaltyScorerDecodeErrorZ.mjs';
@@ -137,6 +140,7 @@ import { ChannelInfo } from '../structs/ChannelInfo.mjs';
 import { Result_ChannelInfoDecodeErrorZ } from '../structs/Result_ChannelInfoDecodeErrorZ.mjs';
 import { RoutingFees } from '../structs/RoutingFees.mjs';
 import { Result_RoutingFeesDecodeErrorZ } from '../structs/Result_RoutingFeesDecodeErrorZ.mjs';
+import { Hostname } from '../structs/Hostname.mjs';
 import { NetAddress } from '../structs/NetAddress.mjs';
 import { NodeAnnouncementInfo } from '../structs/NodeAnnouncementInfo.mjs';
 import { Result_NodeAnnouncementInfoDecodeErrorZ } from '../structs/Result_NodeAnnouncementInfoDecodeErrorZ.mjs';
@@ -355,9 +359,9 @@ import * as bindings from '../bindings.mjs'
  * An event to be processed by the ChannelManager.
  */
 export class MonitorEvent extends CommonBase {
-       protected constructor(_dummy: object, ptr: number) { super(ptr, bindings.MonitorEvent_free); }
+       protected constructor(_dummy: object, ptr: bigint) { super(ptr, bindings.MonitorEvent_free); }
        /* @internal */
-       public static constr_from_ptr(ptr: number): MonitorEvent {
+       public static constr_from_ptr(ptr: bigint): MonitorEvent {
                const raw_ty: number = bindings.LDKMonitorEvent_ty_from_ptr(ptr);
                switch (raw_ty) {
                        case 0: return new MonitorEvent_HTLCEvent(ptr);
@@ -369,8 +373,8 @@ export class MonitorEvent extends CommonBase {
                }
        }
 
-       public clone_ptr(): number {
-               const ret: number = bindings.MonitorEvent_clone_ptr(this.ptr);
+       public clone_ptr(): bigint {
+               const ret: bigint = bindings.MonitorEvent_clone_ptr(this.ptr);
                return ret;
        }
 
@@ -378,7 +382,7 @@ export class MonitorEvent extends CommonBase {
         * Creates a copy of the MonitorEvent
         */
        public clone(): MonitorEvent {
-               const ret: number = bindings.MonitorEvent_clone(this.ptr);
+               const ret: bigint = bindings.MonitorEvent_clone(this.ptr);
                const ret_hu_conv: MonitorEvent = MonitorEvent.constr_from_ptr(ret);
                CommonBase.add_ref_from(ret_hu_conv, this);
                return ret_hu_conv;
@@ -388,9 +392,10 @@ export class MonitorEvent extends CommonBase {
         * Utility method to constructs a new HTLCEvent-variant MonitorEvent
         */
        public static constructor_htlcevent(a: HTLCUpdate): MonitorEvent {
-               const ret: number = bindings.MonitorEvent_htlcevent(a == null ? 0 : CommonBase.get_ptr_of(a) & ~1);
+               const ret: bigint = bindings.MonitorEvent_htlcevent(a == null ? 0n : CommonBase.get_ptr_of(a));
                const ret_hu_conv: MonitorEvent = MonitorEvent.constr_from_ptr(ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
+               CommonBase.add_ref_from(ret_hu_conv, a);
                return ret_hu_conv;
        }
 
@@ -398,9 +403,10 @@ export class MonitorEvent extends CommonBase {
         * Utility method to constructs a new CommitmentTxConfirmed-variant MonitorEvent
         */
        public static constructor_commitment_tx_confirmed(a: OutPoint): MonitorEvent {
-               const ret: number = bindings.MonitorEvent_commitment_tx_confirmed(a == null ? 0 : CommonBase.get_ptr_of(a) & ~1);
+               const ret: bigint = bindings.MonitorEvent_commitment_tx_confirmed(a == null ? 0n : CommonBase.get_ptr_of(a));
                const ret_hu_conv: MonitorEvent = MonitorEvent.constr_from_ptr(ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
+               CommonBase.add_ref_from(ret_hu_conv, a);
                return ret_hu_conv;
        }
 
@@ -408,9 +414,10 @@ export class MonitorEvent extends CommonBase {
         * Utility method to constructs a new UpdateCompleted-variant MonitorEvent
         */
        public static constructor_update_completed(funding_txo: OutPoint, monitor_update_id: bigint): MonitorEvent {
-               const ret: number = bindings.MonitorEvent_update_completed(funding_txo == null ? 0 : CommonBase.get_ptr_of(funding_txo) & ~1, monitor_update_id);
+               const ret: bigint = bindings.MonitorEvent_update_completed(funding_txo == null ? 0n : CommonBase.get_ptr_of(funding_txo), monitor_update_id);
                const ret_hu_conv: MonitorEvent = MonitorEvent.constr_from_ptr(ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
+               CommonBase.add_ref_from(ret_hu_conv, funding_txo);
                return ret_hu_conv;
        }
 
@@ -418,9 +425,10 @@ export class MonitorEvent extends CommonBase {
         * Utility method to constructs a new UpdateFailed-variant MonitorEvent
         */
        public static constructor_update_failed(a: OutPoint): MonitorEvent {
-               const ret: number = bindings.MonitorEvent_update_failed(a == null ? 0 : CommonBase.get_ptr_of(a) & ~1);
+               const ret: bigint = bindings.MonitorEvent_update_failed(a == null ? 0n : CommonBase.get_ptr_of(a));
                const ret_hu_conv: MonitorEvent = MonitorEvent.constr_from_ptr(ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
+               CommonBase.add_ref_from(ret_hu_conv, a);
                return ret_hu_conv;
        }
 
@@ -438,9 +446,9 @@ export class MonitorEvent extends CommonBase {
 export class MonitorEvent_HTLCEvent extends MonitorEvent {
        public htlc_event: HTLCUpdate;
        /* @internal */
-       public constructor(ptr: number) {
+       public constructor(ptr: bigint) {
                super(null, ptr);
-               const htlc_event: number = bindings.LDKMonitorEvent_HTLCEvent_get_htlc_event(ptr);
+               const htlc_event: bigint = bindings.LDKMonitorEvent_HTLCEvent_get_htlc_event(ptr);
                const htlc_event_hu_conv: HTLCUpdate = new HTLCUpdate(null, htlc_event);
                        CommonBase.add_ref_from(htlc_event_hu_conv, this);
                this.htlc_event = htlc_event_hu_conv;
@@ -450,9 +458,9 @@ export class MonitorEvent_HTLCEvent extends MonitorEvent {
 export class MonitorEvent_CommitmentTxConfirmed extends MonitorEvent {
        public commitment_tx_confirmed: OutPoint;
        /* @internal */
-       public constructor(ptr: number) {
+       public constructor(ptr: bigint) {
                super(null, ptr);
-               const commitment_tx_confirmed: number = bindings.LDKMonitorEvent_CommitmentTxConfirmed_get_commitment_tx_confirmed(ptr);
+               const commitment_tx_confirmed: bigint = bindings.LDKMonitorEvent_CommitmentTxConfirmed_get_commitment_tx_confirmed(ptr);
                const commitment_tx_confirmed_hu_conv: OutPoint = new OutPoint(null, commitment_tx_confirmed);
                        CommonBase.add_ref_from(commitment_tx_confirmed_hu_conv, this);
                this.commitment_tx_confirmed = commitment_tx_confirmed_hu_conv;
@@ -473,9 +481,9 @@ export class MonitorEvent_UpdateCompleted extends MonitorEvent {
         */
        public monitor_update_id: bigint;
        /* @internal */
-       public constructor(ptr: number) {
+       public constructor(ptr: bigint) {
                super(null, ptr);
-               const funding_txo: number = bindings.LDKMonitorEvent_UpdateCompleted_get_funding_txo(ptr);
+               const funding_txo: bigint = bindings.LDKMonitorEvent_UpdateCompleted_get_funding_txo(ptr);
                const funding_txo_hu_conv: OutPoint = new OutPoint(null, funding_txo);
                        CommonBase.add_ref_from(funding_txo_hu_conv, this);
                this.funding_txo = funding_txo_hu_conv;
@@ -486,9 +494,9 @@ export class MonitorEvent_UpdateCompleted extends MonitorEvent {
 export class MonitorEvent_UpdateFailed extends MonitorEvent {
        public update_failed: OutPoint;
        /* @internal */
-       public constructor(ptr: number) {
+       public constructor(ptr: bigint) {
                super(null, ptr);
-               const update_failed: number = bindings.LDKMonitorEvent_UpdateFailed_get_update_failed(ptr);
+               const update_failed: bigint = bindings.LDKMonitorEvent_UpdateFailed_get_update_failed(ptr);
                const update_failed_hu_conv: OutPoint = new OutPoint(null, update_failed);
                        CommonBase.add_ref_from(update_failed_hu_conv, this);
                this.update_failed = update_failed_hu_conv;