@utiliread/http 1.20.0 → 1.20.2
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.
- package/dist/header-names.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/header-names.ts +1 -1
package/dist/header-names.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare const date = "Date";
|
|
|
67
67
|
/** Gets the `DNT` HTTP header name. */
|
|
68
68
|
export declare const dnt = "DNT";
|
|
69
69
|
/** Gets the `ETag` HTTP header name. */
|
|
70
|
-
export declare const
|
|
70
|
+
export declare const etag = "ETag";
|
|
71
71
|
/** Gets the `Expires` HTTP header name. */
|
|
72
72
|
export declare const expires = "Expires";
|
|
73
73
|
/** Gets the `Expect` HTTP header name. */
|
package/dist/index.js
CHANGED
|
@@ -543,7 +543,7 @@ const date = "Date";
|
|
|
543
543
|
/** Gets the `DNT` HTTP header name. */
|
|
544
544
|
const dnt = "DNT";
|
|
545
545
|
/** Gets the `ETag` HTTP header name. */
|
|
546
|
-
const
|
|
546
|
+
const etag = "ETag";
|
|
547
547
|
/** Gets the `Expires` HTTP header name. */
|
|
548
548
|
const expires = "Expires";
|
|
549
549
|
/** Gets the `Expect` HTTP header name. */
|
|
@@ -693,7 +693,7 @@ var headerNames = /*#__PURE__*/Object.freeze({
|
|
|
693
693
|
correlationContext: correlationContext,
|
|
694
694
|
date: date,
|
|
695
695
|
dnt: dnt,
|
|
696
|
-
|
|
696
|
+
etag: etag,
|
|
697
697
|
expect: expect,
|
|
698
698
|
expires: expires,
|
|
699
699
|
from: from,
|
package/dist/index.mjs
CHANGED
|
@@ -541,7 +541,7 @@ const date = "Date";
|
|
|
541
541
|
/** Gets the `DNT` HTTP header name. */
|
|
542
542
|
const dnt = "DNT";
|
|
543
543
|
/** Gets the `ETag` HTTP header name. */
|
|
544
|
-
const
|
|
544
|
+
const etag = "ETag";
|
|
545
545
|
/** Gets the `Expires` HTTP header name. */
|
|
546
546
|
const expires = "Expires";
|
|
547
547
|
/** Gets the `Expect` HTTP header name. */
|
|
@@ -691,7 +691,7 @@ var headerNames = /*#__PURE__*/Object.freeze({
|
|
|
691
691
|
correlationContext: correlationContext,
|
|
692
692
|
date: date,
|
|
693
693
|
dnt: dnt,
|
|
694
|
-
|
|
694
|
+
etag: etag,
|
|
695
695
|
expect: expect,
|
|
696
696
|
expires: expires,
|
|
697
697
|
from: from,
|
package/package.json
CHANGED
package/src/header-names.ts
CHANGED
|
@@ -102,7 +102,7 @@ export const date = "Date";
|
|
|
102
102
|
export const dnt = "DNT";
|
|
103
103
|
|
|
104
104
|
/** Gets the `ETag` HTTP header name. */
|
|
105
|
-
export const
|
|
105
|
+
export const etag = "ETag";
|
|
106
106
|
|
|
107
107
|
/** Gets the `Expires` HTTP header name. */
|
|
108
108
|
export const expires = "Expires";
|