hyperttp 0.3.2 → 0.3.4
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/index.d.ts +5 -5
- package/index.d.ts.map +1 -1
- package/index.js +5 -5
- package/index.js.map +1 -1
- package/package.json +6 -17
package/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export { Request, PreparedRequest, UrlExtractor, HyperClient, } from "./Hyperttp/index.js";
|
|
2
2
|
export * from "./Types/index.js";
|
|
3
3
|
export type * from "./Types/index.js";
|
|
4
|
-
export * from "@hyperttp/
|
|
4
|
+
export * from "@hyperttp/core";
|
|
5
|
+
export * from "@hyperttp/serializer";
|
|
5
6
|
export * from "@hyperttp/parser";
|
|
7
|
+
export * from "@hyperttp/queue";
|
|
8
|
+
export * from "@hyperttp/ratelimit";
|
|
6
9
|
export * from "@hyperttp/inflight";
|
|
10
|
+
export * from "@hyperttp/cache";
|
|
7
11
|
export * from "@hyperttp/interceptors";
|
|
8
12
|
export * from "@hyperttp/metrics";
|
|
9
|
-
export * from "@hyperttp/queue";
|
|
10
|
-
export * from "@hyperttp/serializer";
|
|
11
|
-
export * from "@hyperttp/ratelimit";
|
|
12
|
-
export * from "@hyperttp/retry";
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,eAAe,EACf,YAAY,EACZ,WAAW,GACZ,MAAM,qBAAqB,CAAC;AAE7B,cAAc,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,eAAe,EACf,YAAY,EACZ,WAAW,GACZ,MAAM,qBAAqB,CAAC;AAE7B,cAAc,kBAAkB,CAAC;AACjC,mBAAmB,kBAAkB,CAAC;AAEtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC"}
|
package/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { Request, PreparedRequest, UrlExtractor, HyperClient, } from "./Hyperttp/index.js";
|
|
2
2
|
export * from "./Types/index.js";
|
|
3
|
-
export * from "@hyperttp/
|
|
3
|
+
export * from "@hyperttp/core";
|
|
4
|
+
export * from "@hyperttp/serializer";
|
|
4
5
|
export * from "@hyperttp/parser";
|
|
6
|
+
export * from "@hyperttp/queue";
|
|
7
|
+
export * from "@hyperttp/ratelimit";
|
|
5
8
|
export * from "@hyperttp/inflight";
|
|
9
|
+
export * from "@hyperttp/cache";
|
|
6
10
|
export * from "@hyperttp/interceptors";
|
|
7
11
|
export * from "@hyperttp/metrics";
|
|
8
|
-
export * from "@hyperttp/queue";
|
|
9
|
-
export * from "@hyperttp/serializer";
|
|
10
|
-
export * from "@hyperttp/ratelimit";
|
|
11
|
-
export * from "@hyperttp/retry";
|
|
12
12
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,eAAe,EACf,YAAY,EACZ,WAAW,GACZ,MAAM,qBAAqB,CAAC;AAE7B,cAAc,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,eAAe,EACf,YAAY,EACZ,WAAW,GACZ,MAAM,qBAAqB,CAAC;AAE7B,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyperttp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "A high-performance, universal HTTP client for Node.js with caching, retries, queueing, rate limiting, cookies and logging.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -23,27 +23,16 @@
|
|
|
23
23
|
"cookies",
|
|
24
24
|
"logger"
|
|
25
25
|
],
|
|
26
|
-
"exports": {
|
|
27
|
-
".": {
|
|
28
|
-
"types": "./index.d.ts",
|
|
29
|
-
"import": "./index.js"
|
|
30
|
-
},
|
|
31
|
-
"./*": {
|
|
32
|
-
"types": "./Types/*.d.ts",
|
|
33
|
-
"import": "./Types/*.js"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
26
|
"dependencies": {
|
|
37
27
|
"@hyperttp/core": "^1.1.7",
|
|
38
|
-
"@hyperttp/cache": "^1.0.
|
|
39
|
-
"@hyperttp/parser": "^1.0.
|
|
28
|
+
"@hyperttp/cache": "^1.0.14",
|
|
29
|
+
"@hyperttp/parser": "^1.0.19",
|
|
40
30
|
"@hyperttp/inflight": "^1.0.4",
|
|
41
|
-
"@hyperttp/interceptors": "^1.0.
|
|
42
|
-
"@hyperttp/metrics": "^1.0.
|
|
31
|
+
"@hyperttp/interceptors": "^1.0.4",
|
|
32
|
+
"@hyperttp/metrics": "^1.0.4",
|
|
43
33
|
"@hyperttp/queue": "^1.0.3",
|
|
44
34
|
"@hyperttp/profiler": "^1.0.1",
|
|
45
35
|
"@hyperttp/serializer": "^1.0.4",
|
|
46
|
-
"@hyperttp/ratelimit": "^1.0.4"
|
|
47
|
-
"@hyperttp/retry": "^1.0.1"
|
|
36
|
+
"@hyperttp/ratelimit": "^1.0.4"
|
|
48
37
|
}
|
|
49
38
|
}
|