Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(siren): create alert support urn #51

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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 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
Loading