mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
24 lines
778 B
Go
24 lines
778 B
Go
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package wcloud
|
|
|
|
import (
|
|
"github.com/wavetermdev/waveterm/pkg/telemetry"
|
|
)
|
|
|
|
type NoTelemetryInputType struct {
|
|
ClientId string `json:"clientid"`
|
|
Value bool `json:"value"`
|
|
}
|
|
|
|
type TelemetryInputType struct {
|
|
UserId string `json:"userid"`
|
|
ClientId string `json:"clientid"`
|
|
AppType string `json:"apptype,omitempty"`
|
|
AutoUpdateEnabled bool `json:"autoupdateenabled,omitempty"`
|
|
AutoUpdateChannel string `json:"autoupdatechannel,omitempty"`
|
|
CurDay string `json:"curday"`
|
|
Activity []*telemetry.ActivityType `json:"activity"`
|
|
}
|