Skip to content

Commit cda163f

Browse files
jcubicisomorphic-git-bot
authored andcommitted
chore: update Android testing target on BrowserStack (#2136)
1 parent ff251a6 commit cda163f

File tree

5 files changed

+4859
-3
lines changed

5 files changed

+4859
-3
lines changed

js/isomorphic-git/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
389389
<td align="center"><a href="https://tomlarkworthy.endpointservices.net/"><img src="https://avatars.githubusercontent.com/u/1848162?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Tom Larkworthy</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=tomlarkworthy" title="Documentation">📖</a></td>
390390
<td align="center"><a href="https://github.com/kofta999"><img src="https://avatars.githubusercontent.com/u/99273340?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Mostafa Mahmoud</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=kofta999" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=kofta999" title="Tests">⚠️</a> <a href="#question-kofta999" title="Answering Questions">💬</a></td>
391391
<td align="center"><a href="https://github.com/ARBhosale"><img src="https://avatars.githubusercontent.com/u/26981417?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Aniket Bhosale</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Documentation">📖</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Tests">⚠️</a></td>
392-
<td align="center"><a href="https://github.com/gnillev"><img src="https://avatars.githubusercontent.com/u/8965094?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Mathias Nisted Velling</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Code">💻</a><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Tests">⚠️</a></td>
392+
<td align="center"><a href="https://github.com/gnillev"><img src="https://avatars.githubusercontent.com/u/8965094?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Mathias Nisted Velling</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Tests">⚠️</a></td>
393+
<td align="center"><a href="https://github.com/acandoo"><img src="https://avatars.githubusercontent.com/u/117209328?v=4?s=60" width="60px;" alt=""/><br /><sub><b>acandoo</b></sub></a><br /><a href="#platform-acandoo" title="Packaging/porting to new platform">📦</a> <a href="#userTesting-acandoo" title="User Testing">📓</a></td>
393394
</tr>
394395
</table>
395396

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
export const __esModule: boolean;
2+
export default index;
3+
export type GitProgressEvent = {
4+
phase: string;
5+
loaded: number;
6+
total: number;
7+
};
8+
export type ProgressCallback = (progress: GitProgressEvent) => void | Promise<void>;
9+
export type GitHttpRequest = {
10+
/**
11+
* - The URL to request
12+
*/
13+
url: string;
14+
/**
15+
* - The HTTP method to use
16+
*/
17+
method?: string | undefined;
18+
/**
19+
* - Headers to include in the HTTP request
20+
*/
21+
headers?: {
22+
[x: string]: string;
23+
} | undefined;
24+
/**
25+
* - An HTTP or HTTPS agent that manages connections for the HTTP client (Node.js only)
26+
*/
27+
agent?: any;
28+
/**
29+
* - An async iterator of Uint8Arrays that make up the body of POST requests
30+
*/
31+
body?: AsyncIterableIterator<Uint8Array>;
32+
/**
33+
* - Reserved for future use (emitting `GitProgressEvent`s)
34+
*/
35+
onProgress?: ProgressCallback | undefined;
36+
/**
37+
* - Reserved for future use (canceling a request)
38+
*/
39+
signal?: object;
40+
};
41+
export type GitHttpResponse = {
42+
/**
43+
* - The final URL that was fetched after any redirects
44+
*/
45+
url: string;
46+
/**
47+
* - The HTTP method that was used
48+
*/
49+
method?: string | undefined;
50+
/**
51+
* - HTTP response headers
52+
*/
53+
headers?: {
54+
[x: string]: string;
55+
} | undefined;
56+
/**
57+
* - An async iterator of Uint8Arrays that make up the body of the response
58+
*/
59+
body?: AsyncIterableIterator<Uint8Array>;
60+
/**
61+
* - The HTTP status code
62+
*/
63+
statusCode: number;
64+
/**
65+
* - The HTTP status message
66+
*/
67+
statusMessage: string;
68+
};
69+
export type HttpFetch = (request: GitHttpRequest) => Promise<GitHttpResponse>;
70+
export type HttpClient = {
71+
request: HttpFetch;
72+
};
73+
declare namespace index {
74+
export { request };
75+
}
76+
/**
77+
* HttpClient
78+
*
79+
* @param {GitHttpRequest} request
80+
* @returns {Promise<GitHttpResponse>}
81+
*/
82+
export function request({ onProgress, url, method, headers, agent, body, }: GitHttpRequest): Promise<GitHttpResponse>;
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
export const __esModule: boolean;
2+
export default index;
3+
export type GitProgressEvent = {
4+
phase: string;
5+
loaded: number;
6+
total: number;
7+
};
8+
export type ProgressCallback = (progress: GitProgressEvent) => void | Promise<void>;
9+
export type GitHttpRequest = {
10+
/**
11+
* - The URL to request
12+
*/
13+
url: string;
14+
/**
15+
* - The HTTP method to use
16+
*/
17+
method?: string | undefined;
18+
/**
19+
* - Headers to include in the HTTP request
20+
*/
21+
headers?: {
22+
[x: string]: string;
23+
} | undefined;
24+
/**
25+
* - An HTTP or HTTPS agent that manages connections for the HTTP client (Node.js only)
26+
*/
27+
agent?: any;
28+
/**
29+
* - An async iterator of Uint8Arrays that make up the body of POST requests
30+
*/
31+
body?: AsyncIterableIterator<Uint8Array>;
32+
/**
33+
* - Reserved for future use (emitting `GitProgressEvent`s)
34+
*/
35+
onProgress?: ProgressCallback | undefined;
36+
/**
37+
* - Reserved for future use (canceling a request)
38+
*/
39+
signal?: object;
40+
};
41+
export type GitHttpResponse = {
42+
/**
43+
* - The final URL that was fetched after any redirects
44+
*/
45+
url: string;
46+
/**
47+
* - The HTTP method that was used
48+
*/
49+
method?: string | undefined;
50+
/**
51+
* - HTTP response headers
52+
*/
53+
headers?: {
54+
[x: string]: string;
55+
} | undefined;
56+
/**
57+
* - An async iterator of Uint8Arrays that make up the body of the response
58+
*/
59+
body?: AsyncIterableIterator<Uint8Array>;
60+
/**
61+
* - The HTTP status code
62+
*/
63+
statusCode: number;
64+
/**
65+
* - The HTTP status message
66+
*/
67+
statusMessage: string;
68+
};
69+
export type HttpFetch = (request: GitHttpRequest) => Promise<GitHttpResponse>;
70+
export type HttpClient = {
71+
request: HttpFetch;
72+
};
73+
declare namespace index {
74+
export { request };
75+
}
76+
/**
77+
* HttpClient
78+
*
79+
* @param {GitHttpRequest} request
80+
* @returns {Promise<GitHttpResponse>}
81+
*/
82+
export function request({ onProgress, url, method, headers, body, }: GitHttpRequest): Promise<GitHttpResponse>;

0 commit comments

Comments
 (0)