@cartridge/controller-wasm 0.7.14-634aa73 → 0.7.14-7460bf4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cartridge/controller-wasm",
3
- "version": "0.7.14-634aa73",
3
+ "version": "0.7.14-7460bf4",
4
4
  "description": "Wasm bindings for Cartridge Controller and Session Account",
5
5
  "type": "module",
6
6
  "main": "./pkg-controller/account_wasm.js",
@@ -1,5 +1,13 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
+ /**
4
+ * Result type for signExecuteFromOutside containing both the OutsideExecution and signature
5
+ */
6
+ export interface JsSignedOutsideExecution {
7
+ outside_execution: JsOutsideExecutionV3;
8
+ signature: JsFelt[];
9
+ }
10
+
3
11
  /**
4
12
  * JavaScript-friendly OutsideExecution V3 structure
5
13
  */
@@ -11,20 +19,12 @@ export interface JsOutsideExecutionV3 {
11
19
  nonce: [JsFelt, JsFelt];
12
20
  }
13
21
 
14
- /**
15
- * Result type for signExecuteFromOutside containing both the OutsideExecution and signature
16
- */
17
- export interface JsSignedOutsideExecution {
18
- outside_execution: JsOutsideExecutionV3;
19
- signature: JsFelt[];
20
- }
21
-
22
22
  export type Felts = JsFelt[];
23
23
 
24
- export type JsFelt = Felt;
25
-
26
24
  export type JsFeeSource = "PAYMASTER" | "CREDITS";
27
25
 
