@finsemble/finsemble-electron-adapter 6.2.1 → 6.3.1-beta-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.js +1 -1
- package/dist/e2o.js +1 -1
- package/dist/e2o_view.js +1 -1
- package/dist/exports.js +1 -1
- package/dist/grpc/grpc.ts +9 -0
- package/exports.js +2 -1
- package/node_modules/@grpc/grpc-js/README.md +2 -0
- package/node_modules/@grpc/grpc-js/build/src/admin.d.ts +11 -0
- package/node_modules/@grpc/grpc-js/build/src/admin.js +31 -0
- package/node_modules/@grpc/grpc-js/build/src/admin.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/call-credentials-filter.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/call-stream.d.ts +14 -5
- package/node_modules/@grpc/grpc-js/build/src/call-stream.js +56 -20
- package/node_modules/@grpc/grpc-js/build/src/call-stream.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/call.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/channel-options.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/channel.d.ts +16 -7
- package/node_modules/@grpc/grpc-js/build/src/channel.js +138 -59
- package/node_modules/@grpc/grpc-js/build/src/channel.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/channelz.d.ts +122 -0
- package/node_modules/@grpc/grpc-js/build/src/channelz.js +568 -0
- package/node_modules/@grpc/grpc-js/build/src/channelz.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/client-interceptors.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/client.js +2 -1
- package/node_modules/@grpc/grpc-js/build/src/client.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/constants.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/deadline-filter.d.ts +3 -0
- package/node_modules/@grpc/grpc-js/build/src/deadline-filter.js +19 -5
- package/node_modules/@grpc/grpc-js/build/src/deadline-filter.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/experimental.d.ts +6 -5
- package/node_modules/@grpc/grpc-js/build/src/experimental.js +5 -2
- package/node_modules/@grpc/grpc-js/build/src/experimental.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/filter-stack.d.ts +4 -0
- package/node_modules/@grpc/grpc-js/build/src/filter-stack.js +14 -0
- package/node_modules/@grpc/grpc-js/build/src/filter-stack.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/filter.d.ts +2 -0
- package/node_modules/@grpc/grpc-js/build/src/filter.js +1 -0
- package/node_modules/@grpc/grpc-js/build/src/filter.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/generated/channelz.d.ts +72 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/channelz.js +3 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/channelz.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Any.d.ts +10 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Any.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Any.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BoolValue.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BoolValue.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BoolValue.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BytesValue.d.ts +7 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BytesValue.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/BytesValue.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/DoubleValue.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/DoubleValue.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/DoubleValue.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Duration.d.ts +10 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Duration.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Duration.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/FloatValue.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/FloatValue.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/FloatValue.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int32Value.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int32Value.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int32Value.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int64Value.d.ts +8 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int64Value.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int64Value.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/StringValue.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/StringValue.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/StringValue.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Timestamp.d.ts +10 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Timestamp.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Timestamp.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt32Value.d.ts +6 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt32Value.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt32Value.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt64Value.d.ts +8 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt64Value.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/UInt64Value.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Address.d.ts +80 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Address.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Address.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channel.d.ts +64 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channel.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channel.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelConnectivityState.d.ts +22 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelConnectivityState.js +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelConnectivityState.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelData.d.ts +73 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelData.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelData.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelRef.d.ts +28 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelRef.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelRef.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTrace.d.ts +42 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTrace.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTrace.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTraceEvent.d.ts +66 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTraceEvent.js +16 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTraceEvent.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channelz.d.ts +159 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channelz.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channelz.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelRequest.d.ts +14 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelResponse.d.ts +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerRequest.d.ts +14 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerResponse.d.ts +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsRequest.d.ts +36 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsResponse.d.ts +29 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersRequest.d.ts +34 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersResponse.d.ts +29 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketRequest.d.ts +26 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketResponse.d.ts +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelRequest.d.ts +14 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelResponse.d.ts +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsRequest.d.ts +34 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsRequest.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsRequest.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsResponse.d.ts +29 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsResponse.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsResponse.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Security.d.ts +80 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Security.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Security.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Server.d.ts +41 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Server.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Server.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerData.d.ts +54 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerData.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerData.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerRef.d.ts +28 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerRef.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerRef.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Socket.d.ts +66 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Socket.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Socket.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketData.d.ts +147 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketData.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketData.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOption.d.ts +43 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOption.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOption.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionLinger.d.ts +29 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionLinger.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionLinger.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.d.ts +70 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTimeout.d.ts +15 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTimeout.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTimeout.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketRef.d.ts +28 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketRef.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketRef.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Subchannel.d.ts +66 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Subchannel.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Subchannel.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SubchannelRef.d.ts +28 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SubchannelRef.js +4 -0
- package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SubchannelRef.js.map +1 -0
- package/node_modules/@grpc/grpc-js/build/src/http_proxy.d.ts +1 -1
- package/node_modules/@grpc/grpc-js/build/src/http_proxy.js +11 -8
- package/node_modules/@grpc/grpc-js/build/src/http_proxy.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/index.d.ts +7 -4
- package/node_modules/@grpc/grpc-js/build/src/index.js +19 -5
- package/node_modules/@grpc/grpc-js/build/src/index.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.d.ts +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.js +8 -2
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-pick-first.d.ts +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-pick-first.js +56 -49
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-pick-first.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-round-robin.d.ts +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-round-robin.js +34 -31
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-round-robin.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/load-balancer.d.ts +17 -4
- package/node_modules/@grpc/grpc-js/build/src/load-balancer.js +36 -13
- package/node_modules/@grpc/grpc-js/build/src/load-balancer.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/logging.js +35 -4
- package/node_modules/@grpc/grpc-js/build/src/logging.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/max-message-size-filter.d.ts +3 -3
- package/node_modules/@grpc/grpc-js/build/src/max-message-size-filter.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/metadata.d.ts +7 -0
- package/node_modules/@grpc/grpc-js/build/src/metadata.js +11 -0
- package/node_modules/@grpc/grpc-js/build/src/metadata.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/picker.d.ts +5 -5
- package/node_modules/@grpc/grpc-js/build/src/picker.js +2 -2
- package/node_modules/@grpc/grpc-js/build/src/picker.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/resolver-dns.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/resolver-ip.js +6 -5
- package/node_modules/@grpc/grpc-js/build/src/resolver-ip.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/resolver.d.ts +3 -2
- package/node_modules/@grpc/grpc-js/build/src/resolver.js +1 -10
- package/node_modules/@grpc/grpc-js/build/src/resolver.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/resolving-load-balancer.d.ts +1 -1
- package/node_modules/@grpc/grpc-js/build/src/resolving-load-balancer.js +23 -18
- package/node_modules/@grpc/grpc-js/build/src/resolving-load-balancer.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/server-call.js +7 -3
- package/node_modules/@grpc/grpc-js/build/src/server-call.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/server.d.ts +10 -0
- package/node_modules/@grpc/grpc-js/build/src/server.js +230 -42
- package/node_modules/@grpc/grpc-js/build/src/server.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/service-config.d.ts +5 -1
- package/node_modules/@grpc/grpc-js/build/src/service-config.js +23 -3
- package/node_modules/@grpc/grpc-js/build/src/service-config.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel-address.d.ts +1 -0
- package/node_modules/@grpc/grpc-js/build/src/subchannel-address.js +17 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel-address.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel-pool.d.ts +2 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel-pool.js +2 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel-pool.js.map +1 -1
- package/node_modules/@grpc/grpc-js/build/src/subchannel.d.ts +30 -19
- package/node_modules/@grpc/grpc-js/build/src/subchannel.js +180 -78
- package/node_modules/@grpc/grpc-js/build/src/subchannel.js.map +1 -1
- package/node_modules/@grpc/grpc-js/node_modules/.bin/proto-loader-gen-types +15 -0
- package/node_modules/@grpc/grpc-js/node_modules/.bin/proto-loader-gen-types.cmd +7 -0
- package/node_modules/@grpc/grpc-js/package.json +9 -6
- package/node_modules/@grpc/grpc-js/proto/channelz.proto +564 -0
- package/node_modules/@grpc/grpc-js/src/admin.ts +39 -0
- package/node_modules/@grpc/grpc-js/src/call-credentials-filter.ts +3 -1
- package/node_modules/@grpc/grpc-js/src/call-stream.ts +75 -23
- package/node_modules/@grpc/grpc-js/src/call.ts +8 -4
- package/node_modules/@grpc/grpc-js/src/channel-options.ts +1 -0
- package/node_modules/@grpc/grpc-js/src/channel.ts +183 -73
- package/node_modules/@grpc/grpc-js/src/channelz.ts +727 -0
- package/node_modules/@grpc/grpc-js/src/client-interceptors.ts +8 -3
- package/node_modules/@grpc/grpc-js/src/client.ts +18 -16
- package/node_modules/@grpc/grpc-js/src/connectivity-state.ts +24 -0
- package/node_modules/@grpc/grpc-js/src/constants.ts +5 -1
- package/node_modules/@grpc/grpc-js/src/deadline-filter.ts +21 -5
- package/node_modules/@grpc/grpc-js/src/experimental.ts +36 -12
- package/node_modules/@grpc/grpc-js/src/filter-stack.ts +18 -0
- package/node_modules/@grpc/grpc-js/src/filter.ts +4 -0
- package/node_modules/@grpc/grpc-js/src/generated/channelz.ts +73 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/Any.ts +13 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/BoolValue.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/BytesValue.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/DoubleValue.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/Duration.ts +13 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/FloatValue.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/Int32Value.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/Int64Value.ts +11 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/StringValue.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/Timestamp.ts +13 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/UInt32Value.ts +10 -0
- package/node_modules/@grpc/grpc-js/src/generated/google/protobuf/UInt64Value.ts +11 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Address.ts +89 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Channel.ts +68 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ChannelConnectivityState.ts +29 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ChannelData.ts +76 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ChannelRef.ts +31 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ChannelTrace.ts +45 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ChannelTraceEvent.ts +73 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Channelz.ts +178 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetChannelRequest.ts +17 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetChannelResponse.ts +19 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServerRequest.ts +17 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServerResponse.ts +19 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServerSocketsRequest.ts +39 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServerSocketsResponse.ts +33 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServersRequest.ts +37 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetServersResponse.ts +33 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetSocketRequest.ts +29 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetSocketResponse.ts +19 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetSubchannelRequest.ts +17 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetSubchannelResponse.ts +19 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetTopChannelsRequest.ts +37 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/GetTopChannelsResponse.ts +33 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Security.ts +87 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Server.ts +45 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ServerData.ts +57 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/ServerRef.ts +31 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Socket.ts +70 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketData.ts +150 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketOption.ts +47 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketOptionLinger.ts +33 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.ts +74 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketOptionTimeout.ts +19 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SocketRef.ts +31 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Subchannel.ts +70 -0
- package/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/SubchannelRef.ts +31 -0
- package/node_modules/@grpc/grpc-js/src/http_proxy.ts +15 -11
- package/node_modules/@grpc/grpc-js/src/index.ts +29 -6
- package/node_modules/@grpc/grpc-js/src/load-balancer-child-handler.ts +12 -3
- package/node_modules/@grpc/grpc-js/src/load-balancer-pick-first.ts +19 -8
- package/node_modules/@grpc/grpc-js/src/load-balancer-round-robin.ts +15 -9
- package/node_modules/@grpc/grpc-js/src/load-balancer.ts +60 -21
- package/node_modules/@grpc/grpc-js/src/logging.ts +43 -7
- package/node_modules/@grpc/grpc-js/src/make-client.ts +1 -1
- package/node_modules/@grpc/grpc-js/src/max-message-size-filter.ts +18 -7
- package/node_modules/@grpc/grpc-js/src/metadata.ts +12 -0
- package/node_modules/@grpc/grpc-js/src/picker.ts +8 -8
- package/node_modules/@grpc/grpc-js/src/resolver-dns.ts +8 -2
- package/node_modules/@grpc/grpc-js/src/resolver-ip.ts +25 -16
- package/node_modules/@grpc/grpc-js/src/resolver-uds.ts +1 -1
- package/node_modules/@grpc/grpc-js/src/resolver.ts +5 -12
- package/node_modules/@grpc/grpc-js/src/resolving-load-balancer.ts +36 -14
- package/node_modules/@grpc/grpc-js/src/server-call.ts +11 -5
- package/node_modules/@grpc/grpc-js/src/server.ts +250 -44
- package/node_modules/@grpc/grpc-js/src/service-config.ts +35 -6
- package/node_modules/@grpc/grpc-js/src/subchannel-address.ts +79 -0
- package/node_modules/@grpc/grpc-js/src/subchannel-pool.ts +2 -2
- package/node_modules/@grpc/grpc-js/src/subchannel.ts +206 -97
- package/node_modules/@grpc/proto-loader/build/bin/proto-loader-gen-types.js +34 -0
- package/node_modules/@grpc/proto-loader/build/src/index.js +3 -0
- package/node_modules/@grpc/proto-loader/package.json +1 -1
- package/node_modules/{yargs/node_modules/y18n → y18n}/CHANGELOG.md +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/LICENSE +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/README.md +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/build/index.cjs +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/build/lib/cjs.js +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/build/lib/index.js +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/build/lib/platform-shims/node.js +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/index.mjs +0 -0
- package/node_modules/{yargs/node_modules/y18n → y18n}/package.json +0 -0
- package/package.json +41 -24
- package/dist/e2o.js.LICENSE.txt +0 -12
- package/dist/e2o_view.js.LICENSE.txt +0 -12
- package/dist/grpc/grpc.js +0 -8
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-registry.d.ts +0 -7
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-registry.js +0 -83
- package/node_modules/@grpc/grpc-js/build/src/load-balancer-registry.js.map +0 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/// <reference types="long" />
|
|
2
|
+
import type { ChannelTrace as _grpc_channelz_v1_ChannelTrace, ChannelTrace__Output as _grpc_channelz_v1_ChannelTrace__Output } from '../../../grpc/channelz/v1/ChannelTrace';
|
|
3
|
+
import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '../../../google/protobuf/Timestamp';
|
|
4
|
+
import type { Long } from '@grpc/proto-loader';
|
|
5
|
+
/**
|
|
6
|
+
* ServerData is data for a specific Server.
|
|
7
|
+
*/
|
|
8
|
+
export interface ServerData {
|
|
9
|
+
/**
|
|
10
|
+
* A trace of recent events on the server. May be absent.
|
|
11
|
+
*/
|
|
12
|
+
'trace'?: (_grpc_channelz_v1_ChannelTrace | null);
|
|
13
|
+
/**
|
|
14
|
+
* The number of incoming calls started on the server
|
|
15
|
+
*/
|
|
16
|
+
'calls_started'?: (number | string | Long);
|
|
17
|
+
/**
|
|
18
|
+
* The number of incoming calls that have completed with an OK status
|
|
19
|
+
*/
|
|
20
|
+
'calls_succeeded'?: (number | string | Long);
|
|
21
|
+
/**
|
|
22
|
+
* The number of incoming calls that have a completed with a non-OK status
|
|
23
|
+
*/
|
|
24
|
+
'calls_failed'?: (number | string | Long);
|
|
25
|
+
/**
|
|
26
|
+
* The last time a call was started on the server.
|
|
27
|
+
*/
|
|
28
|
+
'last_call_started_timestamp'?: (_google_protobuf_Timestamp | null);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* ServerData is data for a specific Server.
|
|
32
|
+
*/
|
|
33
|
+
export interface ServerData__Output {
|
|
34
|
+
/**
|
|
35
|
+
* A trace of recent events on the server. May be absent.
|
|
36
|
+
*/
|
|
37
|
+
'trace': (_grpc_channelz_v1_ChannelTrace__Output | null);
|
|
38
|
+
/**
|
|
39
|
+
* The number of incoming calls started on the server
|
|
40
|
+
*/
|
|
41
|
+
'calls_started': (string);
|
|
42
|
+
/**
|
|
43
|
+
* The number of incoming calls that have completed with an OK status
|
|
44
|
+
*/
|
|
45
|
+
'calls_succeeded': (string);
|
|
46
|
+
/**
|
|
47
|
+
* The number of incoming calls that have a completed with a non-OK status
|
|
48
|
+
*/
|
|
49
|
+
'calls_failed': (string);
|
|
50
|
+
/**
|
|
51
|
+
* The last time a call was started on the server.
|
|
52
|
+
*/
|
|
53
|
+
'last_call_started_timestamp': (_google_protobuf_Timestamp__Output | null);
|
|
54
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServerData.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/ServerData.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/// <reference types="long" />
|
|
2
|
+
import type { Long } from '@grpc/proto-loader';
|
|
3
|
+
/**
|
|
4
|
+
* ServerRef is a reference to a Server.
|
|
5
|
+
*/
|
|
6
|
+
export interface ServerRef {
|
|
7
|
+
/**
|
|
8
|
+
* A globally unique identifier for this server. Must be a positive number.
|
|
9
|
+
*/
|
|
10
|
+
'server_id'?: (number | string | Long);
|
|
11
|
+
/**
|
|
12
|
+
* An optional name associated with the server.
|
|
13
|
+
*/
|
|
14
|
+
'name'?: (string);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* ServerRef is a reference to a Server.
|
|
18
|
+
*/
|
|
19
|
+
export interface ServerRef__Output {
|
|
20
|
+
/**
|
|
21
|
+
* A globally unique identifier for this server. Must be a positive number.
|
|
22
|
+
*/
|
|
23
|
+
'server_id': (string);
|
|
24
|
+
/**
|
|
25
|
+
* An optional name associated with the server.
|
|
26
|
+
*/
|
|
27
|
+
'name': (string);
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServerRef.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/ServerRef.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { SocketRef as _grpc_channelz_v1_SocketRef, SocketRef__Output as _grpc_channelz_v1_SocketRef__Output } from '../../../grpc/channelz/v1/SocketRef';
|
|
2
|
+
import type { SocketData as _grpc_channelz_v1_SocketData, SocketData__Output as _grpc_channelz_v1_SocketData__Output } from '../../../grpc/channelz/v1/SocketData';
|
|
3
|
+
import type { Address as _grpc_channelz_v1_Address, Address__Output as _grpc_channelz_v1_Address__Output } from '../../../grpc/channelz/v1/Address';
|
|
4
|
+
import type { Security as _grpc_channelz_v1_Security, Security__Output as _grpc_channelz_v1_Security__Output } from '../../../grpc/channelz/v1/Security';
|
|
5
|
+
/**
|
|
6
|
+
* Information about an actual connection. Pronounced "sock-ay".
|
|
7
|
+
*/
|
|
8
|
+
export interface Socket {
|
|
9
|
+
/**
|
|
10
|
+
* The identifier for the Socket.
|
|
11
|
+
*/
|
|
12
|
+
'ref'?: (_grpc_channelz_v1_SocketRef | null);
|
|
13
|
+
/**
|
|
14
|
+
* Data specific to this Socket.
|
|
15
|
+
*/
|
|
16
|
+
'data'?: (_grpc_channelz_v1_SocketData | null);
|
|
17
|
+
/**
|
|
18
|
+
* The locally bound address.
|
|
19
|
+
*/
|
|
20
|
+
'local'?: (_grpc_channelz_v1_Address | null);
|
|
21
|
+
/**
|
|
22
|
+
* The remote bound address. May be absent.
|
|
23
|
+
*/
|
|
24
|
+
'remote'?: (_grpc_channelz_v1_Address | null);
|
|
25
|
+
/**
|
|
26
|
+
* Security details for this socket. May be absent if not available, or
|
|
27
|
+
* there is no security on the socket.
|
|
28
|
+
*/
|
|
29
|
+
'security'?: (_grpc_channelz_v1_Security | null);
|
|
30
|
+
/**
|
|
31
|
+
* Optional, represents the name of the remote endpoint, if different than
|
|
32
|
+
* the original target name.
|
|
33
|
+
*/
|
|
34
|
+
'remote_name'?: (string);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Information about an actual connection. Pronounced "sock-ay".
|
|
38
|
+
*/
|
|
39
|
+
export interface Socket__Output {
|
|
40
|
+
/**
|
|
41
|
+
* The identifier for the Socket.
|
|
42
|
+
*/
|
|
43
|
+
'ref': (_grpc_channelz_v1_SocketRef__Output | null);
|
|
44
|
+
/**
|
|
45
|
+
* Data specific to this Socket.
|
|
46
|
+
*/
|
|
47
|
+
'data': (_grpc_channelz_v1_SocketData__Output | null);
|
|
48
|
+
/**
|
|
49
|
+
* The locally bound address.
|
|
50
|
+
*/
|
|
51
|
+
'local': (_grpc_channelz_v1_Address__Output | null);
|
|
52
|
+
/**
|
|
53
|
+
* The remote bound address. May be absent.
|
|
54
|
+
*/
|
|
55
|
+
'remote': (_grpc_channelz_v1_Address__Output | null);
|
|
56
|
+
/**
|
|
57
|
+
* Security details for this socket. May be absent if not available, or
|
|
58
|
+
* there is no security on the socket.
|
|
59
|
+
*/
|
|
60
|
+
'security': (_grpc_channelz_v1_Security__Output | null);
|
|
61
|
+
/**
|
|
62
|
+
* Optional, represents the name of the remote endpoint, if different than
|
|
63
|
+
* the original target name.
|
|
64
|
+
*/
|
|
65
|
+
'remote_name': (string);
|
|
66
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Socket.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/Socket.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
/// <reference types="long" />
|
|
2
|
+
import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '../../../google/protobuf/Timestamp';
|
|
3
|
+
import type { Int64Value as _google_protobuf_Int64Value, Int64Value__Output as _google_protobuf_Int64Value__Output } from '../../../google/protobuf/Int64Value';
|
|
4
|
+
import type { SocketOption as _grpc_channelz_v1_SocketOption, SocketOption__Output as _grpc_channelz_v1_SocketOption__Output } from '../../../grpc/channelz/v1/SocketOption';
|
|
5
|
+
import type { Long } from '@grpc/proto-loader';
|
|
6
|
+
/**
|
|
7
|
+
* SocketData is data associated for a specific Socket. The fields present
|
|
8
|
+
* are specific to the implementation, so there may be minor differences in
|
|
9
|
+
* the semantics. (e.g. flow control windows)
|
|
10
|
+
*/
|
|
11
|
+
export interface SocketData {
|
|
12
|
+
/**
|
|
13
|
+
* The number of streams that have been started.
|
|
14
|
+
*/
|
|
15
|
+
'streams_started'?: (number | string | Long);
|
|
16
|
+
/**
|
|
17
|
+
* The number of streams that have ended successfully:
|
|
18
|
+
* On client side, received frame with eos bit set;
|
|
19
|
+
* On server side, sent frame with eos bit set.
|
|
20
|
+
*/
|
|
21
|
+
'streams_succeeded'?: (number | string | Long);
|
|
22
|
+
/**
|
|
23
|
+
* The number of streams that have ended unsuccessfully:
|
|
24
|
+
* On client side, ended without receiving frame with eos bit set;
|
|
25
|
+
* On server side, ended without sending frame with eos bit set.
|
|
26
|
+
*/
|
|
27
|
+
'streams_failed'?: (number | string | Long);
|
|
28
|
+
/**
|
|
29
|
+
* The number of grpc messages successfully sent on this socket.
|
|
30
|
+
*/
|
|
31
|
+
'messages_sent'?: (number | string | Long);
|
|
32
|
+
/**
|
|
33
|
+
* The number of grpc messages received on this socket.
|
|
34
|
+
*/
|
|
35
|
+
'messages_received'?: (number | string | Long);
|
|
36
|
+
/**
|
|
37
|
+
* The number of keep alives sent. This is typically implemented with HTTP/2
|
|
38
|
+
* ping messages.
|
|
39
|
+
*/
|
|
40
|
+
'keep_alives_sent'?: (number | string | Long);
|
|
41
|
+
/**
|
|
42
|
+
* The last time a stream was created by this endpoint. Usually unset for
|
|
43
|
+
* servers.
|
|
44
|
+
*/
|
|
45
|
+
'last_local_stream_created_timestamp'?: (_google_protobuf_Timestamp | null);
|
|
46
|
+
/**
|
|
47
|
+
* The last time a stream was created by the remote endpoint. Usually unset
|
|
48
|
+
* for clients.
|
|
49
|
+
*/
|
|
50
|
+
'last_remote_stream_created_timestamp'?: (_google_protobuf_Timestamp | null);
|
|
51
|
+
/**
|
|
52
|
+
* The last time a message was sent by this endpoint.
|
|
53
|
+
*/
|
|
54
|
+
'last_message_sent_timestamp'?: (_google_protobuf_Timestamp | null);
|
|
55
|
+
/**
|
|
56
|
+
* The last time a message was received by this endpoint.
|
|
57
|
+
*/
|
|
58
|
+
'last_message_received_timestamp'?: (_google_protobuf_Timestamp | null);
|
|
59
|
+
/**
|
|
60
|
+
* The amount of window, granted to the local endpoint by the remote endpoint.
|
|
61
|
+
* This may be slightly out of date due to network latency. This does NOT
|
|
62
|
+
* include stream level or TCP level flow control info.
|
|
63
|
+
*/
|
|
64
|
+
'local_flow_control_window'?: (_google_protobuf_Int64Value | null);
|
|
65
|
+
/**
|
|
66
|
+
* The amount of window, granted to the remote endpoint by the local endpoint.
|
|
67
|
+
* This may be slightly out of date due to network latency. This does NOT
|
|
68
|
+
* include stream level or TCP level flow control info.
|
|
69
|
+
*/
|
|
70
|
+
'remote_flow_control_window'?: (_google_protobuf_Int64Value | null);
|
|
71
|
+
/**
|
|
72
|
+
* Socket options set on this socket. May be absent if 'summary' is set
|
|
73
|
+
* on GetSocketRequest.
|
|
74
|
+
*/
|
|
75
|
+
'option'?: (_grpc_channelz_v1_SocketOption)[];
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* SocketData is data associated for a specific Socket. The fields present
|
|
79
|
+
* are specific to the implementation, so there may be minor differences in
|
|
80
|
+
* the semantics. (e.g. flow control windows)
|
|
81
|
+
*/
|
|
82
|
+
export interface SocketData__Output {
|
|
83
|
+
/**
|
|
84
|
+
* The number of streams that have been started.
|
|
85
|
+
*/
|
|
86
|
+
'streams_started': (string);
|
|
87
|
+
/**
|
|
88
|
+
* The number of streams that have ended successfully:
|
|
89
|
+
* On client side, received frame with eos bit set;
|
|
90
|
+
* On server side, sent frame with eos bit set.
|
|
91
|
+
*/
|
|
92
|
+
'streams_succeeded': (string);
|
|
93
|
+
/**
|
|
94
|
+
* The number of streams that have ended unsuccessfully:
|
|
95
|
+
* On client side, ended without receiving frame with eos bit set;
|
|
96
|
+
* On server side, ended without sending frame with eos bit set.
|
|
97
|
+
*/
|
|
98
|
+
'streams_failed': (string);
|
|
99
|
+
/**
|
|
100
|
+
* The number of grpc messages successfully sent on this socket.
|
|
101
|
+
*/
|
|
102
|
+
'messages_sent': (string);
|
|
103
|
+
/**
|
|
104
|
+
* The number of grpc messages received on this socket.
|
|
105
|
+
*/
|
|
106
|
+
'messages_received': (string);
|
|
107
|
+
/**
|
|
108
|
+
* The number of keep alives sent. This is typically implemented with HTTP/2
|
|
109
|
+
* ping messages.
|
|
110
|
+
*/
|
|
111
|
+
'keep_alives_sent': (string);
|
|
112
|
+
/**
|
|
113
|
+
* The last time a stream was created by this endpoint. Usually unset for
|
|
114
|
+
* servers.
|
|
115
|
+
*/
|
|
116
|
+
'last_local_stream_created_timestamp': (_google_protobuf_Timestamp__Output | null);
|
|
117
|
+
/**
|
|
118
|
+
* The last time a stream was created by the remote endpoint. Usually unset
|
|
119
|
+
* for clients.
|
|
120
|
+
*/
|
|
121
|
+
'last_remote_stream_created_timestamp': (_google_protobuf_Timestamp__Output | null);
|
|
122
|
+
/**
|
|
123
|
+
* The last time a message was sent by this endpoint.
|
|
124
|
+
*/
|
|
125
|
+
'last_message_sent_timestamp': (_google_protobuf_Timestamp__Output | null);
|
|
126
|
+
/**
|
|
127
|
+
* The last time a message was received by this endpoint.
|
|
128
|
+
*/
|
|
129
|
+
'last_message_received_timestamp': (_google_protobuf_Timestamp__Output | null);
|
|
130
|
+
/**
|
|
131
|
+
* The amount of window, granted to the local endpoint by the remote endpoint.
|
|
132
|
+
* This may be slightly out of date due to network latency. This does NOT
|
|
133
|
+
* include stream level or TCP level flow control info.
|
|
134
|
+
*/
|
|
135
|
+
'local_flow_control_window': (_google_protobuf_Int64Value__Output | null);
|
|
136
|
+
/**
|
|
137
|
+
* The amount of window, granted to the remote endpoint by the local endpoint.
|
|
138
|
+
* This may be slightly out of date due to network latency. This does NOT
|
|
139
|
+
* include stream level or TCP level flow control info.
|
|
140
|
+
*/
|
|
141
|
+
'remote_flow_control_window': (_google_protobuf_Int64Value__Output | null);
|
|
142
|
+
/**
|
|
143
|
+
* Socket options set on this socket. May be absent if 'summary' is set
|
|
144
|
+
* on GetSocketRequest.
|
|
145
|
+
*/
|
|
146
|
+
'option': (_grpc_channelz_v1_SocketOption__Output)[];
|
|
147
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketData.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketData.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { Any as _google_protobuf_Any, Any__Output as _google_protobuf_Any__Output } from '../../../google/protobuf/Any';
|
|
2
|
+
/**
|
|
3
|
+
* SocketOption represents socket options for a socket. Specifically, these
|
|
4
|
+
* are the options returned by getsockopt().
|
|
5
|
+
*/
|
|
6
|
+
export interface SocketOption {
|
|
7
|
+
/**
|
|
8
|
+
* The full name of the socket option. Typically this will be the upper case
|
|
9
|
+
* name, such as "SO_REUSEPORT".
|
|
10
|
+
*/
|
|
11
|
+
'name'?: (string);
|
|
12
|
+
/**
|
|
13
|
+
* The human readable value of this socket option. At least one of value or
|
|
14
|
+
* additional will be set.
|
|
15
|
+
*/
|
|
16
|
+
'value'?: (string);
|
|
17
|
+
/**
|
|
18
|
+
* Additional data associated with the socket option. At least one of value
|
|
19
|
+
* or additional will be set.
|
|
20
|
+
*/
|
|
21
|
+
'additional'?: (_google_protobuf_Any | null);
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* SocketOption represents socket options for a socket. Specifically, these
|
|
25
|
+
* are the options returned by getsockopt().
|
|
26
|
+
*/
|
|
27
|
+
export interface SocketOption__Output {
|
|
28
|
+
/**
|
|
29
|
+
* The full name of the socket option. Typically this will be the upper case
|
|
30
|
+
* name, such as "SO_REUSEPORT".
|
|
31
|
+
*/
|
|
32
|
+
'name': (string);
|
|
33
|
+
/**
|
|
34
|
+
* The human readable value of this socket option. At least one of value or
|
|
35
|
+
* additional will be set.
|
|
36
|
+
*/
|
|
37
|
+
'value': (string);
|
|
38
|
+
/**
|
|
39
|
+
* Additional data associated with the socket option. At least one of value
|
|
40
|
+
* or additional will be set.
|
|
41
|
+
*/
|
|
42
|
+
'additional': (_google_protobuf_Any__Output | null);
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketOption.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketOption.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionLinger.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Duration as _google_protobuf_Duration, Duration__Output as _google_protobuf_Duration__Output } from '../../../google/protobuf/Duration';
|
|
2
|
+
/**
|
|
3
|
+
* For use with SocketOption's additional field. This is primarily used for
|
|
4
|
+
* SO_LINGER.
|
|
5
|
+
*/
|
|
6
|
+
export interface SocketOptionLinger {
|
|
7
|
+
/**
|
|
8
|
+
* active maps to `struct linger.l_onoff`
|
|
9
|
+
*/
|
|
10
|
+
'active'?: (boolean);
|
|
11
|
+
/**
|
|
12
|
+
* duration maps to `struct linger.l_linger`
|
|
13
|
+
*/
|
|
14
|
+
'duration'?: (_google_protobuf_Duration | null);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* For use with SocketOption's additional field. This is primarily used for
|
|
18
|
+
* SO_LINGER.
|
|
19
|
+
*/
|
|
20
|
+
export interface SocketOptionLinger__Output {
|
|
21
|
+
/**
|
|
22
|
+
* active maps to `struct linger.l_onoff`
|
|
23
|
+
*/
|
|
24
|
+
'active': (boolean);
|
|
25
|
+
/**
|
|
26
|
+
* duration maps to `struct linger.l_linger`
|
|
27
|
+
*/
|
|
28
|
+
'duration': (_google_protobuf_Duration__Output | null);
|
|
29
|
+
}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionLinger.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketOptionLinger.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketOptionLinger.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.d.ts
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* For use with SocketOption's additional field. Tcp info for
|
|
3
|
+
* SOL_TCP and TCP_INFO.
|
|
4
|
+
*/
|
|
5
|
+
export interface SocketOptionTcpInfo {
|
|
6
|
+
'tcpi_state'?: (number);
|
|
7
|
+
'tcpi_ca_state'?: (number);
|
|
8
|
+
'tcpi_retransmits'?: (number);
|
|
9
|
+
'tcpi_probes'?: (number);
|
|
10
|
+
'tcpi_backoff'?: (number);
|
|
11
|
+
'tcpi_options'?: (number);
|
|
12
|
+
'tcpi_snd_wscale'?: (number);
|
|
13
|
+
'tcpi_rcv_wscale'?: (number);
|
|
14
|
+
'tcpi_rto'?: (number);
|
|
15
|
+
'tcpi_ato'?: (number);
|
|
16
|
+
'tcpi_snd_mss'?: (number);
|
|
17
|
+
'tcpi_rcv_mss'?: (number);
|
|
18
|
+
'tcpi_unacked'?: (number);
|
|
19
|
+
'tcpi_sacked'?: (number);
|
|
20
|
+
'tcpi_lost'?: (number);
|
|
21
|
+
'tcpi_retrans'?: (number);
|
|
22
|
+
'tcpi_fackets'?: (number);
|
|
23
|
+
'tcpi_last_data_sent'?: (number);
|
|
24
|
+
'tcpi_last_ack_sent'?: (number);
|
|
25
|
+
'tcpi_last_data_recv'?: (number);
|
|
26
|
+
'tcpi_last_ack_recv'?: (number);
|
|
27
|
+
'tcpi_pmtu'?: (number);
|
|
28
|
+
'tcpi_rcv_ssthresh'?: (number);
|
|
29
|
+
'tcpi_rtt'?: (number);
|
|
30
|
+
'tcpi_rttvar'?: (number);
|
|
31
|
+
'tcpi_snd_ssthresh'?: (number);
|
|
32
|
+
'tcpi_snd_cwnd'?: (number);
|
|
33
|
+
'tcpi_advmss'?: (number);
|
|
34
|
+
'tcpi_reordering'?: (number);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* For use with SocketOption's additional field. Tcp info for
|
|
38
|
+
* SOL_TCP and TCP_INFO.
|
|
39
|
+
*/
|
|
40
|
+
export interface SocketOptionTcpInfo__Output {
|
|
41
|
+
'tcpi_state': (number);
|
|
42
|
+
'tcpi_ca_state': (number);
|
|
43
|
+
'tcpi_retransmits': (number);
|
|
44
|
+
'tcpi_probes': (number);
|
|
45
|
+
'tcpi_backoff': (number);
|
|
46
|
+
'tcpi_options': (number);
|
|
47
|
+
'tcpi_snd_wscale': (number);
|
|
48
|
+
'tcpi_rcv_wscale': (number);
|
|
49
|
+
'tcpi_rto': (number);
|
|
50
|
+
'tcpi_ato': (number);
|
|
51
|
+
'tcpi_snd_mss': (number);
|
|
52
|
+
'tcpi_rcv_mss': (number);
|
|
53
|
+
'tcpi_unacked': (number);
|
|
54
|
+
'tcpi_sacked': (number);
|
|
55
|
+
'tcpi_lost': (number);
|
|
56
|
+
'tcpi_retrans': (number);
|
|
57
|
+
'tcpi_fackets': (number);
|
|
58
|
+
'tcpi_last_data_sent': (number);
|
|
59
|
+
'tcpi_last_ack_sent': (number);
|
|
60
|
+
'tcpi_last_data_recv': (number);
|
|
61
|
+
'tcpi_last_ack_recv': (number);
|
|
62
|
+
'tcpi_pmtu': (number);
|
|
63
|
+
'tcpi_rcv_ssthresh': (number);
|
|
64
|
+
'tcpi_rtt': (number);
|
|
65
|
+
'tcpi_rttvar': (number);
|
|
66
|
+
'tcpi_snd_ssthresh': (number);
|
|
67
|
+
'tcpi_snd_cwnd': (number);
|
|
68
|
+
'tcpi_advmss': (number);
|
|
69
|
+
'tcpi_reordering': (number);
|
|
70
|
+
}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTcpInfo.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketOptionTcpInfo.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketOptionTcpInfo.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTimeout.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Duration as _google_protobuf_Duration, Duration__Output as _google_protobuf_Duration__Output } from '../../../google/protobuf/Duration';
|
|
2
|
+
/**
|
|
3
|
+
* For use with SocketOption's additional field. This is primarily used for
|
|
4
|
+
* SO_RCVTIMEO and SO_SNDTIMEO
|
|
5
|
+
*/
|
|
6
|
+
export interface SocketOptionTimeout {
|
|
7
|
+
'duration'?: (_google_protobuf_Duration | null);
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* For use with SocketOption's additional field. This is primarily used for
|
|
11
|
+
* SO_RCVTIMEO and SO_SNDTIMEO
|
|
12
|
+
*/
|
|
13
|
+
export interface SocketOptionTimeout__Output {
|
|
14
|
+
'duration': (_google_protobuf_Duration__Output | null);
|
|
15
|
+
}
|
package/node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOptionTimeout.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketOptionTimeout.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketOptionTimeout.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/// <reference types="long" />
|
|
2
|
+
import type { Long } from '@grpc/proto-loader';
|
|
3
|
+
/**
|
|
4
|
+
* SocketRef is a reference to a Socket.
|
|
5
|
+
*/
|
|
6
|
+
export interface SocketRef {
|
|
7
|
+
/**
|
|
8
|
+
* The globally unique id for this socket. Must be a positive number.
|
|
9
|
+
*/
|
|
10
|
+
'socket_id'?: (number | string | Long);
|
|
11
|
+
/**
|
|
12
|
+
* An optional name associated with the socket.
|
|
13
|
+
*/
|
|
14
|
+
'name'?: (string);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* SocketRef is a reference to a Socket.
|
|
18
|
+
*/
|
|
19
|
+
export interface SocketRef__Output {
|
|
20
|
+
/**
|
|
21
|
+
* The globally unique id for this socket. Must be a positive number.
|
|
22
|
+
*/
|
|
23
|
+
'socket_id': (string);
|
|
24
|
+
/**
|
|
25
|
+
* An optional name associated with the socket.
|
|
26
|
+
*/
|
|
27
|
+
'name': (string);
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SocketRef.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/SocketRef.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { SubchannelRef as _grpc_channelz_v1_SubchannelRef, SubchannelRef__Output as _grpc_channelz_v1_SubchannelRef__Output } from '../../../grpc/channelz/v1/SubchannelRef';
|
|
2
|
+
import type { ChannelData as _grpc_channelz_v1_ChannelData, ChannelData__Output as _grpc_channelz_v1_ChannelData__Output } from '../../../grpc/channelz/v1/ChannelData';
|
|
3
|
+
import type { ChannelRef as _grpc_channelz_v1_ChannelRef, ChannelRef__Output as _grpc_channelz_v1_ChannelRef__Output } from '../../../grpc/channelz/v1/ChannelRef';
|
|
4
|
+
import type { SocketRef as _grpc_channelz_v1_SocketRef, SocketRef__Output as _grpc_channelz_v1_SocketRef__Output } from '../../../grpc/channelz/v1/SocketRef';
|
|
5
|
+
/**
|
|
6
|
+
* Subchannel is a logical grouping of channels, subchannels, and sockets.
|
|
7
|
+
* A subchannel is load balanced over by it's ancestor
|
|
8
|
+
*/
|
|
9
|
+
export interface Subchannel {
|
|
10
|
+
/**
|
|
11
|
+
* The identifier for this channel.
|
|
12
|
+
*/
|
|
13
|
+
'ref'?: (_grpc_channelz_v1_SubchannelRef | null);
|
|
14
|
+
/**
|
|
15
|
+
* Data specific to this channel.
|
|
16
|
+
*/
|
|
17
|
+
'data'?: (_grpc_channelz_v1_ChannelData | null);
|
|
18
|
+
/**
|
|
19
|
+
* There are no ordering guarantees on the order of channel refs.
|
|
20
|
+
* There may not be cycles in the ref graph.
|
|
21
|
+
* A channel ref may be present in more than one channel or subchannel.
|
|
22
|
+
*/
|
|
23
|
+
'channel_ref'?: (_grpc_channelz_v1_ChannelRef)[];
|
|
24
|
+
/**
|
|
25
|
+
* At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
|
|
26
|
+
* There are no ordering guarantees on the order of subchannel refs.
|
|
27
|
+
* There may not be cycles in the ref graph.
|
|
28
|
+
* A sub channel ref may be present in more than one channel or subchannel.
|
|
29
|
+
*/
|
|
30
|
+
'subchannel_ref'?: (_grpc_channelz_v1_SubchannelRef)[];
|
|
31
|
+
/**
|
|
32
|
+
* There are no ordering guarantees on the order of sockets.
|
|
33
|
+
*/
|
|
34
|
+
'socket_ref'?: (_grpc_channelz_v1_SocketRef)[];
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Subchannel is a logical grouping of channels, subchannels, and sockets.
|
|
38
|
+
* A subchannel is load balanced over by it's ancestor
|
|
39
|
+
*/
|
|
40
|
+
export interface Subchannel__Output {
|
|
41
|
+
/**
|
|
42
|
+
* The identifier for this channel.
|
|
43
|
+
*/
|
|
44
|
+
'ref': (_grpc_channelz_v1_SubchannelRef__Output | null);
|
|
45
|
+
/**
|
|
46
|
+
* Data specific to this channel.
|
|
47
|
+
*/
|
|
48
|
+
'data': (_grpc_channelz_v1_ChannelData__Output | null);
|
|
49
|
+
/**
|
|
50
|
+
* There are no ordering guarantees on the order of channel refs.
|
|
51
|
+
* There may not be cycles in the ref graph.
|
|
52
|
+
* A channel ref may be present in more than one channel or subchannel.
|
|
53
|
+
*/
|
|
54
|
+
'channel_ref': (_grpc_channelz_v1_ChannelRef__Output)[];
|
|
55
|
+
/**
|
|
56
|
+
* At most one of 'channel_ref+subchannel_ref' and 'socket' is set.
|
|
57
|
+
* There are no ordering guarantees on the order of subchannel refs.
|
|
58
|
+
* There may not be cycles in the ref graph.
|
|
59
|
+
* A sub channel ref may be present in more than one channel or subchannel.
|
|
60
|
+
*/
|
|
61
|
+
'subchannel_ref': (_grpc_channelz_v1_SubchannelRef__Output)[];
|
|
62
|
+
/**
|
|
63
|
+
* There are no ordering guarantees on the order of sockets.
|
|
64
|
+
*/
|
|
65
|
+
'socket_ref': (_grpc_channelz_v1_SocketRef__Output)[];
|
|
66
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Subchannel.js","sourceRoot":"","sources":["../../../../../../src/generated/grpc/channelz/v1/Subchannel.ts"],"names":[],"mappings":";AAAA,sCAAsC"}
|