New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

apical-store

Package Overview
Dependencies
Maintainers
0
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apical-store - npm Package Compare versions

Comparing version 0.0.74 to 0.0.75

9

dist/bundle.js

@@ -816,2 +816,5 @@ (function (global, factory) {

this.$$decode = (x) => x;
/**
* List of all items in the store (including deleted items) However, the list is not observable
*/
this.copy = this.$$observableObject.copy;

@@ -1114,8 +1117,2 @@ this.new = this.$$model.new;

}
/**
* List of all items in the store (including deleted items)
*/
get all() {
return this.$$observableObject.target;
}
getByID(id) {

@@ -1122,0 +1119,0 @@ return this.$$observableObject.target.find((x) => x.id === id);

@@ -90,5 +90,4 @@ import { LocalPersistence } from "./persistence/local";

/**
* List of all items in the store (including deleted items)
* List of all items in the store (including deleted items) However, the list is not observable
*/
get all(): import("./observable").observed<T[]>;
copy: T[];

@@ -95,0 +94,0 @@ getByID(id: string): T | undefined;

@@ -27,2 +27,5 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

this.$$decode = (x) => x;
/**
* List of all items in the store (including deleted items) However, the list is not observable
*/
this.copy = this.$$observableObject.copy;

@@ -325,8 +328,2 @@ this.new = this.$$model.new;

}
/**
* List of all items in the store (including deleted items)
*/
get all() {
return this.$$observableObject.target;
}
getByID(id) {

@@ -333,0 +330,0 @@ return this.$$observableObject.target.find((x) => x.id === id);

{
"name": "apical-store",
"version": "0.0.74",
"version": "0.0.75",
"description": "Mobx-Syncable-IndexedDB",

@@ -13,3 +13,3 @@ "main": "dist/bundle.js",

},
"author": "elselawi",
"author": "alselawi",
"license": "MIT",

@@ -16,0 +16,0 @@ "devDependencies": {

@@ -372,8 +372,4 @@ import { Change, Observable } from "./observable";

/**
* List of all items in the store (including deleted items)
* List of all items in the store (including deleted items) However, the list is not observable
*/
get all() {
return this.$$observableObject.target;
}
copy = this.$$observableObject.copy;

@@ -380,0 +376,0 @@

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