| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489 |
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- package opencode
- import (
- "context"
- "net/http"
- "net/url"
- "reflect"
- "slices"
- "github.com/sst/opencode-sdk-go/internal/apijson"
- "github.com/sst/opencode-sdk-go/internal/apiquery"
- "github.com/sst/opencode-sdk-go/internal/param"
- "github.com/sst/opencode-sdk-go/internal/requestconfig"
- "github.com/sst/opencode-sdk-go/option"
- "github.com/sst/opencode-sdk-go/packages/ssestream"
- "github.com/sst/opencode-sdk-go/shared"
- "github.com/tidwall/gjson"
- )
- // EventService contains methods and other services that help with interacting with
- // the opencode API.
- //
- // Note, unlike clients, this service does not read variables from the environment
- // automatically. You should not instantiate this service directly, and instead use
- // the [NewEventService] method instead.
- type EventService struct {
- Options []option.RequestOption
- }
- // NewEventService generates a new service that applies the given options to each
- // request. These options are applied after the parent client's options (if there
- // is one), and before any request-specific options.
- func NewEventService(opts ...option.RequestOption) (r *EventService) {
- r = &EventService{}
- r.Options = opts
- return
- }
- // Get events
- func (r *EventService) ListStreaming(ctx context.Context, query EventListParams, opts ...option.RequestOption) (stream *ssestream.Stream[EventListResponse]) {
- var (
- raw *http.Response
- err error
- )
- opts = slices.Concat(r.Options, opts)
- opts = append([]option.RequestOption{option.WithHeader("Accept", "text/event-stream")}, opts...)
- path := "event"
- err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, query, &raw, opts...)
- return ssestream.NewStream[EventListResponse](ssestream.NewDecoder(raw), err)
- }
- type EventListResponse struct {
- // This field can have the runtime type of
- // [EventListResponseEventInstallationUpdatedProperties],
- // [EventListResponseEventLspClientDiagnosticsProperties],
- // [EventListResponseEventMessageUpdatedProperties],
- // [EventListResponseEventMessageRemovedProperties],
- // [EventListResponseEventMessagePartUpdatedProperties],
- // [EventListResponseEventMessagePartRemovedProperties],
- // [EventListResponseEventSessionCompactedProperties], [Permission],
- // [EventListResponseEventPermissionRepliedProperties],
- // [EventListResponseEventFileEditedProperties],
- // [EventListResponseEventFileWatcherUpdatedProperties],
- // [EventListResponseEventTodoUpdatedProperties],
- // [EventListResponseEventSessionIdleProperties],
- // [EventListResponseEventSessionUpdatedProperties],
- // [EventListResponseEventSessionDeletedProperties],
- // [EventListResponseEventSessionErrorProperties], [interface{}],
- // [EventListResponseEventIdeInstalledProperties].
- Properties interface{} `json:"properties,required"`
- Type EventListResponseType `json:"type,required"`
- JSON eventListResponseJSON `json:"-"`
- union EventListResponseUnion
- }
- // eventListResponseJSON contains the JSON metadata for the struct
- // [EventListResponse]
- type eventListResponseJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r eventListResponseJSON) RawJSON() string {
- return r.raw
- }
- func (r *EventListResponse) UnmarshalJSON(data []byte) (err error) {
- *r = EventListResponse{}
- err = apijson.UnmarshalRoot(data, &r.union)
- if err != nil {
- return err
- }
- return apijson.Port(r.union, &r)
- }
- // AsUnion returns a [EventListResponseUnion] interface which you can cast to the
- // specific types for more type safety.
- //
- // Possible runtime types of the union are
- // [EventListResponseEventInstallationUpdated],
- // [EventListResponseEventLspClientDiagnostics],
- // [EventListResponseEventMessageUpdated], [EventListResponseEventMessageRemoved],
- // [EventListResponseEventMessagePartUpdated],
- // [EventListResponseEventMessagePartRemoved],
- // [EventListResponseEventSessionCompacted],
- // [EventListResponseEventPermissionUpdated],
- // [EventListResponseEventPermissionReplied], [EventListResponseEventFileEdited],
- // [EventListResponseEventFileWatcherUpdated], [EventListResponseEventTodoUpdated],
- // [EventListResponseEventSessionIdle], [EventListResponseEventSessionUpdated],
- // [EventListResponseEventSessionDeleted], [EventListResponseEventSessionError],
- // [EventListResponseEventServerConnected], [EventListResponseEventIdeInstalled].
- func (r EventListResponse) AsUnion() EventListResponseUnion {
- return r.union
- }
- // Union satisfied by [EventListResponseEventInstallationUpdated],
- // [EventListResponseEventLspClientDiagnostics],
- // [EventListResponseEventMessageUpdated], [EventListResponseEventMessageRemoved],
- // [EventListResponseEventMessagePartUpdated],
- // [EventListResponseEventMessagePartRemoved],
- // [EventListResponseEventSessionCompacted],
- // [EventListResponseEventPermissionUpdated],
- // [EventListResponseEventPermissionReplied], [EventListResponseEventFileEdited],
- // [EventListResponseEventFileWatcherUpdated], [EventListResponseEventTodoUpdated],
- // [EventListResponseEventSessionIdle], [EventListResponseEventSessionUpdated],
- // [EventListResponseEventSessionDeleted], [EventListResponseEventSessionError],
- // [EventListResponseEventServerConnected] or [EventListResponseEventIdeInstalled].
- type EventListResponseUnion interface {
- implementsEventListResponse()
- }
- func init() {
- apijson.RegisterUnion(
- reflect.TypeOf((*EventListResponseUnion)(nil)).Elem(),
- "",
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventInstallationUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventLspClientDiagnostics{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventMessageUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventMessageRemoved{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventMessagePartUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventMessagePartRemoved{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionCompacted{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventPermissionUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventPermissionReplied{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventFileEdited{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventFileWatcherUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventTodoUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionIdle{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionUpdated{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionDeleted{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionError{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventServerConnected{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventIdeInstalled{}),
- },
- )
- }
- type EventListResponseEventInstallationUpdated struct {
- Properties EventListResponseEventInstallationUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventInstallationUpdatedType `json:"type,required"`
- JSON eventListResponseEventInstallationUpdatedJSON `json:"-"`
- }
- // eventListResponseEventInstallationUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventInstallationUpdated]
- type eventListResponseEventInstallationUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventInstallationUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventInstallationUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventInstallationUpdated) implementsEventListResponse() {}
- type EventListResponseEventInstallationUpdatedProperties struct {
- Version string `json:"version,required"`
- JSON eventListResponseEventInstallationUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventInstallationUpdatedPropertiesJSON contains the JSON
- // metadata for the struct [EventListResponseEventInstallationUpdatedProperties]
- type eventListResponseEventInstallationUpdatedPropertiesJSON struct {
- Version apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventInstallationUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventInstallationUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventInstallationUpdatedType string
- const (
- EventListResponseEventInstallationUpdatedTypeInstallationUpdated EventListResponseEventInstallationUpdatedType = "installation.updated"
- )
- func (r EventListResponseEventInstallationUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventInstallationUpdatedTypeInstallationUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventLspClientDiagnostics struct {
- Properties EventListResponseEventLspClientDiagnosticsProperties `json:"properties,required"`
- Type EventListResponseEventLspClientDiagnosticsType `json:"type,required"`
- JSON eventListResponseEventLspClientDiagnosticsJSON `json:"-"`
- }
- // eventListResponseEventLspClientDiagnosticsJSON contains the JSON metadata for
- // the struct [EventListResponseEventLspClientDiagnostics]
- type eventListResponseEventLspClientDiagnosticsJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventLspClientDiagnostics) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventLspClientDiagnosticsJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventLspClientDiagnostics) implementsEventListResponse() {}
- type EventListResponseEventLspClientDiagnosticsProperties struct {
- Path string `json:"path,required"`
- ServerID string `json:"serverID,required"`
- JSON eventListResponseEventLspClientDiagnosticsPropertiesJSON `json:"-"`
- }
- // eventListResponseEventLspClientDiagnosticsPropertiesJSON contains the JSON
- // metadata for the struct [EventListResponseEventLspClientDiagnosticsProperties]
- type eventListResponseEventLspClientDiagnosticsPropertiesJSON struct {
- Path apijson.Field
- ServerID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventLspClientDiagnosticsProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventLspClientDiagnosticsPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventLspClientDiagnosticsType string
- const (
- EventListResponseEventLspClientDiagnosticsTypeLspClientDiagnostics EventListResponseEventLspClientDiagnosticsType = "lsp.client.diagnostics"
- )
- func (r EventListResponseEventLspClientDiagnosticsType) IsKnown() bool {
- switch r {
- case EventListResponseEventLspClientDiagnosticsTypeLspClientDiagnostics:
- return true
- }
- return false
- }
- type EventListResponseEventMessageUpdated struct {
- Properties EventListResponseEventMessageUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventMessageUpdatedType `json:"type,required"`
- JSON eventListResponseEventMessageUpdatedJSON `json:"-"`
- }
- // eventListResponseEventMessageUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventMessageUpdated]
- type eventListResponseEventMessageUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessageUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessageUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventMessageUpdated) implementsEventListResponse() {}
- type EventListResponseEventMessageUpdatedProperties struct {
- Info Message `json:"info,required"`
- JSON eventListResponseEventMessageUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventMessageUpdatedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventMessageUpdatedProperties]
- type eventListResponseEventMessageUpdatedPropertiesJSON struct {
- Info apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessageUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessageUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventMessageUpdatedType string
- const (
- EventListResponseEventMessageUpdatedTypeMessageUpdated EventListResponseEventMessageUpdatedType = "message.updated"
- )
- func (r EventListResponseEventMessageUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventMessageUpdatedTypeMessageUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventMessageRemoved struct {
- Properties EventListResponseEventMessageRemovedProperties `json:"properties,required"`
- Type EventListResponseEventMessageRemovedType `json:"type,required"`
- JSON eventListResponseEventMessageRemovedJSON `json:"-"`
- }
- // eventListResponseEventMessageRemovedJSON contains the JSON metadata for the
- // struct [EventListResponseEventMessageRemoved]
- type eventListResponseEventMessageRemovedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessageRemoved) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessageRemovedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventMessageRemoved) implementsEventListResponse() {}
- type EventListResponseEventMessageRemovedProperties struct {
- MessageID string `json:"messageID,required"`
- SessionID string `json:"sessionID,required"`
- JSON eventListResponseEventMessageRemovedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventMessageRemovedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventMessageRemovedProperties]
- type eventListResponseEventMessageRemovedPropertiesJSON struct {
- MessageID apijson.Field
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessageRemovedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessageRemovedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventMessageRemovedType string
- const (
- EventListResponseEventMessageRemovedTypeMessageRemoved EventListResponseEventMessageRemovedType = "message.removed"
- )
- func (r EventListResponseEventMessageRemovedType) IsKnown() bool {
- switch r {
- case EventListResponseEventMessageRemovedTypeMessageRemoved:
- return true
- }
- return false
- }
- type EventListResponseEventMessagePartUpdated struct {
- Properties EventListResponseEventMessagePartUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventMessagePartUpdatedType `json:"type,required"`
- JSON eventListResponseEventMessagePartUpdatedJSON `json:"-"`
- }
- // eventListResponseEventMessagePartUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventMessagePartUpdated]
- type eventListResponseEventMessagePartUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessagePartUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessagePartUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventMessagePartUpdated) implementsEventListResponse() {}
- type EventListResponseEventMessagePartUpdatedProperties struct {
- Part Part `json:"part,required"`
- JSON eventListResponseEventMessagePartUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventMessagePartUpdatedPropertiesJSON contains the JSON
- // metadata for the struct [EventListResponseEventMessagePartUpdatedProperties]
- type eventListResponseEventMessagePartUpdatedPropertiesJSON struct {
- Part apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessagePartUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessagePartUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventMessagePartUpdatedType string
- const (
- EventListResponseEventMessagePartUpdatedTypeMessagePartUpdated EventListResponseEventMessagePartUpdatedType = "message.part.updated"
- )
- func (r EventListResponseEventMessagePartUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventMessagePartUpdatedTypeMessagePartUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventMessagePartRemoved struct {
- Properties EventListResponseEventMessagePartRemovedProperties `json:"properties,required"`
- Type EventListResponseEventMessagePartRemovedType `json:"type,required"`
- JSON eventListResponseEventMessagePartRemovedJSON `json:"-"`
- }
- // eventListResponseEventMessagePartRemovedJSON contains the JSON metadata for the
- // struct [EventListResponseEventMessagePartRemoved]
- type eventListResponseEventMessagePartRemovedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessagePartRemoved) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessagePartRemovedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventMessagePartRemoved) implementsEventListResponse() {}
- type EventListResponseEventMessagePartRemovedProperties struct {
- MessageID string `json:"messageID,required"`
- PartID string `json:"partID,required"`
- SessionID string `json:"sessionID,required"`
- JSON eventListResponseEventMessagePartRemovedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventMessagePartRemovedPropertiesJSON contains the JSON
- // metadata for the struct [EventListResponseEventMessagePartRemovedProperties]
- type eventListResponseEventMessagePartRemovedPropertiesJSON struct {
- MessageID apijson.Field
- PartID apijson.Field
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventMessagePartRemovedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventMessagePartRemovedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventMessagePartRemovedType string
- const (
- EventListResponseEventMessagePartRemovedTypeMessagePartRemoved EventListResponseEventMessagePartRemovedType = "message.part.removed"
- )
- func (r EventListResponseEventMessagePartRemovedType) IsKnown() bool {
- switch r {
- case EventListResponseEventMessagePartRemovedTypeMessagePartRemoved:
- return true
- }
- return false
- }
- type EventListResponseEventSessionCompacted struct {
- Properties EventListResponseEventSessionCompactedProperties `json:"properties,required"`
- Type EventListResponseEventSessionCompactedType `json:"type,required"`
- JSON eventListResponseEventSessionCompactedJSON `json:"-"`
- }
- // eventListResponseEventSessionCompactedJSON contains the JSON metadata for the
- // struct [EventListResponseEventSessionCompacted]
- type eventListResponseEventSessionCompactedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionCompacted) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionCompactedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionCompacted) implementsEventListResponse() {}
- type EventListResponseEventSessionCompactedProperties struct {
- SessionID string `json:"sessionID,required"`
- JSON eventListResponseEventSessionCompactedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventSessionCompactedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventSessionCompactedProperties]
- type eventListResponseEventSessionCompactedPropertiesJSON struct {
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionCompactedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionCompactedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventSessionCompactedType string
- const (
- EventListResponseEventSessionCompactedTypeSessionCompacted EventListResponseEventSessionCompactedType = "session.compacted"
- )
- func (r EventListResponseEventSessionCompactedType) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionCompactedTypeSessionCompacted:
- return true
- }
- return false
- }
- type EventListResponseEventPermissionUpdated struct {
- Properties Permission `json:"properties,required"`
- Type EventListResponseEventPermissionUpdatedType `json:"type,required"`
- JSON eventListResponseEventPermissionUpdatedJSON `json:"-"`
- }
- // eventListResponseEventPermissionUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventPermissionUpdated]
- type eventListResponseEventPermissionUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventPermissionUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventPermissionUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventPermissionUpdated) implementsEventListResponse() {}
- type EventListResponseEventPermissionUpdatedType string
- const (
- EventListResponseEventPermissionUpdatedTypePermissionUpdated EventListResponseEventPermissionUpdatedType = "permission.updated"
- )
- func (r EventListResponseEventPermissionUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventPermissionUpdatedTypePermissionUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventPermissionReplied struct {
- Properties EventListResponseEventPermissionRepliedProperties `json:"properties,required"`
- Type EventListResponseEventPermissionRepliedType `json:"type,required"`
- JSON eventListResponseEventPermissionRepliedJSON `json:"-"`
- }
- // eventListResponseEventPermissionRepliedJSON contains the JSON metadata for the
- // struct [EventListResponseEventPermissionReplied]
- type eventListResponseEventPermissionRepliedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventPermissionReplied) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventPermissionRepliedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventPermissionReplied) implementsEventListResponse() {}
- type EventListResponseEventPermissionRepliedProperties struct {
- PermissionID string `json:"permissionID,required"`
- Response string `json:"response,required"`
- SessionID string `json:"sessionID,required"`
- JSON eventListResponseEventPermissionRepliedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventPermissionRepliedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventPermissionRepliedProperties]
- type eventListResponseEventPermissionRepliedPropertiesJSON struct {
- PermissionID apijson.Field
- Response apijson.Field
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventPermissionRepliedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventPermissionRepliedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventPermissionRepliedType string
- const (
- EventListResponseEventPermissionRepliedTypePermissionReplied EventListResponseEventPermissionRepliedType = "permission.replied"
- )
- func (r EventListResponseEventPermissionRepliedType) IsKnown() bool {
- switch r {
- case EventListResponseEventPermissionRepliedTypePermissionReplied:
- return true
- }
- return false
- }
- type EventListResponseEventFileEdited struct {
- Properties EventListResponseEventFileEditedProperties `json:"properties,required"`
- Type EventListResponseEventFileEditedType `json:"type,required"`
- JSON eventListResponseEventFileEditedJSON `json:"-"`
- }
- // eventListResponseEventFileEditedJSON contains the JSON metadata for the struct
- // [EventListResponseEventFileEdited]
- type eventListResponseEventFileEditedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventFileEdited) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventFileEditedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventFileEdited) implementsEventListResponse() {}
- type EventListResponseEventFileEditedProperties struct {
- File string `json:"file,required"`
- JSON eventListResponseEventFileEditedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventFileEditedPropertiesJSON contains the JSON metadata for
- // the struct [EventListResponseEventFileEditedProperties]
- type eventListResponseEventFileEditedPropertiesJSON struct {
- File apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventFileEditedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventFileEditedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventFileEditedType string
- const (
- EventListResponseEventFileEditedTypeFileEdited EventListResponseEventFileEditedType = "file.edited"
- )
- func (r EventListResponseEventFileEditedType) IsKnown() bool {
- switch r {
- case EventListResponseEventFileEditedTypeFileEdited:
- return true
- }
- return false
- }
- type EventListResponseEventFileWatcherUpdated struct {
- Properties EventListResponseEventFileWatcherUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventFileWatcherUpdatedType `json:"type,required"`
- JSON eventListResponseEventFileWatcherUpdatedJSON `json:"-"`
- }
- // eventListResponseEventFileWatcherUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventFileWatcherUpdated]
- type eventListResponseEventFileWatcherUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventFileWatcherUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventFileWatcherUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventFileWatcherUpdated) implementsEventListResponse() {}
- type EventListResponseEventFileWatcherUpdatedProperties struct {
- Event EventListResponseEventFileWatcherUpdatedPropertiesEvent `json:"event,required"`
- File string `json:"file,required"`
- JSON eventListResponseEventFileWatcherUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventFileWatcherUpdatedPropertiesJSON contains the JSON
- // metadata for the struct [EventListResponseEventFileWatcherUpdatedProperties]
- type eventListResponseEventFileWatcherUpdatedPropertiesJSON struct {
- Event apijson.Field
- File apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventFileWatcherUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventFileWatcherUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventFileWatcherUpdatedPropertiesEvent string
- const (
- EventListResponseEventFileWatcherUpdatedPropertiesEventAdd EventListResponseEventFileWatcherUpdatedPropertiesEvent = "add"
- EventListResponseEventFileWatcherUpdatedPropertiesEventChange EventListResponseEventFileWatcherUpdatedPropertiesEvent = "change"
- EventListResponseEventFileWatcherUpdatedPropertiesEventUnlink EventListResponseEventFileWatcherUpdatedPropertiesEvent = "unlink"
- )
- func (r EventListResponseEventFileWatcherUpdatedPropertiesEvent) IsKnown() bool {
- switch r {
- case EventListResponseEventFileWatcherUpdatedPropertiesEventAdd, EventListResponseEventFileWatcherUpdatedPropertiesEventChange, EventListResponseEventFileWatcherUpdatedPropertiesEventUnlink:
- return true
- }
- return false
- }
- type EventListResponseEventFileWatcherUpdatedType string
- const (
- EventListResponseEventFileWatcherUpdatedTypeFileWatcherUpdated EventListResponseEventFileWatcherUpdatedType = "file.watcher.updated"
- )
- func (r EventListResponseEventFileWatcherUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventFileWatcherUpdatedTypeFileWatcherUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventTodoUpdated struct {
- Properties EventListResponseEventTodoUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventTodoUpdatedType `json:"type,required"`
- JSON eventListResponseEventTodoUpdatedJSON `json:"-"`
- }
- // eventListResponseEventTodoUpdatedJSON contains the JSON metadata for the struct
- // [EventListResponseEventTodoUpdated]
- type eventListResponseEventTodoUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventTodoUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventTodoUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventTodoUpdated) implementsEventListResponse() {}
- type EventListResponseEventTodoUpdatedProperties struct {
- SessionID string `json:"sessionID,required"`
- Todos []EventListResponseEventTodoUpdatedPropertiesTodo `json:"todos,required"`
- JSON eventListResponseEventTodoUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventTodoUpdatedPropertiesJSON contains the JSON metadata for
- // the struct [EventListResponseEventTodoUpdatedProperties]
- type eventListResponseEventTodoUpdatedPropertiesJSON struct {
- SessionID apijson.Field
- Todos apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventTodoUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventTodoUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventTodoUpdatedPropertiesTodo struct {
- // Unique identifier for the todo item
- ID string `json:"id,required"`
- // Brief description of the task
- Content string `json:"content,required"`
- // Priority level of the task: high, medium, low
- Priority string `json:"priority,required"`
- // Current status of the task: pending, in_progress, completed, cancelled
- Status string `json:"status,required"`
- JSON eventListResponseEventTodoUpdatedPropertiesTodoJSON `json:"-"`
- }
- // eventListResponseEventTodoUpdatedPropertiesTodoJSON contains the JSON metadata
- // for the struct [EventListResponseEventTodoUpdatedPropertiesTodo]
- type eventListResponseEventTodoUpdatedPropertiesTodoJSON struct {
- ID apijson.Field
- Content apijson.Field
- Priority apijson.Field
- Status apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventTodoUpdatedPropertiesTodo) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventTodoUpdatedPropertiesTodoJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventTodoUpdatedType string
- const (
- EventListResponseEventTodoUpdatedTypeTodoUpdated EventListResponseEventTodoUpdatedType = "todo.updated"
- )
- func (r EventListResponseEventTodoUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventTodoUpdatedTypeTodoUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventSessionIdle struct {
- Properties EventListResponseEventSessionIdleProperties `json:"properties,required"`
- Type EventListResponseEventSessionIdleType `json:"type,required"`
- JSON eventListResponseEventSessionIdleJSON `json:"-"`
- }
- // eventListResponseEventSessionIdleJSON contains the JSON metadata for the struct
- // [EventListResponseEventSessionIdle]
- type eventListResponseEventSessionIdleJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionIdle) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionIdleJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionIdle) implementsEventListResponse() {}
- type EventListResponseEventSessionIdleProperties struct {
- SessionID string `json:"sessionID,required"`
- JSON eventListResponseEventSessionIdlePropertiesJSON `json:"-"`
- }
- // eventListResponseEventSessionIdlePropertiesJSON contains the JSON metadata for
- // the struct [EventListResponseEventSessionIdleProperties]
- type eventListResponseEventSessionIdlePropertiesJSON struct {
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionIdleProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionIdlePropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventSessionIdleType string
- const (
- EventListResponseEventSessionIdleTypeSessionIdle EventListResponseEventSessionIdleType = "session.idle"
- )
- func (r EventListResponseEventSessionIdleType) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionIdleTypeSessionIdle:
- return true
- }
- return false
- }
- type EventListResponseEventSessionUpdated struct {
- Properties EventListResponseEventSessionUpdatedProperties `json:"properties,required"`
- Type EventListResponseEventSessionUpdatedType `json:"type,required"`
- JSON eventListResponseEventSessionUpdatedJSON `json:"-"`
- }
- // eventListResponseEventSessionUpdatedJSON contains the JSON metadata for the
- // struct [EventListResponseEventSessionUpdated]
- type eventListResponseEventSessionUpdatedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionUpdated) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionUpdatedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionUpdated) implementsEventListResponse() {}
- type EventListResponseEventSessionUpdatedProperties struct {
- Info Session `json:"info,required"`
- JSON eventListResponseEventSessionUpdatedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventSessionUpdatedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventSessionUpdatedProperties]
- type eventListResponseEventSessionUpdatedPropertiesJSON struct {
- Info apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionUpdatedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionUpdatedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventSessionUpdatedType string
- const (
- EventListResponseEventSessionUpdatedTypeSessionUpdated EventListResponseEventSessionUpdatedType = "session.updated"
- )
- func (r EventListResponseEventSessionUpdatedType) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionUpdatedTypeSessionUpdated:
- return true
- }
- return false
- }
- type EventListResponseEventSessionDeleted struct {
- Properties EventListResponseEventSessionDeletedProperties `json:"properties,required"`
- Type EventListResponseEventSessionDeletedType `json:"type,required"`
- JSON eventListResponseEventSessionDeletedJSON `json:"-"`
- }
- // eventListResponseEventSessionDeletedJSON contains the JSON metadata for the
- // struct [EventListResponseEventSessionDeleted]
- type eventListResponseEventSessionDeletedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionDeleted) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionDeletedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionDeleted) implementsEventListResponse() {}
- type EventListResponseEventSessionDeletedProperties struct {
- Info Session `json:"info,required"`
- JSON eventListResponseEventSessionDeletedPropertiesJSON `json:"-"`
- }
- // eventListResponseEventSessionDeletedPropertiesJSON contains the JSON metadata
- // for the struct [EventListResponseEventSessionDeletedProperties]
- type eventListResponseEventSessionDeletedPropertiesJSON struct {
- Info apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionDeletedProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionDeletedPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventSessionDeletedType string
- const (
- EventListResponseEventSessionDeletedTypeSessionDeleted EventListResponseEventSessionDeletedType = "session.deleted"
- )
- func (r EventListResponseEventSessionDeletedType) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionDeletedTypeSessionDeleted:
- return true
- }
- return false
- }
- type EventListResponseEventSessionError struct {
- Properties EventListResponseEventSessionErrorProperties `json:"properties,required"`
- Type EventListResponseEventSessionErrorType `json:"type,required"`
- JSON eventListResponseEventSessionErrorJSON `json:"-"`
- }
- // eventListResponseEventSessionErrorJSON contains the JSON metadata for the struct
- // [EventListResponseEventSessionError]
- type eventListResponseEventSessionErrorJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionError) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionErrorJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionError) implementsEventListResponse() {}
- type EventListResponseEventSessionErrorProperties struct {
- Error EventListResponseEventSessionErrorPropertiesError `json:"error"`
- SessionID string `json:"sessionID"`
- JSON eventListResponseEventSessionErrorPropertiesJSON `json:"-"`
- }
- // eventListResponseEventSessionErrorPropertiesJSON contains the JSON metadata for
- // the struct [EventListResponseEventSessionErrorProperties]
- type eventListResponseEventSessionErrorPropertiesJSON struct {
- Error apijson.Field
- SessionID apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionErrorProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionErrorPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventSessionErrorPropertiesError struct {
- // This field can have the runtime type of [shared.ProviderAuthErrorData],
- // [shared.UnknownErrorData], [interface{}], [shared.MessageAbortedErrorData].
- Data interface{} `json:"data,required"`
- Name EventListResponseEventSessionErrorPropertiesErrorName `json:"name,required"`
- JSON eventListResponseEventSessionErrorPropertiesErrorJSON `json:"-"`
- union EventListResponseEventSessionErrorPropertiesErrorUnion
- }
- // eventListResponseEventSessionErrorPropertiesErrorJSON contains the JSON metadata
- // for the struct [EventListResponseEventSessionErrorPropertiesError]
- type eventListResponseEventSessionErrorPropertiesErrorJSON struct {
- Data apijson.Field
- Name apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r eventListResponseEventSessionErrorPropertiesErrorJSON) RawJSON() string {
- return r.raw
- }
- func (r *EventListResponseEventSessionErrorPropertiesError) UnmarshalJSON(data []byte) (err error) {
- *r = EventListResponseEventSessionErrorPropertiesError{}
- err = apijson.UnmarshalRoot(data, &r.union)
- if err != nil {
- return err
- }
- return apijson.Port(r.union, &r)
- }
- // AsUnion returns a [EventListResponseEventSessionErrorPropertiesErrorUnion]
- // interface which you can cast to the specific types for more type safety.
- //
- // Possible runtime types of the union are [shared.ProviderAuthError],
- // [shared.UnknownError],
- // [EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError],
- // [shared.MessageAbortedError].
- func (r EventListResponseEventSessionErrorPropertiesError) AsUnion() EventListResponseEventSessionErrorPropertiesErrorUnion {
- return r.union
- }
- // Union satisfied by [shared.ProviderAuthError], [shared.UnknownError],
- // [EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError] or
- // [shared.MessageAbortedError].
- type EventListResponseEventSessionErrorPropertiesErrorUnion interface {
- ImplementsEventListResponseEventSessionErrorPropertiesError()
- }
- func init() {
- apijson.RegisterUnion(
- reflect.TypeOf((*EventListResponseEventSessionErrorPropertiesErrorUnion)(nil)).Elem(),
- "",
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(shared.ProviderAuthError{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(shared.UnknownError{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError{}),
- },
- apijson.UnionVariant{
- TypeFilter: gjson.JSON,
- Type: reflect.TypeOf(shared.MessageAbortedError{}),
- },
- )
- }
- type EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError struct {
- Data interface{} `json:"data,required"`
- Name EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorName `json:"name,required"`
- JSON eventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorJSON `json:"-"`
- }
- // eventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorJSON
- // contains the JSON metadata for the struct
- // [EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError]
- type eventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorJSON struct {
- Data apijson.Field
- Name apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthError) ImplementsEventListResponseEventSessionErrorPropertiesError() {
- }
- type EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorName string
- const (
- EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorNameMessageOutputLengthError EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorName = "MessageOutputLengthError"
- )
- func (r EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorName) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionErrorPropertiesErrorMessageOutputLengthErrorNameMessageOutputLengthError:
- return true
- }
- return false
- }
- type EventListResponseEventSessionErrorPropertiesErrorName string
- const (
- EventListResponseEventSessionErrorPropertiesErrorNameProviderAuthError EventListResponseEventSessionErrorPropertiesErrorName = "ProviderAuthError"
- EventListResponseEventSessionErrorPropertiesErrorNameUnknownError EventListResponseEventSessionErrorPropertiesErrorName = "UnknownError"
- EventListResponseEventSessionErrorPropertiesErrorNameMessageOutputLengthError EventListResponseEventSessionErrorPropertiesErrorName = "MessageOutputLengthError"
- EventListResponseEventSessionErrorPropertiesErrorNameMessageAbortedError EventListResponseEventSessionErrorPropertiesErrorName = "MessageAbortedError"
- )
- func (r EventListResponseEventSessionErrorPropertiesErrorName) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionErrorPropertiesErrorNameProviderAuthError, EventListResponseEventSessionErrorPropertiesErrorNameUnknownError, EventListResponseEventSessionErrorPropertiesErrorNameMessageOutputLengthError, EventListResponseEventSessionErrorPropertiesErrorNameMessageAbortedError:
- return true
- }
- return false
- }
- type EventListResponseEventSessionErrorType string
- const (
- EventListResponseEventSessionErrorTypeSessionError EventListResponseEventSessionErrorType = "session.error"
- )
- func (r EventListResponseEventSessionErrorType) IsKnown() bool {
- switch r {
- case EventListResponseEventSessionErrorTypeSessionError:
- return true
- }
- return false
- }
- type EventListResponseEventServerConnected struct {
- Properties interface{} `json:"properties,required"`
- Type EventListResponseEventServerConnectedType `json:"type,required"`
- JSON eventListResponseEventServerConnectedJSON `json:"-"`
- }
- // eventListResponseEventServerConnectedJSON contains the JSON metadata for the
- // struct [EventListResponseEventServerConnected]
- type eventListResponseEventServerConnectedJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventServerConnected) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventServerConnectedJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventServerConnected) implementsEventListResponse() {}
- type EventListResponseEventServerConnectedType string
- const (
- EventListResponseEventServerConnectedTypeServerConnected EventListResponseEventServerConnectedType = "server.connected"
- )
- func (r EventListResponseEventServerConnectedType) IsKnown() bool {
- switch r {
- case EventListResponseEventServerConnectedTypeServerConnected:
- return true
- }
- return false
- }
- type EventListResponseEventIdeInstalled struct {
- Properties EventListResponseEventIdeInstalledProperties `json:"properties,required"`
- Type EventListResponseEventIdeInstalledType `json:"type,required"`
- JSON eventListResponseEventIdeInstalledJSON `json:"-"`
- }
- // eventListResponseEventIdeInstalledJSON contains the JSON metadata for the struct
- // [EventListResponseEventIdeInstalled]
- type eventListResponseEventIdeInstalledJSON struct {
- Properties apijson.Field
- Type apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventIdeInstalled) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventIdeInstalledJSON) RawJSON() string {
- return r.raw
- }
- func (r EventListResponseEventIdeInstalled) implementsEventListResponse() {}
- type EventListResponseEventIdeInstalledProperties struct {
- Ide string `json:"ide,required"`
- JSON eventListResponseEventIdeInstalledPropertiesJSON `json:"-"`
- }
- // eventListResponseEventIdeInstalledPropertiesJSON contains the JSON metadata for
- // the struct [EventListResponseEventIdeInstalledProperties]
- type eventListResponseEventIdeInstalledPropertiesJSON struct {
- Ide apijson.Field
- raw string
- ExtraFields map[string]apijson.Field
- }
- func (r *EventListResponseEventIdeInstalledProperties) UnmarshalJSON(data []byte) (err error) {
- return apijson.UnmarshalRoot(data, r)
- }
- func (r eventListResponseEventIdeInstalledPropertiesJSON) RawJSON() string {
- return r.raw
- }
- type EventListResponseEventIdeInstalledType string
- const (
- EventListResponseEventIdeInstalledTypeIdeInstalled EventListResponseEventIdeInstalledType = "ide.installed"
- )
- func (r EventListResponseEventIdeInstalledType) IsKnown() bool {
- switch r {
- case EventListResponseEventIdeInstalledTypeIdeInstalled:
- return true
- }
- return false
- }
- type EventListResponseType string
- const (
- EventListResponseTypeInstallationUpdated EventListResponseType = "installation.updated"
- EventListResponseTypeLspClientDiagnostics EventListResponseType = "lsp.client.diagnostics"
- EventListResponseTypeMessageUpdated EventListResponseType = "message.updated"
- EventListResponseTypeMessageRemoved EventListResponseType = "message.removed"
- EventListResponseTypeMessagePartUpdated EventListResponseType = "message.part.updated"
- EventListResponseTypeMessagePartRemoved EventListResponseType = "message.part.removed"
- EventListResponseTypeSessionCompacted EventListResponseType = "session.compacted"
- EventListResponseTypePermissionUpdated EventListResponseType = "permission.updated"
- EventListResponseTypePermissionReplied EventListResponseType = "permission.replied"
- EventListResponseTypeFileEdited EventListResponseType = "file.edited"
- EventListResponseTypeFileWatcherUpdated EventListResponseType = "file.watcher.updated"
- EventListResponseTypeTodoUpdated EventListResponseType = "todo.updated"
- EventListResponseTypeSessionIdle EventListResponseType = "session.idle"
- EventListResponseTypeSessionUpdated EventListResponseType = "session.updated"
- EventListResponseTypeSessionDeleted EventListResponseType = "session.deleted"
- EventListResponseTypeSessionError EventListResponseType = "session.error"
- EventListResponseTypeServerConnected EventListResponseType = "server.connected"
- EventListResponseTypeIdeInstalled EventListResponseType = "ide.installed"
- )
- func (r EventListResponseType) IsKnown() bool {
- switch r {
- case EventListResponseTypeInstallationUpdated, EventListResponseTypeLspClientDiagnostics, EventListResponseTypeMessageUpdated, EventListResponseTypeMessageRemoved, EventListResponseTypeMessagePartUpdated, EventListResponseTypeMessagePartRemoved, EventListResponseTypeSessionCompacted, EventListResponseTypePermissionUpdated, EventListResponseTypePermissionReplied, EventListResponseTypeFileEdited, EventListResponseTypeFileWatcherUpdated, EventListResponseTypeTodoUpdated, EventListResponseTypeSessionIdle, EventListResponseTypeSessionUpdated, EventListResponseTypeSessionDeleted, EventListResponseTypeSessionError, EventListResponseTypeServerConnected, EventListResponseTypeIdeInstalled:
- return true
- }
- return false
- }
- type EventListParams struct {
- Directory param.Field[string] `query:"directory"`
- }
- // URLQuery serializes [EventListParams]'s query parameters as `url.Values`.
- func (r EventListParams) URLQuery() (v url.Values) {
- return apiquery.MarshalWithSettings(r, apiquery.QuerySettings{
- ArrayFormat: apiquery.ArrayQueryFormatComma,
- NestedFormat: apiquery.NestedQueryFormatBrackets,
- })
- }
|