@synsci/sdk 2.0.63 → 2.0.65

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.
@@ -1693,6 +1693,10 @@ export type Config = {
1693
1693
  * Additional paths to skill folders
1694
1694
  */
1695
1695
  paths?: Array<string>;
1696
+ /**
1697
+ * Skills excluded from agent discovery and loading. Does not change skill permissions or uninstall files.
1698
+ */
1699
+ disabled?: Array<string>;
1696
1700
  };
1697
1701
  watcher?: {
1698
1702
  ignore?: Array<string>;
@@ -14673,6 +14677,11 @@ export type AppSkillsResponses = {
14673
14677
  entry?: boolean;
14674
14678
  permission_action: PermissionAction;
14675
14679
  recommended: boolean;
14680
+ /**
14681
+ * Selected for on-demand use; permissions remain independently enforced.
14682
+ */
14683
+ enabled?: boolean;
14684
+ disabled_by?: "server" | "project";
14676
14685
  }>;
14677
14686
  };
14678
14687
  export type AppSkillsResponse = AppSkillsResponses[keyof AppSkillsResponses];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@synsci/sdk",
4
- "version": "2.0.63",
4
+ "version": "2.0.65",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {