diff --git a/.changeset/great-birds-work.md b/.changeset/great-birds-work.md new file mode 100644 index 000000000..b72d78585 --- /dev/null +++ b/.changeset/great-birds-work.md @@ -0,0 +1,5 @@ +--- +"@livekit/protocol": patch +--- + +add local protojson with permissive defaults diff --git a/.changeset/many-seas-fry.md b/.changeset/many-seas-fry.md deleted file mode 100644 index a31f49c77..000000000 --- a/.changeset/many-seas-fry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fake-scope/fake-pkg": patch ---- - -Add turn detection protobufs diff --git a/.changeset/sip-fix-trunk-encryption.md b/.changeset/sip-fix-trunk-encryption.md new file mode 100644 index 000000000..f1838449f --- /dev/null +++ b/.changeset/sip-fix-trunk-encryption.md @@ -0,0 +1,6 @@ +--- +"@livekit/protocol": patch +"github.com/livekit/protocol": patch +--- + +Fix SIP trunk-level MediaEncryption being silently dropped on outbound and inbound calls. The early `req.Upgrade()` / `rule.Upgrade()` calls pinned `Media.Encryption` to the (legacy) request/rule field before the trunk's MediaEncryption was merged, causing INVITEs to omit SRTP when only the trunk had it configured. diff --git a/.github/workflows/generate.yaml b/.github/workflows/generate.yaml index dbbf7e46f..1dfb1c3d0 100644 --- a/.github/workflows/generate.yaml +++ b/.github/workflows/generate.yaml @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 with: - go-version: ">=1.20" + go-version: ">=1.26" - name: Go mod tidy run: go mod tidy diff --git a/.golangci.yml b/.golangci.yml index 8fc7a14e7..118a9463b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -2,8 +2,18 @@ version: "2" linters: default: none enable: + - depguard - staticcheck settings: + depguard: + rules: + protojson: + files: + - "$all" + - "!**/utils/protojson/**" + deny: + - pkg: google.golang.org/protobuf/encoding/protojson + desc: use github.com/livekit/protocol/utils/protojson instead — it sets DiscardUnknown by default to avoid schema-drift footguns staticcheck: checks: - "all" @@ -14,3 +24,5 @@ linters: - "-ST1022" - "-SA1019" - "-QF1008" + exclusions: + generated: strict diff --git a/CHANGELOG.md b/CHANGELOG.md index 45fa17019..2a5b5411c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # github.com/livekit/protocol +## 1.45.8 + +### Patch Changes + +- Allow setting a list of SIP codecs for SDP. - [#1530](https://github.com/livekit/protocol/pull/1530) ([@dennwc](https://github.com/dennwc)) + +- fix: ensure we don't reject tokens on unknown fields - [#1536](https://github.com/livekit/protocol/pull/1536) ([@davidzhao](https://github.com/davidzhao)) + +## 1.45.7 + +### Patch Changes + +- feat(agents): add session events for amd - [#1526](https://github.com/livekit/protocol/pull/1526) ([@chenghao-mou](https://github.com/chenghao-mou)) + +## 1.45.6 + +### Patch Changes + +- Add turn detection protobufs - [#1485](https://github.com/livekit/protocol/pull/1485) ([@chenghao-mou](https://github.com/chenghao-mou)) + +- fix change set for eot changes - [#1515](https://github.com/livekit/protocol/pull/1515) ([@chenghao-mou](https://github.com/chenghao-mou)) + ## 1.45.5 ## 1.45.4 diff --git a/agent/environment.go b/agent/environment.go new file mode 100644 index 000000000..24acbb323 --- /dev/null +++ b/agent/environment.go @@ -0,0 +1,24 @@ +package agent + +import "fmt" + +const MaxDeploymentLength = 64 + +func ValidateDeployment(deployment string) error { + if deployment == "" { + return nil + } + if len(deployment) > MaxDeploymentLength { + return fmt.Errorf("deployment exceeds %d bytes", MaxDeploymentLength) + } + for i := 0; i < len(deployment); i++ { + c := deployment[i] + switch { + case c == '_': + return fmt.Errorf("deployment contains reserved character %q", c) + case c <= ' ' || c == 0x7f: + return fmt.Errorf("deployment contains whitespace or control byte at position %d", i) + } + } + return nil +} diff --git a/auth/grants.go b/auth/grants.go index df5e684bd..69719f7b9 100644 --- a/auth/grants.go +++ b/auth/grants.go @@ -22,19 +22,15 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" "golang.org/x/exp/slices" - "google.golang.org/protobuf/encoding/protojson" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" "github.com/livekit/protocol/utils" + "github.com/livekit/protocol/utils/protojson" ) type RoomConfiguration livekit.RoomConfiguration -var tokenMarshaler = protojson.MarshalOptions{ - EmitDefaultValues: false, -} - var ErrSensitiveCredentials = errors.New("room configuration should not contain sensitive credentials") func (c *RoomConfiguration) Clone() *RoomConfiguration { @@ -45,7 +41,7 @@ func (c *RoomConfiguration) Clone() *RoomConfiguration { } func (c *RoomConfiguration) MarshalJSON() ([]byte, error) { - return tokenMarshaler.Marshal((*livekit.RoomConfiguration)(c)) + return protojson.Marshal((*livekit.RoomConfiguration)(c)) } func (c *RoomConfiguration) UnmarshalJSON(data []byte) error { diff --git a/auth/verifier_test.go b/auth/verifier_test.go index 37d8f2ab3..c608f340f 100644 --- a/auth/verifier_test.go +++ b/auth/verifier_test.go @@ -18,7 +18,9 @@ import ( "testing" "time" + "github.com/go-jose/go-jose/v3" "github.com/go-jose/go-jose/v3/json" + "github.com/go-jose/go-jose/v3/jwt" "github.com/stretchr/testify/require" "github.com/livekit/protocol/auth" @@ -95,6 +97,51 @@ func TestVerifier(t *testing.T) { require.EqualValues(t, attrs, decoded.Attributes) }) + t.Run("unknown fields are ignored for forward compatibility", func(t *testing.T) { + // Simulate a token issued by a newer client whose claims include fields + // this server does not yet know about. The server should still accept the + // token rather than failing with `unknown field`. This guards against + // requiring server upgrades before client upgrades can roll out. + sig, err := jose.NewSigner( + jose.SigningKey{Algorithm: jose.HS256, Key: []byte(secret)}, + (&jose.SignerOptions{}).WithType("JWT"), + ) + require.NoError(t, err) + + claims := map[string]interface{}{ + "iss": apiKey, + "sub": "me", + "nbf": jwt.NewNumericDate(time.Now()), + "exp": jwt.NewNumericDate(time.Now().Add(time.Minute)), + // unknown top-level claim grants field + "someFutureGrant": map[string]interface{}{"enabled": true}, + "video": map[string]interface{}{ + "roomJoin": true, + "room": "myroom", + // unknown field inside a known grant + "someFutureVideoField": "future-value", + }, + "roomConfig": map[string]interface{}{ + "name": "myroom", + // unknown field inside a protojson-decoded message + "someFutureRoomConfigField": "future-value", + }, + } + token, err := jwt.Signed(sig).Claims(claims).CompactSerialize() + require.NoError(t, err) + + v, err := auth.ParseAPIToken(token) + require.NoError(t, err) + + _, decoded, err := v.Verify(secret) + require.NoError(t, err) + require.NotNil(t, decoded.Video) + require.Equal(t, "myroom", decoded.Video.Room) + require.True(t, decoded.Video.RoomJoin) + require.NotNil(t, decoded.RoomConfig) + require.Equal(t, "myroom", decoded.RoomConfig.Name) + }) + t.Run("nil permissions are handled", func(t *testing.T) { grant := &auth.VideoGrant{ Room: "myroom", diff --git a/go.mod b/go.mod index 0d35c7cc1..4a531e084 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/livekit/protocol -go 1.25.0 +go 1.26 require ( buf.build/go/protoyaml v0.6.0 @@ -30,28 +30,28 @@ require ( github.com/stretchr/testify v1.11.1 github.com/twitchtv/twirp v8.1.3+incompatible github.com/zeebo/xxh3 v1.0.2 - go.opentelemetry.io/otel v1.40.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0 - go.opentelemetry.io/otel/sdk v1.40.0 - go.opentelemetry.io/otel/trace v1.40.0 + go.opentelemetry.io/otel v1.43.0 + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 + go.opentelemetry.io/otel/sdk v1.43.0 + go.opentelemetry.io/otel/trace v1.43.0 go.uber.org/atomic v1.11.0 go.uber.org/multierr v1.11.0 go.uber.org/zap v1.27.0 go.uber.org/zap/exp v0.3.0 golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b - golang.org/x/mod v0.29.0 - golang.org/x/sys v0.40.0 - golang.org/x/text v0.31.0 - google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 - google.golang.org/grpc v1.77.0 - google.golang.org/protobuf v1.36.10 + golang.org/x/mod v0.34.0 + golang.org/x/sys v0.43.0 + golang.org/x/text v0.36.0 + google.golang.org/genproto/googleapis/rpc v0.0.0-20260427160629-7cedc36a6bc4 + google.golang.org/grpc v1.80.0 + google.golang.org/protobuf v1.36.11 gopkg.in/yaml.v3 v3.0.1 ) require ( buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.6-20250625184727-c923a0c2a132.1 // indirect buf.build/go/protovalidate v0.13.1 // indirect - cel.dev/expr v0.24.0 // indirect + cel.dev/expr v0.25.1 // indirect github.com/antlr4-go/antlr/v4 v4.13.1 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cenkalti/backoff/v5 v5.0.3 // indirect @@ -61,7 +61,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/google/cel-go v0.25.0 // indirect github.com/google/uuid v1.6.0 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect github.com/klauspost/compress v1.18.0 // indirect github.com/klauspost/cpuid/v2 v2.2.11 // indirect @@ -88,12 +88,12 @@ require ( github.com/stoewer/go-strcase v1.3.1 // indirect github.com/wlynxg/anet v0.0.5 // indirect go.opentelemetry.io/auto/sdk v1.2.1 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect - go.opentelemetry.io/otel/metric v1.40.0 // indirect - go.opentelemetry.io/proto/otlp v1.9.0 // indirect - golang.org/x/crypto v0.45.0 // indirect - golang.org/x/net v0.47.0 // indirect - golang.org/x/sync v0.18.0 // indirect - golang.org/x/tools v0.38.0 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 // indirect + go.opentelemetry.io/otel/metric v1.43.0 // indirect + go.opentelemetry.io/proto/otlp v1.10.0 // indirect + golang.org/x/crypto v0.50.0 // indirect + golang.org/x/net v0.53.0 // indirect + golang.org/x/sync v0.20.0 // indirect + golang.org/x/tools v0.43.0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20260427160629-7cedc36a6bc4 // indirect ) diff --git a/go.sum b/go.sum index 1b324dfb8..af7e08704 100644 --- a/go.sum +++ b/go.sum @@ -4,8 +4,8 @@ buf.build/go/protovalidate v0.13.1 h1:6loHDTWdY/1qmqmt1MijBIKeN4T9Eajrqb9isT1W1s buf.build/go/protovalidate v0.13.1/go.mod h1:C/QcOn/CjXRn5udUwYBiLs8y1TGy7RS+GOSKqjS77aU= buf.build/go/protoyaml v0.6.0 h1:Nzz1lvcXF8YgNZXk+voPPwdU8FjDPTUV4ndNTXN0n2w= buf.build/go/protoyaml v0.6.0/go.mod h1:RgUOsBu/GYKLDSIRgQXniXbNgFlGEZnQpRAUdLAFV2Q= -cel.dev/expr v0.24.0 h1:56OvJKSH3hDGL0ml5uSxZmz3/3Pq4tJ+fb1unVLAFcY= -cel.dev/expr v0.24.0/go.mod h1:hLPLo1W4QUmuYdA72RBX06QTs6MXw941piREPl3Yfiw= +cel.dev/expr v0.25.1 h1:1KrZg61W6TWSxuNZ37Xy49ps13NUovb66QLprthtwi4= +cel.dev/expr v0.25.1/go.mod h1:hrXvqGP6G6gyx8UAHSHJ5RGk//1Oj5nXQ2NI02Nrsg4= dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= @@ -75,8 +75,8 @@ github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaU github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 h1:NmZ1PKzSTQbuGHw9DGPFomqkkLWMC+vZCkfs+FHv1Vg= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3/go.mod h1:zQrxl1YP88HQlA6i9c63DSVPFklWpGX4OWAc9bFuaH4= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 h1:5VipnvEpbqr2gA2VbM+nYVbkIF28c5ZQfqCBQ5g2xfk= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0/go.mod h1:Hyl3n6Twe1hvtd9XUXDec4pTvgMSEixRuQKPTMH2bNs= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= @@ -217,22 +217,22 @@ github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= -go.opentelemetry.io/otel v1.40.0 h1:oA5YeOcpRTXq6NN7frwmwFR0Cn3RhTVZvXsP4duvCms= -go.opentelemetry.io/otel v1.40.0/go.mod h1:IMb+uXZUKkMXdPddhwAHm6UfOwJyh4ct1ybIlV14J0g= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 h1:f0cb2XPmrqn4XMy9PNliTgRKJgS5WcL/u0/WRYGz4t0= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0/go.mod h1:vnakAaFckOMiMtOIhFI2MNH4FYrZzXCYxmb1LlhoGz8= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0 h1:Ckwye2FpXkYgiHX7fyVrN1uA/UYd9ounqqTuSNAv0k4= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0/go.mod h1:teIFJh5pW2y+AN7riv6IBPX2DuesS3HgP39mwOspKwU= -go.opentelemetry.io/otel/metric v1.40.0 h1:rcZe317KPftE2rstWIBitCdVp89A2HqjkxR3c11+p9g= -go.opentelemetry.io/otel/metric v1.40.0/go.mod h1:ib/crwQH7N3r5kfiBZQbwrTge743UDc7DTFVZrrXnqc= -go.opentelemetry.io/otel/sdk v1.40.0 h1:KHW/jUzgo6wsPh9At46+h4upjtccTmuZCFAc9OJ71f8= -go.opentelemetry.io/otel/sdk v1.40.0/go.mod h1:Ph7EFdYvxq72Y8Li9q8KebuYUr2KoeyHx0DRMKrYBUE= -go.opentelemetry.io/otel/sdk/metric v1.40.0 h1:mtmdVqgQkeRxHgRv4qhyJduP3fYJRMX4AtAlbuWdCYw= -go.opentelemetry.io/otel/sdk/metric v1.40.0/go.mod h1:4Z2bGMf0KSK3uRjlczMOeMhKU2rhUqdWNoKcYrtcBPg= -go.opentelemetry.io/otel/trace v1.40.0 h1:WA4etStDttCSYuhwvEa8OP8I5EWu24lkOzp+ZYblVjw= -go.opentelemetry.io/otel/trace v1.40.0/go.mod h1:zeAhriXecNGP/s2SEG3+Y8X9ujcJOTqQ5RgdEJcawiA= -go.opentelemetry.io/proto/otlp v1.9.0 h1:l706jCMITVouPOqEnii2fIAuO3IVGBRPV5ICjceRb/A= -go.opentelemetry.io/proto/otlp v1.9.0/go.mod h1:xE+Cx5E/eEHw+ISFkwPLwCZefwVjY+pqKg1qcK03+/4= +go.opentelemetry.io/otel v1.43.0 h1:mYIM03dnh5zfN7HautFE4ieIig9amkNANT+xcVxAj9I= +go.opentelemetry.io/otel v1.43.0/go.mod h1:JuG+u74mvjvcm8vj8pI5XiHy1zDeoCS2LB1spIq7Ay0= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 h1:88Y4s2C8oTui1LGM6bTWkw0ICGcOLCAI5l6zsD1j20k= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0/go.mod h1:Vl1/iaggsuRlrHf/hfPJPvVag77kKyvrLeD10kpMl+A= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 h1:3iZJKlCZufyRzPzlQhUIWVmfltrXuGyfjREgGP3UUjc= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0/go.mod h1:/G+nUPfhq2e+qiXMGxMwumDrP5jtzU+mWN7/sjT2rak= +go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM= +go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY= +go.opentelemetry.io/otel/sdk v1.43.0 h1:pi5mE86i5rTeLXqoF/hhiBtUNcrAGHLKQdhg4h4V9Dg= +go.opentelemetry.io/otel/sdk v1.43.0/go.mod h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg= +go.opentelemetry.io/otel/sdk/metric v1.43.0 h1:S88dyqXjJkuBNLeMcVPRFXpRw2fuwdvfCGLEo89fDkw= +go.opentelemetry.io/otel/sdk/metric v1.43.0/go.mod h1:C/RJtwSEJ5hzTiUz5pXF1kILHStzb9zFlIEe85bhj6A= +go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A= +go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0= +go.opentelemetry.io/proto/otlp v1.10.0 h1:IQRWgT5srOCYfiWnpqUYz9CVmbO8bFmKcwYxpuCSL2g= +go.opentelemetry.io/proto/otlp v1.10.0/go.mod h1:/CV4QoCR/S9yaPj8utp3lvQPoqMtxXdzn7ozvvozVqk= go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= @@ -246,26 +246,26 @@ go.uber.org/zap/exp v0.3.0/go.mod h1:5I384qq7XGxYyByIhHm6jg5CHkGY0nsTfbDLgDDlgJQ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= -golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q= -golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4= +golang.org/x/crypto v0.50.0 h1:zO47/JPrL6vsNkINmLoo/PH1gcxpls50DNogFvB5ZGI= +golang.org/x/crypto v0.50.0/go.mod h1:3muZ7vA7PBCE6xgPX7nkzzjiUq87kRItoJQM1Yo8S+Q= golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b h1:M2rDM6z3Fhozi9O7NWsxAkg/yqS/lQJ6PmkyIV3YP+o= golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b/go.mod h1:3//PLf8L/X+8b4vuAfHzxeRUl04Adcb341+IGKfnqS8= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.29.0 h1:HV8lRxZC4l2cr3Zq1LvtOsi/ThTgWnUk/y64QSs8GwA= -golang.org/x/mod v0.29.0/go.mod h1:NyhrlYXJ2H4eJiRy/WDBO6HMqZQ6q9nk4JzS3NuCK+w= +golang.org/x/mod v0.34.0 h1:xIHgNUUnW6sYkcM5Jleh05DvLOtwc6RitGHbDk4akRI= +golang.org/x/mod v0.34.0/go.mod h1:ykgH52iCZe79kzLLMhyCUzhMci+nQj+0XkbXpNYtVjY= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.47.0 h1:Mx+4dIFzqraBXUugkia1OOvlD6LemFo1ALMHjrXDOhY= -golang.org/x/net v0.47.0/go.mod h1:/jNxtkgq5yWUGYkaZGqo27cfGZ1c5Nen03aYrrKpVRU= +golang.org/x/net v0.53.0 h1:d+qAbo5L0orcWAr0a9JweQpjXF19LMXJE8Ey7hwOdUA= +golang.org/x/net v0.53.0/go.mod h1:JvMuJH7rrdiCfbeHoo3fCQU24Lf5JJwT9W3sJFulfgs= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.18.0 h1:kr88TuHDroi+UVf+0hZnirlk8o8T+4MrK6mr60WkH/I= -golang.org/x/sync v0.18.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= +golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4= +golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -274,8 +274,8 @@ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ= -golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI= +golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= @@ -287,25 +287,25 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/text v0.31.0 h1:aC8ghyu4JhP8VojJ2lEHBnochRno1sgL6nEi9WGFGMM= -golang.org/x/text v0.31.0/go.mod h1:tKRAlv61yKIjGGHX/4tP1LTbc13YSec1pxVEWXzfoeM= +golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg= +golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.38.0 h1:Hx2Xv8hISq8Lm16jvBZ2VQf+RLmbd7wVUsALibYI/IQ= -golang.org/x/tools v0.38.0/go.mod h1:yEsQ/d/YK8cjh0L6rZlY8tgtlKiBNTL14pGDJPJpYQs= +golang.org/x/tools v0.43.0 h1:12BdW9CeB3Z+J/I/wj34VMl8X+fEXBxVR90JeMX5E7s= +golang.org/x/tools v0.43.0/go.mod h1:uHkMso649BX2cZK6+RpuIPXS3ho2hZo4FVwfoy1vIk0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk= -gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E= -google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 h1:fCvbg86sFXwdrl5LgVcTEvNC+2txB5mgROGmRL5mrls= -google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:+rXWjjaukWZun3mLfjmVnQi18E1AsFbDN9QdJ5YXLto= -google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 h1:gRkg/vSppuSQoDjxyiGfN4Upv/h/DQmIR10ZU8dh4Ww= -google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= -google.golang.org/grpc v1.77.0 h1:wVVY6/8cGA6vvffn+wWK5ToddbgdU3d8MNENr4evgXM= -google.golang.org/grpc v1.77.0/go.mod h1:z0BY1iVj0q8E1uSQCjL9cppRj+gnZjzDnzV0dHhrNig= -google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= -google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= +gonum.org/v1/gonum v0.17.0 h1:VbpOemQlsSMrYmn7T2OUvQ4dqxQXU+ouZFQsZOx50z4= +gonum.org/v1/gonum v0.17.0/go.mod h1:El3tOrEuMpv2UdMrbNlKEh9vd86bmQ6vqIcDwxEOc1E= +google.golang.org/genproto/googleapis/api v0.0.0-20260427160629-7cedc36a6bc4 h1:yOzSCGPx+cp5VO7IxvZ9SBFF7j1tZVcNtlHR2iYKtVo= +google.golang.org/genproto/googleapis/api v0.0.0-20260427160629-7cedc36a6bc4/go.mod h1:Q9HWtNeE7tM9npdIsEvqXj1QJIvVoeAV3rtXtS715Cw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260427160629-7cedc36a6bc4 h1:tEkOQcXgF6dH1G+MVKZrfpYvozGrzb91k6ha7jireSM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260427160629-7cedc36a6bc4/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= +google.golang.org/grpc v1.80.0 h1:Xr6m2WmWZLETvUNvIUmeD5OAagMw3FiKmMlTdViWsHM= +google.golang.org/grpc v1.80.0/go.mod h1:ho/dLnxwi3EDJA4Zghp7k2Ec1+c2jqup0bFkw07bwF4= +google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE= +google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= diff --git a/infra/link_grpc.pb.go b/infra/link_grpc.pb.go index f5e2075a1..f65b33f63 100644 --- a/infra/link_grpc.pb.go +++ b/infra/link_grpc.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.1 +// - protoc-gen-go-grpc v1.6.2 // - protoc v4.23.4 // source: infra/link.proto diff --git a/livekit/agent/livekit_agent_session.pb.go b/livekit/agent/livekit_agent_session.pb.go index a32f5724c..a7f3faccd 100644 --- a/livekit/agent/livekit_agent_session.pb.go +++ b/livekit/agent/livekit_agent_session.pb.go @@ -10,6 +10,7 @@ import ( _ "github.com/livekit/protocol/livekit/logger" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + durationpb "google.golang.org/protobuf/types/known/durationpb" structpb "google.golang.org/protobuf/types/known/structpb" timestamppb "google.golang.org/protobuf/types/known/timestamppb" reflect "reflect" @@ -180,6 +181,64 @@ func (UserState) EnumDescriptor() ([]byte, []int) { return file_agent_livekit_agent_session_proto_rawDescGZIP(), []int{2} } +type AmdCategory int32 + +const ( + AmdCategory_AMD_UNKNOWN AmdCategory = 0 + AmdCategory_AMD_HUMAN AmdCategory = 1 + AmdCategory_AMD_MACHINE_IVR AmdCategory = 2 + AmdCategory_AMD_MACHINE_VM AmdCategory = 3 + AmdCategory_AMD_MACHINE_UNAVAILABLE AmdCategory = 4 + AmdCategory_AMD_UNCERTAIN AmdCategory = 5 +) + +// Enum value maps for AmdCategory. +var ( + AmdCategory_name = map[int32]string{ + 0: "AMD_UNKNOWN", + 1: "AMD_HUMAN", + 2: "AMD_MACHINE_IVR", + 3: "AMD_MACHINE_VM", + 4: "AMD_MACHINE_UNAVAILABLE", + 5: "AMD_UNCERTAIN", + } + AmdCategory_value = map[string]int32{ + "AMD_UNKNOWN": 0, + "AMD_HUMAN": 1, + "AMD_MACHINE_IVR": 2, + "AMD_MACHINE_VM": 3, + "AMD_MACHINE_UNAVAILABLE": 4, + "AMD_UNCERTAIN": 5, + } +) + +func (x AmdCategory) Enum() *AmdCategory { + p := new(AmdCategory) + *p = x + return p +} + +func (x AmdCategory) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (AmdCategory) Descriptor() protoreflect.EnumDescriptor { + return file_agent_livekit_agent_session_proto_enumTypes[3].Descriptor() +} + +func (AmdCategory) Type() protoreflect.EnumType { + return &file_agent_livekit_agent_session_proto_enumTypes[3] +} + +func (x AmdCategory) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use AmdCategory.Descriptor instead. +func (AmdCategory) EnumDescriptor() ([]byte, []int) { + return file_agent_livekit_agent_session_proto_rawDescGZIP(), []int{3} +} + type MetricsReport struct { state protoimpl.MessageState `protogen:"open.v1"` StartedSpeakingAt *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=started_speaking_at,json=startedSpeakingAt,proto3" json:"started_speaking_at,omitempty"` @@ -1351,6 +1410,7 @@ type AgentSessionEvent struct { // *AgentSessionEvent_Error_ // *AgentSessionEvent_OverlappingSpeech_ // *AgentSessionEvent_SessionUsageUpdated_ + // *AgentSessionEvent_AmdPrediction_ Event isAgentSessionEvent_Event `protobuf_oneof:"event"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -1472,6 +1532,15 @@ func (x *AgentSessionEvent) GetSessionUsageUpdated() *AgentSessionEvent_SessionU return nil } +func (x *AgentSessionEvent) GetAmdPrediction() *AgentSessionEvent_AmdPrediction { + if x != nil { + if x, ok := x.Event.(*AgentSessionEvent_AmdPrediction_); ok { + return x.AmdPrediction + } + } + return nil +} + type isAgentSessionEvent_Event interface { isAgentSessionEvent_Event() } @@ -1508,6 +1577,10 @@ type AgentSessionEvent_SessionUsageUpdated_ struct { SessionUsageUpdated *AgentSessionEvent_SessionUsageUpdated `protobuf:"bytes,17,opt,name=session_usage_updated,json=sessionUsageUpdated,proto3,oneof"` } +type AgentSessionEvent_AmdPrediction_ struct { + AmdPrediction *AgentSessionEvent_AmdPrediction `protobuf:"bytes,18,opt,name=amd_prediction,json=amdPrediction,proto3,oneof"` +} + func (*AgentSessionEvent_AgentStateChanged_) isAgentSessionEvent_Event() {} func (*AgentSessionEvent_UserStateChanged_) isAgentSessionEvent_Event() {} @@ -1524,6 +1597,8 @@ func (*AgentSessionEvent_OverlappingSpeech_) isAgentSessionEvent_Event() {} func (*AgentSessionEvent_SessionUsageUpdated_) isAgentSessionEvent_Event() {} +func (*AgentSessionEvent_AmdPrediction_) isAgentSessionEvent_Event() {} + type SessionRequest struct { state protoimpl.MessageState `protogen:"open.v1"` RequestId string `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` @@ -2650,6 +2725,82 @@ func (x *AgentSessionEvent_OverlappingSpeech) GetDetectedAt() *timestamppb.Times return nil } +type AgentSessionEvent_AmdPrediction struct { + state protoimpl.MessageState `protogen:"open.v1"` + SpeechDuration *durationpb.Duration `protobuf:"bytes,1,opt,name=speech_duration,json=speechDuration,proto3" json:"speech_duration,omitempty"` + Category AmdCategory `protobuf:"varint,2,opt,name=category,proto3,enum=livekit.agent.AmdCategory" json:"category,omitempty"` + Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"` + Transcript string `protobuf:"bytes,4,opt,name=transcript,proto3" json:"transcript,omitempty"` + Delay *durationpb.Duration `protobuf:"bytes,5,opt,name=delay,proto3" json:"delay,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *AgentSessionEvent_AmdPrediction) Reset() { + *x = AgentSessionEvent_AmdPrediction{} + mi := &file_agent_livekit_agent_session_proto_msgTypes[28] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *AgentSessionEvent_AmdPrediction) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AgentSessionEvent_AmdPrediction) ProtoMessage() {} + +func (x *AgentSessionEvent_AmdPrediction) ProtoReflect() protoreflect.Message { + mi := &file_agent_livekit_agent_session_proto_msgTypes[28] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use AgentSessionEvent_AmdPrediction.ProtoReflect.Descriptor instead. +func (*AgentSessionEvent_AmdPrediction) Descriptor() ([]byte, []int) { + return file_agent_livekit_agent_session_proto_rawDescGZIP(), []int{14, 7} +} + +func (x *AgentSessionEvent_AmdPrediction) GetSpeechDuration() *durationpb.Duration { + if x != nil { + return x.SpeechDuration + } + return nil +} + +func (x *AgentSessionEvent_AmdPrediction) GetCategory() AmdCategory { + if x != nil { + return x.Category + } + return AmdCategory_AMD_UNKNOWN +} + +func (x *AgentSessionEvent_AmdPrediction) GetReason() string { + if x != nil { + return x.Reason + } + return "" +} + +func (x *AgentSessionEvent_AmdPrediction) GetTranscript() string { + if x != nil { + return x.Transcript + } + return "" +} + +func (x *AgentSessionEvent_AmdPrediction) GetDelay() *durationpb.Duration { + if x != nil { + return x.Delay + } + return nil +} + type AgentSessionEvent_SessionUsageUpdated struct { state protoimpl.MessageState `protogen:"open.v1"` Usage *AgentSessionUsage `protobuf:"bytes,1,opt,name=usage,proto3" json:"usage,omitempty"` @@ -2659,7 +2810,7 @@ type AgentSessionEvent_SessionUsageUpdated struct { func (x *AgentSessionEvent_SessionUsageUpdated) Reset() { *x = AgentSessionEvent_SessionUsageUpdated{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[28] + mi := &file_agent_livekit_agent_session_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2671,7 +2822,7 @@ func (x *AgentSessionEvent_SessionUsageUpdated) String() string { func (*AgentSessionEvent_SessionUsageUpdated) ProtoMessage() {} func (x *AgentSessionEvent_SessionUsageUpdated) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[28] + mi := &file_agent_livekit_agent_session_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2684,7 +2835,7 @@ func (x *AgentSessionEvent_SessionUsageUpdated) ProtoReflect() protoreflect.Mess // Deprecated: Use AgentSessionEvent_SessionUsageUpdated.ProtoReflect.Descriptor instead. func (*AgentSessionEvent_SessionUsageUpdated) Descriptor() ([]byte, []int) { - return file_agent_livekit_agent_session_proto_rawDescGZIP(), []int{14, 7} + return file_agent_livekit_agent_session_proto_rawDescGZIP(), []int{14, 8} } func (x *AgentSessionEvent_SessionUsageUpdated) GetUsage() *AgentSessionUsage { @@ -2702,7 +2853,7 @@ type SessionRequest_Ping struct { func (x *SessionRequest_Ping) Reset() { *x = SessionRequest_Ping{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[29] + mi := &file_agent_livekit_agent_session_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2714,7 +2865,7 @@ func (x *SessionRequest_Ping) String() string { func (*SessionRequest_Ping) ProtoMessage() {} func (x *SessionRequest_Ping) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[29] + mi := &file_agent_livekit_agent_session_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2738,7 +2889,7 @@ type SessionRequest_GetChatHistory struct { func (x *SessionRequest_GetChatHistory) Reset() { *x = SessionRequest_GetChatHistory{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[30] + mi := &file_agent_livekit_agent_session_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2750,7 +2901,7 @@ func (x *SessionRequest_GetChatHistory) String() string { func (*SessionRequest_GetChatHistory) ProtoMessage() {} func (x *SessionRequest_GetChatHistory) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[30] + mi := &file_agent_livekit_agent_session_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2775,7 +2926,7 @@ type SessionRequest_RunInput struct { func (x *SessionRequest_RunInput) Reset() { *x = SessionRequest_RunInput{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[31] + mi := &file_agent_livekit_agent_session_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2787,7 +2938,7 @@ func (x *SessionRequest_RunInput) String() string { func (*SessionRequest_RunInput) ProtoMessage() {} func (x *SessionRequest_RunInput) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[31] + mi := &file_agent_livekit_agent_session_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2818,7 +2969,7 @@ type SessionRequest_GetAgentInfo struct { func (x *SessionRequest_GetAgentInfo) Reset() { *x = SessionRequest_GetAgentInfo{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[32] + mi := &file_agent_livekit_agent_session_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2830,7 +2981,7 @@ func (x *SessionRequest_GetAgentInfo) String() string { func (*SessionRequest_GetAgentInfo) ProtoMessage() {} func (x *SessionRequest_GetAgentInfo) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[32] + mi := &file_agent_livekit_agent_session_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2854,7 +3005,7 @@ type SessionRequest_GetSessionState struct { func (x *SessionRequest_GetSessionState) Reset() { *x = SessionRequest_GetSessionState{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[33] + mi := &file_agent_livekit_agent_session_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2866,7 +3017,7 @@ func (x *SessionRequest_GetSessionState) String() string { func (*SessionRequest_GetSessionState) ProtoMessage() {} func (x *SessionRequest_GetSessionState) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[33] + mi := &file_agent_livekit_agent_session_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2890,7 +3041,7 @@ type SessionRequest_GetRTCStats struct { func (x *SessionRequest_GetRTCStats) Reset() { *x = SessionRequest_GetRTCStats{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[34] + mi := &file_agent_livekit_agent_session_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2902,7 +3053,7 @@ func (x *SessionRequest_GetRTCStats) String() string { func (*SessionRequest_GetRTCStats) ProtoMessage() {} func (x *SessionRequest_GetRTCStats) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[34] + mi := &file_agent_livekit_agent_session_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2926,7 +3077,7 @@ type SessionRequest_GetSessionUsage struct { func (x *SessionRequest_GetSessionUsage) Reset() { *x = SessionRequest_GetSessionUsage{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[35] + mi := &file_agent_livekit_agent_session_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2938,7 +3089,7 @@ func (x *SessionRequest_GetSessionUsage) String() string { func (*SessionRequest_GetSessionUsage) ProtoMessage() {} func (x *SessionRequest_GetSessionUsage) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[35] + mi := &file_agent_livekit_agent_session_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2962,7 +3113,7 @@ type SessionRequest_GetFrameworkInfo struct { func (x *SessionRequest_GetFrameworkInfo) Reset() { *x = SessionRequest_GetFrameworkInfo{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[36] + mi := &file_agent_livekit_agent_session_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2974,7 +3125,7 @@ func (x *SessionRequest_GetFrameworkInfo) String() string { func (*SessionRequest_GetFrameworkInfo) ProtoMessage() {} func (x *SessionRequest_GetFrameworkInfo) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[36] + mi := &file_agent_livekit_agent_session_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2998,7 +3149,7 @@ type SessionResponse_Pong struct { func (x *SessionResponse_Pong) Reset() { *x = SessionResponse_Pong{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[37] + mi := &file_agent_livekit_agent_session_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3010,7 +3161,7 @@ func (x *SessionResponse_Pong) String() string { func (*SessionResponse_Pong) ProtoMessage() {} func (x *SessionResponse_Pong) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[37] + mi := &file_agent_livekit_agent_session_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3035,7 +3186,7 @@ type SessionResponse_GetChatHistoryResponse struct { func (x *SessionResponse_GetChatHistoryResponse) Reset() { *x = SessionResponse_GetChatHistoryResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[38] + mi := &file_agent_livekit_agent_session_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3047,7 +3198,7 @@ func (x *SessionResponse_GetChatHistoryResponse) String() string { func (*SessionResponse_GetChatHistoryResponse) ProtoMessage() {} func (x *SessionResponse_GetChatHistoryResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[38] + mi := &file_agent_livekit_agent_session_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3082,7 +3233,7 @@ type SessionResponse_GetAgentInfoResponse struct { func (x *SessionResponse_GetAgentInfoResponse) Reset() { *x = SessionResponse_GetAgentInfoResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[39] + mi := &file_agent_livekit_agent_session_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3094,7 +3245,7 @@ func (x *SessionResponse_GetAgentInfoResponse) String() string { func (*SessionResponse_GetAgentInfoResponse) ProtoMessage() {} func (x *SessionResponse_GetAgentInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[39] + mi := &file_agent_livekit_agent_session_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3147,7 +3298,7 @@ type SessionResponse_RunInputResponse struct { func (x *SessionResponse_RunInputResponse) Reset() { *x = SessionResponse_RunInputResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[40] + mi := &file_agent_livekit_agent_session_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3159,7 +3310,7 @@ func (x *SessionResponse_RunInputResponse) String() string { func (*SessionResponse_RunInputResponse) ProtoMessage() {} func (x *SessionResponse_RunInputResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[40] + mi := &file_agent_livekit_agent_session_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3195,7 +3346,7 @@ type SessionResponse_GetSessionStateResponse struct { func (x *SessionResponse_GetSessionStateResponse) Reset() { *x = SessionResponse_GetSessionStateResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[41] + mi := &file_agent_livekit_agent_session_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3207,7 +3358,7 @@ func (x *SessionResponse_GetSessionStateResponse) String() string { func (*SessionResponse_GetSessionStateResponse) ProtoMessage() {} func (x *SessionResponse_GetSessionStateResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[41] + mi := &file_agent_livekit_agent_session_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3268,7 +3419,7 @@ type SessionResponse_GetRTCStatsResponse struct { func (x *SessionResponse_GetRTCStatsResponse) Reset() { *x = SessionResponse_GetRTCStatsResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[42] + mi := &file_agent_livekit_agent_session_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3280,7 +3431,7 @@ func (x *SessionResponse_GetRTCStatsResponse) String() string { func (*SessionResponse_GetRTCStatsResponse) ProtoMessage() {} func (x *SessionResponse_GetRTCStatsResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[42] + mi := &file_agent_livekit_agent_session_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3320,7 +3471,7 @@ type SessionResponse_GetSessionUsageResponse struct { func (x *SessionResponse_GetSessionUsageResponse) Reset() { *x = SessionResponse_GetSessionUsageResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[43] + mi := &file_agent_livekit_agent_session_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3332,7 +3483,7 @@ func (x *SessionResponse_GetSessionUsageResponse) String() string { func (*SessionResponse_GetSessionUsageResponse) ProtoMessage() {} func (x *SessionResponse_GetSessionUsageResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[43] + mi := &file_agent_livekit_agent_session_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3372,7 +3523,7 @@ type SessionResponse_GetFrameworkInfoResponse struct { func (x *SessionResponse_GetFrameworkInfoResponse) Reset() { *x = SessionResponse_GetFrameworkInfoResponse{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[44] + mi := &file_agent_livekit_agent_session_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3384,7 +3535,7 @@ func (x *SessionResponse_GetFrameworkInfoResponse) String() string { func (*SessionResponse_GetFrameworkInfoResponse) ProtoMessage() {} func (x *SessionResponse_GetFrameworkInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[44] + mi := &file_agent_livekit_agent_session_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3422,7 +3573,7 @@ type AgentSessionMessage_ConsoleIO struct { func (x *AgentSessionMessage_ConsoleIO) Reset() { *x = AgentSessionMessage_ConsoleIO{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[46] + mi := &file_agent_livekit_agent_session_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3434,7 +3585,7 @@ func (x *AgentSessionMessage_ConsoleIO) String() string { func (*AgentSessionMessage_ConsoleIO) ProtoMessage() {} func (x *AgentSessionMessage_ConsoleIO) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[46] + mi := &file_agent_livekit_agent_session_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3462,7 +3613,7 @@ type AgentSessionMessage_ConsoleIO_AudioFrame struct { func (x *AgentSessionMessage_ConsoleIO_AudioFrame) Reset() { *x = AgentSessionMessage_ConsoleIO_AudioFrame{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[47] + mi := &file_agent_livekit_agent_session_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3474,7 +3625,7 @@ func (x *AgentSessionMessage_ConsoleIO_AudioFrame) String() string { func (*AgentSessionMessage_ConsoleIO_AudioFrame) ProtoMessage() {} func (x *AgentSessionMessage_ConsoleIO_AudioFrame) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[47] + mi := &file_agent_livekit_agent_session_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3526,7 +3677,7 @@ type AgentSessionMessage_ConsoleIO_AudioPlaybackFlush struct { func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFlush) Reset() { *x = AgentSessionMessage_ConsoleIO_AudioPlaybackFlush{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[48] + mi := &file_agent_livekit_agent_session_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3538,7 +3689,7 @@ func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFlush) String() string { func (*AgentSessionMessage_ConsoleIO_AudioPlaybackFlush) ProtoMessage() {} func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFlush) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[48] + mi := &file_agent_livekit_agent_session_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3562,7 +3713,7 @@ type AgentSessionMessage_ConsoleIO_AudioPlaybackClear struct { func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackClear) Reset() { *x = AgentSessionMessage_ConsoleIO_AudioPlaybackClear{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[49] + mi := &file_agent_livekit_agent_session_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3574,7 +3725,7 @@ func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackClear) String() string { func (*AgentSessionMessage_ConsoleIO_AudioPlaybackClear) ProtoMessage() {} func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackClear) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[49] + mi := &file_agent_livekit_agent_session_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3598,7 +3749,7 @@ type AgentSessionMessage_ConsoleIO_AudioPlaybackFinished struct { func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFinished) Reset() { *x = AgentSessionMessage_ConsoleIO_AudioPlaybackFinished{} - mi := &file_agent_livekit_agent_session_proto_msgTypes[50] + mi := &file_agent_livekit_agent_session_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3610,7 +3761,7 @@ func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFinished) String() string { func (*AgentSessionMessage_ConsoleIO_AudioPlaybackFinished) ProtoMessage() {} func (x *AgentSessionMessage_ConsoleIO_AudioPlaybackFinished) ProtoReflect() protoreflect.Message { - mi := &file_agent_livekit_agent_session_proto_msgTypes[50] + mi := &file_agent_livekit_agent_session_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3630,7 +3781,7 @@ var File_agent_livekit_agent_session_proto protoreflect.FileDescriptor const file_agent_livekit_agent_session_proto_rawDesc = "" + "\n" + - "!agent/livekit_agent_session.proto\x12\rlivekit.agent\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x14logger/options.proto\"\xcd\x04\n" + + "!agent/livekit_agent_session.proto\x12\rlivekit.agent\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x14logger/options.proto\"\xcd\x04\n" + "\rMetricsReport\x12J\n" + "\x13started_speaking_at\x18\x01 \x01(\v2\x1a.google.protobuf.TimestampR\x11startedSpeakingAt\x12J\n" + "\x13stopped_speaking_at\x18\x02 \x01(\v2\x1a.google.protobuf.TimestampR\x11stoppedSpeakingAt\x124\n" + @@ -3767,7 +3918,7 @@ const file_agent_livekit_agent_session_proto_rawDesc = "" + "\x05usage\"O\n" + "\x11AgentSessionUsage\x12:\n" + "\vmodel_usage\x18\x01 \x03(\v2\x19.livekit.agent.ModelUsageR\n" + - "modelUsage\"\x92\x0f\n" + + "modelUsage\"\xe2\x11\n" + "\x11AgentSessionEvent\x129\n" + "\n" + "created_at\x18\x01 \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x12d\n" + @@ -3779,7 +3930,8 @@ const file_agent_livekit_agent_session_proto_rawDesc = "" + "\x17function_tools_executed\x18\x0e \x01(\v26.livekit.agent.AgentSessionEvent.FunctionToolsExecutedH\x00R\x15functionToolsExecuted\x12>\n" + "\x05error\x18\x0f \x01(\v2&.livekit.agent.AgentSessionEvent.ErrorH\x00R\x05error\x12c\n" + "\x12overlapping_speech\x18\x10 \x01(\v22.livekit.agent.AgentSessionEvent.OverlappingSpeechH\x00R\x11overlappingSpeech\x12j\n" + - "\x15session_usage_updated\x18\x11 \x01(\v24.livekit.agent.AgentSessionEvent.SessionUsageUpdatedH\x00R\x13sessionUsageUpdated\x1a\x83\x01\n" + + "\x15session_usage_updated\x18\x11 \x01(\v24.livekit.agent.AgentSessionEvent.SessionUsageUpdatedH\x00R\x13sessionUsageUpdated\x12W\n" + + "\x0eamd_prediction\x18\x12 \x01(\v2..livekit.agent.AgentSessionEvent.AmdPredictionH\x00R\ramdPrediction\x1a\x83\x01\n" + "\x11AgentStateChanged\x126\n" + "\told_state\x18\x01 \x01(\x0e2\x19.livekit.agent.AgentStateR\boldState\x126\n" + "\tnew_state\x18\x02 \x01(\x0e2\x19.livekit.agent.AgentStateR\bnewState\x1a\x80\x01\n" + @@ -3806,7 +3958,15 @@ const file_agent_livekit_agent_session_proto_rawDesc = "" + "\x0fdetection_delay\x18\x03 \x01(\x01R\x0edetectionDelay\x12;\n" + "\vdetected_at\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampR\n" + "detectedAtB\x15\n" + - "\x13_overlap_started_at\x1aM\n" + + "\x13_overlap_started_at\x1a\xf4\x01\n" + + "\rAmdPrediction\x12B\n" + + "\x0fspeech_duration\x18\x01 \x01(\v2\x19.google.protobuf.DurationR\x0espeechDuration\x126\n" + + "\bcategory\x18\x02 \x01(\x0e2\x1a.livekit.agent.AmdCategoryR\bcategory\x12\x16\n" + + "\x06reason\x18\x03 \x01(\tR\x06reason\x12\x1e\n" + + "\n" + + "transcript\x18\x04 \x01(\tR\n" + + "transcript\x12/\n" + + "\x05delay\x18\x05 \x01(\v2\x19.google.protobuf.DurationR\x05delay\x1aM\n" + "\x13SessionUsageUpdated\x126\n" + "\x05usage\x18\x01 \x01(\v2 .livekit.agent.AgentSessionUsageR\x05usageB\a\n" + "\x05event\"\xe7\x06\n" + @@ -3920,7 +4080,14 @@ const file_agent_livekit_agent_session_proto_rawDesc = "" + "\tUserState\x12\x0f\n" + "\vUS_SPEAKING\x10\x00\x12\x10\n" + "\fUS_LISTENING\x10\x01\x12\v\n" + - "\aUS_AWAY\x10\x02B+Z)github.com/livekit/protocol/livekit/agentb\x06proto3" + "\aUS_AWAY\x10\x02*\x86\x01\n" + + "\vAmdCategory\x12\x0f\n" + + "\vAMD_UNKNOWN\x10\x00\x12\r\n" + + "\tAMD_HUMAN\x10\x01\x12\x13\n" + + "\x0fAMD_MACHINE_IVR\x10\x02\x12\x12\n" + + "\x0eAMD_MACHINE_VM\x10\x03\x12\x1b\n" + + "\x17AMD_MACHINE_UNAVAILABLE\x10\x04\x12\x11\n" + + "\rAMD_UNCERTAIN\x10\x05B+Z)github.com/livekit/protocol/livekit/agentb\x06proto3" var ( file_agent_livekit_agent_session_proto_rawDescOnce sync.Once @@ -3934,148 +4101,155 @@ func file_agent_livekit_agent_session_proto_rawDescGZIP() []byte { return file_agent_livekit_agent_session_proto_rawDescData } -var file_agent_livekit_agent_session_proto_enumTypes = make([]protoimpl.EnumInfo, 3) -var file_agent_livekit_agent_session_proto_msgTypes = make([]protoimpl.MessageInfo, 51) +var file_agent_livekit_agent_session_proto_enumTypes = make([]protoimpl.EnumInfo, 4) +var file_agent_livekit_agent_session_proto_msgTypes = make([]protoimpl.MessageInfo, 52) var file_agent_livekit_agent_session_proto_goTypes = []any{ (ChatRole)(0), // 0: livekit.agent.ChatRole (AgentState)(0), // 1: livekit.agent.AgentState (UserState)(0), // 2: livekit.agent.UserState - (*MetricsReport)(nil), // 3: livekit.agent.MetricsReport - (*TimedString)(nil), // 4: livekit.agent.TimedString - (*ChatMessage)(nil), // 5: livekit.agent.ChatMessage - (*FunctionCall)(nil), // 6: livekit.agent.FunctionCall - (*FunctionCallOutput)(nil), // 7: livekit.agent.FunctionCallOutput - (*AgentHandoff)(nil), // 8: livekit.agent.AgentHandoff - (*AgentConfigUpdate)(nil), // 9: livekit.agent.AgentConfigUpdate - (*ChatContext)(nil), // 10: livekit.agent.ChatContext - (*LLMModelUsage)(nil), // 11: livekit.agent.LLMModelUsage - (*TTSModelUsage)(nil), // 12: livekit.agent.TTSModelUsage - (*STTModelUsage)(nil), // 13: livekit.agent.STTModelUsage - (*InterruptionModelUsage)(nil), // 14: livekit.agent.InterruptionModelUsage - (*ModelUsage)(nil), // 15: livekit.agent.ModelUsage - (*AgentSessionUsage)(nil), // 16: livekit.agent.AgentSessionUsage - (*AgentSessionEvent)(nil), // 17: livekit.agent.AgentSessionEvent - (*SessionRequest)(nil), // 18: livekit.agent.SessionRequest - (*SessionResponse)(nil), // 19: livekit.agent.SessionResponse - (*AgentSessionMessage)(nil), // 20: livekit.agent.AgentSessionMessage - (*ChatMessage_ChatContent)(nil), // 21: livekit.agent.ChatMessage.ChatContent - nil, // 22: livekit.agent.ChatMessage.ExtraEntry - (*ChatContext_ChatItem)(nil), // 23: livekit.agent.ChatContext.ChatItem - (*AgentSessionEvent_AgentStateChanged)(nil), // 24: livekit.agent.AgentSessionEvent.AgentStateChanged - (*AgentSessionEvent_UserStateChanged)(nil), // 25: livekit.agent.AgentSessionEvent.UserStateChanged - (*AgentSessionEvent_ConversationItemAdded)(nil), // 26: livekit.agent.AgentSessionEvent.ConversationItemAdded - (*AgentSessionEvent_UserInputTranscribed)(nil), // 27: livekit.agent.AgentSessionEvent.UserInputTranscribed - (*AgentSessionEvent_FunctionToolsExecuted)(nil), // 28: livekit.agent.AgentSessionEvent.FunctionToolsExecuted - (*AgentSessionEvent_Error)(nil), // 29: livekit.agent.AgentSessionEvent.Error - (*AgentSessionEvent_OverlappingSpeech)(nil), // 30: livekit.agent.AgentSessionEvent.OverlappingSpeech - (*AgentSessionEvent_SessionUsageUpdated)(nil), // 31: livekit.agent.AgentSessionEvent.SessionUsageUpdated - (*SessionRequest_Ping)(nil), // 32: livekit.agent.SessionRequest.Ping - (*SessionRequest_GetChatHistory)(nil), // 33: livekit.agent.SessionRequest.GetChatHistory - (*SessionRequest_RunInput)(nil), // 34: livekit.agent.SessionRequest.RunInput - (*SessionRequest_GetAgentInfo)(nil), // 35: livekit.agent.SessionRequest.GetAgentInfo - (*SessionRequest_GetSessionState)(nil), // 36: livekit.agent.SessionRequest.GetSessionState - (*SessionRequest_GetRTCStats)(nil), // 37: livekit.agent.SessionRequest.GetRTCStats - (*SessionRequest_GetSessionUsage)(nil), // 38: livekit.agent.SessionRequest.GetSessionUsage - (*SessionRequest_GetFrameworkInfo)(nil), // 39: livekit.agent.SessionRequest.GetFrameworkInfo - (*SessionResponse_Pong)(nil), // 40: livekit.agent.SessionResponse.Pong - (*SessionResponse_GetChatHistoryResponse)(nil), // 41: livekit.agent.SessionResponse.GetChatHistoryResponse - (*SessionResponse_GetAgentInfoResponse)(nil), // 42: livekit.agent.SessionResponse.GetAgentInfoResponse - (*SessionResponse_RunInputResponse)(nil), // 43: livekit.agent.SessionResponse.RunInputResponse - (*SessionResponse_GetSessionStateResponse)(nil), // 44: livekit.agent.SessionResponse.GetSessionStateResponse - (*SessionResponse_GetRTCStatsResponse)(nil), // 45: livekit.agent.SessionResponse.GetRTCStatsResponse - (*SessionResponse_GetSessionUsageResponse)(nil), // 46: livekit.agent.SessionResponse.GetSessionUsageResponse - (*SessionResponse_GetFrameworkInfoResponse)(nil), // 47: livekit.agent.SessionResponse.GetFrameworkInfoResponse - nil, // 48: livekit.agent.SessionResponse.GetSessionStateResponse.OptionsEntry - (*AgentSessionMessage_ConsoleIO)(nil), // 49: livekit.agent.AgentSessionMessage.ConsoleIO - (*AgentSessionMessage_ConsoleIO_AudioFrame)(nil), // 50: livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame - (*AgentSessionMessage_ConsoleIO_AudioPlaybackFlush)(nil), // 51: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFlush - (*AgentSessionMessage_ConsoleIO_AudioPlaybackClear)(nil), // 52: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackClear - (*AgentSessionMessage_ConsoleIO_AudioPlaybackFinished)(nil), // 53: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFinished - (*timestamppb.Timestamp)(nil), // 54: google.protobuf.Timestamp - (*structpb.Struct)(nil), // 55: google.protobuf.Struct + (AmdCategory)(0), // 3: livekit.agent.AmdCategory + (*MetricsReport)(nil), // 4: livekit.agent.MetricsReport + (*TimedString)(nil), // 5: livekit.agent.TimedString + (*ChatMessage)(nil), // 6: livekit.agent.ChatMessage + (*FunctionCall)(nil), // 7: livekit.agent.FunctionCall + (*FunctionCallOutput)(nil), // 8: livekit.agent.FunctionCallOutput + (*AgentHandoff)(nil), // 9: livekit.agent.AgentHandoff + (*AgentConfigUpdate)(nil), // 10: livekit.agent.AgentConfigUpdate + (*ChatContext)(nil), // 11: livekit.agent.ChatContext + (*LLMModelUsage)(nil), // 12: livekit.agent.LLMModelUsage + (*TTSModelUsage)(nil), // 13: livekit.agent.TTSModelUsage + (*STTModelUsage)(nil), // 14: livekit.agent.STTModelUsage + (*InterruptionModelUsage)(nil), // 15: livekit.agent.InterruptionModelUsage + (*ModelUsage)(nil), // 16: livekit.agent.ModelUsage + (*AgentSessionUsage)(nil), // 17: livekit.agent.AgentSessionUsage + (*AgentSessionEvent)(nil), // 18: livekit.agent.AgentSessionEvent + (*SessionRequest)(nil), // 19: livekit.agent.SessionRequest + (*SessionResponse)(nil), // 20: livekit.agent.SessionResponse + (*AgentSessionMessage)(nil), // 21: livekit.agent.AgentSessionMessage + (*ChatMessage_ChatContent)(nil), // 22: livekit.agent.ChatMessage.ChatContent + nil, // 23: livekit.agent.ChatMessage.ExtraEntry + (*ChatContext_ChatItem)(nil), // 24: livekit.agent.ChatContext.ChatItem + (*AgentSessionEvent_AgentStateChanged)(nil), // 25: livekit.agent.AgentSessionEvent.AgentStateChanged + (*AgentSessionEvent_UserStateChanged)(nil), // 26: livekit.agent.AgentSessionEvent.UserStateChanged + (*AgentSessionEvent_ConversationItemAdded)(nil), // 27: livekit.agent.AgentSessionEvent.ConversationItemAdded + (*AgentSessionEvent_UserInputTranscribed)(nil), // 28: livekit.agent.AgentSessionEvent.UserInputTranscribed + (*AgentSessionEvent_FunctionToolsExecuted)(nil), // 29: livekit.agent.AgentSessionEvent.FunctionToolsExecuted + (*AgentSessionEvent_Error)(nil), // 30: livekit.agent.AgentSessionEvent.Error + (*AgentSessionEvent_OverlappingSpeech)(nil), // 31: livekit.agent.AgentSessionEvent.OverlappingSpeech + (*AgentSessionEvent_AmdPrediction)(nil), // 32: livekit.agent.AgentSessionEvent.AmdPrediction + (*AgentSessionEvent_SessionUsageUpdated)(nil), // 33: livekit.agent.AgentSessionEvent.SessionUsageUpdated + (*SessionRequest_Ping)(nil), // 34: livekit.agent.SessionRequest.Ping + (*SessionRequest_GetChatHistory)(nil), // 35: livekit.agent.SessionRequest.GetChatHistory + (*SessionRequest_RunInput)(nil), // 36: livekit.agent.SessionRequest.RunInput + (*SessionRequest_GetAgentInfo)(nil), // 37: livekit.agent.SessionRequest.GetAgentInfo + (*SessionRequest_GetSessionState)(nil), // 38: livekit.agent.SessionRequest.GetSessionState + (*SessionRequest_GetRTCStats)(nil), // 39: livekit.agent.SessionRequest.GetRTCStats + (*SessionRequest_GetSessionUsage)(nil), // 40: livekit.agent.SessionRequest.GetSessionUsage + (*SessionRequest_GetFrameworkInfo)(nil), // 41: livekit.agent.SessionRequest.GetFrameworkInfo + (*SessionResponse_Pong)(nil), // 42: livekit.agent.SessionResponse.Pong + (*SessionResponse_GetChatHistoryResponse)(nil), // 43: livekit.agent.SessionResponse.GetChatHistoryResponse + (*SessionResponse_GetAgentInfoResponse)(nil), // 44: livekit.agent.SessionResponse.GetAgentInfoResponse + (*SessionResponse_RunInputResponse)(nil), // 45: livekit.agent.SessionResponse.RunInputResponse + (*SessionResponse_GetSessionStateResponse)(nil), // 46: livekit.agent.SessionResponse.GetSessionStateResponse + (*SessionResponse_GetRTCStatsResponse)(nil), // 47: livekit.agent.SessionResponse.GetRTCStatsResponse + (*SessionResponse_GetSessionUsageResponse)(nil), // 48: livekit.agent.SessionResponse.GetSessionUsageResponse + (*SessionResponse_GetFrameworkInfoResponse)(nil), // 49: livekit.agent.SessionResponse.GetFrameworkInfoResponse + nil, // 50: livekit.agent.SessionResponse.GetSessionStateResponse.OptionsEntry + (*AgentSessionMessage_ConsoleIO)(nil), // 51: livekit.agent.AgentSessionMessage.ConsoleIO + (*AgentSessionMessage_ConsoleIO_AudioFrame)(nil), // 52: livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame + (*AgentSessionMessage_ConsoleIO_AudioPlaybackFlush)(nil), // 53: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFlush + (*AgentSessionMessage_ConsoleIO_AudioPlaybackClear)(nil), // 54: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackClear + (*AgentSessionMessage_ConsoleIO_AudioPlaybackFinished)(nil), // 55: livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFinished + (*timestamppb.Timestamp)(nil), // 56: google.protobuf.Timestamp + (*durationpb.Duration)(nil), // 57: google.protobuf.Duration + (*structpb.Struct)(nil), // 58: google.protobuf.Struct } var file_agent_livekit_agent_session_proto_depIdxs = []int32{ - 54, // 0: livekit.agent.MetricsReport.started_speaking_at:type_name -> google.protobuf.Timestamp - 54, // 1: livekit.agent.MetricsReport.stopped_speaking_at:type_name -> google.protobuf.Timestamp + 56, // 0: livekit.agent.MetricsReport.started_speaking_at:type_name -> google.protobuf.Timestamp + 56, // 1: livekit.agent.MetricsReport.stopped_speaking_at:type_name -> google.protobuf.Timestamp 0, // 2: livekit.agent.ChatMessage.role:type_name -> livekit.agent.ChatRole - 21, // 3: livekit.agent.ChatMessage.content:type_name -> livekit.agent.ChatMessage.ChatContent - 22, // 4: livekit.agent.ChatMessage.extra:type_name -> livekit.agent.ChatMessage.ExtraEntry - 3, // 5: livekit.agent.ChatMessage.metrics:type_name -> livekit.agent.MetricsReport - 54, // 6: livekit.agent.ChatMessage.created_at:type_name -> google.protobuf.Timestamp - 54, // 7: livekit.agent.FunctionCall.created_at:type_name -> google.protobuf.Timestamp - 54, // 8: livekit.agent.FunctionCallOutput.created_at:type_name -> google.protobuf.Timestamp - 54, // 9: livekit.agent.AgentHandoff.created_at:type_name -> google.protobuf.Timestamp - 54, // 10: livekit.agent.AgentConfigUpdate.created_at:type_name -> google.protobuf.Timestamp - 23, // 11: livekit.agent.ChatContext.items:type_name -> livekit.agent.ChatContext.ChatItem - 11, // 12: livekit.agent.ModelUsage.llm:type_name -> livekit.agent.LLMModelUsage - 12, // 13: livekit.agent.ModelUsage.tts:type_name -> livekit.agent.TTSModelUsage - 13, // 14: livekit.agent.ModelUsage.stt:type_name -> livekit.agent.STTModelUsage - 14, // 15: livekit.agent.ModelUsage.interruption:type_name -> livekit.agent.InterruptionModelUsage - 15, // 16: livekit.agent.AgentSessionUsage.model_usage:type_name -> livekit.agent.ModelUsage - 54, // 17: livekit.agent.AgentSessionEvent.created_at:type_name -> google.protobuf.Timestamp - 24, // 18: livekit.agent.AgentSessionEvent.agent_state_changed:type_name -> livekit.agent.AgentSessionEvent.AgentStateChanged - 25, // 19: livekit.agent.AgentSessionEvent.user_state_changed:type_name -> livekit.agent.AgentSessionEvent.UserStateChanged - 26, // 20: livekit.agent.AgentSessionEvent.conversation_item_added:type_name -> livekit.agent.AgentSessionEvent.ConversationItemAdded - 27, // 21: livekit.agent.AgentSessionEvent.user_input_transcribed:type_name -> livekit.agent.AgentSessionEvent.UserInputTranscribed - 28, // 22: livekit.agent.AgentSessionEvent.function_tools_executed:type_name -> livekit.agent.AgentSessionEvent.FunctionToolsExecuted - 29, // 23: livekit.agent.AgentSessionEvent.error:type_name -> livekit.agent.AgentSessionEvent.Error - 30, // 24: livekit.agent.AgentSessionEvent.overlapping_speech:type_name -> livekit.agent.AgentSessionEvent.OverlappingSpeech - 31, // 25: livekit.agent.AgentSessionEvent.session_usage_updated:type_name -> livekit.agent.AgentSessionEvent.SessionUsageUpdated - 32, // 26: livekit.agent.SessionRequest.ping:type_name -> livekit.agent.SessionRequest.Ping - 33, // 27: livekit.agent.SessionRequest.get_chat_history:type_name -> livekit.agent.SessionRequest.GetChatHistory - 34, // 28: livekit.agent.SessionRequest.run_input:type_name -> livekit.agent.SessionRequest.RunInput - 35, // 29: livekit.agent.SessionRequest.get_agent_info:type_name -> livekit.agent.SessionRequest.GetAgentInfo - 36, // 30: livekit.agent.SessionRequest.get_session_state:type_name -> livekit.agent.SessionRequest.GetSessionState - 37, // 31: livekit.agent.SessionRequest.get_rtc_stats:type_name -> livekit.agent.SessionRequest.GetRTCStats - 38, // 32: livekit.agent.SessionRequest.get_session_usage:type_name -> livekit.agent.SessionRequest.GetSessionUsage - 39, // 33: livekit.agent.SessionRequest.get_framework_info:type_name -> livekit.agent.SessionRequest.GetFrameworkInfo - 40, // 34: livekit.agent.SessionResponse.pong:type_name -> livekit.agent.SessionResponse.Pong - 41, // 35: livekit.agent.SessionResponse.get_chat_history:type_name -> livekit.agent.SessionResponse.GetChatHistoryResponse - 43, // 36: livekit.agent.SessionResponse.run_input:type_name -> livekit.agent.SessionResponse.RunInputResponse - 42, // 37: livekit.agent.SessionResponse.get_agent_info:type_name -> livekit.agent.SessionResponse.GetAgentInfoResponse - 44, // 38: livekit.agent.SessionResponse.get_session_state:type_name -> livekit.agent.SessionResponse.GetSessionStateResponse - 45, // 39: livekit.agent.SessionResponse.get_rtc_stats:type_name -> livekit.agent.SessionResponse.GetRTCStatsResponse - 46, // 40: livekit.agent.SessionResponse.get_session_usage:type_name -> livekit.agent.SessionResponse.GetSessionUsageResponse - 47, // 41: livekit.agent.SessionResponse.get_framework_info:type_name -> livekit.agent.SessionResponse.GetFrameworkInfoResponse - 50, // 42: livekit.agent.AgentSessionMessage.audio_input:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame - 50, // 43: livekit.agent.AgentSessionMessage.audio_output:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame - 17, // 44: livekit.agent.AgentSessionMessage.event:type_name -> livekit.agent.AgentSessionEvent - 18, // 45: livekit.agent.AgentSessionMessage.request:type_name -> livekit.agent.SessionRequest - 19, // 46: livekit.agent.AgentSessionMessage.response:type_name -> livekit.agent.SessionResponse - 51, // 47: livekit.agent.AgentSessionMessage.audio_playback_flush:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFlush - 52, // 48: livekit.agent.AgentSessionMessage.audio_playback_clear:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackClear - 53, // 49: livekit.agent.AgentSessionMessage.audio_playback_finished:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFinished - 5, // 50: livekit.agent.ChatContext.ChatItem.message:type_name -> livekit.agent.ChatMessage - 6, // 51: livekit.agent.ChatContext.ChatItem.function_call:type_name -> livekit.agent.FunctionCall - 7, // 52: livekit.agent.ChatContext.ChatItem.function_call_output:type_name -> livekit.agent.FunctionCallOutput - 8, // 53: livekit.agent.ChatContext.ChatItem.agent_handoff:type_name -> livekit.agent.AgentHandoff - 9, // 54: livekit.agent.ChatContext.ChatItem.agent_config_update:type_name -> livekit.agent.AgentConfigUpdate - 1, // 55: livekit.agent.AgentSessionEvent.AgentStateChanged.old_state:type_name -> livekit.agent.AgentState - 1, // 56: livekit.agent.AgentSessionEvent.AgentStateChanged.new_state:type_name -> livekit.agent.AgentState - 2, // 57: livekit.agent.AgentSessionEvent.UserStateChanged.old_state:type_name -> livekit.agent.UserState - 2, // 58: livekit.agent.AgentSessionEvent.UserStateChanged.new_state:type_name -> livekit.agent.UserState - 23, // 59: livekit.agent.AgentSessionEvent.ConversationItemAdded.item:type_name -> livekit.agent.ChatContext.ChatItem - 6, // 60: livekit.agent.AgentSessionEvent.FunctionToolsExecuted.function_calls:type_name -> livekit.agent.FunctionCall - 7, // 61: livekit.agent.AgentSessionEvent.FunctionToolsExecuted.function_call_outputs:type_name -> livekit.agent.FunctionCallOutput - 54, // 62: livekit.agent.AgentSessionEvent.OverlappingSpeech.overlap_started_at:type_name -> google.protobuf.Timestamp - 54, // 63: livekit.agent.AgentSessionEvent.OverlappingSpeech.detected_at:type_name -> google.protobuf.Timestamp - 16, // 64: livekit.agent.AgentSessionEvent.SessionUsageUpdated.usage:type_name -> livekit.agent.AgentSessionUsage - 23, // 65: livekit.agent.SessionResponse.GetChatHistoryResponse.items:type_name -> livekit.agent.ChatContext.ChatItem - 23, // 66: livekit.agent.SessionResponse.GetAgentInfoResponse.chat_ctx:type_name -> livekit.agent.ChatContext.ChatItem - 23, // 67: livekit.agent.SessionResponse.RunInputResponse.items:type_name -> livekit.agent.ChatContext.ChatItem - 1, // 68: livekit.agent.SessionResponse.GetSessionStateResponse.agent_state:type_name -> livekit.agent.AgentState - 2, // 69: livekit.agent.SessionResponse.GetSessionStateResponse.user_state:type_name -> livekit.agent.UserState - 48, // 70: livekit.agent.SessionResponse.GetSessionStateResponse.options:type_name -> livekit.agent.SessionResponse.GetSessionStateResponse.OptionsEntry - 54, // 71: livekit.agent.SessionResponse.GetSessionStateResponse.created_at:type_name -> google.protobuf.Timestamp - 55, // 72: livekit.agent.SessionResponse.GetRTCStatsResponse.publisher_stats:type_name -> google.protobuf.Struct - 55, // 73: livekit.agent.SessionResponse.GetRTCStatsResponse.subscriber_stats:type_name -> google.protobuf.Struct - 16, // 74: livekit.agent.SessionResponse.GetSessionUsageResponse.usage:type_name -> livekit.agent.AgentSessionUsage - 54, // 75: livekit.agent.SessionResponse.GetSessionUsageResponse.created_at:type_name -> google.protobuf.Timestamp - 76, // [76:76] is the sub-list for method output_type - 76, // [76:76] is the sub-list for method input_type - 76, // [76:76] is the sub-list for extension type_name - 76, // [76:76] is the sub-list for extension extendee - 0, // [0:76] is the sub-list for field type_name + 22, // 3: livekit.agent.ChatMessage.content:type_name -> livekit.agent.ChatMessage.ChatContent + 23, // 4: livekit.agent.ChatMessage.extra:type_name -> livekit.agent.ChatMessage.ExtraEntry + 4, // 5: livekit.agent.ChatMessage.metrics:type_name -> livekit.agent.MetricsReport + 56, // 6: livekit.agent.ChatMessage.created_at:type_name -> google.protobuf.Timestamp + 56, // 7: livekit.agent.FunctionCall.created_at:type_name -> google.protobuf.Timestamp + 56, // 8: livekit.agent.FunctionCallOutput.created_at:type_name -> google.protobuf.Timestamp + 56, // 9: livekit.agent.AgentHandoff.created_at:type_name -> google.protobuf.Timestamp + 56, // 10: livekit.agent.AgentConfigUpdate.created_at:type_name -> google.protobuf.Timestamp + 24, // 11: livekit.agent.ChatContext.items:type_name -> livekit.agent.ChatContext.ChatItem + 12, // 12: livekit.agent.ModelUsage.llm:type_name -> livekit.agent.LLMModelUsage + 13, // 13: livekit.agent.ModelUsage.tts:type_name -> livekit.agent.TTSModelUsage + 14, // 14: livekit.agent.ModelUsage.stt:type_name -> livekit.agent.STTModelUsage + 15, // 15: livekit.agent.ModelUsage.interruption:type_name -> livekit.agent.InterruptionModelUsage + 16, // 16: livekit.agent.AgentSessionUsage.model_usage:type_name -> livekit.agent.ModelUsage + 56, // 17: livekit.agent.AgentSessionEvent.created_at:type_name -> google.protobuf.Timestamp + 25, // 18: livekit.agent.AgentSessionEvent.agent_state_changed:type_name -> livekit.agent.AgentSessionEvent.AgentStateChanged + 26, // 19: livekit.agent.AgentSessionEvent.user_state_changed:type_name -> livekit.agent.AgentSessionEvent.UserStateChanged + 27, // 20: livekit.agent.AgentSessionEvent.conversation_item_added:type_name -> livekit.agent.AgentSessionEvent.ConversationItemAdded + 28, // 21: livekit.agent.AgentSessionEvent.user_input_transcribed:type_name -> livekit.agent.AgentSessionEvent.UserInputTranscribed + 29, // 22: livekit.agent.AgentSessionEvent.function_tools_executed:type_name -> livekit.agent.AgentSessionEvent.FunctionToolsExecuted + 30, // 23: livekit.agent.AgentSessionEvent.error:type_name -> livekit.agent.AgentSessionEvent.Error + 31, // 24: livekit.agent.AgentSessionEvent.overlapping_speech:type_name -> livekit.agent.AgentSessionEvent.OverlappingSpeech + 33, // 25: livekit.agent.AgentSessionEvent.session_usage_updated:type_name -> livekit.agent.AgentSessionEvent.SessionUsageUpdated + 32, // 26: livekit.agent.AgentSessionEvent.amd_prediction:type_name -> livekit.agent.AgentSessionEvent.AmdPrediction + 34, // 27: livekit.agent.SessionRequest.ping:type_name -> livekit.agent.SessionRequest.Ping + 35, // 28: livekit.agent.SessionRequest.get_chat_history:type_name -> livekit.agent.SessionRequest.GetChatHistory + 36, // 29: livekit.agent.SessionRequest.run_input:type_name -> livekit.agent.SessionRequest.RunInput + 37, // 30: livekit.agent.SessionRequest.get_agent_info:type_name -> livekit.agent.SessionRequest.GetAgentInfo + 38, // 31: livekit.agent.SessionRequest.get_session_state:type_name -> livekit.agent.SessionRequest.GetSessionState + 39, // 32: livekit.agent.SessionRequest.get_rtc_stats:type_name -> livekit.agent.SessionRequest.GetRTCStats + 40, // 33: livekit.agent.SessionRequest.get_session_usage:type_name -> livekit.agent.SessionRequest.GetSessionUsage + 41, // 34: livekit.agent.SessionRequest.get_framework_info:type_name -> livekit.agent.SessionRequest.GetFrameworkInfo + 42, // 35: livekit.agent.SessionResponse.pong:type_name -> livekit.agent.SessionResponse.Pong + 43, // 36: livekit.agent.SessionResponse.get_chat_history:type_name -> livekit.agent.SessionResponse.GetChatHistoryResponse + 45, // 37: livekit.agent.SessionResponse.run_input:type_name -> livekit.agent.SessionResponse.RunInputResponse + 44, // 38: livekit.agent.SessionResponse.get_agent_info:type_name -> livekit.agent.SessionResponse.GetAgentInfoResponse + 46, // 39: livekit.agent.SessionResponse.get_session_state:type_name -> livekit.agent.SessionResponse.GetSessionStateResponse + 47, // 40: livekit.agent.SessionResponse.get_rtc_stats:type_name -> livekit.agent.SessionResponse.GetRTCStatsResponse + 48, // 41: livekit.agent.SessionResponse.get_session_usage:type_name -> livekit.agent.SessionResponse.GetSessionUsageResponse + 49, // 42: livekit.agent.SessionResponse.get_framework_info:type_name -> livekit.agent.SessionResponse.GetFrameworkInfoResponse + 52, // 43: livekit.agent.AgentSessionMessage.audio_input:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame + 52, // 44: livekit.agent.AgentSessionMessage.audio_output:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioFrame + 18, // 45: livekit.agent.AgentSessionMessage.event:type_name -> livekit.agent.AgentSessionEvent + 19, // 46: livekit.agent.AgentSessionMessage.request:type_name -> livekit.agent.SessionRequest + 20, // 47: livekit.agent.AgentSessionMessage.response:type_name -> livekit.agent.SessionResponse + 53, // 48: livekit.agent.AgentSessionMessage.audio_playback_flush:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFlush + 54, // 49: livekit.agent.AgentSessionMessage.audio_playback_clear:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackClear + 55, // 50: livekit.agent.AgentSessionMessage.audio_playback_finished:type_name -> livekit.agent.AgentSessionMessage.ConsoleIO.AudioPlaybackFinished + 6, // 51: livekit.agent.ChatContext.ChatItem.message:type_name -> livekit.agent.ChatMessage + 7, // 52: livekit.agent.ChatContext.ChatItem.function_call:type_name -> livekit.agent.FunctionCall + 8, // 53: livekit.agent.ChatContext.ChatItem.function_call_output:type_name -> livekit.agent.FunctionCallOutput + 9, // 54: livekit.agent.ChatContext.ChatItem.agent_handoff:type_name -> livekit.agent.AgentHandoff + 10, // 55: livekit.agent.ChatContext.ChatItem.agent_config_update:type_name -> livekit.agent.AgentConfigUpdate + 1, // 56: livekit.agent.AgentSessionEvent.AgentStateChanged.old_state:type_name -> livekit.agent.AgentState + 1, // 57: livekit.agent.AgentSessionEvent.AgentStateChanged.new_state:type_name -> livekit.agent.AgentState + 2, // 58: livekit.agent.AgentSessionEvent.UserStateChanged.old_state:type_name -> livekit.agent.UserState + 2, // 59: livekit.agent.AgentSessionEvent.UserStateChanged.new_state:type_name -> livekit.agent.UserState + 24, // 60: livekit.agent.AgentSessionEvent.ConversationItemAdded.item:type_name -> livekit.agent.ChatContext.ChatItem + 7, // 61: livekit.agent.AgentSessionEvent.FunctionToolsExecuted.function_calls:type_name -> livekit.agent.FunctionCall + 8, // 62: livekit.agent.AgentSessionEvent.FunctionToolsExecuted.function_call_outputs:type_name -> livekit.agent.FunctionCallOutput + 56, // 63: livekit.agent.AgentSessionEvent.OverlappingSpeech.overlap_started_at:type_name -> google.protobuf.Timestamp + 56, // 64: livekit.agent.AgentSessionEvent.OverlappingSpeech.detected_at:type_name -> google.protobuf.Timestamp + 57, // 65: livekit.agent.AgentSessionEvent.AmdPrediction.speech_duration:type_name -> google.protobuf.Duration + 3, // 66: livekit.agent.AgentSessionEvent.AmdPrediction.category:type_name -> livekit.agent.AmdCategory + 57, // 67: livekit.agent.AgentSessionEvent.AmdPrediction.delay:type_name -> google.protobuf.Duration + 17, // 68: livekit.agent.AgentSessionEvent.SessionUsageUpdated.usage:type_name -> livekit.agent.AgentSessionUsage + 24, // 69: livekit.agent.SessionResponse.GetChatHistoryResponse.items:type_name -> livekit.agent.ChatContext.ChatItem + 24, // 70: livekit.agent.SessionResponse.GetAgentInfoResponse.chat_ctx:type_name -> livekit.agent.ChatContext.ChatItem + 24, // 71: livekit.agent.SessionResponse.RunInputResponse.items:type_name -> livekit.agent.ChatContext.ChatItem + 1, // 72: livekit.agent.SessionResponse.GetSessionStateResponse.agent_state:type_name -> livekit.agent.AgentState + 2, // 73: livekit.agent.SessionResponse.GetSessionStateResponse.user_state:type_name -> livekit.agent.UserState + 50, // 74: livekit.agent.SessionResponse.GetSessionStateResponse.options:type_name -> livekit.agent.SessionResponse.GetSessionStateResponse.OptionsEntry + 56, // 75: livekit.agent.SessionResponse.GetSessionStateResponse.created_at:type_name -> google.protobuf.Timestamp + 58, // 76: livekit.agent.SessionResponse.GetRTCStatsResponse.publisher_stats:type_name -> google.protobuf.Struct + 58, // 77: livekit.agent.SessionResponse.GetRTCStatsResponse.subscriber_stats:type_name -> google.protobuf.Struct + 17, // 78: livekit.agent.SessionResponse.GetSessionUsageResponse.usage:type_name -> livekit.agent.AgentSessionUsage + 56, // 79: livekit.agent.SessionResponse.GetSessionUsageResponse.created_at:type_name -> google.protobuf.Timestamp + 80, // [80:80] is the sub-list for method output_type + 80, // [80:80] is the sub-list for method input_type + 80, // [80:80] is the sub-list for extension type_name + 80, // [80:80] is the sub-list for extension extendee + 0, // [0:80] is the sub-list for field type_name } func init() { file_agent_livekit_agent_session_proto_init() } @@ -4103,6 +4277,7 @@ func file_agent_livekit_agent_session_proto_init() { (*AgentSessionEvent_Error_)(nil), (*AgentSessionEvent_OverlappingSpeech_)(nil), (*AgentSessionEvent_SessionUsageUpdated_)(nil), + (*AgentSessionEvent_AmdPrediction_)(nil), } file_agent_livekit_agent_session_proto_msgTypes[15].OneofWrappers = []any{ (*SessionRequest_Ping_)(nil), @@ -4146,14 +4321,14 @@ func file_agent_livekit_agent_session_proto_init() { } file_agent_livekit_agent_session_proto_msgTypes[24].OneofWrappers = []any{} file_agent_livekit_agent_session_proto_msgTypes[27].OneofWrappers = []any{} - file_agent_livekit_agent_session_proto_msgTypes[39].OneofWrappers = []any{} + file_agent_livekit_agent_session_proto_msgTypes[40].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_agent_livekit_agent_session_proto_rawDesc), len(file_agent_livekit_agent_session_proto_rawDesc)), - NumEnums: 3, - NumMessages: 51, + NumEnums: 4, + NumMessages: 52, NumExtensions: 0, NumServices: 0, }, diff --git a/livekit/livekit_agent.pb.go b/livekit/livekit_agent.pb.go index 13356682f..1217609af 100644 --- a/livekit/livekit_agent.pb.go +++ b/livekit/livekit_agent.pb.go @@ -196,6 +196,7 @@ type Job struct { AgentName string `protobuf:"bytes,7,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"` State *JobState `protobuf:"bytes,8,opt,name=state,proto3" json:"state,omitempty"` EnableRecording bool `protobuf:"varint,10,opt,name=enable_recording,json=enableRecording,proto3" json:"enable_recording,omitempty"` + Deployment string `protobuf:"bytes,11,opt,name=deployment,proto3" json:"deployment,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -301,6 +302,13 @@ func (x *Job) GetEnableRecording() bool { return false } +func (x *Job) GetDeployment() string { + if x != nil { + return x.Deployment + } + return "" +} + type JobState struct { state protoimpl.MessageState `protogen:"open.v1"` Status JobStatus `protobuf:"varint,1,opt,name=status,proto3,enum=livekit.JobStatus" json:"status,omitempty"` @@ -867,6 +875,7 @@ type RegisterWorkerRequest struct { PingInterval uint32 `protobuf:"varint,5,opt,name=ping_interval,json=pingInterval,proto3" json:"ping_interval,omitempty"` Namespace *string `protobuf:"bytes,6,opt,name=namespace,proto3,oneof" json:"namespace,omitempty"` AllowedPermissions *ParticipantPermission `protobuf:"bytes,7,opt,name=allowed_permissions,json=allowedPermissions,proto3" json:"allowed_permissions,omitempty"` + Deployment string `protobuf:"bytes,9,opt,name=deployment,proto3" json:"deployment,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -943,6 +952,13 @@ func (x *RegisterWorkerRequest) GetAllowedPermissions() *ParticipantPermission { return nil } +func (x *RegisterWorkerRequest) GetDeployment() string { + if x != nil { + return x.Deployment + } + return "" +} + type RegisterWorkerResponse struct { state protoimpl.MessageState `protogen:"open.v1"` WorkerId string `protobuf:"bytes,1,opt,name=worker_id,json=workerId,proto3" json:"worker_id,omitempty"` @@ -1425,7 +1441,7 @@ var File_livekit_agent_proto protoreflect.FileDescriptor const file_livekit_agent_proto_rawDesc = "" + "\n" + - "\x13livekit_agent.proto\x12\alivekit\x1a\x14livekit_models.proto\x1a\x14logger/options.proto\"\x90\x03\n" + + "\x13livekit_agent.proto\x12\alivekit\x1a\x14livekit_models.proto\x1a\x14logger/options.proto\"\xb0\x03\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12.\n" + "\vdispatch_id\x18\t \x01(\tB\r\xbaP\n" + @@ -1440,7 +1456,10 @@ const file_livekit_agent_proto_rawDesc = "" + "agent_name\x18\a \x01(\tR\tagentName\x12'\n" + "\x05state\x18\b \x01(\v2\x11.livekit.JobStateR\x05state\x12)\n" + "\x10enable_recording\x18\n" + - " \x01(\bR\x0fenableRecordingB\x0e\n" + + " \x01(\bR\x0fenableRecording\x12\x1e\n" + + "\n" + + "deployment\x18\v \x01(\tR\n" + + "deploymentB\x0e\n" + "\f_participant\"\xa9\x02\n" + "\bJobState\x12*\n" + "\x06status\x18\x01 \x01(\x0e2\x12.livekit.JobStatusR\x06status\x12\x14\n" + @@ -1484,7 +1503,7 @@ const file_livekit_agent_proto_rawDesc = "" + "\n" + "WorkerPong\x12%\n" + "\x0elast_timestamp\x18\x01 \x01(\x03R\rlastTimestamp\x12\x1c\n" + - "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\x9d\x02\n" + + "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\xbd\x02\n" + "\x15RegisterWorkerRequest\x12$\n" + "\x04type\x18\x01 \x01(\x0e2\x10.livekit.JobTypeR\x04type\x12\x1d\n" + "\n" + @@ -1492,7 +1511,10 @@ const file_livekit_agent_proto_rawDesc = "" + "\aversion\x18\x03 \x01(\tR\aversion\x12#\n" + "\rping_interval\x18\x05 \x01(\rR\fpingInterval\x12!\n" + "\tnamespace\x18\x06 \x01(\tH\x00R\tnamespace\x88\x01\x01\x12O\n" + - "\x13allowed_permissions\x18\a \x01(\v2\x1e.livekit.ParticipantPermissionR\x12allowedPermissionsB\f\n" + + "\x13allowed_permissions\x18\a \x01(\v2\x1e.livekit.ParticipantPermissionR\x12allowedPermissions\x12\x1e\n" + + "\n" + + "deployment\x18\t \x01(\tR\n" + + "deploymentB\f\n" + "\n" + "_namespace\"x\n" + "\x16RegisterWorkerResponse\x12(\n" + diff --git a/livekit/livekit_agent_dispatch.pb.go b/livekit/livekit_agent_dispatch.pb.go index 759e9e387..b7a4bc7fb 100644 --- a/livekit/livekit_agent_dispatch.pb.go +++ b/livekit/livekit_agent_dispatch.pb.go @@ -88,6 +88,7 @@ type CreateAgentDispatchRequest struct { Room string `protobuf:"bytes,2,opt,name=room,proto3" json:"room,omitempty"` Metadata string `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"` RestartPolicy JobRestartPolicy `protobuf:"varint,4,opt,name=restart_policy,json=restartPolicy,proto3,enum=livekit.JobRestartPolicy" json:"restart_policy,omitempty"` // cloud only + Deployment string `protobuf:"bytes,5,opt,name=deployment,proto3" json:"deployment,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -150,11 +151,19 @@ func (x *CreateAgentDispatchRequest) GetRestartPolicy() JobRestartPolicy { return JobRestartPolicy_JRP_ON_FAILURE } +func (x *CreateAgentDispatchRequest) GetDeployment() string { + if x != nil { + return x.Deployment + } + return "" +} + type RoomAgentDispatch struct { state protoimpl.MessageState `protogen:"open.v1"` AgentName string `protobuf:"bytes,1,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"` Metadata string `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` RestartPolicy JobRestartPolicy `protobuf:"varint,3,opt,name=restart_policy,json=restartPolicy,proto3,enum=livekit.JobRestartPolicy" json:"restart_policy,omitempty"` // cloud only + Deployment string `protobuf:"bytes,4,opt,name=deployment,proto3" json:"deployment,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -210,6 +219,13 @@ func (x *RoomAgentDispatch) GetRestartPolicy() JobRestartPolicy { return JobRestartPolicy_JRP_ON_FAILURE } +func (x *RoomAgentDispatch) GetDeployment() string { + if x != nil { + return x.Deployment + } + return "" +} + type DeleteAgentDispatchRequest struct { state protoimpl.MessageState `protogen:"open.v1"` DispatchId string `protobuf:"bytes,1,opt,name=dispatch_id,json=dispatchId,proto3" json:"dispatch_id,omitempty"` @@ -366,6 +382,7 @@ type AgentDispatch struct { Metadata string `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty"` State *AgentDispatchState `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"` RestartPolicy JobRestartPolicy `protobuf:"varint,6,opt,name=restart_policy,json=restartPolicy,proto3,enum=livekit.JobRestartPolicy" json:"restart_policy,omitempty"` // cloud only + Deployment string `protobuf:"bytes,7,opt,name=deployment,proto3" json:"deployment,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -442,6 +459,13 @@ func (x *AgentDispatch) GetRestartPolicy() JobRestartPolicy { return JobRestartPolicy_JRP_ON_FAILURE } +func (x *AgentDispatch) GetDeployment() string { + if x != nil { + return x.Deployment + } + return "" +} + type AgentDispatchState struct { state protoimpl.MessageState `protogen:"open.v1"` // For dispatches of tyoe JT_ROOM, there will be at most 1 job. @@ -508,18 +532,24 @@ var File_livekit_agent_dispatch_proto protoreflect.FileDescriptor const file_livekit_agent_dispatch_proto_rawDesc = "" + "\n" + - "\x1clivekit_agent_dispatch.proto\x12\alivekit\x1a\x13livekit_agent.proto\x1a\x14logger/options.proto\"\xb2\x01\n" + + "\x1clivekit_agent_dispatch.proto\x12\alivekit\x1a\x13livekit_agent.proto\x1a\x14logger/options.proto\"\xd2\x01\n" + "\x1aCreateAgentDispatchRequest\x12\x1d\n" + "\n" + "agent_name\x18\x01 \x01(\tR\tagentName\x12\x12\n" + "\x04room\x18\x02 \x01(\tR\x04room\x12\x1f\n" + "\bmetadata\x18\x03 \x01(\tB\x03\xa8P\x01R\bmetadata\x12@\n" + - "\x0erestart_policy\x18\x04 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\"\x95\x01\n" + + "\x0erestart_policy\x18\x04 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\x12\x1e\n" + + "\n" + + "deployment\x18\x05 \x01(\tR\n" + + "deployment\"\xb5\x01\n" + "\x11RoomAgentDispatch\x12\x1d\n" + "\n" + "agent_name\x18\x01 \x01(\tR\tagentName\x12\x1f\n" + "\bmetadata\x18\x02 \x01(\tB\x03\xa8P\x01R\bmetadata\x12@\n" + - "\x0erestart_policy\x18\x03 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\"`\n" + + "\x0erestart_policy\x18\x03 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\x12\x1e\n" + + "\n" + + "deployment\x18\x04 \x01(\tR\n" + + "deployment\"`\n" + "\x1aDeleteAgentDispatchRequest\x12.\n" + "\vdispatch_id\x18\x01 \x01(\tB\r\xbaP\n" + "dispatchIDR\n" + @@ -531,7 +561,7 @@ const file_livekit_agent_dispatch_proto_rawDesc = "" + "dispatchId\x12\x12\n" + "\x04room\x18\x02 \x01(\tR\x04room\"^\n" + "\x19ListAgentDispatchResponse\x12A\n" + - "\x10agent_dispatches\x18\x01 \x03(\v2\x16.livekit.AgentDispatchR\x0fagentDispatches\"\xe8\x01\n" + + "\x10agent_dispatches\x18\x01 \x03(\v2\x16.livekit.AgentDispatchR\x0fagentDispatches\"\x88\x02\n" + "\rAgentDispatch\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -539,7 +569,10 @@ const file_livekit_agent_dispatch_proto_rawDesc = "" + "\x04room\x18\x03 \x01(\tR\x04room\x12\x1f\n" + "\bmetadata\x18\x04 \x01(\tB\x03\xa8P\x01R\bmetadata\x121\n" + "\x05state\x18\x05 \x01(\v2\x1b.livekit.AgentDispatchStateR\x05state\x12@\n" + - "\x0erestart_policy\x18\x06 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\"t\n" + + "\x0erestart_policy\x18\x06 \x01(\x0e2\x19.livekit.JobRestartPolicyR\rrestartPolicy\x12\x1e\n" + + "\n" + + "deployment\x18\a \x01(\tR\n" + + "deployment\"t\n" + "\x12AgentDispatchState\x12 \n" + "\x04jobs\x18\x01 \x03(\v2\f.livekit.JobR\x04jobs\x12\x1d\n" + "\n" + diff --git a/livekit/livekit_agent_dispatch.twirp.go b/livekit/livekit_agent_dispatch.twirp.go index 1b0a5a759..eff396030 100644 --- a/livekit/livekit_agent_dispatch.twirp.go +++ b/livekit/livekit_agent_dispatch.twirp.go @@ -1075,40 +1075,42 @@ func (s *agentDispatchServiceServer) PathPrefix() string { } var twirpFileDescriptor1 = []byte{ - // 557 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0xc5, 0x76, 0x5a, 0xc8, 0xa4, 0x31, 0x61, 0xa9, 0x90, 0x6b, 0x40, 0x84, 0xf4, 0x12, 0x71, - 0x70, 0x44, 0x10, 0x97, 0x9e, 0x48, 0x48, 0x2a, 0xb5, 0x84, 0x10, 0x2d, 0x2a, 0x07, 0x0e, 0x98, - 0x8d, 0x3d, 0x4a, 0x17, 0xe2, 0x6c, 0xb0, 0xb7, 0x91, 0xf8, 0x06, 0xce, 0xfc, 0x03, 0xe2, 0xc8, - 0x91, 0x2f, 0x42, 0x7c, 0x05, 0xf2, 0xda, 0x31, 0x71, 0xb1, 0x81, 0x1e, 0x7a, 0xf3, 0xbe, 0x79, - 0xfb, 0xfc, 0x34, 0xf3, 0x66, 0xe1, 0xce, 0x9c, 0xaf, 0xf0, 0x3d, 0x97, 0x2e, 0x9b, 0xe1, 0x42, - 0xba, 0x3e, 0x8f, 0x96, 0x4c, 0x7a, 0xa7, 0xce, 0x32, 0x14, 0x52, 0x90, 0xab, 0x69, 0xd5, 0xbe, - 0x99, 0xa3, 0x25, 0x55, 0x7b, 0x77, 0x2e, 0x66, 0x33, 0x0c, 0x3b, 0x62, 0x29, 0xb9, 0x58, 0x44, - 0x09, 0xda, 0xfa, 0xa6, 0x81, 0xfd, 0x34, 0x44, 0x26, 0xb1, 0x17, 0x73, 0x07, 0xa9, 0x22, 0xc5, - 0x0f, 0x67, 0x18, 0x49, 0x72, 0x17, 0x20, 0xf9, 0xd5, 0x82, 0x05, 0x68, 0x69, 0x4d, 0xad, 0x5d, - 0xa5, 0x55, 0x85, 0x8c, 0x59, 0x80, 0x84, 0x40, 0x25, 0x14, 0x22, 0xb0, 0x74, 0x55, 0x50, 0xdf, - 0xe4, 0x1e, 0x5c, 0x0b, 0x50, 0x32, 0x9f, 0x49, 0x66, 0x19, 0x31, 0xde, 0x37, 0xbe, 0x4c, 0x34, - 0x9a, 0x81, 0xe4, 0x09, 0x98, 0x21, 0x46, 0x92, 0x85, 0xd2, 0x5d, 0x8a, 0x39, 0xf7, 0x3e, 0x5a, - 0x95, 0xa6, 0xd6, 0x36, 0xbb, 0x7b, 0x4e, 0x6a, 0xdb, 0x39, 0x16, 0x53, 0x9a, 0x30, 0x26, 0x8a, - 0x40, 0xeb, 0xe1, 0xe6, 0xb1, 0xf5, 0x59, 0x83, 0x1b, 0x54, 0x88, 0x20, 0x67, 0xf9, 0x5f, 0x5e, - 0x37, 0x7d, 0xe9, 0xff, 0xe7, 0xcb, 0xb8, 0xa0, 0xaf, 0xb7, 0x60, 0x0f, 0x70, 0x8e, 0x25, 0xbd, - 0x74, 0xa0, 0xb6, 0x1e, 0x98, 0xcb, 0xfd, 0xc4, 0x60, 0xbf, 0xfe, 0x7d, 0x02, 0x6b, 0xf4, 0x68, - 0x40, 0x7f, 0x7f, 0xfb, 0x45, 0xcd, 0x6d, 0xbd, 0x01, 0x6b, 0xc4, 0x23, 0x79, 0x89, 0xfa, 0x7b, - 0x05, 0xfa, 0xd1, 0x52, 0x2c, 0x22, 0x24, 0x3d, 0x68, 0xe4, 0x73, 0x87, 0x91, 0xa5, 0x35, 0x8d, - 0x76, 0xad, 0x7b, 0x2b, 0x6b, 0x51, 0xfe, 0xe6, 0x75, 0xb6, 0x79, 0xc4, 0xa8, 0xf5, 0x43, 0x83, - 0x7a, 0x7e, 0x6a, 0x26, 0xe8, 0x6b, 0xb3, 0x54, 0xe7, 0xfe, 0xb9, 0x29, 0xea, 0x65, 0x89, 0x33, - 0x4a, 0x12, 0x57, 0x29, 0x9a, 0xec, 0x43, 0xd8, 0x8a, 0x24, 0x93, 0x68, 0x6d, 0x35, 0xb5, 0x76, - 0xad, 0x7b, 0xbb, 0xd8, 0xed, 0xcb, 0x98, 0x42, 0x13, 0x66, 0x41, 0x18, 0xb6, 0x2f, 0x18, 0x06, - 0x09, 0xe4, 0x4f, 0x79, 0xd2, 0x84, 0xca, 0x3b, 0x31, 0x5d, 0xf7, 0x6d, 0x27, 0xa7, 0xa6, 0x2a, - 0x71, 0x03, 0x3c, 0xb5, 0x90, 0xbe, 0xcb, 0xa4, 0x6a, 0x80, 0x41, 0xab, 0x29, 0xd2, 0x53, 0x1b, - 0xe9, 0xab, 0x8c, 0xa9, 0xb2, 0x91, 0x94, 0x53, 0xa4, 0x27, 0x1f, 0x3c, 0x86, 0xc6, 0x79, 0x63, - 0x84, 0x80, 0x79, 0x4c, 0x27, 0xee, 0x8b, 0xb1, 0x7b, 0xd8, 0x3b, 0x1a, 0x9d, 0xd0, 0x61, 0xe3, - 0x0a, 0xa9, 0x43, 0x35, 0xc6, 0xc6, 0xc3, 0x57, 0x43, 0xda, 0xd0, 0xba, 0x9f, 0x74, 0xd8, 0xcd, - 0xbb, 0xc5, 0x70, 0xc5, 0x3d, 0x24, 0xcf, 0xc1, 0x4c, 0x9e, 0x87, 0x6c, 0x60, 0xfb, 0x99, 0xe7, - 0xf2, 0x77, 0xc3, 0x2e, 0x09, 0x44, 0x2c, 0x97, 0x6c, 0x48, 0x81, 0x5c, 0xf9, 0xea, 0x94, 0xca, - 0x9d, 0xc0, 0x4e, 0x1c, 0xd7, 0xec, 0x7c, 0x3f, 0xe3, 0x95, 0x6d, 0x89, 0xdd, 0xfa, 0x1b, 0x25, - 0x09, 0x7a, 0xff, 0xf0, 0xf5, 0xfe, 0x8c, 0xcb, 0xd3, 0xb3, 0xa9, 0xe3, 0x89, 0xa0, 0x93, 0xf2, - 0x3b, 0xea, 0xc1, 0xf4, 0xc4, 0x7c, 0x0d, 0x7c, 0xd5, 0xeb, 0x23, 0xbe, 0xc2, 0x67, 0x5c, 0x3a, - 0x93, 0xb8, 0xf4, 0x53, 0x37, 0xd3, 0xf3, 0xc1, 0x81, 0x02, 0xa6, 0xdb, 0xea, 0xca, 0xa3, 0x5f, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x71, 0x80, 0x1d, 0xb0, 0xb7, 0x05, 0x00, 0x00, + // 582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x6e, 0xd3, 0x4c, + 0x14, 0xfd, 0x6c, 0xa7, 0xed, 0x97, 0x9b, 0xc6, 0x84, 0xa1, 0x42, 0xae, 0xf9, 0x0b, 0xe9, 0x26, + 0x62, 0xe1, 0x88, 0x20, 0x36, 0x5d, 0x91, 0x90, 0x54, 0x6a, 0x09, 0x21, 0x1a, 0x54, 0x16, 0x2c, + 0x30, 0x13, 0x7b, 0x94, 0x0e, 0xd8, 0x19, 0x63, 0x4f, 0x23, 0xf5, 0x0d, 0x90, 0x78, 0x11, 0xc4, + 0x9e, 0x0d, 0x8f, 0xc1, 0x63, 0xf0, 0x14, 0xc8, 0xe3, 0x1f, 0xe2, 0xc6, 0x06, 0xa4, 0x8a, 0x9d, + 0xe7, 0xdc, 0xe3, 0x7b, 0xcf, 0xdc, 0x7b, 0xee, 0xc0, 0x6d, 0x8f, 0xad, 0xe8, 0x7b, 0x26, 0x6c, + 0xb2, 0xa0, 0x4b, 0x61, 0xbb, 0x2c, 0x0a, 0x88, 0x70, 0xce, 0xac, 0x20, 0xe4, 0x82, 0xa3, 0x9d, + 0x34, 0x6a, 0xde, 0x28, 0xd0, 0x92, 0xa8, 0xb9, 0xe7, 0xf1, 0xc5, 0x82, 0x86, 0x3d, 0x1e, 0x08, + 0xc6, 0x97, 0x51, 0x82, 0x76, 0xbe, 0x2b, 0x60, 0x3e, 0x0d, 0x29, 0x11, 0x74, 0x10, 0x73, 0x47, + 0x69, 0x46, 0x4c, 0x3f, 0x9c, 0xd3, 0x48, 0xa0, 0x3b, 0x00, 0x49, 0xa9, 0x25, 0xf1, 0xa9, 0xa1, + 0xb4, 0x95, 0x6e, 0x1d, 0xd7, 0x25, 0x32, 0x25, 0x3e, 0x45, 0x08, 0x6a, 0x21, 0xe7, 0xbe, 0xa1, + 0xca, 0x80, 0xfc, 0x46, 0xf7, 0xe0, 0x7f, 0x9f, 0x0a, 0xe2, 0x12, 0x41, 0x0c, 0x2d, 0xc6, 0x87, + 0xda, 0xe7, 0x99, 0x82, 0x73, 0x10, 0x3d, 0x01, 0x3d, 0xa4, 0x91, 0x20, 0xa1, 0xb0, 0x03, 0xee, + 0x31, 0xe7, 0xc2, 0xa8, 0xb5, 0x95, 0xae, 0xde, 0xdf, 0xb7, 0x52, 0xd9, 0xd6, 0x09, 0x9f, 0xe3, + 0x84, 0x31, 0x93, 0x04, 0xdc, 0x0c, 0xd7, 0x8f, 0xe8, 0x2e, 0x80, 0x4b, 0x03, 0x8f, 0x5f, 0xf8, + 0x74, 0x29, 0x8c, 0x2d, 0x59, 0x7c, 0x0d, 0xe9, 0x7c, 0x55, 0xe0, 0x3a, 0xe6, 0xdc, 0x2f, 0x5c, + 0xe9, 0x4f, 0x77, 0x59, 0xd7, 0xad, 0xfe, 0x9d, 0x6e, 0xed, 0x4a, 0xba, 0x6b, 0x1b, 0xba, 0xdf, + 0x82, 0x39, 0xa2, 0x1e, 0xad, 0x98, 0x85, 0x05, 0x8d, 0x6c, 0xe0, 0x36, 0x73, 0x93, 0x0b, 0x0c, + 0x9b, 0xdf, 0x66, 0x90, 0xa1, 0xc7, 0x23, 0xfc, 0xeb, 0xdb, 0x2d, 0x1b, 0x4e, 0xe7, 0x0d, 0x18, + 0x13, 0x16, 0x89, 0x7f, 0x98, 0x7f, 0xbf, 0x24, 0x7f, 0x14, 0xf0, 0x65, 0x44, 0xd1, 0x00, 0x5a, + 0x45, 0xdf, 0xd2, 0xc8, 0x50, 0xda, 0x5a, 0xb7, 0xd1, 0xbf, 0x99, 0xb7, 0xb0, 0xf8, 0xe7, 0x35, + 0xb2, 0x7e, 0xa4, 0x51, 0xe7, 0xa3, 0x0a, 0xcd, 0xe2, 0x54, 0x75, 0x50, 0x33, 0xb1, 0x58, 0x65, + 0xee, 0xa5, 0x29, 0xab, 0x55, 0x8e, 0xd5, 0x2a, 0x1c, 0x5b, 0x2b, 0x9b, 0xfc, 0x43, 0xd8, 0x8a, + 0x04, 0x11, 0x54, 0x5a, 0xad, 0xd1, 0xbf, 0x55, 0xae, 0xf6, 0x65, 0x4c, 0xc1, 0x09, 0xb3, 0xc4, + 0x2c, 0xdb, 0x57, 0x32, 0xcb, 0xce, 0x86, 0x59, 0x04, 0xa0, 0xcd, 0xf2, 0xa8, 0x0d, 0xb5, 0x77, + 0x7c, 0x9e, 0xf5, 0x75, 0xb7, 0x50, 0x4d, 0x46, 0xe2, 0x06, 0x39, 0x72, 0xe1, 0x5d, 0x9b, 0x08, + 0xd9, 0x20, 0x0d, 0xd7, 0x53, 0x64, 0x20, 0x37, 0xde, 0x95, 0x1e, 0x94, 0x61, 0x2d, 0x09, 0xa7, + 0xc8, 0x40, 0x3c, 0x78, 0x0c, 0xad, 0xcb, 0xc2, 0x11, 0x02, 0xfd, 0x04, 0xcf, 0xec, 0x17, 0x53, + 0xfb, 0x68, 0x70, 0x3c, 0x39, 0xc5, 0xe3, 0xd6, 0x7f, 0xa8, 0x09, 0xf5, 0x18, 0x9b, 0x8e, 0x5f, + 0x8d, 0x71, 0x4b, 0xe9, 0x7f, 0x52, 0x61, 0xaf, 0xa8, 0x96, 0x86, 0x2b, 0xe6, 0x50, 0xf4, 0x1c, + 0xf4, 0xe4, 0xf9, 0xc9, 0x07, 0x7a, 0x90, 0x6b, 0xae, 0x7e, 0x97, 0xcc, 0x0a, 0xc3, 0xc4, 0xe9, + 0x92, 0x0d, 0x2a, 0x49, 0x57, 0xbd, 0x5a, 0x95, 0xe9, 0x4e, 0x61, 0x37, 0xb6, 0x73, 0x7e, 0xbe, + 0x9f, 0xf3, 0xaa, 0xb6, 0xc8, 0xec, 0xfc, 0x8e, 0x92, 0x2c, 0xc2, 0xf0, 0xe8, 0xf5, 0xc1, 0x82, + 0x89, 0xb3, 0xf3, 0xb9, 0xe5, 0x70, 0xbf, 0x97, 0xf2, 0x7b, 0xf2, 0x41, 0x76, 0xb8, 0x97, 0x01, + 0x5f, 0xd4, 0xe6, 0x84, 0xad, 0xe8, 0x33, 0x26, 0xac, 0x59, 0x1c, 0xfa, 0xa1, 0xea, 0xe9, 0xf9, + 0xf0, 0x50, 0x02, 0xf3, 0x6d, 0xf9, 0xcb, 0xa3, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0d, 0xcf, + 0x6a, 0x4d, 0x17, 0x06, 0x00, 0x00, } diff --git a/livekit/livekit_agent_simulation.pb.go b/livekit/livekit_agent_simulation.pb.go index 6b38b18eb..8a4682352 100644 --- a/livekit/livekit_agent_simulation.pb.go +++ b/livekit/livekit_agent_simulation.pb.go @@ -298,6 +298,13 @@ type SimulationRun struct { CreatedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` Jobs []*SimulationRun_Job `protobuf:"bytes,7,rep,name=jobs,proto3" json:"jobs,omitempty"` Summary *SimulationRunSummary `protobuf:"bytes,8,opt,name=summary,proto3" json:"summary,omitempty"` + AgentName string `protobuf:"bytes,9,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"` + ScenarioGroup *ScenarioGroup `protobuf:"bytes,10,opt,name=scenario_group,json=scenarioGroup,proto3" json:"scenario_group,omitempty"` + EndedAt *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=ended_at,json=endedAt,proto3" json:"ended_at,omitempty"` + JobCount int32 `protobuf:"varint,12,opt,name=job_count,json=jobCount,proto3" json:"job_count,omitempty"` + PassedCount int32 `protobuf:"varint,13,opt,name=passed_count,json=passedCount,proto3" json:"passed_count,omitempty"` + FailedCount int32 `protobuf:"varint,14,opt,name=failed_count,json=failedCount,proto3" json:"failed_count,omitempty"` + NumSimulations int32 `protobuf:"varint,15,opt,name=num_simulations,json=numSimulations,proto3" json:"num_simulations,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -388,6 +395,55 @@ func (x *SimulationRun) GetSummary() *SimulationRunSummary { return nil } +func (x *SimulationRun) GetAgentName() string { + if x != nil { + return x.AgentName + } + return "" +} + +func (x *SimulationRun) GetScenarioGroup() *ScenarioGroup { + if x != nil { + return x.ScenarioGroup + } + return nil +} + +func (x *SimulationRun) GetEndedAt() *timestamppb.Timestamp { + if x != nil { + return x.EndedAt + } + return nil +} + +func (x *SimulationRun) GetJobCount() int32 { + if x != nil { + return x.JobCount + } + return 0 +} + +func (x *SimulationRun) GetPassedCount() int32 { + if x != nil { + return x.PassedCount + } + return 0 +} + +func (x *SimulationRun) GetFailedCount() int32 { + if x != nil { + return x.FailedCount + } + return 0 +} + +func (x *SimulationRun) GetNumSimulations() int32 { + if x != nil { + return x.NumSimulations + } + return 0 +} + type Scenario struct { state protoimpl.MessageState `protogen:"open.v1"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -520,6 +576,7 @@ type ScenarioGroup struct { Label string `protobuf:"bytes,3,opt,name=label,proto3" json:"label,omitempty"` CreatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` Scenarios []*Scenario `protobuf:"bytes,5,rep,name=scenarios,proto3" json:"scenarios,omitempty"` + ScenarioCount int32 `protobuf:"varint,6,opt,name=scenario_count,json=scenarioCount,proto3" json:"scenario_count,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -589,6 +646,13 @@ func (x *ScenarioGroup) GetScenarios() []*Scenario { return nil } +func (x *ScenarioGroup) GetScenarioCount() int32 { + if x != nil { + return x.ScenarioCount + } + return 0 +} + type SimulationRunSummary_Issue struct { state protoimpl.MessageState `protogen:"open.v1"` Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` @@ -649,6 +713,11 @@ type SimulationRun_Job struct { Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"` AgentExpectations string `protobuf:"bytes,5,opt,name=agent_expectations,json=agentExpectations,proto3" json:"agent_expectations,omitempty"` Label string `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"` + Tags []string `protobuf:"bytes,7,rep,name=tags,proto3" json:"tags,omitempty"` + RoomName string `protobuf:"bytes,8,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` + ScenarioId string `protobuf:"bytes,9,opt,name=scenario_id,json=scenarioId,proto3" json:"scenario_id,omitempty"` + StartedAt *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"` + EndedAt *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=ended_at,json=endedAt,proto3" json:"ended_at,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -725,6 +794,41 @@ func (x *SimulationRun_Job) GetLabel() string { return "" } +func (x *SimulationRun_Job) GetTags() []string { + if x != nil { + return x.Tags + } + return nil +} + +func (x *SimulationRun_Job) GetRoomName() string { + if x != nil { + return x.RoomName + } + return "" +} + +func (x *SimulationRun_Job) GetScenarioId() string { + if x != nil { + return x.ScenarioId + } + return "" +} + +func (x *SimulationRun_Job) GetStartedAt() *timestamppb.Timestamp { + if x != nil { + return x.StartedAt + } + return nil +} + +func (x *SimulationRun_Job) GetEndedAt() *timestamppb.Timestamp { + if x != nil { + return x.EndedAt + } + return nil +} + type SimulationRun_Create struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -2732,7 +2836,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\vdescription\x18\x01 \x01(\tR\vdescription\x12\x1e\n" + "\n" + "suggestion\x18\x02 \x01(\tR\n" + - "suggestion\"\xc5\x12\n" + + "suggestion\"\xaa\x16\n" + "\rSimulationRun\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -2743,14 +2847,31 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\n" + "created_at\x18\x06 \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x12.\n" + "\x04jobs\x18\a \x03(\v2\x1a.livekit.SimulationRun.JobR\x04jobs\x127\n" + - "\asummary\x18\b \x01(\v2\x1d.livekit.SimulationRunSummaryR\asummary\x1a\xc0\x02\n" + + "\asummary\x18\b \x01(\v2\x1d.livekit.SimulationRunSummaryR\asummary\x12\x1d\n" + + "\n" + + "agent_name\x18\t \x01(\tR\tagentName\x12=\n" + + "\x0escenario_group\x18\n" + + " \x01(\v2\x16.livekit.ScenarioGroupR\rscenarioGroup\x125\n" + + "\bended_at\x18\v \x01(\v2\x1a.google.protobuf.TimestampR\aendedAt\x12\x1b\n" + + "\tjob_count\x18\f \x01(\x05R\bjobCount\x12!\n" + + "\fpassed_count\x18\r \x01(\x05R\vpassedCount\x12!\n" + + "\ffailed_count\x18\x0e \x01(\x05R\vfailedCount\x12'\n" + + "\x0fnum_simulations\x18\x0f \x01(\x05R\x0enumSimulations\x1a\x84\x04\n" + "\x03Job\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x129\n" + "\x06status\x18\x02 \x01(\x0e2!.livekit.SimulationRun.Job.StatusR\x06status\x12\"\n" + "\finstructions\x18\x03 \x01(\tR\finstructions\x12\x14\n" + "\x05error\x18\x04 \x01(\tR\x05error\x12-\n" + "\x12agent_expectations\x18\x05 \x01(\tR\x11agentExpectations\x12\x14\n" + - "\x05label\x18\x06 \x01(\tR\x05label\"o\n" + + "\x05label\x18\x06 \x01(\tR\x05label\x12\x12\n" + + "\x04tags\x18\a \x03(\tR\x04tags\x12\x1b\n" + + "\troom_name\x18\b \x01(\tR\broomName\x12\x1f\n" + + "\vscenario_id\x18\t \x01(\tR\n" + + "scenarioId\x129\n" + + "\n" + + "started_at\x18\n" + + " \x01(\v2\x1a.google.protobuf.TimestampR\tstartedAt\x125\n" + + "\bended_at\x18\v \x01(\v2\x1a.google.protobuf.TimestampR\aendedAt\"o\n" + "\x06Status\x12\x12\n" + "\x0eSTATUS_PENDING\x10\x00\x12\x12\n" + "\x0eSTATUS_RUNNING\x10\x01\x12\x14\n" + @@ -2900,7 +3021,7 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x06Status\x12\x15\n" + "\x11STATUS_GENERATING\x10\x00\x12\x10\n" + "\fSTATUS_READY\x10\x01\x12\x11\n" + - "\rSTATUS_FAILED\x10\x02\"\xb0\x04\n" + + "\rSTATUS_FAILED\x10\x02\"\xd7\x04\n" + "\rScenarioGroup\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n" + "\n" + @@ -2908,7 +3029,8 @@ const file_livekit_agent_simulation_proto_rawDesc = "" + "\x05label\x18\x03 \x01(\tR\x05label\x129\n" + "\n" + "created_at\x18\x04 \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x12/\n" + - "\tscenarios\x18\x05 \x03(\v2\x11.livekit.ScenarioR\tscenarios\x1a\x93\x01\n" + + "\tscenarios\x18\x05 \x03(\v2\x11.livekit.ScenarioR\tscenarios\x12%\n" + + "\x0escenario_count\x18\x06 \x01(\x05R\rscenarioCount\x1a\x93\x01\n" + "\x06Create\x1a>\n" + "\aRequest\x12\x1d\n" + "\n" + @@ -3027,61 +3149,65 @@ var file_livekit_agent_simulation_proto_depIdxs = []int32{ 55, // 3: livekit.SimulationRun.created_at:type_name -> google.protobuf.Timestamp 9, // 4: livekit.SimulationRun.jobs:type_name -> livekit.SimulationRun.Job 3, // 5: livekit.SimulationRun.summary:type_name -> livekit.SimulationRunSummary - 55, // 6: livekit.Scenario.created_at:type_name -> google.protobuf.Timestamp - 2, // 7: livekit.Scenario.status:type_name -> livekit.Scenario.Status - 33, // 8: livekit.Scenario.metadata:type_name -> livekit.Scenario.MetadataEntry - 55, // 9: livekit.ScenarioGroup.created_at:type_name -> google.protobuf.Timestamp - 5, // 10: livekit.ScenarioGroup.scenarios:type_name -> livekit.Scenario - 56, // 11: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext - 1, // 12: livekit.SimulationRun.Job.status:type_name -> livekit.SimulationRun.Job.Status - 19, // 13: livekit.SimulationRun.Create.Scenario.metadata:type_name -> livekit.SimulationRun.Create.Scenario.MetadataEntry - 15, // 14: livekit.SimulationRun.Create.Scenarios.scenarios:type_name -> livekit.SimulationRun.Create.Scenario - 16, // 15: livekit.SimulationRun.Create.Request.scenarios:type_name -> livekit.SimulationRun.Create.Scenarios - 57, // 16: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest - 4, // 17: livekit.SimulationRun.Get.Response.run:type_name -> livekit.SimulationRun - 0, // 18: livekit.SimulationRun.List.Request.status:type_name -> livekit.SimulationRun.Status - 58, // 19: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination - 4, // 20: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun - 58, // 21: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination - 36, // 22: livekit.Scenario.Create.Request.metadata:type_name -> livekit.Scenario.Create.Request.MetadataEntry - 5, // 23: livekit.Scenario.Create.Response.scenario:type_name -> livekit.Scenario - 5, // 24: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario - 43, // 25: livekit.Scenario.Update.Request.metadata:type_name -> livekit.Scenario.Update.Request.MetadataEntry - 5, // 26: livekit.Scenario.Update.Response.scenario:type_name -> livekit.Scenario - 5, // 27: livekit.Scenario.List.Response.scenarios:type_name -> livekit.Scenario - 6, // 28: livekit.ScenarioGroup.Create.Response.scenario_group:type_name -> livekit.ScenarioGroup - 6, // 29: livekit.ScenarioGroup.List.Response.scenario_groups:type_name -> livekit.ScenarioGroup - 17, // 30: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request - 20, // 31: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request - 22, // 32: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request - 24, // 33: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request - 26, // 34: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request - 34, // 35: livekit.AgentSimulation.CreateScenario:input_type -> livekit.Scenario.Create.Request - 37, // 36: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request - 39, // 37: livekit.AgentSimulation.DeleteScenario:input_type -> livekit.Scenario.Delete.Request - 41, // 38: livekit.AgentSimulation.UpdateScenario:input_type -> livekit.Scenario.Update.Request - 49, // 39: livekit.AgentSimulation.CreateScenarioGroup:input_type -> livekit.ScenarioGroup.Create.Request - 51, // 40: livekit.AgentSimulation.DeleteScenarioGroup:input_type -> livekit.ScenarioGroup.Delete.Request - 53, // 41: livekit.AgentSimulation.ListScenarioGroups:input_type -> livekit.ScenarioGroup.List.Request - 44, // 42: livekit.AgentSimulation.ListScenarios:input_type -> livekit.Scenario.List.Request - 18, // 43: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response - 21, // 44: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response - 23, // 45: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response - 25, // 46: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response - 27, // 47: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response - 35, // 48: livekit.AgentSimulation.CreateScenario:output_type -> livekit.Scenario.Create.Response - 38, // 49: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response - 40, // 50: livekit.AgentSimulation.DeleteScenario:output_type -> livekit.Scenario.Delete.Response - 42, // 51: livekit.AgentSimulation.UpdateScenario:output_type -> livekit.Scenario.Update.Response - 50, // 52: livekit.AgentSimulation.CreateScenarioGroup:output_type -> livekit.ScenarioGroup.Create.Response - 52, // 53: livekit.AgentSimulation.DeleteScenarioGroup:output_type -> livekit.ScenarioGroup.Delete.Response - 54, // 54: livekit.AgentSimulation.ListScenarioGroups:output_type -> livekit.ScenarioGroup.List.Response - 45, // 55: livekit.AgentSimulation.ListScenarios:output_type -> livekit.Scenario.List.Response - 43, // [43:56] is the sub-list for method output_type - 30, // [30:43] is the sub-list for method input_type - 30, // [30:30] is the sub-list for extension type_name - 30, // [30:30] is the sub-list for extension extendee - 0, // [0:30] is the sub-list for field type_name + 6, // 6: livekit.SimulationRun.scenario_group:type_name -> livekit.ScenarioGroup + 55, // 7: livekit.SimulationRun.ended_at:type_name -> google.protobuf.Timestamp + 55, // 8: livekit.Scenario.created_at:type_name -> google.protobuf.Timestamp + 2, // 9: livekit.Scenario.status:type_name -> livekit.Scenario.Status + 33, // 10: livekit.Scenario.metadata:type_name -> livekit.Scenario.MetadataEntry + 55, // 11: livekit.ScenarioGroup.created_at:type_name -> google.protobuf.Timestamp + 5, // 12: livekit.ScenarioGroup.scenarios:type_name -> livekit.Scenario + 56, // 13: livekit.SimulationRunSummary.ChatHistoryEntry.value:type_name -> livekit.agent.ChatContext + 1, // 14: livekit.SimulationRun.Job.status:type_name -> livekit.SimulationRun.Job.Status + 55, // 15: livekit.SimulationRun.Job.started_at:type_name -> google.protobuf.Timestamp + 55, // 16: livekit.SimulationRun.Job.ended_at:type_name -> google.protobuf.Timestamp + 19, // 17: livekit.SimulationRun.Create.Scenario.metadata:type_name -> livekit.SimulationRun.Create.Scenario.MetadataEntry + 15, // 18: livekit.SimulationRun.Create.Scenarios.scenarios:type_name -> livekit.SimulationRun.Create.Scenario + 16, // 19: livekit.SimulationRun.Create.Request.scenarios:type_name -> livekit.SimulationRun.Create.Scenarios + 57, // 20: livekit.SimulationRun.Create.Response.presigned_post_request:type_name -> livekit.PresignedPostRequest + 4, // 21: livekit.SimulationRun.Get.Response.run:type_name -> livekit.SimulationRun + 0, // 22: livekit.SimulationRun.List.Request.status:type_name -> livekit.SimulationRun.Status + 58, // 23: livekit.SimulationRun.List.Request.page_token:type_name -> livekit.TokenPagination + 4, // 24: livekit.SimulationRun.List.Response.runs:type_name -> livekit.SimulationRun + 58, // 25: livekit.SimulationRun.List.Response.next_page_token:type_name -> livekit.TokenPagination + 36, // 26: livekit.Scenario.Create.Request.metadata:type_name -> livekit.Scenario.Create.Request.MetadataEntry + 5, // 27: livekit.Scenario.Create.Response.scenario:type_name -> livekit.Scenario + 5, // 28: livekit.Scenario.CreateFromSession.Response.scenario:type_name -> livekit.Scenario + 43, // 29: livekit.Scenario.Update.Request.metadata:type_name -> livekit.Scenario.Update.Request.MetadataEntry + 5, // 30: livekit.Scenario.Update.Response.scenario:type_name -> livekit.Scenario + 5, // 31: livekit.Scenario.List.Response.scenarios:type_name -> livekit.Scenario + 6, // 32: livekit.ScenarioGroup.Create.Response.scenario_group:type_name -> livekit.ScenarioGroup + 6, // 33: livekit.ScenarioGroup.List.Response.scenario_groups:type_name -> livekit.ScenarioGroup + 17, // 34: livekit.AgentSimulation.CreateSimulationRun:input_type -> livekit.SimulationRun.Create.Request + 20, // 35: livekit.AgentSimulation.ConfirmSimulationSourceUpload:input_type -> livekit.SimulationRun.ConfirmSourceUpload.Request + 22, // 36: livekit.AgentSimulation.GetSimulationRun:input_type -> livekit.SimulationRun.Get.Request + 24, // 37: livekit.AgentSimulation.ListSimulationRuns:input_type -> livekit.SimulationRun.List.Request + 26, // 38: livekit.AgentSimulation.CancelSimulationRun:input_type -> livekit.SimulationRun.Cancel.Request + 34, // 39: livekit.AgentSimulation.CreateScenario:input_type -> livekit.Scenario.Create.Request + 37, // 40: livekit.AgentSimulation.CreateScenarioFromSession:input_type -> livekit.Scenario.CreateFromSession.Request + 39, // 41: livekit.AgentSimulation.DeleteScenario:input_type -> livekit.Scenario.Delete.Request + 41, // 42: livekit.AgentSimulation.UpdateScenario:input_type -> livekit.Scenario.Update.Request + 49, // 43: livekit.AgentSimulation.CreateScenarioGroup:input_type -> livekit.ScenarioGroup.Create.Request + 51, // 44: livekit.AgentSimulation.DeleteScenarioGroup:input_type -> livekit.ScenarioGroup.Delete.Request + 53, // 45: livekit.AgentSimulation.ListScenarioGroups:input_type -> livekit.ScenarioGroup.List.Request + 44, // 46: livekit.AgentSimulation.ListScenarios:input_type -> livekit.Scenario.List.Request + 18, // 47: livekit.AgentSimulation.CreateSimulationRun:output_type -> livekit.SimulationRun.Create.Response + 21, // 48: livekit.AgentSimulation.ConfirmSimulationSourceUpload:output_type -> livekit.SimulationRun.ConfirmSourceUpload.Response + 23, // 49: livekit.AgentSimulation.GetSimulationRun:output_type -> livekit.SimulationRun.Get.Response + 25, // 50: livekit.AgentSimulation.ListSimulationRuns:output_type -> livekit.SimulationRun.List.Response + 27, // 51: livekit.AgentSimulation.CancelSimulationRun:output_type -> livekit.SimulationRun.Cancel.Response + 35, // 52: livekit.AgentSimulation.CreateScenario:output_type -> livekit.Scenario.Create.Response + 38, // 53: livekit.AgentSimulation.CreateScenarioFromSession:output_type -> livekit.Scenario.CreateFromSession.Response + 40, // 54: livekit.AgentSimulation.DeleteScenario:output_type -> livekit.Scenario.Delete.Response + 42, // 55: livekit.AgentSimulation.UpdateScenario:output_type -> livekit.Scenario.Update.Response + 50, // 56: livekit.AgentSimulation.CreateScenarioGroup:output_type -> livekit.ScenarioGroup.Create.Response + 52, // 57: livekit.AgentSimulation.DeleteScenarioGroup:output_type -> livekit.ScenarioGroup.Delete.Response + 54, // 58: livekit.AgentSimulation.ListScenarioGroups:output_type -> livekit.ScenarioGroup.List.Response + 45, // 59: livekit.AgentSimulation.ListScenarios:output_type -> livekit.Scenario.List.Response + 47, // [47:60] is the sub-list for method output_type + 34, // [34:47] is the sub-list for method input_type + 34, // [34:34] is the sub-list for extension type_name + 34, // [34:34] is the sub-list for extension extendee + 0, // [0:34] is the sub-list for field type_name } func init() { file_livekit_agent_simulation_proto_init() } diff --git a/livekit/livekit_agent_simulation.twirp.go b/livekit/livekit_agent_simulation.twirp.go index b9a1ca4a1..8717b0f54 100644 --- a/livekit/livekit_agent_simulation.twirp.go +++ b/livekit/livekit_agent_simulation.twirp.go @@ -3865,123 +3865,132 @@ func (s *agentSimulationServer) PathPrefix() string { } var twirpFileDescriptor9 = []byte{ - // 1882 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xcf, 0x6f, 0xdb, 0xc8, - 0xf5, 0x37, 0xa9, 0x5f, 0xd6, 0x53, 0x24, 0xcb, 0xb3, 0xde, 0x7c, 0x65, 0x7e, 0xe1, 0xc4, 0x51, - 0x76, 0x13, 0xa3, 0xdb, 0x55, 0x16, 0xde, 0x2d, 0xda, 0x24, 0xfd, 0xa5, 0x58, 0x8a, 0xad, 0xac, - 0xe3, 0xd5, 0x52, 0x36, 0x8a, 0x4d, 0x0f, 0x04, 0x2d, 0x4e, 0x14, 0x26, 0x12, 0x47, 0xe5, 0x0c, - 0xdd, 0xe4, 0xb0, 0x97, 0x9e, 0x82, 0x16, 0x3d, 0x14, 0x05, 0x7a, 0xea, 0xa1, 0x28, 0xb0, 0x97, - 0x9e, 0x7a, 0xe9, 0xa9, 0x05, 0xda, 0x4b, 0xff, 0x85, 0x5e, 0xfa, 0x1f, 0xf4, 0x5f, 0xe8, 0xa5, - 0xe0, 0xcc, 0x90, 0x1a, 0x4a, 0xa4, 0xa2, 0x20, 0xd9, 0xa2, 0x37, 0xf3, 0xf1, 0x33, 0x6f, 0xde, - 0xfb, 0xbc, 0x9f, 0xb4, 0xe0, 0xca, 0xd8, 0xbd, 0xc0, 0xcf, 0x5c, 0x66, 0xd9, 0x23, 0xec, 0x31, - 0x8b, 0xba, 0x93, 0x60, 0x6c, 0x33, 0x97, 0x78, 0xad, 0xa9, 0x4f, 0x18, 0x41, 0x25, 0xf9, 0xde, - 0xb8, 0x3a, 0x22, 0x64, 0x34, 0xc6, 0xb7, 0xb8, 0xf8, 0x3c, 0x78, 0x7c, 0x8b, 0xb9, 0x13, 0x4c, - 0x99, 0x3d, 0x99, 0x0a, 0xa4, 0xb1, 0x1d, 0x69, 0x1a, 0x8e, 0x49, 0xe0, 0x08, 0x7d, 0xf2, 0xd5, - 0x56, 0xf4, 0x6a, 0x42, 0x1c, 0x3c, 0xa6, 0x52, 0x7a, 0x8d, 0x43, 0x6e, 0xcd, 0x19, 0x80, 0x29, - 0x8d, 0x6f, 0x6f, 0xfe, 0x39, 0x07, 0x5b, 0x83, 0xd8, 0x24, 0x33, 0xf0, 0x06, 0xc1, 0x64, 0x62, - 0xfb, 0x2f, 0xd0, 0x65, 0x28, 0x4e, 0x6d, 0x4a, 0xb1, 0xd3, 0xd0, 0x76, 0xb5, 0xbd, 0x82, 0x29, - 0x9f, 0x42, 0xf9, 0x63, 0xdb, 0x1d, 0x63, 0xa7, 0xa1, 0x0b, 0xb9, 0x78, 0x42, 0x3b, 0x00, 0x23, - 0xe2, 0x7a, 0x23, 0xeb, 0xa7, 0x78, 0x3c, 0x6e, 0xe4, 0x76, 0xb5, 0xbd, 0xb2, 0x59, 0xe6, 0x92, - 0x1f, 0xe1, 0xf1, 0x38, 0x7c, 0xcd, 0x88, 0xe5, 0x4e, 0xa6, 0x3e, 0xb9, 0xc0, 0x8d, 0xbc, 0x78, - 0xcd, 0x48, 0x4f, 0x08, 0xd0, 0x5d, 0x28, 0xba, 0x94, 0x06, 0x98, 0x36, 0x0a, 0xbb, 0xb9, 0xbd, - 0xca, 0xfe, 0xf5, 0x96, 0x34, 0xba, 0x95, 0x66, 0x5c, 0xab, 0x17, 0x62, 0x4d, 0x79, 0x04, 0x7d, - 0x0e, 0x97, 0x86, 0x4f, 0x6c, 0x66, 0x3d, 0x71, 0x29, 0x23, 0xfe, 0x8b, 0x46, 0x91, 0xab, 0x68, - 0x2d, 0x57, 0x71, 0xf0, 0xc4, 0x66, 0x47, 0xe2, 0x40, 0xd7, 0x63, 0xfe, 0x0b, 0xb3, 0x32, 0x9c, - 0x49, 0x8c, 0x47, 0x50, 0x9f, 0x07, 0xa0, 0x3a, 0xe4, 0x9e, 0xe1, 0x17, 0x9c, 0x8e, 0xb2, 0x19, - 0xfe, 0x89, 0x3e, 0x82, 0xc2, 0x85, 0x3d, 0x0e, 0x30, 0xa7, 0xa2, 0xb2, 0x6f, 0xc4, 0x37, 0x8a, - 0xd0, 0x84, 0x1a, 0x0e, 0x88, 0xc7, 0xf0, 0x73, 0x66, 0x0a, 0xe0, 0x1d, 0xfd, 0x3b, 0x9a, 0xd1, - 0x83, 0x02, 0xb7, 0x1f, 0xed, 0x42, 0xc5, 0xc1, 0x74, 0xe8, 0xbb, 0xd3, 0xd0, 0x36, 0xa9, 0x58, - 0x15, 0xa1, 0x2b, 0x00, 0x34, 0x18, 0x8d, 0x30, 0xe5, 0x00, 0x9d, 0x03, 0x14, 0x49, 0xf3, 0xef, - 0x08, 0xaa, 0x09, 0xef, 0x50, 0x0d, 0x74, 0xd7, 0x91, 0xaa, 0x74, 0x97, 0x87, 0x65, 0xea, 0x93, - 0xa7, 0x78, 0xc8, 0x2c, 0xd7, 0x91, 0x1a, 0xca, 0x52, 0xd2, 0x73, 0xd0, 0xb7, 0xa0, 0x48, 0x99, - 0xcd, 0x02, 0xca, 0x23, 0x56, 0xdb, 0xdf, 0x49, 0x27, 0xad, 0x35, 0xe0, 0x20, 0x53, 0x82, 0xd1, - 0x07, 0xb0, 0x29, 0x92, 0x49, 0xb5, 0x5f, 0x04, 0xb5, 0xce, 0x5f, 0x74, 0x14, 0x27, 0xb6, 0xa0, - 0x80, 0x7d, 0x9f, 0xf8, 0x8d, 0x02, 0x07, 0x88, 0x07, 0x74, 0x1b, 0x60, 0xe8, 0x63, 0x9b, 0x61, - 0xc7, 0xb2, 0x59, 0xa3, 0x28, 0x09, 0x14, 0x25, 0xd0, 0x8a, 0x4a, 0xa0, 0x75, 0x1a, 0x95, 0x80, - 0x59, 0x96, 0xe8, 0x36, 0x43, 0x2d, 0xc8, 0x3f, 0x25, 0xe7, 0xb4, 0x51, 0xe2, 0x71, 0x36, 0x32, - 0x4c, 0x7e, 0x40, 0xce, 0x4d, 0x8e, 0x43, 0xdf, 0x86, 0x12, 0x15, 0x51, 0x6f, 0xac, 0xf3, 0x7b, - 0x76, 0x96, 0xa6, 0x86, 0x19, 0xa1, 0x8d, 0xbf, 0xe9, 0x90, 0x7b, 0x40, 0xce, 0x17, 0x48, 0xbd, - 0x1d, 0xb3, 0xa6, 0x73, 0xd6, 0xae, 0x65, 0x9b, 0x30, 0xcf, 0x5c, 0x13, 0x2e, 0xb9, 0x1e, 0x65, - 0x7e, 0x30, 0x0c, 0x41, 0x54, 0x16, 0x4a, 0x42, 0x36, 0x23, 0x2c, 0xaf, 0x12, 0xf6, 0x21, 0x20, - 0xc1, 0x39, 0x7e, 0x3e, 0xc5, 0x43, 0x66, 0x8b, 0xf3, 0x82, 0x53, 0x11, 0x8d, 0xae, 0xf2, 0x22, - 0x54, 0x32, 0xb6, 0xcf, 0xf1, 0x98, 0x53, 0x5b, 0x36, 0xc5, 0x43, 0x93, 0x40, 0x51, 0x18, 0x84, - 0x10, 0xd4, 0x06, 0xa7, 0xed, 0xd3, 0xb3, 0x81, 0xd5, 0xef, 0x9e, 0x74, 0x7a, 0x27, 0x87, 0xf5, - 0x35, 0x45, 0x66, 0x9e, 0x9d, 0x9c, 0x84, 0x32, 0x0d, 0x6d, 0x41, 0x5d, 0xca, 0x0e, 0x3e, 0x7b, - 0xd8, 0x3f, 0xee, 0x9e, 0x76, 0x3b, 0x75, 0x1d, 0x6d, 0x42, 0x55, 0x4a, 0xef, 0xb7, 0x7b, 0xc7, - 0xdd, 0x4e, 0x3d, 0xa7, 0x02, 0xdb, 0x27, 0x07, 0xdd, 0xe3, 0x50, 0x9a, 0x37, 0x7e, 0x53, 0x84, - 0xe2, 0x01, 0x8f, 0x9c, 0xf1, 0x33, 0x1d, 0xd6, 0x07, 0x43, 0xec, 0xd9, 0xbe, 0x4b, 0x16, 0x78, - 0xd0, 0x52, 0x78, 0x48, 0xf7, 0x58, 0xcf, 0xf2, 0xb8, 0x0f, 0xeb, 0x13, 0xcc, 0x6c, 0xc7, 0x66, - 0x76, 0x23, 0xc7, 0x53, 0xe3, 0x93, 0x8c, 0xb8, 0x08, 0x83, 0x5a, 0x91, 0x31, 0xad, 0x87, 0xf2, - 0x98, 0x68, 0x04, 0xb1, 0x96, 0x19, 0x87, 0x79, 0x85, 0x43, 0xe3, 0x2e, 0x54, 0x13, 0x07, 0x52, - 0x1a, 0xc3, 0x96, 0xda, 0x18, 0xca, 0x6a, 0xf1, 0x7f, 0x0e, 0xe5, 0xe8, 0x5a, 0x8a, 0x3a, 0x50, - 0xa6, 0xd1, 0x43, 0x43, 0xe3, 0x26, 0xdf, 0x58, 0xcd, 0x64, 0x73, 0x76, 0xd0, 0xf8, 0x4a, 0x87, - 0x92, 0x89, 0x7f, 0x12, 0x60, 0xca, 0xe6, 0xca, 0x5d, 0x9b, 0x2f, 0xf7, 0x1d, 0x00, 0xc1, 0xa8, - 0x67, 0x4f, 0x22, 0xe3, 0xca, 0x5c, 0x72, 0x62, 0x4f, 0x70, 0x7a, 0x59, 0xe7, 0x32, 0xca, 0xfa, - 0x26, 0x6c, 0x78, 0xc1, 0x44, 0x99, 0x67, 0x94, 0xd3, 0x54, 0x30, 0x6b, 0x5e, 0x30, 0x99, 0x19, - 0x4f, 0xc3, 0x89, 0xe1, 0xe3, 0x51, 0xa8, 0x4a, 0xa4, 0xa2, 0x7c, 0x42, 0x87, 0xaa, 0xf7, 0x25, - 0x5e, 0x98, 0x37, 0x57, 0xf3, 0x9e, 0x1e, 0xad, 0x29, 0x04, 0xa0, 0xff, 0x87, 0xf5, 0x91, 0x4f, - 0x82, 0x69, 0xe8, 0x32, 0xaf, 0x87, 0xa3, 0x35, 0xb3, 0xc4, 0x25, 0x3d, 0xe7, 0xde, 0x3a, 0x14, - 0x29, 0x09, 0xfc, 0x21, 0x36, 0x7e, 0xa1, 0xc1, 0xba, 0x89, 0xe9, 0x94, 0x78, 0x14, 0xa3, 0x6f, - 0xc0, 0xe6, 0xcc, 0x72, 0xcb, 0x0f, 0xbc, 0x19, 0x5f, 0x1b, 0x54, 0xbd, 0xbb, 0xe7, 0xa0, 0x01, - 0x5c, 0x9e, 0xfa, 0x98, 0xba, 0x23, 0x0f, 0x3b, 0xd6, 0x94, 0x50, 0x66, 0xf9, 0x82, 0x6e, 0xd9, - 0xf7, 0x67, 0xed, 0xa4, 0x1f, 0xc1, 0xfa, 0x84, 0x32, 0x19, 0x13, 0x73, 0x6b, 0x9a, 0x22, 0x35, - 0x7e, 0xa7, 0xc1, 0x3b, 0x07, 0xc4, 0x7b, 0xec, 0xfa, 0x93, 0x01, 0xb7, 0xef, 0x6c, 0x3a, 0x26, - 0xb6, 0x63, 0x7c, 0xb9, 0x72, 0x30, 0x53, 0x5d, 0xd0, 0xd3, 0x5d, 0xb8, 0x09, 0x1b, 0x43, 0xe2, - 0x60, 0x0b, 0x87, 0x09, 0x3b, 0x25, 0xae, 0xc7, 0x64, 0x5c, 0x6b, 0xa1, 0xb8, 0x1b, 0x4b, 0x0d, - 0x98, 0x71, 0x64, 0xfc, 0x4a, 0x83, 0xdc, 0x21, 0x66, 0xc6, 0xe9, 0xd7, 0x61, 0x92, 0xf1, 0x89, - 0x12, 0x8d, 0x3d, 0xc8, 0xf9, 0x81, 0x98, 0x80, 0x95, 0xfd, 0xcb, 0xe9, 0x49, 0x60, 0x86, 0x10, - 0xe3, 0xaf, 0x3a, 0xe4, 0x8f, 0x5d, 0xca, 0x8c, 0xbf, 0x68, 0x2b, 0x5b, 0x75, 0x67, 0xae, 0x5d, - 0x2f, 0x1f, 0x72, 0x47, 0x6b, 0x51, 0xb3, 0x7e, 0xa9, 0x69, 0xe8, 0xbb, 0x00, 0x53, 0x7b, 0x84, - 0x2d, 0x46, 0x9e, 0x61, 0x51, 0x0b, 0x95, 0xfd, 0x46, 0x7c, 0xfe, 0x34, 0x94, 0xf6, 0xed, 0x91, - 0xeb, 0x71, 0x25, 0x47, 0x9a, 0x59, 0x0e, 0xd1, 0x5c, 0xfc, 0x52, 0xd3, 0xee, 0x95, 0xa1, 0x64, - 0x09, 0x5d, 0xf7, 0xaa, 0x50, 0xb1, 0x66, 0x9a, 0x8c, 0xe7, 0x89, 0x5c, 0xcc, 0xfb, 0x81, 0x17, - 0x75, 0x80, 0x2c, 0xf7, 0x39, 0x06, 0xfd, 0x10, 0x36, 0x3c, 0xfc, 0x9c, 0x29, 0xaa, 0x64, 0x12, - 0x66, 0x1a, 0x65, 0x56, 0xc3, 0x03, 0xfd, 0xc8, 0x2c, 0xe3, 0x29, 0x14, 0x0f, 0x6c, 0x6f, 0x88, - 0xc7, 0x5f, 0x53, 0x5c, 0x95, 0x0c, 0x6a, 0x7e, 0xa5, 0xc5, 0xf3, 0x66, 0x1b, 0xde, 0x4d, 0xce, - 0x1b, 0xeb, 0xac, 0x7f, 0xfc, 0x59, 0xbb, 0x53, 0x5f, 0x43, 0xef, 0xc2, 0xa6, 0x7c, 0x75, 0xd8, - 0x3d, 0xe9, 0x9a, 0xed, 0x53, 0x31, 0x79, 0x16, 0xa7, 0x91, 0x8e, 0x2e, 0x03, 0x92, 0xb2, 0xc1, - 0xd9, 0xc3, 0x87, 0x6d, 0xb3, 0xf7, 0x28, 0x94, 0xe7, 0x52, 0xa7, 0x54, 0x7e, 0x71, 0x4a, 0x15, - 0x52, 0xa7, 0x54, 0xb1, 0xf9, 0xcb, 0x9a, 0x32, 0x9a, 0x5e, 0x73, 0x85, 0x8a, 0x87, 0x44, 0x4e, - 0x19, 0x12, 0x0b, 0xf3, 0x2d, 0xbf, 0xf2, 0x7c, 0xcb, 0x9c, 0xe8, 0xef, 0x41, 0x4d, 0x74, 0x32, - 0xcb, 0x27, 0x64, 0x12, 0xda, 0x22, 0xfa, 0xe9, 0x25, 0x21, 0x35, 0x09, 0x99, 0xf4, 0x9c, 0xb9, - 0xbd, 0xaa, 0xf4, 0x3a, 0x7b, 0xd5, 0x47, 0x71, 0x9d, 0xac, 0xf3, 0x3a, 0x99, 0xa5, 0x54, 0x3c, - 0x29, 0xe7, 0xb6, 0x99, 0x78, 0x53, 0x29, 0xab, 0x9b, 0xca, 0xb6, 0xd2, 0x8f, 0x81, 0xbf, 0x88, - 0xba, 0x31, 0xba, 0xab, 0xcc, 0xe8, 0x0a, 0x4f, 0xf7, 0xab, 0x8b, 0x97, 0x64, 0x8c, 0x63, 0xe3, - 0xdf, 0x7a, 0xbc, 0x4b, 0xfc, 0x69, 0xf5, 0x99, 0x17, 0xc7, 0x47, 0x5f, 0x16, 0x9f, 0xdc, 0xca, - 0xf1, 0xc9, 0x67, 0xc5, 0x67, 0x7b, 0x7e, 0x0c, 0xcd, 0xdc, 0x7e, 0xa0, 0xb8, 0xbd, 0xf0, 0x75, - 0x12, 0xb9, 0x2d, 0x87, 0x9c, 0x74, 0x2b, 0x93, 0x85, 0x37, 0x5a, 0x3f, 0x6e, 0x2b, 0x6d, 0xe7, - 0x43, 0x58, 0x8f, 0x66, 0xa8, 0xec, 0xbc, 0x9b, 0x0b, 0x46, 0x99, 0x31, 0xc4, 0xf8, 0xa7, 0x06, - 0x9b, 0xc2, 0xc4, 0xfb, 0x3e, 0x99, 0x0c, 0xc4, 0x57, 0xa4, 0xf1, 0xf3, 0xd5, 0xdb, 0xf0, 0xff, - 0x41, 0x29, 0x4a, 0x5c, 0x5d, 0x2e, 0x02, 0x22, 0x65, 0x55, 0xe2, 0x72, 0x49, 0xe2, 0x52, 0x37, - 0x30, 0x65, 0xa3, 0x28, 0xa8, 0x1b, 0xc5, 0x9b, 0x78, 0x67, 0x41, 0xb1, 0x83, 0xc7, 0x98, 0x61, - 0xa3, 0xb7, 0xb2, 0x43, 0x57, 0xa1, 0x12, 0x9d, 0x9f, 0x39, 0x05, 0x91, 0x28, 0xd9, 0x0a, 0x8d, - 0xdf, 0xe6, 0xa0, 0x78, 0x36, 0x75, 0xc2, 0xe4, 0xfd, 0x87, 0xfe, 0xd6, 0xae, 0xf8, 0xef, 0x75, - 0x1f, 0x35, 0x48, 0xc5, 0xec, 0xec, 0x2e, 0x65, 0x65, 0xb7, 0xf0, 0xfd, 0x7f, 0x36, 0xbb, 0x5f, - 0x6a, 0x72, 0xaf, 0x38, 0x58, 0x39, 0x36, 0x2a, 0x23, 0x7a, 0x82, 0x11, 0xe3, 0xae, 0x62, 0xc8, - 0xad, 0xc5, 0x25, 0x3f, 0xc5, 0x12, 0x65, 0x9f, 0x7f, 0x13, 0x0a, 0x9a, 0x9d, 0x78, 0xe0, 0xa6, - 0x4e, 0xd5, 0x35, 0x54, 0x87, 0x4b, 0xd1, 0x54, 0xed, 0xb6, 0x3b, 0x5f, 0xd4, 0xb5, 0xc5, 0x29, - 0xa9, 0x37, 0xff, 0x98, 0x87, 0x6a, 0x64, 0xda, 0x61, 0xe8, 0xd3, 0xdb, 0x19, 0x8a, 0xc9, 0xd9, - 0x94, 0x7f, 0x9d, 0xd9, 0x94, 0x60, 0xb1, 0xb0, 0x02, 0x8b, 0xbf, 0xd6, 0xe2, 0x61, 0xf1, 0xfd, - 0x37, 0x9b, 0x15, 0x46, 0x4f, 0x89, 0xe6, 0xf7, 0xa0, 0x16, 0x17, 0x24, 0x8f, 0xf6, 0xe2, 0xd2, - 0xaa, 0xf2, 0x66, 0x56, 0xa9, 0xfa, 0x68, 0x7c, 0x11, 0xb7, 0x99, 0xb7, 0x92, 0x67, 0x6a, 0x83, - 0xf9, 0x52, 0x26, 0xf0, 0xde, 0xaa, 0x8a, 0x8d, 0x4f, 0x15, 0xbf, 0x7e, 0x00, 0x1b, 0x49, 0xbf, - 0x52, 0xd6, 0xd1, 0x84, 0x63, 0xb5, 0x84, 0x63, 0x74, 0xff, 0xf7, 0x00, 0x1b, 0xed, 0xb0, 0x6b, - 0xcc, 0xb6, 0x56, 0xe4, 0xc0, 0x3b, 0x22, 0x04, 0xc9, 0xff, 0x51, 0xbd, 0xbf, 0xfc, 0x2b, 0x2f, - 0xfa, 0x42, 0xba, 0xf1, 0x2a, 0x98, 0x34, 0xfd, 0xa5, 0x06, 0x3b, 0xd1, 0x97, 0x54, 0x0c, 0x54, - 0xbf, 0xa9, 0xd0, 0x7e, 0x96, 0xa6, 0xc5, 0xef, 0xaf, 0xf8, 0xf6, 0x8f, 0x5f, 0xeb, 0x8c, 0x34, - 0xe5, 0xc7, 0x50, 0x3f, 0xc4, 0x2c, 0xe9, 0x6d, 0x33, 0x43, 0xd1, 0x21, 0x66, 0xf1, 0x65, 0xd7, - 0x97, 0x62, 0xa4, 0x72, 0x0b, 0x50, 0x18, 0xe0, 0x04, 0x82, 0xa2, 0xac, 0xa3, 0x21, 0x34, 0xd6, - 0xff, 0xde, 0x72, 0x90, 0xbc, 0x20, 0x0c, 0x17, 0xff, 0x32, 0x58, 0x31, 0x5c, 0x1c, 0xfb, 0xea, - 0x70, 0x45, 0x30, 0x79, 0xcb, 0x19, 0xd4, 0x64, 0x52, 0x44, 0x0b, 0xf7, 0xee, 0xab, 0x76, 0x21, - 0xe3, 0xda, 0x12, 0x84, 0x54, 0x7b, 0x01, 0xdb, 0x49, 0xb5, 0xca, 0x96, 0x82, 0x3e, 0xc8, 0x3a, - 0xaf, 0x80, 0xe2, 0xcb, 0xbe, 0xb9, 0x1a, 0x78, 0xe6, 0x8e, 0xa8, 0xe8, 0x65, 0xee, 0x08, 0xc4, - 0x32, 0x77, 0x62, 0xc4, 0x4c, 0xad, 0x98, 0x98, 0xcb, 0xd4, 0x26, 0x67, 0x6a, 0x9a, 0xda, 0x18, - 0xa1, 0x84, 0x38, 0xc1, 0x92, 0xe8, 0xee, 0xef, 0xa7, 0x17, 0xf9, 0x92, 0x8a, 0x4c, 0x87, 0xcd, - 0x6e, 0x49, 0x72, 0xb2, 0xfc, 0x96, 0x39, 0x76, 0x6e, 0xbc, 0x0a, 0x36, 0x57, 0x0f, 0x89, 0x3e, - 0xa4, 0xd6, 0x43, 0xe2, 0x74, 0x56, 0x3d, 0xa4, 0x81, 0xe4, 0x05, 0x7d, 0xa8, 0xaa, 0x17, 0x50, - 0x74, 0x65, 0x91, 0xe0, 0x84, 0xda, 0xab, 0x99, 0xef, 0x85, 0xc6, 0x7b, 0xf7, 0x1f, 0x5d, 0x1f, - 0xb9, 0xec, 0x49, 0x70, 0xde, 0x1a, 0x92, 0x49, 0xf4, 0xbb, 0x8c, 0xf8, 0xc1, 0x67, 0x48, 0xc6, - 0x91, 0xe0, 0x0f, 0x7a, 0xf5, 0xd8, 0xbd, 0xc0, 0x9f, 0xf2, 0x7f, 0x28, 0x11, 0x46, 0xfe, 0xa5, - 0xd7, 0xe4, 0xf3, 0x9d, 0x3b, 0x5c, 0x70, 0x5e, 0xe4, 0x47, 0x3e, 0xfe, 0x4f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x2f, 0x02, 0xe2, 0x1d, 0x5c, 0x1a, 0x00, 0x00, + // 2031 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x4f, 0x6f, 0xdb, 0xc8, + 0x15, 0x37, 0x29, 0x59, 0x7f, 0x9e, 0x2c, 0x59, 0x9e, 0xf5, 0xba, 0x32, 0x17, 0x49, 0x1c, 0x67, + 0x93, 0x18, 0xdd, 0xae, 0xb2, 0xf0, 0xee, 0xa2, 0x4d, 0xd2, 0x7f, 0x8a, 0xad, 0xd8, 0xca, 0x3a, + 0x5e, 0x2f, 0x6d, 0xa3, 0xd8, 0xf4, 0x40, 0x50, 0xe2, 0x44, 0xa1, 0x23, 0x71, 0x54, 0xce, 0xd0, + 0x4d, 0x0e, 0x7b, 0x29, 0x7a, 0x08, 0x5a, 0xf4, 0x50, 0x14, 0xe8, 0xa9, 0x87, 0xa2, 0xc0, 0x5e, + 0xf6, 0xde, 0x53, 0x0b, 0xf4, 0x5b, 0xb4, 0x87, 0x7e, 0x83, 0x7e, 0x85, 0x5e, 0x0a, 0xce, 0x0c, + 0xa9, 0xa1, 0x44, 0xca, 0x72, 0x93, 0x14, 0xbd, 0x89, 0x6f, 0x7e, 0xf3, 0xe6, 0xfd, 0xf9, 0xcd, + 0x7b, 0x8f, 0x14, 0x5c, 0x1d, 0xb8, 0xe7, 0xf8, 0xb9, 0xcb, 0x2c, 0xbb, 0x8f, 0x3d, 0x66, 0x51, + 0x77, 0x18, 0x0c, 0x6c, 0xe6, 0x12, 0xaf, 0x39, 0xf2, 0x09, 0x23, 0xa8, 0x28, 0xd7, 0x8d, 0x6b, + 0x7d, 0x42, 0xfa, 0x03, 0x7c, 0x87, 0x8b, 0xbb, 0xc1, 0xd3, 0x3b, 0xcc, 0x1d, 0x62, 0xca, 0xec, + 0xe1, 0x48, 0x20, 0x8d, 0xf5, 0x48, 0x53, 0x6f, 0x40, 0x02, 0x47, 0xe8, 0x93, 0x4b, 0xab, 0xd1, + 0xd2, 0x90, 0x38, 0x78, 0x40, 0xa5, 0xf4, 0x3a, 0x87, 0xdc, 0x99, 0x30, 0x00, 0x53, 0x1a, 0x9f, + 0xbe, 0xf9, 0x97, 0x1c, 0xac, 0x1e, 0xc7, 0x26, 0x99, 0x81, 0x77, 0x1c, 0x0c, 0x87, 0xb6, 0xff, + 0x12, 0xad, 0x41, 0x61, 0x64, 0x53, 0x8a, 0x9d, 0x86, 0xb6, 0xa1, 0x6d, 0x2d, 0x9a, 0xf2, 0x29, + 0x94, 0x3f, 0xb5, 0xdd, 0x01, 0x76, 0x1a, 0xba, 0x90, 0x8b, 0x27, 0x74, 0x05, 0xa0, 0x4f, 0x5c, + 0xaf, 0x6f, 0xfd, 0x1c, 0x0f, 0x06, 0x8d, 0xdc, 0x86, 0xb6, 0x55, 0x36, 0xcb, 0x5c, 0xf2, 0x13, + 0x3c, 0x18, 0x84, 0xcb, 0x8c, 0x58, 0xee, 0x70, 0xe4, 0x93, 0x73, 0xdc, 0xc8, 0x8b, 0x65, 0x46, + 0x3a, 0x42, 0x80, 0xee, 0x43, 0xc1, 0xa5, 0x34, 0xc0, 0xb4, 0xb1, 0xb8, 0x91, 0xdb, 0xaa, 0x6c, + 0xdf, 0x68, 0x4a, 0xa3, 0x9b, 0x69, 0xc6, 0x35, 0x3b, 0x21, 0xd6, 0x94, 0x5b, 0xd0, 0x17, 0xb0, + 0xd4, 0x7b, 0x66, 0x33, 0xeb, 0x99, 0x4b, 0x19, 0xf1, 0x5f, 0x36, 0x0a, 0x5c, 0x45, 0x73, 0xb6, + 0x8a, 0x9d, 0x67, 0x36, 0xdb, 0x17, 0x1b, 0xda, 0x1e, 0xf3, 0x5f, 0x9a, 0x95, 0xde, 0x58, 0x62, + 0x3c, 0x81, 0xfa, 0x24, 0x00, 0xd5, 0x21, 0xf7, 0x1c, 0xbf, 0xe4, 0xe1, 0x28, 0x9b, 0xe1, 0x4f, + 0xf4, 0x11, 0x2c, 0x9e, 0xdb, 0x83, 0x00, 0xf3, 0x50, 0x54, 0xb6, 0x8d, 0xf8, 0x44, 0x91, 0x9a, + 0x50, 0xc3, 0x0e, 0xf1, 0x18, 0x7e, 0xc1, 0x4c, 0x01, 0xbc, 0xa7, 0x7f, 0x4f, 0x33, 0x3a, 0xb0, + 0xc8, 0xed, 0x47, 0x1b, 0x50, 0x71, 0x30, 0xed, 0xf9, 0xee, 0x28, 0xb4, 0x4d, 0x2a, 0x56, 0x45, + 0xe8, 0x2a, 0x00, 0x0d, 0xfa, 0x7d, 0x4c, 0x39, 0x40, 0xe7, 0x00, 0x45, 0xb2, 0xf9, 0xcd, 0x1a, + 0x54, 0x13, 0xde, 0xa1, 0x1a, 0xe8, 0xae, 0x23, 0x55, 0xe9, 0x2e, 0x4f, 0xcb, 0xc8, 0x27, 0x67, + 0xb8, 0xc7, 0x2c, 0xd7, 0x91, 0x1a, 0xca, 0x52, 0xd2, 0x71, 0xd0, 0xa7, 0x50, 0xa0, 0xcc, 0x66, + 0x01, 0xe5, 0x19, 0xab, 0x6d, 0x5f, 0x49, 0x0f, 0x5a, 0xf3, 0x98, 0x83, 0x4c, 0x09, 0x46, 0x1f, + 0xc0, 0x8a, 0x20, 0x93, 0x6a, 0xbf, 0x48, 0x6a, 0x9d, 0x2f, 0xec, 0x2a, 0x4e, 0xac, 0xc2, 0x22, + 0xf6, 0x7d, 0xe2, 0x37, 0x16, 0x39, 0x40, 0x3c, 0xa0, 0xbb, 0x00, 0x3d, 0x1f, 0xdb, 0x0c, 0x3b, + 0x96, 0xcd, 0x1a, 0x05, 0x19, 0x40, 0x71, 0x05, 0x9a, 0xd1, 0x15, 0x68, 0x9e, 0x44, 0x57, 0xc0, + 0x2c, 0x4b, 0x74, 0x8b, 0xa1, 0x26, 0xe4, 0xcf, 0x48, 0x97, 0x36, 0x8a, 0x3c, 0xcf, 0x46, 0x86, + 0xc9, 0x8f, 0x48, 0xd7, 0xe4, 0x38, 0xf4, 0x5d, 0x28, 0x52, 0x91, 0xf5, 0x46, 0x89, 0x9f, 0x73, + 0x65, 0x26, 0x35, 0xcc, 0x08, 0x1d, 0x06, 0x4f, 0xb8, 0xe9, 0xd9, 0x43, 0xdc, 0x28, 0x8b, 0xe0, + 0x71, 0xc9, 0xa1, 0x3d, 0xc4, 0xe8, 0x07, 0x50, 0xa3, 0x3d, 0xec, 0xd9, 0xbe, 0x4b, 0xac, 0xbe, + 0x4f, 0x82, 0x51, 0x03, 0xb8, 0xfa, 0xb5, 0xb1, 0x7a, 0xb9, 0xbc, 0x17, 0xae, 0x9a, 0x55, 0xaa, + 0x3e, 0xa2, 0x4f, 0xa1, 0x84, 0x3d, 0x47, 0xf8, 0x5f, 0xb9, 0xd0, 0xff, 0x22, 0xc7, 0xb6, 0x18, + 0x7a, 0x0f, 0xca, 0x67, 0xa4, 0x6b, 0xf5, 0x48, 0xe0, 0xb1, 0xc6, 0x12, 0xbf, 0x83, 0xa5, 0x33, + 0xd2, 0xdd, 0x09, 0x9f, 0xd1, 0x75, 0x58, 0x12, 0xf7, 0x54, 0xae, 0x57, 0xf9, 0x7a, 0x45, 0xc8, + 0x62, 0x88, 0xb8, 0xb2, 0x12, 0x52, 0x13, 0x10, 0x21, 0x13, 0x90, 0xdb, 0xb0, 0xec, 0x05, 0x43, + 0xa5, 0x54, 0xd1, 0xc6, 0x32, 0x47, 0xd5, 0xbc, 0x60, 0x38, 0x0e, 0x19, 0x35, 0x7e, 0x99, 0x87, + 0xdc, 0x23, 0xd2, 0x9d, 0x62, 0xdd, 0xdd, 0x98, 0x56, 0x3a, 0xa7, 0xd5, 0xf5, 0xec, 0x1c, 0x4d, + 0x52, 0x6b, 0x13, 0x96, 0x5c, 0x8f, 0x32, 0x3f, 0xe8, 0x89, 0x83, 0x45, 0x25, 0x49, 0xc8, 0xc6, + 0x8c, 0xca, 0xab, 0x8c, 0xfa, 0x10, 0x90, 0xc8, 0x16, 0x7e, 0x31, 0xc2, 0x3d, 0x26, 0x0d, 0x17, + 0xa4, 0x13, 0x74, 0x6d, 0x2b, 0x0b, 0xa1, 0x92, 0x81, 0xdd, 0xc5, 0x03, 0xce, 0xbd, 0xb2, 0x29, + 0x1e, 0x10, 0x82, 0x3c, 0xb3, 0xfb, 0x82, 0x5b, 0x65, 0x93, 0xff, 0x0e, 0x23, 0xee, 0x13, 0x32, + 0x14, 0x2c, 0x28, 0x71, 0x74, 0x29, 0x14, 0x70, 0x12, 0x5c, 0x83, 0x4a, 0x4c, 0x02, 0xd7, 0x91, + 0x24, 0x81, 0x48, 0xd4, 0x09, 0x63, 0x01, 0x94, 0xd9, 0xbe, 0x24, 0x3a, 0x5c, 0x4c, 0x74, 0x89, + 0x6e, 0xb1, 0xff, 0x92, 0x21, 0x9b, 0x04, 0x0a, 0x22, 0xa8, 0x08, 0x41, 0xed, 0xf8, 0xa4, 0x75, + 0x72, 0x7a, 0x6c, 0x1d, 0xb5, 0x0f, 0x77, 0x3b, 0x87, 0x7b, 0xf5, 0x05, 0x45, 0x66, 0x9e, 0x1e, + 0x1e, 0x86, 0x32, 0x0d, 0xad, 0x42, 0x5d, 0xca, 0x76, 0x3e, 0x7f, 0x7c, 0x74, 0xd0, 0x3e, 0x69, + 0xef, 0xd6, 0x75, 0xb4, 0x02, 0x55, 0x29, 0x7d, 0xd8, 0xea, 0x1c, 0xb4, 0x77, 0xeb, 0x39, 0x15, + 0xd8, 0x3a, 0xdc, 0x69, 0x1f, 0x84, 0xd2, 0xbc, 0xf1, 0xfb, 0x02, 0x14, 0x76, 0xf8, 0xf5, 0x34, + 0x7e, 0xa1, 0x43, 0x29, 0x62, 0xfd, 0x54, 0x2e, 0xb5, 0x94, 0x5c, 0xa6, 0x67, 0x4d, 0xcf, 0xca, + 0xda, 0x11, 0x94, 0x86, 0x98, 0xd9, 0x8e, 0xcd, 0xec, 0x46, 0x8e, 0xdf, 0xff, 0x4f, 0x32, 0xb8, + 0x25, 0x0c, 0x8a, 0xaf, 0x60, 0xf3, 0xb1, 0xdc, 0x26, 0xaa, 0x7d, 0xac, 0x65, 0xcc, 0x83, 0xbc, + 0xc2, 0x03, 0xe3, 0x3e, 0x54, 0x13, 0x1b, 0x52, 0xaa, 0xff, 0xaa, 0x5a, 0xfd, 0xcb, 0x6a, 0x85, + 0xff, 0x02, 0xca, 0xd1, 0xb1, 0x14, 0xed, 0x42, 0x39, 0x62, 0x43, 0x18, 0x81, 0xd0, 0xe4, 0x5b, + 0xf3, 0x99, 0x6c, 0x8e, 0x37, 0x1a, 0x5f, 0xeb, 0x50, 0x34, 0xf1, 0xcf, 0x02, 0x4c, 0xd9, 0x44, + 0x4d, 0xd7, 0x26, 0x6b, 0x7a, 0xb2, 0x6a, 0xe9, 0x93, 0x55, 0x2b, 0xb5, 0x76, 0xe7, 0x32, 0x6a, + 0x77, 0x4a, 0x25, 0xc8, 0xa7, 0x55, 0x82, 0x70, 0x2c, 0xf0, 0x71, 0x3f, 0x54, 0x25, 0xae, 0x93, + 0x7c, 0x42, 0x7b, 0xaa, 0xf7, 0x45, 0xce, 0xe1, 0xdb, 0xf3, 0x79, 0x4f, 0xf7, 0x17, 0x94, 0x00, + 0xa0, 0xf7, 0xa0, 0xc4, 0x6b, 0x6c, 0xe8, 0x32, 0xbf, 0xd3, 0xfb, 0x0b, 0x66, 0x91, 0x4b, 0x3a, + 0xce, 0x83, 0x12, 0x14, 0x28, 0x09, 0xfc, 0x1e, 0x36, 0x7e, 0xad, 0x41, 0xc9, 0xc4, 0x74, 0x44, + 0x3c, 0x8a, 0xd1, 0xb7, 0x61, 0x65, 0x6c, 0xb9, 0xe5, 0x07, 0xde, 0x38, 0x5e, 0xcb, 0x54, 0x3d, + 0xbb, 0xe3, 0xa0, 0x63, 0x58, 0x1b, 0xf9, 0x98, 0xba, 0x7d, 0x0f, 0x3b, 0xd6, 0x88, 0x50, 0x66, + 0xf9, 0x22, 0xdc, 0xb2, 0xb9, 0x8f, 0x7b, 0xc6, 0x51, 0x04, 0x3b, 0x22, 0x94, 0xc9, 0x9c, 0x98, + 0xab, 0xa3, 0x14, 0xa9, 0xf1, 0x47, 0x0d, 0xde, 0xd9, 0x21, 0xde, 0x53, 0xd7, 0x1f, 0x1e, 0x73, + 0xfb, 0x4e, 0x47, 0x03, 0x62, 0x3b, 0xc6, 0x57, 0x73, 0x27, 0x33, 0xd5, 0x05, 0x3d, 0xdd, 0x85, + 0xdb, 0xb0, 0xdc, 0x23, 0x0e, 0xb6, 0x70, 0x48, 0xd8, 0x11, 0x71, 0x3d, 0x26, 0xf3, 0x5a, 0x0b, + 0xc5, 0xed, 0x58, 0x6a, 0xc0, 0x38, 0x46, 0xc6, 0x6f, 0x35, 0xc8, 0xed, 0x61, 0x66, 0x9c, 0xbc, + 0x0d, 0x93, 0x8c, 0x4f, 0x94, 0x6c, 0x6c, 0x41, 0xce, 0x0f, 0xc4, 0x98, 0x93, 0xe8, 0x91, 0xea, + 0x16, 0x33, 0x84, 0x18, 0x7f, 0xd3, 0x21, 0x7f, 0xe0, 0x52, 0x66, 0xfc, 0x55, 0x9b, 0xdb, 0xaa, + 0x7b, 0x13, 0x2d, 0x67, 0xf6, 0x24, 0xb3, 0xbf, 0x10, 0x35, 0x9c, 0x57, 0x9a, 0x86, 0xbe, 0x0f, + 0x30, 0xb2, 0xfb, 0xd8, 0x62, 0xe4, 0x39, 0x16, 0x77, 0xa1, 0xb2, 0xdd, 0x88, 0xf7, 0x9f, 0x84, + 0xd2, 0x23, 0xbb, 0xef, 0x7a, 0x5c, 0xc9, 0xbe, 0x66, 0x96, 0x43, 0x34, 0x17, 0xbf, 0xd2, 0xb4, + 0x07, 0x65, 0x28, 0x5a, 0x42, 0xd7, 0x83, 0x2a, 0x54, 0xac, 0xb1, 0x26, 0xe3, 0x45, 0x82, 0x8b, + 0x79, 0x3f, 0xf0, 0xa2, 0x0a, 0x90, 0xe5, 0x3e, 0xc7, 0xa0, 0x1f, 0xc3, 0xb2, 0x87, 0x5f, 0x30, + 0x45, 0x95, 0x24, 0x61, 0xa6, 0x51, 0x66, 0x35, 0xdc, 0x70, 0x14, 0x99, 0x65, 0x9c, 0x41, 0x61, + 0xc7, 0xf6, 0x7a, 0x78, 0xf0, 0x96, 0xf2, 0xaa, 0x30, 0x68, 0xf3, 0x6b, 0x2d, 0xee, 0x37, 0xeb, + 0xf0, 0x6e, 0xb2, 0xdf, 0x58, 0xa7, 0x47, 0x07, 0x9f, 0xb7, 0x76, 0xeb, 0x0b, 0xe8, 0x5d, 0x58, + 0x91, 0x4b, 0x7b, 0xed, 0xc3, 0xb6, 0xd9, 0x3a, 0x11, 0x9d, 0x67, 0xba, 0x1b, 0xe9, 0x68, 0x0d, + 0x90, 0x94, 0x1d, 0x9f, 0x3e, 0x7e, 0xdc, 0x32, 0x3b, 0x4f, 0x42, 0x79, 0x2e, 0xb5, 0x4b, 0xe5, + 0xa7, 0xbb, 0xd4, 0x62, 0x6a, 0x97, 0x2a, 0x6c, 0xfe, 0xa6, 0xa6, 0xb4, 0xa6, 0x4b, 0xce, 0xc9, + 0x71, 0x93, 0xc8, 0xa9, 0xc3, 0xc2, 0x64, 0x7f, 0xcb, 0xcf, 0xdd, 0xdf, 0x32, 0xa7, 0x92, 0xf7, + 0xa1, 0x26, 0x2a, 0x99, 0xc5, 0x47, 0x0e, 0xd7, 0x91, 0xf5, 0x74, 0x49, 0x48, 0x4d, 0x42, 0x86, + 0x62, 0xa6, 0x50, 0x86, 0xe7, 0xe2, 0x65, 0x86, 0xe7, 0x8f, 0xe2, 0x7b, 0x52, 0xe2, 0xf7, 0xa4, + 0x31, 0x35, 0xac, 0x4e, 0x4e, 0x64, 0xf1, 0xb4, 0x55, 0x56, 0xa7, 0xad, 0x75, 0xa5, 0x1e, 0x03, + 0x5f, 0x88, 0xaa, 0x31, 0xba, 0xaf, 0xf4, 0xe8, 0x0a, 0xa7, 0xfb, 0xb5, 0xe9, 0x43, 0x32, 0xda, + 0xb1, 0xf1, 0x6f, 0x3d, 0x9e, 0x25, 0xfe, 0x3c, 0x7f, 0xcf, 0x8b, 0xf3, 0xa3, 0xcf, 0xca, 0x4f, + 0x6e, 0xee, 0xfc, 0xe4, 0xb3, 0xf2, 0xb3, 0x3e, 0xd9, 0x86, 0xc6, 0x6e, 0x3f, 0x52, 0xdc, 0x9e, + 0x7a, 0x05, 0x8d, 0xdc, 0x96, 0x4d, 0x4e, 0xba, 0x95, 0x19, 0x85, 0xd7, 0x1a, 0x3f, 0xee, 0x2a, + 0x65, 0xe7, 0x43, 0x28, 0x45, 0x3d, 0x54, 0x56, 0xde, 0x95, 0x29, 0xa3, 0xcc, 0x18, 0x62, 0xfc, + 0x53, 0x83, 0x15, 0x61, 0xe2, 0x43, 0x9f, 0x0c, 0x8f, 0xc5, 0xa7, 0x02, 0xe3, 0x57, 0xf3, 0x97, + 0xe1, 0x6f, 0x41, 0x31, 0x22, 0xae, 0x2e, 0x07, 0x01, 0x41, 0x59, 0x35, 0x70, 0xb9, 0x64, 0xe0, + 0x52, 0x27, 0x30, 0x65, 0xa2, 0x58, 0x54, 0x27, 0x8a, 0xd7, 0xf1, 0xce, 0x82, 0xc2, 0x2e, 0x1e, + 0x60, 0x86, 0x8d, 0xce, 0xdc, 0x0e, 0x4d, 0xcc, 0xf7, 0xfa, 0xe4, 0x7c, 0x9f, 0x68, 0xa6, 0x7f, + 0xc8, 0x41, 0xe1, 0x74, 0xe4, 0x84, 0xe4, 0xfd, 0xbb, 0xfe, 0xc6, 0x8e, 0xf8, 0xdf, 0x55, 0x1f, + 0x35, 0x49, 0x85, 0x6c, 0x76, 0x17, 0xb3, 0xd8, 0x2d, 0x7c, 0xff, 0xbf, 0x65, 0xf7, 0x2b, 0x4d, + 0xce, 0x15, 0x3b, 0x73, 0xe7, 0x46, 0x8d, 0x88, 0x9e, 0x88, 0x88, 0x71, 0x5f, 0x31, 0xe4, 0xce, + 0xf4, 0x90, 0x9f, 0x62, 0x89, 0x32, 0xcf, 0xbf, 0x4e, 0x08, 0x36, 0x77, 0xe3, 0x86, 0x9b, 0xda, + 0x55, 0x17, 0x50, 0x1d, 0x96, 0xa2, 0xae, 0xda, 0x6e, 0xed, 0x7e, 0x59, 0xd7, 0xa6, 0xbb, 0xa4, + 0xbe, 0xf9, 0x8f, 0x3c, 0x54, 0x13, 0x1f, 0x28, 0xde, 0x4c, 0x53, 0x4c, 0xf6, 0xa6, 0xfc, 0x65, + 0x7a, 0x53, 0x22, 0x8a, 0x8b, 0x17, 0x47, 0x11, 0xdd, 0x54, 0xbe, 0xc0, 0x88, 0xaf, 0x19, 0x05, + 0xfe, 0x76, 0x12, 0x7f, 0x69, 0xe1, 0xdf, 0x33, 0x8c, 0xdf, 0x69, 0x71, 0x4f, 0xf9, 0xe1, 0xeb, + 0xb5, 0x14, 0xa3, 0xa3, 0x24, 0x7d, 0xfa, 0xfb, 0x8f, 0x76, 0x89, 0xef, 0x3f, 0xc6, 0x97, 0x71, + 0x35, 0x7a, 0x23, 0x74, 0x54, 0xeb, 0xd0, 0x57, 0x92, 0xe7, 0x5b, 0xf3, 0x2a, 0x36, 0x3e, 0x53, + 0xfc, 0xfa, 0x11, 0x2c, 0x27, 0xfd, 0x4a, 0x99, 0x5a, 0x13, 0x8e, 0xd5, 0x12, 0x8e, 0xd1, 0xed, + 0x3f, 0x01, 0x2c, 0xb7, 0xc2, 0xe2, 0x32, 0x1e, 0x6e, 0x91, 0x03, 0xef, 0x88, 0x14, 0x24, 0xbf, + 0x57, 0xde, 0x9c, 0xfd, 0x32, 0x18, 0xbd, 0x48, 0xdd, 0xba, 0x08, 0x26, 0x4d, 0x7f, 0xa5, 0xc1, + 0x95, 0xe8, 0x85, 0x2b, 0x06, 0xaa, 0xaf, 0x5e, 0x68, 0x3b, 0x4b, 0xd3, 0xf4, 0x6b, 0x5a, 0x7c, + 0xfa, 0xc7, 0x97, 0xda, 0x23, 0x4d, 0xf9, 0x29, 0xd4, 0xf7, 0x30, 0x4b, 0x7a, 0xbb, 0x99, 0xa1, + 0x68, 0x0f, 0xb3, 0xf8, 0xb0, 0x1b, 0x33, 0x31, 0x52, 0xb9, 0x05, 0x28, 0x4c, 0x70, 0x02, 0x41, + 0x51, 0xd6, 0xd6, 0x10, 0x1a, 0xeb, 0x7f, 0x7f, 0x36, 0x48, 0x1e, 0x10, 0xa6, 0x8b, 0xbf, 0x40, + 0xcc, 0x99, 0x2e, 0x8e, 0xbd, 0x38, 0x5d, 0x11, 0x4c, 0x9e, 0x72, 0x0a, 0x35, 0x49, 0x8a, 0x68, + 0x2e, 0xdf, 0xb8, 0x68, 0x64, 0x32, 0xae, 0xcf, 0x40, 0x48, 0xb5, 0xe7, 0xb0, 0x9e, 0x54, 0xab, + 0x0c, 0x33, 0xe8, 0x83, 0xac, 0xfd, 0x0a, 0x28, 0x3e, 0xec, 0x3b, 0xf3, 0x81, 0xc7, 0xee, 0x88, + 0x1b, 0x3d, 0xcb, 0x1d, 0x81, 0x98, 0xe5, 0x4e, 0x8c, 0x18, 0xab, 0x15, 0x8d, 0x75, 0x96, 0xda, + 0x64, 0xeb, 0x4d, 0x53, 0x1b, 0x23, 0x94, 0x14, 0x27, 0xa2, 0x24, 0x9a, 0xc0, 0xcd, 0xf4, 0x4b, + 0x3e, 0xe3, 0x46, 0xa6, 0xc3, 0xc6, 0xa7, 0x24, 0x63, 0x32, 0xfb, 0x94, 0x89, 0xe8, 0xdc, 0xba, + 0x08, 0x36, 0x71, 0x1f, 0x12, 0x75, 0x48, 0xbd, 0x0f, 0x89, 0xdd, 0x59, 0xf7, 0x21, 0x0d, 0x24, + 0x0f, 0x38, 0x82, 0xaa, 0x7a, 0x00, 0x45, 0x57, 0xa7, 0x03, 0x9c, 0x50, 0x7b, 0x2d, 0x73, 0x5d, + 0x68, 0x7c, 0xf0, 0xf0, 0xc9, 0x8d, 0xbe, 0xcb, 0x9e, 0x05, 0xdd, 0x66, 0x8f, 0x0c, 0xa3, 0xff, + 0xe8, 0xc4, 0x9f, 0x7f, 0x3d, 0x32, 0x88, 0x04, 0xdf, 0xe8, 0xd5, 0x03, 0xf7, 0x1c, 0x7f, 0xc6, + 0xbf, 0x3b, 0x11, 0x46, 0xfe, 0xa5, 0xd7, 0xe4, 0xf3, 0xbd, 0x7b, 0x5c, 0xd0, 0x2d, 0xf0, 0x2d, + 0x1f, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x37, 0x28, 0xa6, 0x2e, 0x68, 0x1c, 0x00, 0x00, } diff --git a/livekit/livekit_models.pb.go b/livekit/livekit_models.pb.go index d9cb42bc1..62cfa0a8e 100644 --- a/livekit/livekit_models.pb.go +++ b/livekit/livekit_models.pb.go @@ -348,6 +348,67 @@ func (TrackSource) EnumDescriptor() ([]byte, []int) { return file_livekit_models_proto_rawDescGZIP(), []int{5} } +type DataTrackSchemaType int32 + +const ( + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_UNSPECIFIED DataTrackSchemaType = 0 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_PROTOBUF DataTrackSchemaType = 1 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_FLATBUFFER DataTrackSchemaType = 2 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_ROS1MSG DataTrackSchemaType = 3 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_ROS2IDL DataTrackSchemaType = 4 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_OMGIDL DataTrackSchemaType = 5 + DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_JSONSCHEMA DataTrackSchemaType = 6 +) + +// Enum value maps for DataTrackSchemaType. +var ( + DataTrackSchemaType_name = map[int32]string{ + 0: "DATA_TRACK_SCHEMA_TYPE_UNSPECIFIED", + 1: "DATA_TRACK_SCHEMA_TYPE_PROTOBUF", + 2: "DATA_TRACK_SCHEMA_TYPE_FLATBUFFER", + 3: "DATA_TRACK_SCHEMA_TYPE_ROS1MSG", + 4: "DATA_TRACK_SCHEMA_TYPE_ROS2IDL", + 5: "DATA_TRACK_SCHEMA_TYPE_OMGIDL", + 6: "DATA_TRACK_SCHEMA_TYPE_JSONSCHEMA", + } + DataTrackSchemaType_value = map[string]int32{ + "DATA_TRACK_SCHEMA_TYPE_UNSPECIFIED": 0, + "DATA_TRACK_SCHEMA_TYPE_PROTOBUF": 1, + "DATA_TRACK_SCHEMA_TYPE_FLATBUFFER": 2, + "DATA_TRACK_SCHEMA_TYPE_ROS1MSG": 3, + "DATA_TRACK_SCHEMA_TYPE_ROS2IDL": 4, + "DATA_TRACK_SCHEMA_TYPE_OMGIDL": 5, + "DATA_TRACK_SCHEMA_TYPE_JSONSCHEMA": 6, + } +) + +func (x DataTrackSchemaType) Enum() *DataTrackSchemaType { + p := new(DataTrackSchemaType) + *p = x + return p +} + +func (x DataTrackSchemaType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (DataTrackSchemaType) Descriptor() protoreflect.EnumDescriptor { + return file_livekit_models_proto_enumTypes[6].Descriptor() +} + +func (DataTrackSchemaType) Type() protoreflect.EnumType { + return &file_livekit_models_proto_enumTypes[6] +} + +func (x DataTrackSchemaType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use DataTrackSchemaType.Descriptor instead. +func (DataTrackSchemaType) EnumDescriptor() ([]byte, []int) { + return file_livekit_models_proto_rawDescGZIP(), []int{6} +} + type DataTrackExtensionID int32 const ( @@ -378,11 +439,11 @@ func (x DataTrackExtensionID) String() string { } func (DataTrackExtensionID) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[6].Descriptor() + return file_livekit_models_proto_enumTypes[7].Descriptor() } func (DataTrackExtensionID) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[6] + return &file_livekit_models_proto_enumTypes[7] } func (x DataTrackExtensionID) Number() protoreflect.EnumNumber { @@ -391,7 +452,7 @@ func (x DataTrackExtensionID) Number() protoreflect.EnumNumber { // Deprecated: Use DataTrackExtensionID.Descriptor instead. func (DataTrackExtensionID) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{6} + return file_livekit_models_proto_rawDescGZIP(), []int{7} } type VideoQuality int32 @@ -430,11 +491,11 @@ func (x VideoQuality) String() string { } func (VideoQuality) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[7].Descriptor() + return file_livekit_models_proto_enumTypes[8].Descriptor() } func (VideoQuality) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[7] + return &file_livekit_models_proto_enumTypes[8] } func (x VideoQuality) Number() protoreflect.EnumNumber { @@ -443,7 +504,7 @@ func (x VideoQuality) Number() protoreflect.EnumNumber { // Deprecated: Use VideoQuality.Descriptor instead. func (VideoQuality) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{7} + return file_livekit_models_proto_rawDescGZIP(), []int{8} } type ConnectionQuality int32 @@ -482,11 +543,11 @@ func (x ConnectionQuality) String() string { } func (ConnectionQuality) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[8].Descriptor() + return file_livekit_models_proto_enumTypes[9].Descriptor() } func (ConnectionQuality) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[8] + return &file_livekit_models_proto_enumTypes[9] } func (x ConnectionQuality) Number() protoreflect.EnumNumber { @@ -495,7 +556,7 @@ func (x ConnectionQuality) Number() protoreflect.EnumNumber { // Deprecated: Use ConnectionQuality.Descriptor instead. func (ConnectionQuality) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{8} + return file_livekit_models_proto_rawDescGZIP(), []int{9} } type ClientConfigSetting int32 @@ -531,11 +592,11 @@ func (x ClientConfigSetting) String() string { } func (ClientConfigSetting) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[9].Descriptor() + return file_livekit_models_proto_enumTypes[10].Descriptor() } func (ClientConfigSetting) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[9] + return &file_livekit_models_proto_enumTypes[10] } func (x ClientConfigSetting) Number() protoreflect.EnumNumber { @@ -544,7 +605,7 @@ func (x ClientConfigSetting) Number() protoreflect.EnumNumber { // Deprecated: Use ClientConfigSetting.Descriptor instead. func (ClientConfigSetting) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{9} + return file_livekit_models_proto_rawDescGZIP(), []int{10} } type DisconnectReason int32 @@ -638,11 +699,11 @@ func (x DisconnectReason) String() string { } func (DisconnectReason) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[10].Descriptor() + return file_livekit_models_proto_enumTypes[11].Descriptor() } func (DisconnectReason) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[10] + return &file_livekit_models_proto_enumTypes[11] } func (x DisconnectReason) Number() protoreflect.EnumNumber { @@ -651,7 +712,7 @@ func (x DisconnectReason) Number() protoreflect.EnumNumber { // Deprecated: Use DisconnectReason.Descriptor instead. func (DisconnectReason) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{10} + return file_livekit_models_proto_rawDescGZIP(), []int{11} } type ReconnectReason int32 @@ -693,11 +754,11 @@ func (x ReconnectReason) String() string { } func (ReconnectReason) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[11].Descriptor() + return file_livekit_models_proto_enumTypes[12].Descriptor() } func (ReconnectReason) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[11] + return &file_livekit_models_proto_enumTypes[12] } func (x ReconnectReason) Number() protoreflect.EnumNumber { @@ -706,7 +767,7 @@ func (x ReconnectReason) Number() protoreflect.EnumNumber { // Deprecated: Use ReconnectReason.Descriptor instead. func (ReconnectReason) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{11} + return file_livekit_models_proto_rawDescGZIP(), []int{12} } type SubscriptionError int32 @@ -742,11 +803,11 @@ func (x SubscriptionError) String() string { } func (SubscriptionError) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[12].Descriptor() + return file_livekit_models_proto_enumTypes[13].Descriptor() } func (SubscriptionError) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[12] + return &file_livekit_models_proto_enumTypes[13] } func (x SubscriptionError) Number() protoreflect.EnumNumber { @@ -755,7 +816,7 @@ func (x SubscriptionError) Number() protoreflect.EnumNumber { // Deprecated: Use SubscriptionError.Descriptor instead. func (SubscriptionError) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{12} + return file_livekit_models_proto_rawDescGZIP(), []int{13} } type AudioTrackFeature int32 @@ -803,11 +864,11 @@ func (x AudioTrackFeature) String() string { } func (AudioTrackFeature) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[13].Descriptor() + return file_livekit_models_proto_enumTypes[14].Descriptor() } func (AudioTrackFeature) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[13] + return &file_livekit_models_proto_enumTypes[14] } func (x AudioTrackFeature) Number() protoreflect.EnumNumber { @@ -816,7 +877,7 @@ func (x AudioTrackFeature) Number() protoreflect.EnumNumber { // Deprecated: Use AudioTrackFeature.Descriptor instead. func (AudioTrackFeature) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{13} + return file_livekit_models_proto_rawDescGZIP(), []int{14} } type PacketTrailerFeature int32 @@ -849,11 +910,11 @@ func (x PacketTrailerFeature) String() string { } func (PacketTrailerFeature) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[14].Descriptor() + return file_livekit_models_proto_enumTypes[15].Descriptor() } func (PacketTrailerFeature) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[14] + return &file_livekit_models_proto_enumTypes[15] } func (x PacketTrailerFeature) Number() protoreflect.EnumNumber { @@ -862,7 +923,7 @@ func (x PacketTrailerFeature) Number() protoreflect.EnumNumber { // Deprecated: Use PacketTrailerFeature.Descriptor instead. func (PacketTrailerFeature) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{14} + return file_livekit_models_proto_rawDescGZIP(), []int{15} } type ParticipantInfo_State int32 @@ -905,11 +966,11 @@ func (x ParticipantInfo_State) String() string { } func (ParticipantInfo_State) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[15].Descriptor() + return file_livekit_models_proto_enumTypes[16].Descriptor() } func (ParticipantInfo_State) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[15] + return &file_livekit_models_proto_enumTypes[16] } func (x ParticipantInfo_State) Number() protoreflect.EnumNumber { @@ -973,11 +1034,11 @@ func (x ParticipantInfo_Kind) String() string { } func (ParticipantInfo_Kind) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[16].Descriptor() + return file_livekit_models_proto_enumTypes[17].Descriptor() } func (ParticipantInfo_Kind) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[16] + return &file_livekit_models_proto_enumTypes[17] } func (x ParticipantInfo_Kind) Number() protoreflect.EnumNumber { @@ -1028,11 +1089,11 @@ func (x ParticipantInfo_KindDetail) String() string { } func (ParticipantInfo_KindDetail) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[17].Descriptor() + return file_livekit_models_proto_enumTypes[18].Descriptor() } func (ParticipantInfo_KindDetail) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[17] + return &file_livekit_models_proto_enumTypes[18] } func (x ParticipantInfo_KindDetail) Number() protoreflect.EnumNumber { @@ -1077,11 +1138,11 @@ func (x Encryption_Type) String() string { } func (Encryption_Type) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[18].Descriptor() + return file_livekit_models_proto_enumTypes[19].Descriptor() } func (Encryption_Type) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[18] + return &file_livekit_models_proto_enumTypes[19] } func (x Encryption_Type) Number() protoreflect.EnumNumber { @@ -1129,11 +1190,11 @@ func (x VideoLayer_Mode) String() string { } func (VideoLayer_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[19].Descriptor() + return file_livekit_models_proto_enumTypes[20].Descriptor() } func (VideoLayer_Mode) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[19] + return &file_livekit_models_proto_enumTypes[20] } func (x VideoLayer_Mode) Number() protoreflect.EnumNumber { @@ -1142,7 +1203,7 @@ func (x VideoLayer_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use VideoLayer_Mode.Descriptor instead. func (VideoLayer_Mode) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{14, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{15, 0} } type DataPacket_Kind int32 @@ -1175,11 +1236,11 @@ func (x DataPacket_Kind) String() string { } func (DataPacket_Kind) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[20].Descriptor() + return file_livekit_models_proto_enumTypes[21].Descriptor() } func (DataPacket_Kind) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[20] + return &file_livekit_models_proto_enumTypes[21] } func (x DataPacket_Kind) Number() protoreflect.EnumNumber { @@ -1188,7 +1249,7 @@ func (x DataPacket_Kind) Number() protoreflect.EnumNumber { // Deprecated: Use DataPacket_Kind.Descriptor instead. func (DataPacket_Kind) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{15, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{16, 0} } type ServerInfo_Edition int32 @@ -1221,11 +1282,11 @@ func (x ServerInfo_Edition) String() string { } func (ServerInfo_Edition) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[21].Descriptor() + return file_livekit_models_proto_enumTypes[22].Descriptor() } func (ServerInfo_Edition) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[21] + return &file_livekit_models_proto_enumTypes[22] } func (x ServerInfo_Edition) Number() protoreflect.EnumNumber { @@ -1234,7 +1295,7 @@ func (x ServerInfo_Edition) Number() protoreflect.EnumNumber { // Deprecated: Use ServerInfo_Edition.Descriptor instead. func (ServerInfo_Edition) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{30, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{31, 0} } type ClientInfo_SDK int32 @@ -1306,11 +1367,11 @@ func (x ClientInfo_SDK) String() string { } func (ClientInfo_SDK) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[22].Descriptor() + return file_livekit_models_proto_enumTypes[23].Descriptor() } func (ClientInfo_SDK) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[22] + return &file_livekit_models_proto_enumTypes[23] } func (x ClientInfo_SDK) Number() protoreflect.EnumNumber { @@ -1319,7 +1380,7 @@ func (x ClientInfo_SDK) Number() protoreflect.EnumNumber { // Deprecated: Use ClientInfo_SDK.Descriptor instead. func (ClientInfo_SDK) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{31, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{32, 0} } // Optional capabilities advertised by the client at connect time. The SFU @@ -1356,11 +1417,11 @@ func (x ClientInfo_Capability) String() string { } func (ClientInfo_Capability) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[23].Descriptor() + return file_livekit_models_proto_enumTypes[24].Descriptor() } func (ClientInfo_Capability) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[23] + return &file_livekit_models_proto_enumTypes[24] } func (x ClientInfo_Capability) Number() protoreflect.EnumNumber { @@ -1369,7 +1430,7 @@ func (x ClientInfo_Capability) Number() protoreflect.EnumNumber { // Deprecated: Use ClientInfo_Capability.Descriptor instead. func (ClientInfo_Capability) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{31, 1} + return file_livekit_models_proto_rawDescGZIP(), []int{32, 1} } // enum for operation types (specific to TextHeader) @@ -1409,11 +1470,11 @@ func (x DataStream_OperationType) String() string { } func (DataStream_OperationType) Descriptor() protoreflect.EnumDescriptor { - return file_livekit_models_proto_enumTypes[24].Descriptor() + return file_livekit_models_proto_enumTypes[25].Descriptor() } func (DataStream_OperationType) Type() protoreflect.EnumType { - return &file_livekit_models_proto_enumTypes[24] + return &file_livekit_models_proto_enumTypes[25] } func (x DataStream_OperationType) Number() protoreflect.EnumNumber { @@ -1422,7 +1483,7 @@ func (x DataStream_OperationType) Number() protoreflect.EnumNumber { // Deprecated: Use DataStream_OperationType.Descriptor instead. func (DataStream_OperationType) EnumDescriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 0} } type Pagination struct { @@ -2524,7 +2585,9 @@ type DataTrackInfo struct { // Human-readable identifier (e.g., `geoLocation`, `servoPosition.x`, etc.), unique per publisher. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` // Method used for end-to-end encryption (E2EE) on packet payloads. - Encryption Encryption_Type `protobuf:"varint,4,opt,name=encryption,proto3,enum=livekit.Encryption_Type" json:"encryption,omitempty"` + Encryption Encryption_Type `protobuf:"varint,4,opt,name=encryption,proto3,enum=livekit.Encryption_Type" json:"encryption,omitempty"` + // Schema describing frames published on the track. + Schema *DataTrackSchema `protobuf:"bytes,5,opt,name=schema,proto3,oneof" json:"schema,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -2587,6 +2650,76 @@ func (x *DataTrackInfo) GetEncryption() Encryption_Type { return Encryption_NONE } +func (x *DataTrackInfo) GetSchema() *DataTrackSchema { + if x != nil { + return x.Schema + } + return nil +} + +type DataTrackSchema struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Unique identifier of the schema within a room. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Format the schema is defined in. + Type DataTrackSchemaType `protobuf:"varint,2,opt,name=type,proto3,enum=livekit.DataTrackSchemaType" json:"type,omitempty"` + // Schema definition. May be omitted if the name defines a well-known schema. + Data []byte `protobuf:"bytes,3,opt,name=data,proto3,oneof" json:"data,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DataTrackSchema) Reset() { + *x = DataTrackSchema{} + mi := &file_livekit_models_proto_msgTypes[12] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DataTrackSchema) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DataTrackSchema) ProtoMessage() {} + +func (x *DataTrackSchema) ProtoReflect() protoreflect.Message { + mi := &file_livekit_models_proto_msgTypes[12] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DataTrackSchema.ProtoReflect.Descriptor instead. +func (*DataTrackSchema) Descriptor() ([]byte, []int) { + return file_livekit_models_proto_rawDescGZIP(), []int{12} +} + +func (x *DataTrackSchema) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *DataTrackSchema) GetType() DataTrackSchemaType { + if x != nil { + return x.Type + } + return DataTrackSchemaType_DATA_TRACK_SCHEMA_TYPE_UNSPECIFIED +} + +func (x *DataTrackSchema) GetData() []byte { + if x != nil { + return x.Data + } + return nil +} + type DataTrackExtensionParticipantSid struct { state protoimpl.MessageState `protogen:"open.v1"` Id DataTrackExtensionID `protobuf:"varint,1,opt,name=id,proto3,enum=livekit.DataTrackExtensionID" json:"id,omitempty"` @@ -2597,7 +2730,7 @@ type DataTrackExtensionParticipantSid struct { func (x *DataTrackExtensionParticipantSid) Reset() { *x = DataTrackExtensionParticipantSid{} - mi := &file_livekit_models_proto_msgTypes[12] + mi := &file_livekit_models_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2609,7 +2742,7 @@ func (x *DataTrackExtensionParticipantSid) String() string { func (*DataTrackExtensionParticipantSid) ProtoMessage() {} func (x *DataTrackExtensionParticipantSid) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[12] + mi := &file_livekit_models_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2622,7 +2755,7 @@ func (x *DataTrackExtensionParticipantSid) ProtoReflect() protoreflect.Message { // Deprecated: Use DataTrackExtensionParticipantSid.ProtoReflect.Descriptor instead. func (*DataTrackExtensionParticipantSid) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{12} + return file_livekit_models_proto_rawDescGZIP(), []int{13} } func (x *DataTrackExtensionParticipantSid) GetId() DataTrackExtensionID { @@ -2650,7 +2783,7 @@ type DataTrackSubscriptionOptions struct { func (x *DataTrackSubscriptionOptions) Reset() { *x = DataTrackSubscriptionOptions{} - mi := &file_livekit_models_proto_msgTypes[13] + mi := &file_livekit_models_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2662,7 +2795,7 @@ func (x *DataTrackSubscriptionOptions) String() string { func (*DataTrackSubscriptionOptions) ProtoMessage() {} func (x *DataTrackSubscriptionOptions) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[13] + mi := &file_livekit_models_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2675,7 +2808,7 @@ func (x *DataTrackSubscriptionOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use DataTrackSubscriptionOptions.ProtoReflect.Descriptor instead. func (*DataTrackSubscriptionOptions) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{13} + return file_livekit_models_proto_rawDescGZIP(), []int{14} } func (x *DataTrackSubscriptionOptions) GetTargetFps() uint32 { @@ -2704,7 +2837,7 @@ type VideoLayer struct { func (x *VideoLayer) Reset() { *x = VideoLayer{} - mi := &file_livekit_models_proto_msgTypes[14] + mi := &file_livekit_models_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2716,7 +2849,7 @@ func (x *VideoLayer) String() string { func (*VideoLayer) ProtoMessage() {} func (x *VideoLayer) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[14] + mi := &file_livekit_models_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2729,7 +2862,7 @@ func (x *VideoLayer) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoLayer.ProtoReflect.Descriptor instead. func (*VideoLayer) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{14} + return file_livekit_models_proto_rawDescGZIP(), []int{15} } func (x *VideoLayer) GetQuality() VideoQuality { @@ -2823,7 +2956,7 @@ type DataPacket struct { func (x *DataPacket) Reset() { *x = DataPacket{} - mi := &file_livekit_models_proto_msgTypes[15] + mi := &file_livekit_models_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2835,7 +2968,7 @@ func (x *DataPacket) String() string { func (*DataPacket) ProtoMessage() {} func (x *DataPacket) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[15] + mi := &file_livekit_models_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2848,7 +2981,7 @@ func (x *DataPacket) ProtoReflect() protoreflect.Message { // Deprecated: Use DataPacket.ProtoReflect.Descriptor instead. func (*DataPacket) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{15} + return file_livekit_models_proto_rawDescGZIP(), []int{16} } // Deprecated: Marked as deprecated in livekit_models.proto. @@ -3107,7 +3240,7 @@ type EncryptedPacket struct { func (x *EncryptedPacket) Reset() { *x = EncryptedPacket{} - mi := &file_livekit_models_proto_msgTypes[16] + mi := &file_livekit_models_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3119,7 +3252,7 @@ func (x *EncryptedPacket) String() string { func (*EncryptedPacket) ProtoMessage() {} func (x *EncryptedPacket) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[16] + mi := &file_livekit_models_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3132,7 +3265,7 @@ func (x *EncryptedPacket) ProtoReflect() protoreflect.Message { // Deprecated: Use EncryptedPacket.ProtoReflect.Descriptor instead. func (*EncryptedPacket) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{16} + return file_livekit_models_proto_rawDescGZIP(), []int{17} } func (x *EncryptedPacket) GetEncryptionType() Encryption_Type { @@ -3182,7 +3315,7 @@ type EncryptedPacketPayload struct { func (x *EncryptedPacketPayload) Reset() { *x = EncryptedPacketPayload{} - mi := &file_livekit_models_proto_msgTypes[17] + mi := &file_livekit_models_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3194,7 +3327,7 @@ func (x *EncryptedPacketPayload) String() string { func (*EncryptedPacketPayload) ProtoMessage() {} func (x *EncryptedPacketPayload) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[17] + mi := &file_livekit_models_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3207,7 +3340,7 @@ func (x *EncryptedPacketPayload) ProtoReflect() protoreflect.Message { // Deprecated: Use EncryptedPacketPayload.ProtoReflect.Descriptor instead. func (*EncryptedPacketPayload) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{17} + return file_livekit_models_proto_rawDescGZIP(), []int{18} } func (x *EncryptedPacketPayload) GetValue() isEncryptedPacketPayload_Value { @@ -3351,7 +3484,7 @@ type ActiveSpeakerUpdate struct { func (x *ActiveSpeakerUpdate) Reset() { *x = ActiveSpeakerUpdate{} - mi := &file_livekit_models_proto_msgTypes[18] + mi := &file_livekit_models_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3363,7 +3496,7 @@ func (x *ActiveSpeakerUpdate) String() string { func (*ActiveSpeakerUpdate) ProtoMessage() {} func (x *ActiveSpeakerUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[18] + mi := &file_livekit_models_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3376,7 +3509,7 @@ func (x *ActiveSpeakerUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use ActiveSpeakerUpdate.ProtoReflect.Descriptor instead. func (*ActiveSpeakerUpdate) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{18} + return file_livekit_models_proto_rawDescGZIP(), []int{19} } func (x *ActiveSpeakerUpdate) GetSpeakers() []*SpeakerInfo { @@ -3399,7 +3532,7 @@ type SpeakerInfo struct { func (x *SpeakerInfo) Reset() { *x = SpeakerInfo{} - mi := &file_livekit_models_proto_msgTypes[19] + mi := &file_livekit_models_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3411,7 +3544,7 @@ func (x *SpeakerInfo) String() string { func (*SpeakerInfo) ProtoMessage() {} func (x *SpeakerInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[19] + mi := &file_livekit_models_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3424,7 +3557,7 @@ func (x *SpeakerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SpeakerInfo.ProtoReflect.Descriptor instead. func (*SpeakerInfo) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{19} + return file_livekit_models_proto_rawDescGZIP(), []int{20} } func (x *SpeakerInfo) GetSid() string { @@ -3481,7 +3614,7 @@ type UserPacket struct { func (x *UserPacket) Reset() { *x = UserPacket{} - mi := &file_livekit_models_proto_msgTypes[20] + mi := &file_livekit_models_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3493,7 +3626,7 @@ func (x *UserPacket) String() string { func (*UserPacket) ProtoMessage() {} func (x *UserPacket) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[20] + mi := &file_livekit_models_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3506,7 +3639,7 @@ func (x *UserPacket) ProtoReflect() protoreflect.Message { // Deprecated: Use UserPacket.ProtoReflect.Descriptor instead. func (*UserPacket) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{20} + return file_livekit_models_proto_rawDescGZIP(), []int{21} } // Deprecated: Marked as deprecated in livekit_models.proto. @@ -3593,7 +3726,7 @@ type SipDTMF struct { func (x *SipDTMF) Reset() { *x = SipDTMF{} - mi := &file_livekit_models_proto_msgTypes[21] + mi := &file_livekit_models_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3605,7 +3738,7 @@ func (x *SipDTMF) String() string { func (*SipDTMF) ProtoMessage() {} func (x *SipDTMF) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[21] + mi := &file_livekit_models_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3618,7 +3751,7 @@ func (x *SipDTMF) ProtoReflect() protoreflect.Message { // Deprecated: Use SipDTMF.ProtoReflect.Descriptor instead. func (*SipDTMF) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{21} + return file_livekit_models_proto_rawDescGZIP(), []int{22} } func (x *SipDTMF) GetCode() uint32 { @@ -3647,7 +3780,7 @@ type Transcription struct { func (x *Transcription) Reset() { *x = Transcription{} - mi := &file_livekit_models_proto_msgTypes[22] + mi := &file_livekit_models_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3659,7 +3792,7 @@ func (x *Transcription) String() string { func (*Transcription) ProtoMessage() {} func (x *Transcription) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[22] + mi := &file_livekit_models_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3672,7 +3805,7 @@ func (x *Transcription) ProtoReflect() protoreflect.Message { // Deprecated: Use Transcription.ProtoReflect.Descriptor instead. func (*Transcription) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{22} + return file_livekit_models_proto_rawDescGZIP(), []int{23} } func (x *Transcription) GetTranscribedParticipantIdentity() string { @@ -3710,7 +3843,7 @@ type TranscriptionSegment struct { func (x *TranscriptionSegment) Reset() { *x = TranscriptionSegment{} - mi := &file_livekit_models_proto_msgTypes[23] + mi := &file_livekit_models_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3722,7 +3855,7 @@ func (x *TranscriptionSegment) String() string { func (*TranscriptionSegment) ProtoMessage() {} func (x *TranscriptionSegment) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[23] + mi := &file_livekit_models_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3735,7 +3868,7 @@ func (x *TranscriptionSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use TranscriptionSegment.ProtoReflect.Descriptor instead. func (*TranscriptionSegment) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{23} + return file_livekit_models_proto_rawDescGZIP(), []int{24} } func (x *TranscriptionSegment) GetId() string { @@ -3794,7 +3927,7 @@ type ChatMessage struct { func (x *ChatMessage) Reset() { *x = ChatMessage{} - mi := &file_livekit_models_proto_msgTypes[24] + mi := &file_livekit_models_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3806,7 +3939,7 @@ func (x *ChatMessage) String() string { func (*ChatMessage) ProtoMessage() {} func (x *ChatMessage) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[24] + mi := &file_livekit_models_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3819,7 +3952,7 @@ func (x *ChatMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use ChatMessage.ProtoReflect.Descriptor instead. func (*ChatMessage) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{24} + return file_livekit_models_proto_rawDescGZIP(), []int{25} } func (x *ChatMessage) GetId() string { @@ -3879,7 +4012,7 @@ type RpcRequest struct { func (x *RpcRequest) Reset() { *x = RpcRequest{} - mi := &file_livekit_models_proto_msgTypes[25] + mi := &file_livekit_models_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3891,7 +4024,7 @@ func (x *RpcRequest) String() string { func (*RpcRequest) ProtoMessage() {} func (x *RpcRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[25] + mi := &file_livekit_models_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3904,7 +4037,7 @@ func (x *RpcRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RpcRequest.ProtoReflect.Descriptor instead. func (*RpcRequest) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{25} + return file_livekit_models_proto_rawDescGZIP(), []int{26} } func (x *RpcRequest) GetId() string { @@ -3958,7 +4091,7 @@ type RpcAck struct { func (x *RpcAck) Reset() { *x = RpcAck{} - mi := &file_livekit_models_proto_msgTypes[26] + mi := &file_livekit_models_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3970,7 +4103,7 @@ func (x *RpcAck) String() string { func (*RpcAck) ProtoMessage() {} func (x *RpcAck) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[26] + mi := &file_livekit_models_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3983,7 +4116,7 @@ func (x *RpcAck) ProtoReflect() protoreflect.Message { // Deprecated: Use RpcAck.ProtoReflect.Descriptor instead. func (*RpcAck) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{26} + return file_livekit_models_proto_rawDescGZIP(), []int{27} } func (x *RpcAck) GetRequestId() string { @@ -4008,7 +4141,7 @@ type RpcResponse struct { func (x *RpcResponse) Reset() { *x = RpcResponse{} - mi := &file_livekit_models_proto_msgTypes[27] + mi := &file_livekit_models_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4020,7 +4153,7 @@ func (x *RpcResponse) String() string { func (*RpcResponse) ProtoMessage() {} func (x *RpcResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[27] + mi := &file_livekit_models_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4033,7 +4166,7 @@ func (x *RpcResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RpcResponse.ProtoReflect.Descriptor instead. func (*RpcResponse) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{27} + return file_livekit_models_proto_rawDescGZIP(), []int{28} } func (x *RpcResponse) GetRequestId() string { @@ -4111,7 +4244,7 @@ type RpcError struct { func (x *RpcError) Reset() { *x = RpcError{} - mi := &file_livekit_models_proto_msgTypes[28] + mi := &file_livekit_models_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4123,7 +4256,7 @@ func (x *RpcError) String() string { func (*RpcError) ProtoMessage() {} func (x *RpcError) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[28] + mi := &file_livekit_models_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4136,7 +4269,7 @@ func (x *RpcError) ProtoReflect() protoreflect.Message { // Deprecated: Use RpcError.ProtoReflect.Descriptor instead. func (*RpcError) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{28} + return file_livekit_models_proto_rawDescGZIP(), []int{29} } func (x *RpcError) GetCode() uint32 { @@ -4171,7 +4304,7 @@ type ParticipantTracks struct { func (x *ParticipantTracks) Reset() { *x = ParticipantTracks{} - mi := &file_livekit_models_proto_msgTypes[29] + mi := &file_livekit_models_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4183,7 +4316,7 @@ func (x *ParticipantTracks) String() string { func (*ParticipantTracks) ProtoMessage() {} func (x *ParticipantTracks) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[29] + mi := &file_livekit_models_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4196,7 +4329,7 @@ func (x *ParticipantTracks) ProtoReflect() protoreflect.Message { // Deprecated: Use ParticipantTracks.ProtoReflect.Descriptor instead. func (*ParticipantTracks) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{29} + return file_livekit_models_proto_rawDescGZIP(), []int{30} } func (x *ParticipantTracks) GetParticipantSid() string { @@ -4230,7 +4363,7 @@ type ServerInfo struct { func (x *ServerInfo) Reset() { *x = ServerInfo{} - mi := &file_livekit_models_proto_msgTypes[30] + mi := &file_livekit_models_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4242,7 +4375,7 @@ func (x *ServerInfo) String() string { func (*ServerInfo) ProtoMessage() {} func (x *ServerInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[30] + mi := &file_livekit_models_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4255,7 +4388,7 @@ func (x *ServerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ServerInfo.ProtoReflect.Descriptor instead. func (*ServerInfo) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{30} + return file_livekit_models_proto_rawDescGZIP(), []int{31} } func (x *ServerInfo) GetEdition() ServerInfo_Edition { @@ -4335,7 +4468,7 @@ type ClientInfo struct { func (x *ClientInfo) Reset() { *x = ClientInfo{} - mi := &file_livekit_models_proto_msgTypes[31] + mi := &file_livekit_models_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4347,7 +4480,7 @@ func (x *ClientInfo) String() string { func (*ClientInfo) ProtoMessage() {} func (x *ClientInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[31] + mi := &file_livekit_models_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4360,7 +4493,7 @@ func (x *ClientInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ClientInfo.ProtoReflect.Descriptor instead. func (*ClientInfo) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{31} + return file_livekit_models_proto_rawDescGZIP(), []int{32} } func (x *ClientInfo) GetSdk() ClientInfo_SDK { @@ -4468,7 +4601,7 @@ type ClientConfiguration struct { func (x *ClientConfiguration) Reset() { *x = ClientConfiguration{} - mi := &file_livekit_models_proto_msgTypes[32] + mi := &file_livekit_models_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4480,7 +4613,7 @@ func (x *ClientConfiguration) String() string { func (*ClientConfiguration) ProtoMessage() {} func (x *ClientConfiguration) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[32] + mi := &file_livekit_models_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4493,7 +4626,7 @@ func (x *ClientConfiguration) ProtoReflect() protoreflect.Message { // Deprecated: Use ClientConfiguration.ProtoReflect.Descriptor instead. func (*ClientConfiguration) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{32} + return file_livekit_models_proto_rawDescGZIP(), []int{33} } func (x *ClientConfiguration) GetVideo() *VideoConfiguration { @@ -4540,7 +4673,7 @@ type VideoConfiguration struct { func (x *VideoConfiguration) Reset() { *x = VideoConfiguration{} - mi := &file_livekit_models_proto_msgTypes[33] + mi := &file_livekit_models_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4552,7 +4685,7 @@ func (x *VideoConfiguration) String() string { func (*VideoConfiguration) ProtoMessage() {} func (x *VideoConfiguration) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[33] + mi := &file_livekit_models_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4565,7 +4698,7 @@ func (x *VideoConfiguration) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoConfiguration.ProtoReflect.Descriptor instead. func (*VideoConfiguration) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{33} + return file_livekit_models_proto_rawDescGZIP(), []int{34} } func (x *VideoConfiguration) GetHardwareEncoder() ClientConfigSetting { @@ -4587,7 +4720,7 @@ type DisabledCodecs struct { func (x *DisabledCodecs) Reset() { *x = DisabledCodecs{} - mi := &file_livekit_models_proto_msgTypes[34] + mi := &file_livekit_models_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4599,7 +4732,7 @@ func (x *DisabledCodecs) String() string { func (*DisabledCodecs) ProtoMessage() {} func (x *DisabledCodecs) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[34] + mi := &file_livekit_models_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4612,7 +4745,7 @@ func (x *DisabledCodecs) ProtoReflect() protoreflect.Message { // Deprecated: Use DisabledCodecs.ProtoReflect.Descriptor instead. func (*DisabledCodecs) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{34} + return file_livekit_models_proto_rawDescGZIP(), []int{35} } func (x *DisabledCodecs) GetCodecs() []*Codec { @@ -4646,7 +4779,7 @@ type RTPDrift struct { func (x *RTPDrift) Reset() { *x = RTPDrift{} - mi := &file_livekit_models_proto_msgTypes[35] + mi := &file_livekit_models_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4658,7 +4791,7 @@ func (x *RTPDrift) String() string { func (*RTPDrift) ProtoMessage() {} func (x *RTPDrift) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[35] + mi := &file_livekit_models_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4671,7 +4804,7 @@ func (x *RTPDrift) ProtoReflect() protoreflect.Message { // Deprecated: Use RTPDrift.ProtoReflect.Descriptor instead. func (*RTPDrift) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{35} + return file_livekit_models_proto_rawDescGZIP(), []int{36} } func (x *RTPDrift) GetStartTime() *timestamppb.Timestamp { @@ -4790,7 +4923,7 @@ type RTPStats struct { func (x *RTPStats) Reset() { *x = RTPStats{} - mi := &file_livekit_models_proto_msgTypes[36] + mi := &file_livekit_models_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4802,7 +4935,7 @@ func (x *RTPStats) String() string { func (*RTPStats) ProtoMessage() {} func (x *RTPStats) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[36] + mi := &file_livekit_models_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4815,7 +4948,7 @@ func (x *RTPStats) ProtoReflect() protoreflect.Message { // Deprecated: Use RTPStats.ProtoReflect.Descriptor instead. func (*RTPStats) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{36} + return file_livekit_models_proto_rawDescGZIP(), []int{37} } func (x *RTPStats) GetStartTime() *timestamppb.Timestamp { @@ -5148,7 +5281,7 @@ type RTCPSenderReportState struct { func (x *RTCPSenderReportState) Reset() { *x = RTCPSenderReportState{} - mi := &file_livekit_models_proto_msgTypes[37] + mi := &file_livekit_models_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5160,7 +5293,7 @@ func (x *RTCPSenderReportState) String() string { func (*RTCPSenderReportState) ProtoMessage() {} func (x *RTCPSenderReportState) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[37] + mi := &file_livekit_models_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5173,7 +5306,7 @@ func (x *RTCPSenderReportState) ProtoReflect() protoreflect.Message { // Deprecated: Use RTCPSenderReportState.ProtoReflect.Descriptor instead. func (*RTCPSenderReportState) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{37} + return file_livekit_models_proto_rawDescGZIP(), []int{38} } func (x *RTCPSenderReportState) GetRtpTimestamp() uint32 { @@ -5244,7 +5377,7 @@ type RTPForwarderState struct { func (x *RTPForwarderState) Reset() { *x = RTPForwarderState{} - mi := &file_livekit_models_proto_msgTypes[38] + mi := &file_livekit_models_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5256,7 +5389,7 @@ func (x *RTPForwarderState) String() string { func (*RTPForwarderState) ProtoMessage() {} func (x *RTPForwarderState) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[38] + mi := &file_livekit_models_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5269,7 +5402,7 @@ func (x *RTPForwarderState) ProtoReflect() protoreflect.Message { // Deprecated: Use RTPForwarderState.ProtoReflect.Descriptor instead. func (*RTPForwarderState) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{38} + return file_livekit_models_proto_rawDescGZIP(), []int{39} } func (x *RTPForwarderState) GetStarted() bool { @@ -5361,7 +5494,7 @@ type RTPMungerState struct { func (x *RTPMungerState) Reset() { *x = RTPMungerState{} - mi := &file_livekit_models_proto_msgTypes[39] + mi := &file_livekit_models_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5373,7 +5506,7 @@ func (x *RTPMungerState) String() string { func (*RTPMungerState) ProtoMessage() {} func (x *RTPMungerState) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[39] + mi := &file_livekit_models_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5386,7 +5519,7 @@ func (x *RTPMungerState) ProtoReflect() protoreflect.Message { // Deprecated: Use RTPMungerState.ProtoReflect.Descriptor instead. func (*RTPMungerState) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{39} + return file_livekit_models_proto_rawDescGZIP(), []int{40} } func (x *RTPMungerState) GetExtLastSequenceNumber() uint64 { @@ -5446,7 +5579,7 @@ type VP8MungerState struct { func (x *VP8MungerState) Reset() { *x = VP8MungerState{} - mi := &file_livekit_models_proto_msgTypes[40] + mi := &file_livekit_models_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5458,7 +5591,7 @@ func (x *VP8MungerState) String() string { func (*VP8MungerState) ProtoMessage() {} func (x *VP8MungerState) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[40] + mi := &file_livekit_models_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5471,7 +5604,7 @@ func (x *VP8MungerState) ProtoReflect() protoreflect.Message { // Deprecated: Use VP8MungerState.ProtoReflect.Descriptor instead. func (*VP8MungerState) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{40} + return file_livekit_models_proto_rawDescGZIP(), []int{41} } func (x *VP8MungerState) GetExtLastPictureId() int32 { @@ -5533,7 +5666,7 @@ type TimedVersion struct { func (x *TimedVersion) Reset() { *x = TimedVersion{} - mi := &file_livekit_models_proto_msgTypes[41] + mi := &file_livekit_models_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5545,7 +5678,7 @@ func (x *TimedVersion) String() string { func (*TimedVersion) ProtoMessage() {} func (x *TimedVersion) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[41] + mi := &file_livekit_models_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5558,7 +5691,7 @@ func (x *TimedVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use TimedVersion.ProtoReflect.Descriptor instead. func (*TimedVersion) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{41} + return file_livekit_models_proto_rawDescGZIP(), []int{42} } func (x *TimedVersion) GetUnixMicro() int64 { @@ -5583,7 +5716,7 @@ type DataStream struct { func (x *DataStream) Reset() { *x = DataStream{} - mi := &file_livekit_models_proto_msgTypes[42] + mi := &file_livekit_models_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5595,7 +5728,7 @@ func (x *DataStream) String() string { func (*DataStream) ProtoMessage() {} func (x *DataStream) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[42] + mi := &file_livekit_models_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5608,7 +5741,7 @@ func (x *DataStream) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream.ProtoReflect.Descriptor instead. func (*DataStream) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42} + return file_livekit_models_proto_rawDescGZIP(), []int{43} } type FilterParams struct { @@ -5621,7 +5754,7 @@ type FilterParams struct { func (x *FilterParams) Reset() { *x = FilterParams{} - mi := &file_livekit_models_proto_msgTypes[43] + mi := &file_livekit_models_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5633,7 +5766,7 @@ func (x *FilterParams) String() string { func (*FilterParams) ProtoMessage() {} func (x *FilterParams) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[43] + mi := &file_livekit_models_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5646,7 +5779,7 @@ func (x *FilterParams) ProtoReflect() protoreflect.Message { // Deprecated: Use FilterParams.ProtoReflect.Descriptor instead. func (*FilterParams) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{43} + return file_livekit_models_proto_rawDescGZIP(), []int{44} } func (x *FilterParams) GetIncludeEvents() []string { @@ -5674,7 +5807,7 @@ type WebhookConfig struct { func (x *WebhookConfig) Reset() { *x = WebhookConfig{} - mi := &file_livekit_models_proto_msgTypes[44] + mi := &file_livekit_models_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5686,7 +5819,7 @@ func (x *WebhookConfig) String() string { func (*WebhookConfig) ProtoMessage() {} func (x *WebhookConfig) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[44] + mi := &file_livekit_models_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5699,7 +5832,7 @@ func (x *WebhookConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use WebhookConfig.ProtoReflect.Descriptor instead. func (*WebhookConfig) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{44} + return file_livekit_models_proto_rawDescGZIP(), []int{45} } func (x *WebhookConfig) GetUrl() string { @@ -5733,7 +5866,7 @@ type SubscribedAudioCodec struct { func (x *SubscribedAudioCodec) Reset() { *x = SubscribedAudioCodec{} - mi := &file_livekit_models_proto_msgTypes[45] + mi := &file_livekit_models_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5745,7 +5878,7 @@ func (x *SubscribedAudioCodec) String() string { func (*SubscribedAudioCodec) ProtoMessage() {} func (x *SubscribedAudioCodec) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[45] + mi := &file_livekit_models_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5758,7 +5891,7 @@ func (x *SubscribedAudioCodec) ProtoReflect() protoreflect.Message { // Deprecated: Use SubscribedAudioCodec.ProtoReflect.Descriptor instead. func (*SubscribedAudioCodec) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{45} + return file_livekit_models_proto_rawDescGZIP(), []int{46} } func (x *SubscribedAudioCodec) GetCodec() string { @@ -5789,7 +5922,7 @@ type DataStream_TextHeader struct { func (x *DataStream_TextHeader) Reset() { *x = DataStream_TextHeader{} - mi := &file_livekit_models_proto_msgTypes[48] + mi := &file_livekit_models_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5801,7 +5934,7 @@ func (x *DataStream_TextHeader) String() string { func (*DataStream_TextHeader) ProtoMessage() {} func (x *DataStream_TextHeader) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[48] + mi := &file_livekit_models_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5814,7 +5947,7 @@ func (x *DataStream_TextHeader) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream_TextHeader.ProtoReflect.Descriptor instead. func (*DataStream_TextHeader) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 0} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 0} } func (x *DataStream_TextHeader) GetOperationType() DataStream_OperationType { @@ -5862,7 +5995,7 @@ type DataStream_ByteHeader struct { func (x *DataStream_ByteHeader) Reset() { *x = DataStream_ByteHeader{} - mi := &file_livekit_models_proto_msgTypes[49] + mi := &file_livekit_models_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5874,7 +6007,7 @@ func (x *DataStream_ByteHeader) String() string { func (*DataStream_ByteHeader) ProtoMessage() {} func (x *DataStream_ByteHeader) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[49] + mi := &file_livekit_models_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5887,7 +6020,7 @@ func (x *DataStream_ByteHeader) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream_ByteHeader.ProtoReflect.Descriptor instead. func (*DataStream_ByteHeader) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 1} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 1} } func (x *DataStream_ByteHeader) GetName() string { @@ -5921,7 +6054,7 @@ type DataStream_Header struct { func (x *DataStream_Header) Reset() { *x = DataStream_Header{} - mi := &file_livekit_models_proto_msgTypes[50] + mi := &file_livekit_models_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5933,7 +6066,7 @@ func (x *DataStream_Header) String() string { func (*DataStream_Header) ProtoMessage() {} func (x *DataStream_Header) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[50] + mi := &file_livekit_models_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5946,7 +6079,7 @@ func (x *DataStream_Header) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream_Header.ProtoReflect.Descriptor instead. func (*DataStream_Header) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 2} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 2} } func (x *DataStream_Header) GetStreamId() string { @@ -6054,7 +6187,7 @@ type DataStream_Chunk struct { func (x *DataStream_Chunk) Reset() { *x = DataStream_Chunk{} - mi := &file_livekit_models_proto_msgTypes[51] + mi := &file_livekit_models_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6066,7 +6199,7 @@ func (x *DataStream_Chunk) String() string { func (*DataStream_Chunk) ProtoMessage() {} func (x *DataStream_Chunk) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[51] + mi := &file_livekit_models_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6079,7 +6212,7 @@ func (x *DataStream_Chunk) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream_Chunk.ProtoReflect.Descriptor instead. func (*DataStream_Chunk) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 3} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 3} } func (x *DataStream_Chunk) GetStreamId() string { @@ -6129,7 +6262,7 @@ type DataStream_Trailer struct { func (x *DataStream_Trailer) Reset() { *x = DataStream_Trailer{} - mi := &file_livekit_models_proto_msgTypes[52] + mi := &file_livekit_models_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6141,7 +6274,7 @@ func (x *DataStream_Trailer) String() string { func (*DataStream_Trailer) ProtoMessage() {} func (x *DataStream_Trailer) ProtoReflect() protoreflect.Message { - mi := &file_livekit_models_proto_msgTypes[52] + mi := &file_livekit_models_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6154,7 +6287,7 @@ func (x *DataStream_Trailer) ProtoReflect() protoreflect.Message { // Deprecated: Use DataStream_Trailer.ProtoReflect.Descriptor instead. func (*DataStream_Trailer) Descriptor() ([]byte, []int) { - return file_livekit_models_proto_rawDescGZIP(), []int{42, 4} + return file_livekit_models_proto_rawDescGZIP(), []int{43, 4} } func (x *DataStream_Trailer) GetStreamId() string { @@ -6325,7 +6458,7 @@ const file_livekit_models_proto_rawDesc = "" + "\aversion\x18\x12 \x01(\v2\x15.livekit.TimedVersionR\aversion\x12A\n" + "\x0eaudio_features\x18\x13 \x03(\x0e2\x1a.livekit.AudioTrackFeatureR\raudioFeatures\x12J\n" + "\x13backup_codec_policy\x18\x14 \x01(\x0e2\x1a.livekit.BackupCodecPolicyR\x11backupCodecPolicy\x12U\n" + - "\x17packet_trailer_features\x18\x15 \x03(\x0e2\x1d.livekit.PacketTrailerFeatureR\x15packetTrailerFeatures\"\x8e\x01\n" + + "\x17packet_trailer_features\x18\x15 \x03(\x0e2\x1d.livekit.PacketTrailerFeatureR\x15packetTrailerFeatures\"\xd0\x01\n" + "\rDataTrackInfo\x12\x1d\n" + "\n" + "pub_handle\x18\x01 \x01(\rR\tpubHandle\x12\x10\n" + @@ -6333,7 +6466,14 @@ const file_livekit_models_proto_rawDesc = "" + "\x04name\x18\x03 \x01(\tR\x04name\x128\n" + "\n" + "encryption\x18\x04 \x01(\x0e2\x18.livekit.Encryption.TypeR\n" + - "encryption\"z\n" + + "encryption\x125\n" + + "\x06schema\x18\x05 \x01(\v2\x18.livekit.DataTrackSchemaH\x00R\x06schema\x88\x01\x01B\t\n" + + "\a_schema\"y\n" + + "\x0fDataTrackSchema\x12\x12\n" + + "\x04name\x18\x01 \x01(\tR\x04name\x120\n" + + "\x04type\x18\x02 \x01(\x0e2\x1c.livekit.DataTrackSchemaTypeR\x04type\x12\x17\n" + + "\x04data\x18\x03 \x01(\fH\x00R\x04data\x88\x01\x01B\a\n" + + "\x05_data\"z\n" + " DataTrackExtensionParticipantSid\x12-\n" + "\x02id\x18\x01 \x01(\x0e2\x1d.livekit.DataTrackExtensionIDR\x02id\x12'\n" + "\x0fparticipant_sid\x18\x02 \x01(\tR\x0eparticipantSid\"Q\n" + @@ -6758,7 +6898,15 @@ const file_livekit_models_proto_rawDesc = "" + "\n" + "MICROPHONE\x10\x02\x12\x10\n" + "\fSCREEN_SHARE\x10\x03\x12\x16\n" + - "\x12SCREEN_SHARE_AUDIO\x10\x04*B\n" + + "\x12SCREEN_SHARE_AUDIO\x10\x04*\x9b\x02\n" + + "\x13DataTrackSchemaType\x12&\n" + + "\"DATA_TRACK_SCHEMA_TYPE_UNSPECIFIED\x10\x00\x12#\n" + + "\x1fDATA_TRACK_SCHEMA_TYPE_PROTOBUF\x10\x01\x12%\n" + + "!DATA_TRACK_SCHEMA_TYPE_FLATBUFFER\x10\x02\x12\"\n" + + "\x1eDATA_TRACK_SCHEMA_TYPE_ROS1MSG\x10\x03\x12\"\n" + + "\x1eDATA_TRACK_SCHEMA_TYPE_ROS2IDL\x10\x04\x12!\n" + + "\x1dDATA_TRACK_SCHEMA_TYPE_OMGIDL\x10\x05\x12%\n" + + "!DATA_TRACK_SCHEMA_TYPE_JSONSCHEMA\x10\x06*B\n" + "\x14DataTrackExtensionID\x12\x10\n" + "\fDTEI_INVALID\x10\x00\x12\x18\n" + "\x14DTEI_PARTICIPANT_SID\x10\x01*6\n" + @@ -6832,8 +6980,8 @@ func file_livekit_models_proto_rawDescGZIP() []byte { return file_livekit_models_proto_rawDescData } -var file_livekit_models_proto_enumTypes = make([]protoimpl.EnumInfo, 25) -var file_livekit_models_proto_msgTypes = make([]protoimpl.MessageInfo, 55) +var file_livekit_models_proto_enumTypes = make([]protoimpl.EnumInfo, 26) +var file_livekit_models_proto_msgTypes = make([]protoimpl.MessageInfo, 56) var file_livekit_models_proto_goTypes = []any{ (AudioCodec)(0), // 0: livekit.AudioCodec (VideoCodec)(0), // 1: livekit.VideoCodec @@ -6841,174 +6989,178 @@ var file_livekit_models_proto_goTypes = []any{ (BackupCodecPolicy)(0), // 3: livekit.BackupCodecPolicy (TrackType)(0), // 4: livekit.TrackType (TrackSource)(0), // 5: livekit.TrackSource - (DataTrackExtensionID)(0), // 6: livekit.DataTrackExtensionID - (VideoQuality)(0), // 7: livekit.VideoQuality - (ConnectionQuality)(0), // 8: livekit.ConnectionQuality - (ClientConfigSetting)(0), // 9: livekit.ClientConfigSetting - (DisconnectReason)(0), // 10: livekit.DisconnectReason - (ReconnectReason)(0), // 11: livekit.ReconnectReason - (SubscriptionError)(0), // 12: livekit.SubscriptionError - (AudioTrackFeature)(0), // 13: livekit.AudioTrackFeature - (PacketTrailerFeature)(0), // 14: livekit.PacketTrailerFeature - (ParticipantInfo_State)(0), // 15: livekit.ParticipantInfo.State - (ParticipantInfo_Kind)(0), // 16: livekit.ParticipantInfo.Kind - (ParticipantInfo_KindDetail)(0), // 17: livekit.ParticipantInfo.KindDetail - (Encryption_Type)(0), // 18: livekit.Encryption.Type - (VideoLayer_Mode)(0), // 19: livekit.VideoLayer.Mode - (DataPacket_Kind)(0), // 20: livekit.DataPacket.Kind - (ServerInfo_Edition)(0), // 21: livekit.ServerInfo.Edition - (ClientInfo_SDK)(0), // 22: livekit.ClientInfo.SDK - (ClientInfo_Capability)(0), // 23: livekit.ClientInfo.Capability - (DataStream_OperationType)(0), // 24: livekit.DataStream.OperationType - (*Pagination)(nil), // 25: livekit.Pagination - (*TokenPagination)(nil), // 26: livekit.TokenPagination - (*ListUpdate)(nil), // 27: livekit.ListUpdate - (*Room)(nil), // 28: livekit.Room - (*Codec)(nil), // 29: livekit.Codec - (*PlayoutDelay)(nil), // 30: livekit.PlayoutDelay - (*ParticipantPermission)(nil), // 31: livekit.ParticipantPermission - (*ParticipantInfo)(nil), // 32: livekit.ParticipantInfo - (*Encryption)(nil), // 33: livekit.Encryption - (*SimulcastCodecInfo)(nil), // 34: livekit.SimulcastCodecInfo - (*TrackInfo)(nil), // 35: livekit.TrackInfo - (*DataTrackInfo)(nil), // 36: livekit.DataTrackInfo - (*DataTrackExtensionParticipantSid)(nil), // 37: livekit.DataTrackExtensionParticipantSid - (*DataTrackSubscriptionOptions)(nil), // 38: livekit.DataTrackSubscriptionOptions - (*VideoLayer)(nil), // 39: livekit.VideoLayer - (*DataPacket)(nil), // 40: livekit.DataPacket - (*EncryptedPacket)(nil), // 41: livekit.EncryptedPacket - (*EncryptedPacketPayload)(nil), // 42: livekit.EncryptedPacketPayload - (*ActiveSpeakerUpdate)(nil), // 43: livekit.ActiveSpeakerUpdate - (*SpeakerInfo)(nil), // 44: livekit.SpeakerInfo - (*UserPacket)(nil), // 45: livekit.UserPacket - (*SipDTMF)(nil), // 46: livekit.SipDTMF - (*Transcription)(nil), // 47: livekit.Transcription - (*TranscriptionSegment)(nil), // 48: livekit.TranscriptionSegment - (*ChatMessage)(nil), // 49: livekit.ChatMessage - (*RpcRequest)(nil), // 50: livekit.RpcRequest - (*RpcAck)(nil), // 51: livekit.RpcAck - (*RpcResponse)(nil), // 52: livekit.RpcResponse - (*RpcError)(nil), // 53: livekit.RpcError - (*ParticipantTracks)(nil), // 54: livekit.ParticipantTracks - (*ServerInfo)(nil), // 55: livekit.ServerInfo - (*ClientInfo)(nil), // 56: livekit.ClientInfo - (*ClientConfiguration)(nil), // 57: livekit.ClientConfiguration - (*VideoConfiguration)(nil), // 58: livekit.VideoConfiguration - (*DisabledCodecs)(nil), // 59: livekit.DisabledCodecs - (*RTPDrift)(nil), // 60: livekit.RTPDrift - (*RTPStats)(nil), // 61: livekit.RTPStats - (*RTCPSenderReportState)(nil), // 62: livekit.RTCPSenderReportState - (*RTPForwarderState)(nil), // 63: livekit.RTPForwarderState - (*RTPMungerState)(nil), // 64: livekit.RTPMungerState - (*VP8MungerState)(nil), // 65: livekit.VP8MungerState - (*TimedVersion)(nil), // 66: livekit.TimedVersion - (*DataStream)(nil), // 67: livekit.DataStream - (*FilterParams)(nil), // 68: livekit.FilterParams - (*WebhookConfig)(nil), // 69: livekit.WebhookConfig - (*SubscribedAudioCodec)(nil), // 70: livekit.SubscribedAudioCodec - nil, // 71: livekit.ParticipantInfo.AttributesEntry - nil, // 72: livekit.RTPStats.GapHistogramEntry - (*DataStream_TextHeader)(nil), // 73: livekit.DataStream.TextHeader - (*DataStream_ByteHeader)(nil), // 74: livekit.DataStream.ByteHeader - (*DataStream_Header)(nil), // 75: livekit.DataStream.Header - (*DataStream_Chunk)(nil), // 76: livekit.DataStream.Chunk - (*DataStream_Trailer)(nil), // 77: livekit.DataStream.Trailer - nil, // 78: livekit.DataStream.Header.AttributesEntry - nil, // 79: livekit.DataStream.Trailer.AttributesEntry - (*MetricsBatch)(nil), // 80: livekit.MetricsBatch - (*timestamppb.Timestamp)(nil), // 81: google.protobuf.Timestamp + (DataTrackSchemaType)(0), // 6: livekit.DataTrackSchemaType + (DataTrackExtensionID)(0), // 7: livekit.DataTrackExtensionID + (VideoQuality)(0), // 8: livekit.VideoQuality + (ConnectionQuality)(0), // 9: livekit.ConnectionQuality + (ClientConfigSetting)(0), // 10: livekit.ClientConfigSetting + (DisconnectReason)(0), // 11: livekit.DisconnectReason + (ReconnectReason)(0), // 12: livekit.ReconnectReason + (SubscriptionError)(0), // 13: livekit.SubscriptionError + (AudioTrackFeature)(0), // 14: livekit.AudioTrackFeature + (PacketTrailerFeature)(0), // 15: livekit.PacketTrailerFeature + (ParticipantInfo_State)(0), // 16: livekit.ParticipantInfo.State + (ParticipantInfo_Kind)(0), // 17: livekit.ParticipantInfo.Kind + (ParticipantInfo_KindDetail)(0), // 18: livekit.ParticipantInfo.KindDetail + (Encryption_Type)(0), // 19: livekit.Encryption.Type + (VideoLayer_Mode)(0), // 20: livekit.VideoLayer.Mode + (DataPacket_Kind)(0), // 21: livekit.DataPacket.Kind + (ServerInfo_Edition)(0), // 22: livekit.ServerInfo.Edition + (ClientInfo_SDK)(0), // 23: livekit.ClientInfo.SDK + (ClientInfo_Capability)(0), // 24: livekit.ClientInfo.Capability + (DataStream_OperationType)(0), // 25: livekit.DataStream.OperationType + (*Pagination)(nil), // 26: livekit.Pagination + (*TokenPagination)(nil), // 27: livekit.TokenPagination + (*ListUpdate)(nil), // 28: livekit.ListUpdate + (*Room)(nil), // 29: livekit.Room + (*Codec)(nil), // 30: livekit.Codec + (*PlayoutDelay)(nil), // 31: livekit.PlayoutDelay + (*ParticipantPermission)(nil), // 32: livekit.ParticipantPermission + (*ParticipantInfo)(nil), // 33: livekit.ParticipantInfo + (*Encryption)(nil), // 34: livekit.Encryption + (*SimulcastCodecInfo)(nil), // 35: livekit.SimulcastCodecInfo + (*TrackInfo)(nil), // 36: livekit.TrackInfo + (*DataTrackInfo)(nil), // 37: livekit.DataTrackInfo + (*DataTrackSchema)(nil), // 38: livekit.DataTrackSchema + (*DataTrackExtensionParticipantSid)(nil), // 39: livekit.DataTrackExtensionParticipantSid + (*DataTrackSubscriptionOptions)(nil), // 40: livekit.DataTrackSubscriptionOptions + (*VideoLayer)(nil), // 41: livekit.VideoLayer + (*DataPacket)(nil), // 42: livekit.DataPacket + (*EncryptedPacket)(nil), // 43: livekit.EncryptedPacket + (*EncryptedPacketPayload)(nil), // 44: livekit.EncryptedPacketPayload + (*ActiveSpeakerUpdate)(nil), // 45: livekit.ActiveSpeakerUpdate + (*SpeakerInfo)(nil), // 46: livekit.SpeakerInfo + (*UserPacket)(nil), // 47: livekit.UserPacket + (*SipDTMF)(nil), // 48: livekit.SipDTMF + (*Transcription)(nil), // 49: livekit.Transcription + (*TranscriptionSegment)(nil), // 50: livekit.TranscriptionSegment + (*ChatMessage)(nil), // 51: livekit.ChatMessage + (*RpcRequest)(nil), // 52: livekit.RpcRequest + (*RpcAck)(nil), // 53: livekit.RpcAck + (*RpcResponse)(nil), // 54: livekit.RpcResponse + (*RpcError)(nil), // 55: livekit.RpcError + (*ParticipantTracks)(nil), // 56: livekit.ParticipantTracks + (*ServerInfo)(nil), // 57: livekit.ServerInfo + (*ClientInfo)(nil), // 58: livekit.ClientInfo + (*ClientConfiguration)(nil), // 59: livekit.ClientConfiguration + (*VideoConfiguration)(nil), // 60: livekit.VideoConfiguration + (*DisabledCodecs)(nil), // 61: livekit.DisabledCodecs + (*RTPDrift)(nil), // 62: livekit.RTPDrift + (*RTPStats)(nil), // 63: livekit.RTPStats + (*RTCPSenderReportState)(nil), // 64: livekit.RTCPSenderReportState + (*RTPForwarderState)(nil), // 65: livekit.RTPForwarderState + (*RTPMungerState)(nil), // 66: livekit.RTPMungerState + (*VP8MungerState)(nil), // 67: livekit.VP8MungerState + (*TimedVersion)(nil), // 68: livekit.TimedVersion + (*DataStream)(nil), // 69: livekit.DataStream + (*FilterParams)(nil), // 70: livekit.FilterParams + (*WebhookConfig)(nil), // 71: livekit.WebhookConfig + (*SubscribedAudioCodec)(nil), // 72: livekit.SubscribedAudioCodec + nil, // 73: livekit.ParticipantInfo.AttributesEntry + nil, // 74: livekit.RTPStats.GapHistogramEntry + (*DataStream_TextHeader)(nil), // 75: livekit.DataStream.TextHeader + (*DataStream_ByteHeader)(nil), // 76: livekit.DataStream.ByteHeader + (*DataStream_Header)(nil), // 77: livekit.DataStream.Header + (*DataStream_Chunk)(nil), // 78: livekit.DataStream.Chunk + (*DataStream_Trailer)(nil), // 79: livekit.DataStream.Trailer + nil, // 80: livekit.DataStream.Header.AttributesEntry + nil, // 81: livekit.DataStream.Trailer.AttributesEntry + (*MetricsBatch)(nil), // 82: livekit.MetricsBatch + (*timestamppb.Timestamp)(nil), // 83: google.protobuf.Timestamp } var file_livekit_models_proto_depIdxs = []int32{ - 29, // 0: livekit.Room.enabled_codecs:type_name -> livekit.Codec - 66, // 1: livekit.Room.version:type_name -> livekit.TimedVersion + 30, // 0: livekit.Room.enabled_codecs:type_name -> livekit.Codec + 68, // 1: livekit.Room.version:type_name -> livekit.TimedVersion 5, // 2: livekit.ParticipantPermission.can_publish_sources:type_name -> livekit.TrackSource - 15, // 3: livekit.ParticipantInfo.state:type_name -> livekit.ParticipantInfo.State - 35, // 4: livekit.ParticipantInfo.tracks:type_name -> livekit.TrackInfo - 31, // 5: livekit.ParticipantInfo.permission:type_name -> livekit.ParticipantPermission - 16, // 6: livekit.ParticipantInfo.kind:type_name -> livekit.ParticipantInfo.Kind - 71, // 7: livekit.ParticipantInfo.attributes:type_name -> livekit.ParticipantInfo.AttributesEntry - 10, // 8: livekit.ParticipantInfo.disconnect_reason:type_name -> livekit.DisconnectReason - 17, // 9: livekit.ParticipantInfo.kind_details:type_name -> livekit.ParticipantInfo.KindDetail - 36, // 10: livekit.ParticipantInfo.data_tracks:type_name -> livekit.DataTrackInfo - 39, // 11: livekit.SimulcastCodecInfo.layers:type_name -> livekit.VideoLayer - 19, // 12: livekit.SimulcastCodecInfo.video_layer_mode:type_name -> livekit.VideoLayer.Mode + 16, // 3: livekit.ParticipantInfo.state:type_name -> livekit.ParticipantInfo.State + 36, // 4: livekit.ParticipantInfo.tracks:type_name -> livekit.TrackInfo + 32, // 5: livekit.ParticipantInfo.permission:type_name -> livekit.ParticipantPermission + 17, // 6: livekit.ParticipantInfo.kind:type_name -> livekit.ParticipantInfo.Kind + 73, // 7: livekit.ParticipantInfo.attributes:type_name -> livekit.ParticipantInfo.AttributesEntry + 11, // 8: livekit.ParticipantInfo.disconnect_reason:type_name -> livekit.DisconnectReason + 18, // 9: livekit.ParticipantInfo.kind_details:type_name -> livekit.ParticipantInfo.KindDetail + 37, // 10: livekit.ParticipantInfo.data_tracks:type_name -> livekit.DataTrackInfo + 41, // 11: livekit.SimulcastCodecInfo.layers:type_name -> livekit.VideoLayer + 20, // 12: livekit.SimulcastCodecInfo.video_layer_mode:type_name -> livekit.VideoLayer.Mode 4, // 13: livekit.TrackInfo.type:type_name -> livekit.TrackType 5, // 14: livekit.TrackInfo.source:type_name -> livekit.TrackSource - 39, // 15: livekit.TrackInfo.layers:type_name -> livekit.VideoLayer - 34, // 16: livekit.TrackInfo.codecs:type_name -> livekit.SimulcastCodecInfo - 18, // 17: livekit.TrackInfo.encryption:type_name -> livekit.Encryption.Type - 66, // 18: livekit.TrackInfo.version:type_name -> livekit.TimedVersion - 13, // 19: livekit.TrackInfo.audio_features:type_name -> livekit.AudioTrackFeature + 41, // 15: livekit.TrackInfo.layers:type_name -> livekit.VideoLayer + 35, // 16: livekit.TrackInfo.codecs:type_name -> livekit.SimulcastCodecInfo + 19, // 17: livekit.TrackInfo.encryption:type_name -> livekit.Encryption.Type + 68, // 18: livekit.TrackInfo.version:type_name -> livekit.TimedVersion + 14, // 19: livekit.TrackInfo.audio_features:type_name -> livekit.AudioTrackFeature 3, // 20: livekit.TrackInfo.backup_codec_policy:type_name -> livekit.BackupCodecPolicy - 14, // 21: livekit.TrackInfo.packet_trailer_features:type_name -> livekit.PacketTrailerFeature - 18, // 22: livekit.DataTrackInfo.encryption:type_name -> livekit.Encryption.Type - 6, // 23: livekit.DataTrackExtensionParticipantSid.id:type_name -> livekit.DataTrackExtensionID - 7, // 24: livekit.VideoLayer.quality:type_name -> livekit.VideoQuality - 20, // 25: livekit.DataPacket.kind:type_name -> livekit.DataPacket.Kind - 45, // 26: livekit.DataPacket.user:type_name -> livekit.UserPacket - 43, // 27: livekit.DataPacket.speaker:type_name -> livekit.ActiveSpeakerUpdate - 46, // 28: livekit.DataPacket.sip_dtmf:type_name -> livekit.SipDTMF - 47, // 29: livekit.DataPacket.transcription:type_name -> livekit.Transcription - 80, // 30: livekit.DataPacket.metrics:type_name -> livekit.MetricsBatch - 49, // 31: livekit.DataPacket.chat_message:type_name -> livekit.ChatMessage - 50, // 32: livekit.DataPacket.rpc_request:type_name -> livekit.RpcRequest - 51, // 33: livekit.DataPacket.rpc_ack:type_name -> livekit.RpcAck - 52, // 34: livekit.DataPacket.rpc_response:type_name -> livekit.RpcResponse - 75, // 35: livekit.DataPacket.stream_header:type_name -> livekit.DataStream.Header - 76, // 36: livekit.DataPacket.stream_chunk:type_name -> livekit.DataStream.Chunk - 77, // 37: livekit.DataPacket.stream_trailer:type_name -> livekit.DataStream.Trailer - 41, // 38: livekit.DataPacket.encrypted_packet:type_name -> livekit.EncryptedPacket - 18, // 39: livekit.EncryptedPacket.encryption_type:type_name -> livekit.Encryption.Type - 45, // 40: livekit.EncryptedPacketPayload.user:type_name -> livekit.UserPacket - 49, // 41: livekit.EncryptedPacketPayload.chat_message:type_name -> livekit.ChatMessage - 50, // 42: livekit.EncryptedPacketPayload.rpc_request:type_name -> livekit.RpcRequest - 51, // 43: livekit.EncryptedPacketPayload.rpc_ack:type_name -> livekit.RpcAck - 52, // 44: livekit.EncryptedPacketPayload.rpc_response:type_name -> livekit.RpcResponse - 75, // 45: livekit.EncryptedPacketPayload.stream_header:type_name -> livekit.DataStream.Header - 76, // 46: livekit.EncryptedPacketPayload.stream_chunk:type_name -> livekit.DataStream.Chunk - 77, // 47: livekit.EncryptedPacketPayload.stream_trailer:type_name -> livekit.DataStream.Trailer - 44, // 48: livekit.ActiveSpeakerUpdate.speakers:type_name -> livekit.SpeakerInfo - 48, // 49: livekit.Transcription.segments:type_name -> livekit.TranscriptionSegment - 53, // 50: livekit.RpcResponse.error:type_name -> livekit.RpcError - 21, // 51: livekit.ServerInfo.edition:type_name -> livekit.ServerInfo.Edition - 22, // 52: livekit.ClientInfo.sdk:type_name -> livekit.ClientInfo.SDK - 23, // 53: livekit.ClientInfo.capabilities:type_name -> livekit.ClientInfo.Capability - 58, // 54: livekit.ClientConfiguration.video:type_name -> livekit.VideoConfiguration - 58, // 55: livekit.ClientConfiguration.screen:type_name -> livekit.VideoConfiguration - 9, // 56: livekit.ClientConfiguration.resume_connection:type_name -> livekit.ClientConfigSetting - 59, // 57: livekit.ClientConfiguration.disabled_codecs:type_name -> livekit.DisabledCodecs - 9, // 58: livekit.ClientConfiguration.force_relay:type_name -> livekit.ClientConfigSetting - 9, // 59: livekit.VideoConfiguration.hardware_encoder:type_name -> livekit.ClientConfigSetting - 29, // 60: livekit.DisabledCodecs.codecs:type_name -> livekit.Codec - 29, // 61: livekit.DisabledCodecs.publish:type_name -> livekit.Codec - 81, // 62: livekit.RTPDrift.start_time:type_name -> google.protobuf.Timestamp - 81, // 63: livekit.RTPDrift.end_time:type_name -> google.protobuf.Timestamp - 81, // 64: livekit.RTPStats.start_time:type_name -> google.protobuf.Timestamp - 81, // 65: livekit.RTPStats.end_time:type_name -> google.protobuf.Timestamp - 72, // 66: livekit.RTPStats.gap_histogram:type_name -> livekit.RTPStats.GapHistogramEntry - 81, // 67: livekit.RTPStats.last_pli:type_name -> google.protobuf.Timestamp - 81, // 68: livekit.RTPStats.last_fir:type_name -> google.protobuf.Timestamp - 81, // 69: livekit.RTPStats.last_key_frame:type_name -> google.protobuf.Timestamp - 81, // 70: livekit.RTPStats.last_layer_lock_pli:type_name -> google.protobuf.Timestamp - 60, // 71: livekit.RTPStats.packet_drift:type_name -> livekit.RTPDrift - 60, // 72: livekit.RTPStats.ntp_report_drift:type_name -> livekit.RTPDrift - 60, // 73: livekit.RTPStats.rebased_report_drift:type_name -> livekit.RTPDrift - 60, // 74: livekit.RTPStats.received_report_drift:type_name -> livekit.RTPDrift - 64, // 75: livekit.RTPForwarderState.rtp_munger:type_name -> livekit.RTPMungerState - 65, // 76: livekit.RTPForwarderState.vp8_munger:type_name -> livekit.VP8MungerState - 62, // 77: livekit.RTPForwarderState.sender_report_state:type_name -> livekit.RTCPSenderReportState - 68, // 78: livekit.WebhookConfig.filter_params:type_name -> livekit.FilterParams - 24, // 79: livekit.DataStream.TextHeader.operation_type:type_name -> livekit.DataStream.OperationType - 18, // 80: livekit.DataStream.Header.encryption_type:type_name -> livekit.Encryption.Type - 78, // 81: livekit.DataStream.Header.attributes:type_name -> livekit.DataStream.Header.AttributesEntry - 73, // 82: livekit.DataStream.Header.text_header:type_name -> livekit.DataStream.TextHeader - 74, // 83: livekit.DataStream.Header.byte_header:type_name -> livekit.DataStream.ByteHeader - 79, // 84: livekit.DataStream.Trailer.attributes:type_name -> livekit.DataStream.Trailer.AttributesEntry - 85, // [85:85] is the sub-list for method output_type - 85, // [85:85] is the sub-list for method input_type - 85, // [85:85] is the sub-list for extension type_name - 85, // [85:85] is the sub-list for extension extendee - 0, // [0:85] is the sub-list for field type_name + 15, // 21: livekit.TrackInfo.packet_trailer_features:type_name -> livekit.PacketTrailerFeature + 19, // 22: livekit.DataTrackInfo.encryption:type_name -> livekit.Encryption.Type + 38, // 23: livekit.DataTrackInfo.schema:type_name -> livekit.DataTrackSchema + 6, // 24: livekit.DataTrackSchema.type:type_name -> livekit.DataTrackSchemaType + 7, // 25: livekit.DataTrackExtensionParticipantSid.id:type_name -> livekit.DataTrackExtensionID + 8, // 26: livekit.VideoLayer.quality:type_name -> livekit.VideoQuality + 21, // 27: livekit.DataPacket.kind:type_name -> livekit.DataPacket.Kind + 47, // 28: livekit.DataPacket.user:type_name -> livekit.UserPacket + 45, // 29: livekit.DataPacket.speaker:type_name -> livekit.ActiveSpeakerUpdate + 48, // 30: livekit.DataPacket.sip_dtmf:type_name -> livekit.SipDTMF + 49, // 31: livekit.DataPacket.transcription:type_name -> livekit.Transcription + 82, // 32: livekit.DataPacket.metrics:type_name -> livekit.MetricsBatch + 51, // 33: livekit.DataPacket.chat_message:type_name -> livekit.ChatMessage + 52, // 34: livekit.DataPacket.rpc_request:type_name -> livekit.RpcRequest + 53, // 35: livekit.DataPacket.rpc_ack:type_name -> livekit.RpcAck + 54, // 36: livekit.DataPacket.rpc_response:type_name -> livekit.RpcResponse + 77, // 37: livekit.DataPacket.stream_header:type_name -> livekit.DataStream.Header + 78, // 38: livekit.DataPacket.stream_chunk:type_name -> livekit.DataStream.Chunk + 79, // 39: livekit.DataPacket.stream_trailer:type_name -> livekit.DataStream.Trailer + 43, // 40: livekit.DataPacket.encrypted_packet:type_name -> livekit.EncryptedPacket + 19, // 41: livekit.EncryptedPacket.encryption_type:type_name -> livekit.Encryption.Type + 47, // 42: livekit.EncryptedPacketPayload.user:type_name -> livekit.UserPacket + 51, // 43: livekit.EncryptedPacketPayload.chat_message:type_name -> livekit.ChatMessage + 52, // 44: livekit.EncryptedPacketPayload.rpc_request:type_name -> livekit.RpcRequest + 53, // 45: livekit.EncryptedPacketPayload.rpc_ack:type_name -> livekit.RpcAck + 54, // 46: livekit.EncryptedPacketPayload.rpc_response:type_name -> livekit.RpcResponse + 77, // 47: livekit.EncryptedPacketPayload.stream_header:type_name -> livekit.DataStream.Header + 78, // 48: livekit.EncryptedPacketPayload.stream_chunk:type_name -> livekit.DataStream.Chunk + 79, // 49: livekit.EncryptedPacketPayload.stream_trailer:type_name -> livekit.DataStream.Trailer + 46, // 50: livekit.ActiveSpeakerUpdate.speakers:type_name -> livekit.SpeakerInfo + 50, // 51: livekit.Transcription.segments:type_name -> livekit.TranscriptionSegment + 55, // 52: livekit.RpcResponse.error:type_name -> livekit.RpcError + 22, // 53: livekit.ServerInfo.edition:type_name -> livekit.ServerInfo.Edition + 23, // 54: livekit.ClientInfo.sdk:type_name -> livekit.ClientInfo.SDK + 24, // 55: livekit.ClientInfo.capabilities:type_name -> livekit.ClientInfo.Capability + 60, // 56: livekit.ClientConfiguration.video:type_name -> livekit.VideoConfiguration + 60, // 57: livekit.ClientConfiguration.screen:type_name -> livekit.VideoConfiguration + 10, // 58: livekit.ClientConfiguration.resume_connection:type_name -> livekit.ClientConfigSetting + 61, // 59: livekit.ClientConfiguration.disabled_codecs:type_name -> livekit.DisabledCodecs + 10, // 60: livekit.ClientConfiguration.force_relay:type_name -> livekit.ClientConfigSetting + 10, // 61: livekit.VideoConfiguration.hardware_encoder:type_name -> livekit.ClientConfigSetting + 30, // 62: livekit.DisabledCodecs.codecs:type_name -> livekit.Codec + 30, // 63: livekit.DisabledCodecs.publish:type_name -> livekit.Codec + 83, // 64: livekit.RTPDrift.start_time:type_name -> google.protobuf.Timestamp + 83, // 65: livekit.RTPDrift.end_time:type_name -> google.protobuf.Timestamp + 83, // 66: livekit.RTPStats.start_time:type_name -> google.protobuf.Timestamp + 83, // 67: livekit.RTPStats.end_time:type_name -> google.protobuf.Timestamp + 74, // 68: livekit.RTPStats.gap_histogram:type_name -> livekit.RTPStats.GapHistogramEntry + 83, // 69: livekit.RTPStats.last_pli:type_name -> google.protobuf.Timestamp + 83, // 70: livekit.RTPStats.last_fir:type_name -> google.protobuf.Timestamp + 83, // 71: livekit.RTPStats.last_key_frame:type_name -> google.protobuf.Timestamp + 83, // 72: livekit.RTPStats.last_layer_lock_pli:type_name -> google.protobuf.Timestamp + 62, // 73: livekit.RTPStats.packet_drift:type_name -> livekit.RTPDrift + 62, // 74: livekit.RTPStats.ntp_report_drift:type_name -> livekit.RTPDrift + 62, // 75: livekit.RTPStats.rebased_report_drift:type_name -> livekit.RTPDrift + 62, // 76: livekit.RTPStats.received_report_drift:type_name -> livekit.RTPDrift + 66, // 77: livekit.RTPForwarderState.rtp_munger:type_name -> livekit.RTPMungerState + 67, // 78: livekit.RTPForwarderState.vp8_munger:type_name -> livekit.VP8MungerState + 64, // 79: livekit.RTPForwarderState.sender_report_state:type_name -> livekit.RTCPSenderReportState + 70, // 80: livekit.WebhookConfig.filter_params:type_name -> livekit.FilterParams + 25, // 81: livekit.DataStream.TextHeader.operation_type:type_name -> livekit.DataStream.OperationType + 19, // 82: livekit.DataStream.Header.encryption_type:type_name -> livekit.Encryption.Type + 80, // 83: livekit.DataStream.Header.attributes:type_name -> livekit.DataStream.Header.AttributesEntry + 75, // 84: livekit.DataStream.Header.text_header:type_name -> livekit.DataStream.TextHeader + 76, // 85: livekit.DataStream.Header.byte_header:type_name -> livekit.DataStream.ByteHeader + 81, // 86: livekit.DataStream.Trailer.attributes:type_name -> livekit.DataStream.Trailer.AttributesEntry + 87, // [87:87] is the sub-list for method output_type + 87, // [87:87] is the sub-list for method input_type + 87, // [87:87] is the sub-list for extension type_name + 87, // [87:87] is the sub-list for extension extendee + 0, // [0:87] is the sub-list for field type_name } func init() { file_livekit_models_proto_init() } @@ -7017,8 +7169,10 @@ func file_livekit_models_proto_init() { return } file_livekit_metrics_proto_init() - file_livekit_models_proto_msgTypes[13].OneofWrappers = []any{} - file_livekit_models_proto_msgTypes[15].OneofWrappers = []any{ + file_livekit_models_proto_msgTypes[11].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[12].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[14].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[16].OneofWrappers = []any{ (*DataPacket_User)(nil), (*DataPacket_Speaker)(nil), (*DataPacket_SipDtmf)(nil), @@ -7033,7 +7187,7 @@ func file_livekit_models_proto_init() { (*DataPacket_StreamTrailer)(nil), (*DataPacket_EncryptedPacket)(nil), } - file_livekit_models_proto_msgTypes[17].OneofWrappers = []any{ + file_livekit_models_proto_msgTypes[18].OneofWrappers = []any{ (*EncryptedPacketPayload_User)(nil), (*EncryptedPacketPayload_ChatMessage)(nil), (*EncryptedPacketPayload_RpcRequest)(nil), @@ -7043,28 +7197,28 @@ func file_livekit_models_proto_init() { (*EncryptedPacketPayload_StreamChunk)(nil), (*EncryptedPacketPayload_StreamTrailer)(nil), } - file_livekit_models_proto_msgTypes[20].OneofWrappers = []any{} - file_livekit_models_proto_msgTypes[24].OneofWrappers = []any{} - file_livekit_models_proto_msgTypes[27].OneofWrappers = []any{ + file_livekit_models_proto_msgTypes[21].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[25].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[28].OneofWrappers = []any{ (*RpcResponse_Payload)(nil), (*RpcResponse_Error)(nil), (*RpcResponse_CompressedPayload)(nil), } - file_livekit_models_proto_msgTypes[38].OneofWrappers = []any{ + file_livekit_models_proto_msgTypes[39].OneofWrappers = []any{ (*RTPForwarderState_Vp8Munger)(nil), } - file_livekit_models_proto_msgTypes[50].OneofWrappers = []any{ + file_livekit_models_proto_msgTypes[51].OneofWrappers = []any{ (*DataStream_Header_TextHeader)(nil), (*DataStream_Header_ByteHeader)(nil), } - file_livekit_models_proto_msgTypes[51].OneofWrappers = []any{} + file_livekit_models_proto_msgTypes[52].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_models_proto_rawDesc), len(file_livekit_models_proto_rawDesc)), - NumEnums: 25, - NumMessages: 55, + NumEnums: 26, + NumMessages: 56, NumExtensions: 0, NumServices: 0, }, diff --git a/livekit/livekit_rtc.pb.go b/livekit/livekit_rtc.pb.go index f3fae5149..1d8469ab7 100644 --- a/livekit/livekit_rtc.pb.go +++ b/livekit/livekit_rtc.pb.go @@ -241,6 +241,7 @@ const ( RequestResponse_INVALID_NAME RequestResponse_Reason = 8 RequestResponse_DUPLICATE_HANDLE RequestResponse_Reason = 9 RequestResponse_DUPLICATE_NAME RequestResponse_Reason = 10 + RequestResponse_INVALID_SCHEMA RequestResponse_Reason = 11 ) // Enum value maps for RequestResponse_Reason. @@ -257,6 +258,7 @@ var ( 8: "INVALID_NAME", 9: "DUPLICATE_HANDLE", 10: "DUPLICATE_NAME", + 11: "INVALID_SCHEMA", } RequestResponse_Reason_value = map[string]int32{ "OK": 0, @@ -270,6 +272,7 @@ var ( "INVALID_NAME": 8, "DUPLICATE_HANDLE": 9, "DUPLICATE_NAME": 10, + "INVALID_SCHEMA": 11, } ) @@ -1533,7 +1536,9 @@ type PublishDataTrackRequest struct { // This must be non-empty and no longer than 256 characters. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // Method used for end-to-end encryption (E2EE) on frame payloads. - Encryption Encryption_Type `protobuf:"varint,3,opt,name=encryption,proto3,enum=livekit.Encryption_Type" json:"encryption,omitempty"` + Encryption Encryption_Type `protobuf:"varint,3,opt,name=encryption,proto3,enum=livekit.Encryption_Type" json:"encryption,omitempty"` + // Schema describing frames published on the track. + Schema *DataTrackSchema `protobuf:"bytes,4,opt,name=schema,proto3,oneof" json:"schema,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1589,6 +1594,13 @@ func (x *PublishDataTrackRequest) GetEncryption() Encryption_Type { return Encryption_NONE } +func (x *PublishDataTrackRequest) GetSchema() *DataTrackSchema { + if x != nil { + return x.Schema + } + return nil +} + type PublishDataTrackResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Information about the published track. @@ -5103,14 +5115,16 @@ const file_livekit_rtc_proto_rawDesc = "" + "\x06stream\x18\x0f \x01(\tR\x06stream\x12J\n" + "\x13backup_codec_policy\x18\x10 \x01(\x0e2\x1a.livekit.BackupCodecPolicyR\x11backupCodecPolicy\x12A\n" + "\x0eaudio_features\x18\x11 \x03(\x0e2\x1a.livekit.AudioTrackFeatureR\raudioFeatures\x12U\n" + - "\x17packet_trailer_features\x18\x12 \x03(\x0e2\x1d.livekit.PacketTrailerFeatureR\x15packetTrailerFeatures\"\x86\x01\n" + + "\x17packet_trailer_features\x18\x12 \x03(\x0e2\x1d.livekit.PacketTrailerFeatureR\x15packetTrailerFeatures\"\xc8\x01\n" + "\x17PublishDataTrackRequest\x12\x1d\n" + "\n" + "pub_handle\x18\x01 \x01(\rR\tpubHandle\x12\x12\n" + "\x04name\x18\x02 \x01(\tR\x04name\x128\n" + "\n" + "encryption\x18\x03 \x01(\x0e2\x18.livekit.Encryption.TypeR\n" + - "encryption\"F\n" + + "encryption\x125\n" + + "\x06schema\x18\x04 \x01(\v2\x18.livekit.DataTrackSchemaH\x00R\x06schema\x88\x01\x01B\t\n" + + "\a_schema\"F\n" + "\x18PublishDataTrackResponse\x12*\n" + "\x04info\x18\x01 \x01(\v2\x16.livekit.DataTrackInfoR\x04info\":\n" + "\x19UnpublishDataTrackRequest\x12\x1d\n" + @@ -5327,7 +5341,7 @@ const file_livekit_rtc_proto_rawDesc = "" + "\bdistance\x18\x03 \x01(\x03R\bdistance\"a\n" + "\x14SubscriptionResponse\x12\x1b\n" + "\ttrack_sid\x18\x01 \x01(\tR\btrackSid\x12,\n" + - "\x03err\x18\x02 \x01(\x0e2\x1a.livekit.SubscriptionErrorR\x03err\"\xa5\a\n" + + "\x03err\x18\x02 \x01(\x0e2\x1a.livekit.SubscriptionErrorR\x03err\"\xb9\a\n" + "\x0fRequestResponse\x12+\n" + "\n" + "request_id\x18\x01 \x01(\rB\f\xbaP\trequestIDR\trequestId\x127\n" + @@ -5341,7 +5355,7 @@ const file_livekit_rtc_proto_rawDesc = "" + "\x12update_video_track\x18\t \x01(\v2\x1e.livekit.UpdateLocalVideoTrackH\x00R\x10updateVideoTrack\x12P\n" + "\x12publish_data_track\x18\n" + " \x01(\v2 .livekit.PublishDataTrackRequestH\x00R\x10publishDataTrack\x12V\n" + - "\x14unpublish_data_track\x18\v \x01(\v2\".livekit.UnpublishDataTrackRequestH\x00R\x12unpublishDataTrack\"\xce\x01\n" + + "\x14unpublish_data_track\x18\v \x01(\v2\".livekit.UnpublishDataTrackRequestH\x00R\x12unpublishDataTrack\"\xe2\x01\n" + "\x06Reason\x12\x06\n" + "\x02OK\x10\x00\x12\r\n" + "\tNOT_FOUND\x10\x01\x12\x0f\n" + @@ -5355,7 +5369,8 @@ const file_livekit_rtc_proto_rawDesc = "" + "\fINVALID_NAME\x10\b\x12\x14\n" + "\x10DUPLICATE_HANDLE\x10\t\x12\x12\n" + "\x0eDUPLICATE_NAME\x10\n" + - "B\t\n" + + "\x12\x12\n" + + "\x0eINVALID_SCHEMA\x10\vB\t\n" + "\arequest\".\n" + "\x0fTrackSubscribed\x12\x1b\n" + "\ttrack_sid\x18\x01 \x01(\tR\btrackSid\"\xc2\x02\n" + @@ -5499,23 +5514,24 @@ var file_livekit_rtc_proto_goTypes = []any{ (BackupCodecPolicy)(0), // 72: livekit.BackupCodecPolicy (AudioTrackFeature)(0), // 73: livekit.AudioTrackFeature (PacketTrailerFeature)(0), // 74: livekit.PacketTrailerFeature - (*DataTrackInfo)(nil), // 75: livekit.DataTrackInfo - (*Room)(nil), // 76: livekit.Room - (*ParticipantInfo)(nil), // 77: livekit.ParticipantInfo - (*ClientConfiguration)(nil), // 78: livekit.ClientConfiguration - (*ServerInfo)(nil), // 79: livekit.ServerInfo - (*Codec)(nil), // 80: livekit.Codec - (*TrackInfo)(nil), // 81: livekit.TrackInfo - (*ParticipantTracks)(nil), // 82: livekit.ParticipantTracks - (VideoQuality)(0), // 83: livekit.VideoQuality - (DisconnectReason)(0), // 84: livekit.DisconnectReason - (*SpeakerInfo)(nil), // 85: livekit.SpeakerInfo - (ConnectionQuality)(0), // 86: livekit.ConnectionQuality - (*SubscribedAudioCodec)(nil), // 87: livekit.SubscribedAudioCodec - (SubscriptionError)(0), // 88: livekit.SubscriptionError - (*ClientInfo)(nil), // 89: livekit.ClientInfo - (ReconnectReason)(0), // 90: livekit.ReconnectReason - (*DataTrackSubscriptionOptions)(nil), // 91: livekit.DataTrackSubscriptionOptions + (*DataTrackSchema)(nil), // 75: livekit.DataTrackSchema + (*DataTrackInfo)(nil), // 76: livekit.DataTrackInfo + (*Room)(nil), // 77: livekit.Room + (*ParticipantInfo)(nil), // 78: livekit.ParticipantInfo + (*ClientConfiguration)(nil), // 79: livekit.ClientConfiguration + (*ServerInfo)(nil), // 80: livekit.ServerInfo + (*Codec)(nil), // 81: livekit.Codec + (*TrackInfo)(nil), // 82: livekit.TrackInfo + (*ParticipantTracks)(nil), // 83: livekit.ParticipantTracks + (VideoQuality)(0), // 84: livekit.VideoQuality + (DisconnectReason)(0), // 85: livekit.DisconnectReason + (*SpeakerInfo)(nil), // 86: livekit.SpeakerInfo + (ConnectionQuality)(0), // 87: livekit.ConnectionQuality + (*SubscribedAudioCodec)(nil), // 88: livekit.SubscribedAudioCodec + (SubscriptionError)(0), // 89: livekit.SubscriptionError + (*ClientInfo)(nil), // 90: livekit.ClientInfo + (ReconnectReason)(0), // 91: livekit.ReconnectReason + (*DataTrackSubscriptionOptions)(nil), // 92: livekit.DataTrackSubscriptionOptions } var file_livekit_rtc_proto_depIdxs = []int32{ 21, // 0: livekit.SignalRequest.offer:type_name -> livekit.SessionDescription @@ -5574,82 +5590,83 @@ var file_livekit_rtc_proto_depIdxs = []int32{ 73, // 53: livekit.AddTrackRequest.audio_features:type_name -> livekit.AudioTrackFeature 74, // 54: livekit.AddTrackRequest.packet_trailer_features:type_name -> livekit.PacketTrailerFeature 71, // 55: livekit.PublishDataTrackRequest.encryption:type_name -> livekit.Encryption.Type - 75, // 56: livekit.PublishDataTrackResponse.info:type_name -> livekit.DataTrackInfo - 75, // 57: livekit.UnpublishDataTrackResponse.info:type_name -> livekit.DataTrackInfo - 62, // 58: livekit.DataTrackSubscriberHandles.sub_handles:type_name -> livekit.DataTrackSubscriberHandles.SubHandlesEntry - 0, // 59: livekit.TrickleRequest.target:type_name -> livekit.SignalTarget - 76, // 60: livekit.JoinResponse.room:type_name -> livekit.Room - 77, // 61: livekit.JoinResponse.participant:type_name -> livekit.ParticipantInfo - 77, // 62: livekit.JoinResponse.other_participants:type_name -> livekit.ParticipantInfo - 31, // 63: livekit.JoinResponse.ice_servers:type_name -> livekit.ICEServer - 78, // 64: livekit.JoinResponse.client_configuration:type_name -> livekit.ClientConfiguration - 79, // 65: livekit.JoinResponse.server_info:type_name -> livekit.ServerInfo - 80, // 66: livekit.JoinResponse.enabled_publish_codecs:type_name -> livekit.Codec - 31, // 67: livekit.ReconnectResponse.ice_servers:type_name -> livekit.ICEServer - 78, // 68: livekit.ReconnectResponse.client_configuration:type_name -> livekit.ClientConfiguration - 79, // 69: livekit.ReconnectResponse.server_info:type_name -> livekit.ServerInfo - 81, // 70: livekit.TrackPublishedResponse.track:type_name -> livekit.TrackInfo - 63, // 71: livekit.SessionDescription.mid_to_track_id:type_name -> livekit.SessionDescription.MidToTrackIdEntry - 77, // 72: livekit.ParticipantUpdate.participants:type_name -> livekit.ParticipantInfo - 82, // 73: livekit.UpdateSubscription.participant_tracks:type_name -> livekit.ParticipantTracks - 64, // 74: livekit.UpdateDataSubscription.updates:type_name -> livekit.UpdateDataSubscription.Update - 83, // 75: livekit.UpdateTrackSettings.quality:type_name -> livekit.VideoQuality - 73, // 76: livekit.UpdateLocalAudioTrack.features:type_name -> livekit.AudioTrackFeature - 84, // 77: livekit.LeaveRequest.reason:type_name -> livekit.DisconnectReason - 3, // 78: livekit.LeaveRequest.action:type_name -> livekit.LeaveRequest.Action - 52, // 79: livekit.LeaveRequest.regions:type_name -> livekit.RegionSettings - 67, // 80: livekit.UpdateVideoLayers.layers:type_name -> livekit.VideoLayer - 65, // 81: livekit.UpdateParticipantMetadata.attributes:type_name -> livekit.UpdateParticipantMetadata.AttributesEntry - 85, // 82: livekit.SpeakersChanged.speakers:type_name -> livekit.SpeakerInfo - 76, // 83: livekit.RoomUpdate.room:type_name -> livekit.Room - 86, // 84: livekit.ConnectionQualityInfo.quality:type_name -> livekit.ConnectionQuality - 34, // 85: livekit.ConnectionQualityUpdate.updates:type_name -> livekit.ConnectionQualityInfo - 1, // 86: livekit.StreamStateInfo.state:type_name -> livekit.StreamState - 36, // 87: livekit.StreamStateUpdate.stream_states:type_name -> livekit.StreamStateInfo - 83, // 88: livekit.SubscribedQuality.quality:type_name -> livekit.VideoQuality - 38, // 89: livekit.SubscribedCodec.qualities:type_name -> livekit.SubscribedQuality - 38, // 90: livekit.SubscribedQualityUpdate.subscribed_qualities:type_name -> livekit.SubscribedQuality - 39, // 91: livekit.SubscribedQualityUpdate.subscribed_codecs:type_name -> livekit.SubscribedCodec - 87, // 92: livekit.SubscribedAudioCodecUpdate.subscribed_audio_codecs:type_name -> livekit.SubscribedAudioCodec - 42, // 93: livekit.SubscriptionPermission.track_permissions:type_name -> livekit.TrackPermission - 76, // 94: livekit.RoomMovedResponse.room:type_name -> livekit.Room - 77, // 95: livekit.RoomMovedResponse.participant:type_name -> livekit.ParticipantInfo - 77, // 96: livekit.RoomMovedResponse.other_participants:type_name -> livekit.ParticipantInfo - 21, // 97: livekit.SyncState.answer:type_name -> livekit.SessionDescription - 23, // 98: livekit.SyncState.subscription:type_name -> livekit.UpdateSubscription - 19, // 99: livekit.SyncState.publish_tracks:type_name -> livekit.TrackPublishedResponse - 48, // 100: livekit.SyncState.data_channels:type_name -> livekit.DataChannelInfo - 21, // 101: livekit.SyncState.offer:type_name -> livekit.SessionDescription - 47, // 102: livekit.SyncState.datachannel_receive_states:type_name -> livekit.DataChannelReceiveState - 11, // 103: livekit.SyncState.publish_data_tracks:type_name -> livekit.PublishDataTrackResponse - 0, // 104: livekit.DataChannelInfo.target:type_name -> livekit.SignalTarget - 2, // 105: livekit.SimulateScenario.switch_candidate_protocol:type_name -> livekit.CandidateProtocol - 53, // 106: livekit.RegionSettings.regions:type_name -> livekit.RegionInfo - 88, // 107: livekit.SubscriptionResponse.err:type_name -> livekit.SubscriptionError - 4, // 108: livekit.RequestResponse.reason:type_name -> livekit.RequestResponse.Reason - 15, // 109: livekit.RequestResponse.trickle:type_name -> livekit.TrickleRequest - 9, // 110: livekit.RequestResponse.add_track:type_name -> livekit.AddTrackRequest - 16, // 111: livekit.RequestResponse.mute:type_name -> livekit.MuteTrackRequest - 30, // 112: livekit.RequestResponse.update_metadata:type_name -> livekit.UpdateParticipantMetadata - 26, // 113: livekit.RequestResponse.update_audio_track:type_name -> livekit.UpdateLocalAudioTrack - 27, // 114: livekit.RequestResponse.update_video_track:type_name -> livekit.UpdateLocalVideoTrack - 10, // 115: livekit.RequestResponse.publish_data_track:type_name -> livekit.PublishDataTrackRequest - 12, // 116: livekit.RequestResponse.unpublish_data_track:type_name -> livekit.UnpublishDataTrackRequest - 89, // 117: livekit.JoinRequest.client_info:type_name -> livekit.ClientInfo - 57, // 118: livekit.JoinRequest.connection_settings:type_name -> livekit.ConnectionSettings - 66, // 119: livekit.JoinRequest.participant_attributes:type_name -> livekit.JoinRequest.ParticipantAttributesEntry - 9, // 120: livekit.JoinRequest.add_track_requests:type_name -> livekit.AddTrackRequest - 21, // 121: livekit.JoinRequest.publisher_offer:type_name -> livekit.SessionDescription - 90, // 122: livekit.JoinRequest.reconnect_reason:type_name -> livekit.ReconnectReason - 46, // 123: livekit.JoinRequest.sync_state:type_name -> livekit.SyncState - 5, // 124: livekit.WrappedJoinRequest.compression:type_name -> livekit.WrappedJoinRequest.Compression - 61, // 125: livekit.DataTrackSubscriberHandles.SubHandlesEntry.value:type_name -> livekit.DataTrackSubscriberHandles.PublishedDataTrack - 91, // 126: livekit.UpdateDataSubscription.Update.options:type_name -> livekit.DataTrackSubscriptionOptions - 127, // [127:127] is the sub-list for method output_type - 127, // [127:127] is the sub-list for method input_type - 127, // [127:127] is the sub-list for extension type_name - 127, // [127:127] is the sub-list for extension extendee - 0, // [0:127] is the sub-list for field type_name + 75, // 56: livekit.PublishDataTrackRequest.schema:type_name -> livekit.DataTrackSchema + 76, // 57: livekit.PublishDataTrackResponse.info:type_name -> livekit.DataTrackInfo + 76, // 58: livekit.UnpublishDataTrackResponse.info:type_name -> livekit.DataTrackInfo + 62, // 59: livekit.DataTrackSubscriberHandles.sub_handles:type_name -> livekit.DataTrackSubscriberHandles.SubHandlesEntry + 0, // 60: livekit.TrickleRequest.target:type_name -> livekit.SignalTarget + 77, // 61: livekit.JoinResponse.room:type_name -> livekit.Room + 78, // 62: livekit.JoinResponse.participant:type_name -> livekit.ParticipantInfo + 78, // 63: livekit.JoinResponse.other_participants:type_name -> livekit.ParticipantInfo + 31, // 64: livekit.JoinResponse.ice_servers:type_name -> livekit.ICEServer + 79, // 65: livekit.JoinResponse.client_configuration:type_name -> livekit.ClientConfiguration + 80, // 66: livekit.JoinResponse.server_info:type_name -> livekit.ServerInfo + 81, // 67: livekit.JoinResponse.enabled_publish_codecs:type_name -> livekit.Codec + 31, // 68: livekit.ReconnectResponse.ice_servers:type_name -> livekit.ICEServer + 79, // 69: livekit.ReconnectResponse.client_configuration:type_name -> livekit.ClientConfiguration + 80, // 70: livekit.ReconnectResponse.server_info:type_name -> livekit.ServerInfo + 82, // 71: livekit.TrackPublishedResponse.track:type_name -> livekit.TrackInfo + 63, // 72: livekit.SessionDescription.mid_to_track_id:type_name -> livekit.SessionDescription.MidToTrackIdEntry + 78, // 73: livekit.ParticipantUpdate.participants:type_name -> livekit.ParticipantInfo + 83, // 74: livekit.UpdateSubscription.participant_tracks:type_name -> livekit.ParticipantTracks + 64, // 75: livekit.UpdateDataSubscription.updates:type_name -> livekit.UpdateDataSubscription.Update + 84, // 76: livekit.UpdateTrackSettings.quality:type_name -> livekit.VideoQuality + 73, // 77: livekit.UpdateLocalAudioTrack.features:type_name -> livekit.AudioTrackFeature + 85, // 78: livekit.LeaveRequest.reason:type_name -> livekit.DisconnectReason + 3, // 79: livekit.LeaveRequest.action:type_name -> livekit.LeaveRequest.Action + 52, // 80: livekit.LeaveRequest.regions:type_name -> livekit.RegionSettings + 67, // 81: livekit.UpdateVideoLayers.layers:type_name -> livekit.VideoLayer + 65, // 82: livekit.UpdateParticipantMetadata.attributes:type_name -> livekit.UpdateParticipantMetadata.AttributesEntry + 86, // 83: livekit.SpeakersChanged.speakers:type_name -> livekit.SpeakerInfo + 77, // 84: livekit.RoomUpdate.room:type_name -> livekit.Room + 87, // 85: livekit.ConnectionQualityInfo.quality:type_name -> livekit.ConnectionQuality + 34, // 86: livekit.ConnectionQualityUpdate.updates:type_name -> livekit.ConnectionQualityInfo + 1, // 87: livekit.StreamStateInfo.state:type_name -> livekit.StreamState + 36, // 88: livekit.StreamStateUpdate.stream_states:type_name -> livekit.StreamStateInfo + 84, // 89: livekit.SubscribedQuality.quality:type_name -> livekit.VideoQuality + 38, // 90: livekit.SubscribedCodec.qualities:type_name -> livekit.SubscribedQuality + 38, // 91: livekit.SubscribedQualityUpdate.subscribed_qualities:type_name -> livekit.SubscribedQuality + 39, // 92: livekit.SubscribedQualityUpdate.subscribed_codecs:type_name -> livekit.SubscribedCodec + 88, // 93: livekit.SubscribedAudioCodecUpdate.subscribed_audio_codecs:type_name -> livekit.SubscribedAudioCodec + 42, // 94: livekit.SubscriptionPermission.track_permissions:type_name -> livekit.TrackPermission + 77, // 95: livekit.RoomMovedResponse.room:type_name -> livekit.Room + 78, // 96: livekit.RoomMovedResponse.participant:type_name -> livekit.ParticipantInfo + 78, // 97: livekit.RoomMovedResponse.other_participants:type_name -> livekit.ParticipantInfo + 21, // 98: livekit.SyncState.answer:type_name -> livekit.SessionDescription + 23, // 99: livekit.SyncState.subscription:type_name -> livekit.UpdateSubscription + 19, // 100: livekit.SyncState.publish_tracks:type_name -> livekit.TrackPublishedResponse + 48, // 101: livekit.SyncState.data_channels:type_name -> livekit.DataChannelInfo + 21, // 102: livekit.SyncState.offer:type_name -> livekit.SessionDescription + 47, // 103: livekit.SyncState.datachannel_receive_states:type_name -> livekit.DataChannelReceiveState + 11, // 104: livekit.SyncState.publish_data_tracks:type_name -> livekit.PublishDataTrackResponse + 0, // 105: livekit.DataChannelInfo.target:type_name -> livekit.SignalTarget + 2, // 106: livekit.SimulateScenario.switch_candidate_protocol:type_name -> livekit.CandidateProtocol + 53, // 107: livekit.RegionSettings.regions:type_name -> livekit.RegionInfo + 89, // 108: livekit.SubscriptionResponse.err:type_name -> livekit.SubscriptionError + 4, // 109: livekit.RequestResponse.reason:type_name -> livekit.RequestResponse.Reason + 15, // 110: livekit.RequestResponse.trickle:type_name -> livekit.TrickleRequest + 9, // 111: livekit.RequestResponse.add_track:type_name -> livekit.AddTrackRequest + 16, // 112: livekit.RequestResponse.mute:type_name -> livekit.MuteTrackRequest + 30, // 113: livekit.RequestResponse.update_metadata:type_name -> livekit.UpdateParticipantMetadata + 26, // 114: livekit.RequestResponse.update_audio_track:type_name -> livekit.UpdateLocalAudioTrack + 27, // 115: livekit.RequestResponse.update_video_track:type_name -> livekit.UpdateLocalVideoTrack + 10, // 116: livekit.RequestResponse.publish_data_track:type_name -> livekit.PublishDataTrackRequest + 12, // 117: livekit.RequestResponse.unpublish_data_track:type_name -> livekit.UnpublishDataTrackRequest + 90, // 118: livekit.JoinRequest.client_info:type_name -> livekit.ClientInfo + 57, // 119: livekit.JoinRequest.connection_settings:type_name -> livekit.ConnectionSettings + 66, // 120: livekit.JoinRequest.participant_attributes:type_name -> livekit.JoinRequest.ParticipantAttributesEntry + 9, // 121: livekit.JoinRequest.add_track_requests:type_name -> livekit.AddTrackRequest + 21, // 122: livekit.JoinRequest.publisher_offer:type_name -> livekit.SessionDescription + 91, // 123: livekit.JoinRequest.reconnect_reason:type_name -> livekit.ReconnectReason + 46, // 124: livekit.JoinRequest.sync_state:type_name -> livekit.SyncState + 5, // 125: livekit.WrappedJoinRequest.compression:type_name -> livekit.WrappedJoinRequest.Compression + 61, // 126: livekit.DataTrackSubscriberHandles.SubHandlesEntry.value:type_name -> livekit.DataTrackSubscriberHandles.PublishedDataTrack + 92, // 127: livekit.UpdateDataSubscription.Update.options:type_name -> livekit.DataTrackSubscriptionOptions + 128, // [128:128] is the sub-list for method output_type + 128, // [128:128] is the sub-list for method input_type + 128, // [128:128] is the sub-list for extension type_name + 128, // [128:128] is the sub-list for extension extendee + 0, // [0:128] is the sub-list for field type_name } func init() { file_livekit_rtc_proto_init() } @@ -5710,6 +5727,7 @@ func file_livekit_rtc_proto_init() { (*SignalResponse_UnpublishDataTrackResponse)(nil), (*SignalResponse_DataTrackSubscriberHandles)(nil), } + file_livekit_rtc_proto_msgTypes[4].OneofWrappers = []any{} file_livekit_rtc_proto_msgTypes[43].OneofWrappers = []any{ (*SimulateScenario_SpeakerUpdate)(nil), (*SimulateScenario_NodeFailure)(nil), diff --git a/livekit/livekit_sip.pb.go b/livekit/livekit_sip.pb.go index 4704c69e8..c0fbf63b1 100644 --- a/livekit/livekit_sip.pb.go +++ b/livekit/livekit_sip.pb.go @@ -752,7 +752,7 @@ func (x SIPTrunkInfo_TrunkKind) Number() protoreflect.EnumNumber { // Deprecated: Use SIPTrunkInfo_TrunkKind.Descriptor instead. func (SIPTrunkInfo_TrunkKind) EnumDescriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{3, 0} + return file_livekit_sip_proto_rawDescGZIP(), []int{5, 0} } // SIPStatus is returned as an error detail in CreateSIPParticipant. @@ -946,6 +946,120 @@ func (x *CreateSIPTrunkRequest) GetMetadata() string { return "" } +type SIPCodec struct { + state protoimpl.MessageState `protogen:"open.v1"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Rate uint32 `protobuf:"varint,2,opt,name=rate,proto3" json:"rate,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SIPCodec) Reset() { + *x = SIPCodec{} + mi := &file_livekit_sip_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SIPCodec) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SIPCodec) ProtoMessage() {} + +func (x *SIPCodec) ProtoReflect() protoreflect.Message { + mi := &file_livekit_sip_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use SIPCodec.ProtoReflect.Descriptor instead. +func (*SIPCodec) Descriptor() ([]byte, []int) { + return file_livekit_sip_proto_rawDescGZIP(), []int{2} +} + +func (x *SIPCodec) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *SIPCodec) GetRate() uint32 { + if x != nil { + return x.Rate + } + return 0 +} + +type SIPMediaConfig struct { + state protoimpl.MessageState `protogen:"open.v1"` + // if set, ignore the default codecs and use the list below. + OnlyListedCodecs bool `protobuf:"varint,1,opt,name=only_listed_codecs,json=onlyListedCodecs,proto3" json:"only_listed_codecs,omitempty"` + // List of allowed codecs. If only_listed_codecs is not set, this list is added to default codecs. + Codecs []*SIPCodec `protobuf:"bytes,2,rep,name=codecs,proto3" json:"codecs,omitempty"` + Encryption *SIPMediaEncryption `protobuf:"varint,3,opt,name=encryption,proto3,enum=livekit.SIPMediaEncryption,oneof" json:"encryption,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SIPMediaConfig) Reset() { + *x = SIPMediaConfig{} + mi := &file_livekit_sip_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SIPMediaConfig) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SIPMediaConfig) ProtoMessage() {} + +func (x *SIPMediaConfig) ProtoReflect() protoreflect.Message { + mi := &file_livekit_sip_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use SIPMediaConfig.ProtoReflect.Descriptor instead. +func (*SIPMediaConfig) Descriptor() ([]byte, []int) { + return file_livekit_sip_proto_rawDescGZIP(), []int{3} +} + +func (x *SIPMediaConfig) GetOnlyListedCodecs() bool { + if x != nil { + return x.OnlyListedCodecs + } + return false +} + +func (x *SIPMediaConfig) GetCodecs() []*SIPCodec { + if x != nil { + return x.Codecs + } + return nil +} + +func (x *SIPMediaConfig) GetEncryption() SIPMediaEncryption { + if x != nil && x.Encryption != nil { + return *x.Encryption + } + return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE +} + type ProviderInfo struct { state protoimpl.MessageState `protogen:"open.v1"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -958,7 +1072,7 @@ type ProviderInfo struct { func (x *ProviderInfo) Reset() { *x = ProviderInfo{} - mi := &file_livekit_sip_proto_msgTypes[2] + mi := &file_livekit_sip_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -970,7 +1084,7 @@ func (x *ProviderInfo) String() string { func (*ProviderInfo) ProtoMessage() {} func (x *ProviderInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[2] + mi := &file_livekit_sip_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -983,7 +1097,7 @@ func (x *ProviderInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProviderInfo.ProtoReflect.Descriptor instead. func (*ProviderInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{2} + return file_livekit_sip_proto_rawDescGZIP(), []int{4} } func (x *ProviderInfo) GetId() string { @@ -1050,7 +1164,7 @@ type SIPTrunkInfo struct { func (x *SIPTrunkInfo) Reset() { *x = SIPTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[3] + mi := &file_livekit_sip_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1062,7 +1176,7 @@ func (x *SIPTrunkInfo) String() string { func (*SIPTrunkInfo) ProtoMessage() {} func (x *SIPTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[3] + mi := &file_livekit_sip_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1075,7 +1189,7 @@ func (x *SIPTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{3} + return file_livekit_sip_proto_rawDescGZIP(), []int{5} } func (x *SIPTrunkInfo) GetSipTrunkId() string { @@ -1186,7 +1300,7 @@ type CreateSIPInboundTrunkRequest struct { func (x *CreateSIPInboundTrunkRequest) Reset() { *x = CreateSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[4] + mi := &file_livekit_sip_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1198,7 +1312,7 @@ func (x *CreateSIPInboundTrunkRequest) String() string { func (*CreateSIPInboundTrunkRequest) ProtoMessage() {} func (x *CreateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[4] + mi := &file_livekit_sip_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1211,7 +1325,7 @@ func (x *CreateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*CreateSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{4} + return file_livekit_sip_proto_rawDescGZIP(), []int{6} } func (x *CreateSIPInboundTrunkRequest) GetTrunk() *SIPInboundTrunkInfo { @@ -1235,7 +1349,7 @@ type UpdateSIPInboundTrunkRequest struct { func (x *UpdateSIPInboundTrunkRequest) Reset() { *x = UpdateSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[5] + mi := &file_livekit_sip_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1247,7 +1361,7 @@ func (x *UpdateSIPInboundTrunkRequest) String() string { func (*UpdateSIPInboundTrunkRequest) ProtoMessage() {} func (x *UpdateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[5] + mi := &file_livekit_sip_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1260,7 +1374,7 @@ func (x *UpdateSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{5} + return file_livekit_sip_proto_rawDescGZIP(), []int{7} } func (x *UpdateSIPInboundTrunkRequest) GetSipTrunkId() string { @@ -1359,7 +1473,7 @@ type SIPInboundTrunkInfo struct { func (x *SIPInboundTrunkInfo) Reset() { *x = SIPInboundTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[6] + mi := &file_livekit_sip_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1371,7 +1485,7 @@ func (x *SIPInboundTrunkInfo) String() string { func (*SIPInboundTrunkInfo) ProtoMessage() {} func (x *SIPInboundTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[6] + mi := &file_livekit_sip_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1384,7 +1498,7 @@ func (x *SIPInboundTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPInboundTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPInboundTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{6} + return file_livekit_sip_proto_rawDescGZIP(), []int{8} } func (x *SIPInboundTrunkInfo) GetSipTrunkId() string { @@ -1529,7 +1643,7 @@ type SIPInboundTrunkUpdate struct { func (x *SIPInboundTrunkUpdate) Reset() { *x = SIPInboundTrunkUpdate{} - mi := &file_livekit_sip_proto_msgTypes[7] + mi := &file_livekit_sip_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1541,7 +1655,7 @@ func (x *SIPInboundTrunkUpdate) String() string { func (*SIPInboundTrunkUpdate) ProtoMessage() {} func (x *SIPInboundTrunkUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[7] + mi := &file_livekit_sip_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1554,7 +1668,7 @@ func (x *SIPInboundTrunkUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPInboundTrunkUpdate.ProtoReflect.Descriptor instead. func (*SIPInboundTrunkUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{7} + return file_livekit_sip_proto_rawDescGZIP(), []int{9} } func (x *SIPInboundTrunkUpdate) GetNumbers() *ListUpdate { @@ -1622,7 +1736,7 @@ type CreateSIPOutboundTrunkRequest struct { func (x *CreateSIPOutboundTrunkRequest) Reset() { *x = CreateSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[8] + mi := &file_livekit_sip_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1634,7 +1748,7 @@ func (x *CreateSIPOutboundTrunkRequest) String() string { func (*CreateSIPOutboundTrunkRequest) ProtoMessage() {} func (x *CreateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[8] + mi := &file_livekit_sip_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1647,7 +1761,7 @@ func (x *CreateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*CreateSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{8} + return file_livekit_sip_proto_rawDescGZIP(), []int{10} } func (x *CreateSIPOutboundTrunkRequest) GetTrunk() *SIPOutboundTrunkInfo { @@ -1671,7 +1785,7 @@ type UpdateSIPOutboundTrunkRequest struct { func (x *UpdateSIPOutboundTrunkRequest) Reset() { *x = UpdateSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[9] + mi := &file_livekit_sip_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1683,7 +1797,7 @@ func (x *UpdateSIPOutboundTrunkRequest) String() string { func (*UpdateSIPOutboundTrunkRequest) ProtoMessage() {} func (x *UpdateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[9] + mi := &file_livekit_sip_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1696,7 +1810,7 @@ func (x *UpdateSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{9} + return file_livekit_sip_proto_rawDescGZIP(), []int{11} } func (x *UpdateSIPOutboundTrunkRequest) GetSipTrunkId() string { @@ -1796,7 +1910,7 @@ type SIPOutboundTrunkInfo struct { func (x *SIPOutboundTrunkInfo) Reset() { *x = SIPOutboundTrunkInfo{} - mi := &file_livekit_sip_proto_msgTypes[10] + mi := &file_livekit_sip_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1808,7 +1922,7 @@ func (x *SIPOutboundTrunkInfo) String() string { func (*SIPOutboundTrunkInfo) ProtoMessage() {} func (x *SIPOutboundTrunkInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[10] + mi := &file_livekit_sip_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1821,7 +1935,7 @@ func (x *SIPOutboundTrunkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundTrunkInfo.ProtoReflect.Descriptor instead. func (*SIPOutboundTrunkInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{10} + return file_livekit_sip_proto_rawDescGZIP(), []int{12} } func (x *SIPOutboundTrunkInfo) GetSipTrunkId() string { @@ -1961,7 +2075,7 @@ type SIPOutboundTrunkUpdate struct { func (x *SIPOutboundTrunkUpdate) Reset() { *x = SIPOutboundTrunkUpdate{} - mi := &file_livekit_sip_proto_msgTypes[11] + mi := &file_livekit_sip_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1973,7 +2087,7 @@ func (x *SIPOutboundTrunkUpdate) String() string { func (*SIPOutboundTrunkUpdate) ProtoMessage() {} func (x *SIPOutboundTrunkUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[11] + mi := &file_livekit_sip_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1986,7 +2100,7 @@ func (x *SIPOutboundTrunkUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundTrunkUpdate.ProtoReflect.Descriptor instead. func (*SIPOutboundTrunkUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{11} + return file_livekit_sip_proto_rawDescGZIP(), []int{13} } func (x *SIPOutboundTrunkUpdate) GetAddress() string { @@ -2068,7 +2182,7 @@ type GetSIPInboundTrunkRequest struct { func (x *GetSIPInboundTrunkRequest) Reset() { *x = GetSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[12] + mi := &file_livekit_sip_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2080,7 +2194,7 @@ func (x *GetSIPInboundTrunkRequest) String() string { func (*GetSIPInboundTrunkRequest) ProtoMessage() {} func (x *GetSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[12] + mi := &file_livekit_sip_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2093,7 +2207,7 @@ func (x *GetSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*GetSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{12} + return file_livekit_sip_proto_rawDescGZIP(), []int{14} } func (x *GetSIPInboundTrunkRequest) GetSipTrunkId() string { @@ -2112,7 +2226,7 @@ type GetSIPInboundTrunkResponse struct { func (x *GetSIPInboundTrunkResponse) Reset() { *x = GetSIPInboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[13] + mi := &file_livekit_sip_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2124,7 +2238,7 @@ func (x *GetSIPInboundTrunkResponse) String() string { func (*GetSIPInboundTrunkResponse) ProtoMessage() {} func (x *GetSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[13] + mi := &file_livekit_sip_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2137,7 +2251,7 @@ func (x *GetSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPInboundTrunkResponse.ProtoReflect.Descriptor instead. func (*GetSIPInboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{13} + return file_livekit_sip_proto_rawDescGZIP(), []int{15} } func (x *GetSIPInboundTrunkResponse) GetTrunk() *SIPInboundTrunkInfo { @@ -2156,7 +2270,7 @@ type GetSIPOutboundTrunkRequest struct { func (x *GetSIPOutboundTrunkRequest) Reset() { *x = GetSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[14] + mi := &file_livekit_sip_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2168,7 +2282,7 @@ func (x *GetSIPOutboundTrunkRequest) String() string { func (*GetSIPOutboundTrunkRequest) ProtoMessage() {} func (x *GetSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[14] + mi := &file_livekit_sip_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2181,7 +2295,7 @@ func (x *GetSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*GetSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{14} + return file_livekit_sip_proto_rawDescGZIP(), []int{16} } func (x *GetSIPOutboundTrunkRequest) GetSipTrunkId() string { @@ -2200,7 +2314,7 @@ type GetSIPOutboundTrunkResponse struct { func (x *GetSIPOutboundTrunkResponse) Reset() { *x = GetSIPOutboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[15] + mi := &file_livekit_sip_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2212,7 +2326,7 @@ func (x *GetSIPOutboundTrunkResponse) String() string { func (*GetSIPOutboundTrunkResponse) ProtoMessage() {} func (x *GetSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[15] + mi := &file_livekit_sip_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2225,7 +2339,7 @@ func (x *GetSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSIPOutboundTrunkResponse.ProtoReflect.Descriptor instead. func (*GetSIPOutboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{15} + return file_livekit_sip_proto_rawDescGZIP(), []int{17} } func (x *GetSIPOutboundTrunkResponse) GetTrunk() *SIPOutboundTrunkInfo { @@ -2245,7 +2359,7 @@ type ListSIPTrunkRequest struct { func (x *ListSIPTrunkRequest) Reset() { *x = ListSIPTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[16] + mi := &file_livekit_sip_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2257,7 +2371,7 @@ func (x *ListSIPTrunkRequest) String() string { func (*ListSIPTrunkRequest) ProtoMessage() {} func (x *ListSIPTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[16] + mi := &file_livekit_sip_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2270,7 +2384,7 @@ func (x *ListSIPTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{16} + return file_livekit_sip_proto_rawDescGZIP(), []int{18} } func (x *ListSIPTrunkRequest) GetPage() *Pagination { @@ -2290,7 +2404,7 @@ type ListSIPTrunkResponse struct { func (x *ListSIPTrunkResponse) Reset() { *x = ListSIPTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[17] + mi := &file_livekit_sip_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2302,7 +2416,7 @@ func (x *ListSIPTrunkResponse) String() string { func (*ListSIPTrunkResponse) ProtoMessage() {} func (x *ListSIPTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[17] + mi := &file_livekit_sip_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2315,7 +2429,7 @@ func (x *ListSIPTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{17} + return file_livekit_sip_proto_rawDescGZIP(), []int{19} } func (x *ListSIPTrunkResponse) GetItems() []*SIPTrunkInfo { @@ -2340,7 +2454,7 @@ type ListSIPInboundTrunkRequest struct { func (x *ListSIPInboundTrunkRequest) Reset() { *x = ListSIPInboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[18] + mi := &file_livekit_sip_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2352,7 +2466,7 @@ func (x *ListSIPInboundTrunkRequest) String() string { func (*ListSIPInboundTrunkRequest) ProtoMessage() {} func (x *ListSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[18] + mi := &file_livekit_sip_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2365,7 +2479,7 @@ func (x *ListSIPInboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPInboundTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPInboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{18} + return file_livekit_sip_proto_rawDescGZIP(), []int{20} } func (x *ListSIPInboundTrunkRequest) GetPage() *Pagination { @@ -2398,7 +2512,7 @@ type ListSIPInboundTrunkResponse struct { func (x *ListSIPInboundTrunkResponse) Reset() { *x = ListSIPInboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[19] + mi := &file_livekit_sip_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2410,7 +2524,7 @@ func (x *ListSIPInboundTrunkResponse) String() string { func (*ListSIPInboundTrunkResponse) ProtoMessage() {} func (x *ListSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[19] + mi := &file_livekit_sip_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2423,7 +2537,7 @@ func (x *ListSIPInboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPInboundTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPInboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{19} + return file_livekit_sip_proto_rawDescGZIP(), []int{21} } func (x *ListSIPInboundTrunkResponse) GetItems() []*SIPInboundTrunkInfo { @@ -2448,7 +2562,7 @@ type ListSIPOutboundTrunkRequest struct { func (x *ListSIPOutboundTrunkRequest) Reset() { *x = ListSIPOutboundTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[20] + mi := &file_livekit_sip_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2460,7 +2574,7 @@ func (x *ListSIPOutboundTrunkRequest) String() string { func (*ListSIPOutboundTrunkRequest) ProtoMessage() {} func (x *ListSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[20] + mi := &file_livekit_sip_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2473,7 +2587,7 @@ func (x *ListSIPOutboundTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPOutboundTrunkRequest.ProtoReflect.Descriptor instead. func (*ListSIPOutboundTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{20} + return file_livekit_sip_proto_rawDescGZIP(), []int{22} } func (x *ListSIPOutboundTrunkRequest) GetPage() *Pagination { @@ -2506,7 +2620,7 @@ type ListSIPOutboundTrunkResponse struct { func (x *ListSIPOutboundTrunkResponse) Reset() { *x = ListSIPOutboundTrunkResponse{} - mi := &file_livekit_sip_proto_msgTypes[21] + mi := &file_livekit_sip_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2518,7 +2632,7 @@ func (x *ListSIPOutboundTrunkResponse) String() string { func (*ListSIPOutboundTrunkResponse) ProtoMessage() {} func (x *ListSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[21] + mi := &file_livekit_sip_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2531,7 +2645,7 @@ func (x *ListSIPOutboundTrunkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPOutboundTrunkResponse.ProtoReflect.Descriptor instead. func (*ListSIPOutboundTrunkResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{21} + return file_livekit_sip_proto_rawDescGZIP(), []int{23} } func (x *ListSIPOutboundTrunkResponse) GetItems() []*SIPOutboundTrunkInfo { @@ -2550,7 +2664,7 @@ type DeleteSIPTrunkRequest struct { func (x *DeleteSIPTrunkRequest) Reset() { *x = DeleteSIPTrunkRequest{} - mi := &file_livekit_sip_proto_msgTypes[22] + mi := &file_livekit_sip_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2562,7 +2676,7 @@ func (x *DeleteSIPTrunkRequest) String() string { func (*DeleteSIPTrunkRequest) ProtoMessage() {} func (x *DeleteSIPTrunkRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[22] + mi := &file_livekit_sip_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2575,7 +2689,7 @@ func (x *DeleteSIPTrunkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSIPTrunkRequest.ProtoReflect.Descriptor instead. func (*DeleteSIPTrunkRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{22} + return file_livekit_sip_proto_rawDescGZIP(), []int{24} } func (x *DeleteSIPTrunkRequest) GetSipTrunkId() string { @@ -2597,7 +2711,7 @@ type SIPDispatchRuleDirect struct { func (x *SIPDispatchRuleDirect) Reset() { *x = SIPDispatchRuleDirect{} - mi := &file_livekit_sip_proto_msgTypes[23] + mi := &file_livekit_sip_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2609,7 +2723,7 @@ func (x *SIPDispatchRuleDirect) String() string { func (*SIPDispatchRuleDirect) ProtoMessage() {} func (x *SIPDispatchRuleDirect) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[23] + mi := &file_livekit_sip_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2622,7 +2736,7 @@ func (x *SIPDispatchRuleDirect) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleDirect.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleDirect) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{23} + return file_livekit_sip_proto_rawDescGZIP(), []int{25} } func (x *SIPDispatchRuleDirect) GetRoomName() string { @@ -2653,7 +2767,7 @@ type SIPDispatchRuleIndividual struct { func (x *SIPDispatchRuleIndividual) Reset() { *x = SIPDispatchRuleIndividual{} - mi := &file_livekit_sip_proto_msgTypes[24] + mi := &file_livekit_sip_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2665,7 +2779,7 @@ func (x *SIPDispatchRuleIndividual) String() string { func (*SIPDispatchRuleIndividual) ProtoMessage() {} func (x *SIPDispatchRuleIndividual) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[24] + mi := &file_livekit_sip_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2678,7 +2792,7 @@ func (x *SIPDispatchRuleIndividual) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleIndividual.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleIndividual) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{24} + return file_livekit_sip_proto_rawDescGZIP(), []int{26} } func (x *SIPDispatchRuleIndividual) GetRoomPrefix() string { @@ -2716,7 +2830,7 @@ type SIPDispatchRuleCallee struct { func (x *SIPDispatchRuleCallee) Reset() { *x = SIPDispatchRuleCallee{} - mi := &file_livekit_sip_proto_msgTypes[25] + mi := &file_livekit_sip_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2728,7 +2842,7 @@ func (x *SIPDispatchRuleCallee) String() string { func (*SIPDispatchRuleCallee) ProtoMessage() {} func (x *SIPDispatchRuleCallee) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[25] + mi := &file_livekit_sip_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2741,7 +2855,7 @@ func (x *SIPDispatchRuleCallee) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleCallee.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleCallee) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{25} + return file_livekit_sip_proto_rawDescGZIP(), []int{27} } func (x *SIPDispatchRuleCallee) GetRoomPrefix() string { @@ -2779,7 +2893,7 @@ type SIPDispatchRule struct { func (x *SIPDispatchRule) Reset() { *x = SIPDispatchRule{} - mi := &file_livekit_sip_proto_msgTypes[26] + mi := &file_livekit_sip_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2791,7 +2905,7 @@ func (x *SIPDispatchRule) String() string { func (*SIPDispatchRule) ProtoMessage() {} func (x *SIPDispatchRule) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[26] + mi := &file_livekit_sip_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2804,7 +2918,7 @@ func (x *SIPDispatchRule) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRule.ProtoReflect.Descriptor instead. func (*SIPDispatchRule) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{26} + return file_livekit_sip_proto_rawDescGZIP(), []int{28} } func (x *SIPDispatchRule) GetRule() isSIPDispatchRule_Rule { @@ -2915,7 +3029,7 @@ type CreateSIPDispatchRuleRequest struct { func (x *CreateSIPDispatchRuleRequest) Reset() { *x = CreateSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[27] + mi := &file_livekit_sip_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2927,7 +3041,7 @@ func (x *CreateSIPDispatchRuleRequest) String() string { func (*CreateSIPDispatchRuleRequest) ProtoMessage() {} func (x *CreateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[27] + mi := &file_livekit_sip_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2940,7 +3054,7 @@ func (x *CreateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*CreateSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{27} + return file_livekit_sip_proto_rawDescGZIP(), []int{29} } func (x *CreateSIPDispatchRuleRequest) GetDispatchRule() *SIPDispatchRuleInfo { @@ -3036,7 +3150,7 @@ type UpdateSIPDispatchRuleRequest struct { func (x *UpdateSIPDispatchRuleRequest) Reset() { *x = UpdateSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[28] + mi := &file_livekit_sip_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3048,7 +3162,7 @@ func (x *UpdateSIPDispatchRuleRequest) String() string { func (*UpdateSIPDispatchRuleRequest) ProtoMessage() {} func (x *UpdateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[28] + mi := &file_livekit_sip_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3061,7 +3175,7 @@ func (x *UpdateSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*UpdateSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{28} + return file_livekit_sip_proto_rawDescGZIP(), []int{30} } func (x *UpdateSIPDispatchRuleRequest) GetSipDispatchRuleId() string { @@ -3133,8 +3247,10 @@ type SIPDispatchRuleInfo struct { // Cloud-only, config preset to use RoomPreset string `protobuf:"bytes,9,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` // RoomConfiguration to use if the participant initiates the room - RoomConfig *RoomConfiguration `protobuf:"bytes,10,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` - KrispEnabled bool `protobuf:"varint,11,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + RoomConfig *RoomConfiguration `protobuf:"bytes,10,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,16,opt,name=media,proto3" json:"media,omitempty"` + KrispEnabled bool `protobuf:"varint,11,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + // Deprecated: Marked as deprecated in livekit_sip.proto. MediaEncryption SIPMediaEncryption `protobuf:"varint,12,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` CreatedAt *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` @@ -3144,7 +3260,7 @@ type SIPDispatchRuleInfo struct { func (x *SIPDispatchRuleInfo) Reset() { *x = SIPDispatchRuleInfo{} - mi := &file_livekit_sip_proto_msgTypes[29] + mi := &file_livekit_sip_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3156,7 +3272,7 @@ func (x *SIPDispatchRuleInfo) String() string { func (*SIPDispatchRuleInfo) ProtoMessage() {} func (x *SIPDispatchRuleInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[29] + mi := &file_livekit_sip_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3169,7 +3285,7 @@ func (x *SIPDispatchRuleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleInfo.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{29} + return file_livekit_sip_proto_rawDescGZIP(), []int{31} } func (x *SIPDispatchRuleInfo) GetSipDispatchRuleId() string { @@ -3249,6 +3365,13 @@ func (x *SIPDispatchRuleInfo) GetRoomConfig() *RoomConfiguration { return nil } +func (x *SIPDispatchRuleInfo) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *SIPDispatchRuleInfo) GetKrispEnabled() bool { if x != nil { return x.KrispEnabled @@ -3256,6 +3379,7 @@ func (x *SIPDispatchRuleInfo) GetKrispEnabled() bool { return false } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *SIPDispatchRuleInfo) GetMediaEncryption() SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -3278,20 +3402,22 @@ func (x *SIPDispatchRuleInfo) GetUpdatedAt() *timestamppb.Timestamp { } type SIPDispatchRuleUpdate struct { - state protoimpl.MessageState `protogen:"open.v1"` - TrunkIds *ListUpdate `protobuf:"bytes,1,opt,name=trunk_ids,json=trunkIds,proto3" json:"trunk_ids,omitempty"` - Rule *SIPDispatchRule `protobuf:"bytes,2,opt,name=rule,proto3" json:"rule,omitempty"` - Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"` - Metadata *string `protobuf:"bytes,4,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"` - Attributes map[string]string `protobuf:"bytes,5,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` - MediaEncryption *SIPMediaEncryption `protobuf:"varint,6,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption,oneof" json:"media_encryption,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + TrunkIds *ListUpdate `protobuf:"bytes,1,opt,name=trunk_ids,json=trunkIds,proto3" json:"trunk_ids,omitempty"` + Rule *SIPDispatchRule `protobuf:"bytes,2,opt,name=rule,proto3" json:"rule,omitempty"` + Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"` + Metadata *string `protobuf:"bytes,4,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"` + Attributes map[string]string `protobuf:"bytes,5,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + // Deprecated: Marked as deprecated in livekit_sip.proto. + MediaEncryption *SIPMediaEncryption `protobuf:"varint,6,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption,oneof" json:"media_encryption,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,7,opt,name=media,proto3" json:"media,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SIPDispatchRuleUpdate) Reset() { *x = SIPDispatchRuleUpdate{} - mi := &file_livekit_sip_proto_msgTypes[30] + mi := &file_livekit_sip_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3303,7 +3429,7 @@ func (x *SIPDispatchRuleUpdate) String() string { func (*SIPDispatchRuleUpdate) ProtoMessage() {} func (x *SIPDispatchRuleUpdate) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[30] + mi := &file_livekit_sip_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3316,7 +3442,7 @@ func (x *SIPDispatchRuleUpdate) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPDispatchRuleUpdate.ProtoReflect.Descriptor instead. func (*SIPDispatchRuleUpdate) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{30} + return file_livekit_sip_proto_rawDescGZIP(), []int{32} } func (x *SIPDispatchRuleUpdate) GetTrunkIds() *ListUpdate { @@ -3354,6 +3480,7 @@ func (x *SIPDispatchRuleUpdate) GetAttributes() map[string]string { return nil } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *SIPDispatchRuleUpdate) GetMediaEncryption() SIPMediaEncryption { if x != nil && x.MediaEncryption != nil { return *x.MediaEncryption @@ -3361,6 +3488,13 @@ func (x *SIPDispatchRuleUpdate) GetMediaEncryption() SIPMediaEncryption { return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE } +func (x *SIPDispatchRuleUpdate) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + // ListSIPDispatchRuleRequest lists dispatch rules for given filters. If no filters are set, all rules are listed. type ListSIPDispatchRuleRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -3376,7 +3510,7 @@ type ListSIPDispatchRuleRequest struct { func (x *ListSIPDispatchRuleRequest) Reset() { *x = ListSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[31] + mi := &file_livekit_sip_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3388,7 +3522,7 @@ func (x *ListSIPDispatchRuleRequest) String() string { func (*ListSIPDispatchRuleRequest) ProtoMessage() {} func (x *ListSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[31] + mi := &file_livekit_sip_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3401,7 +3535,7 @@ func (x *ListSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*ListSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{31} + return file_livekit_sip_proto_rawDescGZIP(), []int{33} } func (x *ListSIPDispatchRuleRequest) GetPage() *Pagination { @@ -3434,7 +3568,7 @@ type ListSIPDispatchRuleResponse struct { func (x *ListSIPDispatchRuleResponse) Reset() { *x = ListSIPDispatchRuleResponse{} - mi := &file_livekit_sip_proto_msgTypes[32] + mi := &file_livekit_sip_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3446,7 +3580,7 @@ func (x *ListSIPDispatchRuleResponse) String() string { func (*ListSIPDispatchRuleResponse) ProtoMessage() {} func (x *ListSIPDispatchRuleResponse) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[32] + mi := &file_livekit_sip_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3459,7 +3593,7 @@ func (x *ListSIPDispatchRuleResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListSIPDispatchRuleResponse.ProtoReflect.Descriptor instead. func (*ListSIPDispatchRuleResponse) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{32} + return file_livekit_sip_proto_rawDescGZIP(), []int{34} } func (x *ListSIPDispatchRuleResponse) GetItems() []*SIPDispatchRuleInfo { @@ -3478,7 +3612,7 @@ type DeleteSIPDispatchRuleRequest struct { func (x *DeleteSIPDispatchRuleRequest) Reset() { *x = DeleteSIPDispatchRuleRequest{} - mi := &file_livekit_sip_proto_msgTypes[33] + mi := &file_livekit_sip_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3490,7 +3624,7 @@ func (x *DeleteSIPDispatchRuleRequest) String() string { func (*DeleteSIPDispatchRuleRequest) ProtoMessage() {} func (x *DeleteSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[33] + mi := &file_livekit_sip_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3503,7 +3637,7 @@ func (x *DeleteSIPDispatchRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSIPDispatchRuleRequest.ProtoReflect.Descriptor instead. func (*DeleteSIPDispatchRuleRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{33} + return file_livekit_sip_proto_rawDescGZIP(), []int{35} } func (x *DeleteSIPDispatchRuleRequest) GetSipDispatchRuleId() string { @@ -3539,7 +3673,7 @@ type SIPOutboundConfig struct { func (x *SIPOutboundConfig) Reset() { *x = SIPOutboundConfig{} - mi := &file_livekit_sip_proto_msgTypes[34] + mi := &file_livekit_sip_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3551,7 +3685,7 @@ func (x *SIPOutboundConfig) String() string { func (*SIPOutboundConfig) ProtoMessage() {} func (x *SIPOutboundConfig) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[34] + mi := &file_livekit_sip_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3564,7 +3698,7 @@ func (x *SIPOutboundConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPOutboundConfig.ProtoReflect.Descriptor instead. func (*SIPOutboundConfig) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{34} + return file_livekit_sip_proto_rawDescGZIP(), []int{36} } func (x *SIPOutboundConfig) GetHostname() string { @@ -3669,8 +3803,10 @@ type CreateSIPParticipantRequest struct { // Max call duration. MaxCallDuration *durationpb.Duration `protobuf:"bytes,12,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` // Enable voice isolation for the callee. - KrispEnabled bool `protobuf:"varint,14,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + KrispEnabled bool `protobuf:"varint,14,opt,name=krisp_enabled,json=krispEnabled,proto3" json:"krisp_enabled,omitempty"` + // Deprecated: Marked as deprecated in livekit_sip.proto. MediaEncryption SIPMediaEncryption `protobuf:"varint,18,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *SIPMediaConfig `protobuf:"bytes,23,opt,name=media,proto3" json:"media,omitempty"` // Wait for the answer for the call before returning. WaitUntilAnswered bool `protobuf:"varint,19,opt,name=wait_until_answered,json=waitUntilAnswered,proto3" json:"wait_until_answered,omitempty"` // Optional display name for the 'From' SIP header. @@ -3680,14 +3816,14 @@ type CreateSIPParticipantRequest struct { // 2) Empty string: Do not send a display name, which will result in a CNAM lookup downstream. // 3) Non-empty: Use the specified value as the display name. DisplayName *string `protobuf:"bytes,21,opt,name=display_name,json=displayName,proto3,oneof" json:"display_name,omitempty"` - Destination *Destination `protobuf:"bytes,22,opt,name=destination,proto3,oneof" json:"destination,omitempty"` // NEXT ID: 23 + Destination *Destination `protobuf:"bytes,22,opt,name=destination,proto3,oneof" json:"destination,omitempty"` // NEXT ID: 24 unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CreateSIPParticipantRequest) Reset() { *x = CreateSIPParticipantRequest{} - mi := &file_livekit_sip_proto_msgTypes[35] + mi := &file_livekit_sip_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3699,7 +3835,7 @@ func (x *CreateSIPParticipantRequest) String() string { func (*CreateSIPParticipantRequest) ProtoMessage() {} func (x *CreateSIPParticipantRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[35] + mi := &file_livekit_sip_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3712,7 +3848,7 @@ func (x *CreateSIPParticipantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSIPParticipantRequest.ProtoReflect.Descriptor instead. func (*CreateSIPParticipantRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{35} + return file_livekit_sip_proto_rawDescGZIP(), []int{37} } func (x *CreateSIPParticipantRequest) GetSipTrunkId() string { @@ -3842,6 +3978,7 @@ func (x *CreateSIPParticipantRequest) GetKrispEnabled() bool { return false } +// Deprecated: Marked as deprecated in livekit_sip.proto. func (x *CreateSIPParticipantRequest) GetMediaEncryption() SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -3849,6 +3986,13 @@ func (x *CreateSIPParticipantRequest) GetMediaEncryption() SIPMediaEncryption { return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE } +func (x *CreateSIPParticipantRequest) GetMedia() *SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *CreateSIPParticipantRequest) GetWaitUntilAnswered() bool { if x != nil { return x.WaitUntilAnswered @@ -3882,7 +4026,7 @@ type SIPParticipantInfo struct { func (x *SIPParticipantInfo) Reset() { *x = SIPParticipantInfo{} - mi := &file_livekit_sip_proto_msgTypes[36] + mi := &file_livekit_sip_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3894,7 +4038,7 @@ func (x *SIPParticipantInfo) String() string { func (*SIPParticipantInfo) ProtoMessage() {} func (x *SIPParticipantInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[36] + mi := &file_livekit_sip_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3907,7 +4051,7 @@ func (x *SIPParticipantInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPParticipantInfo.ProtoReflect.Descriptor instead. func (*SIPParticipantInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{36} + return file_livekit_sip_proto_rawDescGZIP(), []int{38} } func (x *SIPParticipantInfo) GetParticipantId() string { @@ -3955,7 +4099,7 @@ type TransferSIPParticipantRequest struct { func (x *TransferSIPParticipantRequest) Reset() { *x = TransferSIPParticipantRequest{} - mi := &file_livekit_sip_proto_msgTypes[37] + mi := &file_livekit_sip_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3967,7 +4111,7 @@ func (x *TransferSIPParticipantRequest) String() string { func (*TransferSIPParticipantRequest) ProtoMessage() {} func (x *TransferSIPParticipantRequest) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[37] + mi := &file_livekit_sip_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3980,7 +4124,7 @@ func (x *TransferSIPParticipantRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TransferSIPParticipantRequest.ProtoReflect.Descriptor instead. func (*TransferSIPParticipantRequest) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{37} + return file_livekit_sip_proto_rawDescGZIP(), []int{39} } func (x *TransferSIPParticipantRequest) GetParticipantIdentity() string { @@ -4064,7 +4208,7 @@ type SIPCallInfo struct { func (x *SIPCallInfo) Reset() { *x = SIPCallInfo{} - mi := &file_livekit_sip_proto_msgTypes[38] + mi := &file_livekit_sip_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4076,7 +4220,7 @@ func (x *SIPCallInfo) String() string { func (*SIPCallInfo) ProtoMessage() {} func (x *SIPCallInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[38] + mi := &file_livekit_sip_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4089,7 +4233,7 @@ func (x *SIPCallInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPCallInfo.ProtoReflect.Descriptor instead. func (*SIPCallInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{38} + return file_livekit_sip_proto_rawDescGZIP(), []int{40} } func (x *SIPCallInfo) GetCallId() string { @@ -4307,7 +4451,7 @@ type SIPTransferInfo struct { func (x *SIPTransferInfo) Reset() { *x = SIPTransferInfo{} - mi := &file_livekit_sip_proto_msgTypes[39] + mi := &file_livekit_sip_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4319,7 +4463,7 @@ func (x *SIPTransferInfo) String() string { func (*SIPTransferInfo) ProtoMessage() {} func (x *SIPTransferInfo) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[39] + mi := &file_livekit_sip_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4332,7 +4476,7 @@ func (x *SIPTransferInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPTransferInfo.ProtoReflect.Descriptor instead. func (*SIPTransferInfo) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{39} + return file_livekit_sip_proto_rawDescGZIP(), []int{41} } func (x *SIPTransferInfo) GetTransferId() string { @@ -4404,7 +4548,7 @@ type SIPUri struct { func (x *SIPUri) Reset() { *x = SIPUri{} - mi := &file_livekit_sip_proto_msgTypes[40] + mi := &file_livekit_sip_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4416,7 +4560,7 @@ func (x *SIPUri) String() string { func (*SIPUri) ProtoMessage() {} func (x *SIPUri) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[40] + mi := &file_livekit_sip_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4429,7 +4573,7 @@ func (x *SIPUri) ProtoReflect() protoreflect.Message { // Deprecated: Use SIPUri.ProtoReflect.Descriptor instead. func (*SIPUri) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{40} + return file_livekit_sip_proto_rawDescGZIP(), []int{42} } func (x *SIPUri) GetUser() string { @@ -4478,7 +4622,7 @@ type Destination struct { func (x *Destination) Reset() { *x = Destination{} - mi := &file_livekit_sip_proto_msgTypes[41] + mi := &file_livekit_sip_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4490,7 +4634,7 @@ func (x *Destination) String() string { func (*Destination) ProtoMessage() {} func (x *Destination) ProtoReflect() protoreflect.Message { - mi := &file_livekit_sip_proto_msgTypes[41] + mi := &file_livekit_sip_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4503,7 +4647,7 @@ func (x *Destination) ProtoReflect() protoreflect.Message { // Deprecated: Use Destination.ProtoReflect.Descriptor instead. func (*Destination) Descriptor() ([]byte, []int) { - return file_livekit_sip_proto_rawDescGZIP(), []int{41} + return file_livekit_sip_proto_rawDescGZIP(), []int{43} } func (x *Destination) GetCity() string { @@ -4547,7 +4691,17 @@ const file_livekit_sip_proto_rawDesc = "" + "\x11outbound_password\x18\b \x01(\tB\x03\xa8P\x01R\x10outboundPassword\x12\x12\n" + "\x04name\x18\n" + " \x01(\tR\x04name\x12@\n" + - "\bmetadata\x18\v \x01(\tB$\xa8P\x01\xb2P\x1eR\bmetadata:\x02\x18\x01\"\x88\x01\n" + + "\bmetadata\x18\v \x01(\tB$\xa8P\x01\xb2P\x1eR\bmetadata:\x02\x18\x01\"2\n" + + "\bSIPCodec\x12\x12\n" + + "\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n" + + "\x04rate\x18\x02 \x01(\rR\x04rate\"\xba\x01\n" + + "\x0eSIPMediaConfig\x12,\n" + + "\x12only_listed_codecs\x18\x01 \x01(\bR\x10onlyListedCodecs\x12)\n" + + "\x06codecs\x18\x02 \x03(\v2\x11.livekit.SIPCodecR\x06codecs\x12@\n" + + "\n" + + "encryption\x18\x03 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionH\x00R\n" + + "encryption\x88\x01\x01B\r\n" + + "\v_encryption\"\x88\x01\n" + "\fProviderInfo\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n" + "\x04name\x18\x02 \x01(\tR\x04name\x12)\n" + @@ -4770,7 +4924,7 @@ const file_livekit_sip_proto_rawDesc = "" + "\x14sip_dispatch_rule_id\x18\x01 \x01(\tB\x14\xbaP\x11sipDispatchRuleIDR\x11sipDispatchRuleId\x128\n" + "\areplace\x18\x02 \x01(\v2\x1c.livekit.SIPDispatchRuleInfoH\x00R\areplace\x128\n" + "\x06update\x18\x03 \x01(\v2\x1e.livekit.SIPDispatchRuleUpdateH\x00R\x06updateB\b\n" + - "\x06action\"\xe0\x06\n" + + "\x06action\"\x93\a\n" + "\x13SIPDispatchRuleInfo\x12E\n" + "\x14sip_dispatch_rule_id\x18\x01 \x01(\tB\x14\xbaP\x11sipDispatchRuleIDR\x11sipDispatchRuleId\x12,\n" + "\x04rule\x18\x02 \x01(\v2\x18.livekit.SIPDispatchRuleR\x04rule\x12\x1b\n" + @@ -4787,16 +4941,17 @@ const file_livekit_sip_proto_rawDesc = "" + "roomPreset\x12;\n" + "\vroom_config\x18\n" + " \x01(\v2\x1a.livekit.RoomConfigurationR\n" + - "roomConfig\x12#\n" + - "\rkrisp_enabled\x18\v \x01(\bR\fkrispEnabled\x12F\n" + - "\x10media_encryption\x18\f \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x129\n" + + "roomConfig\x12-\n" + + "\x05media\x18\x10 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12#\n" + + "\rkrisp_enabled\x18\v \x01(\bR\fkrispEnabled\x12J\n" + + "\x10media_encryption\x18\f \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x129\n" + "\n" + "created_at\x18\x0e \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n" + "\n" + "updated_at\x18\x0f \x01(\v2\x1a.google.protobuf.TimestampR\tupdatedAt\x1a=\n" + "\x0fAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x84\x04\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xb7\x04\n" + "\x15SIPDispatchRuleUpdate\x120\n" + "\ttrunk_ids\x18\x01 \x01(\v2\x13.livekit.ListUpdateR\btrunkIds\x12,\n" + "\x04rule\x18\x02 \x01(\v2\x18.livekit.SIPDispatchRuleR\x04rule\x12\x17\n" + @@ -4804,8 +4959,9 @@ const file_livekit_sip_proto_rawDesc = "" + "\bmetadata\x18\x04 \x01(\tB$\xa8P\x01\xb2P\x1eH\x01R\bmetadata\x88\x01\x01\x12t\n" + "\n" + "attributes\x18\x05 \x03(\v2..livekit.SIPDispatchRuleUpdate.AttributesEntryB$\xa8P\x01\xb2P\x1eR\n" + - "attributes\x12K\n" + - "\x10media_encryption\x18\x06 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionH\x02R\x0fmediaEncryption\x88\x01\x01\x1a=\n" + + "attributes\x12O\n" + + "\x10media_encryption\x18\x06 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01H\x02R\x0fmediaEncryption\x88\x01\x01\x12-\n" + + "\x05media\x18\a \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x1a=\n" + "\x0fAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\a\n" + @@ -4834,7 +4990,7 @@ const file_livekit_sip_proto_rawDesc = "" + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1aF\n" + "\x18AttributesToHeadersEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xf7\v\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xaa\f\n" + "\x1bCreateSIPParticipantRequest\x12/\n" + "\fsip_trunk_id\x18\x01 \x01(\tB\r\xbaP\n" + "sipTrunkIDR\n" + @@ -4857,8 +5013,9 @@ const file_livekit_sip_proto_rawDesc = "" + "\x0finclude_headers\x18\x11 \x01(\x0e2\x19.livekit.SIPHeaderOptionsR\x0eincludeHeaders\x12B\n" + "\x0fringing_timeout\x18\v \x01(\v2\x19.google.protobuf.DurationR\x0eringingTimeout\x12E\n" + "\x11max_call_duration\x18\f \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12#\n" + - "\rkrisp_enabled\x18\x0e \x01(\bR\fkrispEnabled\x12F\n" + - "\x10media_encryption\x18\x12 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12.\n" + + "\rkrisp_enabled\x18\x0e \x01(\bR\fkrispEnabled\x12J\n" + + "\x10media_encryption\x18\x12 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\x17 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12.\n" + "\x13wait_until_answered\x18\x13 \x01(\bR\x11waitUntilAnswered\x12L\n" + "\fdisplay_name\x18\x15 \x01(\tB$\xa8P\x01\xb2P\x1eH\x00R\vdisplayName\x88\x01\x01\x12;\n" + "\vdestination\x18\x16 \x01(\v2\x14.livekit.DestinationH\x01R\vdestination\x88\x01\x01\x1aH\n" + @@ -5090,7 +5247,7 @@ func file_livekit_sip_proto_rawDescGZIP() []byte { } var file_livekit_sip_proto_enumTypes = make([]protoimpl.EnumInfo, 10) -var file_livekit_sip_proto_msgTypes = make([]protoimpl.MessageInfo, 57) +var file_livekit_sip_proto_msgTypes = make([]protoimpl.MessageInfo, 59) var file_livekit_sip_proto_goTypes = []any{ (SIPStatusCode)(0), // 0: livekit.SIPStatusCode (SIPTransport)(0), // 1: livekit.SIPTransport @@ -5104,197 +5261,204 @@ var file_livekit_sip_proto_goTypes = []any{ (SIPTrunkInfo_TrunkKind)(0), // 9: livekit.SIPTrunkInfo.TrunkKind (*SIPStatus)(nil), // 10: livekit.SIPStatus (*CreateSIPTrunkRequest)(nil), // 11: livekit.CreateSIPTrunkRequest - (*ProviderInfo)(nil), // 12: livekit.ProviderInfo - (*SIPTrunkInfo)(nil), // 13: livekit.SIPTrunkInfo - (*CreateSIPInboundTrunkRequest)(nil), // 14: livekit.CreateSIPInboundTrunkRequest - (*UpdateSIPInboundTrunkRequest)(nil), // 15: livekit.UpdateSIPInboundTrunkRequest - (*SIPInboundTrunkInfo)(nil), // 16: livekit.SIPInboundTrunkInfo - (*SIPInboundTrunkUpdate)(nil), // 17: livekit.SIPInboundTrunkUpdate - (*CreateSIPOutboundTrunkRequest)(nil), // 18: livekit.CreateSIPOutboundTrunkRequest - (*UpdateSIPOutboundTrunkRequest)(nil), // 19: livekit.UpdateSIPOutboundTrunkRequest - (*SIPOutboundTrunkInfo)(nil), // 20: livekit.SIPOutboundTrunkInfo - (*SIPOutboundTrunkUpdate)(nil), // 21: livekit.SIPOutboundTrunkUpdate - (*GetSIPInboundTrunkRequest)(nil), // 22: livekit.GetSIPInboundTrunkRequest - (*GetSIPInboundTrunkResponse)(nil), // 23: livekit.GetSIPInboundTrunkResponse - (*GetSIPOutboundTrunkRequest)(nil), // 24: livekit.GetSIPOutboundTrunkRequest - (*GetSIPOutboundTrunkResponse)(nil), // 25: livekit.GetSIPOutboundTrunkResponse - (*ListSIPTrunkRequest)(nil), // 26: livekit.ListSIPTrunkRequest - (*ListSIPTrunkResponse)(nil), // 27: livekit.ListSIPTrunkResponse - (*ListSIPInboundTrunkRequest)(nil), // 28: livekit.ListSIPInboundTrunkRequest - (*ListSIPInboundTrunkResponse)(nil), // 29: livekit.ListSIPInboundTrunkResponse - (*ListSIPOutboundTrunkRequest)(nil), // 30: livekit.ListSIPOutboundTrunkRequest - (*ListSIPOutboundTrunkResponse)(nil), // 31: livekit.ListSIPOutboundTrunkResponse - (*DeleteSIPTrunkRequest)(nil), // 32: livekit.DeleteSIPTrunkRequest - (*SIPDispatchRuleDirect)(nil), // 33: livekit.SIPDispatchRuleDirect - (*SIPDispatchRuleIndividual)(nil), // 34: livekit.SIPDispatchRuleIndividual - (*SIPDispatchRuleCallee)(nil), // 35: livekit.SIPDispatchRuleCallee - (*SIPDispatchRule)(nil), // 36: livekit.SIPDispatchRule - (*CreateSIPDispatchRuleRequest)(nil), // 37: livekit.CreateSIPDispatchRuleRequest - (*UpdateSIPDispatchRuleRequest)(nil), // 38: livekit.UpdateSIPDispatchRuleRequest - (*SIPDispatchRuleInfo)(nil), // 39: livekit.SIPDispatchRuleInfo - (*SIPDispatchRuleUpdate)(nil), // 40: livekit.SIPDispatchRuleUpdate - (*ListSIPDispatchRuleRequest)(nil), // 41: livekit.ListSIPDispatchRuleRequest - (*ListSIPDispatchRuleResponse)(nil), // 42: livekit.ListSIPDispatchRuleResponse - (*DeleteSIPDispatchRuleRequest)(nil), // 43: livekit.DeleteSIPDispatchRuleRequest - (*SIPOutboundConfig)(nil), // 44: livekit.SIPOutboundConfig - (*CreateSIPParticipantRequest)(nil), // 45: livekit.CreateSIPParticipantRequest - (*SIPParticipantInfo)(nil), // 46: livekit.SIPParticipantInfo - (*TransferSIPParticipantRequest)(nil), // 47: livekit.TransferSIPParticipantRequest - (*SIPCallInfo)(nil), // 48: livekit.SIPCallInfo - (*SIPTransferInfo)(nil), // 49: livekit.SIPTransferInfo - (*SIPUri)(nil), // 50: livekit.SIPUri - (*Destination)(nil), // 51: livekit.Destination - nil, // 52: livekit.SIPInboundTrunkInfo.HeadersEntry - nil, // 53: livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry - nil, // 54: livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry - nil, // 55: livekit.SIPOutboundTrunkInfo.HeadersEntry - nil, // 56: livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry - nil, // 57: livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry - nil, // 58: livekit.CreateSIPDispatchRuleRequest.AttributesEntry - nil, // 59: livekit.SIPDispatchRuleInfo.AttributesEntry - nil, // 60: livekit.SIPDispatchRuleUpdate.AttributesEntry - nil, // 61: livekit.SIPOutboundConfig.HeadersToAttributesEntry - nil, // 62: livekit.SIPOutboundConfig.AttributesToHeadersEntry - nil, // 63: livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry - nil, // 64: livekit.CreateSIPParticipantRequest.HeadersEntry - nil, // 65: livekit.TransferSIPParticipantRequest.HeadersEntry - nil, // 66: livekit.SIPCallInfo.ParticipantAttributesEntry - (*durationpb.Duration)(nil), // 67: google.protobuf.Duration - (*timestamppb.Timestamp)(nil), // 68: google.protobuf.Timestamp - (*ListUpdate)(nil), // 69: livekit.ListUpdate - (*Pagination)(nil), // 70: livekit.Pagination - (*RoomConfiguration)(nil), // 71: livekit.RoomConfiguration - (DisconnectReason)(0), // 72: livekit.DisconnectReason - (*anypb.Any)(nil), // 73: google.protobuf.Any - (*emptypb.Empty)(nil), // 74: google.protobuf.Empty + (*SIPCodec)(nil), // 12: livekit.SIPCodec + (*SIPMediaConfig)(nil), // 13: livekit.SIPMediaConfig + (*ProviderInfo)(nil), // 14: livekit.ProviderInfo + (*SIPTrunkInfo)(nil), // 15: livekit.SIPTrunkInfo + (*CreateSIPInboundTrunkRequest)(nil), // 16: livekit.CreateSIPInboundTrunkRequest + (*UpdateSIPInboundTrunkRequest)(nil), // 17: livekit.UpdateSIPInboundTrunkRequest + (*SIPInboundTrunkInfo)(nil), // 18: livekit.SIPInboundTrunkInfo + (*SIPInboundTrunkUpdate)(nil), // 19: livekit.SIPInboundTrunkUpdate + (*CreateSIPOutboundTrunkRequest)(nil), // 20: livekit.CreateSIPOutboundTrunkRequest + (*UpdateSIPOutboundTrunkRequest)(nil), // 21: livekit.UpdateSIPOutboundTrunkRequest + (*SIPOutboundTrunkInfo)(nil), // 22: livekit.SIPOutboundTrunkInfo + (*SIPOutboundTrunkUpdate)(nil), // 23: livekit.SIPOutboundTrunkUpdate + (*GetSIPInboundTrunkRequest)(nil), // 24: livekit.GetSIPInboundTrunkRequest + (*GetSIPInboundTrunkResponse)(nil), // 25: livekit.GetSIPInboundTrunkResponse + (*GetSIPOutboundTrunkRequest)(nil), // 26: livekit.GetSIPOutboundTrunkRequest + (*GetSIPOutboundTrunkResponse)(nil), // 27: livekit.GetSIPOutboundTrunkResponse + (*ListSIPTrunkRequest)(nil), // 28: livekit.ListSIPTrunkRequest + (*ListSIPTrunkResponse)(nil), // 29: livekit.ListSIPTrunkResponse + (*ListSIPInboundTrunkRequest)(nil), // 30: livekit.ListSIPInboundTrunkRequest + (*ListSIPInboundTrunkResponse)(nil), // 31: livekit.ListSIPInboundTrunkResponse + (*ListSIPOutboundTrunkRequest)(nil), // 32: livekit.ListSIPOutboundTrunkRequest + (*ListSIPOutboundTrunkResponse)(nil), // 33: livekit.ListSIPOutboundTrunkResponse + (*DeleteSIPTrunkRequest)(nil), // 34: livekit.DeleteSIPTrunkRequest + (*SIPDispatchRuleDirect)(nil), // 35: livekit.SIPDispatchRuleDirect + (*SIPDispatchRuleIndividual)(nil), // 36: livekit.SIPDispatchRuleIndividual + (*SIPDispatchRuleCallee)(nil), // 37: livekit.SIPDispatchRuleCallee + (*SIPDispatchRule)(nil), // 38: livekit.SIPDispatchRule + (*CreateSIPDispatchRuleRequest)(nil), // 39: livekit.CreateSIPDispatchRuleRequest + (*UpdateSIPDispatchRuleRequest)(nil), // 40: livekit.UpdateSIPDispatchRuleRequest + (*SIPDispatchRuleInfo)(nil), // 41: livekit.SIPDispatchRuleInfo + (*SIPDispatchRuleUpdate)(nil), // 42: livekit.SIPDispatchRuleUpdate + (*ListSIPDispatchRuleRequest)(nil), // 43: livekit.ListSIPDispatchRuleRequest + (*ListSIPDispatchRuleResponse)(nil), // 44: livekit.ListSIPDispatchRuleResponse + (*DeleteSIPDispatchRuleRequest)(nil), // 45: livekit.DeleteSIPDispatchRuleRequest + (*SIPOutboundConfig)(nil), // 46: livekit.SIPOutboundConfig + (*CreateSIPParticipantRequest)(nil), // 47: livekit.CreateSIPParticipantRequest + (*SIPParticipantInfo)(nil), // 48: livekit.SIPParticipantInfo + (*TransferSIPParticipantRequest)(nil), // 49: livekit.TransferSIPParticipantRequest + (*SIPCallInfo)(nil), // 50: livekit.SIPCallInfo + (*SIPTransferInfo)(nil), // 51: livekit.SIPTransferInfo + (*SIPUri)(nil), // 52: livekit.SIPUri + (*Destination)(nil), // 53: livekit.Destination + nil, // 54: livekit.SIPInboundTrunkInfo.HeadersEntry + nil, // 55: livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry + nil, // 56: livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry + nil, // 57: livekit.SIPOutboundTrunkInfo.HeadersEntry + nil, // 58: livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry + nil, // 59: livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry + nil, // 60: livekit.CreateSIPDispatchRuleRequest.AttributesEntry + nil, // 61: livekit.SIPDispatchRuleInfo.AttributesEntry + nil, // 62: livekit.SIPDispatchRuleUpdate.AttributesEntry + nil, // 63: livekit.SIPOutboundConfig.HeadersToAttributesEntry + nil, // 64: livekit.SIPOutboundConfig.AttributesToHeadersEntry + nil, // 65: livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry + nil, // 66: livekit.CreateSIPParticipantRequest.HeadersEntry + nil, // 67: livekit.TransferSIPParticipantRequest.HeadersEntry + nil, // 68: livekit.SIPCallInfo.ParticipantAttributesEntry + (*durationpb.Duration)(nil), // 69: google.protobuf.Duration + (*timestamppb.Timestamp)(nil), // 70: google.protobuf.Timestamp + (*ListUpdate)(nil), // 71: livekit.ListUpdate + (*Pagination)(nil), // 72: livekit.Pagination + (*RoomConfiguration)(nil), // 73: livekit.RoomConfiguration + (DisconnectReason)(0), // 74: livekit.DisconnectReason + (*anypb.Any)(nil), // 75: google.protobuf.Any + (*emptypb.Empty)(nil), // 76: google.protobuf.Empty } var file_livekit_sip_proto_depIdxs = []int32{ 0, // 0: livekit.SIPStatus.code:type_name -> livekit.SIPStatusCode - 4, // 1: livekit.ProviderInfo.type:type_name -> livekit.ProviderType - 9, // 2: livekit.SIPTrunkInfo.kind:type_name -> livekit.SIPTrunkInfo.TrunkKind - 1, // 3: livekit.SIPTrunkInfo.transport:type_name -> livekit.SIPTransport - 16, // 4: livekit.CreateSIPInboundTrunkRequest.trunk:type_name -> livekit.SIPInboundTrunkInfo - 16, // 5: livekit.UpdateSIPInboundTrunkRequest.replace:type_name -> livekit.SIPInboundTrunkInfo - 17, // 6: livekit.UpdateSIPInboundTrunkRequest.update:type_name -> livekit.SIPInboundTrunkUpdate - 52, // 7: livekit.SIPInboundTrunkInfo.headers:type_name -> livekit.SIPInboundTrunkInfo.HeadersEntry - 53, // 8: livekit.SIPInboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry - 54, // 9: livekit.SIPInboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry - 2, // 10: livekit.SIPInboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions - 67, // 11: livekit.SIPInboundTrunkInfo.ringing_timeout:type_name -> google.protobuf.Duration - 67, // 12: livekit.SIPInboundTrunkInfo.max_call_duration:type_name -> google.protobuf.Duration - 3, // 13: livekit.SIPInboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 14: livekit.SIPInboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 15: livekit.SIPInboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp - 69, // 16: livekit.SIPInboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate - 69, // 17: livekit.SIPInboundTrunkUpdate.allowed_addresses:type_name -> livekit.ListUpdate - 69, // 18: livekit.SIPInboundTrunkUpdate.allowed_numbers:type_name -> livekit.ListUpdate - 3, // 19: livekit.SIPInboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 20, // 20: livekit.CreateSIPOutboundTrunkRequest.trunk:type_name -> livekit.SIPOutboundTrunkInfo - 20, // 21: livekit.UpdateSIPOutboundTrunkRequest.replace:type_name -> livekit.SIPOutboundTrunkInfo - 21, // 22: livekit.UpdateSIPOutboundTrunkRequest.update:type_name -> livekit.SIPOutboundTrunkUpdate - 1, // 23: livekit.SIPOutboundTrunkInfo.transport:type_name -> livekit.SIPTransport - 55, // 24: livekit.SIPOutboundTrunkInfo.headers:type_name -> livekit.SIPOutboundTrunkInfo.HeadersEntry - 56, // 25: livekit.SIPOutboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry - 57, // 26: livekit.SIPOutboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry - 2, // 27: livekit.SIPOutboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions - 3, // 28: livekit.SIPOutboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 29: livekit.SIPOutboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 30: livekit.SIPOutboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp - 1, // 31: livekit.SIPOutboundTrunkUpdate.transport:type_name -> livekit.SIPTransport - 69, // 32: livekit.SIPOutboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate - 3, // 33: livekit.SIPOutboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 16, // 34: livekit.GetSIPInboundTrunkResponse.trunk:type_name -> livekit.SIPInboundTrunkInfo - 20, // 35: livekit.GetSIPOutboundTrunkResponse.trunk:type_name -> livekit.SIPOutboundTrunkInfo - 70, // 36: livekit.ListSIPTrunkRequest.page:type_name -> livekit.Pagination - 13, // 37: livekit.ListSIPTrunkResponse.items:type_name -> livekit.SIPTrunkInfo - 70, // 38: livekit.ListSIPInboundTrunkRequest.page:type_name -> livekit.Pagination - 16, // 39: livekit.ListSIPInboundTrunkResponse.items:type_name -> livekit.SIPInboundTrunkInfo - 70, // 40: livekit.ListSIPOutboundTrunkRequest.page:type_name -> livekit.Pagination - 20, // 41: livekit.ListSIPOutboundTrunkResponse.items:type_name -> livekit.SIPOutboundTrunkInfo - 33, // 42: livekit.SIPDispatchRule.dispatch_rule_direct:type_name -> livekit.SIPDispatchRuleDirect - 34, // 43: livekit.SIPDispatchRule.dispatch_rule_individual:type_name -> livekit.SIPDispatchRuleIndividual - 35, // 44: livekit.SIPDispatchRule.dispatch_rule_callee:type_name -> livekit.SIPDispatchRuleCallee - 39, // 45: livekit.CreateSIPDispatchRuleRequest.dispatch_rule:type_name -> livekit.SIPDispatchRuleInfo - 36, // 46: livekit.CreateSIPDispatchRuleRequest.rule:type_name -> livekit.SIPDispatchRule - 58, // 47: livekit.CreateSIPDispatchRuleRequest.attributes:type_name -> livekit.CreateSIPDispatchRuleRequest.AttributesEntry - 71, // 48: livekit.CreateSIPDispatchRuleRequest.room_config:type_name -> livekit.RoomConfiguration - 39, // 49: livekit.UpdateSIPDispatchRuleRequest.replace:type_name -> livekit.SIPDispatchRuleInfo - 40, // 50: livekit.UpdateSIPDispatchRuleRequest.update:type_name -> livekit.SIPDispatchRuleUpdate - 36, // 51: livekit.SIPDispatchRuleInfo.rule:type_name -> livekit.SIPDispatchRule - 59, // 52: livekit.SIPDispatchRuleInfo.attributes:type_name -> livekit.SIPDispatchRuleInfo.AttributesEntry - 71, // 53: livekit.SIPDispatchRuleInfo.room_config:type_name -> livekit.RoomConfiguration - 3, // 54: livekit.SIPDispatchRuleInfo.media_encryption:type_name -> livekit.SIPMediaEncryption - 68, // 55: livekit.SIPDispatchRuleInfo.created_at:type_name -> google.protobuf.Timestamp - 68, // 56: livekit.SIPDispatchRuleInfo.updated_at:type_name -> google.protobuf.Timestamp - 69, // 57: livekit.SIPDispatchRuleUpdate.trunk_ids:type_name -> livekit.ListUpdate - 36, // 58: livekit.SIPDispatchRuleUpdate.rule:type_name -> livekit.SIPDispatchRule - 60, // 59: livekit.SIPDispatchRuleUpdate.attributes:type_name -> livekit.SIPDispatchRuleUpdate.AttributesEntry - 3, // 60: livekit.SIPDispatchRuleUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption - 70, // 61: livekit.ListSIPDispatchRuleRequest.page:type_name -> livekit.Pagination - 39, // 62: livekit.ListSIPDispatchRuleResponse.items:type_name -> livekit.SIPDispatchRuleInfo - 1, // 63: livekit.SIPOutboundConfig.transport:type_name -> livekit.SIPTransport - 61, // 64: livekit.SIPOutboundConfig.headers_to_attributes:type_name -> livekit.SIPOutboundConfig.HeadersToAttributesEntry - 62, // 65: livekit.SIPOutboundConfig.attributes_to_headers:type_name -> livekit.SIPOutboundConfig.AttributesToHeadersEntry - 44, // 66: livekit.CreateSIPParticipantRequest.trunk:type_name -> livekit.SIPOutboundConfig - 63, // 67: livekit.CreateSIPParticipantRequest.participant_attributes:type_name -> livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry - 64, // 68: livekit.CreateSIPParticipantRequest.headers:type_name -> livekit.CreateSIPParticipantRequest.HeadersEntry - 2, // 69: livekit.CreateSIPParticipantRequest.include_headers:type_name -> livekit.SIPHeaderOptions - 67, // 70: livekit.CreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 67, // 71: livekit.CreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration - 3, // 72: livekit.CreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption - 51, // 73: livekit.CreateSIPParticipantRequest.destination:type_name -> livekit.Destination - 65, // 74: livekit.TransferSIPParticipantRequest.headers:type_name -> livekit.TransferSIPParticipantRequest.HeadersEntry - 67, // 75: livekit.TransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 66, // 76: livekit.SIPCallInfo.participant_attributes:type_name -> livekit.SIPCallInfo.ParticipantAttributesEntry - 50, // 77: livekit.SIPCallInfo.from_uri:type_name -> livekit.SIPUri - 50, // 78: livekit.SIPCallInfo.to_uri:type_name -> livekit.SIPUri - 7, // 79: livekit.SIPCallInfo.enabled_features:type_name -> livekit.SIPFeature - 8, // 80: livekit.SIPCallInfo.call_direction:type_name -> livekit.SIPCallDirection - 5, // 81: livekit.SIPCallInfo.call_status:type_name -> livekit.SIPCallStatus - 72, // 82: livekit.SIPCallInfo.disconnect_reason:type_name -> livekit.DisconnectReason - 10, // 83: livekit.SIPCallInfo.call_status_code:type_name -> livekit.SIPStatus - 73, // 84: livekit.SIPCallInfo.call_context:type_name -> google.protobuf.Any - 12, // 85: livekit.SIPCallInfo.provider_info:type_name -> livekit.ProviderInfo - 6, // 86: livekit.SIPTransferInfo.transfer_status:type_name -> livekit.SIPTransferStatus - 10, // 87: livekit.SIPTransferInfo.transfer_status_code:type_name -> livekit.SIPStatus - 1, // 88: livekit.SIPUri.transport:type_name -> livekit.SIPTransport - 26, // 89: livekit.SIP.ListSIPTrunk:input_type -> livekit.ListSIPTrunkRequest - 14, // 90: livekit.SIP.CreateSIPInboundTrunk:input_type -> livekit.CreateSIPInboundTrunkRequest - 18, // 91: livekit.SIP.CreateSIPOutboundTrunk:input_type -> livekit.CreateSIPOutboundTrunkRequest - 15, // 92: livekit.SIP.UpdateSIPInboundTrunk:input_type -> livekit.UpdateSIPInboundTrunkRequest - 19, // 93: livekit.SIP.UpdateSIPOutboundTrunk:input_type -> livekit.UpdateSIPOutboundTrunkRequest - 22, // 94: livekit.SIP.GetSIPInboundTrunk:input_type -> livekit.GetSIPInboundTrunkRequest - 24, // 95: livekit.SIP.GetSIPOutboundTrunk:input_type -> livekit.GetSIPOutboundTrunkRequest - 28, // 96: livekit.SIP.ListSIPInboundTrunk:input_type -> livekit.ListSIPInboundTrunkRequest - 30, // 97: livekit.SIP.ListSIPOutboundTrunk:input_type -> livekit.ListSIPOutboundTrunkRequest - 32, // 98: livekit.SIP.DeleteSIPTrunk:input_type -> livekit.DeleteSIPTrunkRequest - 37, // 99: livekit.SIP.CreateSIPDispatchRule:input_type -> livekit.CreateSIPDispatchRuleRequest - 38, // 100: livekit.SIP.UpdateSIPDispatchRule:input_type -> livekit.UpdateSIPDispatchRuleRequest - 41, // 101: livekit.SIP.ListSIPDispatchRule:input_type -> livekit.ListSIPDispatchRuleRequest - 43, // 102: livekit.SIP.DeleteSIPDispatchRule:input_type -> livekit.DeleteSIPDispatchRuleRequest - 45, // 103: livekit.SIP.CreateSIPParticipant:input_type -> livekit.CreateSIPParticipantRequest - 47, // 104: livekit.SIP.TransferSIPParticipant:input_type -> livekit.TransferSIPParticipantRequest - 27, // 105: livekit.SIP.ListSIPTrunk:output_type -> livekit.ListSIPTrunkResponse - 16, // 106: livekit.SIP.CreateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo - 20, // 107: livekit.SIP.CreateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo - 16, // 108: livekit.SIP.UpdateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo - 20, // 109: livekit.SIP.UpdateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo - 23, // 110: livekit.SIP.GetSIPInboundTrunk:output_type -> livekit.GetSIPInboundTrunkResponse - 25, // 111: livekit.SIP.GetSIPOutboundTrunk:output_type -> livekit.GetSIPOutboundTrunkResponse - 29, // 112: livekit.SIP.ListSIPInboundTrunk:output_type -> livekit.ListSIPInboundTrunkResponse - 31, // 113: livekit.SIP.ListSIPOutboundTrunk:output_type -> livekit.ListSIPOutboundTrunkResponse - 13, // 114: livekit.SIP.DeleteSIPTrunk:output_type -> livekit.SIPTrunkInfo - 39, // 115: livekit.SIP.CreateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 39, // 116: livekit.SIP.UpdateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 42, // 117: livekit.SIP.ListSIPDispatchRule:output_type -> livekit.ListSIPDispatchRuleResponse - 39, // 118: livekit.SIP.DeleteSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo - 46, // 119: livekit.SIP.CreateSIPParticipant:output_type -> livekit.SIPParticipantInfo - 74, // 120: livekit.SIP.TransferSIPParticipant:output_type -> google.protobuf.Empty - 105, // [105:121] is the sub-list for method output_type - 89, // [89:105] is the sub-list for method input_type - 89, // [89:89] is the sub-list for extension type_name - 89, // [89:89] is the sub-list for extension extendee - 0, // [0:89] is the sub-list for field type_name + 12, // 1: livekit.SIPMediaConfig.codecs:type_name -> livekit.SIPCodec + 3, // 2: livekit.SIPMediaConfig.encryption:type_name -> livekit.SIPMediaEncryption + 4, // 3: livekit.ProviderInfo.type:type_name -> livekit.ProviderType + 9, // 4: livekit.SIPTrunkInfo.kind:type_name -> livekit.SIPTrunkInfo.TrunkKind + 1, // 5: livekit.SIPTrunkInfo.transport:type_name -> livekit.SIPTransport + 18, // 6: livekit.CreateSIPInboundTrunkRequest.trunk:type_name -> livekit.SIPInboundTrunkInfo + 18, // 7: livekit.UpdateSIPInboundTrunkRequest.replace:type_name -> livekit.SIPInboundTrunkInfo + 19, // 8: livekit.UpdateSIPInboundTrunkRequest.update:type_name -> livekit.SIPInboundTrunkUpdate + 54, // 9: livekit.SIPInboundTrunkInfo.headers:type_name -> livekit.SIPInboundTrunkInfo.HeadersEntry + 55, // 10: livekit.SIPInboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPInboundTrunkInfo.HeadersToAttributesEntry + 56, // 11: livekit.SIPInboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPInboundTrunkInfo.AttributesToHeadersEntry + 2, // 12: livekit.SIPInboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions + 69, // 13: livekit.SIPInboundTrunkInfo.ringing_timeout:type_name -> google.protobuf.Duration + 69, // 14: livekit.SIPInboundTrunkInfo.max_call_duration:type_name -> google.protobuf.Duration + 3, // 15: livekit.SIPInboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 16: livekit.SIPInboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 17: livekit.SIPInboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp + 71, // 18: livekit.SIPInboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate + 71, // 19: livekit.SIPInboundTrunkUpdate.allowed_addresses:type_name -> livekit.ListUpdate + 71, // 20: livekit.SIPInboundTrunkUpdate.allowed_numbers:type_name -> livekit.ListUpdate + 3, // 21: livekit.SIPInboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 22, // 22: livekit.CreateSIPOutboundTrunkRequest.trunk:type_name -> livekit.SIPOutboundTrunkInfo + 22, // 23: livekit.UpdateSIPOutboundTrunkRequest.replace:type_name -> livekit.SIPOutboundTrunkInfo + 23, // 24: livekit.UpdateSIPOutboundTrunkRequest.update:type_name -> livekit.SIPOutboundTrunkUpdate + 1, // 25: livekit.SIPOutboundTrunkInfo.transport:type_name -> livekit.SIPTransport + 57, // 26: livekit.SIPOutboundTrunkInfo.headers:type_name -> livekit.SIPOutboundTrunkInfo.HeadersEntry + 58, // 27: livekit.SIPOutboundTrunkInfo.headers_to_attributes:type_name -> livekit.SIPOutboundTrunkInfo.HeadersToAttributesEntry + 59, // 28: livekit.SIPOutboundTrunkInfo.attributes_to_headers:type_name -> livekit.SIPOutboundTrunkInfo.AttributesToHeadersEntry + 2, // 29: livekit.SIPOutboundTrunkInfo.include_headers:type_name -> livekit.SIPHeaderOptions + 3, // 30: livekit.SIPOutboundTrunkInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 31: livekit.SIPOutboundTrunkInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 32: livekit.SIPOutboundTrunkInfo.updated_at:type_name -> google.protobuf.Timestamp + 1, // 33: livekit.SIPOutboundTrunkUpdate.transport:type_name -> livekit.SIPTransport + 71, // 34: livekit.SIPOutboundTrunkUpdate.numbers:type_name -> livekit.ListUpdate + 3, // 35: livekit.SIPOutboundTrunkUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 18, // 36: livekit.GetSIPInboundTrunkResponse.trunk:type_name -> livekit.SIPInboundTrunkInfo + 22, // 37: livekit.GetSIPOutboundTrunkResponse.trunk:type_name -> livekit.SIPOutboundTrunkInfo + 72, // 38: livekit.ListSIPTrunkRequest.page:type_name -> livekit.Pagination + 15, // 39: livekit.ListSIPTrunkResponse.items:type_name -> livekit.SIPTrunkInfo + 72, // 40: livekit.ListSIPInboundTrunkRequest.page:type_name -> livekit.Pagination + 18, // 41: livekit.ListSIPInboundTrunkResponse.items:type_name -> livekit.SIPInboundTrunkInfo + 72, // 42: livekit.ListSIPOutboundTrunkRequest.page:type_name -> livekit.Pagination + 22, // 43: livekit.ListSIPOutboundTrunkResponse.items:type_name -> livekit.SIPOutboundTrunkInfo + 35, // 44: livekit.SIPDispatchRule.dispatch_rule_direct:type_name -> livekit.SIPDispatchRuleDirect + 36, // 45: livekit.SIPDispatchRule.dispatch_rule_individual:type_name -> livekit.SIPDispatchRuleIndividual + 37, // 46: livekit.SIPDispatchRule.dispatch_rule_callee:type_name -> livekit.SIPDispatchRuleCallee + 41, // 47: livekit.CreateSIPDispatchRuleRequest.dispatch_rule:type_name -> livekit.SIPDispatchRuleInfo + 38, // 48: livekit.CreateSIPDispatchRuleRequest.rule:type_name -> livekit.SIPDispatchRule + 60, // 49: livekit.CreateSIPDispatchRuleRequest.attributes:type_name -> livekit.CreateSIPDispatchRuleRequest.AttributesEntry + 73, // 50: livekit.CreateSIPDispatchRuleRequest.room_config:type_name -> livekit.RoomConfiguration + 41, // 51: livekit.UpdateSIPDispatchRuleRequest.replace:type_name -> livekit.SIPDispatchRuleInfo + 42, // 52: livekit.UpdateSIPDispatchRuleRequest.update:type_name -> livekit.SIPDispatchRuleUpdate + 38, // 53: livekit.SIPDispatchRuleInfo.rule:type_name -> livekit.SIPDispatchRule + 61, // 54: livekit.SIPDispatchRuleInfo.attributes:type_name -> livekit.SIPDispatchRuleInfo.AttributesEntry + 73, // 55: livekit.SIPDispatchRuleInfo.room_config:type_name -> livekit.RoomConfiguration + 13, // 56: livekit.SIPDispatchRuleInfo.media:type_name -> livekit.SIPMediaConfig + 3, // 57: livekit.SIPDispatchRuleInfo.media_encryption:type_name -> livekit.SIPMediaEncryption + 70, // 58: livekit.SIPDispatchRuleInfo.created_at:type_name -> google.protobuf.Timestamp + 70, // 59: livekit.SIPDispatchRuleInfo.updated_at:type_name -> google.protobuf.Timestamp + 71, // 60: livekit.SIPDispatchRuleUpdate.trunk_ids:type_name -> livekit.ListUpdate + 38, // 61: livekit.SIPDispatchRuleUpdate.rule:type_name -> livekit.SIPDispatchRule + 62, // 62: livekit.SIPDispatchRuleUpdate.attributes:type_name -> livekit.SIPDispatchRuleUpdate.AttributesEntry + 3, // 63: livekit.SIPDispatchRuleUpdate.media_encryption:type_name -> livekit.SIPMediaEncryption + 13, // 64: livekit.SIPDispatchRuleUpdate.media:type_name -> livekit.SIPMediaConfig + 72, // 65: livekit.ListSIPDispatchRuleRequest.page:type_name -> livekit.Pagination + 41, // 66: livekit.ListSIPDispatchRuleResponse.items:type_name -> livekit.SIPDispatchRuleInfo + 1, // 67: livekit.SIPOutboundConfig.transport:type_name -> livekit.SIPTransport + 63, // 68: livekit.SIPOutboundConfig.headers_to_attributes:type_name -> livekit.SIPOutboundConfig.HeadersToAttributesEntry + 64, // 69: livekit.SIPOutboundConfig.attributes_to_headers:type_name -> livekit.SIPOutboundConfig.AttributesToHeadersEntry + 46, // 70: livekit.CreateSIPParticipantRequest.trunk:type_name -> livekit.SIPOutboundConfig + 65, // 71: livekit.CreateSIPParticipantRequest.participant_attributes:type_name -> livekit.CreateSIPParticipantRequest.ParticipantAttributesEntry + 66, // 72: livekit.CreateSIPParticipantRequest.headers:type_name -> livekit.CreateSIPParticipantRequest.HeadersEntry + 2, // 73: livekit.CreateSIPParticipantRequest.include_headers:type_name -> livekit.SIPHeaderOptions + 69, // 74: livekit.CreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 69, // 75: livekit.CreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration + 3, // 76: livekit.CreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption + 13, // 77: livekit.CreateSIPParticipantRequest.media:type_name -> livekit.SIPMediaConfig + 53, // 78: livekit.CreateSIPParticipantRequest.destination:type_name -> livekit.Destination + 67, // 79: livekit.TransferSIPParticipantRequest.headers:type_name -> livekit.TransferSIPParticipantRequest.HeadersEntry + 69, // 80: livekit.TransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 68, // 81: livekit.SIPCallInfo.participant_attributes:type_name -> livekit.SIPCallInfo.ParticipantAttributesEntry + 52, // 82: livekit.SIPCallInfo.from_uri:type_name -> livekit.SIPUri + 52, // 83: livekit.SIPCallInfo.to_uri:type_name -> livekit.SIPUri + 7, // 84: livekit.SIPCallInfo.enabled_features:type_name -> livekit.SIPFeature + 8, // 85: livekit.SIPCallInfo.call_direction:type_name -> livekit.SIPCallDirection + 5, // 86: livekit.SIPCallInfo.call_status:type_name -> livekit.SIPCallStatus + 74, // 87: livekit.SIPCallInfo.disconnect_reason:type_name -> livekit.DisconnectReason + 10, // 88: livekit.SIPCallInfo.call_status_code:type_name -> livekit.SIPStatus + 75, // 89: livekit.SIPCallInfo.call_context:type_name -> google.protobuf.Any + 14, // 90: livekit.SIPCallInfo.provider_info:type_name -> livekit.ProviderInfo + 6, // 91: livekit.SIPTransferInfo.transfer_status:type_name -> livekit.SIPTransferStatus + 10, // 92: livekit.SIPTransferInfo.transfer_status_code:type_name -> livekit.SIPStatus + 1, // 93: livekit.SIPUri.transport:type_name -> livekit.SIPTransport + 28, // 94: livekit.SIP.ListSIPTrunk:input_type -> livekit.ListSIPTrunkRequest + 16, // 95: livekit.SIP.CreateSIPInboundTrunk:input_type -> livekit.CreateSIPInboundTrunkRequest + 20, // 96: livekit.SIP.CreateSIPOutboundTrunk:input_type -> livekit.CreateSIPOutboundTrunkRequest + 17, // 97: livekit.SIP.UpdateSIPInboundTrunk:input_type -> livekit.UpdateSIPInboundTrunkRequest + 21, // 98: livekit.SIP.UpdateSIPOutboundTrunk:input_type -> livekit.UpdateSIPOutboundTrunkRequest + 24, // 99: livekit.SIP.GetSIPInboundTrunk:input_type -> livekit.GetSIPInboundTrunkRequest + 26, // 100: livekit.SIP.GetSIPOutboundTrunk:input_type -> livekit.GetSIPOutboundTrunkRequest + 30, // 101: livekit.SIP.ListSIPInboundTrunk:input_type -> livekit.ListSIPInboundTrunkRequest + 32, // 102: livekit.SIP.ListSIPOutboundTrunk:input_type -> livekit.ListSIPOutboundTrunkRequest + 34, // 103: livekit.SIP.DeleteSIPTrunk:input_type -> livekit.DeleteSIPTrunkRequest + 39, // 104: livekit.SIP.CreateSIPDispatchRule:input_type -> livekit.CreateSIPDispatchRuleRequest + 40, // 105: livekit.SIP.UpdateSIPDispatchRule:input_type -> livekit.UpdateSIPDispatchRuleRequest + 43, // 106: livekit.SIP.ListSIPDispatchRule:input_type -> livekit.ListSIPDispatchRuleRequest + 45, // 107: livekit.SIP.DeleteSIPDispatchRule:input_type -> livekit.DeleteSIPDispatchRuleRequest + 47, // 108: livekit.SIP.CreateSIPParticipant:input_type -> livekit.CreateSIPParticipantRequest + 49, // 109: livekit.SIP.TransferSIPParticipant:input_type -> livekit.TransferSIPParticipantRequest + 29, // 110: livekit.SIP.ListSIPTrunk:output_type -> livekit.ListSIPTrunkResponse + 18, // 111: livekit.SIP.CreateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo + 22, // 112: livekit.SIP.CreateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo + 18, // 113: livekit.SIP.UpdateSIPInboundTrunk:output_type -> livekit.SIPInboundTrunkInfo + 22, // 114: livekit.SIP.UpdateSIPOutboundTrunk:output_type -> livekit.SIPOutboundTrunkInfo + 25, // 115: livekit.SIP.GetSIPInboundTrunk:output_type -> livekit.GetSIPInboundTrunkResponse + 27, // 116: livekit.SIP.GetSIPOutboundTrunk:output_type -> livekit.GetSIPOutboundTrunkResponse + 31, // 117: livekit.SIP.ListSIPInboundTrunk:output_type -> livekit.ListSIPInboundTrunkResponse + 33, // 118: livekit.SIP.ListSIPOutboundTrunk:output_type -> livekit.ListSIPOutboundTrunkResponse + 15, // 119: livekit.SIP.DeleteSIPTrunk:output_type -> livekit.SIPTrunkInfo + 41, // 120: livekit.SIP.CreateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 41, // 121: livekit.SIP.UpdateSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 44, // 122: livekit.SIP.ListSIPDispatchRule:output_type -> livekit.ListSIPDispatchRuleResponse + 41, // 123: livekit.SIP.DeleteSIPDispatchRule:output_type -> livekit.SIPDispatchRuleInfo + 48, // 124: livekit.SIP.CreateSIPParticipant:output_type -> livekit.SIPParticipantInfo + 76, // 125: livekit.SIP.TransferSIPParticipant:output_type -> google.protobuf.Empty + 110, // [110:126] is the sub-list for method output_type + 94, // [94:110] is the sub-list for method input_type + 94, // [94:94] is the sub-list for extension type_name + 94, // [94:94] is the sub-list for extension extendee + 0, // [0:94] is the sub-list for field type_name } func init() { file_livekit_sip_proto_init() } @@ -5304,34 +5468,35 @@ func file_livekit_sip_proto_init() { } file_livekit_models_proto_init() file_livekit_room_proto_init() - file_livekit_sip_proto_msgTypes[5].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[3].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[7].OneofWrappers = []any{ (*UpdateSIPInboundTrunkRequest_Replace)(nil), (*UpdateSIPInboundTrunkRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[7].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[9].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[9].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[11].OneofWrappers = []any{ (*UpdateSIPOutboundTrunkRequest_Replace)(nil), (*UpdateSIPOutboundTrunkRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[11].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[26].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[13].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[28].OneofWrappers = []any{ (*SIPDispatchRule_DispatchRuleDirect)(nil), (*SIPDispatchRule_DispatchRuleIndividual)(nil), (*SIPDispatchRule_DispatchRuleCallee)(nil), } - file_livekit_sip_proto_msgTypes[28].OneofWrappers = []any{ + file_livekit_sip_proto_msgTypes[30].OneofWrappers = []any{ (*UpdateSIPDispatchRuleRequest_Replace)(nil), (*UpdateSIPDispatchRuleRequest_Update)(nil), } - file_livekit_sip_proto_msgTypes[30].OneofWrappers = []any{} - file_livekit_sip_proto_msgTypes[35].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[32].OneofWrappers = []any{} + file_livekit_sip_proto_msgTypes[37].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_livekit_sip_proto_rawDesc), len(file_livekit_sip_proto_rawDesc)), NumEnums: 10, - NumMessages: 57, + NumMessages: 59, NumExtensions: 0, NumServices: 1, }, diff --git a/livekit/livekit_sip.twirp.go b/livekit/livekit_sip.twirp.go index 21d3f3ca9..86dc80b8c 100644 --- a/livekit/livekit_sip.twirp.go +++ b/livekit/livekit_sip.twirp.go @@ -4704,346 +4704,354 @@ func (s *sIPServer) PathPrefix() string { } var twirpFileDescriptor5 = []byte{ - // 5447 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xe9, 0x8f, 0x1b, 0xc9, - 0x75, 0xb8, 0xc8, 0xe6, 0x1c, 0x2c, 0xce, 0xd1, 0x53, 0x73, 0x2c, 0x35, 0xba, 0x66, 0x29, 0x69, - 0x57, 0x9a, 0xb5, 0x47, 0x6b, 0xed, 0xef, 0xe7, 0x5d, 0xcb, 0x1b, 0x7b, 0x9b, 0xec, 0x9a, 0x99, - 0xb6, 0x38, 0xdd, 0xdc, 0xea, 0xa6, 0xa4, 0x31, 0x9c, 0x74, 0x28, 0x76, 0x6b, 0xd4, 0x2b, 0x0e, - 0x9b, 0x26, 0x9b, 0xda, 0x1d, 0x3b, 0xfb, 0x21, 0x40, 0x80, 0x6c, 0x80, 0x20, 0x88, 0x9d, 0xc3, - 0x71, 0xe2, 0xc4, 0x36, 0x90, 0x63, 0x63, 0xd8, 0x06, 0x1c, 0xf8, 0x08, 0xf4, 0x0f, 0x24, 0xc8, - 0x01, 0xe4, 0x4b, 0x0e, 0x20, 0x81, 0xb3, 0x89, 0x73, 0x38, 0x09, 0x92, 0x7c, 0x49, 0xe2, 0x04, - 0xc8, 0x87, 0xa0, 0xaa, 0xab, 0xbb, 0xab, 0x9b, 0x4d, 0x0e, 0x39, 0xd2, 0x02, 0x46, 0xf2, 0x69, - 0xd8, 0xaf, 0x5e, 0xbd, 0x7a, 0xf5, 0xea, 0x5d, 0xf5, 0xaa, 0x6a, 0xc0, 0x52, 0xcb, 0x79, 0x68, - 0x3f, 0x70, 0x3c, 0xb3, 0xe7, 0x74, 0xb6, 0x3a, 0x5d, 0xd7, 0x73, 0xe1, 0x0c, 0x03, 0xad, 0x9f, - 0x3e, 0x70, 0xdd, 0x83, 0x96, 0x7d, 0x8d, 0x82, 0xef, 0xf6, 0xef, 0x5d, 0x6b, 0xb4, 0x8f, 0x7c, - 0x9c, 0xf5, 0xf3, 0xc9, 0x26, 0xab, 0xdf, 0x6d, 0x78, 0x8e, 0xdb, 0x66, 0xed, 0x67, 0x92, 0xed, - 0xf6, 0x61, 0xc7, 0x0b, 0x3a, 0x5f, 0x48, 0x36, 0x7a, 0xce, 0xa1, 0xdd, 0xf3, 0x1a, 0x87, 0x8c, - 0x83, 0xf5, 0x95, 0x80, 0xa9, 0x43, 0xd7, 0xb2, 0x5b, 0x3d, 0x06, 0x85, 0x01, 0xb4, 0xeb, 0xba, - 0x87, 0x21, 0xa6, 0x7b, 0x70, 0x60, 0x77, 0xaf, 0xb9, 0x1d, 0x32, 0x38, 0xc3, 0x2c, 0x69, 0x20, - 0xaf, 0x2b, 0x35, 0xdd, 0x6b, 0x78, 0xfd, 0x1e, 0xdc, 0x04, 0xb9, 0xa6, 0x6b, 0xd9, 0xc5, 0xcc, - 0x46, 0xe6, 0xca, 0xc2, 0xf5, 0xb5, 0x2d, 0x46, 0x65, 0x2b, 0xc4, 0xa8, 0xb8, 0x96, 0x8d, 0x29, - 0x0e, 0x5c, 0x03, 0xd3, 0x3d, 0x0a, 0x2b, 0x66, 0x37, 0x32, 0x57, 0xf2, 0x98, 0x7d, 0x95, 0x3e, - 0x93, 0x03, 0xab, 0x95, 0xae, 0xdd, 0xf0, 0x6c, 0x5d, 0xa9, 0x19, 0xdd, 0x7e, 0xfb, 0x01, 0xb6, - 0x3f, 0xde, 0xb7, 0x7b, 0x1e, 0x7c, 0x0e, 0x2c, 0x39, 0xed, 0xbb, 0x6e, 0xbf, 0x6d, 0x99, 0x0d, - 0xcb, 0xea, 0xda, 0xbd, 0x9e, 0xdd, 0x2b, 0x66, 0x36, 0x84, 0x2b, 0x79, 0x2c, 0xb2, 0x06, 0x29, - 0x80, 0xc3, 0xab, 0x40, 0x74, 0xfb, 0x5e, 0x0c, 0x9b, 0x0d, 0xb4, 0x18, 0xc0, 0x19, 0x32, 0x7c, - 0x16, 0x84, 0x20, 0xb3, 0xdd, 0x3f, 0xbc, 0x6b, 0x77, 0x8b, 0x02, 0xc5, 0x5c, 0x08, 0xc0, 0x2a, - 0x85, 0xc2, 0xf7, 0x83, 0xd5, 0x80, 0x01, 0x1f, 0xaf, 0x67, 0x76, 0xed, 0x03, 0xfb, 0x8d, 0x62, - 0x8e, 0x30, 0x51, 0xce, 0x16, 0x33, 0x78, 0x99, 0x21, 0xf8, 0x3d, 0x7a, 0x98, 0x34, 0x93, 0x01, - 0x12, 0xfd, 0x8a, 0x79, 0xca, 0xf6, 0x42, 0x1c, 0x1b, 0x6e, 0x81, 0x60, 0x22, 0x66, 0xbf, 0x67, - 0x77, 0xdb, 0x8d, 0x43, 0xbb, 0x38, 0x45, 0x58, 0x29, 0x0b, 0x6f, 0xd7, 0x32, 0x38, 0xa0, 0x52, - 0x67, 0x6d, 0x3c, 0x7e, 0xa7, 0xd1, 0xeb, 0xbd, 0xee, 0x76, 0xad, 0xe2, 0xf4, 0x20, 0x7e, 0x8d, - 0xb5, 0xc1, 0xe7, 0xc1, 0x52, 0x38, 0xd3, 0x70, 0x80, 0x99, 0xa8, 0x43, 0x28, 0xb2, 0x70, 0x04, - 0xbe, 0x47, 0x38, 0xc4, 0x6c, 0x4a, 0x8f, 0x70, 0x0c, 0x08, 0x72, 0x94, 0x2c, 0xa0, 0x22, 0xa4, - 0xbf, 0xe1, 0x2b, 0x60, 0xf6, 0xd0, 0xf6, 0x1a, 0x56, 0xc3, 0x6b, 0x14, 0x0b, 0xb4, 0xf3, 0xa5, - 0xb7, 0x6b, 0x99, 0xdf, 0xaa, 0x9d, 0x7f, 0xb9, 0x6b, 0x5b, 0x8d, 0xa6, 0x67, 0x5b, 0x1b, 0x57, - 0x3e, 0xf9, 0xc9, 0x8d, 0x2d, 0xdd, 0xf9, 0x84, 0xbd, 0xf1, 0xe6, 0x9b, 0x1b, 0x77, 0x8f, 0x3c, - 0xbb, 0x77, 0xf5, 0x43, 0x38, 0xec, 0x75, 0x23, 0x5b, 0xcc, 0x94, 0xde, 0xca, 0x80, 0xb9, 0x5a, - 0xd7, 0x7d, 0xe8, 0x58, 0x76, 0x57, 0x69, 0xdf, 0x73, 0xe1, 0x02, 0xc8, 0x3a, 0x16, 0x55, 0xb6, - 0x3c, 0xce, 0x3a, 0xd1, 0xd0, 0x59, 0x6e, 0xe8, 0xab, 0x20, 0xe7, 0x1d, 0x75, 0x6c, 0xba, 0xa2, - 0x0b, 0xd7, 0x57, 0x43, 0x95, 0x0c, 0x08, 0x19, 0x47, 0x1d, 0x1b, 0x53, 0x14, 0xa2, 0x32, 0x9d, - 0xae, 0xfd, 0xd0, 0x6e, 0x7b, 0xa6, 0xd7, 0x6d, 0xb4, 0x7b, 0xf7, 0xec, 0x6e, 0x31, 0xb7, 0x91, - 0xb9, 0x32, 0x8b, 0x17, 0x19, 0xdc, 0x60, 0xe0, 0xd2, 0xbf, 0x4e, 0x81, 0xb9, 0x40, 0x3d, 0x29, - 0x2b, 0xd7, 0xc0, 0x5c, 0xcf, 0xe9, 0x98, 0x1e, 0x01, 0x98, 0x01, 0x53, 0xe5, 0xf9, 0x47, 0x35, - 0xd0, 0x73, 0x3a, 0x3e, 0x9a, 0x8c, 0xa3, 0xdf, 0x16, 0x7c, 0x01, 0xe4, 0x1e, 0x38, 0x6d, 0xab, - 0xb8, 0x40, 0xf9, 0xba, 0xc0, 0x9b, 0x4a, 0x48, 0x75, 0x8b, 0xfe, 0xba, 0xe9, 0xb4, 0x2d, 0x4c, - 0x91, 0xd3, 0x2d, 0x20, 0x3b, 0x81, 0x05, 0x08, 0x63, 0x5b, 0x40, 0x2e, 0xd5, 0x02, 0x5e, 0x00, - 0x79, 0x2a, 0x9a, 0x8e, 0xdb, 0xf5, 0x8a, 0xf3, 0x09, 0x91, 0x52, 0xd6, 0x59, 0x23, 0x8e, 0xf0, - 0x86, 0x9b, 0xcd, 0xd4, 0xc4, 0x66, 0x03, 0xc6, 0x36, 0x9b, 0xe9, 0x09, 0xcd, 0x66, 0x66, 0x52, - 0xb3, 0x99, 0x9d, 0xd8, 0x6c, 0xf2, 0xe3, 0x98, 0x4d, 0x61, 0x88, 0xd9, 0xcc, 0x9d, 0xc4, 0x6c, - 0x4a, 0x32, 0xc8, 0x87, 0x3a, 0x04, 0x45, 0x30, 0x67, 0xe0, 0xba, 0x7a, 0xd3, 0xac, 0xa2, 0x1d, - 0xa9, 0xb2, 0x2f, 0x9e, 0x82, 0x4b, 0x60, 0xde, 0x87, 0x28, 0x6a, 0x59, 0xab, 0xab, 0xb2, 0x98, - 0x81, 0x10, 0x2c, 0xf8, 0x20, 0xad, 0x6e, 0xf8, 0xb0, 0x2c, 0x35, 0x3e, 0x0c, 0xce, 0x86, 0x5e, - 0x59, 0xf1, 0xe5, 0x13, 0x73, 0xce, 0xd7, 0xc1, 0x14, 0x55, 0x7e, 0xaa, 0xf9, 0x85, 0xeb, 0x67, - 0x79, 0xad, 0xe0, 0xf1, 0x89, 0x5e, 0x63, 0x1f, 0xb5, 0xf4, 0x87, 0x19, 0x70, 0xb6, 0xde, 0xb1, - 0x86, 0x13, 0x9d, 0xd8, 0xaa, 0x5e, 0x02, 0x33, 0x5d, 0xbb, 0xd3, 0x6a, 0x34, 0x7d, 0x27, 0x70, - 0x0c, 0x1f, 0xbb, 0xa7, 0x70, 0x80, 0x0e, 0x5f, 0x02, 0xd3, 0x7d, 0xca, 0x0a, 0xb5, 0x91, 0xc2, - 0xf5, 0xf3, 0xc3, 0x3a, 0xfa, 0x0c, 0xef, 0x9e, 0xc2, 0x0c, 0xbf, 0x3c, 0x0b, 0xa6, 0x1b, 0x4d, - 0x12, 0x12, 0x4b, 0x9f, 0x07, 0x60, 0x39, 0x65, 0x98, 0xc9, 0xa7, 0x91, 0xe6, 0xc8, 0x78, 0x65, - 0x10, 0x4e, 0xa2, 0x0c, 0xb0, 0x08, 0x66, 0x02, 0x3b, 0xa2, 0x01, 0x0b, 0x07, 0x9f, 0xc4, 0xaf, - 0x34, 0x5a, 0x2d, 0xf7, 0x75, 0x9b, 0xf7, 0x2b, 0x53, 0xbe, 0x5f, 0x61, 0x0d, 0x91, 0x5f, 0x79, - 0x16, 0x2c, 0x06, 0xc8, 0x01, 0xb9, 0x69, 0xdf, 0x2c, 0x19, 0x38, 0x30, 0xcb, 0x2b, 0x60, 0xbe, - 0xd1, 0xf7, 0xee, 0xa7, 0x46, 0x9a, 0x39, 0xd2, 0x12, 0x9a, 0x4b, 0x80, 0x99, 0x16, 0x61, 0x28, - 0x66, 0x68, 0x26, 0x0e, 0x98, 0xb9, 0x6f, 0x37, 0xac, 0x20, 0x84, 0x16, 0xae, 0x5f, 0x1d, 0xb5, - 0xc0, 0x5b, 0xbb, 0x3e, 0x2e, 0x6a, 0x7b, 0xdd, 0xa3, 0x31, 0xe5, 0x15, 0xd0, 0x87, 0x0e, 0x58, - 0x65, 0x3f, 0x4d, 0xcf, 0x35, 0x1b, 0x9e, 0xd7, 0x75, 0xee, 0xf6, 0x3d, 0xdb, 0x77, 0x42, 0x85, - 0xeb, 0xff, 0x7f, 0x9c, 0x81, 0x0d, 0x57, 0x0a, 0xfb, 0x51, 0x26, 0xf0, 0xf2, 0xfd, 0xc1, 0x16, - 0x32, 0x54, 0x44, 0x9f, 0x8c, 0x16, 0xcc, 0x71, 0x61, 0x8c, 0xa1, 0x22, 0x3a, 0x86, 0xcb, 0xcf, - 0x17, 0x2f, 0x37, 0x06, 0x5b, 0x60, 0x99, 0x38, 0xd5, 0x66, 0xab, 0x6f, 0xd9, 0xe1, 0x20, 0x8b, - 0xd4, 0x8f, 0x9f, 0xe6, 0x07, 0xf1, 0xb1, 0x35, 0x3f, 0xd3, 0x23, 0xfe, 0x96, 0xf6, 0xe0, 0x68, - 0x74, 0x9d, 0xf6, 0x81, 0xd3, 0x3e, 0x30, 0x49, 0x3a, 0xe9, 0xf6, 0x3d, 0xea, 0xb6, 0x0a, 0xd7, - 0x4f, 0x6f, 0xf9, 0xe9, 0xe6, 0x56, 0x90, 0x6e, 0x6e, 0xc9, 0x2c, 0x57, 0xc5, 0x0b, 0xac, 0x87, - 0xe1, 0x77, 0x80, 0x08, 0x2c, 0x1d, 0x36, 0xde, 0x30, 0x9b, 0x8d, 0x56, 0xcb, 0x0c, 0x12, 0x5a, - 0xea, 0xe4, 0x46, 0x52, 0x59, 0x3c, 0x6c, 0xbc, 0x51, 0x69, 0xb4, 0x5a, 0x01, 0x00, 0x5e, 0x04, - 0xf3, 0x0f, 0xba, 0x4e, 0xaf, 0x63, 0xda, 0xed, 0xc6, 0xdd, 0x96, 0x6d, 0xd1, 0xa0, 0x34, 0x8b, - 0xe7, 0x28, 0x10, 0xf9, 0x30, 0xb8, 0x0d, 0xc4, 0x43, 0xdb, 0x72, 0x1a, 0xa6, 0xdd, 0x6e, 0x76, - 0x8f, 0xe8, 0xa4, 0x8a, 0x22, 0x9d, 0xf4, 0x19, 0x7e, 0xd2, 0x7b, 0x04, 0x07, 0x85, 0x28, 0x78, - 0xf1, 0x30, 0x0e, 0x80, 0x1f, 0x00, 0xa0, 0x49, 0x7d, 0xa0, 0x65, 0x36, 0xbc, 0xe2, 0x12, 0x65, - 0x76, 0x7d, 0x80, 0x59, 0x23, 0xc8, 0xb0, 0x71, 0x9e, 0x61, 0x4b, 0x1e, 0xe9, 0xea, 0xbb, 0x0b, - 0xda, 0x15, 0x1e, 0xdf, 0x95, 0x61, 0x4b, 0xde, 0xfa, 0x0d, 0x30, 0xc7, 0x2f, 0x2b, 0x14, 0x81, - 0xf0, 0xc0, 0x3e, 0x62, 0x69, 0x0f, 0xf9, 0x09, 0x57, 0xc0, 0xd4, 0xc3, 0x46, 0xab, 0x1f, 0xf8, - 0x0b, 0xff, 0xe3, 0x46, 0xf6, 0xa5, 0xcc, 0xfa, 0x36, 0x28, 0x0e, 0xd3, 0xc4, 0x49, 0xe9, 0x0c, - 0x53, 0xb3, 0x49, 0xe8, 0x94, 0xbe, 0x90, 0x03, 0xab, 0xa9, 0xfe, 0x14, 0xbe, 0x37, 0x72, 0x4e, - 0x7e, 0x04, 0x59, 0x0e, 0x97, 0xa6, 0xea, 0xf4, 0x3c, 0x1f, 0x2b, 0xf2, 0x58, 0xaf, 0xa4, 0x79, - 0xac, 0xec, 0xf0, 0x8e, 0x83, 0x6e, 0xec, 0xe5, 0x41, 0x37, 0x26, 0x0c, 0xef, 0x9f, 0xf4, 0x6d, - 0xef, 0x4d, 0xfa, 0xb6, 0x5c, 0xe8, 0xb1, 0x76, 0x4f, 0xc5, 0xbd, 0xdb, 0x5b, 0x99, 0x4c, 0x88, - 0x1e, 0x3a, 0xb8, 0x28, 0xab, 0xdf, 0x4d, 0xb8, 0x38, 0x82, 0xfe, 0x14, 0xf3, 0xff, 0x34, 0x89, - 0xd9, 0xcd, 0xfa, 0x11, 0x80, 0x34, 0x20, 0x2e, 0x08, 0xcc, 0x8c, 0x1f, 0x04, 0x76, 0x85, 0x28, - 0x0c, 0x10, 0x32, 0x37, 0x53, 0x0c, 0x62, 0xf6, 0x58, 0x83, 0xd8, 0xcd, 0x0d, 0x98, 0xc4, 0x5b, - 0x99, 0x4c, 0x59, 0x04, 0x0b, 0x66, 0x4c, 0x16, 0x11, 0x24, 0x98, 0x6e, 0x79, 0x06, 0x4c, 0x99, - 0xb4, 0xa9, 0x00, 0xf2, 0x66, 0xc0, 0x49, 0x79, 0x19, 0x2c, 0x99, 0x49, 0x3e, 0x4a, 0x06, 0x38, - 0x17, 0x26, 0x1a, 0x1a, 0xcb, 0x92, 0x62, 0x49, 0xc1, 0x0b, 0xf1, 0x4c, 0xe3, 0x1c, 0xcf, 0x71, - 0xac, 0x03, 0x9f, 0x6a, 0xfc, 0x51, 0x06, 0x9c, 0x0b, 0x53, 0x8d, 0x54, 0xb2, 0x13, 0x07, 0xe9, - 0x0f, 0x24, 0x73, 0x8d, 0xd1, 0x9c, 0xf0, 0xc9, 0xc6, 0x07, 0x12, 0xc9, 0xc6, 0x85, 0xa1, 0x3d, - 0x47, 0x64, 0x1b, 0x8f, 0xf2, 0x60, 0x25, 0x6d, 0xa0, 0xef, 0xa3, 0x74, 0x23, 0xd8, 0x76, 0xf8, - 0x9b, 0x89, 0xe0, 0x13, 0x5e, 0x03, 0xcb, 0x96, 0xdd, 0xf3, 0x9c, 0x36, 0xf5, 0xe1, 0x66, 0xd3, - 0xed, 0x13, 0x47, 0x42, 0xb7, 0x42, 0x79, 0x0c, 0xb9, 0xa6, 0x8a, 0xdf, 0x12, 0xdf, 0x76, 0x4c, - 0x8d, 0xb9, 0xed, 0xe0, 0xd2, 0x9d, 0xe9, 0x78, 0xba, 0xf3, 0x6e, 0x24, 0x26, 0xaf, 0x25, 0x13, - 0x93, 0xcd, 0x91, 0xda, 0xf0, 0x58, 0x99, 0xc9, 0x6b, 0xa3, 0x33, 0x93, 0xf7, 0x8f, 0x35, 0xf2, - 0x98, 0xa9, 0xc9, 0x6b, 0xc3, 0x52, 0x93, 0xc2, 0x38, 0x63, 0x3d, 0x76, 0x6e, 0x32, 0x37, 0x69, - 0x6e, 0x92, 0x16, 0xeb, 0xe7, 0x4f, 0x10, 0xeb, 0xcf, 0x80, 0xfc, 0xbd, 0xae, 0x7b, 0x68, 0xde, - 0x77, 0x7b, 0x1e, 0xcd, 0x90, 0xf2, 0x78, 0x96, 0x00, 0x76, 0xdd, 0x9e, 0x97, 0x48, 0x04, 0xc4, - 0x93, 0x27, 0x02, 0x4b, 0xff, 0x57, 0x13, 0x81, 0x4f, 0x4f, 0x81, 0xb5, 0x74, 0x5f, 0x07, 0xcf, - 0x45, 0x7e, 0x83, 0x92, 0x22, 0x8e, 0x93, 0x01, 0x48, 0xec, 0x7a, 0x89, 0xf7, 0x05, 0xd9, 0x11, - 0xbe, 0x60, 0x37, 0xc3, 0x79, 0x03, 0xd2, 0xf3, 0xff, 0xa5, 0xbb, 0x9d, 0x3c, 0x0b, 0xb2, 0x29, - 0x8e, 0xc7, 0x0f, 0xdd, 0x33, 0x63, 0xe4, 0x07, 0xa1, 0x6f, 0x19, 0x95, 0x18, 0x08, 0x93, 0x25, - 0x06, 0xb9, 0xe3, 0x12, 0x83, 0xa9, 0xc7, 0x4f, 0x0c, 0xa6, 0x9f, 0x48, 0x62, 0x30, 0x93, 0x96, - 0x18, 0xc0, 0x0d, 0xde, 0x84, 0x68, 0x39, 0x70, 0x77, 0x36, 0x32, 0x22, 0x92, 0x3a, 0x00, 0x30, - 0x1b, 0xa4, 0x6f, 0xe5, 0x39, 0x00, 0xcc, 0x70, 0xb9, 0xca, 0x6b, 0x60, 0xc5, 0x4c, 0x59, 0xac, - 0x27, 0x9c, 0x6c, 0xd0, 0x41, 0x43, 0x1e, 0x4b, 0x55, 0x70, 0x7a, 0xc7, 0xf6, 0x9e, 0x50, 0x2d, - 0xa2, 0x54, 0x03, 0xeb, 0x69, 0xd4, 0x7a, 0x1d, 0xb7, 0xdd, 0xb3, 0x4f, 0x54, 0x2f, 0xd9, 0x0b, - 0x28, 0x3e, 0x91, 0x04, 0xa6, 0x84, 0xc1, 0x99, 0x54, 0x72, 0x8c, 0xc3, 0x13, 0xe5, 0x59, 0x65, - 0xb0, 0x4c, 0xac, 0x22, 0x59, 0xba, 0x7f, 0x16, 0xe4, 0x3a, 0x8d, 0x03, 0x7b, 0x20, 0xb5, 0xaf, - 0x35, 0x0e, 0xd8, 0x0a, 0x63, 0x8a, 0x40, 0x4b, 0x4d, 0x3b, 0x60, 0x25, 0x4e, 0x83, 0x31, 0xf4, - 0x1c, 0x98, 0x72, 0x3c, 0xfb, 0xd0, 0xaf, 0xf9, 0x17, 0x92, 0x56, 0x1f, 0x32, 0x42, 0x71, 0x28, - 0xa1, 0x1f, 0x01, 0xeb, 0x8c, 0x50, 0xda, 0x82, 0x06, 0x3c, 0x09, 0xc7, 0xf0, 0x44, 0x42, 0x41, - 0x20, 0xd4, 0xe0, 0xbc, 0x61, 0xd6, 0xf3, 0x65, 0xd8, 0xe3, 0xb3, 0x8c, 0x6c, 0x2c, 0xcb, 0x28, - 0xbd, 0x0a, 0xce, 0xa4, 0x8e, 0x1e, 0x29, 0x00, 0x3f, 0x9b, 0x63, 0x14, 0x80, 0xa2, 0x96, 0xde, - 0x0c, 0x49, 0xa6, 0x6a, 0xc0, 0xbb, 0x3d, 0x23, 0x1d, 0x9c, 0x4d, 0x1f, 0x3e, 0xd2, 0x18, 0x7e, - 0x4a, 0xc7, 0x69, 0x8c, 0x3f, 0xa7, 0x5d, 0xb0, 0x2a, 0xdb, 0x2d, 0x7b, 0xf0, 0xb8, 0x67, 0x62, - 0x7d, 0xde, 0xa6, 0x7b, 0x4b, 0xd9, 0xe9, 0x75, 0x1a, 0x5e, 0xf3, 0x3e, 0xee, 0xb7, 0x6c, 0xd9, - 0xe9, 0xda, 0x4d, 0x8f, 0x4c, 0xb7, 0xeb, 0xba, 0x87, 0xd4, 0x29, 0xb0, 0xf0, 0x34, 0x4b, 0x00, - 0x2a, 0x49, 0xf1, 0x44, 0x20, 0x74, 0x9c, 0x36, 0x8b, 0x50, 0xe4, 0x67, 0xa9, 0x07, 0x4e, 0x27, - 0xe8, 0x28, 0x6d, 0xcb, 0x79, 0xe8, 0x58, 0xfd, 0x46, 0x0b, 0x5e, 0x00, 0x05, 0x4a, 0xab, 0xd3, - 0xb5, 0xef, 0x39, 0x6f, 0x30, 0x6a, 0x80, 0x80, 0x6a, 0x14, 0x32, 0x48, 0x0f, 0x5e, 0x04, 0xf3, - 0x6d, 0xd7, 0xec, 0x36, 0xda, 0x96, 0x7b, 0xd8, 0x0e, 0xaa, 0xf0, 0xb3, 0x78, 0xae, 0xed, 0xe2, - 0x10, 0x56, 0xba, 0x3f, 0xc0, 0x7c, 0xa5, 0xd1, 0x6a, 0xd9, 0xf6, 0x49, 0x06, 0x3c, 0x0b, 0xf2, - 0xfe, 0x68, 0xce, 0x27, 0x6c, 0x36, 0x58, 0x04, 0x28, 0x7d, 0x31, 0x0b, 0x16, 0x13, 0x43, 0x41, - 0x0c, 0x56, 0x2c, 0xf6, 0x6d, 0x76, 0xfb, 0x2d, 0xdb, 0xb4, 0xa8, 0xe4, 0x98, 0xbd, 0xc6, 0x6a, - 0xa1, 0x83, 0xf2, 0xdd, 0x3d, 0x85, 0xa1, 0x35, 0x28, 0xf5, 0x1f, 0x02, 0xc5, 0x38, 0x4d, 0x27, - 0x94, 0x22, 0xdb, 0x30, 0x95, 0x86, 0xd1, 0x8d, 0xe4, 0xbd, 0x7b, 0x0a, 0xaf, 0x59, 0xe9, 0x2b, - 0x31, 0xc0, 0x73, 0x93, 0x0a, 0x2c, 0xad, 0x7e, 0x3b, 0x28, 0xd6, 0x24, 0xcf, 0x3e, 0xb4, 0x3c, - 0x0d, 0x72, 0x84, 0x54, 0xe9, 0x53, 0x53, 0x5c, 0xb9, 0x9b, 0xef, 0x1d, 0x28, 0xa7, 0x04, 0xe6, - 0x63, 0x83, 0xd3, 0xf8, 0x96, 0xb0, 0xe2, 0xf8, 0x8c, 0xee, 0xb9, 0x78, 0x8e, 0x1f, 0x11, 0x3e, - 0xef, 0x8f, 0xc5, 0x64, 0x5c, 0x1c, 0xd6, 0x93, 0x9e, 0x8f, 0x50, 0x4c, 0x78, 0x81, 0x37, 0xdb, - 0x6c, 0x78, 0x78, 0x12, 0x99, 0xee, 0x16, 0x58, 0xba, 0xef, 0x58, 0xb6, 0xd9, 0xb9, 0xef, 0xb6, - 0x6d, 0xfe, 0x2c, 0x73, 0x96, 0x22, 0x2e, 0x92, 0xc6, 0x1a, 0x69, 0x63, 0xc7, 0x39, 0xcf, 0x0d, - 0x9e, 0xb0, 0x4c, 0x87, 0x64, 0x93, 0xa7, 0x2c, 0x6b, 0x2c, 0xf7, 0xf0, 0x13, 0x1a, 0xca, 0x15, - 0xdd, 0x23, 0x95, 0xb9, 0xd4, 0xc3, 0xcf, 0x5e, 0x9e, 0x29, 0x66, 0x26, 0xdc, 0x2b, 0xbe, 0x09, - 0x00, 0xb7, 0x8d, 0x99, 0x49, 0x54, 0x3d, 0x47, 0xad, 0xc4, 0x56, 0x22, 0x9b, 0x1d, 0x7b, 0x70, - 0x6e, 0x40, 0x78, 0x31, 0xb2, 0xb1, 0x9e, 0xed, 0xb1, 0x4d, 0x1e, 0x99, 0x61, 0x60, 0x67, 0x3d, - 0xdb, 0x83, 0x1f, 0x66, 0x48, 0x4d, 0xb7, 0x7d, 0xcf, 0x39, 0xa0, 0x69, 0x23, 0x49, 0xdd, 0x03, - 0x26, 0xb1, 0xeb, 0x1e, 0x56, 0x68, 0x13, 0xab, 0x4d, 0x46, 0x04, 0x7c, 0xf0, 0xfa, 0x0f, 0x80, - 0xc5, 0xc7, 0x48, 0xbd, 0x4b, 0xdf, 0xe1, 0x4f, 0x4b, 0xd2, 0x74, 0x12, 0x81, 0x15, 0xe2, 0x30, - 0x13, 0x46, 0x17, 0x38, 0xce, 0x95, 0x47, 0xb5, 0xa5, 0x9e, 0xd3, 0x89, 0x29, 0xa5, 0x8c, 0x07, - 0x40, 0xc7, 0x9d, 0xa1, 0x24, 0x95, 0x7a, 0xec, 0x33, 0x14, 0xbe, 0xe3, 0x88, 0xaa, 0xc6, 0x3b, - 0xd3, 0xf4, 0x0c, 0x25, 0x39, 0xcc, 0x93, 0x9a, 0xdc, 0x7b, 0x98, 0xd1, 0x65, 0x47, 0x1b, 0x1d, - 0x33, 0xb8, 0x58, 0x9c, 0x14, 0x12, 0x71, 0x72, 0x33, 0xcd, 0xd8, 0xd8, 0x79, 0x71, 0xd2, 0xd0, - 0x52, 0x8e, 0x32, 0x67, 0x52, 0x8f, 0x32, 0xb9, 0xe0, 0x3b, 0x1f, 0x2f, 0x5a, 0x04, 0x45, 0x9a, - 0xa9, 0x21, 0x45, 0x9a, 0xe9, 0x13, 0x15, 0x69, 0xba, 0x31, 0xc3, 0x9b, 0xa5, 0x86, 0xf7, 0x9e, - 0x51, 0xeb, 0x3d, 0x60, 0x6f, 0x97, 0x26, 0xb6, 0xb6, 0x0b, 0x71, 0x6b, 0xcb, 0xc7, 0x22, 0x1a, - 0xb1, 0xb4, 0x0f, 0xc6, 0x2d, 0x0d, 0x1c, 0x67, 0x69, 0xbc, 0x95, 0x0d, 0x9e, 0x08, 0x14, 0xc6, - 0x3c, 0x11, 0x98, 0x7b, 0xec, 0x13, 0x81, 0x85, 0x93, 0x17, 0x02, 0x16, 0x27, 0x29, 0x04, 0x3c, - 0xa6, 0x23, 0xf9, 0xb1, 0xdc, 0x40, 0xae, 0xc1, 0xb6, 0xde, 0xcf, 0xc7, 0xf3, 0xc2, 0xa1, 0xbb, - 0xdd, 0xc8, 0x08, 0x26, 0xb3, 0xa7, 0x60, 0xfb, 0x2a, 0xb0, 0x7d, 0x7d, 0xea, 0xf6, 0x35, 0x37, - 0xc1, 0xf6, 0x35, 0x13, 0xdf, 0xbe, 0x7a, 0x31, 0x6d, 0x9e, 0xa2, 0xda, 0xbc, 0x35, 0xda, 0x09, - 0x3d, 0x01, 0x7d, 0x4e, 0xdb, 0x34, 0x4f, 0x1f, 0xbf, 0x69, 0xce, 0xa6, 0x6d, 0x9a, 0x1f, 0x73, - 0x6d, 0x27, 0x29, 0xb4, 0xff, 0x54, 0x26, 0xdc, 0x1e, 0xa5, 0x45, 0x93, 0xb1, 0x37, 0x13, 0x9b, - 0x60, 0x29, 0xe9, 0x95, 0x83, 0x4d, 0xc5, 0x62, 0x2c, 0x75, 0xb3, 0x7a, 0x71, 0x87, 0x9a, 0x8d, - 0x3b, 0x54, 0x6e, 0xc3, 0x14, 0xe7, 0x67, 0x8c, 0x0d, 0xd3, 0x40, 0xaa, 0xc5, 0x36, 0x17, 0x36, - 0x38, 0x1b, 0x6e, 0x2e, 0xde, 0xbd, 0x90, 0x59, 0xfa, 0x6e, 0x0e, 0x2c, 0x71, 0x7b, 0x1c, 0xe6, - 0x89, 0xd6, 0xc1, 0xec, 0x7d, 0xb7, 0xe7, 0xf1, 0xbb, 0x8e, 0xe0, 0x7b, 0x58, 0x09, 0x7c, 0x66, - 0xbc, 0x12, 0x78, 0x76, 0xcc, 0x12, 0xf8, 0x40, 0xa1, 0x5b, 0x18, 0xbb, 0xd0, 0x9d, 0x1b, 0x56, - 0xe8, 0x3e, 0x18, 0x56, 0x7c, 0xf6, 0xcd, 0xed, 0x85, 0xb4, 0x4d, 0x9f, 0x2f, 0x90, 0x09, 0x2b, - 0xcf, 0x07, 0xc3, 0x2a, 0xcf, 0xd3, 0xc7, 0x0e, 0x34, 0x59, 0xd9, 0x39, 0x56, 0xea, 0x9d, 0x8d, - 0x97, 0x7a, 0xbf, 0xef, 0x0a, 0xa7, 0xdf, 0x2b, 0x80, 0x33, 0x61, 0x3e, 0x5c, 0x6b, 0x74, 0x3d, - 0xa7, 0xe9, 0x74, 0x1a, 0x6d, 0xef, 0xc4, 0xc7, 0x58, 0xcf, 0x07, 0x65, 0x9e, 0x95, 0x44, 0x98, - 0x1d, 0x10, 0x2b, 0xab, 0xf1, 0xc0, 0xf3, 0xa0, 0x40, 0x86, 0xa0, 0x47, 0xf7, 0x9e, 0xcb, 0x58, - 0xcc, 0xf7, 0x9c, 0x0e, 0xd9, 0x44, 0x19, 0x2e, 0x3c, 0x07, 0x08, 0xfd, 0x20, 0x23, 0x5a, 0x0c, - 0x9b, 0x59, 0x2e, 0x14, 0xdb, 0x8d, 0x0b, 0x89, 0xdd, 0xf8, 0xfb, 0xc0, 0x4a, 0x27, 0x9a, 0x94, - 0xe9, 0x58, 0x76, 0xdb, 0x73, 0xbc, 0x23, 0x76, 0x82, 0xb4, 0xcc, 0xb5, 0x29, 0xac, 0x09, 0x6a, - 0x40, 0xe4, 0xbb, 0x70, 0x07, 0x3a, 0xe3, 0xb9, 0xf2, 0x45, 0xae, 0x37, 0xe5, 0xe1, 0x76, 0x9c, - 0x87, 0x30, 0x30, 0xcd, 0x4e, 0x40, 0x94, 0xe7, 0x74, 0x2f, 0x48, 0xb6, 0x3e, 0x97, 0x01, 0x6b, - 0x3c, 0x65, 0xce, 0x78, 0xfc, 0x33, 0xa3, 0x0f, 0x0f, 0x6e, 0x79, 0x06, 0x97, 0x78, 0x8b, 0x03, - 0x9d, 0x2c, 0x78, 0xad, 0x76, 0xd2, 0x28, 0x90, 0x0c, 0xd3, 0xf2, 0x0e, 0xef, 0x05, 0x19, 0x26, - 0xf9, 0x0d, 0x9f, 0x05, 0xf3, 0x9d, 0x56, 0xe3, 0xc8, 0xec, 0x3a, 0xed, 0x03, 0xcf, 0x6d, 0xfb, - 0x95, 0x67, 0x7f, 0x37, 0x39, 0x47, 0x1a, 0x30, 0x83, 0x93, 0xb4, 0x8b, 0x22, 0x5a, 0x4e, 0xa3, - 0x45, 0x11, 0xd9, 0x45, 0x0c, 0x02, 0x94, 0x19, 0x2c, 0x3d, 0x65, 0x06, 0xe9, 0x29, 0xf3, 0xc7, - 0xa3, 0x03, 0x35, 0x91, 0x0a, 0xe7, 0x7d, 0x63, 0x09, 0xe7, 0x71, 0xce, 0xd5, 0x52, 0xce, 0x9f, - 0x96, 0xfe, 0x37, 0xdd, 0x8d, 0x59, 0x18, 0x33, 0x13, 0x86, 0x27, 0xc8, 0x84, 0xb7, 0xc0, 0xf2, - 0xeb, 0x0d, 0xc7, 0x33, 0xfb, 0x6d, 0xcf, 0x69, 0x99, 0x8d, 0x76, 0xef, 0x75, 0xbb, 0x6b, 0x5b, - 0xc5, 0x65, 0x3a, 0xe4, 0x12, 0x69, 0xaa, 0x93, 0x16, 0x89, 0x35, 0xc0, 0x2a, 0xa0, 0xd5, 0x10, - 0xa2, 0x32, 0xd4, 0x62, 0x57, 0x27, 0xc8, 0xfa, 0x4e, 0xe1, 0x02, 0xeb, 0xab, 0xb2, 0xfc, 0xf1, - 0x83, 0xa0, 0xc0, 0xc5, 0xcc, 0xe2, 0x1a, 0x95, 0xd5, 0x4a, 0x38, 0x01, 0x39, 0x6a, 0xdb, 0xcd, - 0x60, 0x1e, 0x95, 0xa4, 0x5c, 0xbb, 0x60, 0x7d, 0xb8, 0x49, 0x4d, 0xe4, 0xe4, 0x1f, 0xe3, 0x84, - 0xae, 0xbc, 0x08, 0xe6, 0x4d, 0x5e, 0x22, 0xe5, 0x05, 0x30, 0xc7, 0x1f, 0x81, 0x94, 0x7e, 0x3f, - 0x03, 0x60, 0x5c, 0xe7, 0xe9, 0xc6, 0xf8, 0x45, 0xb0, 0x10, 0xf7, 0x98, 0xcc, 0xe5, 0x8b, 0x8f, - 0x6a, 0xf3, 0xbc, 0xbb, 0x94, 0x71, 0xec, 0xd3, 0x1a, 0xea, 0x6a, 0xb3, 0xc3, 0x5d, 0xed, 0x48, - 0xd7, 0xfd, 0x1e, 0x2e, 0x2c, 0x38, 0x41, 0x02, 0x31, 0xf7, 0xa8, 0x16, 0x44, 0x06, 0x45, 0x0e, - 0x83, 0x84, 0x62, 0x95, 0xbe, 0x24, 0x80, 0x73, 0xc1, 0x75, 0xea, 0xf4, 0x48, 0x36, 0x8c, 0xbf, - 0xcc, 0x98, 0xfc, 0x65, 0x13, 0xfc, 0x5d, 0x00, 0x85, 0xe0, 0x5a, 0x37, 0x09, 0x5b, 0x3e, 0xfb, - 0x20, 0x00, 0x19, 0xee, 0xa0, 0x0b, 0xcb, 0xa5, 0xb8, 0xb0, 0x5e, 0xe4, 0x96, 0x92, 0x09, 0xcf, - 0xc8, 0xe9, 0x3c, 0xae, 0x63, 0x4a, 0x3a, 0x95, 0xe9, 0x09, 0x9d, 0xca, 0xe3, 0xe8, 0x66, 0xe9, - 0xc7, 0x0b, 0xa0, 0xa0, 0x2b, 0x35, 0xba, 0x74, 0x44, 0xe7, 0x4a, 0x60, 0x26, 0x58, 0x66, 0x5f, - 0xd9, 0xf2, 0x8f, 0x6a, 0xd3, 0x4d, 0x7f, 0x8d, 0xfd, 0xbf, 0x16, 0xbc, 0x0c, 0x66, 0xc3, 0x24, - 0x84, 0x12, 0x2c, 0x83, 0x47, 0xb5, 0x19, 0x8f, 0x65, 0x20, 0xec, 0x87, 0x05, 0x3f, 0x08, 0xc4, - 0x81, 0xec, 0x5b, 0xa4, 0xe8, 0x4b, 0x8f, 0x6a, 0x0b, 0x56, 0x3c, 0xf5, 0x8e, 0x7f, 0x5b, 0x70, - 0x0d, 0x4c, 0x77, 0xed, 0x03, 0x62, 0xf1, 0x4b, 0xfe, 0x1b, 0x12, 0xff, 0x6b, 0xb4, 0x9e, 0x96, - 0xc0, 0x0c, 0x6d, 0x0c, 0x75, 0x94, 0x30, 0x4f, 0x20, 0x84, 0x79, 0xfa, 0x77, 0xb8, 0x6d, 0x4c, - 0x0d, 0xd7, 0xbd, 0x9f, 0x1c, 0x1e, 0xdc, 0x21, 0x55, 0x94, 0x6b, 0xbc, 0x3f, 0x0d, 0x44, 0xf9, - 0xae, 0x05, 0xf3, 0x4d, 0x40, 0x73, 0x58, 0xb3, 0xdf, 0x75, 0x98, 0xae, 0x2c, 0xf2, 0xe3, 0xd7, - 0xbb, 0x0e, 0x9e, 0x21, 0x08, 0xf5, 0xae, 0x03, 0x9f, 0x01, 0xd3, 0x9e, 0x4b, 0x31, 0x67, 0xd2, - 0x31, 0xa7, 0x3c, 0x97, 0xe0, 0x3d, 0x1d, 0xab, 0x76, 0xe4, 0x37, 0x32, 0x57, 0x04, 0x9a, 0x09, - 0x70, 0x55, 0x8d, 0xa7, 0x01, 0xe8, 0x79, 0x8d, 0x2e, 0x43, 0x01, 0x11, 0x0a, 0x83, 0x4a, 0x1e, - 0x3c, 0x07, 0x66, 0xed, 0xb6, 0xe5, 0x23, 0x14, 0x42, 0x84, 0x19, 0x0a, 0x93, 0x3c, 0xf8, 0x21, - 0x20, 0xb2, 0x78, 0x65, 0xde, 0xb3, 0x1b, 0x5e, 0xbf, 0x6b, 0xfb, 0xd7, 0x60, 0x17, 0xb8, 0x3d, - 0xa8, 0xae, 0xd4, 0xb6, 0xfd, 0x36, 0xbc, 0xc8, 0x90, 0xd9, 0x77, 0x0f, 0xbe, 0x02, 0x16, 0xfc, - 0xc0, 0x49, 0x4f, 0x21, 0x88, 0x6e, 0xa4, 0xdc, 0x6f, 0xa5, 0x71, 0x32, 0x40, 0xc0, 0xf3, 0x4d, - 0xfe, 0x13, 0xbe, 0x08, 0x0a, 0x94, 0x02, 0x7b, 0x9e, 0x34, 0x3b, 0xf8, 0x98, 0x89, 0x74, 0xf7, - 0x1f, 0x34, 0x61, 0xd0, 0x0c, 0x7f, 0xc3, 0x12, 0x98, 0x8f, 0xe4, 0x63, 0xb6, 0x7b, 0x34, 0x0e, - 0x09, 0xb8, 0x10, 0x8a, 0x47, 0xa5, 0x38, 0x91, 0x80, 0x08, 0xce, 0x53, 0x3e, 0x4e, 0x28, 0x1f, - 0xb5, 0x47, 0x12, 0xec, 0x40, 0x42, 0x04, 0xa3, 0x48, 0x31, 0xf2, 0x4c, 0x40, 0x6a, 0x0f, 0x6e, - 0xd3, 0x1d, 0x77, 0xd3, 0x6d, 0xb7, 0xed, 0xa6, 0x67, 0x76, 0xed, 0x46, 0x2f, 0x2c, 0x5f, 0x45, - 0xb3, 0x94, 0x43, 0x0c, 0x4c, 0x11, 0xb0, 0x68, 0x25, 0x20, 0xc4, 0xe0, 0xed, 0x6e, 0xd7, 0xed, - 0xd2, 0x5c, 0x2d, 0x8f, 0xfd, 0x0f, 0xf8, 0x32, 0x10, 0xb9, 0xe9, 0x9b, 0xf4, 0x41, 0xd7, 0x32, - 0xd5, 0x0b, 0x38, 0xf8, 0xa0, 0x0b, 0x2f, 0x44, 0xf3, 0xaf, 0xb8, 0x16, 0xf5, 0xb2, 0x8d, 0xbe, - 0xe5, 0xb8, 0xb4, 0x5f, 0x93, 0x6e, 0x2a, 0xf2, 0x18, 0x50, 0x10, 0x69, 0x6f, 0xc2, 0xab, 0x29, - 0x09, 0xc7, 0xaa, 0xff, 0x2c, 0x25, 0x99, 0x53, 0x5c, 0x02, 0x0b, 0x9d, 0x66, 0xa3, 0x63, 0xde, - 0x73, 0x5a, 0xb6, 0xd9, 0x72, 0xda, 0x0f, 0x8a, 0xa7, 0x29, 0xe2, 0x1c, 0x81, 0x6e, 0x3b, 0x2d, - 0xbb, 0xea, 0xb4, 0x1f, 0xc0, 0x17, 0xc1, 0x1c, 0xe5, 0xb7, 0xe9, 0xb6, 0x3d, 0xfb, 0x0d, 0xaf, - 0xb8, 0x4e, 0xad, 0x6d, 0x65, 0xc0, 0x33, 0x4a, 0xed, 0x23, 0x4c, 0x17, 0xb6, 0xe2, 0x23, 0xc2, - 0x1b, 0x60, 0xbe, 0xc3, 0x5e, 0x01, 0x99, 0x4e, 0xfb, 0x9e, 0x5b, 0x3c, 0x43, 0x67, 0x39, 0xf8, - 0x46, 0xc8, 0x3f, 0xbc, 0xe9, 0xf0, 0x4f, 0x8f, 0x12, 0xc1, 0xee, 0xec, 0xc8, 0x60, 0xf7, 0xe4, - 0x32, 0x8c, 0xd2, 0x67, 0x05, 0x7a, 0x78, 0x17, 0x84, 0x1a, 0xca, 0xcb, 0x16, 0x17, 0xd8, 0x62, - 0x3b, 0xbe, 0x00, 0x4a, 0x76, 0x7c, 0xe1, 0x6f, 0x8b, 0xf7, 0xde, 0xd9, 0x61, 0xde, 0xfb, 0xd8, - 0x60, 0xf9, 0x22, 0x28, 0x46, 0x83, 0xb6, 0x1d, 0xcf, 0xe1, 0xd4, 0x3e, 0x47, 0x15, 0x76, 0x35, - 0x1c, 0x32, 0x68, 0xa6, 0xca, 0xcb, 0x77, 0x6c, 0xba, 0x87, 0x9d, 0x96, 0x1d, 0x75, 0x9c, 0x8a, - 0x77, 0xac, 0x04, 0xcd, 0xb4, 0x63, 0x05, 0x2c, 0x86, 0x1d, 0x99, 0x69, 0xfa, 0x55, 0xb6, 0xf5, - 0x81, 0x3a, 0x08, 0x09, 0xc2, 0x4c, 0x3d, 0xbd, 0xd8, 0x77, 0xa4, 0xf2, 0x33, 0xbc, 0xca, 0xcb, - 0x60, 0x25, 0x41, 0xda, 0x57, 0xfb, 0xd9, 0xa1, 0x6a, 0x0f, 0xe3, 0x74, 0x89, 0x6a, 0x97, 0x7e, - 0x22, 0x03, 0xa6, 0x7d, 0x87, 0x49, 0xb6, 0x52, 0xfd, 0x9e, 0xdd, 0x65, 0x6b, 0x4a, 0x7f, 0x13, - 0x18, 0xad, 0x30, 0xb0, 0x5b, 0x96, 0xe4, 0x37, 0x7d, 0xc1, 0xd6, 0x61, 0xd2, 0xcd, 0x3a, 0x1d, - 0x82, 0x43, 0x0b, 0x3c, 0x44, 0x82, 0xf3, 0x98, 0xfe, 0x3e, 0xd1, 0xe5, 0xc7, 0x92, 0x0e, 0x0a, - 0x5c, 0xd2, 0x4b, 0xe8, 0x36, 0xa3, 0xdc, 0x89, 0xfe, 0x86, 0x45, 0x30, 0x13, 0x94, 0x9d, 0x7c, - 0x96, 0x82, 0x4f, 0x2e, 0xac, 0x0a, 0x7c, 0x58, 0xdd, 0xfc, 0xf6, 0x0a, 0x98, 0x8f, 0x3d, 0xe5, - 0x84, 0x6b, 0x34, 0x25, 0x35, 0x75, 0x43, 0x32, 0xea, 0xba, 0x59, 0x57, 0x6f, 0xaa, 0xda, 0x6d, - 0x55, 0x3c, 0x05, 0x57, 0x69, 0x3d, 0x2c, 0x80, 0x1b, 0x78, 0x5f, 0x51, 0x77, 0x44, 0x0b, 0x3e, - 0x15, 0x43, 0xc7, 0x8a, 0xba, 0x43, 0xe0, 0x5f, 0xcf, 0xc0, 0xa7, 0xc1, 0x59, 0xae, 0xa1, 0x22, - 0x55, 0xab, 0xa6, 0xa2, 0x9b, 0xdb, 0x1a, 0xbe, 0x2d, 0x61, 0x19, 0xc9, 0xe2, 0x37, 0x32, 0x70, - 0x2d, 0x46, 0xf2, 0xd5, 0x3a, 0xaa, 0x23, 0x59, 0xfc, 0x66, 0x06, 0x6e, 0x80, 0x33, 0x1c, 0x5c, - 0x47, 0xba, 0xae, 0x68, 0xaa, 0x59, 0xc3, 0xda, 0x0e, 0x46, 0xba, 0x2e, 0x7e, 0x2b, 0x03, 0x9f, - 0x05, 0x25, 0x0e, 0x03, 0x49, 0xb8, 0xba, 0x6f, 0xca, 0x8a, 0x54, 0xd5, 0x76, 0x4c, 0x03, 0xe1, - 0x3d, 0x45, 0x95, 0x0c, 0x24, 0x8b, 0xbf, 0x93, 0x81, 0x90, 0x4e, 0x2f, 0x40, 0xd4, 0x6e, 0x8a, - 0xbf, 0x9b, 0x81, 0x45, 0x7a, 0x1c, 0x15, 0xc0, 0xa4, 0x4a, 0x05, 0xd5, 0x08, 0xf6, 0xef, 0x65, - 0xe0, 0x05, 0xb0, 0xce, 0xb5, 0xa8, 0x9a, 0xa9, 0x6a, 0x86, 0xb2, 0xad, 0x54, 0x24, 0x43, 0xd1, - 0x54, 0xf1, 0x0f, 0x92, 0x9c, 0xed, 0xd5, 0xab, 0x86, 0x52, 0xab, 0x22, 0xb3, 0xb2, 0xab, 0x29, - 0x15, 0xa4, 0x8b, 0x5f, 0xce, 0x26, 0xa6, 0xbd, 0xa7, 0xdd, 0x42, 0xb2, 0x59, 0x43, 0x78, 0x4f, - 0x52, 0x91, 0x6a, 0x54, 0xf7, 0xc5, 0xaf, 0xa4, 0xa3, 0x18, 0x68, 0xaf, 0xa6, 0x61, 0x09, 0x2b, - 0xd5, 0x7d, 0xf1, 0xab, 0x59, 0x78, 0x9a, 0xde, 0x03, 0x0e, 0x17, 0x41, 0x47, 0x64, 0xf6, 0x77, - 0xf6, 0xc5, 0xaf, 0x65, 0xe1, 0x45, 0x70, 0x9e, 0xe7, 0xbe, 0x6a, 0x20, 0xac, 0x4a, 0x86, 0x72, - 0x0b, 0x99, 0x3a, 0xc2, 0xb7, 0x94, 0x0a, 0x12, 0xff, 0x3b, 0x0b, 0xcf, 0xd0, 0xab, 0x78, 0x01, - 0x52, 0x59, 0x92, 0x4d, 0x8c, 0x5e, 0xad, 0x23, 0xdd, 0x10, 0x7f, 0x5a, 0x80, 0x67, 0xc1, 0x53, - 0xb1, 0x15, 0x96, 0xea, 0xc6, 0xae, 0x86, 0x95, 0x8f, 0x22, 0x59, 0xfc, 0x94, 0x90, 0x98, 0x62, - 0x4d, 0xda, 0xdf, 0x43, 0xaa, 0x41, 0xbb, 0x2b, 0x18, 0xc9, 0xe2, 0xa7, 0x85, 0x04, 0x73, 0xdb, - 0x1a, 0x2e, 0x2b, 0xb2, 0x8c, 0x54, 0xf1, 0x67, 0x84, 0x84, 0x68, 0x55, 0xcd, 0xd8, 0xa6, 0xef, - 0xcd, 0x7e, 0x56, 0x80, 0x25, 0x70, 0x8e, 0x9f, 0x34, 0x32, 0x76, 0x35, 0x99, 0x20, 0x98, 0x52, - 0xb5, 0xaa, 0xdd, 0x46, 0xb2, 0xf8, 0x73, 0x02, 0x3c, 0x4f, 0x6f, 0x69, 0x70, 0xbd, 0xd9, 0xe2, - 0x48, 0xe5, 0x2a, 0x12, 0x7f, 0x5e, 0x48, 0x4c, 0x9d, 0x4a, 0xc4, 0x24, 0xcc, 0x47, 0xdc, 0x7d, - 0x46, 0x48, 0xac, 0x21, 0x9b, 0xb6, 0x69, 0x28, 0x7b, 0x48, 0xab, 0x1b, 0xe2, 0x2f, 0x24, 0x79, - 0xac, 0x68, 0xea, 0x76, 0x55, 0xa9, 0x18, 0xe2, 0x67, 0x05, 0xb8, 0x42, 0x1d, 0x71, 0xd0, 0xb2, - 0xa3, 0xa9, 0x48, 0xfc, 0xc5, 0x24, 0xc1, 0x2a, 0x52, 0x77, 0xf8, 0x11, 0x7f, 0x49, 0x80, 0x9b, - 0xe0, 0x72, 0x9c, 0xa0, 0xac, 0x10, 0x7d, 0x91, 0xaa, 0xe1, 0xe8, 0xdb, 0x92, 0x52, 0x45, 0xb2, - 0xf8, 0x39, 0x01, 0x5e, 0x01, 0x17, 0x53, 0xb8, 0x43, 0xaa, 0xa1, 0x18, 0xfb, 0xa6, 0xa1, 0x69, - 0x66, 0x55, 0xc2, 0x3b, 0x48, 0xfc, 0x65, 0x01, 0x5e, 0x02, 0x17, 0x52, 0x30, 0xeb, 0x58, 0xf1, - 0xd1, 0x34, 0x75, 0x47, 0xfc, 0x15, 0x01, 0x3e, 0x03, 0x9e, 0x8e, 0xad, 0xa5, 0x5e, 0xaf, 0xd5, - 0x34, 0x6c, 0x20, 0xd9, 0xdc, 0x43, 0xb2, 0x22, 0x99, 0xc6, 0x7e, 0x0d, 0x89, 0x9f, 0x17, 0xe0, - 0x35, 0xb0, 0x39, 0x48, 0x0d, 0xc9, 0x26, 0x96, 0xd4, 0x1d, 0x44, 0x45, 0xad, 0x4b, 0x86, 0xa2, - 0x6f, 0x2b, 0x54, 0xd6, 0x5f, 0x10, 0xe0, 0x55, 0x70, 0x69, 0xd0, 0x0d, 0x98, 0x18, 0xe9, 0x5a, - 0x1d, 0x57, 0x88, 0x3a, 0x2a, 0x1a, 0x56, 0x8c, 0x7d, 0xf1, 0x8b, 0x02, 0x3c, 0x07, 0x8a, 0x09, - 0x65, 0x43, 0x77, 0x0c, 0xa4, 0x12, 0xa3, 0x15, 0x7f, 0x35, 0xb9, 0xf2, 0x61, 0x53, 0x24, 0xc2, - 0x5f, 0x4b, 0x8a, 0x30, 0xb0, 0x78, 0x45, 0x35, 0x10, 0xbe, 0x25, 0x55, 0xe9, 0x8c, 0xf5, 0x3d, - 0xa9, 0x5a, 0x15, 0x7f, 0x3d, 0x49, 0x2f, 0x86, 0x53, 0xc6, 0x0a, 0xda, 0x16, 0x7f, 0x23, 0x29, - 0x66, 0xc2, 0x52, 0x55, 0xf3, 0xad, 0xd8, 0x54, 0xd4, 0x6d, 0x0d, 0xef, 0xf9, 0x16, 0xfd, 0xb6, - 0x90, 0x30, 0x46, 0x82, 0x29, 0x55, 0x11, 0x36, 0xcc, 0x3d, 0xa4, 0xeb, 0xd2, 0x0e, 0x12, 0x7f, - 0x33, 0xa9, 0x76, 0xc4, 0x18, 0x15, 0x99, 0xad, 0xd8, 0x2e, 0x92, 0x64, 0x84, 0xc5, 0x2f, 0x27, - 0xe5, 0x55, 0xc3, 0xda, 0x2d, 0x45, 0x46, 0x26, 0x46, 0xdb, 0x08, 0x63, 0x84, 0xc3, 0x1e, 0xe2, - 0x57, 0x84, 0x84, 0x71, 0x6e, 0x57, 0xb5, 0xdb, 0x81, 0x82, 0x7c, 0x35, 0xb9, 0xec, 0x92, 0xaa, - 0xa9, 0xfb, 0x7b, 0x64, 0x24, 0x59, 0xd1, 0x03, 0x4b, 0xf9, 0x5a, 0x1a, 0xd7, 0x21, 0x4b, 0x64, - 0x7e, 0xe2, 0xd7, 0x85, 0x84, 0x8b, 0xe4, 0x35, 0xa3, 0x82, 0x30, 0xf3, 0x6a, 0x48, 0xfc, 0x46, - 0x12, 0x51, 0x51, 0x6f, 0x49, 0x55, 0x45, 0x1e, 0x98, 0xe2, 0x37, 0x05, 0xf8, 0x3c, 0x78, 0x8e, - 0xe7, 0x5b, 0xc1, 0xba, 0x61, 0xee, 0x6a, 0x35, 0xb3, 0x2a, 0x55, 0x6e, 0xea, 0xe1, 0xe3, 0x52, - 0x93, 0x0d, 0x24, 0x7e, 0x2b, 0x39, 0x99, 0x3d, 0xe9, 0x8e, 0x59, 0xc6, 0x48, 0x92, 0x8d, 0x5d, - 0x13, 0xdd, 0xa9, 0x20, 0x44, 0xc2, 0xc0, 0x6f, 0x27, 0x3d, 0x0e, 0x9d, 0x8c, 0xba, 0xad, 0x99, - 0x35, 0xa9, 0x72, 0x93, 0xac, 0xc0, 0x1f, 0x27, 0x1d, 0x43, 0x45, 0x53, 0x75, 0xe2, 0x93, 0x54, - 0x9f, 0xc2, 0x9f, 0x24, 0xa7, 0xc0, 0xf9, 0x52, 0xe2, 0xdd, 0x6e, 0x49, 0x4a, 0x95, 0x6a, 0xf5, - 0x3b, 0xc9, 0x29, 0xd0, 0xa0, 0x64, 0x60, 0x49, 0xd5, 0xa5, 0x0a, 0xd5, 0x0d, 0x59, 0x43, 0xbe, - 0xdf, 0x41, 0x77, 0x14, 0xdd, 0xd0, 0xc5, 0xbf, 0x4a, 0x2a, 0x77, 0x55, 0xd3, 0x6a, 0xa6, 0x8c, - 0x0c, 0x54, 0x21, 0x11, 0xe3, 0xaf, 0x93, 0xcd, 0x44, 0x07, 0xf7, 0x24, 0x75, 0x9f, 0x88, 0x45, - 0x17, 0xbf, 0x93, 0xd4, 0x55, 0x49, 0x96, 0x49, 0x00, 0x33, 0x15, 0xb5, 0xa2, 0xed, 0xd5, 0xaa, - 0xc8, 0x40, 0xe2, 0xdf, 0x24, 0xdd, 0xa9, 0xb4, 0x57, 0x56, 0x76, 0xea, 0x5a, 0x5d, 0x17, 0xff, - 0x36, 0xd9, 0x54, 0xae, 0xeb, 0x64, 0x39, 0x30, 0x12, 0xff, 0x2e, 0x49, 0x39, 0x74, 0x73, 0x51, - 0xf0, 0xfb, 0xfb, 0xa4, 0xe2, 0xc6, 0xfd, 0xa9, 0x4f, 0xe8, 0xbb, 0x03, 0x63, 0x10, 0xeb, 0xbd, - 0x85, 0x54, 0x43, 0xfc, 0x87, 0x61, 0xae, 0xb4, 0x86, 0x54, 0x99, 0xc4, 0xf8, 0x7f, 0x4a, 0xae, - 0x4b, 0x5d, 0x95, 0x51, 0x45, 0xa9, 0xed, 0x22, 0x4c, 0xc5, 0xfd, 0xcf, 0x02, 0x7c, 0x0e, 0x3c, - 0x13, 0x33, 0xeb, 0x4a, 0x9d, 0xf8, 0x0c, 0x53, 0xda, 0xc1, 0x08, 0xc5, 0xc3, 0xca, 0xbf, 0x08, - 0xf0, 0x32, 0xd8, 0x48, 0xda, 0x35, 0xf1, 0xa1, 0x24, 0xaa, 0x21, 0x6c, 0x22, 0x8c, 0x35, 0x2c, - 0xfe, 0x9b, 0x30, 0x10, 0xa3, 0x0d, 0x53, 0x21, 0xb2, 0x24, 0xe4, 0x90, 0x2c, 0xfe, 0xbb, 0x90, - 0x12, 0xfb, 0x76, 0x24, 0x03, 0xdd, 0x96, 0xf6, 0xc5, 0xff, 0x48, 0x8a, 0x84, 0x45, 0xcc, 0x98, - 0x96, 0x7c, 0x2f, 0x39, 0x04, 0xeb, 0x1d, 0x86, 0x90, 0xff, 0x4c, 0xb2, 0x7a, 0x0b, 0x61, 0xea, - 0xae, 0xa8, 0x17, 0x0d, 0xac, 0x4c, 0xfc, 0xaf, 0xa4, 0x95, 0x32, 0x8f, 0xc2, 0x79, 0xf9, 0x1f, - 0xcd, 0x25, 0xfc, 0xf7, 0x4e, 0x55, 0x2b, 0x4b, 0x55, 0x7f, 0xa1, 0xd1, 0x2d, 0x84, 0xf7, 0x6f, - 0xd3, 0x55, 0xfa, 0xb3, 0x5c, 0x42, 0xd2, 0x0c, 0x4f, 0x46, 0x95, 0xaa, 0xa2, 0x22, 0xf1, 0xcf, - 0x73, 0x70, 0x0b, 0x5c, 0x4d, 0x69, 0x8f, 0xa9, 0xb3, 0x29, 0xa9, 0x8c, 0xde, 0x5f, 0xe4, 0x12, - 0x33, 0x60, 0xf8, 0x89, 0x88, 0xfb, 0xed, 0x5c, 0x52, 0x12, 0x3e, 0x5a, 0x5d, 0xbd, 0x2d, 0x51, - 0x61, 0xff, 0xe5, 0x10, 0x04, 0x8c, 0x3e, 0xe2, 0x1b, 0xc8, 0x3b, 0xb9, 0xcd, 0x07, 0xec, 0xbf, - 0x2a, 0x04, 0xe7, 0x97, 0x2c, 0xbd, 0xa4, 0x56, 0x47, 0x24, 0x45, 0x02, 0xb8, 0x16, 0xa5, 0x97, - 0x11, 0xbc, 0x2e, 0xd7, 0xc4, 0xcc, 0x20, 0xd8, 0xa8, 0xd4, 0xc4, 0x6c, 0x0a, 0xb8, 0xaa, 0x8b, - 0xc2, 0xa6, 0x0a, 0xc4, 0x64, 0x35, 0x1f, 0x42, 0xb0, 0x40, 0x50, 0x55, 0x8d, 0x79, 0x32, 0xdd, - 0x7f, 0x24, 0x4f, 0x60, 0x77, 0x42, 0x50, 0x06, 0x2e, 0xfb, 0xb1, 0x9f, 0x78, 0x84, 0x00, 0x98, - 0xdd, 0x74, 0x29, 0xb3, 0x89, 0x42, 0x39, 0x3c, 0xe7, 0xaf, 0x85, 0x1f, 0x60, 0x91, 0x5a, 0xc1, - 0xfb, 0x35, 0x83, 0xfa, 0x67, 0x22, 0xb4, 0x53, 0xf0, 0x8c, 0x9f, 0x5e, 0xc5, 0x9b, 0xa9, 0xef, - 0x16, 0x33, 0xe9, 0x7d, 0x99, 0x15, 0x88, 0xd9, 0xcd, 0x46, 0xf4, 0xef, 0x30, 0x8c, 0xa3, 0x8e, - 0x0d, 0x4f, 0x83, 0x55, 0x16, 0x4a, 0x30, 0x0d, 0xe5, 0x5c, 0x3e, 0xbe, 0x0e, 0xd6, 0xe2, 0x4d, - 0x81, 0xc5, 0x88, 0x99, 0xc1, 0x36, 0x12, 0x75, 0x69, 0x5b, 0x76, 0xf3, 0x75, 0x3a, 0xf7, 0xa8, - 0xdc, 0x41, 0x65, 0x59, 0x09, 0x32, 0x74, 0xe2, 0x99, 0x88, 0x71, 0x53, 0xfa, 0x04, 0x5c, 0x93, - 0xb0, 0xa1, 0x54, 0x94, 0x9a, 0xa4, 0x1a, 0xe6, 0x47, 0x34, 0x45, 0x45, 0xb2, 0x98, 0x81, 0x0b, - 0x00, 0x90, 0x36, 0xe2, 0x35, 0x6f, 0x21, 0x31, 0x0b, 0x57, 0x80, 0x48, 0xbe, 0x65, 0x45, 0xaf, - 0x68, 0xaa, 0xea, 0xaf, 0xbd, 0x00, 0xe7, 0x41, 0x9e, 0x40, 0x7d, 0xcb, 0xcd, 0x6d, 0x36, 0xe9, - 0x9a, 0xc5, 0x37, 0x73, 0xb0, 0x08, 0x56, 0x74, 0x43, 0xf7, 0x17, 0x72, 0x1b, 0x61, 0x53, 0x53, - 0x77, 0x34, 0x7f, 0xfc, 0xa7, 0xc0, 0x72, 0xac, 0x85, 0x85, 0xc8, 0x0c, 0x95, 0x2f, 0xdf, 0xa0, - 0xd7, 0x2b, 0x15, 0xa4, 0xeb, 0xdb, 0x75, 0x32, 0xbb, 0xab, 0x00, 0x44, 0x95, 0x24, 0x38, 0x0b, - 0x72, 0x2a, 0xc9, 0xe2, 0xe8, 0x8a, 0xdf, 0xc4, 0x8a, 0x5e, 0x33, 0x91, 0x4a, 0x96, 0x49, 0x16, - 0x33, 0x9b, 0xdb, 0x54, 0x59, 0x62, 0x65, 0x23, 0xb8, 0x08, 0x0a, 0x7a, 0x45, 0xe6, 0xa4, 0xcc, - 0x00, 0xd1, 0x3f, 0x53, 0x10, 0xc1, 0x1c, 0x01, 0x44, 0xff, 0x4a, 0xe1, 0xfa, 0x9f, 0x16, 0x80, - 0xa0, 0x2b, 0x35, 0x58, 0x03, 0x73, 0xfc, 0x1d, 0x77, 0x78, 0x36, 0x76, 0xcd, 0x26, 0x71, 0x15, - 0x7a, 0xfd, 0xdc, 0x90, 0x56, 0xff, 0x66, 0x44, 0x49, 0x78, 0x2b, 0x9b, 0x81, 0x1f, 0xe3, 0xfe, - 0x6d, 0x0e, 0x7f, 0x7f, 0x1c, 0x5e, 0x1e, 0x3c, 0x37, 0x4b, 0xb9, 0x0e, 0xbf, 0x3e, 0xf2, 0x02, - 0x3a, 0x34, 0xc1, 0x5a, 0xfa, 0xab, 0x4c, 0xf8, 0xcc, 0x20, 0xf9, 0xb4, 0xcb, 0xe9, 0xeb, 0xa3, - 0x6f, 0x83, 0x13, 0xf6, 0x53, 0xff, 0x15, 0x04, 0xc7, 0xfe, 0xa8, 0x7f, 0x15, 0x71, 0x3c, 0xfb, - 0xe9, 0xaf, 0x3f, 0x39, 0xf6, 0x47, 0x3e, 0x0f, 0x3d, 0x8e, 0xfd, 0x1f, 0x04, 0x70, 0xf0, 0xb1, - 0x07, 0x8c, 0x2e, 0x38, 0x0f, 0x7d, 0x57, 0xb2, 0x7e, 0x71, 0x24, 0x0e, 0xbb, 0xfb, 0xf2, 0xc3, - 0x60, 0x39, 0xe5, 0xa9, 0x06, 0x4c, 0xf6, 0x4d, 0xe5, 0xfc, 0xd2, 0x68, 0xa4, 0x68, 0x84, 0x94, - 0xd7, 0x0a, 0xdc, 0x08, 0xc3, 0x5f, 0x52, 0x70, 0x23, 0x8c, 0x7a, 0xf0, 0xd0, 0x0c, 0x9f, 0x75, - 0xc4, 0x27, 0x31, 0xd0, 0x3b, 0x75, 0x16, 0x97, 0x8f, 0xc1, 0x62, 0x83, 0xec, 0x80, 0x85, 0xf8, - 0x6b, 0x02, 0x78, 0x9e, 0x3b, 0x05, 0x4c, 0x79, 0x66, 0xb0, 0x9e, 0xfe, 0x8c, 0x24, 0x66, 0x4e, - 0xb1, 0xab, 0xf2, 0x97, 0xc7, 0xba, 0x96, 0xbc, 0x3e, 0xf2, 0x7a, 0x52, 0x4c, 0xdb, 0x87, 0x50, - 0x1f, 0x75, 0xd5, 0xf7, 0x18, 0xea, 0xd1, 0x5a, 0xc6, 0x68, 0x0f, 0xac, 0x65, 0x1a, 0xe5, 0x4b, - 0xa3, 0x91, 0x98, 0x98, 0x3f, 0xc6, 0x3d, 0xda, 0x18, 0xc2, 0xff, 0xa8, 0x7b, 0x57, 0xc7, 0xf0, - 0xbf, 0x0f, 0x56, 0xd2, 0x8e, 0xf8, 0x39, 0x4d, 0x19, 0x71, 0x03, 0x60, 0x3d, 0x76, 0x6e, 0x9d, - 0x3c, 0x2d, 0xbd, 0x03, 0xd6, 0xd2, 0x8f, 0xe9, 0x38, 0x47, 0x30, 0xf2, 0x1c, 0x6f, 0x7d, 0x6d, - 0xa0, 0xb0, 0x8c, 0x0e, 0x3b, 0xde, 0x51, 0x79, 0xfb, 0xa3, 0x17, 0x0f, 0x1c, 0xef, 0x7e, 0xff, - 0xee, 0x56, 0xd3, 0x3d, 0xbc, 0xc6, 0x68, 0xf9, 0xff, 0x77, 0xad, 0xe9, 0xb6, 0x02, 0xc0, 0x97, - 0xb2, 0xf3, 0x55, 0xe7, 0xa1, 0x7d, 0xd3, 0xaf, 0x2e, 0x7b, 0xee, 0x3f, 0x66, 0x17, 0xd8, 0xf7, - 0x8d, 0x1b, 0x14, 0x70, 0x77, 0x9a, 0x76, 0x79, 0xe1, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xcf, - 0x4d, 0x0f, 0x98, 0x2e, 0x4e, 0x00, 0x00, + // 5583 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5c, 0xd9, 0x8f, 0xe3, 0xc8, + 0x79, 0x1f, 0x89, 0xea, 0x6e, 0x75, 0xa9, 0x0f, 0x76, 0x75, 0x4f, 0x8f, 0x46, 0x73, 0xae, 0x66, + 0x76, 0x77, 0xa6, 0x77, 0xdd, 0xb3, 0x9e, 0x4d, 0xbc, 0xeb, 0xb5, 0x63, 0x2f, 0x25, 0x56, 0xb7, + 0xe8, 0x51, 0x93, 0x72, 0x91, 0x9a, 0x99, 0x36, 0x9c, 0x30, 0x1a, 0x91, 0xd3, 0x43, 0x8f, 0x5a, + 0x94, 0x25, 0x6a, 0x77, 0xdb, 0xce, 0x3e, 0xe4, 0x29, 0x1b, 0x20, 0x08, 0x62, 0x3b, 0x89, 0xe3, + 0xc4, 0x89, 0x6d, 0x20, 0x87, 0x63, 0xd8, 0x06, 0x1c, 0xf8, 0x08, 0xe6, 0x1f, 0x48, 0x90, 0x03, + 0xc8, 0x4b, 0x0e, 0x20, 0x81, 0xe3, 0xc4, 0x39, 0x9c, 0x04, 0x49, 0x5e, 0x72, 0x02, 0x79, 0x08, + 0xaa, 0x58, 0x24, 0x8b, 0x14, 0xa5, 0x96, 0x7a, 0x66, 0x01, 0x23, 0x79, 0x6a, 0xf1, 0xab, 0xaf, + 0xbe, 0xfa, 0xaa, 0xea, 0x3b, 0x7e, 0x75, 0x35, 0x58, 0xeb, 0x38, 0xaf, 0xd9, 0x0f, 0x1d, 0xcf, + 0x1c, 0x38, 0xbd, 0xed, 0x5e, 0xdf, 0xf5, 0x5c, 0xb8, 0xc0, 0x48, 0xa5, 0xb3, 0x07, 0xae, 0x7b, + 0xd0, 0xb1, 0x6f, 0x50, 0xf2, 0xbd, 0xe1, 0xfd, 0x1b, 0xad, 0xee, 0x91, 0xcf, 0x53, 0xba, 0x98, + 0x2c, 0xb2, 0x86, 0xfd, 0x96, 0xe7, 0xb8, 0x5d, 0x56, 0x7e, 0x2e, 0x59, 0x6e, 0x1f, 0xf6, 0xbc, + 0xa0, 0xf2, 0xa5, 0x64, 0xa1, 0xe7, 0x1c, 0xda, 0x03, 0xaf, 0x75, 0xc8, 0x34, 0x28, 0x6d, 0x04, + 0x4a, 0x1d, 0xba, 0x96, 0xdd, 0x19, 0x30, 0x2a, 0x0c, 0xa8, 0x7d, 0xd7, 0x3d, 0x0c, 0x39, 0xdd, + 0x83, 0x03, 0xbb, 0x7f, 0xc3, 0xed, 0x91, 0xc6, 0x19, 0x67, 0x59, 0x03, 0x8b, 0xba, 0xd2, 0xd0, + 0xbd, 0x96, 0x37, 0x1c, 0xc0, 0x2d, 0x90, 0x6b, 0xbb, 0x96, 0x5d, 0xcc, 0x5c, 0xce, 0x5c, 0x5b, + 0xb9, 0xb9, 0xb9, 0xcd, 0xa4, 0x6c, 0x87, 0x1c, 0x55, 0xd7, 0xb2, 0x31, 0xe5, 0x81, 0x9b, 0x60, + 0x7e, 0x40, 0x69, 0xc5, 0xec, 0xe5, 0xcc, 0xb5, 0x45, 0xcc, 0xbe, 0xca, 0x9f, 0xce, 0x81, 0xd3, + 0xd5, 0xbe, 0xdd, 0xf2, 0x6c, 0x5d, 0x69, 0x18, 0xfd, 0x61, 0xf7, 0x21, 0xb6, 0x3f, 0x3a, 0xb4, + 0x07, 0x1e, 0x7c, 0x0e, 0xac, 0x39, 0xdd, 0x7b, 0xee, 0xb0, 0x6b, 0x99, 0x2d, 0xcb, 0xea, 0xdb, + 0x83, 0x81, 0x3d, 0x28, 0x66, 0x2e, 0x0b, 0xd7, 0x16, 0xb1, 0xc8, 0x0a, 0xa4, 0x80, 0x0e, 0xaf, + 0x03, 0xd1, 0x1d, 0x7a, 0x31, 0x6e, 0xd6, 0xd0, 0x6a, 0x40, 0x67, 0xcc, 0xf0, 0x59, 0x10, 0x92, + 0xcc, 0xee, 0xf0, 0xf0, 0x9e, 0xdd, 0x2f, 0x0a, 0x94, 0x73, 0x25, 0x20, 0xab, 0x94, 0x0a, 0xdf, + 0x05, 0x4e, 0x07, 0x0a, 0xf8, 0x7c, 0x03, 0xb3, 0x6f, 0x1f, 0xd8, 0x6f, 0x14, 0x73, 0x44, 0x89, + 0x4a, 0xb6, 0x98, 0xc1, 0xeb, 0x8c, 0xc1, 0xaf, 0x31, 0xc0, 0xa4, 0x98, 0x34, 0x90, 0xa8, 0x57, + 0x5c, 0xa4, 0x6a, 0xaf, 0xc4, 0xb9, 0xe1, 0x36, 0x08, 0x3a, 0x62, 0x0e, 0x07, 0x76, 0xbf, 0xdb, + 0x3a, 0xb4, 0x8b, 0x73, 0x44, 0x95, 0x8a, 0xf0, 0xc5, 0x46, 0x06, 0x07, 0x52, 0x9a, 0xac, 0x8c, + 0xe7, 0xef, 0xb5, 0x06, 0x83, 0xd7, 0xdd, 0xbe, 0x55, 0x9c, 0x1f, 0xe5, 0x6f, 0xb0, 0x32, 0xf8, + 0x02, 0x58, 0x0b, 0x7b, 0x1a, 0x36, 0xb0, 0x10, 0x55, 0x08, 0x87, 0x2c, 0x6c, 0x81, 0xaf, 0x11, + 0x36, 0x91, 0x4f, 0xa9, 0x11, 0xb6, 0x01, 0x41, 0x8e, 0x8a, 0x05, 0x74, 0x08, 0xe9, 0x6f, 0xf8, + 0x2a, 0xc8, 0x1f, 0xda, 0x5e, 0xcb, 0x6a, 0x79, 0xad, 0x62, 0x81, 0x56, 0xbe, 0xfa, 0xc5, 0x46, + 0xe6, 0xb7, 0x1a, 0x17, 0xdf, 0xdb, 0xb7, 0xad, 0x56, 0xdb, 0xb3, 0xad, 0xcb, 0xd7, 0x3e, 0xfe, + 0xf1, 0xcb, 0xdb, 0xba, 0xf3, 0x31, 0xfb, 0xf2, 0x9b, 0x6f, 0x5e, 0xbe, 0x77, 0xe4, 0xd9, 0x83, + 0xeb, 0xef, 0xc3, 0x61, 0xad, 0x57, 0xb2, 0xc5, 0x4c, 0xf9, 0x26, 0xc8, 0xeb, 0x4a, 0x83, 0x98, + 0x50, 0x3b, 0x6c, 0x25, 0xc3, 0xb5, 0x02, 0x41, 0xae, 0xdf, 0xf2, 0x6c, 0x3a, 0xcd, 0xcb, 0x98, + 0xfe, 0x2e, 0x3f, 0xca, 0x80, 0x15, 0x5d, 0x69, 0xec, 0xd9, 0x96, 0xd3, 0xaa, 0xba, 0xdd, 0xfb, + 0xce, 0x01, 0x7c, 0x1e, 0x40, 0xb7, 0xdb, 0x39, 0x32, 0x3b, 0xce, 0xc0, 0xb3, 0x2d, 0x93, 0x18, + 0x63, 0x7b, 0x40, 0x05, 0xe5, 0xb1, 0x48, 0x4a, 0xea, 0xb4, 0x80, 0xb6, 0x43, 0xec, 0x68, 0x9e, + 0x71, 0x64, 0x2f, 0x0b, 0xd7, 0x0a, 0x37, 0xd7, 0x78, 0xa3, 0xa6, 0x3c, 0x98, 0x31, 0xc0, 0x57, + 0x01, 0xb0, 0xbb, 0xed, 0xfe, 0x11, 0xf5, 0x0f, 0x6a, 0x42, 0x2b, 0x37, 0xcf, 0xf1, 0xec, 0x54, + 0x0b, 0x14, 0xb2, 0xd4, 0x4e, 0x61, 0xae, 0xc2, 0x5b, 0x99, 0x4c, 0x65, 0x19, 0x14, 0xcc, 0x88, + 0x52, 0x7e, 0x2b, 0x03, 0x96, 0x1a, 0x7d, 0xf7, 0x35, 0xc7, 0xb2, 0xfb, 0x4a, 0xf7, 0xbe, 0x0b, + 0x57, 0x40, 0xd6, 0xb1, 0x58, 0x9f, 0xb3, 0x4e, 0x34, 0xd6, 0x59, 0x6e, 0x14, 0xae, 0x83, 0x9c, + 0x77, 0xd4, 0xb3, 0x59, 0xfb, 0xa7, 0xc3, 0xf6, 0x03, 0x41, 0xc6, 0x51, 0xcf, 0xc6, 0x94, 0x85, + 0xf8, 0x48, 0xaf, 0x6f, 0xbf, 0x66, 0x77, 0x3d, 0xd3, 0xeb, 0xb7, 0xba, 0x83, 0xfb, 0x76, 0xbf, + 0x98, 0xa3, 0xe3, 0xb0, 0xca, 0xe8, 0x06, 0x23, 0x97, 0xff, 0x75, 0x0e, 0x2c, 0x05, 0xfe, 0x48, + 0x55, 0xb9, 0x01, 0x96, 0x06, 0x4e, 0xcf, 0xf4, 0x08, 0xc1, 0x0c, 0x94, 0xaa, 0x2c, 0x3f, 0x6a, + 0x80, 0x81, 0xd3, 0xf3, 0xd9, 0x64, 0x1c, 0xfd, 0xb6, 0xe0, 0x8b, 0x20, 0xf7, 0xd0, 0xe9, 0x5a, + 0xc5, 0x15, 0xaa, 0xd7, 0x25, 0x7e, 0x5c, 0x42, 0xa9, 0xdb, 0xf4, 0xd7, 0x2d, 0xa7, 0x6b, 0x61, + 0xca, 0x9c, 0xee, 0xf2, 0xd9, 0x19, 0x5c, 0x5e, 0x98, 0xda, 0xe5, 0x73, 0xa9, 0x2e, 0xff, 0x22, + 0x58, 0xa4, 0x43, 0xd3, 0x73, 0xfb, 0x5e, 0x71, 0x39, 0x31, 0xa4, 0x54, 0x75, 0x56, 0x88, 0x23, + 0xbe, 0xf1, 0x71, 0x62, 0x6e, 0xe6, 0x38, 0x01, 0xa6, 0x8e, 0x13, 0xf3, 0x33, 0xc6, 0x89, 0x85, + 0x59, 0xe3, 0x44, 0x7e, 0xe6, 0x38, 0xb1, 0x38, 0x4d, 0x9c, 0x28, 0x8c, 0x89, 0x13, 0x4b, 0x27, + 0x89, 0x13, 0x65, 0x19, 0x2c, 0x86, 0x36, 0x04, 0x45, 0xb0, 0x64, 0xe0, 0xa6, 0x7a, 0xcb, 0xac, + 0xa3, 0x5d, 0xa9, 0xba, 0x2f, 0x9e, 0x82, 0x6b, 0x60, 0xd9, 0xa7, 0x28, 0x6a, 0x45, 0x6b, 0xaa, + 0xb2, 0x98, 0x81, 0x10, 0xac, 0xf8, 0x24, 0xad, 0x69, 0xf8, 0xb4, 0x2c, 0x8d, 0x36, 0x18, 0x9c, + 0x0f, 0xd3, 0x90, 0xe2, 0x8f, 0x4f, 0x2c, 0x1b, 0xdd, 0x04, 0x73, 0xd4, 0xf8, 0xa9, 0xe5, 0x17, + 0x6e, 0x9e, 0xe7, 0xad, 0x82, 0xe7, 0x27, 0x76, 0x8d, 0x7d, 0xd6, 0xf2, 0x1f, 0x66, 0xc0, 0xf9, + 0x66, 0xcf, 0x1a, 0x2f, 0x74, 0x66, 0xaf, 0x7a, 0x19, 0x2c, 0xf4, 0xed, 0x5e, 0xa7, 0xd5, 0xf6, + 0x83, 0xc0, 0x31, 0x7a, 0xd4, 0x4e, 0xe1, 0x80, 0x1d, 0xbe, 0x0c, 0xe6, 0x87, 0x54, 0x15, 0xea, + 0x23, 0x85, 0x9b, 0x17, 0xc7, 0x55, 0xf4, 0x15, 0xae, 0x9d, 0xc2, 0x8c, 0xbf, 0x92, 0x07, 0xf3, + 0xad, 0x36, 0x0d, 0x50, 0x9f, 0x03, 0x60, 0x3d, 0xa5, 0x99, 0xd9, 0xbb, 0x91, 0x16, 0xc8, 0x78, + 0x63, 0x10, 0x4e, 0x62, 0x0c, 0xb0, 0x08, 0x16, 0x02, 0x3f, 0xa2, 0x19, 0x1a, 0x07, 0x9f, 0x24, + 0xae, 0xb4, 0x3a, 0x1d, 0xf7, 0x75, 0x9b, 0x8f, 0x2b, 0x73, 0x7e, 0x5c, 0x61, 0x05, 0x51, 0x5c, + 0x79, 0x16, 0xac, 0x06, 0xcc, 0x81, 0xb8, 0x79, 0xdf, 0x2d, 0x19, 0x39, 0x70, 0xcb, 0x6b, 0x60, + 0xb9, 0x35, 0xf4, 0x1e, 0xa4, 0xa6, 0xd6, 0x25, 0x52, 0x12, 0xba, 0x4b, 0xc0, 0x99, 0x96, 0x52, + 0x29, 0x67, 0xe8, 0x26, 0x0e, 0x58, 0x78, 0x60, 0xb7, 0xac, 0x00, 0x33, 0x14, 0x6e, 0x5e, 0x9f, + 0x34, 0xc1, 0xdb, 0x35, 0x9f, 0x17, 0x75, 0xbd, 0xfe, 0xd1, 0x94, 0xe3, 0x15, 0xc8, 0x87, 0x0e, + 0x38, 0xcd, 0x7e, 0x9a, 0x9e, 0x6b, 0xb6, 0x3c, 0xaf, 0xef, 0xdc, 0x1b, 0x7a, 0xb6, 0x1f, 0x84, + 0x0a, 0x37, 0x7f, 0x70, 0x9a, 0x86, 0x0d, 0x57, 0x0a, 0xeb, 0x51, 0x25, 0xf0, 0xfa, 0x83, 0xd1, + 0x12, 0xd2, 0x54, 0x24, 0x9f, 0xb4, 0x16, 0xf4, 0x71, 0x65, 0x8a, 0xa6, 0x22, 0x39, 0x86, 0xcb, + 0xf7, 0x17, 0xaf, 0xb7, 0x46, 0x4b, 0x60, 0x85, 0x04, 0xd5, 0x76, 0x67, 0x68, 0xd9, 0x61, 0x23, + 0xab, 0x34, 0x8e, 0x9f, 0xe5, 0x1b, 0xf1, 0xb9, 0x35, 0x1f, 0xda, 0x92, 0x78, 0x4b, 0x6b, 0x70, + 0x32, 0xfa, 0x4e, 0xf7, 0xc0, 0xe9, 0x1e, 0x98, 0x04, 0x3f, 0xbb, 0x43, 0x8f, 0x86, 0xad, 0xc2, + 0xcd, 0xb3, 0xdb, 0x3e, 0xbe, 0xde, 0x0e, 0xf0, 0xf5, 0xb6, 0xcc, 0xc0, 0x39, 0x5e, 0x61, 0x35, + 0x0c, 0xbf, 0x02, 0x44, 0x60, 0xed, 0xb0, 0xf5, 0x86, 0xd9, 0x6e, 0x75, 0x3a, 0x66, 0x80, 0xe0, + 0x69, 0x90, 0x9b, 0x28, 0x65, 0xf5, 0xb0, 0xf5, 0x46, 0xb5, 0xd5, 0xe9, 0x04, 0x04, 0x78, 0x05, + 0x2c, 0x3f, 0xec, 0x3b, 0x83, 0x9e, 0x69, 0x77, 0x5b, 0xf7, 0x3a, 0xb6, 0x45, 0x93, 0x52, 0x1e, + 0x2f, 0x51, 0x22, 0xf2, 0x69, 0x70, 0x07, 0x88, 0x87, 0x04, 0x6b, 0x70, 0x60, 0xa2, 0x28, 0x1e, + 0x8b, 0x47, 0xf0, 0xea, 0x61, 0x9c, 0x00, 0xdf, 0x0d, 0x40, 0x9b, 0xc6, 0x40, 0xcb, 0x6c, 0x79, + 0xc5, 0x35, 0xaa, 0x6c, 0x69, 0x44, 0x59, 0x23, 0x58, 0x52, 0xe0, 0x45, 0xc6, 0x2d, 0x79, 0xa4, + 0xaa, 0x1f, 0x2e, 0x68, 0x55, 0x78, 0x7c, 0x55, 0xc6, 0x2d, 0x79, 0xa5, 0x57, 0xc0, 0x12, 0x3f, + 0xad, 0x50, 0x04, 0xc2, 0x43, 0xfb, 0x88, 0xc1, 0x1e, 0xf2, 0x13, 0x6e, 0x80, 0xb9, 0xd7, 0x5a, + 0x9d, 0x61, 0x10, 0x2f, 0xfc, 0x8f, 0x57, 0xb2, 0x2f, 0x67, 0x4a, 0x3b, 0xa0, 0x38, 0xce, 0x12, + 0x67, 0x95, 0x33, 0xce, 0xcc, 0x66, 0x91, 0x53, 0xfe, 0x7c, 0x0e, 0x9c, 0x4e, 0x8d, 0xa7, 0xf0, + 0x1d, 0x51, 0x70, 0xf2, 0x33, 0xc8, 0x7a, 0x38, 0x35, 0x04, 0x80, 0xfa, 0x5c, 0x51, 0xc4, 0x7a, + 0x35, 0x2d, 0x62, 0x65, 0xc7, 0x57, 0x1c, 0x0d, 0x63, 0xef, 0x1d, 0x0d, 0x63, 0xc2, 0xf8, 0xfa, + 0xc9, 0xd8, 0xf6, 0x8e, 0x64, 0x6c, 0xcb, 0x85, 0x11, 0xab, 0x76, 0x2a, 0x1e, 0xdd, 0xde, 0xca, + 0x64, 0x42, 0xf6, 0x30, 0xc0, 0x45, 0xcb, 0x98, 0x5a, 0x22, 0xc4, 0x11, 0xf6, 0x33, 0x2c, 0xfe, + 0x53, 0x10, 0x53, 0xcb, 0xfa, 0x19, 0x80, 0x14, 0x20, 0x2e, 0x09, 0x2c, 0x4c, 0x9f, 0x04, 0x6a, + 0x42, 0x94, 0x06, 0x88, 0x98, 0x5b, 0x29, 0x0e, 0x91, 0x3f, 0x1e, 0xa0, 0xe7, 0x46, 0x5c, 0x82, + 0xa0, 0x74, 0x11, 0xac, 0x98, 0xb1, 0xb1, 0x88, 0x28, 0x41, 0x77, 0x2b, 0x0b, 0x60, 0xce, 0xa4, + 0x45, 0x05, 0xb0, 0x68, 0x06, 0x9a, 0x54, 0xd6, 0xc1, 0x9a, 0x99, 0xd4, 0xa3, 0x6c, 0x80, 0x0b, + 0x21, 0xd0, 0xd0, 0x18, 0x4a, 0x8a, 0x81, 0x82, 0x17, 0xe3, 0x48, 0xe3, 0x02, 0xaf, 0x71, 0xac, + 0x02, 0x0f, 0x35, 0xfe, 0x28, 0x03, 0x2e, 0x84, 0x50, 0x23, 0x55, 0xec, 0xcc, 0x49, 0xfa, 0xdd, + 0x49, 0xac, 0x31, 0x59, 0x13, 0x1e, 0x6c, 0xbc, 0x3b, 0x01, 0x36, 0x2e, 0x8d, 0xad, 0x39, 0x01, + 0x6d, 0x3c, 0x5a, 0x04, 0x1b, 0x69, 0x0d, 0x7d, 0x1f, 0xc1, 0x8d, 0x60, 0xd9, 0xe1, 0x2f, 0x26, + 0x82, 0x4f, 0x78, 0x03, 0xac, 0x5b, 0xf6, 0xc0, 0x73, 0xba, 0x34, 0x86, 0x9b, 0x6d, 0x77, 0x48, + 0x02, 0x09, 0x5d, 0x0a, 0x2d, 0x62, 0xc8, 0x15, 0x55, 0xfd, 0x92, 0xf8, 0xb2, 0x63, 0x6e, 0xca, + 0x65, 0x07, 0x07, 0x77, 0xe6, 0xe3, 0x70, 0xe7, 0xed, 0x00, 0x26, 0x1f, 0x49, 0x02, 0x93, 0xad, + 0x89, 0xd6, 0xf0, 0x58, 0xc8, 0xe4, 0x23, 0x93, 0x91, 0xc9, 0xbb, 0xa6, 0x6a, 0x79, 0x4a, 0x68, + 0xf2, 0x91, 0x71, 0xd0, 0xa4, 0x30, 0x4d, 0x5b, 0x8f, 0x8d, 0x4d, 0x96, 0x66, 0xc5, 0x26, 0x69, + 0xb9, 0x7e, 0xf9, 0x04, 0xb9, 0xfe, 0x1c, 0x58, 0xbc, 0xdf, 0x77, 0x0f, 0xcd, 0x07, 0xee, 0xc0, + 0xa3, 0x08, 0x69, 0x11, 0xe7, 0x09, 0xa1, 0xe6, 0x0e, 0xbc, 0x04, 0x10, 0x10, 0x4f, 0x0e, 0x04, + 0xd6, 0xfe, 0xbf, 0x02, 0x81, 0x4f, 0xce, 0x81, 0xcd, 0xf4, 0x58, 0x07, 0x2f, 0x44, 0x71, 0x83, + 0x8a, 0x22, 0x81, 0x93, 0x11, 0x48, 0xee, 0x7a, 0x99, 0x8f, 0x05, 0xd9, 0x09, 0xb1, 0xa0, 0x96, + 0xe1, 0xa2, 0x01, 0xa9, 0xf9, 0x03, 0xe9, 0x61, 0x67, 0x91, 0x25, 0xd9, 0x94, 0xc0, 0xe3, 0xa7, + 0xee, 0x85, 0x29, 0xf0, 0x41, 0x18, 0x5b, 0x26, 0x01, 0x03, 0x61, 0x36, 0x60, 0x90, 0x3b, 0x0e, + 0x18, 0xcc, 0x3d, 0x3e, 0x30, 0x98, 0x7f, 0x22, 0xc0, 0x60, 0x21, 0x0d, 0x18, 0xc0, 0xcb, 0xbc, + 0x0b, 0xd1, 0xfd, 0xcf, 0x5a, 0x3e, 0x72, 0x22, 0x02, 0x1d, 0x00, 0xc8, 0x07, 0xf0, 0xad, 0xb2, + 0x04, 0x80, 0x19, 0x4e, 0x57, 0x65, 0x13, 0x6c, 0x98, 0x29, 0x93, 0xf5, 0x84, 0xc1, 0x06, 0x6d, + 0x34, 0xd4, 0xb1, 0x5c, 0x07, 0x67, 0x77, 0x6d, 0xef, 0x09, 0xed, 0x45, 0x94, 0x1b, 0xa0, 0x94, + 0x26, 0x6d, 0xd0, 0x73, 0xbb, 0x03, 0xfb, 0x44, 0xfb, 0x25, 0x7b, 0x81, 0xc4, 0x27, 0x02, 0x60, + 0xca, 0x18, 0x9c, 0x4b, 0x15, 0xc7, 0x34, 0x3c, 0x11, 0xce, 0xaa, 0x80, 0x75, 0xe2, 0x15, 0xc9, + 0xb3, 0x8a, 0x67, 0x41, 0xae, 0xd7, 0x3a, 0xb0, 0x47, 0xa0, 0x7d, 0xa3, 0x75, 0xc0, 0x66, 0x18, + 0x53, 0x06, 0xba, 0xd5, 0xb4, 0x0b, 0x36, 0xe2, 0x32, 0x98, 0x42, 0xcf, 0x81, 0x39, 0xc7, 0xb3, + 0x0f, 0xfd, 0x43, 0x8e, 0x42, 0xd2, 0xeb, 0x43, 0x45, 0x28, 0x0f, 0x15, 0xf4, 0x63, 0xa0, 0xc4, + 0x04, 0xa5, 0x4d, 0x68, 0xa0, 0x93, 0x70, 0x8c, 0x4e, 0x24, 0x15, 0x04, 0x83, 0x1a, 0x1c, 0xb0, + 0xe4, 0x3d, 0x7f, 0x0c, 0x07, 0x3c, 0xca, 0xc8, 0xc6, 0x50, 0x46, 0xf9, 0x83, 0xe0, 0x5c, 0x6a, + 0xeb, 0x91, 0x01, 0xf0, 0xbd, 0x39, 0xc6, 0x00, 0x28, 0x6b, 0xf9, 0xcd, 0x50, 0x64, 0xaa, 0x05, + 0xbc, 0xdd, 0x3d, 0xd2, 0xc1, 0xf9, 0xf4, 0xe6, 0x23, 0x8b, 0xe1, 0xbb, 0x74, 0x9c, 0xc5, 0xf8, + 0x7d, 0xaa, 0x81, 0xd3, 0xb2, 0xdd, 0xb1, 0x47, 0xcf, 0xb7, 0x66, 0xb6, 0xe7, 0x1d, 0xba, 0xb6, + 0x94, 0x9d, 0x41, 0xaf, 0xe5, 0xb5, 0x1f, 0xe0, 0x61, 0xc7, 0x96, 0x9d, 0xbe, 0xdd, 0xf6, 0x48, + 0x77, 0xfb, 0xae, 0x7b, 0x68, 0x72, 0x47, 0x24, 0x79, 0x42, 0x50, 0x09, 0xc4, 0x13, 0x81, 0xd0, + 0x73, 0xba, 0x2c, 0x43, 0x91, 0x9f, 0xe5, 0x01, 0x38, 0x9b, 0x90, 0xa3, 0x74, 0x2d, 0xe7, 0x35, + 0xc7, 0x1a, 0xb6, 0x3a, 0xf0, 0x12, 0x28, 0x50, 0x59, 0xbd, 0xbe, 0x7d, 0xdf, 0x79, 0x83, 0x49, + 0x03, 0x84, 0xd4, 0xa0, 0x94, 0x51, 0x79, 0xf0, 0x0a, 0x58, 0xee, 0xba, 0x66, 0xbf, 0xd5, 0xb5, + 0xdc, 0xc3, 0x6e, 0xb0, 0x0b, 0x9f, 0xc7, 0x4b, 0x5d, 0x17, 0x87, 0xb4, 0xf2, 0x83, 0x11, 0xe5, + 0xab, 0xad, 0x4e, 0xc7, 0xb6, 0x4f, 0xd2, 0xe0, 0x79, 0xb0, 0xe8, 0xb7, 0xe6, 0x7c, 0xcc, 0x66, + 0x8d, 0x45, 0x84, 0xf2, 0x17, 0xb2, 0x60, 0x35, 0xd1, 0x14, 0xc4, 0x60, 0xc3, 0x62, 0xdf, 0x66, + 0x7f, 0xd8, 0xb1, 0x4d, 0x8b, 0x8e, 0x1c, 0xf3, 0xd7, 0xd8, 0x5e, 0xe8, 0xe8, 0xf8, 0xd6, 0x4e, + 0x61, 0x68, 0x8d, 0x8e, 0xfa, 0x8f, 0x80, 0x62, 0x5c, 0xa6, 0x13, 0x8e, 0x22, 0x5b, 0x30, 0x95, + 0xc7, 0xc9, 0x8d, 0xc6, 0xbb, 0x76, 0x0a, 0x6f, 0x5a, 0xe9, 0x33, 0x31, 0xa2, 0x73, 0x9b, 0x0e, + 0x58, 0xda, 0xfe, 0xed, 0xe8, 0xb0, 0x26, 0x75, 0xf6, 0xa9, 0x95, 0x79, 0x90, 0x23, 0xa2, 0xca, + 0x9f, 0x98, 0xe3, 0xb6, 0xbb, 0xf9, 0xda, 0x81, 0x71, 0x4a, 0x60, 0x39, 0xd6, 0x38, 0xcd, 0x6f, + 0x09, 0x2f, 0x8e, 0xf7, 0xe8, 0xbe, 0x8b, 0x97, 0xf8, 0x16, 0xe1, 0x0b, 0x7e, 0x5b, 0x6c, 0x8c, + 0x8b, 0xe3, 0x6a, 0xd2, 0xf3, 0x11, 0xca, 0x09, 0x2f, 0xf1, 0x6e, 0x9b, 0x0d, 0x0f, 0x4f, 0x22, + 0xd7, 0xdd, 0x06, 0x6b, 0x0f, 0x1c, 0xcb, 0x36, 0x7b, 0x0f, 0xdc, 0xae, 0xcd, 0x1f, 0xde, 0xe6, + 0x29, 0xe3, 0x2a, 0x29, 0x6c, 0x90, 0x32, 0x76, 0x9c, 0xf3, 0xdc, 0xe8, 0x09, 0xcb, 0x7c, 0x28, + 0x36, 0x79, 0xca, 0xb2, 0xc9, 0xb0, 0x87, 0x0f, 0x68, 0xa8, 0x56, 0x74, 0x8d, 0x54, 0xe1, 0xa0, + 0x87, 0x8f, 0x5e, 0x9e, 0x29, 0x66, 0x66, 0x5c, 0x2b, 0xbe, 0x09, 0x00, 0xb7, 0x8c, 0x59, 0x48, + 0xec, 0x7a, 0x4e, 0x9a, 0x89, 0xed, 0x04, 0x9a, 0x9d, 0xba, 0x71, 0xae, 0x41, 0x78, 0x25, 0xf2, + 0xb1, 0x81, 0xed, 0xb1, 0x45, 0x1e, 0xe9, 0x61, 0xe0, 0x67, 0x03, 0xdb, 0x83, 0xef, 0x67, 0x4c, + 0x6d, 0x7a, 0x6e, 0x4a, 0x61, 0x23, 0x81, 0xee, 0x81, 0x92, 0xd8, 0x75, 0x0f, 0xfd, 0x23, 0x55, + 0xb6, 0x37, 0x19, 0x09, 0xf0, 0xc9, 0xa5, 0x1f, 0x02, 0xab, 0x8f, 0x01, 0xbd, 0xcb, 0xdf, 0xe5, + 0x4f, 0x4b, 0xd2, 0x6c, 0x12, 0x81, 0x0d, 0x12, 0x30, 0x13, 0x4e, 0x17, 0x04, 0xce, 0x8d, 0x47, + 0x8d, 0xb5, 0x81, 0xd3, 0x8b, 0x19, 0xa5, 0x8c, 0x47, 0x48, 0xc7, 0x9d, 0xa1, 0x24, 0x8d, 0x7a, + 0xea, 0x33, 0x14, 0xbe, 0xe2, 0x84, 0x5d, 0x8d, 0x4f, 0x2d, 0xd0, 0x33, 0x94, 0x64, 0x33, 0x4f, + 0xaa, 0x73, 0xcf, 0x33, 0xa7, 0xcb, 0x4e, 0x76, 0x3a, 0xe6, 0x70, 0xb1, 0x3c, 0x29, 0x24, 0xf2, + 0xe4, 0x56, 0x9a, 0xb3, 0xb1, 0xf3, 0xe2, 0xa4, 0xa3, 0xa5, 0x1c, 0x65, 0x2e, 0xa4, 0x1e, 0x65, + 0x72, 0xc9, 0x77, 0x39, 0xbe, 0x69, 0x11, 0x6c, 0xd2, 0xcc, 0x8d, 0xd9, 0xa4, 0x99, 0x3f, 0xd1, + 0x26, 0x4d, 0x3f, 0xe6, 0x78, 0x79, 0xea, 0x78, 0xcf, 0x4f, 0x9a, 0xef, 0x11, 0x7f, 0xbb, 0x3a, + 0xb3, 0xb7, 0x5d, 0x8a, 0x7b, 0xdb, 0x62, 0x2c, 0xa3, 0x11, 0x4f, 0x7b, 0x4f, 0xdc, 0xd3, 0xc0, + 0x71, 0x9e, 0xc6, 0x7b, 0x19, 0x7c, 0x07, 0x98, 0xa3, 0x30, 0x9f, 0x2d, 0xcb, 0xcf, 0x8c, 0xac, + 0x5b, 0x7c, 0x3e, 0xec, 0x73, 0x8d, 0x1e, 0x20, 0x14, 0x52, 0x0e, 0x10, 0x3e, 0x90, 0xb2, 0x2c, + 0x5a, 0x3a, 0x76, 0x59, 0xe4, 0xc7, 0xdc, 0xc9, 0x87, 0x08, 0x2b, 0x27, 0xdf, 0x3b, 0x58, 0x9d, + 0x65, 0xef, 0xe0, 0x31, 0x63, 0xcf, 0xb7, 0x72, 0x23, 0xf0, 0x84, 0xad, 0xd6, 0x5f, 0x88, 0x43, + 0xc9, 0xb1, 0x0b, 0xe4, 0xc8, 0x6f, 0x66, 0x73, 0xc1, 0x60, 0xc5, 0x2b, 0xb0, 0xad, 0x80, 0xd4, + 0x15, 0x6f, 0x6e, 0x86, 0x15, 0x6f, 0x26, 0xbe, 0xe2, 0xf5, 0x62, 0x0e, 0x30, 0x47, 0x1d, 0x60, + 0x7b, 0x72, 0xdc, 0x7a, 0x02, 0x2e, 0xa0, 0xa5, 0x18, 0xd4, 0xfc, 0x54, 0x06, 0x55, 0xcb, 0xa6, + 0xae, 0xb5, 0x43, 0xab, 0x5f, 0x98, 0xc6, 0xea, 0x1f, 0xd3, 0x1c, 0x66, 0xd9, 0xce, 0xff, 0xe9, + 0x4c, 0xb8, 0x08, 0x4b, 0xcb, 0x59, 0x53, 0x2f, 0x59, 0xb6, 0xc0, 0x5a, 0x32, 0xf6, 0x07, 0x4b, + 0x97, 0xd5, 0x18, 0x40, 0xb4, 0x06, 0xf1, 0xb0, 0x9d, 0x8d, 0x87, 0x6d, 0x6e, 0x59, 0x16, 0xd7, + 0x67, 0x8a, 0x65, 0xd9, 0x08, 0xa0, 0x63, 0x4b, 0x18, 0x1b, 0x9c, 0x0f, 0x97, 0x30, 0x6f, 0x5f, + 0x62, 0x2e, 0x7f, 0x2f, 0x07, 0xd6, 0xb8, 0x95, 0x14, 0x8b, 0x77, 0x25, 0x90, 0x7f, 0xe0, 0x0e, + 0x3c, 0x7e, 0x6d, 0x13, 0x7c, 0x8f, 0xdb, 0x68, 0x5f, 0x98, 0x6e, 0xa3, 0x3d, 0x3b, 0xe5, 0x46, + 0xfb, 0xc8, 0x76, 0xba, 0x30, 0xf5, 0x76, 0x7a, 0x6e, 0xdc, 0x76, 0xfa, 0xc1, 0xb8, 0x2d, 0x6e, + 0xdf, 0x43, 0x5f, 0x4c, 0x5b, 0x5a, 0xfa, 0x03, 0x32, 0xe3, 0xfe, 0xf6, 0xc1, 0xb8, 0xfd, 0xed, + 0xf9, 0x63, 0x1b, 0x9a, 0x6d, 0x73, 0x3b, 0xb6, 0xa1, 0x9c, 0x8f, 0x6f, 0x28, 0x7f, 0xdf, 0x6d, + 0xcf, 0x7e, 0x69, 0x09, 0x9c, 0x0b, 0x51, 0x77, 0xa3, 0xd5, 0xf7, 0x9c, 0xb6, 0xd3, 0x6b, 0x75, + 0xbd, 0x13, 0x1f, 0x96, 0xbd, 0x10, 0x6c, 0x26, 0x6d, 0x24, 0x92, 0xf9, 0xc8, 0xb0, 0xb2, 0x9d, + 0x24, 0x78, 0x11, 0x14, 0x48, 0x13, 0xf4, 0x82, 0x80, 0xe7, 0x32, 0x15, 0x17, 0x07, 0x4e, 0x8f, + 0x2c, 0xd5, 0x0c, 0x17, 0x5e, 0x00, 0x44, 0x7e, 0x80, 0xbb, 0x56, 0xc3, 0x62, 0x86, 0xb8, 0x62, + 0x6b, 0x7e, 0x21, 0xb1, 0xe6, 0x7f, 0x27, 0xd8, 0xe8, 0x45, 0x9d, 0x32, 0x1d, 0xcb, 0xee, 0x7a, + 0x8e, 0x77, 0xc4, 0xce, 0xa9, 0xd6, 0xb9, 0x32, 0x85, 0x15, 0x91, 0x88, 0xcd, 0x57, 0xe1, 0x8e, + 0x8d, 0xa6, 0x8b, 0xfe, 0xab, 0x5c, 0x6d, 0xaa, 0xc3, 0x9d, 0xb8, 0x0e, 0x61, 0x2e, 0xcb, 0xcf, + 0x20, 0x94, 0xd7, 0x74, 0x2f, 0x80, 0x74, 0x9f, 0xcd, 0x80, 0x4d, 0x5e, 0x32, 0xe7, 0x3c, 0xfe, + 0xc9, 0xd4, 0xfb, 0x47, 0x17, 0x56, 0xa3, 0x53, 0xbc, 0xcd, 0x91, 0x4e, 0x96, 0xef, 0x4e, 0xf7, + 0xd2, 0x24, 0x10, 0x1c, 0x6b, 0x79, 0x87, 0xf7, 0x03, 0x1c, 0x4b, 0x7e, 0xc3, 0x67, 0xc1, 0x72, + 0xaf, 0xd3, 0x3a, 0x32, 0xfb, 0x4e, 0xf7, 0xc0, 0x73, 0xbb, 0xfe, 0xfe, 0xb6, 0xbf, 0x66, 0x5d, + 0x22, 0x05, 0x98, 0xd1, 0x09, 0x5a, 0xa3, 0x8c, 0x96, 0xd3, 0xea, 0x50, 0x46, 0x76, 0xdd, 0x83, + 0x10, 0x65, 0x46, 0x4b, 0x07, 0xe6, 0x20, 0x1d, 0x98, 0x7f, 0x34, 0x3a, 0xb6, 0x13, 0xe9, 0xe0, + 0xbc, 0x73, 0xaa, 0xc1, 0x79, 0x9c, 0xd3, 0xbb, 0x94, 0x53, 0xae, 0xb5, 0xff, 0x4b, 0x37, 0x70, + 0x56, 0xa6, 0x04, 0xd0, 0xf0, 0x84, 0x00, 0x3a, 0x84, 0x3a, 0x67, 0xa6, 0x02, 0xf8, 0xdb, 0x60, + 0xfd, 0xf5, 0x96, 0xe3, 0x99, 0xc3, 0xae, 0xe7, 0x74, 0xcc, 0x56, 0x77, 0xf0, 0xba, 0xdd, 0xb7, + 0xad, 0xe2, 0x3a, 0xd5, 0x72, 0x8d, 0x14, 0x35, 0x49, 0x89, 0xc4, 0x0a, 0x60, 0x1d, 0xd0, 0x6d, + 0x1a, 0x62, 0x65, 0xd4, 0xc9, 0x4f, 0xcf, 0x80, 0x2d, 0x4f, 0xe1, 0x02, 0xab, 0xab, 0x32, 0x94, + 0xfa, 0x1e, 0x50, 0xe0, 0xd2, 0x6c, 0x71, 0x93, 0xaa, 0xbc, 0x11, 0xaa, 0x2c, 0x47, 0x65, 0xb5, + 0x0c, 0xe6, 0x59, 0xdf, 0xca, 0x64, 0x4a, 0x35, 0x50, 0x1a, 0xef, 0x85, 0x33, 0xe5, 0x85, 0xc7, + 0x38, 0x3a, 0xac, 0xac, 0x82, 0x65, 0x93, 0x1f, 0x91, 0xca, 0x0a, 0x58, 0xe2, 0xcf, 0x66, 0xca, + 0xbf, 0x9f, 0x01, 0x30, 0xee, 0x26, 0x74, 0xc5, 0xfe, 0x12, 0x58, 0x89, 0x07, 0x59, 0x96, 0x25, + 0xc4, 0x47, 0x8d, 0x65, 0x3e, 0xc2, 0xca, 0x38, 0xf6, 0x69, 0x8d, 0x8d, 0xce, 0xd9, 0xf1, 0xd1, + 0x79, 0x62, 0xb4, 0x7f, 0x9e, 0xcb, 0x24, 0x4e, 0x80, 0x39, 0x96, 0x1e, 0x35, 0x82, 0x64, 0xa2, + 0xc8, 0x61, 0x5e, 0x51, 0xac, 0xf2, 0x97, 0x04, 0x70, 0x21, 0xb8, 0xe7, 0x9d, 0x9e, 0xfc, 0xc6, + 0xe9, 0x97, 0x99, 0x52, 0xbf, 0x6c, 0x42, 0xbf, 0x4b, 0xa0, 0x10, 0xdc, 0x37, 0x27, 0x99, 0xce, + 0x57, 0x1f, 0x04, 0x24, 0xc3, 0x1d, 0x8d, 0x7a, 0xb9, 0x94, 0xa8, 0x37, 0x88, 0x22, 0x59, 0x12, + 0x23, 0x4d, 0xec, 0xce, 0xe3, 0xc6, 0xb2, 0x64, 0x1c, 0x9a, 0x9f, 0x31, 0x0e, 0x3d, 0x8e, 0x6d, + 0x96, 0x7f, 0xa2, 0x00, 0x0a, 0xba, 0xd2, 0xa0, 0x53, 0x47, 0x6c, 0xae, 0x0c, 0x16, 0x82, 0x69, + 0xf6, 0x8d, 0x6d, 0xf1, 0x51, 0x63, 0xbe, 0xed, 0xcf, 0xb1, 0xff, 0xd7, 0x82, 0x4f, 0x83, 0x7c, + 0x88, 0x5b, 0xa8, 0xc0, 0x0a, 0x78, 0xd4, 0x58, 0xf0, 0x18, 0x68, 0x61, 0x3f, 0x2c, 0xf8, 0x1e, + 0x20, 0x8e, 0x00, 0x76, 0x91, 0xb2, 0xaf, 0x3d, 0x6a, 0xac, 0x58, 0x71, 0xb4, 0x1e, 0xff, 0xb6, + 0xe0, 0x26, 0x98, 0xef, 0xdb, 0x07, 0xc4, 0xe3, 0xd7, 0xfc, 0xd7, 0x3c, 0xfe, 0xd7, 0x64, 0x3b, + 0x2d, 0x83, 0x05, 0x5a, 0x18, 0xda, 0x28, 0x51, 0x9e, 0x50, 0x88, 0xf2, 0xf4, 0xef, 0x78, 0xdf, + 0x98, 0x1b, 0x6f, 0x7b, 0x3f, 0x35, 0x1e, 0x0f, 0x40, 0x6a, 0x28, 0x37, 0x62, 0x6f, 0x38, 0xd8, + 0x50, 0xbe, 0x6d, 0xf9, 0x7f, 0x0b, 0x50, 0xd8, 0x6b, 0x0e, 0xfb, 0x0e, 0xb3, 0x95, 0x55, 0xbe, + 0xfd, 0x66, 0xdf, 0xc1, 0x0b, 0x84, 0xa1, 0xd9, 0x77, 0xe0, 0x33, 0x60, 0xde, 0x73, 0x29, 0xe7, + 0x42, 0x3a, 0xe7, 0x9c, 0xe7, 0x12, 0xbe, 0xa7, 0x62, 0x7b, 0x2a, 0x8b, 0x97, 0x33, 0xd7, 0x04, + 0x9a, 0x3b, 0xb8, 0xbd, 0x93, 0xa7, 0x00, 0x18, 0x78, 0xad, 0x3e, 0x63, 0x01, 0x11, 0x0b, 0xa3, + 0x4a, 0x1e, 0xbc, 0x00, 0xf2, 0x76, 0xd7, 0xf2, 0x19, 0x0a, 0x21, 0xc3, 0x02, 0xa5, 0x49, 0x1e, + 0x7c, 0x1f, 0x10, 0x59, 0x8a, 0x33, 0xef, 0xdb, 0x2d, 0x6f, 0xd8, 0xb7, 0xfd, 0xfb, 0xb9, 0x2b, + 0xdc, 0xb2, 0x55, 0x57, 0x1a, 0x3b, 0x7e, 0x19, 0x5e, 0x65, 0xcc, 0xec, 0x7b, 0x00, 0x5f, 0x05, + 0x2b, 0x7e, 0xae, 0xa5, 0xc7, 0x23, 0xc4, 0x36, 0x52, 0x2e, 0xde, 0xd2, 0xd4, 0x1a, 0x30, 0xe0, + 0xe5, 0x36, 0xff, 0x09, 0x5f, 0x02, 0x05, 0x2a, 0x81, 0x3d, 0x14, 0xcb, 0x8f, 0x3e, 0x2b, 0x23, + 0xd5, 0xfd, 0xa7, 0x65, 0x18, 0xb4, 0xc3, 0xdf, 0xb0, 0x0c, 0x96, 0xa3, 0xf1, 0x31, 0xbb, 0x03, + 0x9a, 0x87, 0x04, 0x5c, 0x08, 0x87, 0x47, 0xa5, 0x3c, 0xd1, 0x00, 0x11, 0x9e, 0x33, 0x3e, 0x4f, + 0x38, 0x3e, 0xea, 0x80, 0x60, 0xf2, 0x60, 0x84, 0x08, 0x47, 0x91, 0x72, 0x2c, 0xb2, 0x01, 0x52, + 0x07, 0x70, 0x87, 0x2e, 0xd2, 0xdb, 0x6e, 0xb7, 0x6b, 0xb7, 0x3d, 0xb3, 0x6f, 0xb7, 0x06, 0xe1, + 0x46, 0x59, 0xd4, 0x4b, 0x39, 0xe4, 0xc0, 0x94, 0x01, 0x8b, 0x56, 0x82, 0x42, 0x1c, 0xde, 0xee, + 0xf7, 0xdd, 0x3e, 0x85, 0x77, 0x8b, 0xd8, 0xff, 0x80, 0xef, 0x05, 0x22, 0xd7, 0x7d, 0xfa, 0x52, + 0x89, 0xa6, 0xf1, 0xc2, 0x4d, 0x38, 0xfa, 0xb4, 0x0e, 0xaf, 0x44, 0xfd, 0xaf, 0xba, 0x16, 0x8d, + 0xb2, 0xad, 0xa1, 0xe5, 0xb8, 0xfe, 0x0b, 0x27, 0xba, 0x0e, 0x59, 0xc4, 0x80, 0x92, 0xfc, 0x37, + 0x54, 0xd7, 0x53, 0x30, 0xca, 0x69, 0xff, 0xbd, 0x4c, 0x12, 0x82, 0x5c, 0x05, 0x2b, 0xbd, 0x76, + 0xab, 0x67, 0xde, 0x77, 0x3a, 0xb6, 0xd9, 0x71, 0xba, 0x0f, 0x8b, 0x67, 0x29, 0xe3, 0x12, 0xa1, + 0xee, 0x38, 0x1d, 0xbb, 0xee, 0x74, 0x1f, 0xc2, 0x97, 0xc0, 0x12, 0xd5, 0xb7, 0xed, 0x76, 0x3d, + 0xfb, 0x0d, 0xaf, 0x58, 0xa2, 0xde, 0xb6, 0x31, 0x12, 0x19, 0xa5, 0xee, 0x11, 0xa6, 0x13, 0x5b, + 0xf5, 0x19, 0xe1, 0x2b, 0x60, 0xb9, 0xc7, 0x9e, 0x27, 0x99, 0x4e, 0xf7, 0xbe, 0x5b, 0x3c, 0x47, + 0x7b, 0x39, 0xfa, 0x78, 0xc9, 0x3f, 0x55, 0xea, 0xf1, 0x6f, 0xa2, 0x12, 0xc9, 0xee, 0xfc, 0xc4, + 0x64, 0xf7, 0xe4, 0x10, 0x46, 0xf9, 0x33, 0x02, 0x3d, 0x55, 0x0c, 0x52, 0x0d, 0xd5, 0x65, 0x9b, + 0x4b, 0x6c, 0xb1, 0x45, 0x62, 0x40, 0x25, 0x8b, 0xc4, 0xf0, 0xb7, 0xc5, 0x47, 0xef, 0xec, 0xb8, + 0xe8, 0x7d, 0x6c, 0xb2, 0x7c, 0x09, 0x14, 0xa3, 0x46, 0xbb, 0x8e, 0xe7, 0x70, 0x66, 0x9f, 0xa3, + 0x06, 0x7b, 0x3a, 0x6c, 0x32, 0x28, 0xa6, 0xc6, 0xcb, 0x57, 0x6c, 0xbb, 0x87, 0xbd, 0x8e, 0x1d, + 0x55, 0x9c, 0x8b, 0x57, 0xac, 0x06, 0xc5, 0xb4, 0x62, 0x15, 0xac, 0x86, 0x15, 0x99, 0x6b, 0xfa, + 0x7b, 0x79, 0xa5, 0x91, 0xad, 0x13, 0x92, 0x84, 0x99, 0x79, 0x7a, 0xb1, 0xef, 0xc8, 0xe4, 0x17, + 0x78, 0x93, 0x97, 0xc1, 0x46, 0x42, 0xb4, 0x6f, 0xf6, 0xf9, 0xb1, 0x66, 0x0f, 0xe3, 0x72, 0x89, + 0x69, 0x97, 0x7f, 0x32, 0x03, 0xe6, 0xfd, 0x80, 0x49, 0x56, 0x5f, 0xc3, 0x81, 0xdd, 0x0f, 0x1e, + 0x0a, 0x92, 0xdf, 0x84, 0x46, 0x37, 0x25, 0xd8, 0xf5, 0x4f, 0xf2, 0x9b, 0x3e, 0xad, 0xeb, 0xb1, + 0xd1, 0xcd, 0x3a, 0x3d, 0xc2, 0x43, 0xf7, 0x84, 0x72, 0xfe, 0x63, 0x42, 0xba, 0xef, 0x73, 0x92, + 0x5b, 0x99, 0x65, 0x1d, 0x14, 0x38, 0xd0, 0x4b, 0xe4, 0xb6, 0x23, 0xec, 0x44, 0x7f, 0xc3, 0x22, + 0x58, 0x08, 0x76, 0xaa, 0x7c, 0x95, 0x82, 0x4f, 0x2e, 0xad, 0x0a, 0x7c, 0x5a, 0xdd, 0xfa, 0xf6, + 0x06, 0x58, 0x8e, 0x3d, 0xaa, 0x85, 0x9b, 0x14, 0x92, 0x9a, 0xba, 0x21, 0x19, 0x4d, 0xdd, 0x6c, + 0xaa, 0xb7, 0x54, 0xed, 0x8e, 0x2a, 0x9e, 0x82, 0xa7, 0xe9, 0x16, 0x5a, 0x40, 0x37, 0xf0, 0xbe, + 0xa2, 0xee, 0x8a, 0x16, 0x3c, 0x13, 0x63, 0xc7, 0x8a, 0xba, 0x4b, 0xe8, 0x5f, 0xcf, 0xc0, 0xa7, + 0xc0, 0x79, 0xae, 0xa0, 0x2a, 0xd5, 0xeb, 0xa6, 0xa2, 0x9b, 0x3b, 0x1a, 0xbe, 0x23, 0x61, 0x19, + 0xc9, 0xe2, 0x37, 0x32, 0x70, 0x33, 0x26, 0xf2, 0x83, 0x4d, 0xd4, 0x44, 0xb2, 0xf8, 0xcd, 0x0c, + 0xbc, 0x0c, 0xce, 0x71, 0x74, 0x1d, 0xe9, 0xba, 0xa2, 0xa9, 0x66, 0x03, 0x6b, 0xbb, 0x18, 0xe9, + 0xba, 0xf8, 0xad, 0x0c, 0x7c, 0x16, 0x94, 0x39, 0x0e, 0x24, 0xe1, 0xfa, 0xbe, 0x29, 0x2b, 0x52, + 0x5d, 0xdb, 0x35, 0x0d, 0x84, 0xf7, 0x14, 0x55, 0x32, 0x90, 0x2c, 0xfe, 0x4e, 0x06, 0x42, 0xda, + 0xbd, 0x80, 0x51, 0xbb, 0x25, 0xfe, 0x6e, 0x06, 0x16, 0xe9, 0x39, 0x59, 0x40, 0x93, 0xaa, 0x55, + 0xd4, 0x20, 0xdc, 0xbf, 0x97, 0x81, 0x97, 0x40, 0x89, 0x2b, 0x51, 0x35, 0x53, 0xd5, 0x0c, 0x65, + 0x47, 0xa9, 0x4a, 0x86, 0xa2, 0xa9, 0xe2, 0x1f, 0x24, 0x35, 0xdb, 0x6b, 0xd6, 0x0d, 0xa5, 0x51, + 0x47, 0x66, 0xb5, 0xa6, 0x29, 0x55, 0xa4, 0x8b, 0x5f, 0xce, 0x26, 0xba, 0xbd, 0xa7, 0xdd, 0x46, + 0xb2, 0xd9, 0x40, 0x78, 0x4f, 0x52, 0x91, 0x6a, 0xd4, 0xf7, 0xc5, 0xaf, 0xa4, 0xb3, 0x18, 0x68, + 0xaf, 0xa1, 0x61, 0x09, 0x2b, 0xf5, 0x7d, 0xf1, 0xab, 0x59, 0x78, 0x96, 0x5e, 0x50, 0x0e, 0x27, + 0x41, 0x47, 0xa4, 0xf7, 0x77, 0xf7, 0xc5, 0xaf, 0x65, 0xe1, 0x15, 0x70, 0x91, 0xd7, 0xbe, 0x6e, + 0x20, 0xac, 0x4a, 0x86, 0x72, 0x1b, 0x99, 0x3a, 0xc2, 0xb7, 0x95, 0x2a, 0x12, 0xff, 0x27, 0x0b, + 0xcf, 0xd1, 0x3b, 0x82, 0x01, 0x53, 0x45, 0x92, 0x4d, 0x8c, 0x3e, 0xd8, 0x44, 0xba, 0x21, 0xfe, + 0x8c, 0x00, 0xcf, 0x83, 0x33, 0xb1, 0x19, 0x96, 0x9a, 0x46, 0x4d, 0xc3, 0xca, 0x87, 0x90, 0x2c, + 0x7e, 0x42, 0x48, 0x74, 0xb1, 0x21, 0xed, 0xef, 0x21, 0xd5, 0xa0, 0xd5, 0x15, 0x8c, 0x64, 0xf1, + 0x93, 0x42, 0x42, 0xb9, 0x1d, 0x0d, 0x57, 0x14, 0x59, 0x46, 0xaa, 0xf8, 0x29, 0x21, 0x31, 0xb4, + 0xaa, 0x66, 0xec, 0xd0, 0x87, 0x70, 0x3f, 0x2b, 0xc0, 0x32, 0xb8, 0xc0, 0x77, 0x1a, 0x19, 0x35, + 0x4d, 0x26, 0x0c, 0xa6, 0x54, 0xaf, 0x6b, 0x77, 0x90, 0x2c, 0xfe, 0x9c, 0x00, 0x2f, 0xd2, 0xeb, + 0x23, 0x5c, 0x6d, 0x36, 0x39, 0x52, 0xa5, 0x8e, 0xc4, 0x9f, 0x17, 0x12, 0x5d, 0xa7, 0x23, 0x62, + 0x12, 0xe5, 0x23, 0xed, 0x3e, 0x2d, 0x24, 0xe6, 0x90, 0x75, 0xdb, 0x34, 0x94, 0x3d, 0xa4, 0x35, + 0x0d, 0xf1, 0x17, 0x92, 0x3a, 0x56, 0x35, 0x75, 0xa7, 0xae, 0x54, 0x0d, 0xf1, 0x33, 0x02, 0xdc, + 0xa0, 0x81, 0x38, 0x28, 0xd9, 0xd5, 0x54, 0x24, 0xfe, 0x62, 0x52, 0x60, 0x1d, 0xa9, 0xbb, 0x7c, + 0x8b, 0xbf, 0x24, 0xc0, 0x2d, 0xf0, 0x74, 0x5c, 0xa0, 0xac, 0x10, 0x7b, 0x91, 0xea, 0x61, 0xeb, + 0x3b, 0x92, 0x52, 0x47, 0xb2, 0xf8, 0x59, 0x01, 0x5e, 0x03, 0x57, 0x52, 0xb4, 0x43, 0xaa, 0xa1, + 0x18, 0xfb, 0xa6, 0xa1, 0x69, 0x66, 0x5d, 0xc2, 0xbb, 0x48, 0xfc, 0x65, 0x01, 0x5e, 0x05, 0x97, + 0x52, 0x38, 0x9b, 0x58, 0xf1, 0xd9, 0x34, 0x75, 0x57, 0xfc, 0x15, 0x01, 0x3e, 0x03, 0x9e, 0x8a, + 0xcd, 0xa5, 0xde, 0x6c, 0x34, 0x34, 0x6c, 0x20, 0xd9, 0xdc, 0x43, 0xb2, 0x22, 0x99, 0xc6, 0x7e, + 0x03, 0x89, 0x9f, 0x13, 0xe0, 0x0d, 0xb0, 0x35, 0x2a, 0x0d, 0xc9, 0x26, 0x96, 0xd4, 0x5d, 0x44, + 0x87, 0x5a, 0x97, 0x0c, 0x45, 0xdf, 0x51, 0xe8, 0x58, 0x7f, 0x5e, 0x80, 0xd7, 0xc1, 0xd5, 0xd1, + 0x30, 0x60, 0x62, 0xa4, 0x6b, 0x4d, 0x5c, 0x25, 0xe6, 0xa8, 0x68, 0x58, 0x31, 0xf6, 0xc5, 0x2f, + 0x08, 0xf0, 0x02, 0x28, 0x26, 0x8c, 0x0d, 0xdd, 0x35, 0x90, 0x4a, 0x9c, 0x56, 0xfc, 0xd5, 0xe4, + 0xcc, 0x87, 0x45, 0xd1, 0x10, 0xfe, 0x5a, 0x72, 0x08, 0x03, 0x8f, 0x57, 0x54, 0x03, 0xe1, 0xdb, + 0x52, 0x9d, 0xf6, 0x58, 0xdf, 0x93, 0xea, 0x75, 0xf1, 0xd7, 0x93, 0xf2, 0x62, 0x3c, 0x15, 0xac, + 0xa0, 0x1d, 0xf1, 0x37, 0x92, 0xc3, 0x4c, 0x54, 0xaa, 0x6b, 0xbe, 0x17, 0x9b, 0x8a, 0xba, 0xa3, + 0xe1, 0x3d, 0xdf, 0xa3, 0xbf, 0x28, 0x24, 0x9c, 0x91, 0x70, 0x4a, 0x75, 0x84, 0x0d, 0x73, 0x0f, + 0xe9, 0xba, 0xb4, 0x8b, 0xc4, 0xdf, 0x4c, 0x9a, 0x1d, 0x71, 0x46, 0x45, 0x66, 0x33, 0x56, 0x43, + 0x92, 0x8c, 0xb0, 0xf8, 0xe5, 0xe4, 0x78, 0x35, 0xb0, 0x76, 0x5b, 0x91, 0x91, 0x89, 0xd1, 0x0e, + 0xc2, 0x18, 0xe1, 0xb0, 0x86, 0xf8, 0x15, 0x21, 0xe1, 0x9c, 0x3b, 0x75, 0xed, 0x4e, 0x60, 0x20, + 0x5f, 0x4d, 0x4e, 0xbb, 0xa4, 0x6a, 0xea, 0xfe, 0x1e, 0x69, 0x49, 0x56, 0xf4, 0xc0, 0x53, 0xbe, + 0x96, 0xa6, 0x75, 0xa8, 0x12, 0xe9, 0x9f, 0xf8, 0x75, 0x21, 0x11, 0x22, 0x79, 0xcb, 0xa8, 0x22, + 0xcc, 0xa2, 0x1a, 0x12, 0xbf, 0x91, 0x64, 0x54, 0xd4, 0xdb, 0x52, 0x5d, 0x91, 0x47, 0xba, 0xf8, + 0x4d, 0x01, 0xbe, 0x00, 0x9e, 0xe3, 0xf5, 0x56, 0xb0, 0x6e, 0x98, 0x35, 0xad, 0x61, 0xd6, 0xa5, + 0xea, 0x2d, 0x3d, 0x7c, 0xf5, 0x6a, 0xb2, 0x86, 0xc4, 0x6f, 0x25, 0x3b, 0xb3, 0x27, 0xdd, 0x35, + 0x2b, 0x18, 0x49, 0xb2, 0x51, 0x33, 0xd1, 0xdd, 0x2a, 0x42, 0x24, 0x0d, 0xfc, 0x76, 0x32, 0xe2, + 0xd0, 0xce, 0xa8, 0x3b, 0x9a, 0xd9, 0x90, 0xaa, 0xb7, 0xc8, 0x0c, 0xfc, 0x71, 0x32, 0x30, 0x54, + 0x35, 0x55, 0x27, 0x31, 0x49, 0xf5, 0x25, 0xfc, 0x49, 0xb2, 0x0b, 0x5c, 0x2c, 0x25, 0xd1, 0xed, + 0xb6, 0xa4, 0xd4, 0xa9, 0x55, 0x7f, 0x27, 0xd9, 0x05, 0x9a, 0x94, 0x0c, 0x2c, 0xa9, 0xba, 0x54, + 0xa5, 0xb6, 0x21, 0x6b, 0xc8, 0x8f, 0x3b, 0xe8, 0xae, 0xa2, 0x1b, 0xba, 0xf8, 0x57, 0x49, 0xe3, + 0xae, 0x6b, 0x5a, 0xc3, 0x94, 0x91, 0x81, 0xaa, 0x24, 0x63, 0xfc, 0x75, 0xb2, 0x98, 0xd8, 0xe0, + 0x9e, 0xa4, 0xee, 0x93, 0x61, 0xd1, 0xc5, 0xef, 0x26, 0x6d, 0x55, 0x92, 0x65, 0x92, 0xc0, 0x4c, + 0x45, 0xad, 0x6a, 0x7b, 0x8d, 0x3a, 0x32, 0x90, 0xf8, 0x37, 0xc9, 0x70, 0x2a, 0xed, 0x55, 0x94, + 0xdd, 0xa6, 0xd6, 0xd4, 0xc5, 0xbf, 0x4d, 0x16, 0x55, 0x9a, 0x3a, 0x99, 0x0e, 0x8c, 0xc4, 0xbf, + 0x4b, 0x4a, 0x0e, 0xc3, 0x5c, 0x94, 0xfc, 0xfe, 0x3e, 0x69, 0xb8, 0xf1, 0x78, 0xea, 0x0b, 0xfa, + 0xde, 0x48, 0x1b, 0xc4, 0x7b, 0x6f, 0x23, 0xd5, 0x10, 0xff, 0x61, 0x5c, 0x28, 0x6d, 0x20, 0x55, + 0x26, 0x39, 0xfe, 0x9f, 0x92, 0xf3, 0xd2, 0x54, 0x65, 0x54, 0x55, 0x1a, 0x35, 0x84, 0xe9, 0x70, + 0xff, 0xb3, 0x00, 0x9f, 0x03, 0xcf, 0xc4, 0xdc, 0xba, 0xda, 0x24, 0x31, 0xc3, 0x94, 0x76, 0x31, + 0x42, 0xf1, 0xb4, 0xf2, 0x2f, 0x02, 0x7c, 0x1a, 0x5c, 0x4e, 0xfa, 0x35, 0x89, 0xa1, 0x24, 0xab, + 0x21, 0x6c, 0x22, 0x8c, 0x35, 0x2c, 0xfe, 0x9b, 0x30, 0x92, 0xa3, 0x0d, 0x53, 0x21, 0x63, 0x49, + 0xc4, 0x21, 0x59, 0xfc, 0x77, 0x21, 0x25, 0xf7, 0xed, 0x4a, 0x06, 0xba, 0x23, 0xed, 0x8b, 0xff, + 0x91, 0x1c, 0x12, 0x96, 0x31, 0x63, 0x56, 0xf2, 0x9f, 0xc9, 0x26, 0x58, 0xed, 0x30, 0x85, 0xfc, + 0x57, 0x52, 0xd5, 0xdb, 0x08, 0xd3, 0x70, 0x45, 0xa3, 0x68, 0xe0, 0x65, 0xe2, 0x7f, 0x27, 0xbd, + 0x94, 0x45, 0x14, 0x2e, 0xca, 0xff, 0x78, 0x2e, 0x11, 0xbf, 0x77, 0xeb, 0x5a, 0x45, 0xaa, 0xfb, + 0x13, 0x8d, 0x6e, 0x23, 0xbc, 0x7f, 0x87, 0xce, 0xd2, 0x9f, 0xe5, 0x12, 0x23, 0xcd, 0xf8, 0x64, + 0x54, 0xad, 0x2b, 0x2a, 0x12, 0xff, 0x3c, 0x07, 0xb7, 0xc1, 0xf5, 0x94, 0xf2, 0x98, 0x39, 0x9b, + 0x92, 0xca, 0xe4, 0xfd, 0x45, 0x2e, 0xd1, 0x03, 0xc6, 0x9f, 0xc8, 0xb8, 0xdf, 0xce, 0x25, 0x47, + 0xc2, 0x67, 0x6b, 0xaa, 0x77, 0x24, 0x3a, 0xd8, 0x7f, 0x39, 0x86, 0x01, 0xa3, 0x0f, 0xf8, 0x0e, + 0xf2, 0x9d, 0xdc, 0xd6, 0x43, 0xf6, 0xef, 0x1e, 0x82, 0x23, 0x4f, 0x06, 0x2f, 0xa9, 0xd7, 0x91, + 0x91, 0x22, 0x09, 0x5c, 0x8b, 0xe0, 0x65, 0x44, 0x6f, 0xca, 0x0d, 0x31, 0x33, 0x4a, 0x36, 0xaa, + 0x0d, 0x31, 0x9b, 0x42, 0xae, 0xeb, 0xa2, 0xb0, 0xa5, 0x02, 0x31, 0x79, 0x00, 0x00, 0x21, 0xfd, + 0xbf, 0x1d, 0x04, 0xcc, 0xf9, 0x91, 0x4c, 0xf7, 0x5f, 0xef, 0x13, 0xda, 0xdd, 0x90, 0x94, 0x81, + 0xeb, 0x7e, 0xee, 0x27, 0x11, 0x21, 0x20, 0x66, 0xb7, 0x5c, 0xaa, 0x6c, 0x62, 0x6f, 0x1d, 0x5e, + 0xf0, 0xe7, 0xc2, 0x4f, 0xb0, 0x48, 0xad, 0xe2, 0xfd, 0x86, 0x41, 0xe3, 0x33, 0x19, 0xb4, 0x53, + 0xf0, 0x9c, 0x0f, 0xaf, 0xe2, 0xc5, 0x34, 0x76, 0x8b, 0x99, 0xf4, 0xba, 0xcc, 0x0b, 0xc4, 0xec, + 0x56, 0x2b, 0xfa, 0x3f, 0x1d, 0xc6, 0x51, 0xcf, 0x86, 0x67, 0xc1, 0x69, 0x96, 0x4a, 0x30, 0x4d, + 0xe5, 0x1c, 0x1e, 0x2f, 0x81, 0xcd, 0x78, 0x51, 0xe0, 0x31, 0x62, 0x66, 0xb4, 0x8c, 0x64, 0x5d, + 0x5a, 0x96, 0xdd, 0x7a, 0x9d, 0xf6, 0x3d, 0xda, 0xee, 0xa0, 0x63, 0x59, 0x0d, 0x10, 0x3a, 0x89, + 0x4c, 0xc4, 0xb9, 0xa9, 0x7c, 0x42, 0x6e, 0x48, 0xd8, 0x50, 0xaa, 0x4a, 0x43, 0x52, 0x0d, 0xf3, + 0x03, 0x9a, 0xa2, 0x22, 0x59, 0xcc, 0xc0, 0x15, 0x00, 0x48, 0x19, 0x89, 0x9a, 0xb7, 0x91, 0x98, + 0x85, 0x1b, 0x40, 0x24, 0xdf, 0xb2, 0xa2, 0x57, 0x35, 0x55, 0xf5, 0xe7, 0x5e, 0x80, 0xcb, 0x60, + 0x91, 0x50, 0x7d, 0xcf, 0xcd, 0x6d, 0xb5, 0xe9, 0x9c, 0xc5, 0x17, 0x73, 0xb0, 0x08, 0x36, 0x74, + 0x43, 0xf7, 0x27, 0x72, 0x07, 0x61, 0x53, 0x53, 0x77, 0x35, 0xbf, 0xfd, 0x33, 0x60, 0x3d, 0x56, + 0xc2, 0x52, 0x64, 0x86, 0x8e, 0x2f, 0x5f, 0xa0, 0x37, 0xab, 0x55, 0xa4, 0xeb, 0x3b, 0x4d, 0xd2, + 0xbb, 0xeb, 0x00, 0x44, 0x3b, 0x49, 0x30, 0x0f, 0x72, 0x2a, 0x41, 0x71, 0x74, 0xc6, 0x6f, 0x61, + 0x45, 0x6f, 0x98, 0x48, 0x25, 0xd3, 0x24, 0x8b, 0x99, 0xad, 0x1d, 0x6a, 0x2c, 0xb1, 0x6d, 0x23, + 0xb8, 0x0a, 0x0a, 0x7a, 0x55, 0xe6, 0x46, 0x99, 0x11, 0xa2, 0xff, 0xf2, 0x20, 0x82, 0x25, 0x42, + 0x88, 0xfe, 0xc7, 0xc3, 0xcd, 0x3f, 0x2d, 0x00, 0x41, 0x57, 0x1a, 0xb0, 0x01, 0x96, 0xf8, 0xcb, + 0xf7, 0xf0, 0x7c, 0xec, 0x32, 0x4f, 0xe2, 0x8e, 0x76, 0xe9, 0xc2, 0x98, 0x52, 0xff, 0x32, 0x45, + 0x59, 0x78, 0x2b, 0x9b, 0x81, 0x1f, 0xe6, 0xfe, 0x81, 0x11, 0x7f, 0xb1, 0x1d, 0x3e, 0x3d, 0x7a, + 0xd4, 0x96, 0x72, 0x4f, 0xbf, 0x34, 0xf1, 0x66, 0x3c, 0x34, 0xc1, 0x66, 0xfa, 0x73, 0x51, 0xf8, + 0xcc, 0xa8, 0xf8, 0xb4, 0x5b, 0xf3, 0xa5, 0xc9, 0xd7, 0xd4, 0x89, 0xfa, 0xa9, 0xff, 0xa3, 0x82, + 0x53, 0x7f, 0xd2, 0xff, 0xb0, 0x38, 0x5e, 0xfd, 0xf4, 0x67, 0xa9, 0x9c, 0xfa, 0x13, 0xdf, 0xad, + 0x1e, 0xa7, 0xfe, 0x0f, 0x03, 0x38, 0xfa, 0x0a, 0x05, 0x46, 0x37, 0xaf, 0xc7, 0x3e, 0x78, 0x29, + 0x5d, 0x99, 0xc8, 0xc3, 0xae, 0xcb, 0xfc, 0x28, 0x58, 0x4f, 0x79, 0x43, 0x02, 0x93, 0x75, 0x53, + 0x35, 0xbf, 0x3a, 0x99, 0x29, 0x6a, 0x21, 0xe5, 0x19, 0x05, 0xd7, 0xc2, 0xf8, 0x27, 0x1e, 0x5c, + 0x0b, 0x93, 0x5e, 0x62, 0xb4, 0xc3, 0xf7, 0x26, 0xf1, 0x4e, 0x8c, 0xd4, 0x4e, 0xed, 0xc5, 0xd3, + 0xc7, 0x70, 0xb1, 0x46, 0x76, 0xc1, 0x4a, 0xfc, 0x99, 0x03, 0xbc, 0xc8, 0x9d, 0x02, 0xa6, 0xbc, + 0x7f, 0x28, 0xa5, 0xbf, 0x6f, 0x89, 0xb9, 0x53, 0xec, 0x0e, 0xff, 0xd3, 0x53, 0xdd, 0x97, 0x2e, + 0x4d, 0xbc, 0xd1, 0x14, 0xb3, 0xf6, 0x31, 0xd2, 0x27, 0xdd, 0x41, 0x3e, 0x46, 0x7a, 0x34, 0x97, + 0x31, 0xd9, 0x23, 0x73, 0x99, 0x26, 0xf9, 0xea, 0x64, 0x26, 0x36, 0xcc, 0x1f, 0xe6, 0x5e, 0x93, + 0x8c, 0xd1, 0x7f, 0xd2, 0x55, 0xad, 0x63, 0xf4, 0xdf, 0x07, 0x1b, 0x69, 0xb7, 0x02, 0x38, 0x4b, + 0x99, 0x70, 0x69, 0xa0, 0x14, 0x3b, 0xea, 0x4e, 0x9e, 0x96, 0xde, 0x05, 0x9b, 0xe9, 0xc7, 0x74, + 0x5c, 0x20, 0x98, 0x78, 0x8e, 0x57, 0xda, 0x1c, 0xd9, 0x58, 0x46, 0x87, 0x3d, 0xef, 0xa8, 0xb2, + 0xf3, 0xa1, 0x2b, 0x07, 0x8e, 0xf7, 0x60, 0x78, 0x6f, 0xbb, 0xed, 0x1e, 0xde, 0x60, 0xb2, 0xfc, + 0xff, 0x80, 0xd7, 0x76, 0x3b, 0x01, 0xe1, 0x4b, 0xd9, 0xe5, 0xba, 0xf3, 0x9a, 0x7d, 0xcb, 0xdf, + 0x5d, 0xf6, 0xdc, 0x7f, 0xcc, 0xae, 0xb0, 0xef, 0x57, 0x5e, 0xa1, 0x84, 0x7b, 0xf3, 0xb4, 0xca, + 0x8b, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x96, 0x65, 0xdb, 0xb8, 0x4f, 0x00, 0x00, } diff --git a/livekit/sip.go b/livekit/sip.go index ff1a16eae..64e110644 100644 --- a/livekit/sip.go +++ b/livekit/sip.go @@ -8,11 +8,12 @@ import ( "strconv" "strings" + "golang.org/x/text/language" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" + "google.golang.org/protobuf/proto" "github.com/livekit/protocol/utils/xtwirp" - "golang.org/x/text/language" ) var ( @@ -493,7 +494,7 @@ var ( ) func (p *UpdateSIPOutboundTrunkRequest_Replace) Apply(info *SIPOutboundTrunkInfo) (*SIPOutboundTrunkInfo, error) { - val := cloneProto(p.Replace) + val := proto.CloneOf(p.Replace) if val == nil { return nil, errors.New("missing trunk") } @@ -511,7 +512,7 @@ func (p *UpdateSIPOutboundTrunkRequest_Update) Apply(info *SIPOutboundTrunkInfo) if diff == nil { return nil, errors.New("missing trunk update") } - val := cloneProto(info) + val := proto.CloneOf(info) if err := diff.Apply(val); err != nil { return nil, err } @@ -597,7 +598,7 @@ var ( ) func (p *UpdateSIPInboundTrunkRequest_Replace) Apply(info *SIPInboundTrunkInfo) (*SIPInboundTrunkInfo, error) { - val := cloneProto(p.Replace) + val := proto.CloneOf(p.Replace) if val == nil { return nil, errors.New("missing trunk") } @@ -615,7 +616,7 @@ func (p *UpdateSIPInboundTrunkRequest_Update) Apply(info *SIPInboundTrunkInfo) ( if diff == nil { return nil, errors.New("missing trunk update") } - val := cloneProto(info) + val := proto.CloneOf(info) if err := diff.Apply(val); err != nil { return nil, err } @@ -701,10 +702,15 @@ func (p *SIPDispatchRuleUpdate) Apply(info *SIPDispatchRuleInfo) error { } applyListUpdate(&info.TrunkIds, p.TrunkIds) applyUpdatePtr(&info.Rule, p.Rule) + applyUpdatePtr(&info.Media, p.Media) applyUpdate(&info.Name, p.Name) applyUpdate(&info.Metadata, p.Metadata) applyUpdate(&info.MediaEncryption, p.MediaEncryption) applyMapDiff(&info.Attributes, p.Attributes) + info.Upgrade() + if m := info.Media; m != nil { + info.MediaEncryption = m.Encryption.Deref() + } return info.Validate() } @@ -719,7 +725,7 @@ var ( ) func (p *UpdateSIPDispatchRuleRequest_Replace) Apply(info *SIPDispatchRuleInfo) (*SIPDispatchRuleInfo, error) { - val := cloneProto(p.Replace) + val := proto.CloneOf(p.Replace) if val == nil { return nil, errors.New("missing dispatch rule") } @@ -737,7 +743,7 @@ func (p *UpdateSIPDispatchRuleRequest_Update) Apply(info *SIPDispatchRuleInfo) ( if diff == nil { return nil, errors.New("missing dispatch rule update") } - val := cloneProto(info) + val := proto.CloneOf(info) if err := diff.Apply(val); err != nil { return nil, err } @@ -1024,3 +1030,60 @@ var ( ")", "", ) ) + +func (p *SIPCodec) Validate() error { + if p.Name == "" { + return errors.New("missing codec name") + } + if strings.ContainsAny(p.Name, " \t\n\r") { + return errors.New("invalid codec name") + } + if strings.Contains(p.Name, "/") { + return errors.New("codec name must not contain '/'") + } + if p.Rate == 0 { + return errors.New("invalid codec sample rate") + } + return nil +} + +func (p *SIPDispatchRuleInfo) Upgrade() { + if p == nil { + return + } + p.Media = p.Media.UpgradeWith(p.MediaEncryption) +} + +func (p *CreateSIPParticipantRequest) Upgrade() { + if p == nil { + return + } + p.Media = p.Media.UpgradeWith(p.MediaEncryption) +} + +func (p *SIPMediaConfig) Validate() error { + for _, c := range p.Codecs { + if err := c.Validate(); err != nil { + return err + } + } + return nil +} + +func (p *SIPMediaEncryption) Deref() SIPMediaEncryption { + if p == nil { + return SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE + } + return *p +} + +func (p *SIPMediaConfig) UpgradeWith(enc SIPMediaEncryption) *SIPMediaConfig { + if p == nil { + p = new(SIPMediaConfig) + } + // Ignore DISABLE as it's a zero value which means "unset". + if p.Encryption == nil && enc != SIPMediaEncryption_SIP_MEDIA_ENCRYPT_DISABLE { + p.Encryption = &enc + } + return p +} diff --git a/livekit/sip_test.go b/livekit/sip_test.go index 10f27d44b..bacfb660e 100644 --- a/livekit/sip_test.go +++ b/livekit/sip_test.go @@ -616,7 +616,7 @@ func TestInboundTrunkUpdate(t *testing.T) { Metadata: "test", }, out)) - r2 := cloneProto(r) + r2 := proto.CloneOf(r) r2.Numbers = []string{"T4"} upd2 := &UpdateSIPInboundTrunkRequest{ Action: &UpdateSIPInboundTrunkRequest_Replace{ @@ -661,7 +661,7 @@ func TestOutboundTrunkUpdate(t *testing.T) { Metadata: "test", }, out)) - r2 := cloneProto(r) + r2 := proto.CloneOf(r) r2.Numbers = []string{"T4"} upd2 := &UpdateSIPOutboundTrunkRequest{ Action: &UpdateSIPOutboundTrunkRequest_Replace{ @@ -685,6 +685,7 @@ func TestDispatchRuleUpdate(t *testing.T) { DispatchRuleDirect: &SIPDispatchRuleDirect{RoomName: "test"}, }, }, + MediaEncryption: SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW, } name2 := "Test2" upd := &UpdateSIPDispatchRuleRequest{ @@ -694,13 +695,16 @@ func TestDispatchRuleUpdate(t *testing.T) { TrunkIds: &ListUpdate{ Set: []string{"T3"}, }, + Media: &SIPMediaConfig{ + Encryption: new(SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE), + }, }, }, } out, err := upd.Action.(UpdateSIPDispatchRuleRequestAction).Apply(r) require.NoError(t, err) require.True(t, r != out) - require.True(t, proto.Equal(&SIPDispatchRuleInfo{ + exp := &SIPDispatchRuleInfo{ Name: "Test2", TrunkIds: []string{"T3"}, Rule: &SIPDispatchRule{ @@ -708,9 +712,14 @@ func TestDispatchRuleUpdate(t *testing.T) { DispatchRuleDirect: &SIPDispatchRuleDirect{RoomName: "test"}, }, }, - }, out)) + MediaEncryption: SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, + Media: &SIPMediaConfig{ + Encryption: new(SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE), + }, + } + require.True(t, proto.Equal(exp, out), "%v\nvs\n%v", exp, out) - r2 := cloneProto(r) + r2 := proto.CloneOf(r) r2.TrunkIds = []string{"T4"} upd2 := &UpdateSIPDispatchRuleRequest{ Action: &UpdateSIPDispatchRuleRequest_Replace{ diff --git a/livekit/types.go b/livekit/types.go index a9772783f..3904f2dfa 100644 --- a/livekit/types.go +++ b/livekit/types.go @@ -198,10 +198,6 @@ func marshalProto(o proto.Message) (map[string]interface{}, error) { return m, nil } -func cloneProto[T proto.Message](m T) T { - return proto.Clone(m).(T) -} - func IsJobType(jobType JobType) bool { _, ok := JobType_name[int32(jobType)] return ok diff --git a/observability/agentsobs/gen_reporter.go b/observability/agentsobs/gen_reporter.go index 55d9da48f..d6b1fb92a 100644 --- a/observability/agentsobs/gen_reporter.go +++ b/observability/agentsobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package agentsobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_66BRGG8 = true +const Version_IIJ8EL8 = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,16 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithCloudAgent(id string) CloudAgentReporter WithDeferredCloudAgent() (CloudAgentReporter, KeyResolver) - ProjectTx + projectReporter } -type CloudAgentTx interface{} +type cloudAgentReporter interface { +} + +type CloudAgentTx interface { + Project() ProjectTx + cloudAgentReporter +} type CloudAgentReporter interface { RegisterFunc(func(ts time.Time, tx CloudAgentTx) bool) @@ -37,10 +48,16 @@ type CloudAgentReporter interface { TxAt(time.Time, func(tx CloudAgentTx)) WithAgent(name string) AgentReporter WithDeferredAgent() (AgentReporter, KeyResolver) - CloudAgentTx + cloudAgentReporter +} + +type agentReporter interface { } -type AgentTx interface{} +type AgentTx interface { + CloudAgent() CloudAgentTx + agentReporter +} type AgentReporter interface { RegisterFunc(func(ts time.Time, tx AgentTx) bool) @@ -48,10 +65,10 @@ type AgentReporter interface { TxAt(time.Time, func(tx AgentTx)) WithWorker(id string) WorkerReporter WithDeferredWorker() (WorkerReporter, KeyResolver) - AgentTx + agentReporter } -type WorkerTx interface { +type workerReporter interface { ReportLoad(v float32) ReportStatus(v WorkerStatus) ReportStartTime(v time.Time) @@ -68,30 +85,41 @@ type WorkerTx interface { ReportState(v WorkerState) } +type WorkerTx interface { + Agent() AgentTx + workerReporter +} + type WorkerReporter interface { RegisterFunc(func(ts time.Time, tx WorkerTx) bool) Tx(func(tx WorkerTx)) TxAt(time.Time, func(tx WorkerTx)) WithJob(id string) JobReporter WithDeferredJob() (JobReporter, KeyResolver) - WorkerTx + workerReporter } -type JobTx interface { +type jobReporter interface { ReportRoomSessionID(v string) ReportKind(v JobKind) ReportWorkerKind(v WorkerKind) ReportStatus(v JobStatus) ReportDuration(v uint32) + ReportDurationSeconds(v uint32) ReportDurationMinutes(v uint8) ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportJoinLatency(v uint32) } +type JobTx interface { + Worker() WorkerTx + jobReporter +} + type JobReporter interface { RegisterFunc(func(ts time.Time, tx JobTx) bool) Tx(func(tx JobTx)) TxAt(time.Time, func(tx JobTx)) - JobTx + jobReporter } diff --git a/observability/agentsobs/gen_reporter_noop.go b/observability/agentsobs/gen_reporter_noop.go index 09a5a595e..65124e992 100644 --- a/observability/agentsobs/gen_reporter_noop.go +++ b/observability/agentsobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package agentsobs @@ -9,10 +9,15 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ CloudAgentReporter = (*noopCloudAgentReporter)(nil) + _ CloudAgentTx = (*noopCloudAgentTx)(nil) _ AgentReporter = (*noopAgentReporter)(nil) + _ AgentTx = (*noopAgentTx)(nil) _ WorkerReporter = (*noopWorkerReporter)(nil) + _ WorkerTx = (*noopWorkerTx)(nil) _ JobReporter = (*noopJobReporter)(nil) + _ JobTx = (*noopJobTx)(nil) ) type noopKeyResolver struct{} @@ -50,6 +55,8 @@ func (r *noopProjectReporter) WithDeferredCloudAgent() (CloudAgentReporter, KeyR return &noopCloudAgentReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopCloudAgentReporter struct{} func NewNoopCloudAgentReporter() CloudAgentReporter { @@ -66,6 +73,12 @@ func (r *noopCloudAgentReporter) WithDeferredAgent() (AgentReporter, KeyResolver return &noopAgentReporter{}, noopKeyResolver{} } +type noopCloudAgentTx struct{} + +func (t *noopCloudAgentTx) Project() ProjectTx { + return &noopProjectTx{} +} + type noopAgentReporter struct{} func NewNoopAgentReporter() AgentReporter { @@ -82,6 +95,12 @@ func (r *noopAgentReporter) WithDeferredWorker() (WorkerReporter, KeyResolver) { return &noopWorkerReporter{}, noopKeyResolver{} } +type noopAgentTx struct{} + +func (t *noopAgentTx) CloudAgent() CloudAgentTx { + return &noopCloudAgentTx{} +} + type noopWorkerReporter struct{} func NewNoopWorkerReporter() WorkerReporter { @@ -112,6 +131,27 @@ func (r *noopWorkerReporter) WithDeferredJob() (JobReporter, KeyResolver) { return &noopJobReporter{}, noopKeyResolver{} } +type noopWorkerTx struct{} + +func (t *noopWorkerTx) Agent() AgentTx { + return &noopAgentTx{} +} + +func (t *noopWorkerTx) ReportLoad(v float32) {} +func (t *noopWorkerTx) ReportStatus(v WorkerStatus) {} +func (t *noopWorkerTx) ReportStartTime(v time.Time) {} +func (t *noopWorkerTx) ReportEndTime(v time.Time) {} +func (t *noopWorkerTx) ReportJobsCurrent(v uint32) {} +func (t *noopWorkerTx) ReportLive(v uint8) {} +func (t *noopWorkerTx) ReportCPU(v int64) {} +func (t *noopWorkerTx) ReportCPULimit(v int64) {} +func (t *noopWorkerTx) ReportMem(v int64) {} +func (t *noopWorkerTx) ReportMemLimit(v int64) {} +func (t *noopWorkerTx) ReportRegion(v string) {} +func (t *noopWorkerTx) ReportVersion(v string) {} +func (t *noopWorkerTx) ReportSdkVersion(v string) {} +func (t *noopWorkerTx) ReportState(v WorkerState) {} + type noopJobReporter struct{} func NewNoopJobReporter() JobReporter { @@ -126,7 +166,25 @@ func (r *noopJobReporter) ReportKind(v JobKind) {} func (r *noopJobReporter) ReportWorkerKind(v WorkerKind) {} func (r *noopJobReporter) ReportStatus(v JobStatus) {} func (r *noopJobReporter) ReportDuration(v uint32) {} +func (r *noopJobReporter) ReportDurationSeconds(v uint32) {} func (r *noopJobReporter) ReportDurationMinutes(v uint8) {} func (r *noopJobReporter) ReportStartTime(v time.Time) {} func (r *noopJobReporter) ReportEndTime(v time.Time) {} func (r *noopJobReporter) ReportJoinLatency(v uint32) {} + +type noopJobTx struct{} + +func (t *noopJobTx) Worker() WorkerTx { + return &noopWorkerTx{} +} + +func (t *noopJobTx) ReportRoomSessionID(v string) {} +func (t *noopJobTx) ReportKind(v JobKind) {} +func (t *noopJobTx) ReportWorkerKind(v WorkerKind) {} +func (t *noopJobTx) ReportStatus(v JobStatus) {} +func (t *noopJobTx) ReportDuration(v uint32) {} +func (t *noopJobTx) ReportDurationSeconds(v uint32) {} +func (t *noopJobTx) ReportDurationMinutes(v uint8) {} +func (t *noopJobTx) ReportStartTime(v time.Time) {} +func (t *noopJobTx) ReportEndTime(v time.Time) {} +func (t *noopJobTx) ReportJoinLatency(v uint32) {} diff --git a/observability/agentsobs/gen_source.go b/observability/agentsobs/gen_source.go index badbde9dd..894e3d304 100644 --- a/observability/agentsobs/gen_source.go +++ b/observability/agentsobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package agentsobs type WorkerStatus string diff --git a/observability/agentsv3obs/agent.go b/observability/agentsv3obs/agent.go new file mode 100644 index 000000000..fd677ca32 --- /dev/null +++ b/observability/agentsv3obs/agent.go @@ -0,0 +1,42 @@ +package agentsv3obs + +import "github.com/livekit/protocol/livekit" + +func JobKindFromProto(kind livekit.JobType) JobKind { + switch kind { + case livekit.JobType_JT_ROOM: + return JobKindRoom + case livekit.JobType_JT_PUBLISHER: + return JobKindPublisher + case livekit.JobType_JT_PARTICIPANT: + return JobKindParticipant + default: + return JobKindUndefined + } +} + +func JobStatusFromProto(status livekit.JobStatus) JobStatus { + switch status { + case livekit.JobStatus_JS_PENDING: + return JobStatusPending + case livekit.JobStatus_JS_RUNNING: + return JobStatusRunning + case livekit.JobStatus_JS_SUCCESS: + return JobStatusSuccess + case livekit.JobStatus_JS_FAILED: + return JobStatusFailed + default: + return JobStatusUndefined + } +} + +func WorkerStatusFromProto(status livekit.WorkerStatus) WorkerStatus { + switch status { + case livekit.WorkerStatus_WS_AVAILABLE: + return WorkerStatusAvailable + case livekit.WorkerStatus_WS_FULL: + return WorkerStatusFull + default: + return WorkerStatusUndefined + } +} diff --git a/observability/agentsv3obs/gen_reporter.go b/observability/agentsv3obs/gen_reporter.go new file mode 100644 index 000000000..8875fc550 --- /dev/null +++ b/observability/agentsv3obs/gen_reporter.go @@ -0,0 +1,142 @@ +// Code generated by cloud-observability; DO NOT EDIT. + +package agentsv3obs + +import ( + "time" +) + +const Version_MAT8U20 = true + +type KeyResolver interface { + Resolve(string) + Reset() +} + +type Reporter interface { + WithProject(id string) ProjectReporter + WithDeferredProject() (ProjectReporter, KeyResolver) +} + +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} + +type ProjectReporter interface { + RegisterFunc(func(ts time.Time, tx ProjectTx) bool) + Tx(func(tx ProjectTx)) + TxAt(time.Time, func(tx ProjectTx)) + WithCloudAgent(id string) CloudAgentReporter + WithDeferredCloudAgent() (CloudAgentReporter, KeyResolver) + projectReporter +} + +type cloudAgentReporter interface { +} + +type CloudAgentTx interface { + Project() ProjectTx + cloudAgentReporter +} + +type CloudAgentReporter interface { + RegisterFunc(func(ts time.Time, tx CloudAgentTx) bool) + Tx(func(tx CloudAgentTx)) + TxAt(time.Time, func(tx CloudAgentTx)) + WithAgent(name string) AgentReporter + WithDeferredAgent() (AgentReporter, KeyResolver) + cloudAgentReporter +} + +type agentReporter interface { +} + +type AgentTx interface { + CloudAgent() CloudAgentTx + agentReporter +} + +type AgentReporter interface { + RegisterFunc(func(ts time.Time, tx AgentTx) bool) + Tx(func(tx AgentTx)) + TxAt(time.Time, func(tx AgentTx)) + WithDeployment(name string) DeploymentReporter + WithDeferredDeployment() (DeploymentReporter, KeyResolver) + agentReporter +} + +type deploymentReporter interface { +} + +type DeploymentTx interface { + Agent() AgentTx + deploymentReporter +} + +type DeploymentReporter interface { + RegisterFunc(func(ts time.Time, tx DeploymentTx) bool) + Tx(func(tx DeploymentTx)) + TxAt(time.Time, func(tx DeploymentTx)) + WithWorker(id string) WorkerReporter + WithDeferredWorker() (WorkerReporter, KeyResolver) + deploymentReporter +} + +type workerReporter interface { + ReportLoad(v float32) + ReportStatus(v WorkerStatus) + ReportStartTime(v time.Time) + ReportEndTime(v time.Time) + ReportJobsCurrent(v uint32) + ReportLive(v uint8) + ReportCPU(v int64) + ReportCPULimit(v int64) + ReportMem(v int64) + ReportMemLimit(v int64) + ReportRegion(v string) + ReportVersion(v string) + ReportSdkVersion(v string) + ReportState(v WorkerState) +} + +type WorkerTx interface { + Deployment() DeploymentTx + workerReporter +} + +type WorkerReporter interface { + RegisterFunc(func(ts time.Time, tx WorkerTx) bool) + Tx(func(tx WorkerTx)) + TxAt(time.Time, func(tx WorkerTx)) + WithJob(id string) JobReporter + WithDeferredJob() (JobReporter, KeyResolver) + workerReporter +} + +type jobReporter interface { + ReportRoomSessionID(v string) + ReportKind(v JobKind) + ReportWorkerKind(v WorkerKind) + ReportStatus(v JobStatus) + ReportDuration(v uint32) + ReportDurationSeconds(v uint32) + ReportDurationMinutes(v uint8) + ReportStartTime(v time.Time) + ReportEndTime(v time.Time) + ReportJoinLatency(v uint32) +} + +type JobTx interface { + Worker() WorkerTx + jobReporter +} + +type JobReporter interface { + RegisterFunc(func(ts time.Time, tx JobTx) bool) + Tx(func(tx JobTx)) + TxAt(time.Time, func(tx JobTx)) + jobReporter +} diff --git a/observability/agentsv3obs/gen_reporter_noop.go b/observability/agentsv3obs/gen_reporter_noop.go new file mode 100644 index 000000000..c905ab27d --- /dev/null +++ b/observability/agentsv3obs/gen_reporter_noop.go @@ -0,0 +1,214 @@ +// Code generated by cloud-observability; DO NOT EDIT. + +package agentsv3obs + +import ( + "time" +) + +var ( + _ Reporter = (*noopReporter)(nil) + _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) + _ CloudAgentReporter = (*noopCloudAgentReporter)(nil) + _ CloudAgentTx = (*noopCloudAgentTx)(nil) + _ AgentReporter = (*noopAgentReporter)(nil) + _ AgentTx = (*noopAgentTx)(nil) + _ DeploymentReporter = (*noopDeploymentReporter)(nil) + _ DeploymentTx = (*noopDeploymentTx)(nil) + _ WorkerReporter = (*noopWorkerReporter)(nil) + _ WorkerTx = (*noopWorkerTx)(nil) + _ JobReporter = (*noopJobReporter)(nil) + _ JobTx = (*noopJobTx)(nil) +) + +type noopKeyResolver struct{} + +func (noopKeyResolver) Resolve(string) {} +func (noopKeyResolver) Reset() {} + +type noopReporter struct{} + +func NewNoopReporter() Reporter { + return &noopReporter{} +} + +func (r *noopReporter) WithProject(id string) ProjectReporter { + return &noopProjectReporter{} +} + +func (r *noopReporter) WithDeferredProject() (ProjectReporter, KeyResolver) { + return &noopProjectReporter{}, noopKeyResolver{} +} + +type noopProjectReporter struct{} + +func NewNoopProjectReporter() ProjectReporter { + return &noopProjectReporter{} +} + +func (r *noopProjectReporter) RegisterFunc(f func(ts time.Time, tx ProjectTx) bool) {} +func (r *noopProjectReporter) Tx(f func(ProjectTx)) {} +func (r *noopProjectReporter) TxAt(ts time.Time, f func(ProjectTx)) {} +func (r *noopProjectReporter) WithCloudAgent(id string) CloudAgentReporter { + return &noopCloudAgentReporter{} +} +func (r *noopProjectReporter) WithDeferredCloudAgent() (CloudAgentReporter, KeyResolver) { + return &noopCloudAgentReporter{}, noopKeyResolver{} +} + +type noopProjectTx struct{} + +type noopCloudAgentReporter struct{} + +func NewNoopCloudAgentReporter() CloudAgentReporter { + return &noopCloudAgentReporter{} +} + +func (r *noopCloudAgentReporter) RegisterFunc(f func(ts time.Time, tx CloudAgentTx) bool) {} +func (r *noopCloudAgentReporter) Tx(f func(CloudAgentTx)) {} +func (r *noopCloudAgentReporter) TxAt(ts time.Time, f func(CloudAgentTx)) {} +func (r *noopCloudAgentReporter) WithAgent(name string) AgentReporter { + return &noopAgentReporter{} +} +func (r *noopCloudAgentReporter) WithDeferredAgent() (AgentReporter, KeyResolver) { + return &noopAgentReporter{}, noopKeyResolver{} +} + +type noopCloudAgentTx struct{} + +func (t *noopCloudAgentTx) Project() ProjectTx { + return &noopProjectTx{} +} + +type noopAgentReporter struct{} + +func NewNoopAgentReporter() AgentReporter { + return &noopAgentReporter{} +} + +func (r *noopAgentReporter) RegisterFunc(f func(ts time.Time, tx AgentTx) bool) {} +func (r *noopAgentReporter) Tx(f func(AgentTx)) {} +func (r *noopAgentReporter) TxAt(ts time.Time, f func(AgentTx)) {} +func (r *noopAgentReporter) WithDeployment(name string) DeploymentReporter { + return &noopDeploymentReporter{} +} +func (r *noopAgentReporter) WithDeferredDeployment() (DeploymentReporter, KeyResolver) { + return &noopDeploymentReporter{}, noopKeyResolver{} +} + +type noopAgentTx struct{} + +func (t *noopAgentTx) CloudAgent() CloudAgentTx { + return &noopCloudAgentTx{} +} + +type noopDeploymentReporter struct{} + +func NewNoopDeploymentReporter() DeploymentReporter { + return &noopDeploymentReporter{} +} + +func (r *noopDeploymentReporter) RegisterFunc(f func(ts time.Time, tx DeploymentTx) bool) {} +func (r *noopDeploymentReporter) Tx(f func(DeploymentTx)) {} +func (r *noopDeploymentReporter) TxAt(ts time.Time, f func(DeploymentTx)) {} +func (r *noopDeploymentReporter) WithWorker(id string) WorkerReporter { + return &noopWorkerReporter{} +} +func (r *noopDeploymentReporter) WithDeferredWorker() (WorkerReporter, KeyResolver) { + return &noopWorkerReporter{}, noopKeyResolver{} +} + +type noopDeploymentTx struct{} + +func (t *noopDeploymentTx) Agent() AgentTx { + return &noopAgentTx{} +} + +type noopWorkerReporter struct{} + +func NewNoopWorkerReporter() WorkerReporter { + return &noopWorkerReporter{} +} + +func (r *noopWorkerReporter) RegisterFunc(f func(ts time.Time, tx WorkerTx) bool) {} +func (r *noopWorkerReporter) Tx(f func(WorkerTx)) {} +func (r *noopWorkerReporter) TxAt(ts time.Time, f func(WorkerTx)) {} +func (r *noopWorkerReporter) ReportLoad(v float32) {} +func (r *noopWorkerReporter) ReportStatus(v WorkerStatus) {} +func (r *noopWorkerReporter) ReportStartTime(v time.Time) {} +func (r *noopWorkerReporter) ReportEndTime(v time.Time) {} +func (r *noopWorkerReporter) ReportJobsCurrent(v uint32) {} +func (r *noopWorkerReporter) ReportLive(v uint8) {} +func (r *noopWorkerReporter) ReportCPU(v int64) {} +func (r *noopWorkerReporter) ReportCPULimit(v int64) {} +func (r *noopWorkerReporter) ReportMem(v int64) {} +func (r *noopWorkerReporter) ReportMemLimit(v int64) {} +func (r *noopWorkerReporter) ReportRegion(v string) {} +func (r *noopWorkerReporter) ReportVersion(v string) {} +func (r *noopWorkerReporter) ReportSdkVersion(v string) {} +func (r *noopWorkerReporter) ReportState(v WorkerState) {} +func (r *noopWorkerReporter) WithJob(id string) JobReporter { + return &noopJobReporter{} +} +func (r *noopWorkerReporter) WithDeferredJob() (JobReporter, KeyResolver) { + return &noopJobReporter{}, noopKeyResolver{} +} + +type noopWorkerTx struct{} + +func (t *noopWorkerTx) Deployment() DeploymentTx { + return &noopDeploymentTx{} +} + +func (t *noopWorkerTx) ReportLoad(v float32) {} +func (t *noopWorkerTx) ReportStatus(v WorkerStatus) {} +func (t *noopWorkerTx) ReportStartTime(v time.Time) {} +func (t *noopWorkerTx) ReportEndTime(v time.Time) {} +func (t *noopWorkerTx) ReportJobsCurrent(v uint32) {} +func (t *noopWorkerTx) ReportLive(v uint8) {} +func (t *noopWorkerTx) ReportCPU(v int64) {} +func (t *noopWorkerTx) ReportCPULimit(v int64) {} +func (t *noopWorkerTx) ReportMem(v int64) {} +func (t *noopWorkerTx) ReportMemLimit(v int64) {} +func (t *noopWorkerTx) ReportRegion(v string) {} +func (t *noopWorkerTx) ReportVersion(v string) {} +func (t *noopWorkerTx) ReportSdkVersion(v string) {} +func (t *noopWorkerTx) ReportState(v WorkerState) {} + +type noopJobReporter struct{} + +func NewNoopJobReporter() JobReporter { + return &noopJobReporter{} +} + +func (r *noopJobReporter) RegisterFunc(f func(ts time.Time, tx JobTx) bool) {} +func (r *noopJobReporter) Tx(f func(JobTx)) {} +func (r *noopJobReporter) TxAt(ts time.Time, f func(JobTx)) {} +func (r *noopJobReporter) ReportRoomSessionID(v string) {} +func (r *noopJobReporter) ReportKind(v JobKind) {} +func (r *noopJobReporter) ReportWorkerKind(v WorkerKind) {} +func (r *noopJobReporter) ReportStatus(v JobStatus) {} +func (r *noopJobReporter) ReportDuration(v uint32) {} +func (r *noopJobReporter) ReportDurationSeconds(v uint32) {} +func (r *noopJobReporter) ReportDurationMinutes(v uint8) {} +func (r *noopJobReporter) ReportStartTime(v time.Time) {} +func (r *noopJobReporter) ReportEndTime(v time.Time) {} +func (r *noopJobReporter) ReportJoinLatency(v uint32) {} + +type noopJobTx struct{} + +func (t *noopJobTx) Worker() WorkerTx { + return &noopWorkerTx{} +} + +func (t *noopJobTx) ReportRoomSessionID(v string) {} +func (t *noopJobTx) ReportKind(v JobKind) {} +func (t *noopJobTx) ReportWorkerKind(v WorkerKind) {} +func (t *noopJobTx) ReportStatus(v JobStatus) {} +func (t *noopJobTx) ReportDuration(v uint32) {} +func (t *noopJobTx) ReportDurationSeconds(v uint32) {} +func (t *noopJobTx) ReportDurationMinutes(v uint8) {} +func (t *noopJobTx) ReportStartTime(v time.Time) {} +func (t *noopJobTx) ReportEndTime(v time.Time) {} +func (t *noopJobTx) ReportJoinLatency(v uint32) {} diff --git a/observability/agentsv3obs/gen_source.go b/observability/agentsv3obs/gen_source.go new file mode 100644 index 000000000..d1af5b9d5 --- /dev/null +++ b/observability/agentsv3obs/gen_source.go @@ -0,0 +1,55 @@ +// Code generated by cloud-observability; DO NOT EDIT. +package agentsv3obs + +type WorkerStatus string + +const ( + WorkerStatusUndefined WorkerStatus = "" + WorkerStatusAvailable WorkerStatus = "available" + WorkerStatusFull WorkerStatus = "full" +) + +type WorkerState string + +const ( + WorkerStateUndefined WorkerState = "" + WorkerStateOnline WorkerState = "online" + WorkerStateOffline WorkerState = "offline" +) + +type JobKind string + +const ( + JobKindUndefined JobKind = "" + JobKindRoom JobKind = "room" + JobKindPublisher JobKind = "publisher" + JobKindParticipant JobKind = "participant" +) + +type WorkerKind string + +const ( + WorkerKindUndefined WorkerKind = "" + WorkerKindCloud WorkerKind = "cloud" + WorkerKindSelfhost WorkerKind = "selfhost" +) + +type JobStatus string + +const ( + JobStatusUndefined JobStatus = "" + JobStatusPending JobStatus = "pending" + JobStatusRunning JobStatus = "running" + JobStatusSuccess JobStatus = "success" + JobStatusFailed JobStatus = "failed" +) + +type Rollup string + +const ( + RollupUndefined Rollup = "" + RollupAgent Rollup = "agent" + RollupWorker Rollup = "worker" + RollupWorkerSeries Rollup = "worker_series" + RollupJob Rollup = "job" +) diff --git a/observability/corecallobs/gen_reporter.go b/observability/corecallobs/gen_reporter.go index 2252f7e0c..027a5c73c 100644 --- a/observability/corecallobs/gen_reporter.go +++ b/observability/corecallobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package corecallobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_857KEC0 = true +const Version_3B1VILG = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,13 +31,14 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithCall(id string) CallReporter WithDeferredCall() (CallReporter, KeyResolver) - ProjectTx + projectReporter } -type CallTx interface { +type callReporter interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportDuration(v uint64) + ReportDurationSeconds(v uint64) ReportDurationMinutes(v uint16) ReportDirection(v CallDirection) ReportCallType(v CallCallType) @@ -45,9 +51,14 @@ type CallTx interface { ReportStatus(v CallStatus) } +type CallTx interface { + Project() ProjectTx + callReporter +} + type CallReporter interface { RegisterFunc(func(ts time.Time, tx CallTx) bool) Tx(func(tx CallTx)) TxAt(time.Time, func(tx CallTx)) - CallTx + callReporter } diff --git a/observability/corecallobs/gen_reporter_noop.go b/observability/corecallobs/gen_reporter_noop.go index 191a955ed..6883f247d 100644 --- a/observability/corecallobs/gen_reporter_noop.go +++ b/observability/corecallobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package corecallobs @@ -9,7 +9,9 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ CallReporter = (*noopCallReporter)(nil) + _ CallTx = (*noopCallTx)(nil) ) type noopKeyResolver struct{} @@ -47,6 +49,8 @@ func (r *noopProjectReporter) WithDeferredCall() (CallReporter, KeyResolver) { return &noopCallReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopCallReporter struct{} func NewNoopCallReporter() CallReporter { @@ -59,6 +63,7 @@ func (r *noopCallReporter) TxAt(ts time.Time, f func(CallTx)) {} func (r *noopCallReporter) ReportStartTime(v time.Time) {} func (r *noopCallReporter) ReportEndTime(v time.Time) {} func (r *noopCallReporter) ReportDuration(v uint64) {} +func (r *noopCallReporter) ReportDurationSeconds(v uint64) {} func (r *noopCallReporter) ReportDurationMinutes(v uint16) {} func (r *noopCallReporter) ReportDirection(v CallDirection) {} func (r *noopCallReporter) ReportCallType(v CallCallType) {} @@ -69,3 +74,24 @@ func (r *noopCallReporter) ReportRoomID(v string) {} func (r *noopCallReporter) ReportRoomName(v string) {} func (r *noopCallReporter) ReportError(v string) {} func (r *noopCallReporter) ReportStatus(v CallStatus) {} + +type noopCallTx struct{} + +func (t *noopCallTx) Project() ProjectTx { + return &noopProjectTx{} +} + +func (t *noopCallTx) ReportStartTime(v time.Time) {} +func (t *noopCallTx) ReportEndTime(v time.Time) {} +func (t *noopCallTx) ReportDuration(v uint64) {} +func (t *noopCallTx) ReportDurationSeconds(v uint64) {} +func (t *noopCallTx) ReportDurationMinutes(v uint16) {} +func (t *noopCallTx) ReportDirection(v CallDirection) {} +func (t *noopCallTx) ReportCallType(v CallCallType) {} +func (t *noopCallTx) ReportFrom(v string) {} +func (t *noopCallTx) ReportTo(v string) {} +func (t *noopCallTx) ReportRegion(v string) {} +func (t *noopCallTx) ReportRoomID(v string) {} +func (t *noopCallTx) ReportRoomName(v string) {} +func (t *noopCallTx) ReportError(v string) {} +func (t *noopCallTx) ReportStatus(v CallStatus) {} diff --git a/observability/corecallobs/gen_source.go b/observability/corecallobs/gen_source.go index 185aa7167..7cb499aa5 100644 --- a/observability/corecallobs/gen_source.go +++ b/observability/corecallobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package corecallobs type CallDirection string diff --git a/observability/egressobs/egress.go b/observability/egressobs/egress.go index aeec21a41..3a1b5872f 100644 --- a/observability/egressobs/egress.go +++ b/observability/egressobs/egress.go @@ -3,7 +3,7 @@ package egressobs import ( "encoding/json" - "google.golang.org/protobuf/encoding/protojson" + "github.com/livekit/protocol/utils/protojson" "github.com/pkg/errors" @@ -25,10 +25,10 @@ const ( ) type EgressResults struct { - FileResults []*livekit.FileInfo - StreamResults []*livekit.StreamInfo - SegmentResults []*livekit.SegmentsInfo - ImageResults []*livekit.ImagesInfo + FileResults []*livekit.FileInfo `json:"file_results,omitempty"` + StreamResults []*livekit.StreamInfo `json:"stream_results,omitempty"` + SegmentResults []*livekit.SegmentsInfo `json:"segment_results,omitempty"` + ImageResults []*livekit.ImagesInfo `json:"image_results,omitempty"` } func GetSourceType(info *livekit.EgressInfo) SessionSourceType { @@ -154,37 +154,36 @@ func GetRequest(info *livekit.EgressInfo) (string, error) { } func GetResult(info *livekit.EgressInfo) (string, error) { + var results *EgressResults + if file := info.GetFile(); file != nil { - b, err := protojson.Marshal(file) - if err != nil { - return "", errors.Wrap(err, "failed serializing File result") + results = &EgressResults{ + FileResults: []*livekit.FileInfo{ + file, + }, } - return string(b), nil } else if stream := info.GetStream(); stream != nil { - b, err := protojson.Marshal(stream) - if err != nil { - return "", errors.Wrap(err, "failed serializing Stream result") - } - return string(b), nil + results = &EgressResults{} + results.StreamResults = append(results.StreamResults, stream.Info...) } else if segments := info.GetSegments(); segments != nil { - b, err := protojson.Marshal(segments) - if err != nil { - return "", errors.Wrap(err, "failed serializing Segments result") + results = &EgressResults{ + SegmentResults: []*livekit.SegmentsInfo{ + segments, + }, } - return string(b), nil } else { - results := &EgressResults{ + results = &EgressResults{ FileResults: info.FileResults, StreamResults: info.StreamResults, SegmentResults: info.SegmentResults, ImageResults: info.ImageResults, } - b, err := json.Marshal(results) - if err != nil { - return "", errors.Wrap(err, "failed serializing Multiple result") - } - return string(b), nil } + b, err := json.Marshal(results) + if err != nil { + return "", errors.Wrap(err, "failed serializing results") + } + return string(b), nil } func GetAudioOnly(info *livekit.EgressInfo) bool { diff --git a/observability/egressobs/egress_test.go b/observability/egressobs/egress_test.go index 533c9f25b..d99466f0c 100644 --- a/observability/egressobs/egress_test.go +++ b/observability/egressobs/egress_test.go @@ -219,32 +219,38 @@ func TestGetRequest(t *testing.T) { func TestGetResult(t *testing.T) { tests := []struct { - name string - info *livekit.EgressInfo + name string + info *livekit.EgressInfo + expected string }{ { name: "FileResult", info: &livekit.EgressInfo{ Result: &livekit.EgressInfo_File{ - File: &livekit.FileInfo{Filename: "test.mp4"}, + File: &livekit.FileInfo{Filename: "test.mp4", Size: 1024}, }, }, + expected: `{"file_results":[{"filename":"test.mp4", "size":1024}]}`, }, { name: "StreamResult", info: &livekit.EgressInfo{ Result: &livekit.EgressInfo_Stream{ - Stream: &livekit.StreamInfoList{}, + Stream: &livekit.StreamInfoList{ + Info: []*livekit.StreamInfo{{Url: "rtmp://example.com/live"}}, + }, }, }, + expected: `{"stream_results":[{"url":"rtmp://example.com/live"}]}`, }, { name: "SegmentResult", info: &livekit.EgressInfo{ Result: &livekit.EgressInfo_Segments{ - Segments: &livekit.SegmentsInfo{}, + Segments: &livekit.SegmentsInfo{PlaylistName: "playlist.m3u8"}, }, }, + expected: `{"segment_results":[{"playlist_name":"playlist.m3u8"}]}`, }, { name: "MultipleResults", @@ -253,6 +259,7 @@ func TestGetResult(t *testing.T) { {Filename: "test.mp4"}, }, }, + expected: `{"file_results":[{"filename":"test.mp4"}]}`, }, } @@ -260,7 +267,7 @@ func TestGetResult(t *testing.T) { t.Run(tt.name, func(t *testing.T) { result, err := GetResult(tt.info) require.NoError(t, err) - require.NotEmpty(t, result) + require.JSONEq(t, tt.expected, result) }) } } diff --git a/observability/egressobs/gen_reporter.go b/observability/egressobs/gen_reporter.go index b97649e54..03be2b38f 100644 --- a/observability/egressobs/gen_reporter.go +++ b/observability/egressobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package egressobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_9K0LIKO = true +const Version_HAKUONO = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,10 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithEgress(id string) EgressReporter WithDeferredEgress() (EgressReporter, KeyResolver) - ProjectTx + projectReporter } -type EgressTx interface { +type egressReporter interface { ReportRequestType(v EgressRequestType) ReportRoomName(v string) ReportRequest(v string) @@ -45,20 +50,26 @@ type EgressTx interface { ReportManifestLocation(v string) } +type EgressTx interface { + Project() ProjectTx + egressReporter +} + type EgressReporter interface { RegisterFunc(func(ts time.Time, tx EgressTx) bool) Tx(func(tx EgressTx)) TxAt(time.Time, func(tx EgressTx)) WithSession(id string) SessionReporter WithDeferredSession() (SessionReporter, KeyResolver) - EgressTx + egressReporter } -type SessionTx interface { +type sessionReporter interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportUpdateTime(v time.Time) ReportDuration(v uint64) + ReportDurationSeconds(v uint64) ReportRetryCount(v uint32) ReportSourceType(v SessionSourceType) ReportRegion(v string) @@ -72,9 +83,14 @@ type SessionTx interface { ReportResult(v string) } +type SessionTx interface { + Egress() EgressTx + sessionReporter +} + type SessionReporter interface { RegisterFunc(func(ts time.Time, tx SessionTx) bool) Tx(func(tx SessionTx)) TxAt(time.Time, func(tx SessionTx)) - SessionTx + sessionReporter } diff --git a/observability/egressobs/gen_reporter_noop.go b/observability/egressobs/gen_reporter_noop.go index 10043d3b5..dadb636aa 100644 --- a/observability/egressobs/gen_reporter_noop.go +++ b/observability/egressobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package egressobs @@ -9,8 +9,11 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ EgressReporter = (*noopEgressReporter)(nil) + _ EgressTx = (*noopEgressTx)(nil) _ SessionReporter = (*noopSessionReporter)(nil) + _ SessionTx = (*noopSessionTx)(nil) ) type noopKeyResolver struct{} @@ -48,6 +51,8 @@ func (r *noopProjectReporter) WithDeferredEgress() (EgressReporter, KeyResolver) return &noopEgressReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopEgressReporter struct{} func NewNoopEgressReporter() EgressReporter { @@ -77,6 +82,26 @@ func (r *noopEgressReporter) WithDeferredSession() (SessionReporter, KeyResolver return &noopSessionReporter{}, noopKeyResolver{} } +type noopEgressTx struct{} + +func (t *noopEgressTx) Project() ProjectTx { + return &noopProjectTx{} +} + +func (t *noopEgressTx) ReportRequestType(v EgressRequestType) {} +func (t *noopEgressTx) ReportRoomName(v string) {} +func (t *noopEgressTx) ReportRequest(v string) {} +func (t *noopEgressTx) ReportAudioOnly(v bool) {} +func (t *noopEgressTx) ReportStartTime(v time.Time) {} +func (t *noopEgressTx) ReportEndTime(v time.Time) {} +func (t *noopEgressTx) ReportUpdateTime(v time.Time) {} +func (t *noopEgressTx) ReportStatus(v string) {} +func (t *noopEgressTx) ReportDetails(v string) {} +func (t *noopEgressTx) ReportError(v string) {} +func (t *noopEgressTx) ReportErrorCode(v int32) {} +func (t *noopEgressTx) ReportResult(v string) {} +func (t *noopEgressTx) ReportManifestLocation(v string) {} + type noopSessionReporter struct{} func NewNoopSessionReporter() SessionReporter { @@ -90,6 +115,7 @@ func (r *noopSessionReporter) ReportStartTime(v time.Time) func (r *noopSessionReporter) ReportEndTime(v time.Time) {} func (r *noopSessionReporter) ReportUpdateTime(v time.Time) {} func (r *noopSessionReporter) ReportDuration(v uint64) {} +func (r *noopSessionReporter) ReportDurationSeconds(v uint64) {} func (r *noopSessionReporter) ReportRetryCount(v uint32) {} func (r *noopSessionReporter) ReportSourceType(v SessionSourceType) {} func (r *noopSessionReporter) ReportRegion(v string) {} @@ -101,3 +127,26 @@ func (r *noopSessionReporter) ReportErrorCode(v int32) func (r *noopSessionReporter) ReportManifestLocation(v string) {} func (r *noopSessionReporter) ReportBackupStorageUsed(v bool) {} func (r *noopSessionReporter) ReportResult(v string) {} + +type noopSessionTx struct{} + +func (t *noopSessionTx) Egress() EgressTx { + return &noopEgressTx{} +} + +func (t *noopSessionTx) ReportStartTime(v time.Time) {} +func (t *noopSessionTx) ReportEndTime(v time.Time) {} +func (t *noopSessionTx) ReportUpdateTime(v time.Time) {} +func (t *noopSessionTx) ReportDuration(v uint64) {} +func (t *noopSessionTx) ReportDurationSeconds(v uint64) {} +func (t *noopSessionTx) ReportRetryCount(v uint32) {} +func (t *noopSessionTx) ReportSourceType(v SessionSourceType) {} +func (t *noopSessionTx) ReportRegion(v string) {} +func (t *noopSessionTx) ReportRoomID(v string) {} +func (t *noopSessionTx) ReportStatus(v string) {} +func (t *noopSessionTx) ReportDetails(v string) {} +func (t *noopSessionTx) ReportError(v string) {} +func (t *noopSessionTx) ReportErrorCode(v int32) {} +func (t *noopSessionTx) ReportManifestLocation(v string) {} +func (t *noopSessionTx) ReportBackupStorageUsed(v bool) {} +func (t *noopSessionTx) ReportResult(v string) {} diff --git a/observability/egressobs/gen_source.go b/observability/egressobs/gen_source.go index 36ef72652..56c5c3eb4 100644 --- a/observability/egressobs/gen_source.go +++ b/observability/egressobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package egressobs type EgressRequestType string diff --git a/observability/gatewayobs/gen_reporter.go b/observability/gatewayobs/gen_reporter.go index 68084852e..5eb9ef119 100644 --- a/observability/gatewayobs/gen_reporter.go +++ b/observability/gatewayobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package gatewayobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_NI039G8 = true +const Version_9V68R3G = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,16 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithRequestedPriority(priority string) RequestedPriorityReporter WithDeferredRequestedPriority() (RequestedPriorityReporter, KeyResolver) - ProjectTx + projectReporter +} + +type requestedPriorityReporter interface { } -type RequestedPriorityTx interface{} +type RequestedPriorityTx interface { + Project() ProjectTx + requestedPriorityReporter +} type RequestedPriorityReporter interface { RegisterFunc(func(ts time.Time, tx RequestedPriorityTx) bool) @@ -37,10 +48,16 @@ type RequestedPriorityReporter interface { TxAt(time.Time, func(tx RequestedPriorityTx)) WithGrantedPriority(priority string) GrantedPriorityReporter WithDeferredGrantedPriority() (GrantedPriorityReporter, KeyResolver) - RequestedPriorityTx + requestedPriorityReporter } -type GrantedPriorityTx interface{} +type grantedPriorityReporter interface { +} + +type GrantedPriorityTx interface { + RequestedPriority() RequestedPriorityTx + grantedPriorityReporter +} type GrantedPriorityReporter interface { RegisterFunc(func(ts time.Time, tx GrantedPriorityTx) bool) @@ -48,10 +65,16 @@ type GrantedPriorityReporter interface { TxAt(time.Time, func(tx GrantedPriorityTx)) WithBillablePriority(priority string) BillablePriorityReporter WithDeferredBillablePriority() (BillablePriorityReporter, KeyResolver) - GrantedPriorityTx + grantedPriorityReporter } -type BillablePriorityTx interface{} +type billablePriorityReporter interface { +} + +type BillablePriorityTx interface { + GrantedPriority() GrantedPriorityTx + billablePriorityReporter +} type BillablePriorityReporter interface { RegisterFunc(func(ts time.Time, tx BillablePriorityTx) bool) @@ -59,10 +82,16 @@ type BillablePriorityReporter interface { TxAt(time.Time, func(tx BillablePriorityTx)) WithProvider(name string) ProviderReporter WithDeferredProvider() (ProviderReporter, KeyResolver) - BillablePriorityTx + billablePriorityReporter } -type ProviderTx interface{} +type providerReporter interface { +} + +type ProviderTx interface { + BillablePriority() BillablePriorityTx + providerReporter +} type ProviderReporter interface { RegisterFunc(func(ts time.Time, tx ProviderTx) bool) @@ -70,10 +99,10 @@ type ProviderReporter interface { TxAt(time.Time, func(tx ProviderTx)) WithModel(name string) ModelReporter WithDeferredModel() (ModelReporter, KeyResolver) - ProviderTx + providerReporter } -type ModelTx interface { +type modelReporter interface { ReportInferencePromptTokens(v uint64) ReportInferencePromptCacheTokens(v uint64) ReportInferenceCompletionTokens(v uint64) @@ -85,11 +114,18 @@ type ModelTx interface { ReportBargeInRequests(v uint64) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) ReportVoiceCloneRequests(v uint64) + ReportEotRequests(v uint64) + ReportEotRequestTypes(v ModelEotRequestTypes) +} + +type ModelTx interface { + Provider() ProviderTx + modelReporter } type ModelReporter interface { RegisterFunc(func(ts time.Time, tx ModelTx) bool) Tx(func(tx ModelTx)) TxAt(time.Time, func(tx ModelTx)) - ModelTx + modelReporter } diff --git a/observability/gatewayobs/gen_reporter_noop.go b/observability/gatewayobs/gen_reporter_noop.go index 328b69560..7722f116d 100644 --- a/observability/gatewayobs/gen_reporter_noop.go +++ b/observability/gatewayobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package gatewayobs @@ -9,11 +9,17 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ RequestedPriorityReporter = (*noopRequestedPriorityReporter)(nil) + _ RequestedPriorityTx = (*noopRequestedPriorityTx)(nil) _ GrantedPriorityReporter = (*noopGrantedPriorityReporter)(nil) + _ GrantedPriorityTx = (*noopGrantedPriorityTx)(nil) _ BillablePriorityReporter = (*noopBillablePriorityReporter)(nil) + _ BillablePriorityTx = (*noopBillablePriorityTx)(nil) _ ProviderReporter = (*noopProviderReporter)(nil) + _ ProviderTx = (*noopProviderTx)(nil) _ ModelReporter = (*noopModelReporter)(nil) + _ ModelTx = (*noopModelTx)(nil) ) type noopKeyResolver struct{} @@ -51,6 +57,8 @@ func (r *noopProjectReporter) WithDeferredRequestedPriority() (RequestedPriority return &noopRequestedPriorityReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopRequestedPriorityReporter struct{} func NewNoopRequestedPriorityReporter() RequestedPriorityReporter { @@ -68,6 +76,12 @@ func (r *noopRequestedPriorityReporter) WithDeferredGrantedPriority() (GrantedPr return &noopGrantedPriorityReporter{}, noopKeyResolver{} } +type noopRequestedPriorityTx struct{} + +func (t *noopRequestedPriorityTx) Project() ProjectTx { + return &noopProjectTx{} +} + type noopGrantedPriorityReporter struct{} func NewNoopGrantedPriorityReporter() GrantedPriorityReporter { @@ -84,6 +98,12 @@ func (r *noopGrantedPriorityReporter) WithDeferredBillablePriority() (BillablePr return &noopBillablePriorityReporter{}, noopKeyResolver{} } +type noopGrantedPriorityTx struct{} + +func (t *noopGrantedPriorityTx) RequestedPriority() RequestedPriorityTx { + return &noopRequestedPriorityTx{} +} + type noopBillablePriorityReporter struct{} func NewNoopBillablePriorityReporter() BillablePriorityReporter { @@ -101,6 +121,12 @@ func (r *noopBillablePriorityReporter) WithDeferredProvider() (ProviderReporter, return &noopProviderReporter{}, noopKeyResolver{} } +type noopBillablePriorityTx struct{} + +func (t *noopBillablePriorityTx) GrantedPriority() GrantedPriorityTx { + return &noopGrantedPriorityTx{} +} + type noopProviderReporter struct{} func NewNoopProviderReporter() ProviderReporter { @@ -117,6 +143,12 @@ func (r *noopProviderReporter) WithDeferredModel() (ModelReporter, KeyResolver) return &noopModelReporter{}, noopKeyResolver{} } +type noopProviderTx struct{} + +func (t *noopProviderTx) BillablePriority() BillablePriorityTx { + return &noopBillablePriorityTx{} +} + type noopModelReporter struct{} func NewNoopModelReporter() ModelReporter { @@ -137,3 +169,25 @@ func (r *noopModelReporter) ReportTtsChars(v uint32) func (r *noopModelReporter) ReportBargeInRequests(v uint64) {} func (r *noopModelReporter) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) {} func (r *noopModelReporter) ReportVoiceCloneRequests(v uint64) {} +func (r *noopModelReporter) ReportEotRequests(v uint64) {} +func (r *noopModelReporter) ReportEotRequestTypes(v ModelEotRequestTypes) {} + +type noopModelTx struct{} + +func (t *noopModelTx) Provider() ProviderTx { + return &noopProviderTx{} +} + +func (t *noopModelTx) ReportInferencePromptTokens(v uint64) {} +func (t *noopModelTx) ReportInferencePromptCacheTokens(v uint64) {} +func (t *noopModelTx) ReportInferenceCompletionTokens(v uint64) {} +func (t *noopModelTx) ReportInferenceTotalTokens(v uint64) {} +func (t *noopModelTx) ReportInferenceCacheCreateTokens(v uint64) {} +func (t *noopModelTx) ReportInferenceCacheReadTokens(v uint64) {} +func (t *noopModelTx) ReportSttDuration(v uint32) {} +func (t *noopModelTx) ReportTtsChars(v uint32) {} +func (t *noopModelTx) ReportBargeInRequests(v uint64) {} +func (t *noopModelTx) ReportBargeInRequestTypes(v ModelBargeInRequestTypes) {} +func (t *noopModelTx) ReportVoiceCloneRequests(v uint64) {} +func (t *noopModelTx) ReportEotRequests(v uint64) {} +func (t *noopModelTx) ReportEotRequestTypes(v ModelEotRequestTypes) {} diff --git a/observability/gatewayobs/gen_source.go b/observability/gatewayobs/gen_source.go index 0e5d9ab64..150e24a2b 100644 --- a/observability/gatewayobs/gen_source.go +++ b/observability/gatewayobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package gatewayobs type ModelBargeInRequestTypes string @@ -9,6 +9,14 @@ const ( ModelBargeInRequestTypesSelfHosted ModelBargeInRequestTypes = "self_hosted" ) +type ModelEotRequestTypes string + +const ( + ModelEotRequestTypesUndefined ModelEotRequestTypes = "" + ModelEotRequestTypesCloud ModelEotRequestTypes = "cloud" + ModelEotRequestTypesSelfHosted ModelEotRequestTypes = "self_hosted" +) + type Rollup string const ( diff --git a/observability/ingressobs/gen_reporter.go b/observability/ingressobs/gen_reporter.go index b08069591..cebc516a3 100644 --- a/observability/ingressobs/gen_reporter.go +++ b/observability/ingressobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package ingressobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_102PA2G = true +const Version_AULSHIO = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,16 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithIngress(id string) IngressReporter WithDeferredIngress() (IngressReporter, KeyResolver) - ProjectTx + projectReporter +} + +type ingressReporter interface { } -type IngressTx interface{} +type IngressTx interface { + Project() ProjectTx + ingressReporter +} type IngressReporter interface { RegisterFunc(func(ts time.Time, tx IngressTx) bool) @@ -37,13 +48,14 @@ type IngressReporter interface { TxAt(time.Time, func(tx IngressTx)) WithSession(id string) SessionReporter WithDeferredSession() (SessionReporter, KeyResolver) - IngressTx + ingressReporter } -type SessionTx interface { +type sessionReporter interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportDuration(v uint64) + ReportDurationSeconds(v uint64) ReportInputType(v SessionInputType) ReportRegion(v string) ReportRoomName(v string) @@ -53,11 +65,19 @@ type SessionTx interface { ReportAudioOnly(v bool) ReportTranscoded(v bool) ReportReusable(v bool) + ReportURL(v string) + ReportVideoOptions(v string) + ReportAudioOptions(v string) +} + +type SessionTx interface { + Ingress() IngressTx + sessionReporter } type SessionReporter interface { RegisterFunc(func(ts time.Time, tx SessionTx) bool) Tx(func(tx SessionTx)) TxAt(time.Time, func(tx SessionTx)) - SessionTx + sessionReporter } diff --git a/observability/ingressobs/gen_reporter_noop.go b/observability/ingressobs/gen_reporter_noop.go index 3ca12a56d..02b47b0a1 100644 --- a/observability/ingressobs/gen_reporter_noop.go +++ b/observability/ingressobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package ingressobs @@ -9,8 +9,11 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ IngressReporter = (*noopIngressReporter)(nil) + _ IngressTx = (*noopIngressTx)(nil) _ SessionReporter = (*noopSessionReporter)(nil) + _ SessionTx = (*noopSessionTx)(nil) ) type noopKeyResolver struct{} @@ -48,6 +51,8 @@ func (r *noopProjectReporter) WithDeferredIngress() (IngressReporter, KeyResolve return &noopIngressReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopIngressReporter struct{} func NewNoopIngressReporter() IngressReporter { @@ -64,6 +69,12 @@ func (r *noopIngressReporter) WithDeferredSession() (SessionReporter, KeyResolve return &noopSessionReporter{}, noopKeyResolver{} } +type noopIngressTx struct{} + +func (t *noopIngressTx) Project() ProjectTx { + return &noopProjectTx{} +} + type noopSessionReporter struct{} func NewNoopSessionReporter() SessionReporter { @@ -76,6 +87,7 @@ func (r *noopSessionReporter) TxAt(ts time.Time, f func(SessionTx)) func (r *noopSessionReporter) ReportStartTime(v time.Time) {} func (r *noopSessionReporter) ReportEndTime(v time.Time) {} func (r *noopSessionReporter) ReportDuration(v uint64) {} +func (r *noopSessionReporter) ReportDurationSeconds(v uint64) {} func (r *noopSessionReporter) ReportInputType(v SessionInputType) {} func (r *noopSessionReporter) ReportRegion(v string) {} func (r *noopSessionReporter) ReportRoomName(v string) {} @@ -85,3 +97,29 @@ func (r *noopSessionReporter) ReportStatus(v SessionStatus) func (r *noopSessionReporter) ReportAudioOnly(v bool) {} func (r *noopSessionReporter) ReportTranscoded(v bool) {} func (r *noopSessionReporter) ReportReusable(v bool) {} +func (r *noopSessionReporter) ReportURL(v string) {} +func (r *noopSessionReporter) ReportVideoOptions(v string) {} +func (r *noopSessionReporter) ReportAudioOptions(v string) {} + +type noopSessionTx struct{} + +func (t *noopSessionTx) Ingress() IngressTx { + return &noopIngressTx{} +} + +func (t *noopSessionTx) ReportStartTime(v time.Time) {} +func (t *noopSessionTx) ReportEndTime(v time.Time) {} +func (t *noopSessionTx) ReportDuration(v uint64) {} +func (t *noopSessionTx) ReportDurationSeconds(v uint64) {} +func (t *noopSessionTx) ReportInputType(v SessionInputType) {} +func (t *noopSessionTx) ReportRegion(v string) {} +func (t *noopSessionTx) ReportRoomName(v string) {} +func (t *noopSessionTx) ReportRoomID(v string) {} +func (t *noopSessionTx) ReportError(v string) {} +func (t *noopSessionTx) ReportStatus(v SessionStatus) {} +func (t *noopSessionTx) ReportAudioOnly(v bool) {} +func (t *noopSessionTx) ReportTranscoded(v bool) {} +func (t *noopSessionTx) ReportReusable(v bool) {} +func (t *noopSessionTx) ReportURL(v string) {} +func (t *noopSessionTx) ReportVideoOptions(v string) {} +func (t *noopSessionTx) ReportAudioOptions(v string) {} diff --git a/observability/ingressobs/gen_source.go b/observability/ingressobs/gen_source.go index 8130a6c01..31bbfe7a9 100644 --- a/observability/ingressobs/gen_source.go +++ b/observability/ingressobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package ingressobs type SessionInputType string diff --git a/observability/reporter.go b/observability/reporter.go index e7fd236b7..0adcb1210 100644 --- a/observability/reporter.go +++ b/observability/reporter.go @@ -3,6 +3,7 @@ package observability import ( "github.com/livekit/protocol/logger" "github.com/livekit/protocol/observability/agentsobs" + "github.com/livekit/protocol/observability/agentsv3obs" "github.com/livekit/protocol/observability/corecallobs" "github.com/livekit/protocol/observability/egressobs" "github.com/livekit/protocol/observability/gatewayobs" @@ -19,6 +20,7 @@ type Reporter interface { Logger(name, projectID string) (logger.Logger, error) Room() roomobs.Reporter Agent() agentsobs.Reporter + AgentV3() agentsv3obs.Reporter Gateway() gatewayobs.Reporter Telephony() telephonyobs.Reporter Egress() egressobs.Reporter @@ -47,6 +49,10 @@ func (reporter) Agent() agentsobs.Reporter { return agentsobs.NewNoopReporter() } +func (reporter) AgentV3() agentsv3obs.Reporter { + return agentsv3obs.NewNoopReporter() +} + func (reporter) Gateway() gatewayobs.Reporter { return gatewayobs.NewNoopReporter() } diff --git a/observability/roomobs/gen_reporter.go b/observability/roomobs/gen_reporter.go index a9b5f9bd1..8f96873aa 100644 --- a/observability/roomobs/gen_reporter.go +++ b/observability/roomobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package roomobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_G1QTVIG = true +const Version_IRCV090 = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,16 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithRoom(name string) RoomReporter WithDeferredRoom() (RoomReporter, KeyResolver) - ProjectTx + projectReporter } -type RoomTx interface{} +type roomReporter interface { +} + +type RoomTx interface { + Project() ProjectTx + roomReporter +} type RoomReporter interface { RegisterFunc(func(ts time.Time, tx RoomTx) bool) @@ -37,10 +48,10 @@ type RoomReporter interface { TxAt(time.Time, func(tx RoomTx)) WithRoomSession(id string) RoomSessionReporter WithDeferredRoomSession() (RoomSessionReporter, KeyResolver) - RoomTx + roomReporter } -type RoomSessionTx interface { +type roomSessionReporter interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportFeatures(v uint16) @@ -49,16 +60,27 @@ type RoomSessionTx interface { ReportClosed(v bool) } +type RoomSessionTx interface { + Room() RoomTx + roomSessionReporter +} + type RoomSessionReporter interface { RegisterFunc(func(ts time.Time, tx RoomSessionTx) bool) Tx(func(tx RoomSessionTx)) TxAt(time.Time, func(tx RoomSessionTx)) WithParticipant(identity string) ParticipantReporter WithDeferredParticipant() (ParticipantReporter, KeyResolver) - RoomSessionTx + roomSessionReporter } -type ParticipantTx interface{} +type participantReporter interface { +} + +type ParticipantTx interface { + RoomSession() RoomSessionTx + participantReporter +} type ParticipantReporter interface { RegisterFunc(func(ts time.Time, tx ParticipantTx) bool) @@ -66,10 +88,10 @@ type ParticipantReporter interface { TxAt(time.Time, func(tx ParticipantTx)) WithParticipantSession(id string) ParticipantSessionReporter WithDeferredParticipantSession() (ParticipantSessionReporter, KeyResolver) - ParticipantTx + participantReporter } -type ParticipantSessionTx interface { +type participantSessionReporter interface { ReportRegion(v string) ReportClientConnectTime(v uint16) ReportConnectResult(v ConnectionResult) @@ -83,10 +105,17 @@ type ParticipantSessionTx interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportDuration(v uint16) + ReportDurationSeconds(v uint16) ReportDurationMinutes(v uint8) ReportKind(v string) ReportName(v string) ReportFeatures(v uint16) + ReportAttributes(v map[string]string) +} + +type ParticipantSessionTx interface { + Participant() ParticipantTx + participantSessionReporter } type ParticipantSessionReporter interface { @@ -95,10 +124,10 @@ type ParticipantSessionReporter interface { TxAt(time.Time, func(tx ParticipantSessionTx)) WithTrack(id string) TrackReporter WithDeferredTrack() (TrackReporter, KeyResolver) - ParticipantSessionTx + participantSessionReporter } -type TrackTx interface { +type trackReporter interface { ReportName(v string) ReportKind(v TrackKind) ReportType(v TrackType) @@ -115,9 +144,14 @@ type TrackTx interface { ReportScore(v float32) } +type TrackTx interface { + ParticipantSession() ParticipantSessionTx + trackReporter +} + type TrackReporter interface { RegisterFunc(func(ts time.Time, tx TrackTx) bool) Tx(func(tx TrackTx)) TxAt(time.Time, func(tx TrackTx)) - TrackTx + trackReporter } diff --git a/observability/roomobs/gen_reporter_noop.go b/observability/roomobs/gen_reporter_noop.go index 85c74c0c2..94ed0d14c 100644 --- a/observability/roomobs/gen_reporter_noop.go +++ b/observability/roomobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package roomobs @@ -9,11 +9,17 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ RoomReporter = (*noopRoomReporter)(nil) + _ RoomTx = (*noopRoomTx)(nil) _ RoomSessionReporter = (*noopRoomSessionReporter)(nil) + _ RoomSessionTx = (*noopRoomSessionTx)(nil) _ ParticipantReporter = (*noopParticipantReporter)(nil) + _ ParticipantTx = (*noopParticipantTx)(nil) _ ParticipantSessionReporter = (*noopParticipantSessionReporter)(nil) + _ ParticipantSessionTx = (*noopParticipantSessionTx)(nil) _ TrackReporter = (*noopTrackReporter)(nil) + _ TrackTx = (*noopTrackTx)(nil) ) type noopKeyResolver struct{} @@ -51,6 +57,8 @@ func (r *noopProjectReporter) WithDeferredRoom() (RoomReporter, KeyResolver) { return &noopRoomReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopRoomReporter struct{} func NewNoopRoomReporter() RoomReporter { @@ -67,6 +75,12 @@ func (r *noopRoomReporter) WithDeferredRoomSession() (RoomSessionReporter, KeyRe return &noopRoomSessionReporter{}, noopKeyResolver{} } +type noopRoomTx struct{} + +func (t *noopRoomTx) Project() ProjectTx { + return &noopProjectTx{} +} + type noopRoomSessionReporter struct{} func NewNoopRoomSessionReporter() RoomSessionReporter { @@ -89,6 +103,19 @@ func (r *noopRoomSessionReporter) WithDeferredParticipant() (ParticipantReporter return &noopParticipantReporter{}, noopKeyResolver{} } +type noopRoomSessionTx struct{} + +func (t *noopRoomSessionTx) Room() RoomTx { + return &noopRoomTx{} +} + +func (t *noopRoomSessionTx) ReportStartTime(v time.Time) {} +func (t *noopRoomSessionTx) ReportEndTime(v time.Time) {} +func (t *noopRoomSessionTx) ReportFeatures(v uint16) {} +func (t *noopRoomSessionTx) ReportRoomDuration(v uint32) {} +func (t *noopRoomSessionTx) ReportTags(v []string) {} +func (t *noopRoomSessionTx) ReportClosed(v bool) {} + type noopParticipantReporter struct{} func NewNoopParticipantReporter() ParticipantReporter { @@ -105,6 +132,12 @@ func (r *noopParticipantReporter) WithDeferredParticipantSession() (ParticipantS return &noopParticipantSessionReporter{}, noopKeyResolver{} } +type noopParticipantTx struct{} + +func (t *noopParticipantTx) RoomSession() RoomSessionTx { + return &noopRoomSessionTx{} +} + type noopParticipantSessionReporter struct{} func NewNoopParticipantSessionReporter() ParticipantSessionReporter { @@ -128,10 +161,12 @@ func (r *noopParticipantSessionReporter) ReportIspAsn(v uint32) func (r *noopParticipantSessionReporter) ReportStartTime(v time.Time) {} func (r *noopParticipantSessionReporter) ReportEndTime(v time.Time) {} func (r *noopParticipantSessionReporter) ReportDuration(v uint16) {} +func (r *noopParticipantSessionReporter) ReportDurationSeconds(v uint16) {} func (r *noopParticipantSessionReporter) ReportDurationMinutes(v uint8) {} func (r *noopParticipantSessionReporter) ReportKind(v string) {} func (r *noopParticipantSessionReporter) ReportName(v string) {} func (r *noopParticipantSessionReporter) ReportFeatures(v uint16) {} +func (r *noopParticipantSessionReporter) ReportAttributes(v map[string]string) {} func (r *noopParticipantSessionReporter) WithTrack(id string) TrackReporter { return &noopTrackReporter{} } @@ -139,6 +174,32 @@ func (r *noopParticipantSessionReporter) WithDeferredTrack() (TrackReporter, Key return &noopTrackReporter{}, noopKeyResolver{} } +type noopParticipantSessionTx struct{} + +func (t *noopParticipantSessionTx) Participant() ParticipantTx { + return &noopParticipantTx{} +} + +func (t *noopParticipantSessionTx) ReportRegion(v string) {} +func (t *noopParticipantSessionTx) ReportClientConnectTime(v uint16) {} +func (t *noopParticipantSessionTx) ReportConnectResult(v ConnectionResult) {} +func (t *noopParticipantSessionTx) ReportConnectionType(v ConnectionType) {} +func (t *noopParticipantSessionTx) ReportOs(v ClientOS) {} +func (t *noopParticipantSessionTx) ReportDeviceModel(v string) {} +func (t *noopParticipantSessionTx) ReportBrowser(v string) {} +func (t *noopParticipantSessionTx) ReportSdkVersion(v string) {} +func (t *noopParticipantSessionTx) ReportCountry(v uint16) {} +func (t *noopParticipantSessionTx) ReportIspAsn(v uint32) {} +func (t *noopParticipantSessionTx) ReportStartTime(v time.Time) {} +func (t *noopParticipantSessionTx) ReportEndTime(v time.Time) {} +func (t *noopParticipantSessionTx) ReportDuration(v uint16) {} +func (t *noopParticipantSessionTx) ReportDurationSeconds(v uint16) {} +func (t *noopParticipantSessionTx) ReportDurationMinutes(v uint8) {} +func (t *noopParticipantSessionTx) ReportKind(v string) {} +func (t *noopParticipantSessionTx) ReportName(v string) {} +func (t *noopParticipantSessionTx) ReportFeatures(v uint16) {} +func (t *noopParticipantSessionTx) ReportAttributes(v map[string]string) {} + type noopTrackReporter struct{} func NewNoopTrackReporter() TrackReporter { @@ -162,3 +223,24 @@ func (r *noopTrackReporter) ReportSendPackets(v uint32) func (r *noopTrackReporter) ReportRecvPackets(v uint32) {} func (r *noopTrackReporter) ReportPacketsLost(v uint32) {} func (r *noopTrackReporter) ReportScore(v float32) {} + +type noopTrackTx struct{} + +func (t *noopTrackTx) ParticipantSession() ParticipantSessionTx { + return &noopParticipantSessionTx{} +} + +func (t *noopTrackTx) ReportName(v string) {} +func (t *noopTrackTx) ReportKind(v TrackKind) {} +func (t *noopTrackTx) ReportType(v TrackType) {} +func (t *noopTrackTx) ReportSource(v TrackSource) {} +func (t *noopTrackTx) ReportMime(v MimeType) {} +func (t *noopTrackTx) ReportLayer(v uint32) {} +func (t *noopTrackTx) ReportDuration(v uint16) {} +func (t *noopTrackTx) ReportFrames(v uint16) {} +func (t *noopTrackTx) ReportSendBytes(v uint32) {} +func (t *noopTrackTx) ReportRecvBytes(v uint32) {} +func (t *noopTrackTx) ReportSendPackets(v uint32) {} +func (t *noopTrackTx) ReportRecvPackets(v uint32) {} +func (t *noopTrackTx) ReportPacketsLost(v uint32) {} +func (t *noopTrackTx) ReportScore(v float32) {} diff --git a/observability/roomobs/gen_source.go b/observability/roomobs/gen_source.go index d3357885f..4aaa7a143 100644 --- a/observability/roomobs/gen_source.go +++ b/observability/roomobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package roomobs type ConnectionResult string diff --git a/observability/sessiontimer.go b/observability/sessiontimer.go index 77b38f1c0..8338839b5 100644 --- a/observability/sessiontimer.go +++ b/observability/sessiontimer.go @@ -1,27 +1,53 @@ package observability -import "time" +import ( + "time" + + "github.com/livekit/protocol/utils/options" +) type SessionTimer struct { lastMilli int64 + lastSec int64 lastMin int64 + minSecs int64 + minMins int64 +} + +type SessionTimerOption func(*SessionTimer) + +// WithMinSeconds ensures the first Advance that produces a non-zero secs +// return reports at least n seconds. Subsequent advances behave normally. +func WithMinSeconds(n int64) SessionTimerOption { + return func(h *SessionTimer) { h.minSecs = n } } -func NewSessionTimer(startTime time.Time) *SessionTimer { +// WithMinMinutes ensures the first Advance that produces a non-zero mins +// return reports at least n minutes. Subsequent advances behave normally. +func WithMinMinutes(n int64) SessionTimerOption { + return func(h *SessionTimer) { h.minMins = n } +} + +func NewSessionTimer(startTime time.Time, opts ...SessionTimerOption) *SessionTimer { ts := startTime.UnixMilli() - return &SessionTimer{ts, ts} + return options.Apply(&SessionTimer{lastMilli: ts, lastSec: ts, lastMin: ts}, opts) } -func (h *SessionTimer) Advance(now time.Time) (millis, mins int64) { +func (h *SessionTimer) Advance(now time.Time) (millis, secs, mins int64) { ts := now.UnixMilli() if ts > h.lastMilli { millis = ts - h.lastMilli h.lastMilli = ts } + if ts > h.lastSec { + secs = max((ts-h.lastSec+999)/1000, h.minSecs) + h.minSecs = 0 + h.lastSec += secs * 1000 + } if ts > h.lastMin { - n := (ts - h.lastMin + 59999) / 60000 - mins += n - h.lastMin += n * 60000 + mins = max((ts-h.lastMin+59999)/60000, h.minMins) + h.minMins = 0 + h.lastMin += mins * 60000 } return } diff --git a/observability/sessiontimer_test.go b/observability/sessiontimer_test.go index 26ea0e772..05b318d04 100644 --- a/observability/sessiontimer_test.go +++ b/observability/sessiontimer_test.go @@ -12,12 +12,14 @@ func TestSessionTimer(t *testing.T) { ts := time.Now() st := NewSessionTimer(ts) - millis, mins := st.Advance(ts.Add(100 * time.Millisecond)) + millis, secs, mins := st.Advance(ts.Add(100 * time.Millisecond)) require.EqualValues(t, 100, millis) + require.EqualValues(t, 1, secs) require.EqualValues(t, 1, mins) - millis, mins = st.Advance(ts.Add(200 * time.Millisecond)) + millis, secs, mins = st.Advance(ts.Add(200 * time.Millisecond)) require.EqualValues(t, 100, millis) + require.EqualValues(t, 0, secs) require.EqualValues(t, 0, mins) }) @@ -25,8 +27,65 @@ func TestSessionTimer(t *testing.T) { ts := time.Now() st := NewSessionTimer(ts) - millis, mins := st.Advance(ts.Add(150 * time.Second)) + millis, secs, mins := st.Advance(ts.Add(150 * time.Second)) require.EqualValues(t, 150000, millis) + require.EqualValues(t, 150, secs) + require.EqualValues(t, 3, mins) + }) + + t.Run("WithMinSeconds floors first advance and consumes watermark", func(t *testing.T) { + ts := time.Now() + st := NewSessionTimer(ts, WithMinSeconds(60)) + + _, secs, _ := st.Advance(ts.Add(time.Second)) + require.EqualValues(t, 60, secs) + + _, secs, _ = st.Advance(ts.Add(30 * time.Second)) + require.EqualValues(t, 0, secs) + + _, secs, _ = st.Advance(ts.Add(62 * time.Second)) + require.EqualValues(t, 2, secs) + }) + + t.Run("WithMinSeconds does not lower larger natural value", func(t *testing.T) { + ts := time.Now() + st := NewSessionTimer(ts, WithMinSeconds(60)) + + _, secs, _ := st.Advance(ts.Add(120 * time.Second)) + require.EqualValues(t, 120, secs) + }) + + t.Run("WithMinSeconds does not trigger on no-op advance", func(t *testing.T) { + ts := time.Now() + st := NewSessionTimer(ts, WithMinSeconds(60)) + + _, secs, _ := st.Advance(ts) + require.EqualValues(t, 0, secs) + + _, secs, _ = st.Advance(ts.Add(time.Second)) + require.EqualValues(t, 60, secs) + }) + + t.Run("WithMinMinutes floors first advance", func(t *testing.T) { + ts := time.Now() + st := NewSessionTimer(ts, WithMinMinutes(5)) + + _, _, mins := st.Advance(ts.Add(time.Second)) + require.EqualValues(t, 5, mins) + + _, _, mins = st.Advance(ts.Add(2 * time.Minute)) + require.EqualValues(t, 0, mins) + + _, _, mins = st.Advance(ts.Add(7 * time.Minute)) + require.EqualValues(t, 2, mins) + }) + + t.Run("WithMinSeconds and WithMinMinutes apply independently", func(t *testing.T) { + ts := time.Now() + st := NewSessionTimer(ts, WithMinSeconds(45), WithMinMinutes(3)) + + _, secs, mins := st.Advance(ts.Add(time.Second)) + require.EqualValues(t, 45, secs) require.EqualValues(t, 3, mins) }) } diff --git a/observability/sipcallobs/gen_reporter.go b/observability/sipcallobs/gen_reporter.go index 1682e7074..ca2072afb 100644 --- a/observability/sipcallobs/gen_reporter.go +++ b/observability/sipcallobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package sipcallobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_GQ98NIG = true +const Version_OUSNKC0 = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,13 +31,14 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithCall(id string) CallReporter WithDeferredCall() (CallReporter, KeyResolver) - ProjectTx + projectReporter } -type CallTx interface { +type callReporter interface { ReportStartTime(v time.Time) ReportEndTime(v time.Time) ReportDuration(v uint64) + ReportDurationSeconds(v uint64) ReportDurationMinutes(v uint16) ReportTrunkID(v string) ReportTrunkType(v CallTrunkType) @@ -70,9 +76,14 @@ type CallTx interface { ReportMediaEncryption(v string) } +type CallTx interface { + Project() ProjectTx + callReporter +} + type CallReporter interface { RegisterFunc(func(ts time.Time, tx CallTx) bool) Tx(func(tx CallTx)) TxAt(time.Time, func(tx CallTx)) - CallTx + callReporter } diff --git a/observability/sipcallobs/gen_reporter_noop.go b/observability/sipcallobs/gen_reporter_noop.go index dc3c83b17..3a5458e84 100644 --- a/observability/sipcallobs/gen_reporter_noop.go +++ b/observability/sipcallobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package sipcallobs @@ -9,7 +9,9 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ CallReporter = (*noopCallReporter)(nil) + _ CallTx = (*noopCallTx)(nil) ) type noopKeyResolver struct{} @@ -47,6 +49,8 @@ func (r *noopProjectReporter) WithDeferredCall() (CallReporter, KeyResolver) { return &noopCallReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopCallReporter struct{} func NewNoopCallReporter() CallReporter { @@ -59,6 +63,7 @@ func (r *noopCallReporter) TxAt(ts time.Time, f func(CallTx)) func (r *noopCallReporter) ReportStartTime(v time.Time) {} func (r *noopCallReporter) ReportEndTime(v time.Time) {} func (r *noopCallReporter) ReportDuration(v uint64) {} +func (r *noopCallReporter) ReportDurationSeconds(v uint64) {} func (r *noopCallReporter) ReportDurationMinutes(v uint16) {} func (r *noopCallReporter) ReportTrunkID(v string) {} func (r *noopCallReporter) ReportTrunkType(v CallTrunkType) {} @@ -94,3 +99,49 @@ func (r *noopCallReporter) ReportAttributes(v string) func (r *noopCallReporter) ReportFeatures(v uint16) {} func (r *noopCallReporter) ReportMediaEncryptionSettings(v CallMediaEncryptionSettings) {} func (r *noopCallReporter) ReportMediaEncryption(v string) {} + +type noopCallTx struct{} + +func (t *noopCallTx) Project() ProjectTx { + return &noopProjectTx{} +} + +func (t *noopCallTx) ReportStartTime(v time.Time) {} +func (t *noopCallTx) ReportEndTime(v time.Time) {} +func (t *noopCallTx) ReportDuration(v uint64) {} +func (t *noopCallTx) ReportDurationSeconds(v uint64) {} +func (t *noopCallTx) ReportDurationMinutes(v uint16) {} +func (t *noopCallTx) ReportTrunkID(v string) {} +func (t *noopCallTx) ReportTrunkType(v CallTrunkType) {} +func (t *noopCallTx) ReportDispatchID(v string) {} +func (t *noopCallTx) ReportToNumber(v string) {} +func (t *noopCallTx) ReportToHost(v string) {} +func (t *noopCallTx) ReportFromNumber(v string) {} +func (t *noopCallTx) ReportFromHost(v string) {} +func (t *noopCallTx) ReportNumberType(v CallNumberType) {} +func (t *noopCallTx) ReportCountryCode(v string) {} +func (t *noopCallTx) ReportDirection(v CallDirection) {} +func (t *noopCallTx) ReportTransport(v CallTransport) {} +func (t *noopCallTx) ReportProviderCallID(v string) {} +func (t *noopCallTx) ReportProviderName(v string) {} +func (t *noopCallTx) ReportSIPCallID(v string) {} +func (t *noopCallTx) ReportRoomID(v string) {} +func (t *noopCallTx) ReportRoomName(v string) {} +func (t *noopCallTx) ReportParticipantIdentity(v string) {} +func (t *noopCallTx) ReportError(v string) {} +func (t *noopCallTx) ReportStatus(v CallStatus) {} +func (t *noopCallTx) ReportResponseCode(v uint16) {} +func (t *noopCallTx) ReportDisconnectReason(v string) {} +func (t *noopCallTx) ReportTransferID(v string) {} +func (t *noopCallTx) ReportTransferTo(v string) {} +func (t *noopCallTx) ReportTransferDuration(v uint32) {} +func (t *noopCallTx) ReportTransferStatus(v CallTransferStatus) {} +func (t *noopCallTx) ReportTransferStatusCode(v uint16) {} +func (t *noopCallTx) ReportTransferError(v string) {} +func (t *noopCallTx) ReportCodec(v string) {} +func (t *noopCallTx) ReportRegion(v string) {} +func (t *noopCallTx) ReportPcapLink(v string) {} +func (t *noopCallTx) ReportAttributes(v string) {} +func (t *noopCallTx) ReportFeatures(v uint16) {} +func (t *noopCallTx) ReportMediaEncryptionSettings(v CallMediaEncryptionSettings) {} +func (t *noopCallTx) ReportMediaEncryption(v string) {} diff --git a/observability/sipcallobs/gen_source.go b/observability/sipcallobs/gen_source.go index 3530c7121..e2b0cacf7 100644 --- a/observability/sipcallobs/gen_source.go +++ b/observability/sipcallobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package sipcallobs type CallTrunkType string diff --git a/observability/storageobs/gen_reporter.go b/observability/storageobs/gen_reporter.go index 29ec00777..d39534379 100644 --- a/observability/storageobs/gen_reporter.go +++ b/observability/storageobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package storageobs @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,10 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithEvent(id string) EventReporter WithDeferredEvent() (EventReporter, KeyResolver) - ProjectTx + projectReporter } -type EventTx interface { +type eventReporter interface { ReportService(v EventService) ReportServiceID(v string) ReportOperation(v EventOperation) @@ -38,9 +43,14 @@ type EventTx interface { ReportLifetime(v uint64) } +type EventTx interface { + Project() ProjectTx + eventReporter +} + type EventReporter interface { RegisterFunc(func(ts time.Time, tx EventTx) bool) Tx(func(tx EventTx)) TxAt(time.Time, func(tx EventTx)) - EventTx + eventReporter } diff --git a/observability/storageobs/gen_reporter_noop.go b/observability/storageobs/gen_reporter_noop.go index 077ce8260..50f7b9e8a 100644 --- a/observability/storageobs/gen_reporter_noop.go +++ b/observability/storageobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package storageobs @@ -9,7 +9,9 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ EventReporter = (*noopEventReporter)(nil) + _ EventTx = (*noopEventTx)(nil) ) type noopKeyResolver struct{} @@ -47,6 +49,8 @@ func (r *noopProjectReporter) WithDeferredEvent() (EventReporter, KeyResolver) { return &noopEventReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopEventReporter struct{} func NewNoopEventReporter() EventReporter { @@ -62,3 +66,16 @@ func (r *noopEventReporter) ReportOperation(v EventOperation) func (r *noopEventReporter) ReportPath(v string) {} func (r *noopEventReporter) ReportSize(v uint64) {} func (r *noopEventReporter) ReportLifetime(v uint64) {} + +type noopEventTx struct{} + +func (t *noopEventTx) Project() ProjectTx { + return &noopProjectTx{} +} + +func (t *noopEventTx) ReportService(v EventService) {} +func (t *noopEventTx) ReportServiceID(v string) {} +func (t *noopEventTx) ReportOperation(v EventOperation) {} +func (t *noopEventTx) ReportPath(v string) {} +func (t *noopEventTx) ReportSize(v uint64) {} +func (t *noopEventTx) ReportLifetime(v uint64) {} diff --git a/observability/storageobs/gen_source.go b/observability/storageobs/gen_source.go index fd68fad3a..a978404ab 100644 --- a/observability/storageobs/gen_source.go +++ b/observability/storageobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package storageobs type EventService string diff --git a/observability/telephonyobs/gen_reporter.go b/observability/telephonyobs/gen_reporter.go index 1cd8f5578..9d522bc25 100644 --- a/observability/telephonyobs/gen_reporter.go +++ b/observability/telephonyobs/gen_reporter.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package telephonyobs @@ -6,7 +6,7 @@ import ( "time" ) -const Version_AAHNL9O = true +const Version_94HQ8HG = true type KeyResolver interface { Resolve(string) @@ -18,7 +18,12 @@ type Reporter interface { WithDeferredProject() (ProjectReporter, KeyResolver) } -type ProjectTx interface{} +type projectReporter interface { +} + +type ProjectTx interface { + projectReporter +} type ProjectReporter interface { RegisterFunc(func(ts time.Time, tx ProjectTx) bool) @@ -26,10 +31,16 @@ type ProjectReporter interface { TxAt(time.Time, func(tx ProjectTx)) WithCarrier(id string) CarrierReporter WithDeferredCarrier() (CarrierReporter, KeyResolver) - ProjectTx + projectReporter +} + +type carrierReporter interface { } -type CarrierTx interface{} +type CarrierTx interface { + Project() ProjectTx + carrierReporter +} type CarrierReporter interface { RegisterFunc(func(ts time.Time, tx CarrierTx) bool) @@ -37,10 +48,16 @@ type CarrierReporter interface { TxAt(time.Time, func(tx CarrierTx)) WithCountry(code string) CountryReporter WithDeferredCountry() (CountryReporter, KeyResolver) - CarrierTx + carrierReporter +} + +type countryReporter interface { } -type CountryTx interface{} +type CountryTx interface { + Carrier() CarrierTx + countryReporter +} type CountryReporter interface { RegisterFunc(func(ts time.Time, tx CountryTx) bool) @@ -48,10 +65,16 @@ type CountryReporter interface { TxAt(time.Time, func(tx CountryTx)) WithPhone(number string) PhoneReporter WithDeferredPhone() (PhoneReporter, KeyResolver) - CountryTx + countryReporter +} + +type phoneReporter interface { } -type PhoneTx interface{} +type PhoneTx interface { + Country() CountryTx + phoneReporter +} type PhoneReporter interface { RegisterFunc(func(ts time.Time, tx PhoneTx) bool) @@ -59,10 +82,10 @@ type PhoneReporter interface { TxAt(time.Time, func(tx PhoneTx)) WithCall(id string) CallReporter WithDeferredCall() (CallReporter, KeyResolver) - PhoneTx + phoneReporter } -type CallTx interface { +type callReporter interface { ReportDirection(v DirectionType) ReportNumberType(v NumberType) ReportStatus(v CallStatus) @@ -70,14 +93,20 @@ type CallTx interface { ReportCountryCode(v string) ReportPhoneNumber(v string) ReportDuration(v uint32) + ReportDurationSeconds(v uint32) ReportDurationMinutes(v uint16) ReportStartTime(v time.Time) ReportEndTime(v time.Time) } +type CallTx interface { + Phone() PhoneTx + callReporter +} + type CallReporter interface { RegisterFunc(func(ts time.Time, tx CallTx) bool) Tx(func(tx CallTx)) TxAt(time.Time, func(tx CallTx)) - CallTx + callReporter } diff --git a/observability/telephonyobs/gen_reporter_noop.go b/observability/telephonyobs/gen_reporter_noop.go index bccaac97b..879b858de 100644 --- a/observability/telephonyobs/gen_reporter_noop.go +++ b/observability/telephonyobs/gen_reporter_noop.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package telephonyobs @@ -9,10 +9,15 @@ import ( var ( _ Reporter = (*noopReporter)(nil) _ ProjectReporter = (*noopProjectReporter)(nil) + _ ProjectTx = (*noopProjectTx)(nil) _ CarrierReporter = (*noopCarrierReporter)(nil) + _ CarrierTx = (*noopCarrierTx)(nil) _ CountryReporter = (*noopCountryReporter)(nil) + _ CountryTx = (*noopCountryTx)(nil) _ PhoneReporter = (*noopPhoneReporter)(nil) + _ PhoneTx = (*noopPhoneTx)(nil) _ CallReporter = (*noopCallReporter)(nil) + _ CallTx = (*noopCallTx)(nil) ) type noopKeyResolver struct{} @@ -50,6 +55,8 @@ func (r *noopProjectReporter) WithDeferredCarrier() (CarrierReporter, KeyResolve return &noopCarrierReporter{}, noopKeyResolver{} } +type noopProjectTx struct{} + type noopCarrierReporter struct{} func NewNoopCarrierReporter() CarrierReporter { @@ -66,6 +73,12 @@ func (r *noopCarrierReporter) WithDeferredCountry() (CountryReporter, KeyResolve return &noopCountryReporter{}, noopKeyResolver{} } +type noopCarrierTx struct{} + +func (t *noopCarrierTx) Project() ProjectTx { + return &noopProjectTx{} +} + type noopCountryReporter struct{} func NewNoopCountryReporter() CountryReporter { @@ -82,6 +95,12 @@ func (r *noopCountryReporter) WithDeferredPhone() (PhoneReporter, KeyResolver) { return &noopPhoneReporter{}, noopKeyResolver{} } +type noopCountryTx struct{} + +func (t *noopCountryTx) Carrier() CarrierTx { + return &noopCarrierTx{} +} + type noopPhoneReporter struct{} func NewNoopPhoneReporter() PhoneReporter { @@ -98,6 +117,12 @@ func (r *noopPhoneReporter) WithDeferredCall() (CallReporter, KeyResolver) { return &noopCallReporter{}, noopKeyResolver{} } +type noopPhoneTx struct{} + +func (t *noopPhoneTx) Country() CountryTx { + return &noopCountryTx{} +} + type noopCallReporter struct{} func NewNoopCallReporter() CallReporter { @@ -114,6 +139,25 @@ func (r *noopCallReporter) ReportTrunkType(v TrunkType) {} func (r *noopCallReporter) ReportCountryCode(v string) {} func (r *noopCallReporter) ReportPhoneNumber(v string) {} func (r *noopCallReporter) ReportDuration(v uint32) {} +func (r *noopCallReporter) ReportDurationSeconds(v uint32) {} func (r *noopCallReporter) ReportDurationMinutes(v uint16) {} func (r *noopCallReporter) ReportStartTime(v time.Time) {} func (r *noopCallReporter) ReportEndTime(v time.Time) {} + +type noopCallTx struct{} + +func (t *noopCallTx) Phone() PhoneTx { + return &noopPhoneTx{} +} + +func (t *noopCallTx) ReportDirection(v DirectionType) {} +func (t *noopCallTx) ReportNumberType(v NumberType) {} +func (t *noopCallTx) ReportStatus(v CallStatus) {} +func (t *noopCallTx) ReportTrunkType(v TrunkType) {} +func (t *noopCallTx) ReportCountryCode(v string) {} +func (t *noopCallTx) ReportPhoneNumber(v string) {} +func (t *noopCallTx) ReportDuration(v uint32) {} +func (t *noopCallTx) ReportDurationSeconds(v uint32) {} +func (t *noopCallTx) ReportDurationMinutes(v uint16) {} +func (t *noopCallTx) ReportStartTime(v time.Time) {} +func (t *noopCallTx) ReportEndTime(v time.Time) {} diff --git a/observability/telephonyobs/gen_source.go b/observability/telephonyobs/gen_source.go index 3e1bf203d..31c00623c 100644 --- a/observability/telephonyobs/gen_source.go +++ b/observability/telephonyobs/gen_source.go @@ -1,4 +1,4 @@ -// Code generated; DO NOT EDIT. +// Code generated by cloud-observability; DO NOT EDIT. package telephonyobs type DirectionType string diff --git a/package.json b/package.json index 4abc5cf05..9aeb1db91 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.45.5", + "version": "1.45.8", "scripts": { "changeset": "changeset", "ci:publish": "pnpm --filter @livekit/protocol run build && changeset publish" diff --git a/packages/javascript/CHANGELOG.md b/packages/javascript/CHANGELOG.md index a144cbe90..9a788d63e 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,33 @@ # @livekit/protocol +## 1.45.8 + +### Patch Changes + +- rename agent environment to deployment - [#1532](https://github.com/livekit/protocol/pull/1532) ([@paulwe](https://github.com/paulwe)) + +- Allow setting a list of SIP codecs for SDP. - [#1530](https://github.com/livekit/protocol/pull/1530) ([@dennwc](https://github.com/dennwc)) + +## 1.45.7 + +### Patch Changes + +- update observability codegen for ingress/egress - [#1529](https://github.com/livekit/protocol/pull/1529) ([@paulwe](https://github.com/paulwe)) + +- add agents reporter with env - [#1525](https://github.com/livekit/protocol/pull/1525) ([@paulwe](https://github.com/paulwe)) + +- Fix the egress results serialization format - [#1521](https://github.com/livekit/protocol/pull/1521) ([@biglittlebigben](https://github.com/biglittlebigben)) + +- update otel - [#1524](https://github.com/livekit/protocol/pull/1524) ([@paulwe](https://github.com/paulwe)) + +- Agent env - [#1527](https://github.com/livekit/protocol/pull/1527) ([@paulwe](https://github.com/paulwe)) + +- codegen observability parent tx accessors - [#1522](https://github.com/livekit/protocol/pull/1522) ([@paulwe](https://github.com/paulwe)) + +- add duration seconds reporting - [#1528](https://github.com/livekit/protocol/pull/1528) ([@paulwe](https://github.com/paulwe)) + +## 1.45.6 + ## 1.45.5 ### Patch Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index 447901b10..6bc7311dd 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.45.5", + "version": "1.45.8", "description": "", "type": "module", "require": "dist/index.cjs", diff --git a/protobufs/agent/livekit_agent_session.proto b/protobufs/agent/livekit_agent_session.proto index 77b897390..d6e0a0dbd 100644 --- a/protobufs/agent/livekit_agent_session.proto +++ b/protobufs/agent/livekit_agent_session.proto @@ -6,6 +6,7 @@ option go_package = "github.com/livekit/protocol/livekit/agent"; import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; +import "google/protobuf/duration.proto"; import "logger/options.proto"; enum ChatRole { @@ -113,6 +114,15 @@ enum UserState { US_AWAY = 2; } +enum AmdCategory { + AMD_UNKNOWN = 0; + AMD_HUMAN = 1; + AMD_MACHINE_IVR = 2; + AMD_MACHINE_VM = 3; + AMD_MACHINE_UNAVAILABLE = 4; + AMD_UNCERTAIN = 5; +} + message LLMModelUsage { string provider = 1; string model = 2; @@ -203,6 +213,14 @@ message AgentSessionEvent { google.protobuf.Timestamp detected_at = 4; } + message AmdPrediction { + google.protobuf.Duration speech_duration = 1; + AmdCategory category = 2; + string reason = 3; + string transcript = 4; + google.protobuf.Duration delay = 5; + } + message SessionUsageUpdated { AgentSessionUsage usage = 1; } @@ -217,6 +235,7 @@ message AgentSessionEvent { Error error = 15; OverlappingSpeech overlapping_speech = 16; SessionUsageUpdated session_usage_updated = 17; + AmdPrediction amd_prediction = 18; } } diff --git a/protobufs/livekit_agent.proto b/protobufs/livekit_agent.proto index 7ba085251..e269ab55a 100644 --- a/protobufs/livekit_agent.proto +++ b/protobufs/livekit_agent.proto @@ -33,6 +33,7 @@ message Job { string agent_name = 7; JobState state = 8; bool enable_recording = 10; + string deployment = 11; } message JobState { @@ -120,6 +121,7 @@ message RegisterWorkerRequest { uint32 ping_interval = 5; optional string namespace = 6; ParticipantPermission allowed_permissions = 7; + string deployment = 9; } message RegisterWorkerResponse { diff --git a/protobufs/livekit_agent_dispatch.proto b/protobufs/livekit_agent_dispatch.proto index 95ce83c88..630efbff9 100644 --- a/protobufs/livekit_agent_dispatch.proto +++ b/protobufs/livekit_agent_dispatch.proto @@ -38,12 +38,14 @@ message CreateAgentDispatchRequest { string room = 2; string metadata = 3 [(logger.redact) = true]; JobRestartPolicy restart_policy = 4; // cloud only + string deployment = 5; } message RoomAgentDispatch { string agent_name = 1; string metadata = 2 [(logger.redact) = true]; JobRestartPolicy restart_policy = 3; // cloud only + string deployment = 4; } message DeleteAgentDispatchRequest { @@ -67,6 +69,7 @@ message AgentDispatch { string metadata = 4 [(logger.redact) = true]; AgentDispatchState state = 5; JobRestartPolicy restart_policy = 6; // cloud only + string deployment = 7; } message AgentDispatchState { diff --git a/protobufs/livekit_agent_simulation.proto b/protobufs/livekit_agent_simulation.proto index ca1a855ed..f3a13b329 100644 --- a/protobufs/livekit_agent_simulation.proto +++ b/protobufs/livekit_agent_simulation.proto @@ -63,6 +63,11 @@ message SimulationRun { string error = 4; string agent_expectations = 5; string label = 6; + repeated string tags = 7; + string room_name = 8; + string scenario_id = 9; + google.protobuf.Timestamp started_at = 10; + google.protobuf.Timestamp ended_at = 11; } message Create { @@ -141,6 +146,13 @@ message SimulationRun { google.protobuf.Timestamp created_at = 6; repeated Job jobs = 7; SimulationRunSummary summary = 8; + string agent_name = 9; + ScenarioGroup scenario_group = 10; + google.protobuf.Timestamp ended_at = 11; + int32 job_count = 12; + int32 passed_count = 13; + int32 failed_count = 14; + int32 num_simulations = 15; } message Scenario { @@ -259,6 +271,7 @@ message ScenarioGroup { string label = 3; google.protobuf.Timestamp created_at = 4; repeated Scenario scenarios = 5; + int32 scenario_count = 6; } service AgentSimulation { diff --git a/protobufs/livekit_models.proto b/protobufs/livekit_models.proto index 6b98a008d..f0f621cf5 100644 --- a/protobufs/livekit_models.proto +++ b/protobufs/livekit_models.proto @@ -282,6 +282,9 @@ message DataTrackInfo { // Method used for end-to-end encryption (E2EE) on packet payloads. Encryption.Type encryption = 4; + + // Name of the schema describing frames published on the track. + optional string schema_name = 5; } enum DataTrackExtensionID { diff --git a/protobufs/livekit_rtc.proto b/protobufs/livekit_rtc.proto index 31488daea..62a852377 100644 --- a/protobufs/livekit_rtc.proto +++ b/protobufs/livekit_rtc.proto @@ -187,6 +187,9 @@ message PublishDataTrackRequest { // Method used for end-to-end encryption (E2EE) on frame payloads. Encryption.Type encryption = 3; + + // Schema describing frames published on the track. + optional DataTrackSchema schema = 4; } message PublishDataTrackResponse { @@ -561,6 +564,7 @@ message RequestResponse { INVALID_NAME = 8; DUPLICATE_HANDLE = 9; DUPLICATE_NAME = 10; + INVALID_SCHEMA_NAME = 11; } uint32 request_id = 1 [(logger.name) = "requestID"]; diff --git a/protobufs/livekit_schema.proto b/protobufs/livekit_schema.proto new file mode 100644 index 000000000..05902412b --- /dev/null +++ b/protobufs/livekit_schema.proto @@ -0,0 +1,77 @@ +// Copyright 2026 LiveKit, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; + +package livekit; + +option csharp_namespace = "LiveKit.Proto"; +option go_package = "github.com/livekit/protocol/livekit"; +option ruby_package = "LiveKit::Proto"; + +import "logger/options.proto"; + +// Schema registration service for data tracks. +service SchemaService { + rpc RegisterSchema(RegisterSchemaRequest) returns (RegisterSchemaResponse); + rpc UnregisterSchema(UnregisterSchemaRequest) returns (UnregisterSchemaResponse); + rpc GetSchema(GetSchemaRequest) returns (GetSchemaResponse); +} + +message RegisterSchemaRequest { + SchemaDefinition schema = 1; + // If true, an existing schema with the same name will be overwritten; + // otherwise the request fails when a schema with that name already exists. + bool allow_override = 2; +} + +message RegisterSchemaResponse {} + +message UnregisterSchemaRequest { + string name = 1; +} + +message UnregisterSchemaResponse {} + +message GetSchemaRequest { + string name = 1; +} + +message GetSchemaResponse { + SchemaDefinition schema = 1; +} + +message SchemaDefinition { + // Unique identifier of the schema. + string name = 1; + + // Format the schema is defined in. + SchemaType type = 2; + + // Schema definition. + bytes data = 3 [ + (logger.redact) = true, + (logger.redact_format) = "" + ]; +} + +enum SchemaType { + SCHEMA_TYPE_UNSPECIFIED = 0; + SCHEMA_TYPE_PROTOBUF = 1; + SCHEMA_TYPE_FLATBUFFER = 2; + SCHEMA_TYPE_ROS1MSG = 3; + SCHEMA_TYPE_ROS2IDL = 4; + SCHEMA_TYPE_OMGIDL = 5; + SCHEMA_TYPE_JSONSCHEMA = 6; +} diff --git a/protobufs/livekit_sip.proto b/protobufs/livekit_sip.proto index 4f401d2c7..7c95c57e4 100644 --- a/protobufs/livekit_sip.proto +++ b/protobufs/livekit_sip.proto @@ -223,6 +223,19 @@ enum SIPMediaEncryption { SIP_MEDIA_ENCRYPT_REQUIRE = 2; // require encryption } +message SIPCodec { + string name = 1; + uint32 rate = 2; +} + +message SIPMediaConfig { + // if set, ignore the default codecs and use the list below. + bool only_listed_codecs = 1; + // List of allowed codecs. If only_listed_codecs is not set, this list is added to default codecs. + repeated SIPCodec codecs = 2; + optional SIPMediaEncryption encryption = 3; +} + message ProviderInfo { string id = 1; string name = 2; @@ -649,13 +662,14 @@ message SIPDispatchRuleInfo { // RoomConfiguration to use if the participant initiates the room RoomConfiguration room_config = 10; + SIPMediaConfig media = 16; bool krisp_enabled = 11; - SIPMediaEncryption media_encryption = 12; + SIPMediaEncryption media_encryption = 12 [deprecated=true]; google.protobuf.Timestamp created_at = 14; google.protobuf.Timestamp updated_at = 15; - // NEXT ID: 16 + // NEXT ID: 17 } message SIPDispatchRuleUpdate { @@ -670,7 +684,8 @@ message SIPDispatchRuleUpdate { (logger.redact) = true, (logger.redact_format) = "" ]; - optional SIPMediaEncryption media_encryption = 6; + optional SIPMediaEncryption media_encryption = 6 [deprecated=true]; + SIPMediaConfig media = 7; } // ListSIPDispatchRuleRequest lists dispatch rules for given filters. If no filters are set, all rules are listed. @@ -788,7 +803,8 @@ message CreateSIPParticipantRequest { // Enable voice isolation for the callee. bool krisp_enabled = 14; - SIPMediaEncryption media_encryption = 18; + SIPMediaEncryption media_encryption = 18 [deprecated = true]; + SIPMediaConfig media = 23; // Wait for the answer for the call before returning. bool wait_until_answered = 19; @@ -804,7 +820,7 @@ message CreateSIPParticipantRequest { (logger.redact_format) = "" ]; optional Destination destination = 22; - // NEXT ID: 23 + // NEXT ID: 24 } message SIPParticipantInfo { diff --git a/protobufs/rpc/io.proto b/protobufs/rpc/io.proto index 5542d3e8d..ab41de72e 100644 --- a/protobufs/rpc/io.proto +++ b/protobufs/rpc/io.proto @@ -236,11 +236,12 @@ message EvaluateSIPDispatchRulesResponse { string room_preset = 20; livekit.RoomConfiguration room_config = 21; - livekit.SIPMediaEncryption media_encryption = 22; + livekit.SIPMediaEncryption media_encryption = 22 [deprecated = true]; + livekit.SIPMediaConfig media = 24; map feature_flags = 23; - // NEXT ID: 24 + // NEXT ID: 25 } message UpdateSIPCallStateRequest { diff --git a/protobufs/rpc/sip.proto b/protobufs/rpc/sip.proto index badfc2da5..e59137ab7 100644 --- a/protobufs/rpc/sip.proto +++ b/protobufs/rpc/sip.proto @@ -121,7 +121,8 @@ message InternalCreateSIPParticipantRequest { // Max call duration. google.protobuf.Duration max_call_duration = 24; - livekit.SIPMediaEncryption media_encryption = 28; + livekit.SIPMediaEncryption media_encryption = 28 [deprecated = true]; + livekit.SIPMediaConfig media = 34; // Wait for the answer for the call before returning. bool wait_until_answered = 29; @@ -143,7 +144,7 @@ message InternalCreateSIPParticipantRequest { // Project-level feature flags from ProjectSettings.FeatureFlags map feature_flags = 33; - // NEXT ID: 34 + // NEXT ID: 35 } message InternalCreateSIPParticipantResponse { diff --git a/rpc/analytics_grpc.pb.go b/rpc/analytics_grpc.pb.go index 5c8c48002..9b5626029 100644 --- a/rpc/analytics_grpc.pb.go +++ b/rpc/analytics_grpc.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.6.1 +// - protoc-gen-go-grpc v1.6.2 // - protoc v4.23.4 // source: rpc/analytics.proto diff --git a/rpc/io.pb.go b/rpc/io.pb.go index d038c33c4..1844d54e4 100644 --- a/rpc/io.pb.go +++ b/rpc/io.pb.go @@ -866,9 +866,11 @@ type EvaluateSIPDispatchRulesResponse struct { // Room preset and config are used only to generate tokens // once tokens are returned by this response consistently, it will no longer // be needed - RoomPreset string `protobuf:"bytes,20,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` - RoomConfig *livekit.RoomConfiguration `protobuf:"bytes,21,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + RoomPreset string `protobuf:"bytes,20,opt,name=room_preset,json=roomPreset,proto3" json:"room_preset,omitempty"` + RoomConfig *livekit.RoomConfiguration `protobuf:"bytes,21,opt,name=room_config,json=roomConfig,proto3" json:"room_config,omitempty"` + // Deprecated: Marked as deprecated in rpc/io.proto. MediaEncryption livekit.SIPMediaEncryption `protobuf:"varint,22,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *livekit.SIPMediaConfig `protobuf:"bytes,24,opt,name=media,proto3" json:"media,omitempty"` FeatureFlags map[string]string `protobuf:"bytes,23,rep,name=feature_flags,json=featureFlags,proto3" json:"feature_flags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -1052,6 +1054,7 @@ func (x *EvaluateSIPDispatchRulesResponse) GetRoomConfig() *livekit.RoomConfigur return nil } +// Deprecated: Marked as deprecated in rpc/io.proto. func (x *EvaluateSIPDispatchRulesResponse) GetMediaEncryption() livekit.SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -1059,6 +1062,13 @@ func (x *EvaluateSIPDispatchRulesResponse) GetMediaEncryption() livekit.SIPMedia return livekit.SIPMediaEncryption(0) } +func (x *EvaluateSIPDispatchRulesResponse) GetMedia() *livekit.SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *EvaluateSIPDispatchRulesResponse) GetFeatureFlags() map[string]string { if x != nil { return x.FeatureFlags @@ -1341,7 +1351,7 @@ const file_rpc_io_proto_rawDesc = "" + "\x04call\x18\f \x01(\v2\f.rpc.SIPCallR\x04call\x1aB\n" + "\x14ExtraAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xcf\x0f\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x82\x10\n" + " EvaluateSIPDispatchRulesResponse\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x121\n" + "\x14participant_identity\x18\x02 \x01(\tR\x13participantIdentity\x12O\n" + @@ -1370,8 +1380,9 @@ const file_rpc_io_proto_rawDesc = "" + "\vroom_preset\x18\x14 \x01(\tR\n" + "roomPreset\x12;\n" + "\vroom_config\x18\x15 \x01(\v2\x1a.livekit.RoomConfigurationR\n" + - "roomConfig\x12F\n" + - "\x10media_encryption\x18\x16 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12\\\n" + + "roomConfig\x12J\n" + + "\x10media_encryption\x18\x16 \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\x18 \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12\\\n" + "\rfeature_flags\x18\x17 \x03(\v27.rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntryR\ffeatureFlags\x1aH\n" + "\x1aParticipantAttributesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + @@ -1478,12 +1489,13 @@ var file_rpc_io_proto_goTypes = []any{ (*durationpb.Duration)(nil), // 29: google.protobuf.Duration (*livekit.RoomConfiguration)(nil), // 30: livekit.RoomConfiguration (livekit.SIPMediaEncryption)(0), // 31: livekit.SIPMediaEncryption - (*livekit.SIPCallInfo)(nil), // 32: livekit.SIPCallInfo - (*livekit.SIPTransferInfo)(nil), // 33: livekit.SIPTransferInfo - (*livekit.SIPUri)(nil), // 34: livekit.SIPUri - (*livekit.ListEgressRequest)(nil), // 35: livekit.ListEgressRequest - (*emptypb.Empty)(nil), // 36: google.protobuf.Empty - (*livekit.ListEgressResponse)(nil), // 37: livekit.ListEgressResponse + (*livekit.SIPMediaConfig)(nil), // 32: livekit.SIPMediaConfig + (*livekit.SIPCallInfo)(nil), // 33: livekit.SIPCallInfo + (*livekit.SIPTransferInfo)(nil), // 34: livekit.SIPTransferInfo + (*livekit.SIPUri)(nil), // 35: livekit.SIPUri + (*livekit.ListEgressRequest)(nil), // 36: livekit.ListEgressRequest + (*emptypb.Empty)(nil), // 37: google.protobuf.Empty + (*livekit.ListEgressResponse)(nil), // 38: livekit.ListEgressResponse } var file_rpc_io_proto_depIdxs = []int32{ 23, // 0: rpc.UpdateMetricsRequest.info:type_name -> livekit.EgressInfo @@ -1508,43 +1520,44 @@ var file_rpc_io_proto_depIdxs = []int32{ 29, // 19: rpc.EvaluateSIPDispatchRulesResponse.max_call_duration:type_name -> google.protobuf.Duration 30, // 20: rpc.EvaluateSIPDispatchRulesResponse.room_config:type_name -> livekit.RoomConfiguration 31, // 21: rpc.EvaluateSIPDispatchRulesResponse.media_encryption:type_name -> livekit.SIPMediaEncryption - 22, // 22: rpc.EvaluateSIPDispatchRulesResponse.feature_flags:type_name -> rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntry - 32, // 23: rpc.UpdateSIPCallStateRequest.call_info:type_name -> livekit.SIPCallInfo - 33, // 24: rpc.UpdateSIPCallStateRequest.transfer_info:type_name -> livekit.SIPTransferInfo - 32, // 25: rpc.RecordCallContextRequest.call_info:type_name -> livekit.SIPCallInfo - 34, // 26: rpc.SIPCall.address:type_name -> livekit.SIPUri - 34, // 27: rpc.SIPCall.from:type_name -> livekit.SIPUri - 34, // 28: rpc.SIPCall.to:type_name -> livekit.SIPUri - 34, // 29: rpc.SIPCall.via:type_name -> livekit.SIPUri - 23, // 30: rpc.IOInfo.CreateEgress:input_type -> livekit.EgressInfo - 23, // 31: rpc.IOInfo.UpdateEgress:input_type -> livekit.EgressInfo - 2, // 32: rpc.IOInfo.GetEgress:input_type -> rpc.GetEgressRequest - 35, // 33: rpc.IOInfo.ListEgress:input_type -> livekit.ListEgressRequest - 3, // 34: rpc.IOInfo.UpdateMetrics:input_type -> rpc.UpdateMetricsRequest - 24, // 35: rpc.IOInfo.CreateIngress:input_type -> livekit.IngressInfo - 4, // 36: rpc.IOInfo.GetIngressInfo:input_type -> rpc.GetIngressInfoRequest - 6, // 37: rpc.IOInfo.UpdateIngressState:input_type -> rpc.UpdateIngressStateRequest - 7, // 38: rpc.IOInfo.GetSIPTrunkAuthentication:input_type -> rpc.GetSIPTrunkAuthenticationRequest - 9, // 39: rpc.IOInfo.EvaluateSIPDispatchRules:input_type -> rpc.EvaluateSIPDispatchRulesRequest - 11, // 40: rpc.IOInfo.UpdateSIPCallState:input_type -> rpc.UpdateSIPCallStateRequest - 12, // 41: rpc.IOInfo.RecordCallContext:input_type -> rpc.RecordCallContextRequest - 36, // 42: rpc.IOInfo.CreateEgress:output_type -> google.protobuf.Empty - 36, // 43: rpc.IOInfo.UpdateEgress:output_type -> google.protobuf.Empty - 23, // 44: rpc.IOInfo.GetEgress:output_type -> livekit.EgressInfo - 37, // 45: rpc.IOInfo.ListEgress:output_type -> livekit.ListEgressResponse - 36, // 46: rpc.IOInfo.UpdateMetrics:output_type -> google.protobuf.Empty - 36, // 47: rpc.IOInfo.CreateIngress:output_type -> google.protobuf.Empty - 5, // 48: rpc.IOInfo.GetIngressInfo:output_type -> rpc.GetIngressInfoResponse - 36, // 49: rpc.IOInfo.UpdateIngressState:output_type -> google.protobuf.Empty - 8, // 50: rpc.IOInfo.GetSIPTrunkAuthentication:output_type -> rpc.GetSIPTrunkAuthenticationResponse - 10, // 51: rpc.IOInfo.EvaluateSIPDispatchRules:output_type -> rpc.EvaluateSIPDispatchRulesResponse - 36, // 52: rpc.IOInfo.UpdateSIPCallState:output_type -> google.protobuf.Empty - 36, // 53: rpc.IOInfo.RecordCallContext:output_type -> google.protobuf.Empty - 42, // [42:54] is the sub-list for method output_type - 30, // [30:42] is the sub-list for method input_type - 30, // [30:30] is the sub-list for extension type_name - 30, // [30:30] is the sub-list for extension extendee - 0, // [0:30] is the sub-list for field type_name + 32, // 22: rpc.EvaluateSIPDispatchRulesResponse.media:type_name -> livekit.SIPMediaConfig + 22, // 23: rpc.EvaluateSIPDispatchRulesResponse.feature_flags:type_name -> rpc.EvaluateSIPDispatchRulesResponse.FeatureFlagsEntry + 33, // 24: rpc.UpdateSIPCallStateRequest.call_info:type_name -> livekit.SIPCallInfo + 34, // 25: rpc.UpdateSIPCallStateRequest.transfer_info:type_name -> livekit.SIPTransferInfo + 33, // 26: rpc.RecordCallContextRequest.call_info:type_name -> livekit.SIPCallInfo + 35, // 27: rpc.SIPCall.address:type_name -> livekit.SIPUri + 35, // 28: rpc.SIPCall.from:type_name -> livekit.SIPUri + 35, // 29: rpc.SIPCall.to:type_name -> livekit.SIPUri + 35, // 30: rpc.SIPCall.via:type_name -> livekit.SIPUri + 23, // 31: rpc.IOInfo.CreateEgress:input_type -> livekit.EgressInfo + 23, // 32: rpc.IOInfo.UpdateEgress:input_type -> livekit.EgressInfo + 2, // 33: rpc.IOInfo.GetEgress:input_type -> rpc.GetEgressRequest + 36, // 34: rpc.IOInfo.ListEgress:input_type -> livekit.ListEgressRequest + 3, // 35: rpc.IOInfo.UpdateMetrics:input_type -> rpc.UpdateMetricsRequest + 24, // 36: rpc.IOInfo.CreateIngress:input_type -> livekit.IngressInfo + 4, // 37: rpc.IOInfo.GetIngressInfo:input_type -> rpc.GetIngressInfoRequest + 6, // 38: rpc.IOInfo.UpdateIngressState:input_type -> rpc.UpdateIngressStateRequest + 7, // 39: rpc.IOInfo.GetSIPTrunkAuthentication:input_type -> rpc.GetSIPTrunkAuthenticationRequest + 9, // 40: rpc.IOInfo.EvaluateSIPDispatchRules:input_type -> rpc.EvaluateSIPDispatchRulesRequest + 11, // 41: rpc.IOInfo.UpdateSIPCallState:input_type -> rpc.UpdateSIPCallStateRequest + 12, // 42: rpc.IOInfo.RecordCallContext:input_type -> rpc.RecordCallContextRequest + 37, // 43: rpc.IOInfo.CreateEgress:output_type -> google.protobuf.Empty + 37, // 44: rpc.IOInfo.UpdateEgress:output_type -> google.protobuf.Empty + 23, // 45: rpc.IOInfo.GetEgress:output_type -> livekit.EgressInfo + 38, // 46: rpc.IOInfo.ListEgress:output_type -> livekit.ListEgressResponse + 37, // 47: rpc.IOInfo.UpdateMetrics:output_type -> google.protobuf.Empty + 37, // 48: rpc.IOInfo.CreateIngress:output_type -> google.protobuf.Empty + 5, // 49: rpc.IOInfo.GetIngressInfo:output_type -> rpc.GetIngressInfoResponse + 37, // 50: rpc.IOInfo.UpdateIngressState:output_type -> google.protobuf.Empty + 8, // 51: rpc.IOInfo.GetSIPTrunkAuthentication:output_type -> rpc.GetSIPTrunkAuthenticationResponse + 10, // 52: rpc.IOInfo.EvaluateSIPDispatchRules:output_type -> rpc.EvaluateSIPDispatchRulesResponse + 37, // 53: rpc.IOInfo.UpdateSIPCallState:output_type -> google.protobuf.Empty + 37, // 54: rpc.IOInfo.RecordCallContext:output_type -> google.protobuf.Empty + 43, // [43:55] is the sub-list for method output_type + 31, // [31:43] is the sub-list for method input_type + 31, // [31:31] is the sub-list for extension type_name + 31, // [31:31] is the sub-list for extension extendee + 0, // [0:31] is the sub-list for field type_name } func init() { file_rpc_io_proto_init() } diff --git a/rpc/io.psrpc.go b/rpc/io.psrpc.go index f303ecd4b..b4125e87a 100644 --- a/rpc/io.psrpc.go +++ b/rpc/io.psrpc.go @@ -364,136 +364,137 @@ func (UnimplementedIOInfoServer) RecordCallContext(context.Context, *RecordCallC } var psrpcFileDescriptor4 = []byte{ - // 2086 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x18, 0x4d, 0x73, 0xdb, 0xc6, - 0x35, 0x94, 0x28, 0x89, 0x7c, 0xa4, 0x24, 0x6a, 0x4d, 0xa9, 0x10, 0x35, 0xb1, 0x69, 0x39, 0xae, - 0xe5, 0xa4, 0xa5, 0x26, 0xea, 0x21, 0xa9, 0x93, 0x38, 0x96, 0x48, 0xc8, 0x66, 0x62, 0x8b, 0x08, + // 2102 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x19, 0x4d, 0x73, 0xdb, 0xc6, + 0x35, 0x94, 0x48, 0x89, 0x7c, 0xa4, 0x24, 0x6a, 0x4d, 0x29, 0x10, 0x35, 0xb1, 0x69, 0x39, 0xae, + 0xe5, 0xa4, 0xa1, 0x26, 0xea, 0x21, 0xa9, 0x93, 0x38, 0x96, 0x48, 0xd8, 0xa6, 0x63, 0x4b, 0x08, 0x44, 0x4e, 0x3f, 0xa6, 0x1d, 0x14, 0x02, 0x96, 0x14, 0x22, 0x10, 0x8b, 0x2e, 0x16, 0xb2, 0xd5, - 0x4c, 0x4e, 0x3d, 0x74, 0xa6, 0x33, 0xe9, 0x3f, 0xe8, 0x3d, 0xe7, 0x1e, 0x7a, 0xf0, 0xa9, 0xe7, - 0x5e, 0xfa, 0x97, 0x3a, 0xfb, 0x01, 0x12, 0xfc, 0x92, 0x44, 0x77, 0xa6, 0x27, 0x2c, 0xde, 0xd7, - 0xbe, 0x7d, 0xfb, 0xde, 0xdb, 0xf7, 0x1e, 0x14, 0x69, 0xe8, 0xec, 0x7b, 0xa4, 0x16, 0x52, 0xc2, - 0x08, 0x5a, 0xa4, 0xa1, 0x53, 0x29, 0xfb, 0xde, 0x25, 0xbe, 0xf0, 0x98, 0x85, 0x7b, 0x14, 0x47, - 0x91, 0x44, 0x55, 0x36, 0x13, 0xa8, 0x17, 0xa4, 0xc1, 0x1b, 0x09, 0x38, 0xf2, 0x42, 0x05, 0x42, - 0x09, 0x88, 0x12, 0xd2, 0x57, 0xb0, 0xb2, 0x4f, 0x7a, 0x3d, 0x4c, 0xf7, 0x49, 0xc8, 0x3c, 0x12, - 0x24, 0xcc, 0x3b, 0x3d, 0x42, 0x7a, 0x3e, 0xde, 0x17, 0x7f, 0x67, 0x71, 0x77, 0x1f, 0xf7, 0x43, - 0x76, 0xa5, 0x90, 0x77, 0xc7, 0x91, 0x6e, 0x4c, 0x6d, 0xce, 0x2d, 0xf1, 0xbb, 0x9f, 0x43, 0xe9, - 0x39, 0x66, 0xba, 0x50, 0xc6, 0xc4, 0x7f, 0x8c, 0x71, 0xc4, 0xd0, 0x1e, 0xe4, 0xa5, 0xd2, 0x96, - 0xe7, 0x6a, 0x99, 0x6a, 0x66, 0x2f, 0x7f, 0x54, 0x78, 0x6b, 0xe4, 0x24, 0xac, 0xd9, 0x30, 0x93, - 0x95, 0xbb, 0xfb, 0x97, 0x0c, 0x94, 0x3b, 0xa1, 0x6b, 0x33, 0xfc, 0x0a, 0x33, 0xea, 0x39, 0x03, - 0x11, 0x8f, 0x20, 0xeb, 0x05, 0x5d, 0x22, 0xb8, 0x0b, 0x07, 0x77, 0x6a, 0xea, 0x30, 0x35, 0xb9, - 0x51, 0x33, 0xe8, 0x12, 0x53, 0x10, 0xa0, 0x5d, 0x58, 0xb5, 0x2f, 0x7b, 0x96, 0x13, 0xc6, 0x56, - 0x1c, 0xd9, 0x3d, 0xac, 0x2d, 0x56, 0x33, 0x7b, 0x0b, 0x66, 0xc1, 0xbe, 0xec, 0xd5, 0xc3, 0xb8, - 0xc3, 0x41, 0x9c, 0xa6, 0x6f, 0xbf, 0x49, 0xd1, 0x64, 0x25, 0x4d, 0xdf, 0x7e, 0x93, 0xd0, 0xec, - 0x3a, 0xb0, 0xf9, 0x1c, 0xb3, 0x66, 0x30, 0x94, 0xaf, 0x34, 0xf9, 0x08, 0x40, 0xd9, 0x7a, 0x78, - 0x9a, 0xe2, 0x5b, 0x23, 0xaf, 0x80, 0xcd, 0x86, 0x39, 0x58, 0xba, 0xe8, 0x7d, 0x80, 0x88, 0x51, - 0x6c, 0xf7, 0xad, 0x0b, 0x7c, 0xa5, 0x2d, 0x70, 0x62, 0x33, 0x2f, 0x21, 0x5f, 0xe3, 0xab, 0xdd, - 0x7f, 0x2f, 0xc2, 0xd6, 0xf8, 0x2e, 0x51, 0x48, 0x82, 0x08, 0xa3, 0xbd, 0x91, 0x03, 0x97, 0x07, - 0x07, 0x4e, 0xd3, 0xca, 0x13, 0x97, 0x61, 0x89, 0x91, 0x0b, 0x1c, 0x28, 0xf1, 0xf2, 0x07, 0x6d, - 0xc2, 0xf2, 0xeb, 0xc8, 0x8a, 0xa9, 0x2f, 0x0c, 0x90, 0x37, 0x97, 0x5e, 0x47, 0x1d, 0xea, 0x73, - 0xed, 0x43, 0x4a, 0xbe, 0xc5, 0x0e, 0xe3, 0xda, 0x2f, 0x0f, 0xb4, 0x57, 0x40, 0xae, 0x7d, 0xb2, - 0x74, 0x51, 0x07, 0xd6, 0xb8, 0x83, 0x78, 0x41, 0xcf, 0xea, 0x7a, 0xd8, 0x77, 0x23, 0x2d, 0x5b, - 0x5d, 0xdc, 0x2b, 0x1c, 0xd4, 0x6a, 0x34, 0x74, 0x6a, 0xd3, 0x15, 0xaf, 0xbd, 0x94, 0x1c, 0xc7, - 0x82, 0x41, 0x0f, 0x18, 0xbd, 0x32, 0x57, 0xfd, 0x34, 0x0c, 0x99, 0xb0, 0xda, 0xc5, 0x36, 0x8b, - 0x29, 0xb6, 0xba, 0xbe, 0xdd, 0x8b, 0xb4, 0x25, 0x21, 0xf5, 0xe7, 0xd7, 0x49, 0x3d, 0x96, 0x0c, - 0xc7, 0x9c, 0x5e, 0x0a, 0x2d, 0x76, 0x53, 0xa0, 0xca, 0x33, 0x40, 0x93, 0x1b, 0xa3, 0x12, 0x2c, - 0x72, 0xbb, 0x8b, 0x4b, 0x32, 0xf9, 0x92, 0x1b, 0xeb, 0xd2, 0xf6, 0x63, 0x9c, 0x18, 0x4b, 0xfc, - 0x3c, 0x59, 0xf8, 0x34, 0x53, 0xf9, 0x12, 0x36, 0x26, 0x36, 0x99, 0x47, 0xc0, 0x6e, 0x0c, 0xdb, - 0xd2, 0x75, 0x95, 0xfe, 0xa7, 0xcc, 0x66, 0xf8, 0x9d, 0xbc, 0xe6, 0x23, 0x58, 0x8a, 0x38, 0xb3, - 0xd8, 0xa3, 0x70, 0xb0, 0x39, 0x7e, 0xf9, 0x52, 0xb2, 0xa4, 0xd9, 0xfd, 0xf3, 0x02, 0x54, 0x9f, - 0x63, 0x76, 0xda, 0x34, 0xda, 0x34, 0x0e, 0x2e, 0x0e, 0x63, 0x76, 0x8e, 0x03, 0xe6, 0x39, 0x22, - 0x28, 0x93, 0xed, 0x6b, 0x50, 0x88, 0xbc, 0xd0, 0x72, 0x6c, 0xdf, 0x1f, 0xde, 0xfb, 0x9a, 0x96, - 0x79, 0x6b, 0xe4, 0x23, 0x2f, 0xac, 0xdb, 0xbe, 0xcf, 0x35, 0x48, 0x96, 0x2e, 0xda, 0x82, 0x6c, - 0x97, 0x92, 0xbe, 0x3c, 0xe4, 0xd1, 0x82, 0x96, 0x31, 0xc5, 0x3f, 0xba, 0x07, 0x79, 0xfe, 0xb5, - 0xce, 0x49, 0xc4, 0xb4, 0x95, 0x01, 0x32, 0xc7, 0x81, 0x2f, 0x48, 0xc4, 0x10, 0x82, 0x05, 0x46, - 0xa4, 0xcb, 0x09, 0xcc, 0x02, 0x23, 0x68, 0x07, 0x56, 0x18, 0x91, 0x2c, 0x4b, 0x03, 0xc4, 0x32, - 0x23, 0x82, 0xe1, 0x01, 0x14, 0x22, 0xea, 0x58, 0xb6, 0xeb, 0xf2, 0x93, 0x89, 0x48, 0x94, 0x04, - 0x10, 0x51, 0xe7, 0x50, 0x42, 0x51, 0x15, 0xb2, 0x5c, 0x75, 0x2d, 0x27, 0xec, 0x51, 0x14, 0x8e, - 0x72, 0xda, 0x34, 0xb8, 0xb2, 0xa6, 0xc0, 0xec, 0xfe, 0x33, 0x0b, 0xf7, 0xaf, 0xb1, 0x82, 0x0a, - 0xaa, 0x67, 0x90, 0x8b, 0x23, 0x4c, 0x03, 0xbb, 0x8f, 0xd5, 0x1d, 0x7c, 0xf0, 0xa3, 0x91, 0xf9, - 0x87, 0x71, 0xf7, 0x73, 0x8a, 0x5d, 0xdb, 0x61, 0xd8, 0xad, 0xee, 0x7d, 0xf7, 0x5d, 0xb5, 0x76, - 0xea, 0xfd, 0x09, 0x57, 0xbf, 0xff, 0xbe, 0x7a, 0x76, 0xc5, 0x70, 0xf4, 0xf8, 0xa9, 0x39, 0xe0, - 0xe2, 0x12, 0x42, 0x3b, 0x8a, 0x5e, 0x13, 0xea, 0x2a, 0xe3, 0xdc, 0x52, 0x42, 0xc2, 0x85, 0x10, - 0x64, 0x5d, 0x4a, 0x42, 0x61, 0xa3, 0x9c, 0x29, 0xd6, 0x68, 0x1f, 0x8a, 0xfc, 0x7a, 0x18, 0x57, - 0x9d, 0xdf, 0x8f, 0xb4, 0xc2, 0xea, 0x5b, 0x03, 0x22, 0x2f, 0x14, 0x07, 0x6a, 0x36, 0xcc, 0xe1, - 0xda, 0x1d, 0x0b, 0xe3, 0xa5, 0xeb, 0xc3, 0xf8, 0x09, 0xac, 0x86, 0x94, 0x5c, 0x7a, 0x2e, 0xa6, - 0x96, 0xc8, 0x29, 0xcb, 0x63, 0x6e, 0x65, 0x28, 0xac, 0x88, 0xb8, 0x62, 0x98, 0xfa, 0x43, 0x5f, - 0x02, 0x60, 0x4a, 0x09, 0xb5, 0x1c, 0xe2, 0x62, 0x71, 0xe3, 0x6b, 0x07, 0xd5, 0xc4, 0xfe, 0x53, - 0x4c, 0xad, 0x73, 0x62, 0x33, 0x2f, 0x78, 0xea, 0xc4, 0xc5, 0xe8, 0xf7, 0xe3, 0xc1, 0x9e, 0x13, - 0xc1, 0xfe, 0x69, 0x12, 0xec, 0xd7, 0xdf, 0xd8, 0x8d, 0x71, 0xff, 0x3f, 0x47, 0xed, 0x8f, 0x4b, - 0x70, 0x4f, 0xe7, 0xbf, 0x36, 0xc3, 0xa7, 0x4d, 0xa3, 0xe1, 0x45, 0xa1, 0xcd, 0x9c, 0x73, 0x33, - 0xf6, 0x71, 0x34, 0x23, 0x7a, 0x72, 0x37, 0x45, 0x4f, 0x1d, 0x10, 0xa7, 0x0f, 0x6d, 0xca, 0x3c, - 0xc7, 0x0b, 0xed, 0x80, 0x0d, 0x83, 0x7e, 0x93, 0xb3, 0x95, 0x22, 0x2f, 0x34, 0x86, 0xd8, 0x66, - 0xc3, 0x1c, 0x87, 0xb8, 0x13, 0x3e, 0x01, 0x37, 0xf9, 0xc4, 0x63, 0x58, 0xe3, 0x1a, 0xf2, 0x6c, - 0x1d, 0xc4, 0xfd, 0x33, 0x4c, 0x53, 0xd1, 0xbb, 0xaa, 0x30, 0x27, 0x02, 0x81, 0x1e, 0x42, 0x31, - 0x21, 0x15, 0x61, 0x59, 0x18, 0x10, 0x16, 0x14, 0x5c, 0xc4, 0xe6, 0x23, 0x10, 0x7c, 0xd8, 0x4d, - 0x04, 0x0e, 0xe3, 0xba, 0x28, 0x11, 0x4a, 0xde, 0xad, 0x82, 0xb8, 0x04, 0x8b, 0xa1, 0x17, 0x48, - 0x67, 0x35, 0xf9, 0x92, 0xbf, 0x51, 0x01, 0xb1, 0x38, 0x70, 0x59, 0x04, 0xc3, 0x52, 0x40, 0x0c, - 0x2f, 0xe0, 0xd2, 0xd4, 0xb6, 0x63, 0x69, 0x06, 0x24, 0x58, 0xe8, 0xf6, 0xd7, 0x0c, 0x94, 0xf0, - 0x1b, 0x46, 0x6d, 0xcb, 0x66, 0x8c, 0x7a, 0x67, 0x31, 0xc3, 0x91, 0x96, 0x17, 0xbe, 0xf5, 0x4b, - 0xe1, 0x5b, 0x37, 0x5c, 0x6a, 0x4d, 0xe7, 0xcc, 0x87, 0x03, 0x5e, 0xe1, 0x39, 0xb7, 0x0c, 0xe6, - 0x75, 0x3c, 0xca, 0x3b, 0xc8, 0x4f, 0xc5, 0x59, 0xf9, 0xa9, 0x72, 0x04, 0xe5, 0x69, 0x1b, 0xce, - 0xe5, 0xaa, 0xff, 0x59, 0x87, 0xea, 0xec, 0x53, 0xa9, 0x14, 0xb7, 0x03, 0x79, 0x5e, 0xe0, 0x59, - 0xc3, 0x1c, 0x67, 0xe6, 0x38, 0xe0, 0x84, 0x67, 0xaf, 0x8f, 0xa1, 0x3c, 0xea, 0x94, 0x3c, 0xe2, - 0x58, 0x52, 0x98, 0xdc, 0x09, 0xd3, 0x0e, 0x28, 0x51, 0xa8, 0x05, 0xa5, 0x34, 0x8b, 0x10, 0xbb, - 0x32, 0x47, 0xe2, 0x5b, 0x4f, 0x71, 0x0b, 0x1d, 0x7e, 0x35, 0xaa, 0x43, 0x1f, 0x33, 0xdb, 0xb5, - 0x99, 0xad, 0xa2, 0xea, 0x76, 0x42, 0xd3, 0x9a, 0xbe, 0x52, 0x02, 0xd0, 0xdf, 0x33, 0xb0, 0x95, - 0x96, 0x9c, 0xf2, 0x8b, 0x82, 0xf0, 0x8b, 0x67, 0x37, 0xf8, 0x85, 0x4a, 0x39, 0xa9, 0x30, 0x7c, - 0x37, 0xf7, 0xd8, 0x0c, 0xa7, 0x49, 0xe0, 0x6e, 0x4d, 0xa5, 0xef, 0x09, 0x97, 0x17, 0xf9, 0x5f, - 0xba, 0xb5, 0x02, 0x73, 0xdf, 0x7f, 0x92, 0x14, 0x73, 0xd9, 0x39, 0xcc, 0x31, 0x51, 0xf2, 0x2d, - 0xa5, 0x4b, 0xbe, 0x1a, 0x2c, 0x53, 0x1c, 0xc5, 0x3e, 0x13, 0x51, 0xb6, 0x76, 0xb0, 0x95, 0xb8, - 0xe7, 0xe0, 0xf8, 0x02, 0x6b, 0x2a, 0xaa, 0x89, 0xc4, 0x93, 0xbf, 0x29, 0xf1, 0xe8, 0x50, 0xe6, - 0x0c, 0xae, 0x12, 0x67, 0xd1, 0xd8, 0xc7, 0xc3, 0x8c, 0x55, 0x7e, 0x6b, 0x6c, 0x44, 0x5e, 0x98, - 0xb6, 0x75, 0xb3, 0x61, 0x4e, 0x80, 0xc6, 0xdf, 0xb4, 0xe2, 0xf5, 0x6f, 0x1a, 0x85, 0x95, 0x73, - 0x6c, 0xbb, 0x98, 0x46, 0xda, 0xaa, 0xb8, 0xdc, 0x83, 0xdb, 0x5d, 0xee, 0x0b, 0xc9, 0x34, 0xcf, - 0x75, 0x26, 0x1b, 0x21, 0x0a, 0x9b, 0x6a, 0x69, 0x31, 0x92, 0x76, 0xaf, 0x35, 0xa1, 0xc1, 0xd3, - 0xb9, 0x34, 0x68, 0x93, 0x31, 0xe7, 0x32, 0xef, 0x9c, 0x4f, 0x62, 0xf8, 0x9e, 0xc3, 0x8d, 0xf8, - 0xb6, 0xc9, 0xa9, 0xd1, 0x3c, 0x7b, 0x0e, 0x05, 0xb6, 0x49, 0xda, 0x02, 0xe6, 0x1d, 0x7b, 0x12, - 0x83, 0x8e, 0x60, 0xdd, 0x0b, 0x1c, 0x3f, 0x76, 0xf1, 0x60, 0xb7, 0x3b, 0xc2, 0x73, 0xb6, 0x07, - 0x15, 0xc3, 0x69, 0xd3, 0x90, 0xd4, 0x2d, 0xd9, 0x39, 0x9a, 0x6b, 0x8a, 0x23, 0x91, 0xf1, 0x14, - 0x4a, 0x38, 0xb0, 0xcf, 0x78, 0x12, 0x57, 0xef, 0x75, 0xa4, 0xad, 0x57, 0x17, 0xf7, 0xd6, 0x52, - 0xbd, 0xdb, 0x69, 0xd3, 0x50, 0x6f, 0xb7, 0xb9, 0xae, 0x88, 0xd5, 0xbf, 0xd0, 0x81, 0x7a, 0x81, - 0x68, 0x3d, 0x98, 0xd7, 0xc7, 0x24, 0x66, 0x5a, 0x49, 0x24, 0xd7, 0xed, 0x9a, 0x6c, 0x40, 0x6b, - 0x49, 0x03, 0x5a, 0x6b, 0xa8, 0x06, 0xd4, 0x5c, 0x53, 0x1c, 0x6d, 0xc9, 0x80, 0x74, 0xd8, 0x10, - 0x6d, 0x1e, 0x7f, 0xb6, 0x93, 0x2e, 0x55, 0xdb, 0xb8, 0x49, 0xca, 0x3a, 0xef, 0x02, 0x6d, 0xdf, - 0x4f, 0x00, 0xe8, 0x1e, 0x14, 0x44, 0x46, 0x0d, 0x29, 0x8e, 0x30, 0xd3, 0xca, 0x22, 0xb6, 0x80, - 0x83, 0x0c, 0x01, 0x41, 0x9f, 0x29, 0x02, 0x87, 0x04, 0x5d, 0xaf, 0xa7, 0x6d, 0x8a, 0x1d, 0x2a, - 0x83, 0x63, 0x9a, 0x84, 0xf4, 0xeb, 0x02, 0x95, 0x6c, 0x21, 0x98, 0x25, 0x08, 0x1d, 0x43, 0xa9, - 0x8f, 0x5d, 0xcf, 0xb6, 0x70, 0xe0, 0xd0, 0x2b, 0x61, 0x4d, 0x6d, 0x4b, 0x58, 0x7b, 0x27, 0x6d, - 0xa8, 0x57, 0x9c, 0x46, 0x1f, 0x90, 0x98, 0xeb, 0xfd, 0x51, 0x00, 0xfa, 0xdd, 0x78, 0x9d, 0xf5, - 0x13, 0xe1, 0x20, 0x9f, 0xdc, 0xce, 0x41, 0x6e, 0x2a, 0xb3, 0x5e, 0x40, 0x65, 0x76, 0x5a, 0x9c, - 0xab, 0xcd, 0x7a, 0x02, 0xc5, 0xb4, 0x07, 0xce, 0xc5, 0x7b, 0x0c, 0xda, 0xac, 0xe8, 0x99, 0x57, - 0xce, 0xac, 0x88, 0xf8, 0xff, 0xb6, 0x8c, 0x3f, 0x64, 0x92, 0x9e, 0x51, 0x55, 0x0b, 0x23, 0x3d, - 0xe3, 0xc7, 0x90, 0x97, 0x25, 0xe7, 0xb4, 0x39, 0x80, 0x62, 0x10, 0x25, 0x7b, 0xce, 0x51, 0x2b, - 0xf4, 0x05, 0xac, 0x32, 0x6a, 0x07, 0x51, 0x37, 0x29, 0xf5, 0x65, 0x07, 0xa9, 0xa5, 0xd9, 0xda, - 0x8a, 0x40, 0x56, 0xfb, 0x2c, 0xf5, 0xb7, 0xfb, 0x0a, 0x34, 0x13, 0x3b, 0x84, 0xba, 0x5c, 0x74, - 0x9d, 0x04, 0x0c, 0xbf, 0x61, 0xef, 0xae, 0xcd, 0xee, 0xbf, 0x16, 0x60, 0x45, 0x61, 0xd0, 0x63, - 0x00, 0xff, 0x62, 0x50, 0x42, 0x0f, 0x87, 0x40, 0xfe, 0x85, 0xaa, 0x9f, 0x93, 0x95, 0xcb, 0x4b, - 0x98, 0x88, 0xc4, 0xd4, 0xc1, 0x96, 0x17, 0x2a, 0x9b, 0xe5, 0x24, 0xa0, 0x19, 0xa2, 0xc7, 0xb0, - 0x92, 0x94, 0x99, 0x8b, 0x42, 0x89, 0xf5, 0xb4, 0x12, 0x1d, 0xea, 0x99, 0x09, 0x1e, 0x3d, 0x50, - 0x4d, 0x6c, 0x76, 0x3a, 0x5d, 0xd2, 0xd1, 0xf2, 0x86, 0x75, 0x69, 0x3a, 0x09, 0xef, 0x5e, 0xef, - 0xc3, 0xe2, 0xa5, 0x67, 0x6b, 0xcb, 0x22, 0x9c, 0x26, 0x28, 0x38, 0x0e, 0xfd, 0x6c, 0xb4, 0x3f, - 0x58, 0x19, 0x3c, 0x5d, 0x53, 0xbb, 0x83, 0xd1, 0x77, 0x2e, 0x77, 0xed, 0x3b, 0xf7, 0xe1, 0x1f, - 0x60, 0x63, 0xe2, 0xa5, 0x46, 0x1a, 0x94, 0x5f, 0xea, 0xcf, 0x0f, 0xeb, 0xbf, 0xb1, 0x0e, 0xeb, - 0x75, 0xdd, 0x68, 0x5b, 0x2d, 0xd3, 0x32, 0x9a, 0x27, 0xa5, 0xf7, 0x10, 0xc0, 0xb2, 0x04, 0x95, - 0x32, 0x68, 0x1d, 0x0a, 0xa6, 0xfe, 0x4d, 0x47, 0x3f, 0x6d, 0x0b, 0xe4, 0x02, 0x47, 0x9a, 0xfa, - 0x57, 0x7a, 0xbd, 0x5d, 0x5a, 0x44, 0x39, 0xc8, 0x36, 0xcc, 0x96, 0x51, 0xca, 0x7e, 0xf8, 0xb7, - 0x0c, 0xec, 0x5c, 0xd3, 0xcb, 0xa1, 0xf7, 0x61, 0xfb, 0xb4, 0x69, 0x58, 0x6d, 0xb3, 0x73, 0xf2, - 0xb5, 0x75, 0xd8, 0x69, 0xbf, 0xb0, 0x74, 0xd3, 0x6c, 0x99, 0xd6, 0x49, 0xeb, 0x44, 0x2f, 0xbd, - 0x87, 0x1e, 0xc1, 0x83, 0xa9, 0xe8, 0x6f, 0x3a, 0xad, 0xf6, 0xa1, 0xa5, 0xff, 0xba, 0xae, 0xeb, - 0x0d, 0xbd, 0x51, 0xca, 0xcc, 0x24, 0x3c, 0x69, 0x29, 0xd8, 0x71, 0xab, 0x73, 0xd2, 0x28, 0x2d, - 0x1c, 0xfc, 0xb0, 0x02, 0xcb, 0xcd, 0x96, 0x70, 0xe7, 0xcf, 0xa0, 0x58, 0xa7, 0xd8, 0x66, 0x58, - 0x8e, 0xf9, 0xd0, 0xb4, 0xb9, 0x5f, 0x65, 0x6b, 0x22, 0x97, 0xeb, 0xfd, 0x90, 0x5d, 0x71, 0x66, - 0x19, 0x5b, 0xef, 0xc2, 0xfc, 0x09, 0xe4, 0x07, 0x63, 0x4c, 0xb4, 0x99, 0x34, 0xab, 0x23, 0x63, - 0xcd, 0xca, 0x34, 0x81, 0x48, 0x07, 0x78, 0xe9, 0x45, 0x09, 0xe7, 0xf0, 0x15, 0x18, 0x02, 0x13, - 0xf6, 0x9d, 0xa9, 0x38, 0x55, 0xc6, 0x1f, 0xc1, 0xea, 0xc8, 0x1c, 0x14, 0x6d, 0x0b, 0x1d, 0xa6, - 0xcd, 0x46, 0x67, 0x9e, 0xe1, 0x0b, 0x58, 0x95, 0xd6, 0x53, 0x63, 0x23, 0x34, 0x75, 0x8a, 0x38, - 0x93, 0xbd, 0x09, 0x6b, 0xa3, 0xc3, 0x38, 0x54, 0x99, 0x3a, 0xa1, 0x4b, 0x4e, 0x33, 0x7b, 0x7a, - 0x87, 0x5e, 0x02, 0x9a, 0x1c, 0x8d, 0xa1, 0xbb, 0xa9, 0x23, 0x4d, 0x99, 0x99, 0xcd, 0x54, 0xec, - 0x5b, 0xd8, 0x9e, 0x39, 0x38, 0x40, 0x0f, 0x6f, 0x1a, 0x2c, 0x48, 0xd9, 0x3f, 0xbd, 0xdd, 0xfc, - 0x01, 0xf5, 0x40, 0x9b, 0xf5, 0x78, 0xa2, 0x0f, 0x6e, 0xd3, 0x67, 0x56, 0x1e, 0xde, 0xea, 0x05, - 0x1e, 0x9a, 0x28, 0xfd, 0x12, 0x8c, 0x98, 0x68, 0xca, 0x13, 0x31, 0xd3, 0x44, 0x5f, 0xc1, 0xc6, - 0x44, 0x22, 0x47, 0xef, 0x0b, 0x61, 0xb3, 0x12, 0xfc, 0x2c, 0x59, 0x47, 0xf7, 0x7f, 0x7b, 0xaf, - 0xe7, 0xb1, 0xf3, 0xf8, 0xac, 0xe6, 0x90, 0xfe, 0xbe, 0xf2, 0x20, 0x39, 0xff, 0x77, 0x88, 0xbf, - 0x4f, 0x43, 0xe7, 0x6c, 0x59, 0xfc, 0xfd, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x91, - 0x57, 0xf7, 0xb7, 0x18, 0x00, 0x00, + 0x4c, 0x2e, 0xed, 0xa1, 0x33, 0x9d, 0x49, 0xff, 0x41, 0xef, 0x39, 0xf7, 0xd0, 0x83, 0x4f, 0x3d, + 0xf7, 0x57, 0x75, 0xf6, 0x03, 0x24, 0xf8, 0x25, 0x89, 0xee, 0x4c, 0x4f, 0x5c, 0xbc, 0xef, 0x7d, + 0xfb, 0xde, 0xdb, 0x7d, 0x8f, 0x50, 0xa2, 0xa1, 0xb3, 0xe7, 0x91, 0x7a, 0x48, 0x09, 0x23, 0x68, + 0x91, 0x86, 0x4e, 0xb5, 0xe2, 0x7b, 0x17, 0xf8, 0xdc, 0x63, 0x16, 0xee, 0x51, 0x1c, 0x45, 0x12, + 0x55, 0xdd, 0x48, 0xa0, 0x5e, 0x90, 0x06, 0xaf, 0x27, 0xe0, 0xc8, 0x0b, 0x15, 0x08, 0x25, 0x20, + 0x4a, 0x48, 0x5f, 0xc1, 0x2a, 0x3e, 0xe9, 0xf5, 0x30, 0xdd, 0x23, 0x21, 0xf3, 0x48, 0x90, 0x30, + 0x6f, 0xf7, 0x08, 0xe9, 0xf9, 0x78, 0x4f, 0x7c, 0x9d, 0xc6, 0xdd, 0x3d, 0xdc, 0x0f, 0xd9, 0xa5, + 0x42, 0xde, 0x1e, 0x47, 0xba, 0x31, 0xb5, 0x39, 0xb7, 0xc4, 0xef, 0x7c, 0x09, 0xe5, 0x67, 0x98, + 0xe9, 0xc2, 0x18, 0x13, 0xff, 0x31, 0xc6, 0x11, 0x43, 0xbb, 0x50, 0x90, 0x46, 0x5b, 0x9e, 0xab, + 0x65, 0x6a, 0x99, 0xdd, 0xc2, 0x61, 0xf1, 0xad, 0x91, 0x97, 0xb0, 0x56, 0xd3, 0x4c, 0x56, 0xee, + 0xce, 0x5f, 0x33, 0x50, 0xe9, 0x84, 0xae, 0xcd, 0xf0, 0x2b, 0xcc, 0xa8, 0xe7, 0x0c, 0x44, 0x3c, + 0x80, 0xac, 0x17, 0x74, 0x89, 0xe0, 0x2e, 0xee, 0xdf, 0xaa, 0xab, 0xcd, 0xd4, 0xa5, 0xa2, 0x56, + 0xd0, 0x25, 0xa6, 0x20, 0x40, 0x3b, 0xb0, 0x62, 0x5f, 0xf4, 0x2c, 0x27, 0x8c, 0xad, 0x38, 0xb2, + 0x7b, 0x58, 0x5b, 0xac, 0x65, 0x76, 0x17, 0xcc, 0xa2, 0x7d, 0xd1, 0x6b, 0x84, 0x71, 0x87, 0x83, + 0x38, 0x4d, 0xdf, 0x7e, 0x93, 0xa2, 0xc9, 0x4a, 0x9a, 0xbe, 0xfd, 0x26, 0xa1, 0xd9, 0x71, 0x60, + 0xe3, 0x19, 0x66, 0xad, 0x60, 0x28, 0x5f, 0x59, 0xf2, 0x31, 0x80, 0xf2, 0xf5, 0x70, 0x37, 0xa5, + 0xb7, 0x46, 0x41, 0x01, 0x5b, 0x4d, 0x73, 0xb0, 0x74, 0xd1, 0x07, 0x00, 0x11, 0xa3, 0xd8, 0xee, + 0x5b, 0xe7, 0xf8, 0x52, 0x5b, 0xe0, 0xc4, 0x66, 0x41, 0x42, 0xbe, 0xc1, 0x97, 0x3b, 0xff, 0x59, + 0x84, 0xcd, 0x71, 0x2d, 0x51, 0x48, 0x82, 0x08, 0xa3, 0xdd, 0x91, 0x0d, 0x57, 0x06, 0x1b, 0x4e, + 0xd3, 0xca, 0x1d, 0x57, 0x20, 0xc7, 0xc8, 0x39, 0x0e, 0x94, 0x78, 0xf9, 0x81, 0x36, 0x60, 0xe9, + 0x75, 0x64, 0xc5, 0xd4, 0x17, 0x0e, 0x28, 0x98, 0xb9, 0xd7, 0x51, 0x87, 0xfa, 0xdc, 0xfa, 0x90, + 0x92, 0xef, 0xb0, 0xc3, 0xb8, 0xf5, 0x4b, 0x03, 0xeb, 0x15, 0x90, 0x5b, 0x9f, 0x2c, 0x5d, 0xd4, + 0x81, 0x55, 0x1e, 0x20, 0x5e, 0xd0, 0xb3, 0xba, 0x1e, 0xf6, 0xdd, 0x48, 0xcb, 0xd6, 0x16, 0x77, + 0x8b, 0xfb, 0xf5, 0x3a, 0x0d, 0x9d, 0xfa, 0x74, 0xc3, 0xeb, 0x2f, 0x25, 0xc7, 0x53, 0xc1, 0xa0, + 0x07, 0x8c, 0x5e, 0x9a, 0x2b, 0x7e, 0x1a, 0x86, 0x4c, 0x58, 0xe9, 0x62, 0x9b, 0xc5, 0x14, 0x5b, + 0x5d, 0xdf, 0xee, 0x45, 0x5a, 0x4e, 0x48, 0xfd, 0xe4, 0x2a, 0xa9, 0x4f, 0x25, 0xc3, 0x53, 0x4e, + 0x2f, 0x85, 0x96, 0xba, 0x29, 0x50, 0xf5, 0x09, 0xa0, 0x49, 0xc5, 0xa8, 0x0c, 0x8b, 0xdc, 0xef, + 0xe2, 0x90, 0x4c, 0xbe, 0xe4, 0xce, 0xba, 0xb0, 0xfd, 0x18, 0x27, 0xce, 0x12, 0x1f, 0x8f, 0x16, + 0x3e, 0xcf, 0x54, 0xbf, 0x86, 0xf5, 0x09, 0x25, 0xf3, 0x08, 0xd8, 0x89, 0x61, 0x4b, 0x86, 0xae, + 0xb2, 0xff, 0x84, 0xd9, 0x0c, 0xbf, 0x53, 0xd4, 0x7c, 0x0c, 0xb9, 0x88, 0x33, 0x0b, 0x1d, 0xc5, + 0xfd, 0x8d, 0xf1, 0xc3, 0x97, 0x92, 0x25, 0xcd, 0xce, 0x5f, 0x16, 0xa0, 0xf6, 0x0c, 0xb3, 0x93, + 0x96, 0xd1, 0xa6, 0x71, 0x70, 0x7e, 0x10, 0xb3, 0x33, 0x1c, 0x30, 0xcf, 0x11, 0x49, 0x99, 0xa8, + 0xaf, 0x43, 0x31, 0xf2, 0x42, 0xcb, 0xb1, 0x7d, 0x7f, 0x78, 0xee, 0xab, 0x5a, 0xe6, 0xad, 0x51, + 0x88, 0xbc, 0xb0, 0x61, 0xfb, 0x3e, 0xb7, 0x20, 0x59, 0xba, 0x68, 0x13, 0xb2, 0x5d, 0x4a, 0xfa, + 0x72, 0x93, 0x87, 0x0b, 0x5a, 0xc6, 0x14, 0xdf, 0xe8, 0x0e, 0x14, 0xf8, 0xaf, 0x75, 0x46, 0x22, + 0xa6, 0x2d, 0x0f, 0x90, 0x79, 0x0e, 0x7c, 0x4e, 0x22, 0x86, 0x10, 0x2c, 0x30, 0x22, 0x43, 0x4e, + 0x60, 0x16, 0x18, 0x41, 0xdb, 0xb0, 0xcc, 0x88, 0x64, 0xc9, 0x0d, 0x10, 0x4b, 0x8c, 0x08, 0x86, + 0x7b, 0x50, 0x8c, 0xa8, 0x63, 0xd9, 0xae, 0xcb, 0x77, 0x26, 0x32, 0x51, 0x12, 0x40, 0x44, 0x9d, + 0x03, 0x09, 0x45, 0x35, 0xc8, 0x72, 0xd3, 0xb5, 0xbc, 0xf0, 0x47, 0x49, 0x04, 0xca, 0x49, 0xcb, + 0xe0, 0xc6, 0x9a, 0x02, 0xb3, 0xf3, 0xaf, 0x2c, 0xdc, 0xbd, 0xc2, 0x0b, 0x2a, 0xa9, 0x9e, 0x40, + 0x3e, 0x8e, 0x30, 0x0d, 0xec, 0x3e, 0x56, 0x67, 0xf0, 0xe1, 0x4f, 0x46, 0xe6, 0x9f, 0xc6, 0xed, + 0x2f, 0x29, 0x76, 0x6d, 0x87, 0x61, 0xb7, 0xb6, 0xfb, 0xfd, 0xf7, 0xb5, 0xfa, 0x89, 0xf7, 0x27, + 0x5c, 0xfb, 0xe1, 0x87, 0xda, 0xe9, 0x25, 0xc3, 0xd1, 0xc3, 0xc7, 0xe6, 0x80, 0x8b, 0x4b, 0x08, + 0xed, 0x28, 0x7a, 0x4d, 0xa8, 0xab, 0x9c, 0x73, 0x43, 0x09, 0x09, 0x17, 0x42, 0x90, 0x75, 0x29, + 0x09, 0x85, 0x8f, 0xf2, 0xa6, 0x58, 0xa3, 0x3d, 0x28, 0xf1, 0xe3, 0x61, 0xdc, 0x74, 0x7e, 0x3e, + 0xd2, 0x0b, 0x2b, 0x6f, 0x0d, 0x88, 0xbc, 0x50, 0x6c, 0xa8, 0xd5, 0x34, 0x87, 0x6b, 0x77, 0x2c, + 0x8d, 0x73, 0x57, 0xa7, 0xf1, 0x23, 0x58, 0x09, 0x29, 0xb9, 0xf0, 0x5c, 0x4c, 0x2d, 0x51, 0x53, + 0x96, 0xc6, 0xc2, 0xca, 0x50, 0x58, 0x91, 0x71, 0xa5, 0x30, 0xf5, 0x85, 0xbe, 0x06, 0xc0, 0x94, + 0x12, 0x6a, 0x39, 0xc4, 0xc5, 0xe2, 0xc4, 0x57, 0xf7, 0x6b, 0x89, 0xff, 0xa7, 0xb8, 0x5a, 0xe7, + 0xc4, 0x66, 0x41, 0xf0, 0x34, 0x88, 0x8b, 0xd1, 0xef, 0xc7, 0x93, 0x3d, 0x2f, 0x92, 0xfd, 0xf3, + 0x24, 0xd9, 0xaf, 0x3e, 0xb1, 0x6b, 0xf3, 0xfe, 0x7f, 0xce, 0xda, 0x9f, 0x72, 0x70, 0x47, 0xe7, + 0x9f, 0x36, 0xc3, 0x27, 0x2d, 0xa3, 0xe9, 0x45, 0xa1, 0xcd, 0x9c, 0x33, 0x33, 0xf6, 0x71, 0x34, + 0x23, 0x7b, 0xf2, 0xd7, 0x65, 0x4f, 0x03, 0x10, 0xa7, 0x0f, 0x6d, 0xca, 0x3c, 0xc7, 0x0b, 0xed, + 0x80, 0x0d, 0x93, 0x7e, 0x83, 0xb3, 0x95, 0x23, 0x2f, 0x34, 0x86, 0xd8, 0x56, 0xd3, 0x1c, 0x87, + 0xb8, 0x13, 0x31, 0x01, 0xd7, 0xc5, 0xc4, 0x43, 0x58, 0xe5, 0x16, 0xf2, 0x6a, 0x1d, 0xc4, 0xfd, + 0x53, 0x4c, 0x53, 0xd9, 0xbb, 0xa2, 0x30, 0x47, 0x02, 0x81, 0xee, 0x43, 0x29, 0x21, 0x15, 0x69, + 0x59, 0x1c, 0x10, 0x16, 0x15, 0x5c, 0xe4, 0xe6, 0x03, 0x10, 0x7c, 0xd8, 0x4d, 0x04, 0x0e, 0xf3, + 0xba, 0x24, 0x11, 0x4a, 0xde, 0x8d, 0x92, 0xb8, 0x0c, 0x8b, 0xa1, 0x17, 0xc8, 0x60, 0x35, 0xf9, + 0x92, 0xdf, 0x51, 0x01, 0xb1, 0x38, 0x70, 0x49, 0x24, 0x43, 0x2e, 0x20, 0x86, 0x17, 0x70, 0x69, + 0x4a, 0xed, 0x58, 0x99, 0x01, 0x09, 0x16, 0xb6, 0xfd, 0x2d, 0x03, 0x65, 0xfc, 0x86, 0x51, 0xdb, + 0xb2, 0x19, 0xa3, 0xde, 0x69, 0xcc, 0x70, 0xa4, 0x15, 0x44, 0x6c, 0xfd, 0x52, 0xc4, 0xd6, 0x35, + 0x87, 0x5a, 0xd7, 0x39, 0xf3, 0xc1, 0x80, 0x57, 0x44, 0xce, 0x0d, 0x93, 0x79, 0x0d, 0x8f, 0xf2, + 0x0e, 0xea, 0x53, 0x69, 0x56, 0x7d, 0xaa, 0x1e, 0x42, 0x65, 0x9a, 0xc2, 0xb9, 0x42, 0xf5, 0xcf, + 0x65, 0xa8, 0xcd, 0xde, 0x95, 0x2a, 0x71, 0xdb, 0x50, 0xe0, 0x0f, 0x3c, 0x6b, 0x58, 0xe3, 0xcc, + 0x3c, 0x07, 0x1c, 0xf1, 0xea, 0xf5, 0x29, 0x54, 0x46, 0x83, 0x92, 0x67, 0x1c, 0x4b, 0x1e, 0x26, + 0xb7, 0xc2, 0x74, 0x00, 0x4a, 0x14, 0x3a, 0x86, 0x72, 0x9a, 0x45, 0x88, 0x5d, 0x9e, 0xa3, 0xf0, + 0xad, 0xa5, 0xb8, 0x85, 0x0d, 0xbf, 0x1a, 0xb5, 0xa1, 0x8f, 0x99, 0xed, 0xda, 0xcc, 0x56, 0x59, + 0x75, 0x33, 0xa1, 0x69, 0x4b, 0x5f, 0x29, 0x01, 0xe8, 0x1f, 0x19, 0xd8, 0x4c, 0x4b, 0x4e, 0xc5, + 0x45, 0x51, 0xc4, 0xc5, 0x93, 0x6b, 0xe2, 0x42, 0x95, 0x9c, 0x54, 0x1a, 0xbe, 0x5b, 0x78, 0x6c, + 0x84, 0xd3, 0x24, 0xf0, 0xb0, 0xa6, 0x32, 0xf6, 0x44, 0xc8, 0x8b, 0xfa, 0x2f, 0xc3, 0x5a, 0x81, + 0x79, 0xec, 0x3f, 0x4a, 0x1e, 0x73, 0xd9, 0x39, 0xdc, 0x31, 0xf1, 0xe4, 0xcb, 0xa5, 0x9f, 0x7c, + 0x75, 0x58, 0xa2, 0x38, 0x8a, 0x7d, 0x26, 0xb2, 0x6c, 0x75, 0x7f, 0x33, 0x09, 0xcf, 0xc1, 0xf6, + 0x05, 0xd6, 0x54, 0x54, 0x13, 0x85, 0xa7, 0x70, 0x5d, 0xe1, 0xd1, 0xa1, 0xc2, 0x19, 0x5c, 0x25, + 0xce, 0xa2, 0xb1, 0x8f, 0x87, 0x15, 0xab, 0xf2, 0xd6, 0x58, 0x8f, 0xbc, 0x30, 0xed, 0xeb, 0x56, + 0xd3, 0x9c, 0x00, 0x8d, 0xdf, 0x69, 0xa5, 0xab, 0xef, 0x34, 0x0a, 0xcb, 0x67, 0xd8, 0x76, 0x31, + 0x8d, 0xb4, 0x15, 0x71, 0xb8, 0xfb, 0x37, 0x3b, 0xdc, 0xe7, 0x92, 0x69, 0x9e, 0xe3, 0x4c, 0x14, + 0x21, 0x0a, 0x1b, 0x6a, 0x69, 0x31, 0x92, 0x0e, 0xaf, 0x55, 0x61, 0xc1, 0xe3, 0xb9, 0x2c, 0x68, + 0x93, 0xb1, 0xe0, 0x32, 0x6f, 0x9d, 0x4d, 0x62, 0xb8, 0xce, 0xa1, 0x22, 0xae, 0x36, 0xd9, 0x35, + 0x9a, 0x47, 0xe7, 0x50, 0x60, 0x9b, 0xa4, 0x3d, 0x60, 0xde, 0xb2, 0x27, 0x31, 0xe8, 0x10, 0xd6, + 0xbc, 0xc0, 0xf1, 0x63, 0x17, 0x0f, 0xb4, 0xdd, 0x12, 0x91, 0xb3, 0x35, 0x78, 0x31, 0x9c, 0xb4, + 0x0c, 0x49, 0x7d, 0x2c, 0x3b, 0x47, 0x73, 0x55, 0x71, 0x24, 0x32, 0x1e, 0x43, 0x19, 0x07, 0xf6, + 0x29, 0x2f, 0xe2, 0xea, 0xbe, 0x8e, 0xb4, 0xb5, 0xda, 0xe2, 0xee, 0x6a, 0xaa, 0x77, 0x3b, 0x69, + 0x19, 0xea, 0xee, 0x36, 0xd7, 0x14, 0xb1, 0xfa, 0x16, 0x36, 0x50, 0x2f, 0x10, 0xad, 0x07, 0xf3, + 0xfa, 0x98, 0xc4, 0x4c, 0x2b, 0x8b, 0xe2, 0xba, 0x55, 0x97, 0x0d, 0x68, 0x3d, 0x69, 0x40, 0xeb, + 0x4d, 0xd5, 0x80, 0x9a, 0xab, 0x8a, 0xa3, 0x2d, 0x19, 0x90, 0x0e, 0xeb, 0xa2, 0xcd, 0xe3, 0xd7, + 0x76, 0xd2, 0xa5, 0x6a, 0xeb, 0xd7, 0x49, 0x59, 0xe3, 0x5d, 0xa0, 0xed, 0xfb, 0x09, 0x00, 0xdd, + 0x81, 0xa2, 0xa8, 0xa8, 0x21, 0xc5, 0x11, 0x66, 0x5a, 0x45, 0xe4, 0x16, 0x70, 0x90, 0x21, 0x20, + 0xe8, 0x0b, 0x45, 0xe0, 0x90, 0xa0, 0xeb, 0xf5, 0xb4, 0x0d, 0xa1, 0xa1, 0x3a, 0xd8, 0xa6, 0x49, + 0x48, 0xbf, 0x21, 0x50, 0x89, 0x0a, 0xc1, 0x2c, 0x41, 0xe8, 0x05, 0x94, 0xfb, 0xd8, 0xf5, 0x6c, + 0x0b, 0x07, 0x0e, 0xbd, 0x14, 0xde, 0xd4, 0x36, 0x85, 0xb7, 0xb7, 0xd3, 0x8e, 0x7a, 0xc5, 0x69, + 0xf4, 0x01, 0x89, 0xa8, 0x1b, 0x6b, 0xfd, 0x51, 0x20, 0xfa, 0x04, 0x72, 0x02, 0xa4, 0x69, 0xc2, + 0x84, 0xf7, 0x27, 0x04, 0x48, 0x9d, 0xa6, 0xa4, 0x42, 0xbf, 0x1b, 0x7f, 0x9a, 0xbd, 0x2f, 0x62, + 0xea, 0xb3, 0x9b, 0xc5, 0xd4, 0x75, 0x2f, 0xb3, 0xe7, 0x50, 0x9d, 0x5d, 0x49, 0xe7, 0xea, 0xcc, + 0x1e, 0x41, 0x29, 0x1d, 0xb4, 0x73, 0xf1, 0x3e, 0x05, 0x6d, 0x56, 0xc2, 0xcd, 0x2b, 0x67, 0x56, + 0x12, 0xfd, 0x7f, 0xbb, 0xcc, 0x1f, 0x33, 0x49, 0x9b, 0xa9, 0x1e, 0x18, 0x23, 0x6d, 0xe6, 0xa7, + 0x50, 0x90, 0xaf, 0xd4, 0x69, 0xa3, 0x03, 0xc5, 0x20, 0x5e, 0xf9, 0x79, 0x47, 0xad, 0xd0, 0x57, + 0xb0, 0xc2, 0xa8, 0x1d, 0x44, 0xdd, 0xa4, 0x3b, 0x90, 0x4d, 0xa7, 0x96, 0x66, 0x6b, 0x2b, 0x02, + 0xd9, 0x20, 0xb0, 0xd4, 0xd7, 0xce, 0x2b, 0xd0, 0x4c, 0xec, 0x10, 0xea, 0x72, 0xd1, 0x0d, 0x12, + 0x30, 0xfc, 0x86, 0xbd, 0xbb, 0x35, 0x3b, 0xff, 0x5e, 0x80, 0x65, 0x85, 0x41, 0x0f, 0x01, 0xfc, + 0xf3, 0xc1, 0xab, 0x7b, 0x38, 0x37, 0xf2, 0xcf, 0xd5, 0x93, 0x3b, 0x59, 0xb9, 0xfc, 0xd5, 0x13, + 0x91, 0x98, 0x3a, 0xd8, 0xf2, 0x42, 0xe5, 0xb3, 0xbc, 0x04, 0xb4, 0x42, 0xf4, 0x10, 0x96, 0x93, + 0x97, 0xe9, 0xa2, 0x30, 0x62, 0x2d, 0x6d, 0x44, 0x87, 0x7a, 0x66, 0x82, 0x47, 0xf7, 0x54, 0xdf, + 0x9b, 0x9d, 0x4e, 0x97, 0x34, 0xc1, 0xbc, 0xc7, 0xcd, 0x4d, 0x27, 0xe1, 0x0d, 0xef, 0x5d, 0x58, + 0xbc, 0xf0, 0x6c, 0x6d, 0x49, 0xa4, 0xd3, 0x04, 0x05, 0xc7, 0xa1, 0x9f, 0x8f, 0xb6, 0x14, 0xcb, + 0x83, 0xdb, 0x6e, 0x6a, 0x43, 0x31, 0x7a, 0x35, 0xe6, 0xaf, 0xbc, 0x1a, 0x3f, 0xfa, 0x03, 0xac, + 0x4f, 0x5c, 0xee, 0x48, 0x83, 0xca, 0x4b, 0xfd, 0xd9, 0x41, 0xe3, 0x37, 0xd6, 0x41, 0xa3, 0xa1, + 0x1b, 0x6d, 0xeb, 0xd8, 0xb4, 0x8c, 0xd6, 0x51, 0xf9, 0x3d, 0x04, 0xb0, 0x24, 0x41, 0xe5, 0x0c, + 0x5a, 0x83, 0xa2, 0xa9, 0x7f, 0xdb, 0xd1, 0x4f, 0xda, 0x02, 0xb9, 0xc0, 0x91, 0xa6, 0xfe, 0x42, + 0x6f, 0xb4, 0xcb, 0x8b, 0x28, 0x0f, 0xd9, 0xa6, 0x79, 0x6c, 0x94, 0xb3, 0x1f, 0xfd, 0x3d, 0x03, + 0xdb, 0x57, 0xb4, 0x7f, 0xe8, 0x03, 0xd8, 0x3a, 0x69, 0x19, 0x56, 0xdb, 0xec, 0x1c, 0x7d, 0x63, + 0x1d, 0x74, 0xda, 0xcf, 0x2d, 0xdd, 0x34, 0x8f, 0x4d, 0xeb, 0xe8, 0xf8, 0x48, 0x2f, 0xbf, 0x87, + 0x1e, 0xc0, 0xbd, 0xa9, 0xe8, 0x6f, 0x3b, 0xc7, 0xed, 0x03, 0x4b, 0xff, 0x75, 0x43, 0xd7, 0x9b, + 0x7a, 0xb3, 0x9c, 0x99, 0x49, 0x78, 0x74, 0xac, 0x60, 0x4f, 0x8f, 0x3b, 0x47, 0xcd, 0xf2, 0xc2, + 0xfe, 0x8f, 0xcb, 0xb0, 0xd4, 0x3a, 0x16, 0xe1, 0xfc, 0x05, 0x94, 0x1a, 0x14, 0xdb, 0x0c, 0xcb, + 0xc9, 0x20, 0x9a, 0x36, 0x2a, 0xac, 0x6e, 0x4e, 0x94, 0x7f, 0xbd, 0x1f, 0xb2, 0x4b, 0xce, 0x2c, + 0x73, 0xeb, 0x5d, 0x98, 0x3f, 0x83, 0xc2, 0x60, 0xf2, 0x89, 0x36, 0x92, 0xfe, 0x76, 0x64, 0x12, + 0x5a, 0x9d, 0x26, 0x10, 0xe9, 0x00, 0x2f, 0xbd, 0x28, 0xe1, 0x1c, 0x5e, 0x1c, 0x43, 0x60, 0xc2, + 0xbe, 0x3d, 0x15, 0xa7, 0x5e, 0xfe, 0x87, 0xb0, 0x32, 0x32, 0x3a, 0x45, 0x5b, 0xc2, 0x86, 0x69, + 0xe3, 0xd4, 0x99, 0x7b, 0xf8, 0x0a, 0x56, 0xa4, 0xf7, 0xd4, 0xa4, 0x09, 0x4d, 0x1d, 0x3c, 0xce, + 0x64, 0x6f, 0xc1, 0xea, 0xe8, 0xfc, 0x0e, 0x55, 0xa7, 0x0e, 0xf5, 0x92, 0xdd, 0xcc, 0x1e, 0xf8, + 0xa1, 0x97, 0x80, 0x26, 0xa7, 0x69, 0xe8, 0x76, 0x6a, 0x4b, 0x53, 0xc6, 0x6c, 0x33, 0x0d, 0xfb, + 0x0e, 0xb6, 0x66, 0xce, 0x1a, 0xd0, 0xfd, 0xeb, 0x66, 0x11, 0x52, 0xf6, 0xcf, 0x6e, 0x36, 0xb2, + 0x40, 0x3d, 0xd0, 0x66, 0x5d, 0x9e, 0xe8, 0xc3, 0x9b, 0xb4, 0xa6, 0xd5, 0xfb, 0x37, 0xba, 0x81, + 0x87, 0x2e, 0x4a, 0xdf, 0x04, 0x23, 0x2e, 0x9a, 0x72, 0x45, 0xcc, 0x74, 0xd1, 0x0b, 0x58, 0x9f, + 0x28, 0xe4, 0xe8, 0x03, 0x21, 0x6c, 0x56, 0x81, 0x9f, 0x25, 0xeb, 0xf0, 0xee, 0x6f, 0xef, 0xf4, + 0x3c, 0x76, 0x16, 0x9f, 0xd6, 0x1d, 0xd2, 0xdf, 0x53, 0x11, 0x24, 0xff, 0x32, 0x70, 0x88, 0xbf, + 0x47, 0x43, 0xe7, 0x74, 0x49, 0x7c, 0xfd, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x54, 0xa1, + 0x45, 0xb9, 0xea, 0x18, 0x00, 0x00, } diff --git a/rpc/sip.go b/rpc/sip.go index 2def0553e..7fc8dbe57 100644 --- a/rpc/sip.go +++ b/rpc/sip.go @@ -7,6 +7,8 @@ import ( "net" "strings" + "google.golang.org/protobuf/proto" + "github.com/livekit/protocol/livekit" ) @@ -71,6 +73,7 @@ func NewCreateSIPParticipantRequest( req *livekit.CreateSIPParticipantRequest, trunk *livekit.SIPOutboundTrunkInfo, ) (*InternalCreateSIPParticipantRequest, error) { + req.Upgrade() if err := req.Validate(); err != nil { return nil, err } @@ -163,6 +166,8 @@ func NewCreateSIPParticipantRequest( participantIdentity = "sip_" + req.SipCallTo } + media := proto.CloneOf(req.Media) + media = media.UpgradeWith(enc) return &InternalCreateSIPParticipantRequest{ ProjectId: projectID, SipCallId: callID, @@ -191,7 +196,8 @@ func NewCreateSIPParticipantRequest( EnabledFeatures: features, RingingTimeout: req.RingingTimeout, MaxCallDuration: req.MaxCallDuration, - MediaEncryption: enc, + MediaEncryption: media.Encryption.Deref(), + Media: media, WaitUntilAnswered: req.WaitUntilAnswered, DisplayName: req.DisplayName, Destination: req.Destination, @@ -212,3 +218,11 @@ func NewTransferSIPParticipantRequest( RingingTimeout: req.RingingTimeout, }, nil } + +func (p *InternalCreateSIPParticipantRequest) Upgrade() { + p.Media = p.Media.UpgradeWith(p.MediaEncryption) +} + +func (p *EvaluateSIPDispatchRulesResponse) Upgrade() { + p.Media = p.Media.UpgradeWith(p.MediaEncryption) +} diff --git a/rpc/sip.pb.go b/rpc/sip.pb.go index ecfa1de69..f390a4f69 100644 --- a/rpc/sip.pb.go +++ b/rpc/sip.pb.go @@ -88,8 +88,10 @@ type InternalCreateSIPParticipantRequest struct { // Max time for the callee to answer the call. RingingTimeout *durationpb.Duration `protobuf:"bytes,23,opt,name=ringing_timeout,json=ringingTimeout,proto3" json:"ringing_timeout,omitempty"` // Max call duration. - MaxCallDuration *durationpb.Duration `protobuf:"bytes,24,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` + MaxCallDuration *durationpb.Duration `protobuf:"bytes,24,opt,name=max_call_duration,json=maxCallDuration,proto3" json:"max_call_duration,omitempty"` + // Deprecated: Marked as deprecated in rpc/sip.proto. MediaEncryption livekit.SIPMediaEncryption `protobuf:"varint,28,opt,name=media_encryption,json=mediaEncryption,proto3,enum=livekit.SIPMediaEncryption" json:"media_encryption,omitempty"` + Media *livekit.SIPMediaConfig `protobuf:"bytes,34,opt,name=media,proto3" json:"media,omitempty"` // Wait for the answer for the call before returning. WaitUntilAnswered bool `protobuf:"varint,29,opt,name=wait_until_answered,json=waitUntilAnswered,proto3" json:"wait_until_answered,omitempty"` // Optional display name for the 'From' SIP header. @@ -326,6 +328,7 @@ func (x *InternalCreateSIPParticipantRequest) GetMaxCallDuration() *durationpb.D return nil } +// Deprecated: Marked as deprecated in rpc/sip.proto. func (x *InternalCreateSIPParticipantRequest) GetMediaEncryption() livekit.SIPMediaEncryption { if x != nil { return x.MediaEncryption @@ -333,6 +336,13 @@ func (x *InternalCreateSIPParticipantRequest) GetMediaEncryption() livekit.SIPMe return livekit.SIPMediaEncryption(0) } +func (x *InternalCreateSIPParticipantRequest) GetMedia() *livekit.SIPMediaConfig { + if x != nil { + return x.Media + } + return nil +} + func (x *InternalCreateSIPParticipantRequest) GetWaitUntilAnswered() bool { if x != nil { return x.WaitUntilAnswered @@ -513,7 +523,7 @@ var File_rpc_sip_proto protoreflect.FileDescriptor const file_rpc_sip_proto_rawDesc = "" + "\n" + - "\rrpc/sip.proto\x12\x03rpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\roptions.proto\x1a\x11livekit_sip.proto\x1a\x14logger/options.proto\"\xe6\x12\n" + + "\rrpc/sip.proto\x12\x03rpc\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\roptions.proto\x1a\x11livekit_sip.proto\x1a\x14logger/options.proto\"\x99\x13\n" + "#InternalCreateSIPParticipantRequest\x12+\n" + "\n" + "project_id\x18\x12 \x01(\tB\f\xbaP\tprojectIDR\tprojectId\x12,\n" + @@ -545,8 +555,9 @@ const file_rpc_sip_proto_rawDesc = "" + "\x0finclude_headers\x18\x1b \x01(\x0e2\x19.livekit.SIPHeaderOptionsR\x0eincludeHeaders\x12>\n" + "\x10enabled_features\x18\x19 \x03(\x0e2\x13.livekit.SIPFeatureR\x0fenabledFeatures\x12B\n" + "\x0fringing_timeout\x18\x17 \x01(\v2\x19.google.protobuf.DurationR\x0eringingTimeout\x12E\n" + - "\x11max_call_duration\x18\x18 \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12F\n" + - "\x10media_encryption\x18\x1c \x01(\x0e2\x1b.livekit.SIPMediaEncryptionR\x0fmediaEncryption\x12.\n" + + "\x11max_call_duration\x18\x18 \x01(\v2\x19.google.protobuf.DurationR\x0fmaxCallDuration\x12J\n" + + "\x10media_encryption\x18\x1c \x01(\x0e2\x1b.livekit.SIPMediaEncryptionB\x02\x18\x01R\x0fmediaEncryption\x12-\n" + + "\x05media\x18\" \x01(\v2\x17.livekit.SIPMediaConfigR\x05media\x12.\n" + "\x13wait_until_answered\x18\x1d \x01(\bR\x11waitUntilAnswered\x12L\n" + "\fdisplay_name\x18\x1f \x01(\tB$\xa8P\x01\xb2P\x1eH\x00R\vdisplayName\x88\x01\x01\x126\n" + "\vdestination\x18 \x01(\v2\x14.livekit.DestinationR\vdestination\x12_\n" + @@ -618,8 +629,9 @@ var file_rpc_sip_proto_goTypes = []any{ (livekit.SIPFeature)(0), // 12: livekit.SIPFeature (*durationpb.Duration)(nil), // 13: google.protobuf.Duration (livekit.SIPMediaEncryption)(0), // 14: livekit.SIPMediaEncryption - (*livekit.Destination)(nil), // 15: livekit.Destination - (*emptypb.Empty)(nil), // 16: google.protobuf.Empty + (*livekit.SIPMediaConfig)(nil), // 15: livekit.SIPMediaConfig + (*livekit.Destination)(nil), // 16: livekit.Destination + (*emptypb.Empty)(nil), // 17: google.protobuf.Empty } var file_rpc_sip_proto_depIdxs = []int32{ 10, // 0: rpc.InternalCreateSIPParticipantRequest.transport:type_name -> livekit.SIPTransport @@ -632,20 +644,21 @@ var file_rpc_sip_proto_depIdxs = []int32{ 13, // 7: rpc.InternalCreateSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration 13, // 8: rpc.InternalCreateSIPParticipantRequest.max_call_duration:type_name -> google.protobuf.Duration 14, // 9: rpc.InternalCreateSIPParticipantRequest.media_encryption:type_name -> livekit.SIPMediaEncryption - 15, // 10: rpc.InternalCreateSIPParticipantRequest.destination:type_name -> livekit.Destination - 7, // 11: rpc.InternalCreateSIPParticipantRequest.feature_flags:type_name -> rpc.InternalCreateSIPParticipantRequest.FeatureFlagsEntry - 8, // 12: rpc.InternalTransferSIPParticipantRequest.headers:type_name -> rpc.InternalTransferSIPParticipantRequest.HeadersEntry - 13, // 13: rpc.InternalTransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration - 9, // 14: rpc.InternalTransferSIPParticipantRequest.feature_flags:type_name -> rpc.InternalTransferSIPParticipantRequest.FeatureFlagsEntry - 0, // 15: rpc.SIPInternal.CreateSIPParticipant:input_type -> rpc.InternalCreateSIPParticipantRequest - 2, // 16: rpc.SIPInternal.TransferSIPParticipant:input_type -> rpc.InternalTransferSIPParticipantRequest - 1, // 17: rpc.SIPInternal.CreateSIPParticipant:output_type -> rpc.InternalCreateSIPParticipantResponse - 16, // 18: rpc.SIPInternal.TransferSIPParticipant:output_type -> google.protobuf.Empty - 17, // [17:19] is the sub-list for method output_type - 15, // [15:17] is the sub-list for method input_type - 15, // [15:15] is the sub-list for extension type_name - 15, // [15:15] is the sub-list for extension extendee - 0, // [0:15] is the sub-list for field type_name + 15, // 10: rpc.InternalCreateSIPParticipantRequest.media:type_name -> livekit.SIPMediaConfig + 16, // 11: rpc.InternalCreateSIPParticipantRequest.destination:type_name -> livekit.Destination + 7, // 12: rpc.InternalCreateSIPParticipantRequest.feature_flags:type_name -> rpc.InternalCreateSIPParticipantRequest.FeatureFlagsEntry + 8, // 13: rpc.InternalTransferSIPParticipantRequest.headers:type_name -> rpc.InternalTransferSIPParticipantRequest.HeadersEntry + 13, // 14: rpc.InternalTransferSIPParticipantRequest.ringing_timeout:type_name -> google.protobuf.Duration + 9, // 15: rpc.InternalTransferSIPParticipantRequest.feature_flags:type_name -> rpc.InternalTransferSIPParticipantRequest.FeatureFlagsEntry + 0, // 16: rpc.SIPInternal.CreateSIPParticipant:input_type -> rpc.InternalCreateSIPParticipantRequest + 2, // 17: rpc.SIPInternal.TransferSIPParticipant:input_type -> rpc.InternalTransferSIPParticipantRequest + 1, // 18: rpc.SIPInternal.CreateSIPParticipant:output_type -> rpc.InternalCreateSIPParticipantResponse + 17, // 19: rpc.SIPInternal.TransferSIPParticipant:output_type -> google.protobuf.Empty + 18, // [18:20] is the sub-list for method output_type + 16, // [16:18] is the sub-list for method input_type + 16, // [16:16] is the sub-list for extension type_name + 16, // [16:16] is the sub-list for extension extendee + 0, // [0:16] is the sub-list for field type_name } func init() { file_rpc_sip_proto_init() } diff --git a/rpc/sip.psrpc.go b/rpc/sip.psrpc.go index f2ef2b5d3..9266644f9 100644 --- a/rpc/sip.psrpc.go +++ b/rpc/sip.psrpc.go @@ -163,81 +163,83 @@ func (UnimplementedSIPInternalServer) TransferSIPParticipant(context.Context, *I } var psrpcFileDescriptor11 = []byte{ - // 1208 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xcd, 0x6f, 0xdb, 0x36, - 0x14, 0x9f, 0xe2, 0x7c, 0xd2, 0x76, 0xec, 0xd0, 0x49, 0xca, 0x3a, 0x5b, 0xeb, 0xa6, 0x1d, 0xe0, - 0x6e, 0x83, 0x8c, 0xa5, 0xd8, 0x3a, 0x04, 0x45, 0xb7, 0xe6, 0x0b, 0x35, 0xb0, 0xae, 0x86, 0xe2, - 0x62, 0xc0, 0x2e, 0x02, 0x2d, 0xd1, 0x0e, 0x17, 0x49, 0xd4, 0x48, 0xaa, 0xae, 0x57, 0xf4, 0xbe, - 0xfe, 0x17, 0x3b, 0xee, 0xdc, 0xd3, 0xd0, 0xd3, 0xfe, 0x9a, 0xfd, 0x0b, 0xbb, 0x0e, 0xa4, 0x24, - 0x5b, 0x4e, 0x9c, 0xd4, 0x42, 0x6f, 0x7a, 0x5f, 0x3f, 0xbe, 0xf7, 0xf8, 0x3e, 0x28, 0x50, 0xe6, - 0xa1, 0xd3, 0x12, 0x34, 0x34, 0x43, 0xce, 0x24, 0x83, 0x05, 0x1e, 0x3a, 0xf5, 0x9d, 0x01, 0x63, - 0x03, 0x8f, 0xb4, 0x34, 0xab, 0x17, 0xf5, 0x5b, 0xc4, 0x0f, 0xe5, 0x28, 0xd6, 0xa8, 0xdf, 0xba, - 0x28, 0x74, 0x23, 0x8e, 0x25, 0x65, 0x41, 0x22, 0x2f, 0xb3, 0x50, 0x51, 0x22, 0x21, 0x37, 0x3c, - 0xfa, 0x92, 0x9c, 0x53, 0x69, 0x8f, 0xcf, 0xa8, 0x6f, 0x7a, 0x6c, 0x30, 0x20, 0xbc, 0x35, 0xa5, - 0xb8, 0xfb, 0x2f, 0x04, 0x77, 0xdb, 0x81, 0x24, 0x3c, 0xc0, 0xde, 0x21, 0x27, 0x58, 0x92, 0xd3, - 0x76, 0xa7, 0x83, 0xb9, 0xa4, 0x0e, 0x0d, 0x71, 0x20, 0x2d, 0xf2, 0x5b, 0x44, 0x84, 0x84, 0x5f, - 0x02, 0x10, 0x72, 0xf6, 0x2b, 0x71, 0xa4, 0x4d, 0x5d, 0x04, 0x1b, 0x46, 0x73, 0xed, 0xa0, 0xf4, - 0xbe, 0xb3, 0x96, 0x30, 0xdb, 0x47, 0xd6, 0xf8, 0xd3, 0x85, 0x5f, 0x81, 0xa2, 0xa0, 0xa1, 0xed, - 0x60, 0xcf, 0x53, 0xda, 0xe5, 0xb1, 0xb6, 0xa0, 0xe1, 0x21, 0xf6, 0x3c, 0xa5, 0x9d, 0x7e, 0xba, - 0xb0, 0x05, 0x4a, 0x4a, 0x5b, 0xf2, 0x28, 0x38, 0x57, 0xea, 0x35, 0xad, 0x5e, 0x7e, 0xdf, 0x01, - 0x82, 0x86, 0x5d, 0xc5, 0x6d, 0x1f, 0x59, 0x93, 0x6f, 0x17, 0x22, 0xb0, 0x82, 0x5d, 0x97, 0x13, - 0x21, 0xd0, 0x82, 0xd2, 0xb5, 0x52, 0x12, 0xd6, 0xc1, 0xea, 0x19, 0x13, 0x32, 0xc0, 0x3e, 0x41, - 0x9b, 0x5a, 0x34, 0xa6, 0x61, 0x0b, 0xd4, 0x5c, 0x22, 0x24, 0x0d, 0x74, 0xda, 0x6c, 0x87, 0x45, - 0x81, 0xe4, 0x23, 0x74, 0x4b, 0xab, 0xc1, 0x8c, 0xe8, 0x30, 0x96, 0xc0, 0x07, 0x60, 0x4d, 0x72, - 0x1c, 0x88, 0x90, 0x71, 0x89, 0xaa, 0x0d, 0xa3, 0xb9, 0xbe, 0xb7, 0x65, 0x26, 0x79, 0x35, 0x4f, - 0xdb, 0x9d, 0x6e, 0x2a, 0xb4, 0x26, 0x7a, 0x70, 0x1b, 0x2c, 0x07, 0x91, 0xdf, 0x23, 0x1c, 0x15, - 0x34, 0x70, 0x42, 0xc1, 0x1b, 0x60, 0x45, 0xa7, 0x43, 0x32, 0xb4, 0x18, 0x0b, 0x14, 0xd9, 0x65, - 0xf0, 0x07, 0xb0, 0x1a, 0x09, 0x95, 0x7e, 0x9f, 0xa0, 0x25, 0x1d, 0xf9, 0xbd, 0xbf, 0x3a, 0xc6, - 0xbb, 0xce, 0xad, 0x47, 0x9c, 0xb8, 0xd8, 0x91, 0xc4, 0x6d, 0x34, 0x5f, 0xbf, 0x6e, 0x98, 0xa7, - 0xf4, 0x77, 0xd2, 0x78, 0xf3, 0xa6, 0xd1, 0x1b, 0x49, 0x22, 0xee, 0x3f, 0xb6, 0xc6, 0x56, 0x0a, - 0x21, 0xc4, 0x42, 0x0c, 0x19, 0x77, 0xd1, 0x72, 0x1e, 0x84, 0xd4, 0x0a, 0xee, 0x80, 0x35, 0xce, - 0x98, 0x6f, 0x6b, 0x27, 0x56, 0xe2, 0xbc, 0x29, 0xc6, 0x4f, 0x0a, 0xfe, 0x6b, 0xb0, 0x19, 0x4e, - 0xea, 0xc1, 0xa6, 0x2e, 0x09, 0x24, 0x95, 0x23, 0xb4, 0xaa, 0xf5, 0x6a, 0x19, 0x59, 0x3b, 0x11, - 0xc1, 0xe7, 0xa0, 0x9a, 0x35, 0xd1, 0xb0, 0xeb, 0x39, 0x3c, 0xab, 0x64, 0xac, 0xb5, 0x0f, 0x3f, - 0x4f, 0xfb, 0xe0, 0x13, 0x89, 0x5d, 0x2c, 0x31, 0xaa, 0xe4, 0x00, 0xcd, 0x7a, 0xfa, 0x2c, 0x01, - 0x80, 0x7f, 0x1a, 0x60, 0x3b, 0x8b, 0x8c, 0xa5, 0xe4, 0xb4, 0x17, 0x49, 0x22, 0xd0, 0x46, 0xa3, - 0xd0, 0x2c, 0xee, 0x1d, 0x9a, 0x3c, 0x74, 0xcc, 0x39, 0x3a, 0xc4, 0xcc, 0xb0, 0x9e, 0x8c, 0x51, - 0x8e, 0x55, 0x25, 0xcd, 0xe9, 0xe0, 0x56, 0x38, 0x0b, 0x01, 0xee, 0x83, 0x25, 0xc9, 0xce, 0x49, - 0x80, 0xd6, 0x72, 0x04, 0x1b, 0x9b, 0xc0, 0x2d, 0xb0, 0x3c, 0x14, 0x76, 0xc4, 0x3d, 0x04, 0xf4, - 0x6d, 0x2d, 0x0d, 0xc5, 0x0b, 0xee, 0x41, 0x08, 0x16, 0x5d, 0xe9, 0xf7, 0x51, 0x51, 0x33, 0xf5, - 0x37, 0xbc, 0x0b, 0xca, 0xa1, 0x87, 0x47, 0xb6, 0x4b, 0xb1, 0x27, 0x59, 0x40, 0x50, 0xa9, 0x61, - 0x34, 0x57, 0xad, 0x92, 0x62, 0x1e, 0x25, 0x3c, 0x18, 0x81, 0x95, 0x33, 0x82, 0x5d, 0xc2, 0x05, - 0xda, 0xd2, 0xe9, 0xf9, 0x66, 0xee, 0xf4, 0x3c, 0x8d, 0xed, 0xf2, 0x24, 0x24, 0x3d, 0x0b, 0x46, - 0x60, 0x2b, 0xf9, 0xb4, 0x25, 0xcb, 0xde, 0xd1, 0xb6, 0x76, 0xe2, 0x49, 0x5e, 0x27, 0xba, 0xec, - 0xc2, 0x0d, 0x59, 0xb5, 0xb3, 0xcb, 0x12, 0x75, 0xec, 0xe4, 0x2c, 0x75, 0x72, 0x1a, 0x7b, 0x3d, - 0xe7, 0xb1, 0x13, 0xcc, 0x2e, 0xcb, 0xe6, 0xc1, 0xaa, 0xe1, 0xcb, 0x12, 0x78, 0x00, 0x2a, 0x34, - 0x70, 0xbc, 0xc8, 0x25, 0xe3, 0x03, 0x77, 0xf4, 0xf4, 0xb9, 0x99, 0x9d, 0x3e, 0xb1, 0xf6, 0xf3, - 0x78, 0x98, 0x5b, 0xeb, 0x89, 0x45, 0x8a, 0xf1, 0x18, 0x54, 0x49, 0x80, 0x7b, 0x1e, 0x71, 0xed, - 0x3e, 0xc1, 0x32, 0xe2, 0x44, 0xa0, 0x9b, 0x8d, 0x42, 0x73, 0x7d, 0xaf, 0x96, 0x05, 0x39, 0x89, - 0x65, 0x56, 0x25, 0x51, 0x4e, 0x68, 0xed, 0x03, 0xa7, 0xc1, 0x80, 0x06, 0x03, 0x5b, 0x52, 0x9f, - 0xb0, 0x48, 0xa2, 0x1b, 0x0d, 0xa3, 0x59, 0xdc, 0xbb, 0x69, 0xc6, 0x8b, 0xc8, 0x4c, 0x17, 0x91, - 0x79, 0x94, 0x2c, 0x22, 0x6b, 0x3d, 0xb1, 0xe8, 0xc6, 0x06, 0xf0, 0x18, 0x6c, 0xf8, 0xf8, 0x55, - 0xbc, 0x05, 0xd2, 0x6d, 0x85, 0xd0, 0x87, 0x50, 0x2a, 0x3e, 0x7e, 0xa5, 0x16, 0x43, 0xca, 0x80, - 0x27, 0xa0, 0xea, 0x13, 0x97, 0x62, 0x9b, 0x04, 0x0e, 0x1f, 0xe9, 0x78, 0xd1, 0xa7, 0x3a, 0x1f, - 0x3b, 0xd9, 0x50, 0x9e, 0x29, 0x9d, 0xe3, 0xb1, 0x8a, 0x55, 0xf1, 0xa7, 0x19, 0xd0, 0x04, 0xb5, - 0x21, 0xa6, 0xd2, 0x8e, 0x02, 0x49, 0x3d, 0x1b, 0x07, 0x62, 0x48, 0x38, 0x71, 0xd1, 0x67, 0xba, - 0xcc, 0x37, 0x94, 0xe8, 0x85, 0x92, 0x3c, 0x49, 0x04, 0xf0, 0x47, 0x50, 0x72, 0xa9, 0xd0, 0x3d, - 0xa1, 0x07, 0xd8, 0xed, 0xf9, 0xdb, 0xef, 0xe9, 0x27, 0x56, 0x31, 0xb1, 0x55, 0xe3, 0xeb, 0x0f, - 0xc3, 0x80, 0xdf, 0x82, 0x62, 0x66, 0xc5, 0xa0, 0x86, 0x4e, 0xc3, 0xe6, 0x38, 0x80, 0xa3, 0x89, - 0xcc, 0xca, 0x2a, 0x42, 0x1b, 0x94, 0x93, 0x0b, 0xb4, 0xfb, 0x1e, 0x1e, 0x08, 0x74, 0x47, 0xd7, - 0xde, 0xfe, 0xdc, 0xb5, 0x97, 0x5c, 0xe9, 0x89, 0x32, 0x8e, 0x8b, 0xae, 0xd4, 0xcf, 0xb0, 0xea, - 0x4f, 0x41, 0xfd, 0xea, 0xc9, 0x05, 0xab, 0xa0, 0x70, 0x4e, 0x46, 0xc8, 0xd0, 0x83, 0x42, 0x7d, - 0xc2, 0x4d, 0xb0, 0xf4, 0x12, 0x7b, 0x11, 0x49, 0x56, 0x6f, 0x4c, 0xec, 0x2f, 0x7c, 0x67, 0xd4, - 0xf7, 0x41, 0x29, 0x5b, 0xdc, 0xb9, 0x6c, 0x4f, 0x00, 0xba, 0xaa, 0x37, 0xf3, 0xe2, 0x5c, 0xd5, - 0x6c, 0xb9, 0x70, 0xbe, 0x07, 0x1b, 0x97, 0x12, 0x97, 0x07, 0xe0, 0xa0, 0x02, 0xca, 0x76, 0xb6, - 0x7c, 0x76, 0xff, 0x31, 0xc0, 0xbd, 0xeb, 0xef, 0x4b, 0x84, 0x2c, 0x10, 0x04, 0x3e, 0x04, 0xeb, - 0xd3, 0xfb, 0x36, 0x3e, 0xf0, 0xa0, 0xfa, 0xbe, 0x53, 0xce, 0x2e, 0xdb, 0x23, 0x6b, 0x8a, 0x74, - 0xaf, 0x5c, 0xd4, 0x0b, 0x57, 0x2f, 0xea, 0x0b, 0x0f, 0xb5, 0xc2, 0xb5, 0x0f, 0xb5, 0xdd, 0xbf, - 0x17, 0xc1, 0xe7, 0x69, 0x08, 0xfa, 0xf1, 0xd3, 0x27, 0x7c, 0xf6, 0x6b, 0xf1, 0x02, 0xae, 0x71, - 0xfd, 0x03, 0xf0, 0x36, 0x28, 0xca, 0x04, 0x4e, 0xbd, 0x8f, 0x62, 0x7f, 0x41, 0xca, 0xea, 0xb2, - 0xcb, 0xbb, 0xa9, 0x30, 0x63, 0x37, 0x0d, 0x27, 0xbb, 0x69, 0x51, 0xf7, 0xc8, 0xc3, 0xa9, 0x1e, - 0xb9, 0xd6, 0xe1, 0x8f, 0xda, 0x4e, 0x33, 0x66, 0xe5, 0x52, 0xde, 0x59, 0x89, 0x2f, 0xb6, 0xf9, - 0xb2, 0x0e, 0xe1, 0x51, 0x8e, 0x10, 0x3e, 0xd4, 0xe8, 0x1f, 0xd3, 0x9e, 0x1f, 0xdb, 0x0e, 0x7b, - 0xff, 0x19, 0xa0, 0x78, 0xda, 0xee, 0xa4, 0x91, 0x40, 0x01, 0x36, 0x67, 0x35, 0x01, 0x6c, 0xce, - 0x3b, 0xd7, 0xea, 0xf7, 0xe7, 0xd0, 0x8c, 0x3b, 0x6a, 0x77, 0xf9, 0xdd, 0x5b, 0x63, 0xa1, 0x6a, - 0x40, 0x01, 0xb6, 0x67, 0xa7, 0x10, 0x7e, 0x31, 0x7f, 0x9e, 0xeb, 0xdb, 0x97, 0x6e, 0xf5, 0x58, - 0xfd, 0xa7, 0xed, 0x6e, 0xbd, 0x7b, 0x6b, 0x6c, 0x54, 0x8d, 0x7a, 0x19, 0x66, 0x6b, 0xff, 0xe0, - 0xce, 0x2f, 0xb7, 0x07, 0x54, 0x9e, 0x45, 0x3d, 0xd3, 0x61, 0x7e, 0x2b, 0x99, 0xf7, 0xf1, 0x6f, - 0x9c, 0xc3, 0xbc, 0x16, 0x0f, 0x9d, 0xde, 0xb2, 0xa6, 0x1e, 0xfc, 0x1f, 0x00, 0x00, 0xff, 0xff, - 0x90, 0xce, 0x5d, 0xbb, 0x15, 0x0e, 0x00, 0x00, + // 1233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x4b, 0x6f, 0xdb, 0x46, + 0x10, 0x2e, 0x2d, 0x3f, 0x47, 0x92, 0x25, 0xaf, 0x6c, 0x67, 0x23, 0xb7, 0x89, 0xe2, 0xa4, 0x80, + 0xd2, 0x87, 0x84, 0x3a, 0x68, 0x53, 0x18, 0x41, 0xda, 0xf8, 0x11, 0x44, 0x45, 0xd3, 0x08, 0xb4, + 0x82, 0x02, 0xbd, 0x10, 0x2b, 0x72, 0x25, 0x6f, 0x4d, 0x72, 0xd9, 0xdd, 0x65, 0x1c, 0x35, 0xc8, + 0xbd, 0xf9, 0x09, 0xbd, 0xf5, 0xd8, 0x73, 0x4e, 0x45, 0x4e, 0xfd, 0x57, 0xbd, 0x16, 0x5c, 0x92, + 0x12, 0x6d, 0xcb, 0x8e, 0x88, 0xdc, 0x38, 0x33, 0xdf, 0x7c, 0x3b, 0x3b, 0xbb, 0x33, 0xb3, 0x84, + 0xb2, 0x08, 0xec, 0xb6, 0x64, 0x41, 0x2b, 0x10, 0x5c, 0x71, 0x54, 0x10, 0x81, 0x5d, 0xdf, 0x1a, + 0x72, 0x3e, 0x74, 0x69, 0x5b, 0xab, 0xfa, 0xe1, 0xa0, 0x4d, 0xbd, 0x40, 0x8d, 0x62, 0x44, 0xfd, + 0xc6, 0x79, 0xa3, 0x13, 0x0a, 0xa2, 0x18, 0xf7, 0x13, 0x7b, 0x99, 0x07, 0x91, 0x24, 0x13, 0x71, + 0xcd, 0x65, 0x2f, 0xe8, 0x09, 0x53, 0xd6, 0x78, 0x8d, 0xfa, 0xba, 0xcb, 0x87, 0x43, 0x2a, 0xda, + 0x67, 0x80, 0xdb, 0x7f, 0xd6, 0xe0, 0x76, 0xc7, 0x57, 0x54, 0xf8, 0xc4, 0xdd, 0x17, 0x94, 0x28, + 0x7a, 0xd4, 0xe9, 0x76, 0x89, 0x50, 0xcc, 0x66, 0x01, 0xf1, 0x95, 0x49, 0x7f, 0x0b, 0xa9, 0x54, + 0xe8, 0x73, 0x80, 0x40, 0xf0, 0x5f, 0xa9, 0xad, 0x2c, 0xe6, 0x60, 0xd4, 0x30, 0x9a, 0x2b, 0x7b, + 0xa5, 0x77, 0xdd, 0x95, 0x44, 0xd9, 0x39, 0x30, 0xc7, 0x9f, 0x0e, 0xfa, 0x02, 0x8a, 0x92, 0x05, + 0x96, 0x4d, 0x5c, 0x37, 0x42, 0x97, 0xc7, 0x68, 0xc9, 0x82, 0x7d, 0xe2, 0xba, 0x11, 0x3a, 0xfd, + 0x74, 0x50, 0x1b, 0x4a, 0x11, 0x5a, 0x89, 0xd0, 0x3f, 0x89, 0xe0, 0x35, 0x0d, 0x2f, 0xbf, 0xeb, + 0x82, 0x64, 0x41, 0x2f, 0xd2, 0x76, 0x0e, 0xcc, 0xc9, 0xb7, 0x83, 0x30, 0x2c, 0x11, 0xc7, 0x11, + 0x54, 0x4a, 0x3c, 0x17, 0x61, 0xcd, 0x54, 0x44, 0x75, 0x58, 0x3e, 0xe6, 0x52, 0xf9, 0xc4, 0xa3, + 0x78, 0x5d, 0x9b, 0xc6, 0x32, 0x6a, 0x43, 0xcd, 0xa1, 0x52, 0x31, 0x5f, 0xa7, 0xcd, 0xb2, 0x79, + 0xe8, 0x2b, 0x31, 0xc2, 0x37, 0x34, 0x0c, 0x65, 0x4c, 0xfb, 0xb1, 0x05, 0xdd, 0x83, 0x15, 0x25, + 0x88, 0x2f, 0x03, 0x2e, 0x14, 0xae, 0x36, 0x8c, 0xe6, 0xea, 0xce, 0x46, 0x2b, 0xc9, 0x6b, 0xeb, + 0xa8, 0xd3, 0xed, 0xa5, 0x46, 0x73, 0x82, 0x43, 0x9b, 0xb0, 0xe8, 0x87, 0x5e, 0x9f, 0x0a, 0x5c, + 0xd0, 0xc4, 0x89, 0x84, 0xae, 0xc1, 0x92, 0x4e, 0x87, 0xe2, 0x78, 0x3e, 0x36, 0x44, 0x62, 0x8f, + 0xa3, 0xef, 0x61, 0x39, 0x94, 0x51, 0xfa, 0x3d, 0x8a, 0x17, 0xf4, 0xce, 0xef, 0xfc, 0xdd, 0x35, + 0xde, 0x76, 0x6f, 0x3c, 0x10, 0xd4, 0x21, 0xb6, 0xa2, 0x4e, 0xa3, 0xf9, 0xea, 0x55, 0xa3, 0x75, + 0xc4, 0x7e, 0xa7, 0x8d, 0xd7, 0xaf, 0x1b, 0xfd, 0x91, 0xa2, 0xf2, 0xee, 0x43, 0x73, 0xec, 0x15, + 0x31, 0x04, 0x44, 0xca, 0x53, 0x2e, 0x1c, 0xbc, 0x98, 0x87, 0x21, 0xf5, 0x42, 0x5b, 0xb0, 0x22, + 0x38, 0xf7, 0x2c, 0x1d, 0xc4, 0x52, 0x9c, 0xb7, 0x48, 0xf1, 0x53, 0x44, 0xff, 0x15, 0xac, 0x07, + 0x93, 0xfb, 0x60, 0x31, 0x87, 0xfa, 0x8a, 0xa9, 0x11, 0x5e, 0xd6, 0xb8, 0x5a, 0xc6, 0xd6, 0x49, + 0x4c, 0xe8, 0x19, 0x54, 0xb3, 0x2e, 0x9a, 0x76, 0x35, 0x47, 0x64, 0x95, 0x8c, 0xb7, 0x8e, 0xe1, + 0xe7, 0xb3, 0x31, 0x78, 0x54, 0x11, 0x87, 0x28, 0x82, 0x2b, 0x39, 0x48, 0xb3, 0x91, 0x3e, 0x4d, + 0x08, 0xd0, 0x5f, 0x06, 0x6c, 0x66, 0x99, 0x89, 0x52, 0x82, 0xf5, 0x43, 0x45, 0x25, 0x5e, 0x6b, + 0x14, 0x9a, 0xc5, 0x9d, 0xfd, 0x96, 0x08, 0xec, 0xd6, 0x0c, 0x15, 0xd2, 0xca, 0xa8, 0x1e, 0x8d, + 0x59, 0x0e, 0xa3, 0x9b, 0x34, 0x63, 0x80, 0x1b, 0xc1, 0x34, 0x06, 0xb4, 0x0b, 0x0b, 0x8a, 0x9f, + 0x50, 0x1f, 0xaf, 0xe4, 0xd8, 0x6c, 0xec, 0x82, 0x36, 0x60, 0xf1, 0x54, 0x5a, 0xa1, 0x70, 0x31, + 0xe8, 0xd3, 0x5a, 0x38, 0x95, 0xcf, 0x85, 0x8b, 0x10, 0xcc, 0x3b, 0xca, 0x1b, 0xe0, 0xa2, 0x56, + 0xea, 0x6f, 0x74, 0x1b, 0xca, 0x81, 0x4b, 0x46, 0x96, 0xc3, 0x88, 0xab, 0xb8, 0x4f, 0x71, 0xa9, + 0x61, 0x34, 0x97, 0xcd, 0x52, 0xa4, 0x3c, 0x48, 0x74, 0x28, 0x84, 0xa5, 0x63, 0x4a, 0x1c, 0x2a, + 0x24, 0xde, 0xd0, 0xe9, 0xf9, 0x7a, 0xe6, 0xf4, 0x3c, 0x89, 0xfd, 0xf2, 0x24, 0x24, 0x5d, 0x0b, + 0x85, 0xb0, 0x91, 0x7c, 0x5a, 0x8a, 0x67, 0xcf, 0x68, 0x53, 0x07, 0xf1, 0x28, 0x6f, 0x10, 0x3d, + 0x7e, 0xee, 0x84, 0xcc, 0xda, 0xf1, 0x45, 0x4b, 0xb4, 0xec, 0x64, 0xad, 0x68, 0xe5, 0x74, 0xef, + 0xf5, 0x9c, 0xcb, 0x4e, 0x38, 0x7b, 0x3c, 0x9b, 0x07, 0xb3, 0x46, 0x2e, 0x5a, 0xd0, 0x1e, 0x54, + 0x98, 0x6f, 0xbb, 0xa1, 0x43, 0xc7, 0x0b, 0x6e, 0xe9, 0xee, 0x73, 0x3d, 0xdb, 0x7d, 0x62, 0xf4, + 0xb3, 0xb8, 0x99, 0x9b, 0xab, 0x89, 0x47, 0xca, 0xf1, 0x10, 0xaa, 0xd4, 0x27, 0x7d, 0x97, 0x3a, + 0xd6, 0x80, 0x12, 0x15, 0x0a, 0x2a, 0xf1, 0xf5, 0x46, 0xa1, 0xb9, 0xba, 0x53, 0xcb, 0x92, 0x3c, + 0x8e, 0x6d, 0x66, 0x25, 0x01, 0x27, 0xb2, 0x8e, 0x41, 0x30, 0x7f, 0xc8, 0xfc, 0xa1, 0xa5, 0x98, + 0x47, 0x79, 0xa8, 0xf0, 0xb5, 0x86, 0xd1, 0x2c, 0xee, 0x5c, 0x6f, 0xc5, 0x83, 0xa8, 0x95, 0x0e, + 0xa2, 0xd6, 0x41, 0x32, 0x88, 0xcc, 0xd5, 0xc4, 0xa3, 0x17, 0x3b, 0xa0, 0x43, 0x58, 0xf3, 0xc8, + 0xcb, 0x78, 0x0a, 0xa4, 0xd3, 0x0a, 0xe3, 0xf7, 0xb1, 0x54, 0x3c, 0xf2, 0x32, 0x1a, 0x0c, 0xa9, + 0x02, 0xfd, 0x00, 0x55, 0x8f, 0x3a, 0x8c, 0x58, 0xd4, 0xb7, 0xc5, 0x48, 0xef, 0x17, 0x7f, 0xac, + 0xf3, 0xb1, 0x95, 0xdd, 0xca, 0xd3, 0x08, 0x73, 0x38, 0x86, 0xec, 0xcd, 0x61, 0xc3, 0xac, 0x78, + 0x67, 0x95, 0xe8, 0x4b, 0x58, 0xd0, 0x2a, 0xbc, 0xad, 0xc3, 0xb8, 0x76, 0x81, 0x60, 0x9f, 0xfb, + 0x03, 0x36, 0x34, 0x63, 0x14, 0x6a, 0x41, 0xed, 0x94, 0x30, 0x65, 0x85, 0xbe, 0x62, 0xae, 0x45, + 0x7c, 0x79, 0x4a, 0x05, 0x75, 0xf0, 0x27, 0xba, 0x32, 0xd6, 0x22, 0xd3, 0xf3, 0xc8, 0xf2, 0x28, + 0x31, 0xa0, 0x1f, 0xa1, 0xe4, 0x30, 0xa9, 0xcb, 0x48, 0xf7, 0xbc, 0x9b, 0xb3, 0x57, 0xec, 0x93, + 0x8f, 0xcc, 0x62, 0xe2, 0x1b, 0x75, 0xbc, 0x3f, 0x0c, 0x03, 0x7d, 0x03, 0xc5, 0xcc, 0x54, 0xc2, + 0x0d, 0x1d, 0xf2, 0xfa, 0x38, 0xe4, 0x83, 0x89, 0xcd, 0xcc, 0x02, 0x91, 0x05, 0xe5, 0xe4, 0xcc, + 0xad, 0x81, 0x4b, 0x86, 0x12, 0xdf, 0xd2, 0xd7, 0x75, 0x77, 0xe6, 0xeb, 0x9a, 0xdc, 0x82, 0xc7, + 0x91, 0x73, 0x7c, 0x4f, 0x4b, 0x83, 0x8c, 0xaa, 0xfe, 0x04, 0xea, 0x97, 0x37, 0x3b, 0x54, 0x85, + 0xc2, 0x09, 0x1d, 0x61, 0x43, 0xf7, 0x96, 0xe8, 0x13, 0xad, 0xc3, 0xc2, 0x0b, 0xe2, 0x86, 0x34, + 0x99, 0xd6, 0xb1, 0xb0, 0x3b, 0xf7, 0xad, 0x51, 0xdf, 0x85, 0x52, 0xb6, 0x1e, 0x72, 0xf9, 0x3e, + 0x06, 0x7c, 0x59, 0x39, 0xe7, 0xe5, 0xb9, 0xac, 0x3e, 0x73, 0xf1, 0x7c, 0x07, 0x6b, 0x17, 0x12, + 0x97, 0x87, 0x60, 0xaf, 0x02, 0x65, 0x2b, 0x7b, 0x7d, 0xb6, 0xff, 0x35, 0xe0, 0xce, 0xd5, 0xe7, + 0x25, 0x03, 0xee, 0x4b, 0x8a, 0xee, 0xc3, 0xea, 0xd9, 0x11, 0x1d, 0x2f, 0xb8, 0x57, 0x7d, 0xd7, + 0x2d, 0x67, 0xe7, 0xf3, 0x81, 0x79, 0x46, 0x74, 0x2e, 0x9d, 0xed, 0x73, 0x97, 0xcf, 0xf6, 0x73, + 0x6f, 0xbb, 0xc2, 0x95, 0x6f, 0xbb, 0xed, 0x7f, 0xe6, 0xe1, 0xd3, 0x74, 0x0b, 0xfa, 0xbd, 0x34, + 0xa0, 0x62, 0xfa, 0x03, 0xf3, 0x1c, 0xaf, 0x71, 0xf5, 0x9b, 0xf1, 0x26, 0x14, 0x55, 0x42, 0x17, + 0x3d, 0xa9, 0xe2, 0x78, 0x21, 0x55, 0xf5, 0xf8, 0xc5, 0x71, 0x56, 0x98, 0x32, 0xce, 0x4e, 0x27, + 0xe3, 0x6c, 0x5e, 0xd7, 0xc8, 0xfd, 0x33, 0x35, 0x72, 0x65, 0xc0, 0x1f, 0x34, 0xd0, 0xa6, 0xb4, + 0xd7, 0x85, 0xbc, 0xed, 0x95, 0x9c, 0x2f, 0xf3, 0x45, 0xbd, 0x85, 0x07, 0x39, 0xb6, 0xf0, 0xbe, + 0x42, 0xff, 0x90, 0xf2, 0xfc, 0xd0, 0x72, 0xd8, 0xf9, 0xcf, 0x80, 0xe2, 0x51, 0xa7, 0x9b, 0xee, + 0x04, 0x49, 0x58, 0x9f, 0x56, 0x04, 0xa8, 0x39, 0x6b, 0x5f, 0xab, 0xdf, 0x9d, 0x01, 0x19, 0x57, + 0xd4, 0xf6, 0xe2, 0xdb, 0x37, 0xc6, 0x5c, 0xd5, 0x40, 0x12, 0x36, 0xa7, 0xa7, 0x10, 0x7d, 0x36, + 0x7b, 0x9e, 0xeb, 0x9b, 0x17, 0x4e, 0xf5, 0x30, 0xfa, 0xb5, 0xdb, 0xde, 0x78, 0xfb, 0xc6, 0x58, + 0xab, 0x1a, 0xf5, 0x32, 0xca, 0xde, 0xfd, 0xbd, 0x5b, 0xbf, 0xdc, 0x1c, 0x32, 0x75, 0x1c, 0xf6, + 0x5b, 0x36, 0xf7, 0xda, 0x49, 0xbf, 0x8f, 0xff, 0xfc, 0x6c, 0xee, 0xb6, 0x45, 0x60, 0xf7, 0x17, + 0xb5, 0x74, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x52, 0xb5, 0x98, 0x48, 0x0e, 0x00, + 0x00, } diff --git a/rpc/sip_test.go b/rpc/sip_test.go index 1ba8552c9..cb5a81078 100644 --- a/rpc/sip_test.go +++ b/rpc/sip_test.go @@ -4,6 +4,7 @@ import ( "testing" "github.com/stretchr/testify/require" + "google.golang.org/protobuf/proto" "github.com/livekit/protocol/livekit" ) @@ -26,6 +27,7 @@ func TestNewCreateSIPParticipantRequest(t *testing.T) { Dtmf: "1234#", PlayDialtone: true, WaitUntilAnswered: true, + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, } tr := &livekit.SIPOutboundTrunkInfo{ SipTrunkId: "trunk", @@ -39,47 +41,56 @@ func TestNewCreateSIPParticipantRequest(t *testing.T) { "X-B": "B1", }, } + expAttrs1 := map[string]string{ + "extra": "1", + livekit.AttrSIPCallID: "call-id", + livekit.AttrSIPTrunkID: "trunk", + livekit.AttrSIPTrunkNumber: "+1111", + livekit.AttrSIPPhoneNumber: "+3333", + livekit.AttrSIPHostName: "sip.example.com", + } exp := &InternalCreateSIPParticipantRequest{ - ProjectId: "p_123", - SipCallId: "call-id", - SipTrunkId: "trunk", - Address: "sip.example.com", - Hostname: "xyz.sip.livekit.cloud", - DestinationCountry: "us", - Number: "+1111", - CallTo: "+3333", - Username: "user", - Password: "pass", - RoomName: "room", - ParticipantIdentity: "sip_+3333", - ParticipantMetadata: "meta", - Token: "token", - WsUrl: "url", - Dtmf: "1234#", - PlayDialtone: true, - ParticipantAttributes: map[string]string{ - "extra": "1", - livekit.AttrSIPCallID: "call-id", - livekit.AttrSIPTrunkID: "trunk", - livekit.AttrSIPTrunkNumber: "+1111", - livekit.AttrSIPPhoneNumber: "+3333", - livekit.AttrSIPHostName: "sip.example.com", - }, + ProjectId: "p_123", + SipCallId: "call-id", + SipTrunkId: "trunk", + Address: "sip.example.com", + Hostname: "xyz.sip.livekit.cloud", + DestinationCountry: "us", + Number: "+1111", + CallTo: "+3333", + Username: "user", + Password: "pass", + RoomName: "room", + ParticipantIdentity: "sip_+3333", + ParticipantMetadata: "meta", + Token: "token", + WsUrl: "url", + Dtmf: "1234#", + PlayDialtone: true, + ParticipantAttributes: expAttrs1, Headers: map[string]string{ "X-A": "A", "X-B": "B2", "X-C": "C", }, WaitUntilAnswered: true, + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, + Media: &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE), + }, } res, err := NewCreateSIPParticipantRequest("p_123", "call-id", "xyz.sip.livekit.cloud", "url", "token", r, tr) require.NoError(t, err) - require.Equal(t, exp, res) + require.True(t, proto.Equal(exp, res), "%v\nvs\n%v", exp, res) r.HidePhoneNumber = true + r.MediaEncryption = 0 + r.Media = &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW), + } res, err = NewCreateSIPParticipantRequest("p_123", "call-id", "xyz.sip.livekit.cloud", "url", "token", r, tr) require.NoError(t, err) - require.Equal(t, &InternalCreateSIPParticipantRequest{ + exp = &InternalCreateSIPParticipantRequest{ ProjectId: "p_123", SipCallId: "call-id", SipTrunkId: "trunk", @@ -108,7 +119,12 @@ func TestNewCreateSIPParticipantRequest(t *testing.T) { "X-C": "C", }, WaitUntilAnswered: true, - }, res) + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW, + Media: &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW), + }, + } + require.True(t, proto.Equal(exp, res), "%v\nvs\n%v", exp, res) r.HidePhoneNumber = false r.SipNumber = tr.Numbers[0] @@ -128,8 +144,34 @@ func TestNewCreateSIPParticipantRequest(t *testing.T) { r.Headers[k] = v } } + exp.ParticipantAttributes = expAttrs1 exp.ParticipantAttributes[livekit.AttrSIPTrunkID] = "" res, err = NewCreateSIPParticipantRequest("p_123", "call-id", "xyz.sip.livekit.cloud", "url", "token", r, nil) require.NoError(t, err) - require.Equal(t, exp, res) + require.True(t, proto.Equal(exp, res), "%v\nvs\n%v", exp, res) +} + +// Regression: trunk-level MediaEncryption must be honored when the request specifies +// neither MediaEncryption nor Media. A prior version called req.Upgrade() at the top of +// NewCreateSIPParticipantRequest, which pinned req.Media.Encryption to req.MediaEncryption (0) +// before the trunk was consulted, causing outbound INVITEs to omit SRTP and upstream +// providers (e.g. Twilio) to reject with 488 / 32208. +func TestNewCreateSIPParticipantRequest_TrunkOnlyEncryption(t *testing.T) { + r := &livekit.CreateSIPParticipantRequest{ + SipTrunkId: "trunk", + SipCallTo: "+3333", + RoomName: "room", + } + tr := &livekit.SIPOutboundTrunkInfo{ + SipTrunkId: "trunk", + Address: "sip.example.com", + Numbers: []string{"+1111"}, + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, + } + res, err := NewCreateSIPParticipantRequest("p_123", "call-id", "xyz.sip.livekit.cloud", "url", "token", r, tr) + require.NoError(t, err) + require.Equal(t, livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, res.MediaEncryption) + require.NotNil(t, res.Media) + require.NotNil(t, res.Media.Encryption) + require.Equal(t, livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, *res.Media.Encryption) } diff --git a/sip/sip.go b/sip/sip.go index 69500c3bb..5cc741e1a 100644 --- a/sip/sip.go +++ b/sip/sip.go @@ -28,6 +28,7 @@ import ( "github.com/dennwc/iters" "github.com/twitchtv/twirp" "golang.org/x/exp/slices" + "google.golang.org/protobuf/proto" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" @@ -301,7 +302,7 @@ func NormalizeNumber(num string) string { func validateTrunkInbound(byInbound map[string]*livekit.SIPInboundTrunkInfo, t *livekit.SIPInboundTrunkInfo, opt *matchTrunkOpts) error { if len(t.AllowedNumbers) == 0 { - if t2 := byInbound[""]; t2 != nil { + if t2 := byInbound[""]; t2 != nil && t2.SipTrunkId != t.SipTrunkId { opt.Conflict(t, t2, TrunkConflictCalledNumber) if opt.AllowConflicts { return nil @@ -311,10 +312,18 @@ func validateTrunkInbound(byInbound map[string]*livekit.SIPInboundTrunkInfo, t * } byInbound[""] = t } else { + var seen map[string]struct{} for _, num := range t.AllowedNumbers { inboundKey := NormalizeNumber(num) + if _, ok := seen[inboundKey]; ok { + continue + } + if seen == nil { + seen = make(map[string]struct{}) + } + seen[inboundKey] = struct{}{} t2 := byInbound[inboundKey] - if t2 != nil { + if t2 != nil && t2.SipTrunkId != t.SipTrunkId { opt.Conflict(t, t2, TrunkConflictCallingNumber) if opt.AllowConflicts { continue @@ -362,11 +371,22 @@ func ValidateTrunksIter(it iters.Iter[*livekit.SIPInboundTrunkInfo], opts ...Mat return err } } else { + var seen map[string]struct{} for _, num := range t.Numbers { - byInbound := byOutboundAndInbound[num] + // Normalize so different forms of the same number (e.g. "+123" and "123") + // share a conflict bucket across trunks. + key := NormalizeNumber(num) + if _, ok := seen[key]; ok { + continue + } + if seen == nil { + seen = make(map[string]struct{}) + } + seen[key] = struct{}{} + byInbound := byOutboundAndInbound[key] if byInbound == nil { byInbound = make(map[string]*livekit.SIPInboundTrunkInfo) - byOutboundAndInbound[num] = byInbound + byOutboundAndInbound[key] = byInbound } if err := validateTrunkInbound(byInbound, t, &opt); err != nil { return err @@ -814,6 +834,7 @@ func MatchDispatchRuleIter(trunk *livekit.SIPInboundTrunkInfo, rules iters.Iter[ // EvaluateDispatchRule checks a selected Dispatch Rule against the provided request. func EvaluateDispatchRule(projectID string, trunk *livekit.SIPInboundTrunkInfo, rule *livekit.SIPDispatchRuleInfo, req *rpc.EvaluateSIPDispatchRulesRequest) (*rpc.EvaluateSIPDispatchRulesResponse, error) { + rule.Upgrade() call := req.SIPCall() sentPin := req.GetPin() @@ -868,6 +889,7 @@ func EvaluateDispatchRule(projectID string, trunk *livekit.SIPInboundTrunkInfo, SipDispatchRuleId: rule.SipDispatchRuleId, Result: rpc.SIPDispatchResult_REQUEST_PIN, MediaEncryption: enc, + Media: rule.Media, RequestPin: true, }, nil } @@ -929,6 +951,10 @@ func EvaluateDispatchRule(projectID string, trunk *livekit.SIPInboundTrunkInfo, if rule.MediaEncryption != 0 { resp.MediaEncryption = rule.MediaEncryption } + media := proto.CloneOf(rule.Media) + media = media.UpgradeWith(resp.MediaEncryption) + resp.Media = media + resp.MediaEncryption = media.Encryption.Deref() } if krispEnabled { resp.EnabledFeatures = append(resp.EnabledFeatures, livekit.SIPFeature_KRISP_ENABLED) diff --git a/sip/sip_test.go b/sip/sip_test.go index d4f3258dc..53adf41f6 100644 --- a/sip/sip_test.go +++ b/sip/sip_test.go @@ -22,6 +22,7 @@ import ( "testing" "github.com/dennwc/iters" + "google.golang.org/protobuf/proto" "github.com/stretchr/testify/require" @@ -332,6 +333,39 @@ func TestSIPValidateTrunks(t *testing.T) { } } +// TestSIPValidateTrunksNormalizedNumbers verifies conflict detection treats different +// forms of the same number as equivalent. A single trunk listing the same number in +// multiple forms must not be flagged against itself; two different trunks listing the +// same number in different forms must be flagged as conflicting. +func TestSIPValidateTrunksNormalizedNumbers(t *testing.T) { + t.Run("same trunk duplicate Numbers forms", func(t *testing.T) { + trunks := []*livekit.SIPInboundTrunkInfo{ + {SipTrunkId: "aaa", Numbers: []string{"+" + sipNumber2, sipNumber2}}, + } + require.NoError(t, ValidateTrunks(trunks)) + }) + t.Run("same trunk duplicate AllowedNumbers forms", func(t *testing.T) { + trunks := []*livekit.SIPInboundTrunkInfo{ + {SipTrunkId: "aaa", Numbers: []string{sipNumber2}, AllowedNumbers: []string{"+" + sipNumber1, sipNumber1}}, + } + require.NoError(t, ValidateTrunks(trunks)) + }) + t.Run("different trunks different Numbers forms", func(t *testing.T) { + trunks := []*livekit.SIPInboundTrunkInfo{ + {SipTrunkId: "aaa", Numbers: []string{"+" + sipNumber2}}, + {SipTrunkId: "bbb", Numbers: []string{sipNumber2}}, + } + require.Error(t, ValidateTrunks(trunks)) + }) + t.Run("different trunks different AllowedNumbers forms", func(t *testing.T) { + trunks := []*livekit.SIPInboundTrunkInfo{ + {SipTrunkId: "aaa", Numbers: []string{sipNumber2}, AllowedNumbers: []string{"+" + sipNumber1}}, + {SipTrunkId: "bbb", Numbers: []string{sipNumber2}, AllowedNumbers: []string{sipNumber1}}, + } + require.Error(t, ValidateTrunks(trunks)) + }) +} + func newSIPTrunkDispatch() *livekit.SIPTrunkInfo { return &livekit.SIPTrunkInfo{ SipTrunkId: sipTrunkID1, @@ -744,6 +778,7 @@ func TestEvaluateDispatchRule(t *testing.T) { Attributes: map[string]string{ "rule-attr": "1", }, + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, } r := &rpc.EvaluateSIPDispatchRulesRequest{ SipCallId: "call-id", @@ -757,7 +792,7 @@ func TestEvaluateDispatchRule(t *testing.T) { tr := &livekit.SIPInboundTrunkInfo{SipTrunkId: "trunk"} res, err := EvaluateDispatchRule("p_123", tr, d, r) require.NoError(t, err) - require.Equal(t, &rpc.EvaluateSIPDispatchRulesResponse{ + exp := &rpc.EvaluateSIPDispatchRulesResponse{ ProjectId: "p_123", Result: rpc.SIPDispatchResult_ACCEPT, SipTrunkId: "trunk", @@ -776,12 +811,21 @@ func TestEvaluateDispatchRule(t *testing.T) { livekit.AttrSIPTrunkNumber: "+3333", livekit.AttrSIPHostName: "sip.example.com", }, - }, res) + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, + Media: &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE), + }, + } + require.True(t, proto.Equal(exp, res), "%v\nvs\n%v", exp, res) d.HidePhoneNumber = true + d.MediaEncryption = 0 + d.Media = &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW), + } res, err = EvaluateDispatchRule("p_123", tr, d, r) require.NoError(t, err) - require.Equal(t, &rpc.EvaluateSIPDispatchRulesResponse{ + exp = &rpc.EvaluateSIPDispatchRulesResponse{ ProjectId: "p_123", Result: rpc.SIPDispatchResult_ACCEPT, SipTrunkId: "trunk", @@ -797,7 +841,12 @@ func TestEvaluateDispatchRule(t *testing.T) { livekit.AttrSIPTrunkID: "trunk", livekit.AttrSIPDispatchRuleID: "rule", }, - }, res) + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW, + Media: &livekit.SIPMediaConfig{ + Encryption: new(livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_ALLOW), + }, + } + require.True(t, proto.Equal(exp, res), "%v\nvs\n%v", exp, res) }) t.Run("Individual", func(t *testing.T) { t.Run("minimal", func(t *testing.T) { @@ -884,6 +933,34 @@ func TestEvaluateDispatchRule(t *testing.T) { }) } +// Regression: trunk-level MediaEncryption must be honored when the dispatch rule specifies +// neither MediaEncryption nor Media. A prior version called rule.Upgrade() at the top of +// EvaluateDispatchRule, which pinned rule.Media.Encryption to rule.MediaEncryption (0) +// before the trunk was consulted, causing the inbound trunk's encryption setting to be +// silently dropped. +func TestEvaluateDispatchRule_TrunkOnlyEncryption(t *testing.T) { + d := &livekit.SIPDispatchRuleInfo{ + SipDispatchRuleId: "rule", + Rule: newDirectDispatch("room", ""), + } + r := &rpc.EvaluateSIPDispatchRulesRequest{ + SipCallId: "call-id", + CallingNumber: "+11112222", + CallingHost: "sip.example.com", + CalledNumber: "+3333", + } + tr := &livekit.SIPInboundTrunkInfo{ + SipTrunkId: "trunk", + MediaEncryption: livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, + } + res, err := EvaluateDispatchRule("p_123", tr, d, r) + require.NoError(t, err) + require.Equal(t, livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, res.MediaEncryption) + require.NotNil(t, res.Media) + require.NotNil(t, res.Media.Encryption) + require.Equal(t, livekit.SIPMediaEncryption_SIP_MEDIA_ENCRYPT_REQUIRE, *res.Media.Encryption) +} + func TestMatchIP(t *testing.T) { cases := []struct { addr string diff --git a/utils/interceptors/curl.go b/utils/interceptors/curl.go index d64adf2cb..4169dcf27 100644 --- a/utils/interceptors/curl.go +++ b/utils/interceptors/curl.go @@ -8,8 +8,9 @@ import ( "sort" "github.com/twitchtv/twirp" - "google.golang.org/protobuf/encoding/protojson" "google.golang.org/protobuf/proto" + + "github.com/livekit/protocol/utils/protojson" ) // NewCurlPrinter creates a Twirp interceptor that prints a curl commands for each request made. diff --git a/utils/protojson/protojson.go b/utils/protojson/protojson.go new file mode 100644 index 000000000..a4496bb2c --- /dev/null +++ b/utils/protojson/protojson.go @@ -0,0 +1,45 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package protojson + +import ( + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +type MarshalOptions = protojson.MarshalOptions +type UnmarshalOptions = protojson.UnmarshalOptions + +// Format formats the message as a multiline string. +// This function is only intended for human consumption and ignores errors. +// Do not depend on the output being stable. Its output will change across +// different builds of your program, even when using the same version of the +// protobuf module. +func Format(m proto.Message) string { + return MarshalOptions{ + Multiline: true, + AllowPartial: true, + }.Format(m) +} + +// Marshal writes the given [proto.Message] in JSON format using permissive +// options that avoid errors due to schema drift. Do not depend on the output +// being stable. Its output will change across different builds of your program, +// even when using the same version of the protobuf module. +func Marshal(m proto.Message) ([]byte, error) { + return MarshalOptions{ + AllowPartial: true, + }.Marshal(m) +} + +// Unmarshal reads the given []byte into the given [proto.Message] using +// permissive options that avoid errors due to schema drift. The provided +// message must be mutable (e.g., a non-nil pointer to a message). +func Unmarshal(b []byte, m proto.Message) error { + return UnmarshalOptions{ + AllowPartial: true, + DiscardUnknown: true, + }.Unmarshal(b, m) +} diff --git a/webhook/resource_url_notifier.go b/webhook/resource_url_notifier.go index 8b88b38fc..895f9ed76 100644 --- a/webhook/resource_url_notifier.go +++ b/webhook/resource_url_notifier.go @@ -28,12 +28,12 @@ import ( "github.com/frostbyte73/core" "github.com/hashicorp/go-retryablehttp" - "google.golang.org/protobuf/encoding/protojson" "github.com/livekit/protocol/auth" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" "github.com/livekit/protocol/utils" + "github.com/livekit/protocol/utils/protojson" ) const ( diff --git a/webhook/url_notifier.go b/webhook/url_notifier.go index 9317878e1..ee96c376f 100644 --- a/webhook/url_notifier.go +++ b/webhook/url_notifier.go @@ -28,11 +28,11 @@ import ( "github.com/frostbyte73/core" "github.com/hashicorp/go-retryablehttp" "go.uber.org/atomic" - "google.golang.org/protobuf/encoding/protojson" "github.com/livekit/protocol/auth" "github.com/livekit/protocol/livekit" "github.com/livekit/protocol/logger" + "github.com/livekit/protocol/utils/protojson" ) type URLNotifierConfig struct { diff --git a/webhook/verifier.go b/webhook/verifier.go index 69eda2111..45c24297f 100644 --- a/webhook/verifier.go +++ b/webhook/verifier.go @@ -21,10 +21,9 @@ import ( "io" "net/http" - "google.golang.org/protobuf/encoding/protojson" - "github.com/livekit/protocol/auth" "github.com/livekit/protocol/livekit" + "github.com/livekit/protocol/utils/protojson" ) // Receive reads and verifies incoming webhook is signed with key/secret pair