chore: add workspace type property in request run analytics event (#3820)

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
Akash K
2024-02-13 17:38:11 +05:30
committed by GitHub
parent 41bad1f3dc
commit de4635df23
2 changed files with 10 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
export type HoppRequestEvent =
| {
platform: "rest" | "graphql-query" | "graphql-schema"
platform: "rest"
strategy: string
workspaceType: "personal" | "team"
}
| {
platform: "graphql-query" | "graphql-schema"
strategy: string
}
| { platform: "wss" | "sse" | "socketio" | "mqtt" }