@croct/plug 0.10.0 → 0.10.1

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/fetch.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import { JsonObject } from '@croct/sdk/json';
2
- import { NullableJsonObject } from './sdk/json';
1
+ import { NullableJsonObject, JsonObject } from './sdk/json';
3
2
  export interface SlotMap {
4
3
  }
5
4
  export declare type FetchOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@croct/plug",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "A fully-featured devkit for building natively personalized applications.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -33,7 +33,8 @@
33
33
  "bundle": "rollup -c"
34
34
  },
35
35
  "dependencies": {
36
- "@croct/sdk": "^0.8.0",
36
+ "@croct/json": "^1.1.0",
37
+ "@croct/sdk": "^0.9.1",
37
38
  "tslib": "^2.2.0"
38
39
  },
39
40
  "devDependencies": {
package/sdk/json.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { JsonObject } from '@croct/sdk/json';
2
- export * from '@croct/sdk/json';
1
+ import { JsonObject } from '@croct/json';
2
+ export * from '@croct/json/mutable';
3
3
  export declare type NullableJsonObject = JsonObject | null;
package/sdk/json.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("@croct/sdk/json"), exports);
4
+ tslib_1.__exportStar(require("@croct/json/mutable"), exports);