Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into fix/#145
Browse files Browse the repository at this point in the history
  • Loading branch information
shiron-dev authored Oct 9, 2024
2 parents 3121333 + 8ff8ab1 commit 1d682df
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions belifeline/v1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,14 @@ message ExtInfoDeleteResponse {
belifeline.models.v1.ULID extinfo_id = 1;
}

message ExtInfoUpdateNotificationRequest {
belifeline.models.v1.ULID extinfo_id = 1;
}

message ExtInfoUpdateNotificationResponse {
belifeline.models.v1.ULID extinfo_id = 1;
}

message KoyoDeleteRequest {
belifeline.models.v1.ULID koyo_id = 1;
}
Expand Down Expand Up @@ -137,6 +145,14 @@ message KoyoListResponse {
belifeline.models.v1.KoyoInformation koyo_information = 1;
}

message KoyoDataAddRequest {
belifeline.models.v1.KoyoData koyo_data = 1;
}

message KoyoDataAddResponse {
belifeline.models.v1.ULID koyo_data = 1;
}

message HealthRequest {}

message HealthResponse {
Expand Down
2 changes: 2 additions & 0 deletions belifeline/v1/main.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ service ExtInfoService {
rpc ExtInfoCreate(ExtInfoCreateRequest) returns (ExtInfoCreateResponse) {}
rpc ExtInfoList(ExtInfoListRequest) returns (stream ExtInfoListResponse) {}
rpc ExtInfoDelete(ExtInfoDeleteRequest) returns (ExtInfoDeleteResponse) {}
rpc ExtInfoUpdateNotification(ExtInfoUpdateNotificationRequest) returns (ExtInfoUpdateNotificationResponse) {}
}

service KoyoService {
rpc KoyoCreate(KoyoCreateRequest) returns (KoyoCreateResponse) {}
rpc KoyoList(KoyoListRequest) returns (stream KoyoListResponse) {}
rpc KoyoDelete(KoyoDeleteRequest) returns (KoyoDeleteResponse) {}
rpc KoyoApiRevoke(KoyoApiRevokeRequest) returns (KoyoApiRevokeResponse) {}
rpc KoyoDataAdd(KoyoDataAddRequest) returns (KoyoDataAddResponse) {}
}

0 comments on commit 1d682df

Please sign in to comment.