fixed notifications dispatch
Some checks failed
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed

This commit is contained in:
Stephan D
2025-11-19 20:15:36 +01:00
parent e08eb742e4
commit 29f5a56f21
11 changed files with 258 additions and 156 deletions

View File

@@ -1,12 +0,0 @@
syntax = "proto3";
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
message ContactRequestEvent {
string Name = 1;
string Email = 2;
string Phone = 3;
string Company = 4;
string Topic = 5;
string Message = 6;
}

View File

@@ -1,12 +0,0 @@
syntax = "proto3";
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
message DemoRequestEvent {
string Name = 1;
string OrganizationName = 2;
string Phone = 3;
string WorkEmail = 4;
string PayoutVolume = 5;
string Comment = 6;
}

View File

@@ -0,0 +1,36 @@
syntax = "proto3";
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
message SiteRequestEvent {
enum RequestType {
REQUEST_TYPE_UNSPECIFIED = 0;
REQUEST_TYPE_DEMO = 1;
REQUEST_TYPE_CONTACT = 2;
}
RequestType type = 1;
oneof payload {
SiteDemoRequest demo = 2;
SiteContactRequest contact = 3;
}
}
message SiteDemoRequest {
string name = 1;
string organization_name = 2;
string phone = 3;
string work_email = 4;
string payout_volume = 5;
string comment = 6;
}
message SiteContactRequest {
string name = 1;
string email = 2;
string phone = 3;
string company = 4;
string topic = 5;
string message = 6;
}