trainfabric 0.1.18 → 0.1.19
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.cjs +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7701,6 +7701,7 @@ var runDefaultsUpdateSchema = external_exports.object({
|
|
|
7701
7701
|
var runtimeDependencySchema = external_exports.object({
|
|
7702
7702
|
name: external_exports.string().min(1),
|
|
7703
7703
|
version: external_exports.string().min(1).optional(),
|
|
7704
|
+
constraint: external_exports.string().min(1).optional(),
|
|
7704
7705
|
source: external_exports.enum(["training_yaml", "pyproject", "requirements", "environment_yml", "dockerfile"]),
|
|
7705
7706
|
required: external_exports.boolean()
|
|
7706
7707
|
});
|
|
@@ -8941,7 +8942,7 @@ function buildComputeSpec(options) {
|
|
|
8941
8942
|
|
|
8942
8943
|
// src/index.ts
|
|
8943
8944
|
var DEFAULT_TRAINFABRIC_API_URL2 = "https://api.trainfabric.com";
|
|
8944
|
-
var CLI_VERSION = "0.1.
|
|
8945
|
+
var CLI_VERSION = "0.1.19";
|
|
8945
8946
|
var CONFIG_DIR = import_node_path3.default.join(import_node_os2.default.homedir(), ".trainfabric");
|
|
8946
8947
|
var CONFIG_PATH = import_node_path3.default.join(CONFIG_DIR, "config.json");
|
|
8947
8948
|
var FALLBACK_SECRET_PATH = import_node_path3.default.join(CONFIG_DIR, "session.enc");
|