@bitwarden/sdk-internal 0.2.0-main.306 → 0.2.0-main.307

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.
@@ -1634,14 +1634,26 @@ export class AuthClient {
1634
1634
  */
1635
1635
  send_access(): SendAccessClient;
1636
1636
  }
1637
+ /**
1638
+ * The main entry point for the Bitwarden SDK in WebAssembly environments
1639
+ */
1637
1640
  export class BitwardenClient {
1638
1641
  free(): void;
1642
+ /**
1643
+ * Initialize a new instance of the SDK client
1644
+ */
1639
1645
  constructor(token_provider: any, settings?: ClientSettings | null);
1640
1646
  /**
1641
1647
  * Test method, echoes back the input
1642
1648
  */
1643
1649
  echo(msg: string): string;
1650
+ /**
1651
+ * Returns the current SDK version
1652
+ */
1644
1653
  version(): string;
1654
+ /**
1655
+ * Test method, always throws an error
1656
+ */
1645
1657
  throw(msg: string): void;
1646
1658
  /**
1647
1659
  * Test method, calls http endpoint
@@ -1651,7 +1663,13 @@ export class BitwardenClient {
1651
1663
  * Auth related operations.
1652
1664
  */
1653
1665
  auth(): AuthClient;
1666
+ /**
1667
+ * Crypto related operations.
1668
+ */
1654
1669
  crypto(): CryptoClient;
1670
+ /**
1671
+ * Vault item related operations.
1672
+ */
1655
1673
  vault(): VaultClient;
1656
1674
  /**
1657
1675
  * Constructs a specific client for platform-specific functionality
@@ -1661,6 +1679,9 @@ export class BitwardenClient {
1661
1679
  * Constructs a specific client for generating passwords and passphrases
1662
1680
  */
1663
1681
  generator(): GeneratorClient;
1682
+ /**
1683
+ * Exporter related operations.
1684
+ */
1664
1685
  exporters(): ExporterClient;
1665
1686
  }
