@github/copilot 0.0.366-3 → 0.0.366-4
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/index.js +568 -568
- package/package.json +2 -2
- package/sdk/index.d.ts +3 -0
- package/sdk/index.js +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@github/copilot",
|
|
3
3
|
"description": "GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.",
|
|
4
|
-
"version": "0.0.366-
|
|
4
|
+
"version": "0.0.366-4",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
@@ -39,6 +39,6 @@
|
|
|
39
39
|
"ripgrep/**/*"
|
|
40
40
|
],
|
|
41
41
|
"buildMetadata": {
|
|
42
|
-
"gitCommit": "
|
|
42
|
+
"gitCommit": "a02c983"
|
|
43
43
|
}
|
|
44
44
|
}
|
package/sdk/index.d.ts
CHANGED
|
@@ -1280,6 +1280,7 @@ declare interface IPreToolsExecutionProcessor extends IToJson {
|
|
|
1280
1280
|
*/
|
|
1281
1281
|
declare interface IRuntimeSettings {
|
|
1282
1282
|
version: string;
|
|
1283
|
+
clientName: string;
|
|
1283
1284
|
github: {
|
|
1284
1285
|
serverUrl: string;
|
|
1285
1286
|
uploadsUrl: string;
|
|
@@ -2503,6 +2504,7 @@ export declare abstract class Session<SM extends SessionMetadata = SessionMetada
|
|
|
2503
2504
|
protected handoffContext?: string;
|
|
2504
2505
|
protected externalToolDefinitions?: ExternalToolDefinition[];
|
|
2505
2506
|
protected externalToolDispatcher?: ExternalToolDispatcher;
|
|
2507
|
+
protected clientName?: string;
|
|
2506
2508
|
abstract send(options: SendOptions): Promise<void>;
|
|
2507
2509
|
abstract abort(): Promise<void>;
|
|
2508
2510
|
constructor(options?: SessionOptions);
|
|
@@ -7751,6 +7753,7 @@ declare const SessionModelChangeEventSchema: z.ZodObject<{
|
|
|
7751
7753
|
}>;
|
|
7752
7754
|
|
|
7753
7755
|
export declare interface SessionOptions extends Partial<SessionMetadata> {
|
|
7756
|
+
clientName?: string;
|
|
7754
7757
|
model?: SupportedModel;
|
|
7755
7758
|
integrationId?: string;
|
|
7756
7759
|
featureFlags?: FeatureFlags;
|