[TS] Update auto-generated TS bindings
[ldk-java] / ts / structs / NodeFeatures.mts
index c9ab4e26da04cb5e337d30c059f6bb629995d033..12f6a2cd97deb4ae9abc59225abb401c71e3664e 100644 (file)
@@ -361,7 +361,7 @@ import * as bindings from '../bindings.mjs'
  */
 export class NodeFeatures extends CommonBase {
        /* @internal */
-       public constructor(_dummy: object, ptr: number) {
+       public constructor(_dummy: object, ptr: bigint) {
                super(ptr, bindings.NodeFeatures_free);
        }
 
@@ -371,13 +371,13 @@ export class NodeFeatures extends CommonBase {
         * Two objects with NULL inner values will be considered "equal" here.
         */
        public eq(b: NodeFeatures): boolean {
-               const ret: boolean = bindings.NodeFeatures_eq(this.ptr, b == null ? 0 : CommonBase.get_ptr_of(b) & ~1);
+               const ret: boolean = bindings.NodeFeatures_eq(this.ptr, b == null ? 0n : CommonBase.get_ptr_of(b));
                CommonBase.add_ref_from(this, b);
                return ret;
        }
 
-       public clone_ptr(): number {
-               const ret: number = bindings.NodeFeatures_clone_ptr(this.ptr);
+       public clone_ptr(): bigint {
+               const ret: bigint = bindings.NodeFeatures_clone_ptr(this.ptr);
                return ret;
        }
 
@@ -385,7 +385,7 @@ export class NodeFeatures extends CommonBase {
         * Creates a copy of the NodeFeatures
         */
        public clone(): NodeFeatures {
-               const ret: number = bindings.NodeFeatures_clone(this.ptr);
+               const ret: bigint = bindings.NodeFeatures_clone(this.ptr);
                const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
                CommonBase.add_ref_from(ret_hu_conv, this);
                return ret_hu_conv;
@@ -395,7 +395,7 @@ export class NodeFeatures extends CommonBase {
         * Create a blank Features with no features set
         */
        public static constructor_empty(): NodeFeatures {
-               const ret: number = bindings.NodeFeatures_empty();
+               const ret: bigint = bindings.NodeFeatures_empty();
                const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
                return ret_hu_conv;
@@ -405,7 +405,7 @@ export class NodeFeatures extends CommonBase {
         * Creates a Features with the bits set which are known by the implementation
         */
        public static constructor_known(): NodeFeatures {
-               const ret: number = bindings.NodeFeatures_known();
+               const ret: bigint = bindings.NodeFeatures_known();
                const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
                return ret_hu_conv;
@@ -433,7 +433,7 @@ export class NodeFeatures extends CommonBase {
         * Read a NodeFeatures from a byte array, created by NodeFeatures_write
         */
        public static constructor_read(ser: Uint8Array): Result_NodeFeaturesDecodeErrorZ {
-               const ret: number = bindings.NodeFeatures_read(bindings.encodeUint8Array(ser));
+               const ret: bigint = bindings.NodeFeatures_read(bindings.encodeUint8Array(ser));
                const ret_hu_conv: Result_NodeFeaturesDecodeErrorZ = Result_NodeFeaturesDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }