@roeehrl/tinode-sdk 0.25.1-sqlite.2 → 0.25.1-sqlite.4
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 +2 -1
- package/types/index.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roeehrl/tinode-sdk",
|
|
3
3
|
"description": "Tinode SDK fork with Storage interface for SQLite persistence in React Native",
|
|
4
|
-
"version": "0.25.1-sqlite.
|
|
4
|
+
"version": "0.25.1-sqlite.4",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"format": "js-beautify -r src/*.js",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"react-native": "./src/index.native.js",
|
|
46
46
|
"exports": {
|
|
47
47
|
".": {
|
|
48
|
+
"types": "./types/index.d.ts",
|
|
48
49
|
"react-native": "./src/index.native.js",
|
|
49
50
|
"browser": "./umd/tinode.prod.js",
|
|
50
51
|
"import": "./src/index.js",
|
package/types/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* @see https://github.com/tinode/tinode-js
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
declare module 'tinode-sdk' {
|
|
14
|
+
declare module '@roeehrl/tinode-sdk' {
|
|
15
15
|
// ==========================================================================
|
|
16
16
|
// Configuration Types
|
|
17
17
|
// ==========================================================================
|
package/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = "0.25.1-sqlite.
|
|
1
|
+
export const PACKAGE_VERSION = "0.25.1-sqlite.4";
|