@blaxel/core 0.2.0-dev1 → 0.2.0-dev3

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.
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.authentication = authentication;
7
+ /* eslint-disable */
7
8
  const path_1 = require("path");
8
9
  const yaml_1 = __importDefault(require("yaml"));
9
10
  const env_js_1 = require("../common/env.js");
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.findFromCache = findFromCache;
7
+ /* eslint-disable */
7
8
  const yaml_1 = __importDefault(require("yaml"));
8
9
  const node_js_1 = require("../common/node.js");
9
10
  const cache = new Map();
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.env = void 0;
7
+ /* eslint-disable */
7
8
  const toml_1 = __importDefault(require("toml"));
8
9
  const node_js_1 = require("./node.js");
9
10
  const secretEnv = {};
@@ -1,3 +1,3 @@
1
- declare let fs: any;
2
- declare let os: any;
1
+ declare let fs: typeof import("fs") | null;
2
+ declare let os: typeof import("os") | null;
3
3
  export { fs, os };
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.os = exports.fs = void 0;
4
+ /* eslint-disable */
4
5
  const isNode = typeof process !== "undefined" &&
5
6
  process.versions != null &&
6
7
  process.versions.node != null;
@@ -9,6 +10,6 @@ exports.fs = fs;
9
10
  let os = null;
10
11
  exports.os = os;
11
12
  if (isNode) {
12
- exports.fs = fs = require("fs");
13
- exports.os = os = require("os");
13
+ exports.fs = fs = eval("require")("fs");
14
+ exports.os = os = eval("require")("os");
14
15
  }
@@ -1,4 +1,3 @@
1
1
  "use strict";
2
- /* eslint-disable */
3
2
  // This file is auto-generated by @hey-api/openapi-ts
4
3
  Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/core",
3
- "version": "0.2.0-dev1",
3
+ "version": "0.2.0-dev3",
4
4
  "description": "Blaxel Core SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",