@synsci/sdk 2.0.2-test.81.1 → 2.0.2-test.83.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.
@@ -494,7 +494,6 @@ export declare class Skills extends HeyApiClient {
494
494
  install<ThrowOnError extends boolean = false>(parameters?: {
495
495
  directory?: string;
496
496
  url?: string;
497
- skipClassifier?: boolean;
498
497
  }, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsSkillsInstallResponses, SettingsSkillsInstallErrors, ThrowOnError, "fields">;
499
498
  }
500
499
  export declare class Network extends HeyApiClient {
@@ -925,7 +925,6 @@ export class Skills extends HeyApiClient {
925
925
  args: [
926
926
  { in: "query", key: "directory" },
927
927
  { in: "body", key: "url" },
928
- { in: "body", key: "skipClassifier" },
929
928
  ],
930
929
  },
931
930
  ]);
@@ -10169,10 +10169,6 @@ export type SettingsSkillsInstallData = {
10169
10169
  * Public git repository URL containing one or more SKILL.md skills
10170
10170
  */
10171
10171
  url: string;
10172
- /**
10173
- * Bypass the server-side Layer-3 classifier review
10174
- */
10175
- skipClassifier?: boolean;
10176
10172
  };
10177
10173
  path?: never;
10178
10174
  query?: {
@@ -10447,6 +10443,7 @@ export type AppSkillsResponses = {
10447
10443
  location: string;
10448
10444
  category?: string;
10449
10445
  tags?: Array<string>;
10446
+ origin: "default" | "installed" | "learned" | "user" | "project";
10450
10447
  entry?: boolean;
10451
10448
  }>;
10452
10449
  };
@@ -10490,6 +10487,7 @@ export type AppSkillWriteResponses = {
10490
10487
  location: string;
10491
10488
  category?: string;
10492
10489
  tags?: Array<string>;
10490
+ origin: "default" | "installed" | "learned" | "user" | "project";
10493
10491
  entry?: boolean;
10494
10492
  };
10495
10493
  };
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.2-test.81.1",
4
+ "version": "2.0.2-test.83.1",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {