This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
961a5c3
commit c5f3846
Showing
5 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export type AuthForHAR = Record<string, string | number | { pass?: string; user?: string }>; | ||
|
||
export interface DataForHAR { | ||
body?: any; | ||
cookie?: Record<string, any>; | ||
formData?: Record<string, any>; // `application/x-www-form-urlencoded` requests payloads. | ||
header?: Record<string, any>; | ||
path?: Record<string, any>; | ||
query?: Record<string, any>; | ||
server?: { | ||
selected: number; | ||
variables?: Record<string, unknown>; | ||
}; | ||
} | ||
export interface oasToHarOptions { | ||
// If true, the operation URL will be rewritten and prefixed with https://try.readme.io/ in | ||
// order to funnel requests through our CORS-friendly proxy. | ||
proxyUrl: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters