cloudinary-react-native
Advanced tools
Comparing version
@@ -22,3 +22,3 @@ "use strict"; | ||
cloudName: apiConfig.cloudName, | ||
resourceType: _apiConfig.defaultResourceType, | ||
resourceType: options["resource_type"] != null ? options["resource_type"] : _apiConfig.defaultResourceType, | ||
action: action | ||
@@ -25,0 +25,0 @@ }); |
@@ -14,3 +14,3 @@ "use strict"; | ||
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } | ||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } | ||
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } | ||
const entries = require('./entries'); | ||
@@ -17,0 +17,0 @@ const toArray = require('./toArray'); |
@@ -13,3 +13,3 @@ "use strict"; | ||
} catch { | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
} | ||
@@ -21,15 +21,36 @@ }; | ||
if (SDKVersionPackageJson && SDKVersionPackageJson.version) { | ||
//return SDKVersionPackageJson.version | ||
return; | ||
return SDKVersionPackageJson.version; | ||
} | ||
} catch { | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
} | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
}; | ||
const getOSType = () => { | ||
switch (_reactNative.Platform.OS) { | ||
case 'android': | ||
return 'A'; | ||
case 'ios': | ||
return 'B'; | ||
default: | ||
return 'Z'; | ||
} | ||
}; | ||
const getOSVersion = () => { | ||
switch (_reactNative.Platform.OS) { | ||
case 'android': | ||
return _reactNative.Platform.Version ? _reactNative.Platform.Version.toString() : 'AA'; | ||
case 'ios': | ||
return _reactNative.Platform.Version ? _reactNative.Platform.Version.toString() : 'AA'; | ||
default: | ||
return 'AA'; | ||
} | ||
}; | ||
const SDKAnalyticsConstants = exports.SDKAnalyticsConstants = { | ||
sdkSemver: getSDKVersion(), | ||
techVersion: getReactNativeVersion(), | ||
sdkCode: 'P' | ||
sdkCode: 'P', | ||
osType: getOSType(), | ||
osVersion: getOSVersion() | ||
}; | ||
//# sourceMappingURL=SDKAnalyticsConstants.js.map |
@@ -15,3 +15,3 @@ import { APIConfig, apiVersion, defaultResourceType } from '../config/api-config'; | ||
cloudName: apiConfig.cloudName, | ||
resourceType: defaultResourceType, | ||
resourceType: options["resource_type"] != null ? options["resource_type"] : defaultResourceType, | ||
action: action | ||
@@ -18,0 +18,0 @@ }); |
@@ -7,3 +7,3 @@ import { Platform } from 'react-native'; | ||
} catch { | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
} | ||
@@ -15,15 +15,36 @@ }; | ||
if (SDKVersionPackageJson && SDKVersionPackageJson.version) { | ||
//return SDKVersionPackageJson.version | ||
return; | ||
return SDKVersionPackageJson.version; | ||
} | ||
} catch { | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
} | ||
return "0.0.0"; | ||
return '0.0.0'; | ||
}; | ||
const getOSType = () => { | ||
switch (Platform.OS) { | ||
case 'android': | ||
return 'A'; | ||
case 'ios': | ||
return 'B'; | ||
default: | ||
return 'Z'; | ||
} | ||
}; | ||
const getOSVersion = () => { | ||
switch (Platform.OS) { | ||
case 'android': | ||
return Platform.Version ? Platform.Version.toString() : 'AA'; | ||
case 'ios': | ||
return Platform.Version ? Platform.Version.toString() : 'AA'; | ||
default: | ||
return 'AA'; | ||
} | ||
}; | ||
export const SDKAnalyticsConstants = { | ||
sdkSemver: getSDKVersion(), | ||
techVersion: getReactNativeVersion(), | ||
sdkCode: 'P' | ||
sdkCode: 'P', | ||
osType: getOSType(), | ||
osVersion: getOSVersion() | ||
}; | ||
//# sourceMappingURL=SDKAnalyticsConstants.js.map |
export const __esModule: boolean; | ||
export namespace SDKAnalyticsConstants { | ||
const sdkSemver: string | undefined; | ||
const sdkSemver: any; | ||
const techVersion: string; | ||
const sdkCode: string; | ||
const osType: string; | ||
const osVersion: string; | ||
} | ||
//# sourceMappingURL=SDKAnalyticsConstants.d.ts.map |
export namespace SDKAnalyticsConstants { | ||
const sdkSemver: string | undefined; | ||
const sdkSemver: any; | ||
const techVersion: string; | ||
const sdkCode: string; | ||
const osType: string; | ||
const osVersion: string; | ||
} | ||
//# sourceMappingURL=SDKAnalyticsConstants.d.ts.map |
export declare const SDKAnalyticsConstants: { | ||
sdkSemver: string | undefined; | ||
sdkSemver: any; | ||
techVersion: string; | ||
sdkCode: string; | ||
osType: string; | ||
osVersion: string; | ||
}; | ||
//# sourceMappingURL=SDKAnalyticsConstants.d.ts.map |
{ | ||
"name": "cloudinary-react-native", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline. Upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your websiteâs graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Kotlin applications.", | ||
@@ -5,0 +5,0 @@ "main": "lib/commonjs/index", |
@@ -26,3 +26,3 @@ Cloudinary React Native SDK | ||
|-------------|----------------------| | ||
| 0.3.0 | > 0.6 | | ||
| 0.3.1 | > 0.6 | | ||
@@ -29,0 +29,0 @@ ## Installation |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
166059
1.66%2059
2.39%197
-1.01%