@rushstack/rush-sdk 5.144.0-pr5031.1 → 5.144.1-pr5037.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,11 +22,7 @@ export interface IWebFetchOptionsBase {
22
22
  headers?: Record<string, string>;
23
23
  redirect?: 'follow' | 'error' | 'manual';
24
24
  /**
25
- * If true, the request will not include an Accept-Encoding header, and the response will not be decoded.
26
- */
27
- noAcceptEncoding?: boolean;
28
- /**
29
- * If true, the response will not be decoded, but the Accept-Encoding header will still be sent.
25
+ * If true, the response will not be decoded if a Content-Encoding header is present.
30
26
  */
31
27
  noDecode?: boolean;
32
28
  }
@@ -51,7 +47,7 @@ export declare enum WebClientProxy {
51
47
  Detect = 1,
52
48
  Fiddler = 2
53
49
  }
54
- export interface IRequestOptions extends RequestOptions, Pick<IFetchOptionsWithBody, 'body' | 'redirect' | 'noAcceptEncoding' | 'noDecode'> {
50
+ export interface IRequestOptions extends RequestOptions, Pick<IFetchOptionsWithBody, 'body' | 'redirect' | 'noDecode'> {
55
51
  }
56
52
  export type FetchFn = (url: string, options: IRequestOptions, isRedirect?: boolean) => Promise<IWebClientResponse>;
57
53
  export declare const AUTHORIZATION_HEADER_NAME: 'Authorization';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.144.0-pr5031.1",
3
+ "version": "5.144.1-pr5037.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,17 +36,17 @@
36
36
  "tapable": "2.2.1",
37
37
  "@rushstack/lookup-by-path": "0.4.6",
38
38
  "@rushstack/node-core-library": "5.10.0",
39
- "@rushstack/package-deps-hash": "4.2.11",
40
- "@rushstack/terminal": "0.14.3"
39
+ "@rushstack/terminal": "0.14.3",
40
+ "@rushstack/package-deps-hash": "4.2.11"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/semver": "7.5.0",
44
44
  "@types/webpack-env": "1.18.0",
45
45
  "webpack": "~5.95.0",
46
- "@microsoft/rush-lib": "5.144.0-pr5031.1",
46
+ "@microsoft/rush-lib": "5.144.1-pr5037.0",
47
47
  "@rushstack/heft": "0.68.10",
48
- "local-node-rig": "1.0.0",
49
48
  "@rushstack/heft-webpack5-plugin": "0.11.8",
49
+ "local-node-rig": "1.0.0",
50
50
  "@rushstack/stream-collator": "4.1.78",
51
51
  "@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.77",
52
52
  "@rushstack/ts-command-line": "4.23.1"