ffi-bindings 1.0.1 → 1.0.2
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 +15 -2
- package/src/generated/matrix_sdk.ts +1843 -0
- package/src/generated/matrix_sdk_base.ts +252 -0
- package/src/generated/matrix_sdk_common.ts +370 -0
- package/src/generated/matrix_sdk_crypto.ts +1280 -0
- package/src/generated/matrix_sdk_ffi.ts +65263 -0
- package/src/generated/matrix_sdk_ui.ts +816 -0
- package/src/generated/wasm-bindgen/index.d.ts +5455 -0
- package/src/generated/wasm-bindgen/index.js +14223 -0
- package/src/generated/wasm-bindgen/index_bg.wasm +0 -0
- package/src/generated/wasm-bindgen/index_bg.wasm.d.ts +2840 -0
- package/src/generated-compat/matrix_sdk.js +454 -395
- package/src/generated-compat/matrix_sdk_base.js +39 -34
- package/src/generated-compat/matrix_sdk_common.js +245 -35
- package/src/generated-compat/matrix_sdk_crypto.js +547 -128
- package/src/generated-compat/matrix_sdk_ffi.js +3057 -2696
- package/src/generated-compat/matrix_sdk_ui.js +580 -46
- package/src/generated-compat/wasm-bindgen/index.d.js +66 -0
- package/src/generated-compat/wasm-bindgen/index.d.ts +5455 -0
- package/src/generated-compat/wasm-bindgen/index.js +10572 -8359
- package/src/generated-compat/wasm-bindgen/index_bg.wasm +0 -0
- package/src/generated-compat/wasm-bindgen/index_bg.wasm.d.ts +2840 -0
- package/src/index.web.js +126 -34
- package/src/index.web.js.bak +132 -0
- package/src/index.web.ts +46 -0
- package/src/index.web.ts.bak +46 -0
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ffi-bindings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"ubrn:web:build:release": "PATH=$HOME/.cargo/bin:/bin:$PATH && ubrn build web --config ubrn.config.yaml --release",
|
|
6
|
+
"ubrn:web:build": "PATH=$HOME/.cargo/bin:/bin:$PATH && ubrn build web --config ubrn.config.yaml",
|
|
7
|
+
"ubrn:checkout": "PATH=$HOME/.cargo/bin:/bin:$PATH && ubrn checkout --config ubrn.config.yaml",
|
|
8
|
+
"ubrn:clean": "rm -Rf cpp/ src/generated/ src/index.web.ts*"
|
|
9
|
+
},
|
|
4
10
|
"main": "src/index.web.js",
|
|
5
11
|
"type": "module",
|
|
6
12
|
"description": "Generated bindings for the rust-sdk WASM + WASM",
|
|
@@ -19,6 +25,13 @@
|
|
|
19
25
|
"author": "gigiaj",
|
|
20
26
|
"license": "MIT",
|
|
21
27
|
"dependencies": {
|
|
22
|
-
"
|
|
28
|
+
"@babel/cli": "^7.28.6",
|
|
29
|
+
"@babel/core": "^7.29.0",
|
|
30
|
+
"@babel/plugin-transform-class-properties": "^7.28.6",
|
|
31
|
+
"@babel/plugin-transform-computed-properties": "^7.28.6",
|
|
32
|
+
"@babel/preset-env": "^7.29.2",
|
|
33
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
34
|
+
"babel-plugin-transform-rename-import": "^2.3.0",
|
|
35
|
+
"uniffi-bindgen-react-native": "git+https://github.com/jhugman/uniffi-bindgen-react-native#b7c8a4eba1b91e6aa9478e1d13be17cdae9432a6"
|
|
23
36
|
}
|
|
24
37
|
}
|