@ericsanchezok/synergy-sdk 1.2.17 → 1.2.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/gen/types.gen.d.ts +5 -38
- package/package.json +1 -8
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -1524,45 +1524,12 @@ export type Config = {
|
|
|
1524
1524
|
mcp_timeout?: number;
|
|
1525
1525
|
};
|
|
1526
1526
|
/**
|
|
1527
|
-
*
|
|
1527
|
+
* Per-plugin configuration namespaces. Keys are plugin IDs, values are plugin-specific config.
|
|
1528
1528
|
*/
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
enable?: boolean;
|
|
1534
|
-
/**
|
|
1535
|
-
* Default project name for task submission
|
|
1536
|
-
*/
|
|
1537
|
-
defaultProject?: string;
|
|
1538
|
-
/**
|
|
1539
|
-
* Default workspace name for task submission
|
|
1540
|
-
*/
|
|
1541
|
-
defaultWorkspace?: string;
|
|
1542
|
-
/**
|
|
1543
|
-
* Default compute group name
|
|
1544
|
-
*/
|
|
1545
|
-
defaultComputeGroup?: string;
|
|
1546
|
-
/**
|
|
1547
|
-
* Default Docker image for training tasks
|
|
1548
|
-
*/
|
|
1549
|
-
defaultImage?: string;
|
|
1550
|
-
/**
|
|
1551
|
-
* Default spec/quota ID for OpenAPI task submission (quota_id from a previous job detail)
|
|
1552
|
-
*/
|
|
1553
|
-
defaultSpecId?: string;
|
|
1554
|
-
/**
|
|
1555
|
-
* Default task priority (usually project max)
|
|
1556
|
-
*/
|
|
1557
|
-
defaultPriority?: number;
|
|
1558
|
-
/**
|
|
1559
|
-
* Default shared memory in MB (default: 1200)
|
|
1560
|
-
*/
|
|
1561
|
-
defaultShm?: number;
|
|
1562
|
-
/**
|
|
1563
|
-
* Command prefix prepended to every submit command. Typically conda init + cd to project code directory
|
|
1564
|
-
*/
|
|
1565
|
-
commandPrefix?: string;
|
|
1529
|
+
pluginConfig?: {
|
|
1530
|
+
[key: string]: {
|
|
1531
|
+
[key: string]: unknown;
|
|
1532
|
+
};
|
|
1566
1533
|
};
|
|
1567
1534
|
/**
|
|
1568
1535
|
* Custom category configurations for background tasks. Categories define model and prompt presets.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@ericsanchezok/synergy-sdk",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.19",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -29,13 +29,6 @@
|
|
|
29
29
|
"files": [
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@hey-api/openapi-ts": "0.88.1",
|
|
34
|
-
"@tsconfig/node22": "22.0.2",
|
|
35
|
-
"@types/node": "22.13.9",
|
|
36
|
-
"typescript": "5.8.2",
|
|
37
|
-
"@typescript/native-preview": "7.0.0-dev.20251207.1"
|
|
38
|
-
},
|
|
39
32
|
"dependencies": {},
|
|
40
33
|
"publishConfig": {
|
|
41
34
|
"directory": "dist",
|