@taybart/corvid 0.1.13 → 0.1.15
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/dist/index.js +1 -1
- package/dist/ls.js +1 -1
- package/dist/network.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -706,7 +706,7 @@ function set(key, value, broadcast = false) {
|
|
|
706
706
|
});
|
|
707
707
|
document.dispatchEvent(event);
|
|
708
708
|
}
|
|
709
|
-
localStorage.setItem(key,
|
|
709
|
+
localStorage.setItem(key, value);
|
|
710
710
|
}
|
|
711
711
|
function setObj(update, prefix, broadcast = false) {
|
|
712
712
|
const flatten = (ob)=>{
|
package/dist/ls.js
CHANGED
|
@@ -276,7 +276,7 @@ function set(key, value, broadcast = false) {
|
|
|
276
276
|
});
|
|
277
277
|
document.dispatchEvent(event);
|
|
278
278
|
}
|
|
279
|
-
localStorage.setItem(key,
|
|
279
|
+
localStorage.setItem(key, value);
|
|
280
280
|
}
|
|
281
281
|
function setObj(update, prefix, broadcast = false) {
|
|
282
282
|
const flatten = (ob)=>{
|
package/dist/network.d.ts
CHANGED
|
@@ -63,11 +63,13 @@ export declare class request {
|
|
|
63
63
|
do({ path, params: passedParams, override, }?: {
|
|
64
64
|
path?: string;
|
|
65
65
|
params?: Object;
|
|
66
|
+
method?: string;
|
|
66
67
|
override?: {
|
|
67
|
-
|
|
68
|
+
method?: string;
|
|
68
69
|
params?: Object;
|
|
69
70
|
headers?: Object;
|
|
70
71
|
body?: Object;
|
|
72
|
+
expect?: number;
|
|
71
73
|
};
|
|
72
74
|
}): Promise<any>;
|
|
73
75
|
}
|