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/src/index.web.js
CHANGED
|
@@ -1,40 +1,132 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
var _exportNames = {
|
|
8
|
+
uniffiInitAsync: true
|
|
9
|
+
};
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
exports.uniffiInitAsync = uniffiInitAsync;
|
|
12
|
+
var matrix_sdk = _interopRequireWildcard(require("./generated-compat/matrix_sdk"));
|
|
13
|
+
Object.keys(matrix_sdk).forEach(function (key) {
|
|
14
|
+
if (key === "default" || key === "__esModule") return;
|
|
15
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
16
|
+
if (key in exports && exports[key] === matrix_sdk[key]) return;
|
|
17
|
+
Object.defineProperty(exports, key, {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function get() {
|
|
20
|
+
return matrix_sdk[key];
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
var matrix_sdk_base = _interopRequireWildcard(require("./generated-compat/matrix_sdk_base"));
|
|
25
|
+
Object.keys(matrix_sdk_base).forEach(function (key) {
|
|
26
|
+
if (key === "default" || key === "__esModule") return;
|
|
27
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
28
|
+
if (key in exports && exports[key] === matrix_sdk_base[key]) return;
|
|
29
|
+
Object.defineProperty(exports, key, {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function get() {
|
|
32
|
+
return matrix_sdk_base[key];
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
var matrix_sdk_common = _interopRequireWildcard(require("./generated-compat/matrix_sdk_common"));
|
|
37
|
+
Object.keys(matrix_sdk_common).forEach(function (key) {
|
|
38
|
+
if (key === "default" || key === "__esModule") return;
|
|
39
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
40
|
+
if (key in exports && exports[key] === matrix_sdk_common[key]) return;
|
|
41
|
+
Object.defineProperty(exports, key, {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function get() {
|
|
44
|
+
return matrix_sdk_common[key];
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
var matrix_sdk_crypto = _interopRequireWildcard(require("./generated-compat/matrix_sdk_crypto"));
|
|
49
|
+
Object.keys(matrix_sdk_crypto).forEach(function (key) {
|
|
50
|
+
if (key === "default" || key === "__esModule") return;
|
|
51
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
52
|
+
if (key in exports && exports[key] === matrix_sdk_crypto[key]) return;
|
|
53
|
+
Object.defineProperty(exports, key, {
|
|
54
|
+
enumerable: true,
|
|
55
|
+
get: function get() {
|
|
56
|
+
return matrix_sdk_crypto[key];
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
var matrix_sdk_ffi = _interopRequireWildcard(require("./generated-compat/matrix_sdk_ffi"));
|
|
61
|
+
Object.keys(matrix_sdk_ffi).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
64
|
+
if (key in exports && exports[key] === matrix_sdk_ffi[key]) return;
|
|
65
|
+
Object.defineProperty(exports, key, {
|
|
66
|
+
enumerable: true,
|
|
67
|
+
get: function get() {
|
|
68
|
+
return matrix_sdk_ffi[key];
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
var matrix_sdk_ui = _interopRequireWildcard(require("./generated-compat/matrix_sdk_ui"));
|
|
73
|
+
Object.keys(matrix_sdk_ui).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
76
|
+
if (key in exports && exports[key] === matrix_sdk_ui[key]) return;
|
|
77
|
+
Object.defineProperty(exports, key, {
|
|
78
|
+
enumerable: true,
|
|
79
|
+
get: function get() {
|
|
80
|
+
return matrix_sdk_ui[key];
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
var _index = _interopRequireDefault(require("./generated-compat/wasm-bindgen/index.js"));
|
|
85
|
+
var _index_bg = _interopRequireDefault(require("./generated-compat/wasm-bindgen/index_bg.wasm"));
|
|
86
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
87
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
88
|
+
function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); }
|
|
89
|
+
function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); }
|
|
90
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
|
|
91
|
+
function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; } // Generated by uniffi-bindgen-react-native
|
|
2
92
|
// Export the generated bindings to the app.
|
|
3
|
-
export * from './generated-compat/matrix_sdk';
|
|
4
|
-
export * from './generated-compat/matrix_sdk_base';
|
|
5
|
-
export * from './generated-compat/matrix_sdk_common';
|
|
6
|
-
export * from './generated-compat/matrix_sdk_crypto';
|
|
7
|
-
export * from './generated-compat/matrix_sdk_ffi';
|
|
8
|
-
export * from './generated-compat/matrix_sdk_ui';
|
|
9
93
|
// Now import the bindings so we can:
|
|
10
94
|
// - intialize them
|
|
11
95
|
// - export them as namespaced objects as the default export.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
96
|
+
function uniffiInitAsync() {
|
|
97
|
+
return _uniffiInitAsync.apply(this, arguments);
|
|
98
|
+
} // Export the crates as individually namespaced objects.
|
|
99
|
+
function _uniffiInitAsync() {
|
|
100
|
+
_uniffiInitAsync = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee() {
|
|
101
|
+
return _regenerator().w(function (_context) {
|
|
102
|
+
while (1) switch (_context.n) {
|
|
103
|
+
case 0:
|
|
104
|
+
_context.n = 1;
|
|
105
|
+
return (0, _index["default"])({
|
|
106
|
+
module_or_path: _index_bg["default"]
|
|
107
|
+
});
|
|
108
|
+
case 1:
|
|
109
|
+
// Initialize the generated bindings: mostly checksums, but also callbacks.
|
|
110
|
+
// - the boolean flag ensures this loads exactly once, even if the JS code
|
|
111
|
+
// is reloaded (e.g. during development with metro).
|
|
112
|
+
matrix_sdk["default"].initialize();
|
|
113
|
+
matrix_sdk_base["default"].initialize();
|
|
114
|
+
matrix_sdk_common["default"].initialize();
|
|
115
|
+
matrix_sdk_crypto["default"].initialize();
|
|
116
|
+
matrix_sdk_ffi["default"].initialize();
|
|
117
|
+
matrix_sdk_ui["default"].initialize();
|
|
118
|
+
case 2:
|
|
119
|
+
return _context.a(2);
|
|
120
|
+
}
|
|
121
|
+
}, _callee);
|
|
122
|
+
}));
|
|
123
|
+
return _uniffiInitAsync.apply(this, arguments);
|
|
31
124
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
matrix_sdk_ui,
|
|
125
|
+
var _default = exports["default"] = {
|
|
126
|
+
matrix_sdk: matrix_sdk,
|
|
127
|
+
matrix_sdk_base: matrix_sdk_base,
|
|
128
|
+
matrix_sdk_common: matrix_sdk_common,
|
|
129
|
+
matrix_sdk_crypto: matrix_sdk_crypto,
|
|
130
|
+
matrix_sdk_ffi: matrix_sdk_ffi,
|
|
131
|
+
matrix_sdk_ui: matrix_sdk_ui
|
|
40
132
|
};
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
var _exportNames = {
|
|
8
|
+
uniffiInitAsync: true
|
|
9
|
+
};
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
exports.uniffiInitAsync = uniffiInitAsync;
|
|
12
|
+
var matrix_sdk = _interopRequireWildcard(require("./generated/matrix_sdk"));
|
|
13
|
+
Object.keys(matrix_sdk).forEach(function (key) {
|
|
14
|
+
if (key === "default" || key === "__esModule") return;
|
|
15
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
16
|
+
if (key in exports && exports[key] === matrix_sdk[key]) return;
|
|
17
|
+
Object.defineProperty(exports, key, {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function get() {
|
|
20
|
+
return matrix_sdk[key];
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
var matrix_sdk_base = _interopRequireWildcard(require("./generated/matrix_sdk_base"));
|
|
25
|
+
Object.keys(matrix_sdk_base).forEach(function (key) {
|
|
26
|
+
if (key === "default" || key === "__esModule") return;
|
|
27
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
28
|
+
if (key in exports && exports[key] === matrix_sdk_base[key]) return;
|
|
29
|
+
Object.defineProperty(exports, key, {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function get() {
|
|
32
|
+
return matrix_sdk_base[key];
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
var matrix_sdk_common = _interopRequireWildcard(require("./generated/matrix_sdk_common"));
|
|
37
|
+
Object.keys(matrix_sdk_common).forEach(function (key) {
|
|
38
|
+
if (key === "default" || key === "__esModule") return;
|
|
39
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
40
|
+
if (key in exports && exports[key] === matrix_sdk_common[key]) return;
|
|
41
|
+
Object.defineProperty(exports, key, {
|
|
42
|
+
enumerable: true,
|
|
43
|
+
get: function get() {
|
|
44
|
+
return matrix_sdk_common[key];
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
var matrix_sdk_crypto = _interopRequireWildcard(require("./generated/matrix_sdk_crypto"));
|
|
49
|
+
Object.keys(matrix_sdk_crypto).forEach(function (key) {
|
|
50
|
+
if (key === "default" || key === "__esModule") return;
|
|
51
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
52
|
+
if (key in exports && exports[key] === matrix_sdk_crypto[key]) return;
|
|
53
|
+
Object.defineProperty(exports, key, {
|
|
54
|
+
enumerable: true,
|
|
55
|
+
get: function get() {
|
|
56
|
+
return matrix_sdk_crypto[key];
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
var matrix_sdk_ffi = _interopRequireWildcard(require("./generated/matrix_sdk_ffi"));
|
|
61
|
+
Object.keys(matrix_sdk_ffi).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
64
|
+
if (key in exports && exports[key] === matrix_sdk_ffi[key]) return;
|
|
65
|
+
Object.defineProperty(exports, key, {
|
|
66
|
+
enumerable: true,
|
|
67
|
+
get: function get() {
|
|
68
|
+
return matrix_sdk_ffi[key];
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
var matrix_sdk_ui = _interopRequireWildcard(require("./generated/matrix_sdk_ui"));
|
|
73
|
+
Object.keys(matrix_sdk_ui).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
76
|
+
if (key in exports && exports[key] === matrix_sdk_ui[key]) return;
|
|
77
|
+
Object.defineProperty(exports, key, {
|
|
78
|
+
enumerable: true,
|
|
79
|
+
get: function get() {
|
|
80
|
+
return matrix_sdk_ui[key];
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
var _index = _interopRequireDefault(require("./generated/wasm-bindgen/index.js"));
|
|
85
|
+
var _index_bg = _interopRequireDefault(require("./generated/wasm-bindgen/index_bg.wasm"));
|
|
86
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
87
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
88
|
+
function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); }
|
|
89
|
+
function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); }
|
|
90
|
+
function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
|
|
91
|
+
function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; } // Generated by uniffi-bindgen-react-native
|
|
92
|
+
// Export the generated bindings to the app.
|
|
93
|
+
// Now import the bindings so we can:
|
|
94
|
+
// - intialize them
|
|
95
|
+
// - export them as namespaced objects as the default export.
|
|
96
|
+
function uniffiInitAsync() {
|
|
97
|
+
return _uniffiInitAsync.apply(this, arguments);
|
|
98
|
+
} // Export the crates as individually namespaced objects.
|
|
99
|
+
function _uniffiInitAsync() {
|
|
100
|
+
_uniffiInitAsync = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee() {
|
|
101
|
+
return _regenerator().w(function (_context) {
|
|
102
|
+
while (1) switch (_context.n) {
|
|
103
|
+
case 0:
|
|
104
|
+
_context.n = 1;
|
|
105
|
+
return (0, _index["default"])({
|
|
106
|
+
module_or_path: _index_bg["default"]
|
|
107
|
+
});
|
|
108
|
+
case 1:
|
|
109
|
+
// Initialize the generated bindings: mostly checksums, but also callbacks.
|
|
110
|
+
// - the boolean flag ensures this loads exactly once, even if the JS code
|
|
111
|
+
// is reloaded (e.g. during development with metro).
|
|
112
|
+
matrix_sdk["default"].initialize();
|
|
113
|
+
matrix_sdk_base["default"].initialize();
|
|
114
|
+
matrix_sdk_common["default"].initialize();
|
|
115
|
+
matrix_sdk_crypto["default"].initialize();
|
|
116
|
+
matrix_sdk_ffi["default"].initialize();
|
|
117
|
+
matrix_sdk_ui["default"].initialize();
|
|
118
|
+
case 2:
|
|
119
|
+
return _context.a(2);
|
|
120
|
+
}
|
|
121
|
+
}, _callee);
|
|
122
|
+
}));
|
|
123
|
+
return _uniffiInitAsync.apply(this, arguments);
|
|
124
|
+
}
|
|
125
|
+
var _default = exports["default"] = {
|
|
126
|
+
matrix_sdk: matrix_sdk,
|
|
127
|
+
matrix_sdk_base: matrix_sdk_base,
|
|
128
|
+
matrix_sdk_common: matrix_sdk_common,
|
|
129
|
+
matrix_sdk_crypto: matrix_sdk_crypto,
|
|
130
|
+
matrix_sdk_ffi: matrix_sdk_ffi,
|
|
131
|
+
matrix_sdk_ui: matrix_sdk_ui
|
|
132
|
+
};
|
package/src/index.web.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// Generated by uniffi-bindgen-react-native
|
|
2
|
+
// Export the generated bindings to the app.
|
|
3
|
+
export * from './generated/matrix_sdk';
|
|
4
|
+
export * from './generated/matrix_sdk_base';
|
|
5
|
+
export * from './generated/matrix_sdk_common';
|
|
6
|
+
export * from './generated/matrix_sdk_crypto';
|
|
7
|
+
export * from './generated/matrix_sdk_ffi';
|
|
8
|
+
export * from './generated/matrix_sdk_ui';
|
|
9
|
+
|
|
10
|
+
// Now import the bindings so we can:
|
|
11
|
+
// - intialize them
|
|
12
|
+
// - export them as namespaced objects as the default export.
|
|
13
|
+
import * as matrix_sdk from './generated/matrix_sdk';
|
|
14
|
+
import * as matrix_sdk_base from './generated/matrix_sdk_base';
|
|
15
|
+
import * as matrix_sdk_common from './generated/matrix_sdk_common';
|
|
16
|
+
import * as matrix_sdk_crypto from './generated/matrix_sdk_crypto';
|
|
17
|
+
import * as matrix_sdk_ffi from './generated/matrix_sdk_ffi';
|
|
18
|
+
import * as matrix_sdk_ui from './generated/matrix_sdk_ui';
|
|
19
|
+
|
|
20
|
+
import initAsync from './generated/wasm-bindgen/index.js';
|
|
21
|
+
import wasmPath from './generated/wasm-bindgen/index_bg.wasm?url';
|
|
22
|
+
|
|
23
|
+
export async function uniffiInitAsync() {
|
|
24
|
+
await initAsync({ module_or_path: wasmPath })
|
|
25
|
+
|
|
26
|
+
// Initialize the generated bindings: mostly checksums, but also callbacks.
|
|
27
|
+
// - the boolean flag ensures this loads exactly once, even if the JS code
|
|
28
|
+
// is reloaded (e.g. during development with metro).
|
|
29
|
+
matrix_sdk.default.initialize();
|
|
30
|
+
matrix_sdk_base.default.initialize();
|
|
31
|
+
matrix_sdk_common.default.initialize();
|
|
32
|
+
matrix_sdk_crypto.default.initialize();
|
|
33
|
+
matrix_sdk_ffi.default.initialize();
|
|
34
|
+
matrix_sdk_ui.default.initialize();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Export the crates as individually namespaced objects.
|
|
38
|
+
export default {
|
|
39
|
+
matrix_sdk,
|
|
40
|
+
matrix_sdk_base,
|
|
41
|
+
matrix_sdk_common,
|
|
42
|
+
matrix_sdk_crypto,
|
|
43
|
+
matrix_sdk_ffi,
|
|
44
|
+
matrix_sdk_ui,
|
|
45
|
+
};
|
|
46
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// Generated by uniffi-bindgen-react-native
|
|
2
|
+
// Export the generated bindings to the app.
|
|
3
|
+
export * from './generated/matrix_sdk';
|
|
4
|
+
export * from './generated/matrix_sdk_base';
|
|
5
|
+
export * from './generated/matrix_sdk_common';
|
|
6
|
+
export * from './generated/matrix_sdk_crypto';
|
|
7
|
+
export * from './generated/matrix_sdk_ffi';
|
|
8
|
+
export * from './generated/matrix_sdk_ui';
|
|
9
|
+
|
|
10
|
+
// Now import the bindings so we can:
|
|
11
|
+
// - intialize them
|
|
12
|
+
// - export them as namespaced objects as the default export.
|
|
13
|
+
import * as matrix_sdk from './generated/matrix_sdk';
|
|
14
|
+
import * as matrix_sdk_base from './generated/matrix_sdk_base';
|
|
15
|
+
import * as matrix_sdk_common from './generated/matrix_sdk_common';
|
|
16
|
+
import * as matrix_sdk_crypto from './generated/matrix_sdk_crypto';
|
|
17
|
+
import * as matrix_sdk_ffi from './generated/matrix_sdk_ffi';
|
|
18
|
+
import * as matrix_sdk_ui from './generated/matrix_sdk_ui';
|
|
19
|
+
|
|
20
|
+
import initAsync from './generated/wasm-bindgen/index.js';
|
|
21
|
+
import wasmPath from './generated/wasm-bindgen/index_bg.wasm';
|
|
22
|
+
|
|
23
|
+
export async function uniffiInitAsync() {
|
|
24
|
+
await initAsync({ module_or_path: wasmPath })
|
|
25
|
+
|
|
26
|
+
// Initialize the generated bindings: mostly checksums, but also callbacks.
|
|
27
|
+
// - the boolean flag ensures this loads exactly once, even if the JS code
|
|
28
|
+
// is reloaded (e.g. during development with metro).
|
|
29
|
+
matrix_sdk.default.initialize();
|
|
30
|
+
matrix_sdk_base.default.initialize();
|
|
31
|
+
matrix_sdk_common.default.initialize();
|
|
32
|
+
matrix_sdk_crypto.default.initialize();
|
|
33
|
+
matrix_sdk_ffi.default.initialize();
|
|
34
|
+
matrix_sdk_ui.default.initialize();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Export the crates as individually namespaced objects.
|
|
38
|
+
export default {
|
|
39
|
+
matrix_sdk,
|
|
40
|
+
matrix_sdk_base,
|
|
41
|
+
matrix_sdk_common,
|
|
42
|
+
matrix_sdk_crypto,
|
|
43
|
+
matrix_sdk_ffi,
|
|
44
|
+
matrix_sdk_ui,
|
|
45
|
+
};
|
|
46
|
+
|