#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidateTemplateRequest {
#[prost(string, tag = "1")]
pub template: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub sample_context_json: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidationError {
#[prost(string, tag = "1")]
pub message: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidateTemplateResponse {
#[prost(bool, tag = "1")]
pub valid: bool,
#[prost(string, optional, tag = "2")]
pub evaluated_payload: ::core::option::Option<::prost::alloc::string::String>,
#[prost(message, repeated, tag = "3")]
pub errors: ::prost::alloc::vec::Vec<ValidationError>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TestWebhookRequest {
#[prost(string, tag = "1")]
pub integration_rid: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub template: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub sample_context_json: ::prost::alloc::string::String,
#[prost(string, optional, tag = "4")]
pub event_type: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TestWebhookResponse {
#[prost(bool, tag = "1")]
pub success: bool,
#[prost(int32, tag = "2")]
pub status_code: i32,
#[prost(string, optional, tag = "3")]
pub response_body: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "4")]
pub error_message: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "5")]
pub evaluated_payload: ::core::option::Option<::prost::alloc::string::String>,
#[prost(int64, tag = "6")]
pub latency_millis: i64,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum WebhookTemplateError {
InvalidRequest = 0,
}
impl WebhookTemplateError {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::InvalidRequest => "WEBHOOK_TEMPLATE_ERROR_INVALID_REQUEST",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"WEBHOOK_TEMPLATE_ERROR_INVALID_REQUEST" => Some(Self::InvalidRequest),
_ => None,
}
}
}
pub mod webhook_templates_service_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct WebhookTemplatesServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl WebhookTemplatesServiceClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> WebhookTemplatesServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::Body>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> WebhookTemplatesServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::Body>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::Body>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::Body>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
WebhookTemplatesServiceClient::new(
InterceptedService::new(inner, interceptor),
)
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn validate_template(
&mut self,
request: impl tonic::IntoRequest<super::ValidateTemplateRequest>,
) -> std::result::Result<
tonic::Response<super::ValidateTemplateResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.webhooktemplates.v1.WebhookTemplatesService/ValidateTemplate",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.webhooktemplates.v1.WebhookTemplatesService",
"ValidateTemplate",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn test_webhook(
&mut self,
request: impl tonic::IntoRequest<super::TestWebhookRequest>,
) -> std::result::Result<
tonic::Response<super::TestWebhookResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.webhooktemplates.v1.WebhookTemplatesService/TestWebhook",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.webhooktemplates.v1.WebhookTemplatesService",
"TestWebhook",
),
);
self.inner.unary(req, path, codec).await
}
}
}