@bitwarden/sdk-internal 0.2.0-main.70 → 0.2.0-main.71

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.
@@ -26,7 +26,7 @@ export function generate_ssh_key(key_algorithm: KeyAlgorithm): SshKey;
26
26
  * - `Err(ParsingError)` if the key could not be parsed
27
27
  * - `Err(UnsupportedKeyType)` if the key type is not supported
28
28
  */
29
- export function import_ssh_key(imported_key: string, password?: string): SshKey;
29
+ export function import_ssh_key(imported_key: string, password?: string | null): SshKey;
30
30
  export enum LogLevel {
31
31
  Trace = 0,
32
32
  Debug = 1,
@@ -295,7 +295,7 @@ export type NonZeroU32 = number;
295
295
 
296
296
  export class BitwardenClient {
297
297
  free(): void;
298
- constructor(settings?: ClientSettings, log_level?: LogLevel);
298
+ constructor(settings?: ClientSettings | null, log_level?: LogLevel | null);
299
299
  /**
300
300
  * Test method, echoes back the input
301
301
  */
@@ -361,7 +361,7 @@ module.exports.generate_ssh_key = function (key_algorithm) {
361
361
  * - `Err(ParsingError)` if the key could not be parsed
362
362
  * - `Err(UnsupportedKeyType)` if the key type is not supported
363
363
  * @param {string} imported_key
364
- * @param {string | undefined} [password]
364
+ * @param {string | null} [password]
365
365
  * @returns {SshKey}
366
366
  */
367
367
  module.exports.import_ssh_key = function (imported_key, password) {
@@ -387,7 +387,7 @@ module.exports.import_ssh_key = function (imported_key, password) {
387
387
  };
388
388
 
389
389
  function __wbg_adapter_38(arg0, arg1, arg2) {
390
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h97362448a2d04fec(
390
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8fd8a25b4840f267(
391
391
  arg0,
392
392
  arg1,
393
393
  addHeapObject(arg2),
@@ -395,7 +395,7 @@ function __wbg_adapter_38(arg0, arg1, arg2) {
395
395
  }
396
396
 
397
397
  function __wbg_adapter_130(arg0, arg1, arg2, arg3) {
398
- wasm.wasm_bindgen__convert__closures__invoke2_mut__hbb7df91ae2d72126(
398
+ wasm.wasm_bindgen__convert__closures__invoke2_mut__h2b4228b75de6bd5e(
399
399
  arg0,
400
400
  arg1,
401
401
  addHeapObject(arg2),
@@ -441,8 +441,8 @@ class BitwardenClient {
441
441
  wasm.__wbg_bitwardenclient_free(ptr, 0);
442
442
  }
443
443
  /**
444
- * @param {ClientSettings | undefined} [settings]
445
- * @param {LogLevel | undefined} [log_level]
444
+ * @param {ClientSettings | null} [settings]
445
+ * @param {LogLevel | null} [log_level]
446
446
  */
447
447
  constructor(settings, log_level) {
448
448
  const ret = wasm.bitwardenclient_new(
@@ -725,23 +725,23 @@ module.exports.__wbg_String_8f0eb39a4a4c2f66 = function (arg0, arg1) {
725
725
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
726
726
  };
727
727
 
728
- module.exports.__wbg_abort_05026c983d86824c = function (arg0) {
728
+ module.exports.__wbg_abort_775ef1d17fc65868 = function (arg0) {
729
729
  getObject(arg0).abort();
730
730
  };
731
731
 
732
- module.exports.__wbg_append_66f7cb821a84ee22 = function () {
732
+ module.exports.__wbg_append_299d5d48292c0495 = function () {
733
733
  return handleError(function (arg0, arg1, arg2, arg3, arg4) {
734
734
  getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
735
735
  }, arguments);
736
736
  };
737
737
 
738
- module.exports.__wbg_append_72d1635ad8643998 = function () {
738
+ module.exports.__wbg_append_8c7dd8d641a5f01b = function () {
739
739
  return handleError(function (arg0, arg1, arg2, arg3, arg4) {
740
740
  getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
741
741
  }, arguments);
742
742
  };
743
743
 
744
- module.exports.__wbg_append_7606a4b52c36db7b = function () {
744
+ module.exports.__wbg_append_b2d1fc16de2a0e81 = function () {
745
745
  return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
746
746
  getObject(arg0).append(
747
747
  getStringFromWasm0(arg1, arg2),
@@ -751,27 +751,27 @@ module.exports.__wbg_append_7606a4b52c36db7b = function () {
751
751
  }, arguments);
752
752
  };
753
753
 
754
- module.exports.__wbg_append_f513a7a3683bdc23 = function () {
754
+ module.exports.__wbg_append_b44785ebeb668479 = function () {
755
755
  return handleError(function (arg0, arg1, arg2, arg3) {
756
756
  getObject(arg0).append(getStringFromWasm0(arg1, arg2), getObject(arg3));
757
757
  }, arguments);
758
758
  };
759
759
 
760
- module.exports.__wbg_buffer_61b7ce01341d7f88 = function (arg0) {
760
+ module.exports.__wbg_buffer_609cc3eee51ed158 = function (arg0) {
761
761
  const ret = getObject(arg0).buffer;
762
762
  return addHeapObject(ret);
763
763
  };
764
764
 
765
- module.exports.__wbg_call_500db948e69c7330 = function () {
766
- return handleError(function (arg0, arg1, arg2) {
767
- const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
765
+ module.exports.__wbg_call_672a4d21634d4a24 = function () {
766
+ return handleError(function (arg0, arg1) {
767
+ const ret = getObject(arg0).call(getObject(arg1));
768
768
  return addHeapObject(ret);
769
769
  }, arguments);
770
770
  };
771
771
 
772
- module.exports.__wbg_call_b0d8e36992d9900d = function () {
773
- return handleError(function (arg0, arg1) {
774
- const ret = getObject(arg0).call(getObject(arg1));
772
+ module.exports.__wbg_call_7cccdd69e0791ae2 = function () {
773
+ return handleError(function (arg0, arg1, arg2) {
774
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
775
775
  return addHeapObject(ret);
776
776
  }, arguments);
777
777
  };
@@ -781,24 +781,20 @@ module.exports.__wbg_crypto_ed58b8e10a292839 = function (arg0) {
781
781
  return addHeapObject(ret);
782
782
  };
783
783
 
784
- module.exports.__wbg_debug_19114f11037e4658 = function (arg0, arg1, arg2, arg3) {
784
+ module.exports.__wbg_debug_e17b51583ca6a632 = function (arg0, arg1, arg2, arg3) {
785
785
  console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
786
786
  };
787
787
 
788
- module.exports.__wbg_done_f22c1561fa919baa = function (arg0) {
788
+ module.exports.__wbg_done_769e5ede4b31c67b = function (arg0) {
789
789
  const ret = getObject(arg0).done;
790
790
  return ret;
791
791
  };
792
792
 
793
- module.exports.__wbg_entries_4f2bb9b0d701c0f6 = function (arg0) {
793
+ module.exports.__wbg_entries_3265d4158b33e5dc = function (arg0) {
794
794
  const ret = Object.entries(getObject(arg0));
795
795
  return addHeapObject(ret);
796
796
  };
797
797
 
798
- module.exports.__wbg_error_483d659117b6f3f6 = function (arg0, arg1, arg2, arg3) {
799
- console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
800
- };
801
-
802
798
  module.exports.__wbg_error_7534b8e9a36f1ab4 = function (arg0, arg1) {
803
799
  let deferred0_0;
804
800
  let deferred0_1;
@@ -811,9 +807,8 @@ module.exports.__wbg_error_7534b8e9a36f1ab4 = function (arg0, arg1) {
811
807
  }
812
808
  };
813
809
 
814
- module.exports.__wbg_fetch_229368eecee9d217 = function (arg0, arg1) {
815
- const ret = getObject(arg0).fetch(getObject(arg1));
816
- return addHeapObject(ret);
810
+ module.exports.__wbg_error_80de38b3f7cc3c3c = function (arg0, arg1, arg2, arg3) {
811
+ console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
817
812
  };
818
813
 
819
814
  module.exports.__wbg_fetch_4465c2b10f21a927 = function (arg0) {
@@ -821,46 +816,51 @@ module.exports.__wbg_fetch_4465c2b10f21a927 = function (arg0) {
821
816
  return addHeapObject(ret);
822
817
  };
823
818
 
819
+ module.exports.__wbg_fetch_509096533071c657 = function (arg0, arg1) {
820
+ const ret = getObject(arg0).fetch(getObject(arg1));
821
+ return addHeapObject(ret);
822
+ };
823
+
824
824
  module.exports.__wbg_getRandomValues_bcb4912f16000dc4 = function () {
825
825
  return handleError(function (arg0, arg1) {
826
826
  getObject(arg0).getRandomValues(getObject(arg1));
827
827
  }, arguments);
828
828
  };
829
829
 
830
- module.exports.__wbg_get_9aa3dff3f0266054 = function (arg0, arg1) {
831
- const ret = getObject(arg0)[arg1 >>> 0];
832
- return addHeapObject(ret);
833
- };
834
-
835
- module.exports.__wbg_get_bbccf8970793c087 = function () {
830
+ module.exports.__wbg_get_67b2ba62fc30de12 = function () {
836
831
  return handleError(function (arg0, arg1) {
837
832
  const ret = Reflect.get(getObject(arg0), getObject(arg1));
838
833
  return addHeapObject(ret);
839
834
  }, arguments);
840
835
  };
841
836
 
837
+ module.exports.__wbg_get_b9b93047fe3cf45b = function (arg0, arg1) {
838
+ const ret = getObject(arg0)[arg1 >>> 0];
839
+ return addHeapObject(ret);
840
+ };
841
+
842
842
  module.exports.__wbg_getwithrefkey_1dc361bd10053bfe = function (arg0, arg1) {
843
843
  const ret = getObject(arg0)[getObject(arg1)];
844
844
  return addHeapObject(ret);
845
845
  };
846
846
 
847
- module.exports.__wbg_has_94c2fc1d261bbfe9 = function () {
847
+ module.exports.__wbg_has_a5ea9117f258a0ec = function () {
848
848
  return handleError(function (arg0, arg1) {
849
849
  const ret = Reflect.has(getObject(arg0), getObject(arg1));
850
850
  return ret;
851
851
  }, arguments);
852
852
  };
853
853
 
854
- module.exports.__wbg_headers_24e3e19fe3f187c0 = function (arg0) {
854
+ module.exports.__wbg_headers_9cb51cfd2ac780a4 = function (arg0) {
855
855
  const ret = getObject(arg0).headers;
856
856
  return addHeapObject(ret);
857
857
  };
858
858
 
859
- module.exports.__wbg_info_18e75e6ce8a36a90 = function (arg0, arg1, arg2, arg3) {
859
+ module.exports.__wbg_info_033d8b8a0838f1d3 = function (arg0, arg1, arg2, arg3) {
860
860
  console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
861
861
  };
862
862
 
863
- module.exports.__wbg_instanceof_ArrayBuffer_670ddde44cdb2602 = function (arg0) {
863
+ module.exports.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function (arg0) {
864
864
  let result;
865
865
  try {
866
866
  result = getObject(arg0) instanceof ArrayBuffer;
@@ -871,7 +871,7 @@ module.exports.__wbg_instanceof_ArrayBuffer_670ddde44cdb2602 = function (arg0) {
871
871
  return ret;
872
872
  };
873
873
 
874
- module.exports.__wbg_instanceof_Response_d3453657e10c4300 = function (arg0) {
874
+ module.exports.__wbg_instanceof_Response_f2cc20d9f7dfd644 = function (arg0) {
875
875
  let result;
876
876
  try {
877
877
  result = getObject(arg0) instanceof Response;
@@ -882,7 +882,7 @@ module.exports.__wbg_instanceof_Response_d3453657e10c4300 = function (arg0) {
882
882
  return ret;
883
883
  };
884
884
 
885
- module.exports.__wbg_instanceof_Uint8Array_28af5bc19d6acad8 = function (arg0) {
885
+ module.exports.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function (arg0) {
886
886
  let result;
887
887
  try {
888
888
  result = getObject(arg0) instanceof Uint8Array;
@@ -893,27 +893,27 @@ module.exports.__wbg_instanceof_Uint8Array_28af5bc19d6acad8 = function (arg0) {
893
893
  return ret;
894
894
  };
895
895
 
896
- module.exports.__wbg_isSafeInteger_12f5549b2fca23f4 = function (arg0) {
896
+ module.exports.__wbg_isSafeInteger_343e2beeeece1bb0 = function (arg0) {
897
897
  const ret = Number.isSafeInteger(getObject(arg0));
898
898
  return ret;
899
899
  };
900
900
 
901
- module.exports.__wbg_iterator_23604bb983791576 = function () {
901
+ module.exports.__wbg_iterator_9a24c88df860dc65 = function () {
902
902
  const ret = Symbol.iterator;
903
903
  return addHeapObject(ret);
904
904
  };
905
905
 
906
- module.exports.__wbg_length_65d1cd11729ced11 = function (arg0) {
906
+ module.exports.__wbg_length_a446193dc22c12f8 = function (arg0) {
907
907
  const ret = getObject(arg0).length;
908
908
  return ret;
909
909
  };
910
910
 
911
- module.exports.__wbg_length_d65cf0786bfc5739 = function (arg0) {
911
+ module.exports.__wbg_length_e2d2a49132c1b256 = function (arg0) {
912
912
  const ret = getObject(arg0).length;
913
913
  return ret;
914
914
  };
915
915
 
916
- module.exports.__wbg_log_bc77772961bf21bb = function (arg0, arg1, arg2, arg3) {
916
+ module.exports.__wbg_log_cad59bb680daec67 = function (arg0, arg1, arg2, arg3) {
917
917
  console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
918
918
  };
919
919
 
@@ -922,26 +922,14 @@ module.exports.__wbg_msCrypto_0a36e2ec3a343d26 = function (arg0) {
922
922
  return addHeapObject(ret);
923
923
  };
924
924
 
925
- module.exports.__wbg_new_079af0206358fe9d = function () {
926
- return handleError(function () {
927
- const ret = new FormData();
928
- return addHeapObject(ret);
929
- }, arguments);
930
- };
931
-
932
- module.exports.__wbg_new_254fa9eac11932ae = function () {
933
- const ret = new Array();
934
- return addHeapObject(ret);
935
- };
936
-
937
- module.exports.__wbg_new_35d748855c4620b9 = function () {
925
+ module.exports.__wbg_new_018dcc2d6c8c2f6a = function () {
938
926
  return handleError(function () {
939
927
  const ret = new Headers();
940
928
  return addHeapObject(ret);
941
929
  }, arguments);
942
930
  };
943
931
 
944
- module.exports.__wbg_new_3d446df9155128ef = function (arg0, arg1) {
932
+ module.exports.__wbg_new_23a2665fac83c611 = function (arg0, arg1) {
945
933
  try {
946
934
  var state0 = { a: arg0, b: arg1 };
947
935
  var cb0 = (arg0, arg1) => {
@@ -960,31 +948,43 @@ module.exports.__wbg_new_3d446df9155128ef = function (arg0, arg1) {
960
948
  }
961
949
  };
962
950
 
963
- module.exports.__wbg_new_3ff5b33b1ce712df = function (arg0) {
964
- const ret = new Uint8Array(getObject(arg0));
951
+ module.exports.__wbg_new_405e22f390576ce2 = function () {
952
+ const ret = new Object();
953
+ return addHeapObject(ret);
954
+ };
955
+
956
+ module.exports.__wbg_new_78feb108b6472713 = function () {
957
+ const ret = new Array();
958
+ return addHeapObject(ret);
959
+ };
960
+
961
+ module.exports.__wbg_new_8a6f238a6ece86ea = function () {
962
+ const ret = new Error();
965
963
  return addHeapObject(ret);
966
964
  };
967
965
 
968
- module.exports.__wbg_new_5f48f21d4be11586 = function () {
966
+ module.exports.__wbg_new_9fd39a253424609a = function () {
969
967
  return handleError(function () {
970
- const ret = new AbortController();
968
+ const ret = new FormData();
971
969
  return addHeapObject(ret);
972
970
  }, arguments);
973
971
  };
974
972
 
975
- module.exports.__wbg_new_6799ef630abee97c = function (arg0, arg1) {
976
- const ret = new Error(getStringFromWasm0(arg0, arg1));
973
+ module.exports.__wbg_new_a12002a7f91c75be = function (arg0) {
974
+ const ret = new Uint8Array(getObject(arg0));
977
975
  return addHeapObject(ret);
978
976
  };
979
977
 
980
- module.exports.__wbg_new_688846f374351c92 = function () {
981
- const ret = new Object();
978
+ module.exports.__wbg_new_c68d7209be747379 = function (arg0, arg1) {
979
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
982
980
  return addHeapObject(ret);
983
981
  };
984
982
 
985
- module.exports.__wbg_new_8a6f238a6ece86ea = function () {
986
- const ret = new Error();
987
- return addHeapObject(ret);
983
+ module.exports.__wbg_new_e25e5aab09ff45db = function () {
984
+ return handleError(function () {
985
+ const ret = new AbortController();
986
+ return addHeapObject(ret);
987
+ }, arguments);
988
988
  };
989
989
 
990
990
  module.exports.__wbg_new_f24b6d53abe5bc82 = function (arg0, arg1) {
@@ -1000,47 +1000,47 @@ module.exports.__wbg_new_f24b6d53abe5bc82 = function (arg0, arg1) {
1000
1000
  }
1001
1001
  };
1002
1002
 
1003
- module.exports.__wbg_newnoargs_fd9e4bf8be2bc16d = function (arg0, arg1) {
1003
+ module.exports.__wbg_newnoargs_105ed471475aaf50 = function (arg0, arg1) {
1004
1004
  const ret = new Function(getStringFromWasm0(arg0, arg1));
1005
1005
  return addHeapObject(ret);
1006
1006
  };
1007
1007
 
1008
- module.exports.__wbg_newwithbyteoffsetandlength_ba35896968751d91 = function (arg0, arg1, arg2) {
1008
+ module.exports.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function (arg0, arg1, arg2) {
1009
1009
  const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
1010
1010
  return addHeapObject(ret);
1011
1011
  };
1012
1012
 
1013
- module.exports.__wbg_newwithlength_34ce8f1051e74449 = function (arg0) {
1013
+ module.exports.__wbg_newwithlength_a381634e90c276d4 = function (arg0) {
1014
1014
  const ret = new Uint8Array(arg0 >>> 0);
1015
1015
  return addHeapObject(ret);
1016
1016
  };
1017
1017
 
1018
- module.exports.__wbg_newwithstrandinit_a1f6583f20e4faff = function () {
1018
+ module.exports.__wbg_newwithstrandinit_06c535e0a867c635 = function () {
1019
1019
  return handleError(function (arg0, arg1, arg2) {
1020
1020
  const ret = new Request(getStringFromWasm0(arg0, arg1), getObject(arg2));
1021
1021
  return addHeapObject(ret);
1022
1022
  }, arguments);
1023
1023
  };
1024
1024
 
1025
- module.exports.__wbg_newwithu8arraysequenceandoptions_75a3b40c32d6c988 = function () {
1025
+ module.exports.__wbg_newwithu8arraysequenceandoptions_068570c487f69127 = function () {
1026
1026
  return handleError(function (arg0, arg1) {
1027
1027
  const ret = new Blob(getObject(arg0), getObject(arg1));
1028
1028
  return addHeapObject(ret);
1029
1029
  }, arguments);
1030
1030
  };
1031
1031
 
1032
- module.exports.__wbg_next_01dd9234a5bf6d05 = function () {
1032
+ module.exports.__wbg_next_25feadfc0913fea9 = function (arg0) {
1033
+ const ret = getObject(arg0).next;
1034
+ return addHeapObject(ret);
1035
+ };
1036
+
1037
+ module.exports.__wbg_next_6574e1a8a62d1055 = function () {
1033
1038
  return handleError(function (arg0) {
1034
1039
  const ret = getObject(arg0).next();
1035
1040
  return addHeapObject(ret);
1036
1041
  }, arguments);
1037
1042
  };
1038
1043
 
1039
- module.exports.__wbg_next_137428deb98342b0 = function (arg0) {
1040
- const ret = getObject(arg0).next;
1041
- return addHeapObject(ret);
1042
- };
1043
-
1044
1044
  module.exports.__wbg_node_02999533c4ea02e3 = function (arg0) {
1045
1045
  const ret = getObject(arg0).node;
1046
1046
  return addHeapObject(ret);
@@ -1051,16 +1051,16 @@ module.exports.__wbg_process_5c1d670bc53614b8 = function (arg0) {
1051
1051
  return addHeapObject(ret);
1052
1052
  };
1053
1053
 
1054
- module.exports.__wbg_push_6edad0df4b546b2c = function (arg0, arg1) {
1054
+ module.exports.__wbg_push_737cfc8c1432c2c6 = function (arg0, arg1) {
1055
1055
  const ret = getObject(arg0).push(getObject(arg1));
1056
1056
  return ret;
1057
1057
  };
1058
1058
 
1059
- module.exports.__wbg_queueMicrotask_2181040e064c0dc8 = function (arg0) {
1059
+ module.exports.__wbg_queueMicrotask_97d92b4fcc8a61c5 = function (arg0) {
1060
1060
  queueMicrotask(getObject(arg0));
1061
1061
  };
1062
1062
 
1063
- module.exports.__wbg_queueMicrotask_ef9ac43769cbcc4f = function (arg0) {
1063
+ module.exports.__wbg_queueMicrotask_d3219def82552485 = function (arg0) {
1064
1064
  const ret = getObject(arg0).queueMicrotask;
1065
1065
  return addHeapObject(ret);
1066
1066
  };
@@ -1078,36 +1078,36 @@ module.exports.__wbg_require_79b1e9274cde3c87 = function () {
1078
1078
  }, arguments);
1079
1079
  };
1080
1080
 
1081
- module.exports.__wbg_resolve_0bf7c44d641804f9 = function (arg0) {
1081
+ module.exports.__wbg_resolve_4851785c9c5f573d = function (arg0) {
1082
1082
  const ret = Promise.resolve(getObject(arg0));
1083
1083
  return addHeapObject(ret);
1084
1084
  };
1085
1085
 
1086
- module.exports.__wbg_set_23d69db4e5c66a6e = function (arg0, arg1, arg2) {
1087
- getObject(arg0).set(getObject(arg1), arg2 >>> 0);
1088
- };
1089
-
1090
1086
  module.exports.__wbg_set_3f1d0b984ed272ed = function (arg0, arg1, arg2) {
1091
1087
  getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
1092
1088
  };
1093
1089
 
1094
- module.exports.__wbg_setbody_64920df008e48adc = function (arg0, arg1) {
1090
+ module.exports.__wbg_set_65595bdd868b3009 = function (arg0, arg1, arg2) {
1091
+ getObject(arg0).set(getObject(arg1), arg2 >>> 0);
1092
+ };
1093
+
1094
+ module.exports.__wbg_setbody_5923b78a95eedf29 = function (arg0, arg1) {
1095
1095
  getObject(arg0).body = getObject(arg1);
1096
1096
  };
1097
1097
 
1098
- module.exports.__wbg_setcredentials_cfc15e48e3a3a535 = function (arg0, arg1) {
1098
+ module.exports.__wbg_setcredentials_c3a22f1cd105a2c6 = function (arg0, arg1) {
1099
1099
  getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
1100
1100
  };
1101
1101
 
1102
- module.exports.__wbg_setheaders_4c921e8e226bdfa7 = function (arg0, arg1) {
1102
+ module.exports.__wbg_setheaders_834c0bdb6a8949ad = function (arg0, arg1) {
1103
1103
  getObject(arg0).headers = getObject(arg1);
1104
1104
  };
1105
1105
 
1106
- module.exports.__wbg_setmethod_cfc7f688ba46a6be = function (arg0, arg1, arg2) {
1106
+ module.exports.__wbg_setmethod_3c5280fe5d890842 = function (arg0, arg1, arg2) {
1107
1107
  getObject(arg0).method = getStringFromWasm0(arg1, arg2);
1108
1108
  };
1109
1109
 
1110
- module.exports.__wbg_setmode_cd03637eb7da01e0 = function (arg0, arg1) {
1110
+ module.exports.__wbg_setmode_5dc300b865044b65 = function (arg0, arg1) {
1111
1111
  getObject(arg0).mode = __wbindgen_enum_RequestMode[arg1];
1112
1112
  };
1113
1113
 
@@ -1123,11 +1123,11 @@ module.exports.__wbg_setname_c0e2d6f348c746f4 = function (arg0, arg1, arg2) {
1123
1123
  }
1124
1124
  };
1125
1125
 
1126
- module.exports.__wbg_setsignal_f766190d206f09e5 = function (arg0, arg1) {
1126
+ module.exports.__wbg_setsignal_75b21ef3a81de905 = function (arg0, arg1) {
1127
1127
  getObject(arg0).signal = getObject(arg1);
1128
1128
  };
1129
1129
 
1130
- module.exports.__wbg_settype_fd39465d237c2f36 = function (arg0, arg1, arg2) {
1130
+ module.exports.__wbg_settype_39ed370d3edd403c = function (arg0, arg1, arg2) {
1131
1131
  getObject(arg0).type = getStringFromWasm0(arg1, arg2);
1132
1132
  };
1133
1133
 
@@ -1143,7 +1143,7 @@ module.exports.__wbg_setvariant_d1d41b778dfe9c17 = function (arg0, arg1, arg2) {
1143
1143
  }
1144
1144
  };
1145
1145
 
1146
- module.exports.__wbg_signal_1fdadeba2d04660e = function (arg0) {
1146
+ module.exports.__wbg_signal_aaf9ad74119f20a4 = function (arg0) {
1147
1147
  const ret = getObject(arg0).signal;
1148
1148
  return addHeapObject(ret);
1149
1149
  };
@@ -1156,61 +1156,61 @@ module.exports.__wbg_stack_0ed75d68575b0f3c = function (arg0, arg1) {
1156
1156
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1157
1157
  };
1158
1158
 
1159
- module.exports.__wbg_static_accessor_GLOBAL_0be7472e492ad3e3 = function () {
1159
+ module.exports.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function () {
1160
1160
  const ret = typeof global === "undefined" ? null : global;
1161
1161
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
1162
1162
  };
1163
1163
 
1164
- module.exports.__wbg_static_accessor_GLOBAL_THIS_1a6eb482d12c9bfb = function () {
1164
+ module.exports.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function () {
1165
1165
  const ret = typeof globalThis === "undefined" ? null : globalThis;
1166
1166
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
1167
1167
  };
1168
1168
 
1169
- module.exports.__wbg_static_accessor_SELF_1dc398a895c82351 = function () {
1169
+ module.exports.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function () {
1170
1170
  const ret = typeof self === "undefined" ? null : self;
1171
1171
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
1172
1172
  };
1173
1173
 
1174
- module.exports.__wbg_static_accessor_WINDOW_ae1c80c7eea8d64a = function () {
1174
+ module.exports.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function () {
1175
1175
  const ret = typeof window === "undefined" ? null : window;
1176
1176
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
1177
1177
  };
1178
1178
 
1179
- module.exports.__wbg_status_317f53bc4c7638df = function (arg0) {
1179
+ module.exports.__wbg_status_f6360336ca686bf0 = function (arg0) {
1180
1180
  const ret = getObject(arg0).status;
1181
1181
  return ret;
1182
1182
  };
1183
1183
 
1184
- module.exports.__wbg_stringify_f4f701bc34ceda61 = function () {
1184
+ module.exports.__wbg_stringify_f7ed6987935b4a24 = function () {
1185
1185
  return handleError(function (arg0) {
1186
1186
  const ret = JSON.stringify(getObject(arg0));
1187
1187
  return addHeapObject(ret);
1188
1188
  }, arguments);
1189
1189
  };
1190
1190
 
1191
- module.exports.__wbg_subarray_46adeb9b86949d12 = function (arg0, arg1, arg2) {
1191
+ module.exports.__wbg_subarray_aa9065fa9dc5df96 = function (arg0, arg1, arg2) {
1192
1192
  const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
1193
1193
  return addHeapObject(ret);
1194
1194
  };
1195
1195
 
1196
- module.exports.__wbg_text_dfc4cb7631d2eb34 = function () {
1196
+ module.exports.__wbg_text_7805bea50de2af49 = function () {
1197
1197
  return handleError(function (arg0) {
1198
1198
  const ret = getObject(arg0).text();
1199
1199
  return addHeapObject(ret);
1200
1200
  }, arguments);
1201
1201
  };
1202
1202
 
1203
- module.exports.__wbg_then_0438fad860fe38e1 = function (arg0, arg1) {
1203
+ module.exports.__wbg_then_44b73946d2fb3e7d = function (arg0, arg1) {
1204
1204
  const ret = getObject(arg0).then(getObject(arg1));
1205
1205
  return addHeapObject(ret);
1206
1206
  };
1207
1207
 
1208
- module.exports.__wbg_then_0ffafeddf0e182a4 = function (arg0, arg1, arg2) {
1208
+ module.exports.__wbg_then_48b406749878a531 = function (arg0, arg1, arg2) {
1209
1209
  const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
1210
1210
  return addHeapObject(ret);
1211
1211
  };
1212
1212
 
1213
- module.exports.__wbg_url_5327bc0a41a9b085 = function (arg0, arg1) {
1213
+ module.exports.__wbg_url_ae10c34ca209681d = function (arg0, arg1) {
1214
1214
  const ret = getObject(arg1).url;
1215
1215
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1216
1216
  const len1 = WASM_VECTOR_LEN;
@@ -1218,7 +1218,7 @@ module.exports.__wbg_url_5327bc0a41a9b085 = function (arg0, arg1) {
1218
1218
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1219
1219
  };
1220
1220
 
1221
- module.exports.__wbg_value_4c32fd138a88eee2 = function (arg0) {
1221
+ module.exports.__wbg_value_cd1ffa7b1ab794f1 = function (arg0) {
1222
1222
  const ret = getObject(arg0).value;
1223
1223
  return addHeapObject(ret);
1224
1224
  };
@@ -1228,7 +1228,7 @@ module.exports.__wbg_versions_c71aa1626a93e0a1 = function (arg0) {
1228
1228
  return addHeapObject(ret);
1229
1229
  };
1230
1230
 
1231
- module.exports.__wbg_warn_cb8be8bbf790a5d6 = function (arg0, arg1, arg2, arg3) {
1231
+ module.exports.__wbg_warn_aaf1f4664a035bd6 = function (arg0, arg1, arg2, arg3) {
1232
1232
  console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
1233
1233
  };
1234
1234
 
@@ -1253,8 +1253,8 @@ module.exports.__wbindgen_cb_drop = function (arg0) {
1253
1253
  return ret;
1254
1254
  };
1255
1255
 
1256
- module.exports.__wbindgen_closure_wrapper2041 = function (arg0, arg1, arg2) {
1257
- const ret = makeMutClosure(arg0, arg1, 546, __wbg_adapter_38);
1256
+ module.exports.__wbindgen_closure_wrapper2045 = function (arg0, arg1, arg2) {
1257
+ const ret = makeMutClosure(arg0, arg1, 552, __wbg_adapter_38);
1258
1258
  return addHeapObject(ret);
1259
1259
  };
1260
1260
 
@@ -32,12 +32,12 @@ export const __wbindgen_exn_store: (a: number) => void;
32
32
  export const __wbindgen_free: (a: number, b: number, c: number) => void;
33
33
  export const __wbindgen_export_4: WebAssembly.Table;
34
34
  export const __wbindgen_add_to_stack_pointer: (a: number) => number;
35
- export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h97362448a2d04fec: (
35
+ export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8fd8a25b4840f267: (
36
36
  a: number,
37
37
  b: number,
38
38
  c: number,
39
39
  ) => void;
40
- export const wasm_bindgen__convert__closures__invoke2_mut__hbb7df91ae2d72126: (
40
+ export const wasm_bindgen__convert__closures__invoke2_mut__h2b4228b75de6bd5e: (
41
41
  a: number,
42
42
  b: number,
43
43
  c: number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitwarden/sdk-internal",
3
- "version": "0.2.0-main.70",
3
+ "version": "0.2.0-main.71",
4
4
  "license": "GPL-3.0",
5
5
  "files": [
6
6
  "bitwarden_wasm_internal_bg.js",