Skip to content

Commit

Permalink
Merge pull request #75 from spring-media/notix-update-types
Browse files Browse the repository at this point in the history
update fetch options for whoamiweb
  • Loading branch information
oladayo21 authored Nov 7, 2024
2 parents 41fe0d8 + dd51351 commit 309cfbd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ps-web-apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ export interface UserDataRequestResult {
reason?: "userNotLoggedIn" | "generalError" | "userAborted";
}

export type FetchOptions = RequestInit & { timeout?: number };
export type FetchOptions = RequestInit & {
timeout?: number;
retries?: number;
retryDelay?: number;
};
export type WaitingRoomQueueDefault = "";
export type WaitingRoomQueue = WaitingRoomQueueDefault | "auth" | "checkout" | "lefty-in-app-purchase";

Expand Down

0 comments on commit 309cfbd

Please sign in to comment.