Socket
Socket
Sign inDemoInstall

kinvey-html5-sdk

Package Overview
Dependencies
Maintainers
2
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kinvey-html5-sdk - npm Package Compare versions

Comparing version 3.13.0-next.7 to 3.13.0-next.8

.editorconfig

62

package.json

@@ -1,1 +0,61 @@

{"name":"kinvey-html5-sdk","description":"Kinvey JavaScript SDK for HTML5 applications.","version":"3.13.0-next.7","license":"Apache-2.0","homepage":"https://github.com/Kinvey/js-sdk/tree/master/packages/html5-sdk","repository":{"type":"git","url":"https://github.com/Kinvey/js-sdk.git"},"bugs":{"url":"https://github.com/Kinvey/js-sdk/issues"},"author":{"name":"Thomas Conner","email":"thomas.conner@progress.com"},"keywords":["Kinvey","JavaScript","HTML5"],"main":"src/publicApi.js","dependencies":{"kinvey-js-sdk":"3.13.0-next.7"},"peerDependencies":{"axios":"~0.18.0","events":"~3.0.0","lodash":"~4.17.11"}}
{
"name": "kinvey-html5-sdk",
"description": "Kinvey JavaScript SDK for HTML5 applications.",
"version": "3.13.0-next.8",
"license": "Apache-2.0",
"homepage": "https://github.com/Kinvey/js-sdk/tree/master/packages/html5-sdk",
"repository": {
"type": "git",
"url": "https://github.com/Kinvey/js-sdk.git"
},
"bugs": {
"url": "https://github.com/Kinvey/js-sdk/issues"
},
"author": {
"name": "Thomas Conner",
"email": "thomas.conner@progress.com"
},
"keywords": [
"Kinvey",
"JavaScript",
"HTML5"
],
"main": "src/publicApi.js",
"scripts": {
"build": "tsc",
"prebundle": "npm run build",
"bundle": "webpack"
},
"dependencies": {
"kinvey-js-sdk": "^3.13.0-next.8"
},
"peerDependencies": {
"axios": "~0.18.0",
"events": "~3.0.0",
"lodash": "~4.17.11"
},
"devDependencies": {
"@types/events": "~3.0.0",
"@types/lodash": "~4.14.123",
"@types/node": "~11.11.6",
"axios": "~0.18.0",
"clean-webpack-plugin": "~2.0.1",
"del-cli": "~1.1.0",
"events": "~3.0.0",
"fs-extra": "~7.0.1",
"js-base64": "~2.5.1",
"lodash": "~4.17.11",
"loglevel": "~1.6.1",
"loglevel-plugin-prefix": "~0.8.4",
"p-queue": "~4.0.0",
"pubnub": "git+https://github.com/thomasconner/javascript.git#develop",
"rxjs": "~6.4.0",
"sift": "~7.0.1",
"tslib": "~1.9.3",
"typescript": "~3.3.3",
"url": "~0.11.0",
"url-join": "~4.0.0",
"webpack": "~4.29.6",
"webpack-cli": "^3.3.0"
}
}

37

src/publicApi.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ping_1 = require("kinvey-js-sdk/lib/src/ping");
exports.ping = ping_1.ping;
var acl_1 = require("kinvey-js-sdk/lib/src/acl");
exports.Acl = acl_1.Acl;
var aggregation_1 = require("kinvey-js-sdk/lib/src/aggregation");
exports.Aggregation = aggregation_1.Aggregation;
var datastore_1 = require("kinvey-js-sdk/lib/src/datastore");
exports.DataStoreType = datastore_1.DataStoreType;
var endpoint_1 = require("kinvey-js-sdk/lib/src/endpoint");
var Files = require("kinvey-js-sdk/lib/src/files");
exports.Files = Files;
var kmd_1 = require("kinvey-js-sdk/lib/src/kmd");
exports.Kmd = kmd_1.Kmd;
var query_1 = require("kinvey-js-sdk/lib/src/query");
exports.Query = query_1.Query;
var user_1 = require("kinvey-js-sdk/lib/src/user");
exports.User = user_1.User;
var headers_1 = require("kinvey-js-sdk/lib/src/http/headers");
exports.getAppVersion = headers_1.getAppVersion;
exports.setAppVersion = headers_1.setAppVersion;
var kinvey_js_sdk_1 = require("kinvey-js-sdk");
exports.getAppVersion = kinvey_js_sdk_1.getAppVersion;
exports.setAppVersion = kinvey_js_sdk_1.setAppVersion;
exports.ping = kinvey_js_sdk_1.ping;
exports.Acl = kinvey_js_sdk_1.Acl;
exports.Aggregation = kinvey_js_sdk_1.Aggregation;
exports.DataStoreType = kinvey_js_sdk_1.DataStoreType;
exports.Files = kinvey_js_sdk_1.Files;
exports.Kmd = kinvey_js_sdk_1.Kmd;
exports.Query = kinvey_js_sdk_1.Query;
exports.User = kinvey_js_sdk_1.User;
var init_1 = require("./init");

@@ -28,8 +19,8 @@ exports.init = init_1.init;

exports.StorageProvider = storage_1.StorageProvider;
var DataStore = { collection: datastore_1.collection };
var DataStore = { collection: kinvey_js_sdk_1.collection };
exports.DataStore = DataStore;
var CustomEndpoint = { execute: endpoint_1.endpoint };
var CustomEndpoint = { execute: kinvey_js_sdk_1.endpoint };
exports.CustomEndpoint = CustomEndpoint;
var AuthorizationGrant = user_1.User.AuthorizationGrant;
var AuthorizationGrant = kinvey_js_sdk_1.User.AuthorizationGrant;
exports.AuthorizationGrant = AuthorizationGrant;
//# sourceMappingURL=publicApi.js.map

@@ -1,8 +0,7 @@

import { Entity } from "kinvey-js-sdk/lib/src/storage";
export declare function find(dbName: string, objectStoreName: string): Promise<Entity[]>;
export declare function find(dbName: string, objectStoreName: string): Promise<any[]>;
export declare function count(dbName: string, objectStoreName: string): Promise<number>;
export declare function findById(dbName: string, objectStoreName: string, id: string): Promise<{}>;
export declare function save(dbName: string, objectStoreName: string, docs?: any): Promise<Entity[]>;
export declare function save(dbName: string, objectStoreName: string, docs?: any): Promise<any[]>;
export declare function removeById(dbName: string, objectStoreName: string, id: string): Promise<number>;
export declare function clear(dbName: string, objectStoreName: string): Promise<any>;
export declare function clearDatabase(dbName: string): Promise<{}>;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc