Skip to content

Commit 98ffe86

Browse files
committed
Fixes build issue
1 parent bf16719 commit 98ffe86

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/telemetry-events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ or when connection refresh is skipped due to being a non-cloud session
724724
725725
```typescript
726726
{
727-
'command': string /* GlCommands */,
727+
'command': string,
728728
'webview': string
729729
}
730730
```
@@ -995,7 +995,7 @@ or
995995
996996
```typescript
997997
{
998-
'command': string /* GlCommands */,
998+
'command': string,
999999
'webview': string
10001000
}
10011001
```
@@ -1364,7 +1364,7 @@ void
13641364
13651365
```typescript
13661366
{
1367-
'command': string /* GlCommands */,
1367+
'command': string,
13681368
'webview': string
13691369
}
13701370
```
@@ -2395,7 +2395,7 @@ or
23952395
23962396
```typescript
23972397
{
2398-
'command': string /* GlCommands */,
2398+
'command': string,
23992399
'detail': string,
24002400
'name': 'open/ai-custom-instructions-settings' | 'open/ai-enable-setting' | 'open/ai-settings' | 'open/help-center/ai-features' | 'open/help-center/start-integrations' | 'open/help-center/accelerate-pr-reviews' | 'open/help-center/streamline-collaboration' | 'open/help-center/interactive-code-history' | 'open/help-center/community-vs-pro' | 'open/help-center/home-view' | 'open/devex-platform' | 'open/drafts' | 'open/home' | 'connect/integrations' | 'open/autolinks' | 'open/graph' | 'open/launchpad' | 'create/worktree' | 'open/help-center' | 'plus/sign-up' | 'plus/upgrade' | 'plus/reactivate' | 'open/walkthrough' | 'open/inspect' | 'switch/ai-model',
24012401
'type': 'command'

src/constants.telemetry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ interface CodeSuggestViewedEventData {
530530
}
531531

532532
interface CommandEventData {
533-
command: GlCommands;
533+
command: string;
534534
'context.mode'?: never;
535535
'context.submode'?: never;
536536
webview?: string;
@@ -998,7 +998,7 @@ type WalkthroughActionNames =
998998
| 'switch/ai-model';
999999

10001000
type WalkthroughActionEvent =
1001-
| { type: 'command'; name: WalkthroughActionNames; command: GlCommands; detail?: string }
1001+
| { type: 'command'; name: WalkthroughActionNames; command: string; detail?: string }
10021002
| { type: 'url'; name: WalkthroughActionNames; url: string; detail?: string };
10031003

10041004
interface WalkthroughCompletionEvent {

0 commit comments

Comments
 (0)