26
+ export type JsFelt = Felt;
27
+
28
28
  export interface JsCall {
29
29
  contractAddress: JsFelt;
30
30
  entrypoint: string;
@@ -36,8 +36,9 @@ export interface Owner {
36
36
  account?: JsFelt;
37
37
  }
38
38
 
39
- export interface TypedDataPolicy {
40
- scope_hash: JsFelt;
39
+ export interface CallPolicy {
40
+ target: JsFelt;
41
+ method: JsFelt;
41
42
  authorized?: boolean;
42
43
  }
43
44
 
@@ -49,16 +50,11 @@ export interface ApprovalPolicy {
49
50
 
50
51
  export type Policy = CallPolicy | TypedDataPolicy | ApprovalPolicy;
51
52
 
52
- export interface CallPolicy {
53
- target: JsFelt;
54
- method: JsFelt;
53
+ export interface TypedDataPolicy {
54
+ scope_hash: JsFelt;
55
55
  authorized?: boolean;
56
56
  }
57
57
 
58
- export interface StarknetSigner {
59
- privateKey: JsFelt;
60
- }
61
-
62
58
  export type JsAddSignerInput = SignerInput;
63
59
 
64
60
  export interface WebauthnSigner {
@@ -67,6 +63,10 @@ export interface WebauthnSigner {
67
63
  publicKey: string;
68
64
  }
69
65
 
66
+ export interface StarknetSigner {
67
+ privateKey: JsFelt;
68
+ }
69
+
70
70
  export type JsRemoveSignerInput = SignerInput;
71
71
 
72
72
  export interface Eip191Signer {
@@ -80,6 +80,10 @@ export interface Signer {
80
80
  eip191?: Eip191Signer;
81
81
  }
82
82
 
83
+ export type JsRevokableSession = RevokableSession;
84
+
85
+ export type JsSubscribeSessionResult = SubscribeCreateSessionSubscribeCreateSession;
86
+
83
87
  export interface AuthorizedSession {
84
88
  session: Session;
85
89
  authorization: JsFelt[] | null;
@@ -91,6 +95,11 @@ export interface AuthorizedSession {
91
95
  guardianKeyGuid: JsFelt;
92
96
  }
93
97
 
98
+ export interface Credentials {
99
+ authorization: JsFelt[];
100
+ privateKey: JsFelt;
101
+ }
102
+
94
103
  export interface Session {
95
104
  policies: Policy[];
96
105
  expiresAt: number;
@@ -99,19 +108,6 @@ export interface Session {
99
108
  guardianKeyGuid: JsFelt;
100
109
  }
101
110
 
102
- export interface Credentials {
103
- authorization: JsFelt[];
104
- privateKey: JsFelt;
105
- }
106
-
107
- export type JsSubscribeSessionResult = SubscribeCreateSessionSubscribeCreateSession;
108
-
109
- export type JsRevokableSession = RevokableSession;
110
-
111
- export interface JsEstimateFeeDetails {
112
- nonce: JsFelt;
113
- }
114
-
115
111
  export interface JsFeeEstimate {
116
112
  l1_gas_consumed: number;
117
113
  l1_gas_price: number;
@@ -124,6 +120,10 @@ export interface JsFeeEstimate {
124
120
 
125
121
  export type JsPriceUnit = "WEI" | "FRI";
126
122
 
123
+ export interface JsEstimateFeeDetails {
124
+ nonce: JsFelt;
125
+ }
126
+
127
127
  export type JsRegister = RegisterInput;
128
128
 
129
129
  export type JsRegisterResponse = ResponseData;
@@ -285,20 +285,20 @@ if (!('encodeInto' in cachedTextEncoder)) {
285
285
 
286
286
  let WASM_VECTOR_LEN = 0;
287
287
 
288
- function __wasm_bindgen_func_elem_3270(arg0, arg1, arg2) {
289
- wasm.__wasm_bindgen_func_elem_3270(arg0, arg1, addHeapObject(arg2));
288
+ function __wasm_bindgen_func_elem_8774(arg0, arg1, arg2) {
289
+ wasm.__wasm_bindgen_func_elem_8774(arg0, arg1, addHeapObject(arg2));
290
290
  }
291
291
 
292
- function __wasm_bindgen_func_elem_8785(arg0, arg1, arg2) {
293
- wasm.__wasm_bindgen_func_elem_8785(arg0, arg1, addHeapObject(arg2));
292
+ function __wasm_bindgen_func_elem_8624(arg0, arg1) {
293
+ wasm.__wasm_bindgen_func_elem_8624(arg0, arg1);
294
294
  }
295
295
 
296
- function __wasm_bindgen_func_elem_8635(arg0, arg1) {
297
- wasm.__wasm_bindgen_func_elem_8635(arg0, arg1);
296
+ function __wasm_bindgen_func_elem_3270(arg0, arg1, arg2) {
297
+ wasm.__wasm_bindgen_func_elem_3270(arg0, arg1, addHeapObject(arg2));
298
298
  }
299
299
 
300
- function __wasm_bindgen_func_elem_10881(arg0, arg1, arg2, arg3) {
301
- wasm.__wasm_bindgen_func_elem_10881(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
300
+ function __wasm_bindgen_func_elem_10868(arg0, arg1, arg2, arg3) {
301
+ wasm.__wasm_bindgen_func_elem_10868(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
302
302
  }
303
303
 
304
304
  const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
@@ -1621,7 +1621,7 @@ export function __wbg_credentials_36e0572b476d4883(arg0) {
1621
1621
  return addHeapObject(ret);
1622
1622
  };
1623
1623
 
1624
- export function __wbg_crypto_574e78ad8b13b65f(arg0) {
1624
+ export function __wbg_crypto_86f2631e91b51511(arg0) {
1625
1625
  const ret = getObject(arg0).crypto;
1626
1626
  return addHeapObject(ret);
1627
1627
  };
@@ -1668,7 +1668,7 @@ export function __wbg_getItem_1340bfc9a10d5991() { return handleError(function (
1668
1668
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
1669
1669
  }, arguments) };
1670
1670
 
1671
- export function __wbg_getRandomValues_b8f5dbd5f3995a9e() { return handleError(function (arg0, arg1) {
1671
+ export function __wbg_getRandomValues_b3f15fcbfabb0f8b() { return handleError(function (arg0, arg1) {
1672
1672
  getObject(arg0).getRandomValues(getObject(arg1));
1673
1673
  }, arguments) };
1674
1674
 
@@ -1807,7 +1807,7 @@ export function __wbg_loginresult_new(arg0) {
1807
1807
  return addHeapObject(ret);
1808
1808
  };
1809
1809
 
1810
- export function __wbg_msCrypto_a61aeb35a24c1329(arg0) {
1810
+ export function __wbg_msCrypto_d562bbe83e0d4b91(arg0) {
1811
1811
  const ret = getObject(arg0).msCrypto;
1812
1812
  return addHeapObject(ret);
1813
1813
  };
@@ -1869,7 +1869,7 @@ export function __wbg_new_ff12d2b041fb48f1(arg0, arg1) {
1869
1869
  const a = state0.a;
1870
1870
  state0.a = 0;
1871
1871
  try {
1872
- return __wasm_bindgen_func_elem_10881(a, state0.b, arg0, arg1);
1872
+ return __wasm_bindgen_func_elem_10868(a, state0.b, arg0, arg1);
1873
1873
  } finally {
1874
1874
  state0.a = a;
1875
1875
  }
@@ -1911,7 +1911,7 @@ export function __wbg_next_3cfe5c0fe2a4cc53() { return handleError(function (arg
1911
1911
  return addHeapObject(ret);
1912
1912
  }, arguments) };
1913
1913
 
1914
- export function __wbg_node_905d3e251edff8a2(arg0) {
1914
+ export function __wbg_node_e1f24f89a7336c2e(arg0) {
1915
1915
  const ret = getObject(arg0).node;
1916
1916
  return addHeapObject(ret);
1917
1917
  };
@@ -1960,7 +1960,7 @@ export function __wbg_parse_7ff95c018af680b3(arg0, arg1) {
1960
1960
  }
1961
1961
  };
1962
1962
 
1963
- export function __wbg_process_dc0fbacc7c1c06f7(arg0) {
1963
+ export function __wbg_process_3975fd6c72f520aa(arg0) {
1964
1964
  const ret = getObject(arg0).process;
1965
1965
  return addHeapObject(ret);
1966
1966
  };
@@ -1983,7 +1983,7 @@ export function __wbg_queueMicrotask_fca69f5bfad613a5(arg0) {
1983
1983
  queueMicrotask(getObject(arg0));
1984
1984
  };
1985
1985
 
1986
- export function __wbg_randomFillSync_ac0988aba3254290() { return handleError(function (arg0, arg1) {
1986
+ export function __wbg_randomFillSync_f8c153b79f285817() { return handleError(function (arg0, arg1) {
1987
1987
  getObject(arg0).randomFillSync(takeObject(arg1));
1988
1988
  }, arguments) };
1989
1989
 
@@ -1995,7 +1995,7 @@ export function __wbg_removeItem_33ed1aeb2dc68e96() { return handleError(functio
1995
1995
  getObject(arg0).removeItem(getStringFromWasm0(arg1, arg2));
1996
1996
  }, arguments) };
1997
1997
 
1998
- export function __wbg_require_60cc747a6bc5215a() { return handleError(function () {
1998
+ export function __wbg_require_b74f47fc2d022fd6() { return handleError(function () {
1999
1999
  const ret = module.require;
2000
2000
  return addHeapObject(ret);
2001
2001
  }, arguments) };
@@ -2176,7 +2176,7 @@ export function __wbg_value_57b7b035e117f7ee(arg0) {
2176
2176
  return addHeapObject(ret);
2177
2177
  };
2178
2178
 
2179
- export function __wbg_versions_c01dfd4722a88165(arg0) {
2179
+ export function __wbg_versions_4e31226f5e8dc909(arg0) {
2180
2180
  const ret = getObject(arg0).versions;
2181
2181
  return addHeapObject(ret);
2182
2182
  };
@@ -2193,9 +2193,9 @@ export function __wbindgen_cast_4082834687a71a5d(arg0, arg1) {
2193
2193
  return addHeapObject(ret);
2194
2194
  };
2195
2195
 
2196
- export function __wbindgen_cast_448d871898ab3e4e(arg0, arg1) {
2197
- // Cast intrinsic for `Closure(Closure { dtor_idx: 1001, function: Function { arguments: [Externref], shim_idx: 1002, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
2198
- const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_8770, __wasm_bindgen_func_elem_8785);
2196
+ export function __wbindgen_cast_7ee5a51087797a77(arg0, arg1) {
2197
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 964, function: Function { arguments: [], shim_idx: 965, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
2198
+ const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_8615, __wasm_bindgen_func_elem_8624);
2199
2199
  return addHeapObject(ret);
2200
2200
  };
2201
2201
 
@@ -2205,15 +2205,15 @@ export function __wbindgen_cast_9ae0607507abb057(arg0) {
2205
2205
  return addHeapObject(ret);
2206
2206
  };
2207
2207
 
2208
- export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
2209
- // Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
2210
- const ret = getArrayU8FromWasm0(arg0, arg1);
2208
+ export function __wbindgen_cast_c1e81174c416a26f(arg0, arg1) {
2209
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 999, function: Function { arguments: [Externref], shim_idx: 1000, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
2210
+ const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_8759, __wasm_bindgen_func_elem_8774);
2211
2211
  return addHeapObject(ret);
2212
2212
  };
2213
2213
 
2214
- export function __wbindgen_cast_d5328f274dc9f28a(arg0, arg1) {
2215
- // Cast intrinsic for `Closure(Closure { dtor_idx: 966, function: Function { arguments: [], shim_idx: 967, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
2216
- const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_8626, __wasm_bindgen_func_elem_8635);
2214
+ export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
2215
+ // Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
2216
+ const ret = getArrayU8FromWasm0(arg0, arg1);
2217
2217
  return addHeapObject(ret);
2218
2218
  };
2219
2219
 
Binary file
@@ -1,13 +1,5 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
- /**
4
- * Result type for signExecuteFromOutside containing both the OutsideExecution and signature
5
- */
6
- export interface JsSignedOutsideExecution {
7
- outside_execution: JsOutsideExecutionV3;
8
- signature: JsFelt[];
9
- }
10
-
11
3
  /**
12
4
  * JavaScript-friendly OutsideExecution V3 structure
13
5
  */
@@ -19,6 +11,14 @@ export interface JsOutsideExecutionV3 {
19
11
  nonce: [JsFelt, JsFelt];
20
12
  }
21
13
 
14
+ /**
15
+ * Result type for signExecuteFromOutside containing both the OutsideExecution and signature
16
+ */
17
+ export interface JsSignedOutsideExecution {
18
+ outside_execution: JsOutsideExecutionV3;
19
+ signature: JsFelt[];
20
+ }
21
+
22
22
  export type JsFelt = Felt;
23
23
 
24
24
  export type Felts = JsFelt[];
@@ -36,9 +36,10 @@ export interface Owner {
36
36
  account?: JsFelt;
37
37
  }
38
38
 
39
- export interface CallPolicy {
40
- target: JsFelt;
41
- method: JsFelt;
39
+ export type Policy = CallPolicy | TypedDataPolicy | ApprovalPolicy;
40
+
41
+ export interface TypedDataPolicy {
42
+ scope_hash: JsFelt;
42
43
  authorized?: boolean;
43
44
  }
44
45
 
@@ -48,19 +49,12 @@ export interface ApprovalPolicy {
48
49
  amount: JsFelt;
49
50
  }
50
51
 
51
- export interface TypedDataPolicy {
52
- scope_hash: JsFelt;
52
+ export interface CallPolicy {
53
+ target: JsFelt;
54
+ method: JsFelt;
53
55
  authorized?: boolean;
54
56
  }
55
57
 
56
- export type Policy = CallPolicy | TypedDataPolicy | ApprovalPolicy;
57
-
58
- export type JsAddSignerInput = SignerInput;
59
-
60
- export interface StarknetSigner {
61
- privateKey: JsFelt;
62
- }
63
-
64
58
  export interface Eip191Signer {
65
59
  address: string;
66
60
  }
@@ -71,7 +65,7 @@ export interface WebauthnSigner {
71
65
  publicKey: string;
72
66
  }
73
67
 
74
- export type JsRemoveSignerInput = SignerInput;
68
+ export type JsAddSignerInput = SignerInput;
75
69
 
76
70
  export interface Signer {
77
71
  webauthns?: WebauthnSigner[];
@@ -80,6 +74,19 @@ export interface Signer {
80
74
  eip191?: Eip191Signer;
81
75
  }
82
76
 
77
+ export type JsRemoveSignerInput = SignerInput;
78
+
79
+ export interface StarknetSigner {
80
+ privateKey: JsFelt;
81
+ }
82
+
83
+ export interface Credentials {
84
+ authorization: JsFelt[];
85
+ privateKey: JsFelt;
86
+ }
87
+
88
+ export type JsRevokableSession = RevokableSession;
89
+
83
90
  export interface AuthorizedSession {
84
91
  session: Session;
85
92
  authorization: JsFelt[] | null;
@@ -91,11 +98,6 @@ export interface AuthorizedSession {
91
98
  guardianKeyGuid: JsFelt;
92
99
  }
93
100
 
94
- export interface Credentials {
95
- authorization: JsFelt[];
96
- privateKey: JsFelt;
97
- }
98
-
99
101
  export interface Session {
100
102
  policies: Policy[];
101
103
  expiresAt: number;
@@ -106,10 +108,6 @@ export interface Session {
106
108
 
107
109
  export type JsSubscribeSessionResult = SubscribeCreateSessionSubscribeCreateSession;
108
110
 
109
- export type JsRevokableSession = RevokableSession;
110
-
111
- export type JsPriceUnit = "WEI" | "FRI";
112
-
113
111
  export interface JsFeeEstimate {
114
112
  l1_gas_consumed: number;
115
113
  l1_gas_price: number;
@@ -124,10 +122,12 @@ export interface JsEstimateFeeDetails {
124
122
  nonce: JsFelt;
125
123
  }
126
124
 
127
- export type JsRegister = RegisterInput;
125
+ export type JsPriceUnit = "WEI" | "FRI";
128
126
 
129
127
  export type JsRegisterResponse = ResponseData;
130
128
 
129
+ export type JsRegister = RegisterInput;
130
+
131
131
 
132
132
  export class CartridgeSessionAccount {
133
133
  private constructor();
@@ -244,16 +244,16 @@ if (!('encodeInto' in cachedTextEncoder)) {
244
244
 
245
245
  let WASM_VECTOR_LEN = 0;
246
246
 
247
- function __wasm_bindgen_func_elem_4020(arg0, arg1, arg2) {
248
- wasm.__wasm_bindgen_func_elem_4020(arg0, arg1, addHeapObject(arg2));
247
+ function __wasm_bindgen_func_elem_4013(arg0, arg1, arg2) {
248
+ wasm.__wasm_bindgen_func_elem_4013(arg0, arg1, addHeapObject(arg2));
249
249
  }
250
250
 
251
- function __wasm_bindgen_func_elem_3875(arg0, arg1) {
252
- wasm.__wasm_bindgen_func_elem_3875(arg0, arg1);
251
+ function __wasm_bindgen_func_elem_3868(arg0, arg1) {
252
+ wasm.__wasm_bindgen_func_elem_3868(arg0, arg1);
253
253
  }
254
254
 
255
- function __wasm_bindgen_func_elem_5804(arg0, arg1, arg2, arg3) {
256
- wasm.__wasm_bindgen_func_elem_5804(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
255
+ function __wasm_bindgen_func_elem_5798(arg0, arg1, arg2, arg3) {
256
+ wasm.__wasm_bindgen_func_elem_5798(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
257
257
  }
258
258
 
259
259
  const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
@@ -697,7 +697,7 @@ export function __wbg_credentials_36e0572b476d4883(arg0) {
697
697
  return addHeapObject(ret);
698
698
  };
699
699
 
700
- export function __wbg_crypto_574e78ad8b13b65f(arg0) {
700
+ export function __wbg_crypto_86f2631e91b51511(arg0) {
701
701
  const ret = getObject(arg0).crypto;
702
702
  return addHeapObject(ret);
703
703
  };
@@ -727,7 +727,7 @@ export function __wbg_getClientExtensionResults_8668622b21a5eef7(arg0) {
727
727
  return addHeapObject(ret);
728
728
  };
729
729
 
730
- export function __wbg_getRandomValues_b8f5dbd5f3995a9e() { return handleError(function (arg0, arg1) {
730
+ export function __wbg_getRandomValues_b3f15fcbfabb0f8b() { return handleError(function (arg0, arg1) {
731
731
  getObject(arg0).getRandomValues(getObject(arg1));
732
732
  }, arguments) };
733
733
 
@@ -840,7 +840,7 @@ export function __wbg_log_1d990106d99dacb7(arg0) {
840
840
  console.log(getObject(arg0));
841
841
  };
842
842
 
843
- export function __wbg_msCrypto_a61aeb35a24c1329(arg0) {
843
+ export function __wbg_msCrypto_d562bbe83e0d4b91(arg0) {
844
844
  const ret = getObject(arg0).msCrypto;
845
845
  return addHeapObject(ret);
846
846
  };
@@ -892,7 +892,7 @@ export function __wbg_new_ff12d2b041fb48f1(arg0, arg1) {
892
892
  const a = state0.a;
893
893
  state0.a = 0;
894
894
  try {
895
- return __wasm_bindgen_func_elem_5804(a, state0.b, arg0, arg1);
895
+ return __wasm_bindgen_func_elem_5798(a, state0.b, arg0, arg1);
896
896
  } finally {
897
897
  state0.a = a;
898
898
  }
@@ -934,7 +934,7 @@ export function __wbg_next_3cfe5c0fe2a4cc53() { return handleError(function (arg
934
934
  return addHeapObject(ret);
935
935
  }, arguments) };
936
936
 
937
- export function __wbg_node_905d3e251edff8a2(arg0) {
937
+ export function __wbg_node_e1f24f89a7336c2e(arg0) {
938
938
  const ret = getObject(arg0).node;
939
939
  return addHeapObject(ret);
940
940
  };
@@ -965,7 +965,7 @@ export function __wbg_parse_7ff95c018af680b3(arg0, arg1) {
965
965
  }
966
966
  };
967
967
 
968
- export function __wbg_process_dc0fbacc7c1c06f7(arg0) {
968
+ export function __wbg_process_3975fd6c72f520aa(arg0) {
969
969
  const ret = getObject(arg0).process;
970
970
  return addHeapObject(ret);
971
971
  };
@@ -988,11 +988,11 @@ export function __wbg_queueMicrotask_fca69f5bfad613a5(arg0) {
988
988
  queueMicrotask(getObject(arg0));
989
989
  };
990
990
 
991
- export function __wbg_randomFillSync_ac0988aba3254290() { return handleError(function (arg0, arg1) {
991
+ export function __wbg_randomFillSync_f8c153b79f285817() { return handleError(function (arg0, arg1) {
992
992
  getObject(arg0).randomFillSync(takeObject(arg1));
993
993
  }, arguments) };
994
994
 
995
- export function __wbg_require_60cc747a6bc5215a() { return handleError(function () {
995
+ export function __wbg_require_b74f47fc2d022fd6() { return handleError(function () {
996
996
  const ret = module.require;
997
997
  return addHeapObject(ret);
998
998
  }, arguments) };
@@ -1146,7 +1146,7 @@ export function __wbg_value_57b7b035e117f7ee(arg0) {
1146
1146
  return addHeapObject(ret);
1147
1147
  };
1148
1148
 
1149
- export function __wbg_versions_c01dfd4722a88165(arg0) {
1149
+ export function __wbg_versions_4e31226f5e8dc909(arg0) {
1150
1150
  const ret = getObject(arg0).versions;
1151
1151
  return addHeapObject(ret);
1152
1152
  };
@@ -1157,15 +1157,9 @@ export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
1157
1157
  return addHeapObject(ret);
1158
1158
  };
1159
1159
 
1160
- export function __wbindgen_cast_821aeed1a5f992b8(arg0, arg1) {
1161
- // Cast intrinsic for `Closure(Closure { dtor_idx: 496, function: Function { arguments: [Externref], shim_idx: 497, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1162
- const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_4005, __wasm_bindgen_func_elem_4020);
1163
- return addHeapObject(ret);
1164
- };
1165
-
1166
- export function __wbindgen_cast_b35af37582c65a40(arg0, arg1) {
1167
- // Cast intrinsic for `Closure(Closure { dtor_idx: 461, function: Function { arguments: [], shim_idx: 462, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1168
- const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_3866, __wasm_bindgen_func_elem_3875);
1160
+ export function __wbindgen_cast_9db57a00ad35864d(arg0, arg1) {
1161
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 459, function: Function { arguments: [], shim_idx: 460, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1162
+ const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_3859, __wasm_bindgen_func_elem_3868);
1169
1163
  return addHeapObject(ret);
1170
1164
  };
1171
1165
 
@@ -1175,6 +1169,12 @@ export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
1175
1169
  return addHeapObject(ret);
1176
1170
  };
1177
1171
 
1172
+ export function __wbindgen_cast_cc3b8fd244091a64(arg0, arg1) {
1173
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 494, function: Function { arguments: [Externref], shim_idx: 495, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1174
+ const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_3998, __wasm_bindgen_func_elem_4013);
1175
+ return addHeapObject(ret);
1176
+ };
1177
+
1178
1178
  export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
1179
1179
  // Cast intrinsic for `F64 -> Externref`.
1180
1180
  const ret = arg0;
Binary file