Skip to content

Commit

Permalink
Merge pull request #1952 from waku-org/fix/missing-history-error-values
Browse files Browse the repository at this point in the history
fix: Added missing values for HistoryError to be sync with nwaku
  • Loading branch information
adklempner authored Apr 10, 2024
2 parents 6758265 + aa3ce1f commit 4607d9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/proto/src/generated/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,16 @@ export interface HistoryResponse {
export namespace HistoryResponse {
export enum HistoryError {
NONE = 'NONE',
INVALID_CURSOR = 'INVALID_CURSOR'
INVALID_CURSOR = 'INVALID_CURSOR',
TOO_MANY_RESULTS = 'TOO_MANY_RESULTS',
SERVICE_UNAVAILABLE = 'SERVICE_UNAVAILABLE'
}

enum __HistoryErrorValues {
NONE = 0,
INVALID_CURSOR = 1
INVALID_CURSOR = 1,
TOO_MANY_RESULTS = 429,
SERVICE_UNAVAILABLE = 503
}

export namespace HistoryError {
Expand Down
2 changes: 2 additions & 0 deletions packages/proto/src/lib/store.proto
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ message HistoryResponse {
enum HistoryError {
NONE = 0;
INVALID_CURSOR = 1;
TOO_MANY_RESULTS = 429;
SERVICE_UNAVAILABLE = 503;
}
HistoryError error = 4;
}
Expand Down

0 comments on commit 4607d9e

Please sign in to comment.