1666
1687
  export class CiphersClient {
@@ -830,7 +830,7 @@ module.exports.isEncryptFileError = function (error) {
830
830
  function __wbg_adapter_54(arg0, arg1, arg2) {
831
831
  try {
832
832
  const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
833
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he48cd26e2b093151(
833
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__ha454bdf5b4fbe0b2(
834
834
  retptr,
835
835
  arg0,
836
836
  arg1,
@@ -847,7 +847,7 @@ function __wbg_adapter_54(arg0, arg1, arg2) {
847
847
  }
848
848
 
849
849
  function __wbg_adapter_57(arg0, arg1, arg2) {
850
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8707eb16eb8d903b(
850
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1357e1fddec762f2(
851
851
  arg0,
852
852
  arg1,
853
853
  addHeapObject(arg2),
@@ -1136,7 +1136,9 @@ const BitwardenClientFinalization =
1136
1136
  typeof FinalizationRegistry === "undefined"
1137
1137
  ? { register: () => {}, unregister: () => {} }
1138
1138
  : new FinalizationRegistry((ptr) => wasm.__wbg_bitwardenclient_free(ptr >>> 0, 1));
1139
-
1139
+ /**
1140
+ * The main entry point for the Bitwarden SDK in WebAssembly environments
1141
+ */
1140
1142
  class BitwardenClient {
1141
1143
  __destroy_into_raw() {
1142
1144
  const ptr = this.__wbg_ptr;
@@ -1150,6 +1152,7 @@ class BitwardenClient {
1150
1152
  wasm.__wbg_bitwardenclient_free(ptr, 0);
1151
1153
  }
1152
1154
  /**
1155
+ * Initialize a new instance of the SDK client
1153
1156
  * @param {any} token_provider
1154
1157
  * @param {ClientSettings | null} [settings]
1155
1158
  */
@@ -1186,6 +1189,7 @@ class BitwardenClient {
1186
1189
  }
1187
1190
  }
1188
1191
  /**
1192
+ * Returns the current SDK version
1189
1193
  * @returns {string}
1190
1194
  */
1191
1195
  version() {
@@ -1205,6 +1209,7 @@ class BitwardenClient {
1205
1209
  }
1206
1210
  }
1207
1211
  /**
1212
+ * Test method, always throws an error
1208
1213
  * @param {string} msg
1209
1214
  */
1210
1215
  throw(msg) {
@@ -1242,6 +1247,7 @@ class BitwardenClient {
1242
1247
  return AuthClient.__wrap(ret);
1243
1248
  }
1244
1249
  /**
1250
+ * Crypto related operations.
1245
1251
  * @returns {CryptoClient}
1246
1252
  */
1247
1253
  crypto() {
@@ -1249,6 +1255,7 @@ class BitwardenClient {
1249
1255
  return CryptoClient.__wrap(ret);
1250
1256
  }
1251
1257
  /**
1258
+ * Vault item related operations.
1252
1259
  * @returns {VaultClient}
1253
1260
  */
1254
1261
  vault() {
@@ -1272,6 +1279,7 @@ class BitwardenClient {
1272
1279
  return GeneratorClient.__wrap(ret);
1273
1280
  }
1274
1281
  /**
1282
+ * Exporter related operations.
1275
1283
  * @returns {ExporterClient}
1276
1284
  */
1277
1285
  exporters() {
@@ -4118,7 +4126,14 @@ module.exports.__wbg_getTime_46267b1c24877e30 = function (arg0) {
4118
4126
  return ret;
4119
4127
  };
4120
4128
 
4121
- module.exports.__wbg_get_244e969dde4f5be1 = function () {
4129
+ module.exports.__wbg_get_67b2ba62fc30de12 = function () {
4130
+ return handleError(function (arg0, arg1) {
4131
+ const ret = Reflect.get(getObject(arg0), getObject(arg1));
4132
+ return addHeapObject(ret);
4133
+ }, arguments);
4134
+ };
4135
+
4136
+ module.exports.__wbg_get_919cf82d3c6b2598 = function () {
4122
4137
  return handleError(function (arg0, arg1, arg2) {
4123
4138
  let deferred0_0;
4124
4139
  let deferred0_1;
@@ -4133,7 +4148,12 @@ module.exports.__wbg_get_244e969dde4f5be1 = function () {
4133
4148
  }, arguments);
4134
4149
  };
4135
4150
 
4136
- module.exports.__wbg_get_62e62c7bce1de978 = function () {
4151
+ module.exports.__wbg_get_b9b93047fe3cf45b = function (arg0, arg1) {
4152
+ const ret = getObject(arg0)[arg1 >>> 0];
4153
+ return addHeapObject(ret);
4154
+ };
4155
+
4156
+ module.exports.__wbg_get_bdd50f3b0f8b2699 = function () {
4137
4157
  return handleError(function (arg0, arg1, arg2) {
4138
4158
  let deferred0_0;
4139
4159
  let deferred0_1;
@@ -4148,19 +4168,7 @@ module.exports.__wbg_get_62e62c7bce1de978 = function () {
4148
4168
  }, arguments);
4149
4169
  };
4150
4170
 
4151
- module.exports.__wbg_get_67b2ba62fc30de12 = function () {
4152
- return handleError(function (arg0, arg1) {
4153
- const ret = Reflect.get(getObject(arg0), getObject(arg1));
4154
- return addHeapObject(ret);
4155
- }, arguments);
4156
- };
4157
-
4158
- module.exports.__wbg_get_b9b93047fe3cf45b = function (arg0, arg1) {
4159
- const ret = getObject(arg0)[arg1 >>> 0];
4160
- return addHeapObject(ret);
4161
- };
4162
-
4163
- module.exports.__wbg_getaccesstoken_1ecf9954b74979bd = function (arg0) {
4171
+ module.exports.__wbg_getaccesstoken_1b27a44424385dd2 = function (arg0) {
4164
4172
  const ret = getObject(arg0).get_access_token();
4165
4173
  return addHeapObject(ret);
4166
4174
  };
@@ -4345,14 +4353,14 @@ module.exports.__wbg_length_e2d2a49132c1b256 = function (arg0) {
4345
4353
  return ret;
4346
4354
  };
4347
4355
 
4348
- module.exports.__wbg_list_37ca32136ef99690 = function () {
4356
+ module.exports.__wbg_list_ab0f82f15fa895f5 = function () {
4349
4357
  return handleError(function (arg0) {
4350
4358
  const ret = getObject(arg0).list();
4351
4359
  return addHeapObject(ret);
4352
4360
  }, arguments);
4353
4361
  };
4354
4362
 
4355
- module.exports.__wbg_list_ddc7f9eab58d8468 = function () {
4363
+ module.exports.__wbg_list_cb1cbcfe84e633e2 = function () {
4356
4364
  return handleError(function (arg0) {
4357
4365
  const ret = getObject(arg0).list();
4358
4366
  return addHeapObject(ret);
@@ -4553,7 +4561,7 @@ module.exports.__wbg_randomFillSync_ac0988aba3254290 = function () {
4553
4561
  }, arguments);
4554
4562
  };
4555
4563
 
4556
- module.exports.__wbg_remove_99b320bcc978c0d9 = function () {
4564
+ module.exports.__wbg_remove_33dd296c8b72650a = function () {
4557
4565
  return handleError(function (arg0, arg1, arg2) {
4558
4566
  let deferred0_0;
4559
4567
  let deferred0_1;
@@ -4568,7 +4576,7 @@ module.exports.__wbg_remove_99b320bcc978c0d9 = function () {
4568
4576
  }, arguments);
4569
4577
  };
4570
4578
 
4571
- module.exports.__wbg_remove_b56add8a7767c7bb = function () {
4579
+ module.exports.__wbg_remove_de8be3014c49fdfe = function () {
4572
4580
  return handleError(function (arg0, arg1, arg2) {
4573
4581
  let deferred0_0;
4574
4582
  let deferred0_1;
@@ -4614,21 +4622,6 @@ module.exports.__wbg_setTimeout_ca12ead8b48245e2 = function (arg0, arg1) {
4614
4622
  return addHeapObject(ret);
4615
4623
  };
4616
4624
 
4617
- module.exports.__wbg_set_1b3f0312806732b5 = function () {
4618
- return handleError(function (arg0, arg1, arg2, arg3) {
4619
- let deferred0_0;
4620
- let deferred0_1;
4621
- try {
4622
- deferred0_0 = arg1;
4623
- deferred0_1 = arg2;
4624
- const ret = getObject(arg0).set(getStringFromWasm0(arg1, arg2), takeObject(arg3));
4625
- return addHeapObject(ret);
4626
- } finally {
4627
- wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
4628
- }
4629
- }, arguments);
4630
- };
4631
-
4632
4625
  module.exports.__wbg_set_37837023f3d740e8 = function (arg0, arg1, arg2) {
4633
4626
  getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
4634
4627
  };
@@ -4641,12 +4634,22 @@ module.exports.__wbg_set_65595bdd868b3009 = function (arg0, arg1, arg2) {
4641
4634
  getObject(arg0).set(getObject(arg1), arg2 >>> 0);
4642
4635
  };
4643
4636
 
4644
- module.exports.__wbg_set_8fc6bf8a5b1071d1 = function (arg0, arg1, arg2) {
4645
- const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
4646
- return addHeapObject(ret);
4637
+ module.exports.__wbg_set_7df0ddb96f670064 = function () {
4638
+ return handleError(function (arg0, arg1, arg2, arg3) {
4639
+ let deferred0_0;
4640
+ let deferred0_1;
4641
+ try {
4642
+ deferred0_0 = arg1;
4643
+ deferred0_1 = arg2;
4644
+ const ret = getObject(arg0).set(getStringFromWasm0(arg1, arg2), takeObject(arg3));
4645
+ return addHeapObject(ret);
4646
+ } finally {
4647
+ wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
4648
+ }
4649
+ }, arguments);
4647
4650
  };
4648
4651
 
4649
- module.exports.__wbg_set_a786ef80829f502d = function () {
4652
+ module.exports.__wbg_set_88313dba6bf5c8e9 = function () {
4650
4653
  return handleError(function (arg0, arg1, arg2, arg3) {
4651
4654
  let deferred0_0;
4652
4655
  let deferred0_1;
@@ -4661,6 +4664,11 @@ module.exports.__wbg_set_a786ef80829f502d = function () {
4661
4664
  }, arguments);
4662
4665
  };
4663
4666
 
4667
+ module.exports.__wbg_set_8fc6bf8a5b1071d1 = function (arg0, arg1, arg2) {
4668
+ const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
4669
+ return addHeapObject(ret);
4670
+ };
4671
+
4664
4672
  module.exports.__wbg_setbody_5923b78a95eedf29 = function (arg0, arg1) {
4665
4673
  getObject(arg0).body = getObject(arg1);
4666
4674
  };
@@ -4881,7 +4889,7 @@ module.exports.__wbindgen_closure_wrapper193 = function (arg0, arg1, arg2) {
4881
4889
  return addHeapObject(ret);
4882
4890
  };
4883
4891
 
4884
- module.exports.__wbindgen_closure_wrapper3783 = function (arg0, arg1, arg2) {
4892
+ module.exports.__wbindgen_closure_wrapper3784 = function (arg0, arg1, arg2) {
4885
4893
  const ret = makeMutClosure(arg0, arg1, 294, __wbg_adapter_60);
4886
4894
  return addHeapObject(ret);
4887
4895
  };
@@ -401,13 +401,13 @@ export const __wbindgen_exn_store: (a: number) => void;
401
401
  export const __wbindgen_free: (a: number, b: number, c: number) => void;
402
402
  export const __wbindgen_export_4: WebAssembly.Table;
403
403
  export const __wbindgen_add_to_stack_pointer: (a: number) => number;
404
- export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he48cd26e2b093151: (
404
+ export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__ha454bdf5b4fbe0b2: (
405
405
  a: number,
406
406
  b: number,
407
407
  c: number,
408
408
  d: number,
409
409
  ) => void;
410
- export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8707eb16eb8d903b: (
410
+ export const _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1357e1fddec762f2: (
411
411
  a: number,
412
412
  b: number,
413
413
  c: number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitwarden/sdk-internal",
3
- "version": "0.2.0-main.306",
3
+ "version": "0.2.0-main.307",
4
4
  "license": "GPL-3.0",
5
5
  "repository": {
6
6
  "type": "git",