Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion docs/telemetry-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -1321,6 +1321,38 @@ void
}
```

### startWork/open

> Sent when the user opens Start Work; use `instance` to correlate a StartWork "session"

```typescript
{
'instance': number
}
```

### startWork/opened

> Sent when the launchpad is opened; use `instance` to correlate a StartWork "session"

```typescript
{
'instance': number,
'connected': false | true
}
```

### startWork/steps/connect

> Sent when the Start Work has "reloaded" (while open, e.g. user refreshed or back button) and is disconnected; use `instance` to correlate a Start Work "session"

```typescript
{
'instance': number,
'connected': false | true
}
```

### openReviewMode

> Sent when a PR review was started in the inspect overview
Expand All @@ -1331,7 +1363,7 @@ void
'repository.visibility': 'private' | 'public' | 'local',
'repoPrivacy': 'private' | 'public' | 'local',
'filesChanged': number,
'source': 'graph' | 'patchDetails' | 'settings' | 'timeline' | 'home' | 'code-suggest' | 'account' | 'cloud-patches' | 'commandPalette' | 'deeplink' | 'inspect' | 'inspect-overview' | 'integrations' | 'launchpad' | 'launchpad-indicator' | 'launchpad-view' | 'notification' | 'prompt' | 'quick-wizard' | 'remoteProvider' | 'trial-indicator' | 'scm-input' | 'subscription' | 'walkthrough' | 'worktrees'
'source': 'graph' | 'patchDetails' | 'settings' | 'timeline' | 'home' | 'code-suggest' | 'account' | 'cloud-patches' | 'commandPalette' | 'deeplink' | 'inspect' | 'inspect-overview' | 'integrations' | 'launchpad' | 'launchpad-indicator' | 'launchpad-view' | 'notification' | 'prompt' | 'quick-wizard' | 'remoteProvider' | 'startWork' | 'trial-indicator' | 'scm-input' | 'subscription' | 'walkthrough' | 'worktrees'
}
```

Expand Down
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5892,6 +5892,12 @@
"category": "GitLens",
"icon": "$(rocket)"
},
{
"command": "gitlens.startWork",
"title": "Start Work",
"category": "GitLens",
"icon": "$(rocket)"
},
{
"command": "gitlens.showLaunchpadView",
"title": "Show Launchpad View",
Expand Down Expand Up @@ -10350,6 +10356,10 @@
"command": "gitlens.showLaunchpad",
"when": "gitlens:enabled"
},
{
"command": "gitlens.startWork",
"when": "gitlens:enabled"
},
{
"command": "gitlens.showLaunchpadView",
"when": "gitlens:enabled"
Expand Down Expand Up @@ -19851,7 +19861,7 @@
"@gitkraken/provider-apis": "0.24.2",
"@gitkraken/shared-web-components": "0.1.1-rc.15",
"@gk-nzaytsev/fast-string-truncated-width": "1.1.0",
"@lit-labs/signals": "^0.1.1",
"@lit-labs/signals": "0.1.1",
"@lit/context": "1.1.3",
"@lit/react": "1.0.6",
"@lit/task": "1.0.1",
Expand All @@ -19877,7 +19887,8 @@
"path-browserify": "1.0.1",
"react": "16.8.4",
"react-dom": "16.8.4",
"signal-utils": "^0.20.0",
"signal-utils": "0.20.0",
"slug": "10.0.0",
"sortablejs": "1.15.0"
},
"devDependencies": {
Expand All @@ -19891,6 +19902,7 @@
"@types/node": "18.15.0",
"@types/react": "17.0.82",
"@types/react-dom": "17.0.21",
"@types/slug": "5.0.9",
"@types/sortablejs": "1.15.8",
"@types/vscode": "1.82.0",
"@typescript-eslint/parser": "8.13.0",
Expand Down
Loading
Loading