@nikcli-ai/sdk 1.277.0 → 1.278.0
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/httpapi/client.d.ts +0 -20
- package/dist/httpapi/generated/types.d.ts +1555 -2
- package/package.json +1 -1
package/dist/httpapi/client.d.ts
CHANGED
|
@@ -47,26 +47,6 @@ export type FilePartInput = Extract<PromptPartInput, {
|
|
|
47
47
|
export type AgentPartInput = Extract<PromptPartInput, {
|
|
48
48
|
type: "agent";
|
|
49
49
|
}>;
|
|
50
|
-
export type McpLocalConfig = {
|
|
51
|
-
type: "local";
|
|
52
|
-
command: string[];
|
|
53
|
-
environment?: Record<string, string>;
|
|
54
|
-
enabled?: boolean;
|
|
55
|
-
timeout?: number;
|
|
56
|
-
};
|
|
57
|
-
export type ReferenceConfig = {
|
|
58
|
-
type: "git";
|
|
59
|
-
repository: string;
|
|
60
|
-
branch?: string;
|
|
61
|
-
description?: string;
|
|
62
|
-
} | {
|
|
63
|
-
type: "local";
|
|
64
|
-
path: string;
|
|
65
|
-
description?: string;
|
|
66
|
-
};
|
|
67
|
-
export type KeybindsConfig = {
|
|
68
|
-
readonly [action: string]: string | undefined;
|
|
69
|
-
};
|
|
70
50
|
/** Provider credentials as stored by `auth.set`. */
|
|
71
51
|
export type Auth = Parameters<NikcliClient["auth"]["set"]>[0]["payload"];
|
|
72
52
|
/** The full `nikcli.json` document. */
|