🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

react-native-appwrite

Package Overview
Dependencies
Maintainers
3
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-appwrite - npm Package Compare versions

Comparing version
0.24.0
to
0.24.1
+4
-0
CHANGELOG.md
# Change log
## 0.24.1
* Fix very large double values (for example 1.7976931348623157e+308) from being expanded into giant integer literals.
## 0.24.0

@@ -4,0 +8,0 @@

+1
-1

@@ -5,3 +5,3 @@ {

"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
"version": "0.24.0",
"version": "0.24.1",
"license": "BSD-3-Clause",

@@ -8,0 +8,0 @@ "main": "dist/cjs/sdk.js",

@@ -11,2 +11,4 @@ import { Models } from './models';

const MIN_SAFE = BigInt(Number.MIN_SAFE_INTEGER);
const MAX_INT64 = BigInt('9223372036854775807');
const MIN_INT64 = BigInt('-9223372036854775808');

@@ -30,3 +32,6 @@ function isBigNumber(value: any): boolean {

}
return bi;
if (bi >= MIN_INT64 && bi <= MAX_INT64) {
return bi;
}
return value.toNumber();
}

@@ -158,3 +163,3 @@ return value.toNumber();

'x-sdk-language': 'reactnative',
'x-sdk-version': '0.24.0',
'x-sdk-version': '0.24.1',
'X-Appwrite-Response-Format': '1.8.0',

@@ -161,0 +166,0 @@ };

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display