Skip to content

Commit

Permalink
feat(siren): create alert support urn
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdh committed Sep 24, 2023
1 parent 7a7a5f6 commit 8fde97c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gotocompany/siren/v1beta1/siren.proto
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ message ListAlertsResponse {

message CreateAlertsRequest {
string provider_type= 1;
uint64 provider_id = 2;
string provider_id = 2;

Check failure on line 730 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "2" on message "CreateAlertsRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.

Check failure on line 730 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "2" on message "CreateAlertsRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.
google.protobuf.Struct body = 3;
}

Expand All @@ -737,9 +737,9 @@ message CreateAlertsResponse {

message CreateAlertsWithNamespaceRequest {
string provider_type= 1;
uint64 provider_id = 2;
string provider_id = 2;

Check failure on line 740 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "2" on message "CreateAlertsWithNamespaceRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.

Check failure on line 740 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "2" on message "CreateAlertsWithNamespaceRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.
google.protobuf.Struct body = 3;
uint64 namespace_id = 4;
string namespace_id = 4;

Check failure on line 742 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "4" on message "CreateAlertsWithNamespaceRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.

Check failure on line 742 in gotocompany/siren/v1beta1/siren.proto

View workflow job for this annotation

GitHub Actions / validate

Field "4" on message "CreateAlertsWithNamespaceRequest" changed type from "uint64" to "string". See https://developers.google.com/protocol-buffers/docs/proto3#updating for wire compatibility rules.
}

message CreateAlertsWithNamespaceResponse {
Expand Down

0 comments on commit 8fde97c

Please sign in to comment.