@wix/essentials 0.1.0 → 0.1.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/build/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as auth from './auth.js';
|
|
2
|
-
import * as
|
|
3
|
-
export { auth,
|
|
2
|
+
import * as httpClient from './http-client.js';
|
|
3
|
+
export { auth, httpClient };
|
package/build/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as auth from './auth.js';
|
|
2
|
-
import * as
|
|
3
|
-
export { auth,
|
|
2
|
+
import * as httpClient from './http-client.js';
|
|
3
|
+
export { auth, httpClient };
|
package/cjs/build/index.js
CHANGED
|
@@ -23,8 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.httpClient = exports.auth = void 0;
|
|
27
27
|
const auth = __importStar(require("./auth.js"));
|
|
28
28
|
exports.auth = auth;
|
|
29
|
-
const
|
|
30
|
-
exports.
|
|
29
|
+
const httpClient = __importStar(require("./http-client.js"));
|
|
30
|
+
exports.httpClient = httpClient;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/essentials",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"main": "cjs/build/index.js",
|
|
6
6
|
"module": "build/index.mjs",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
]
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"falconPackageHash": "
|
|
71
|
+
"falconPackageHash": "58dea21fdc166b213a587934bb86c0579eca6f41c85ef4ba8df56378"
|
|
72
72
|
}
|
|
File without changes
|
|
File without changes
|