@mherod/get-cookie 2.1.2 → 2.1.3
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/index.js +1600 -1802
- package/dist/types.d.ts +6 -6
- package/package.json +1 -1
- package/src/index.ts +6 -16
package/dist/types.d.ts
CHANGED
|
@@ -330,12 +330,12 @@ declare module "getGroupedRenderedCookies" {
|
|
|
330
330
|
}
|
|
331
331
|
declare module "getMergedRenderedCookies.test" { }
|
|
332
332
|
declare module "index" {
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
333
|
+
import { getCookie } from "getCookie";
|
|
334
|
+
import { getChromeCookie } from "getChromeCookie";
|
|
335
|
+
import { getFirefoxCookie } from "getFirefoxCookie";
|
|
336
|
+
import { getGroupedRenderedCookies } from "getGroupedRenderedCookies";
|
|
337
|
+
import { getMergedRenderedCookies } from "getMergedRenderedCookies";
|
|
338
|
+
import { fetchWithCookies } from "fetchWithCookies";
|
|
339
339
|
export { getCookie, getChromeCookie, getFirefoxCookie, getMergedRenderedCookies, getGroupedRenderedCookies, fetchWithCookies, };
|
|
340
340
|
}
|
|
341
341
|
declare module "listChromeProfiles" {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const getGroupedRenderedCookies = () =>
|
|
8
|
-
import("./getGroupedRenderedCookies").then(
|
|
9
|
-
(module) => module.getGroupedRenderedCookies,
|
|
10
|
-
);
|
|
11
|
-
const getMergedRenderedCookies = () =>
|
|
12
|
-
import("./getMergedRenderedCookies").then(
|
|
13
|
-
(module) => module.getMergedRenderedCookies,
|
|
14
|
-
);
|
|
15
|
-
const fetchWithCookies = () =>
|
|
16
|
-
import("./fetchWithCookies").then((module) => module.fetchWithCookies);
|
|
1
|
+
import { getCookie } from "./getCookie";
|
|
2
|
+
import { getChromeCookie } from "./getChromeCookie";
|
|
3
|
+
import { getFirefoxCookie } from "./getFirefoxCookie";
|
|
4
|
+
import { getGroupedRenderedCookies } from "./getGroupedRenderedCookies";
|
|
5
|
+
import { getMergedRenderedCookies } from "./getMergedRenderedCookies";
|
|
6
|
+
import { fetchWithCookies } from "./fetchWithCookies";
|
|
17
7
|
|
|
18
8
|
export {
|
|
19
9
|
getCookie,
|