[TS] Update auto-generated TypeScript Bindings
[ldk-java] / ts / structs / Result_PublicKeyErrorZ.mts
index b1df4e5fb90b7e036e043a47748afc3d33b4f2c8..1a736a4a8118f583f8160538ce3825b83c4c2ba0 100644 (file)
@@ -279,7 +279,6 @@ import { MultiThreadedLockableScore } from '../structs/MultiThreadedLockableScor
 
 import CommonBase from './CommonBase.mjs';
 import * as bindings from '../bindings.mjs'
-import * as InternalUtils from '../InternalUtils.mjs'
 
 
 
@@ -295,18 +294,27 @@ export class Result_PublicKeyErrorZ extends CommonBase {
                        return new Result_PublicKeyErrorZ_Err(null, ptr);
                }
        }
+       /**
+        * Creates a new CResult_PublicKeyErrorZ in the success state.
+        */
        public static constructor_ok(o: Uint8Array): Result_PublicKeyErrorZ {
-               const ret: number = bindings.CResult_PublicKeyErrorZ_ok(InternalUtils.check_arr_len(o, 33));
+               const ret: number = bindings.CResult_PublicKeyErrorZ_ok(bindings.encodeUint8Array(bindings.check_arr_len(o, 33)));
                const ret_hu_conv: Result_PublicKeyErrorZ = Result_PublicKeyErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
 
+       /**
+        * Creates a new CResult_PublicKeyErrorZ in the error state.
+        */
        public static constructor_err(e: Secp256k1Error): Result_PublicKeyErrorZ {
                const ret: number = bindings.CResult_PublicKeyErrorZ_err(e);
                const ret_hu_conv: Result_PublicKeyErrorZ = Result_PublicKeyErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
 
+       /**
+        * Checks if the given object is currently in the success state
+        */
        public is_ok(): boolean {
                const ret: boolean = bindings.CResult_PublicKeyErrorZ_is_ok(this.ptr);
                return ret;
@@ -317,6 +325,10 @@ export class Result_PublicKeyErrorZ extends CommonBase {
                return ret;
        }
 
+       /**
+        * Creates a new CResult_PublicKeyErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
        public clone(): Result_PublicKeyErrorZ {
                const ret: number = bindings.CResult_PublicKeyErrorZ_clone(this.ptr);
                const ret_hu_conv: Result_PublicKeyErrorZ = Result_PublicKeyErrorZ.constr_from_ptr(ret);
@@ -330,7 +342,9 @@ export class Result_PublicKeyErrorZ_OK extends Result_PublicKeyErrorZ {
        /* @internal */
        public constructor(_dummy: object, ptr: number) {
                super(_dummy, ptr);
-               this.res = bindings.CResult_PublicKeyErrorZ_get_ok(ptr);
+               const res: number = bindings.CResult_PublicKeyErrorZ_get_ok(ptr);
+               const res_conv: Uint8Array = bindings.decodeUint8Array(res);
+               this.res = res_conv;
        }
 }
 export class Result_PublicKeyErrorZ_Err extends Result_PublicKeyErrorZ {