Merge pull request #1952 from waku-org/fix/missing-history-error-values

fix: Added missing values for HistoryError to be sync with nwaku
This commit is contained in:
Arseniy Klempner 2024-04-10 08:55:56 -07:00 committed by GitHub
commit 4607d9ea86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -376,12 +376,16 @@ export interface HistoryResponse {
export namespace HistoryResponse { export namespace HistoryResponse {
export enum HistoryError { export enum HistoryError {
NONE = 'NONE', NONE = 'NONE',
INVALID_CURSOR = 'INVALID_CURSOR' INVALID_CURSOR = 'INVALID_CURSOR',
TOO_MANY_RESULTS = 'TOO_MANY_RESULTS',
SERVICE_UNAVAILABLE = 'SERVICE_UNAVAILABLE'
} }
enum __HistoryErrorValues { enum __HistoryErrorValues {
NONE = 0, NONE = 0,
INVALID_CURSOR = 1 INVALID_CURSOR = 1,
TOO_MANY_RESULTS = 429,
SERVICE_UNAVAILABLE = 503
} }
export namespace HistoryError { export namespace HistoryError {

View File

@ -42,6 +42,8 @@ message HistoryResponse {
enum HistoryError { enum HistoryError {
NONE = 0; NONE = 0;
INVALID_CURSOR = 1; INVALID_CURSOR = 1;
TOO_MANY_RESULTS = 429;
SERVICE_UNAVAILABLE = 503;
} }
HistoryError error = 4; HistoryError error = 4;
} }