rahad-media-downloader 2.1.10 → 2.1.12
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/.cache/replit/modules/{nodejs-20:v32-20240401-269b323.res → nodejs-20:v36-20240502-f4453db.res} +1 -1
- package/.cache/replit/modules/{replit:v8-20240329-787bc7d.res → replit:v9-20240429-0325cbb.res} +1 -1
- package/.cache/typescript/5.3/node_modules/.package-lock.json +6 -0
- package/.cache/typescript/5.3/node_modules/@types/qs/LICENSE +21 -0
- package/.cache/typescript/5.3/node_modules/@types/qs/README.md +15 -0
- package/.cache/typescript/5.3/node_modules/@types/qs/index.d.ts +79 -0
- package/.cache/typescript/5.3/node_modules/@types/qs/package.json +65 -0
- package/.cache/typescript/5.3/package-lock.json +7 -0
- package/.cache/typescript/5.3/package.json +1 -1
- package/package.json +31 -2
@@ -1 +1 @@
|
|
1
|
-
{"type":"resolve","resolvedModuleId":"nodejs-20:
|
1
|
+
{"type":"resolve","resolvedModuleId":"nodejs-20:v36-20240502-f4453db","inputHash":"","resolutionPath":["nodejs-20:v8-20230920-bd784b9","nodejs-20:v9-20231020-a3526c9","nodejs-20:v10-20231103-2b03dda","nodejs-20:v11-20231122-8e4093b","nodejs-20:v12-20231130-57acee0","nodejs-20:v13-20231201-3b22c78","nodejs-20:v14-20231206-9a12353","nodejs-20:v15-20231206-d8b5d0b","nodejs-20:v16-20231207-cf9ab20","nodejs-20:v17-20231207-25d440f","nodejs-20:v18-20231211-ac14ad7","nodejs-20:v19-20231216-fb57c71","nodejs-20:v20-20231219-faac932","nodejs-20:v21-20240102-fd07a42","nodejs-20:v22-20240103-2da4911","nodejs-20:v23-20240116-9f73277","nodejs-20:v24-20240117-0bd73cd","nodejs-20:v25-20240206-fdbd396","nodejs-20:v26-20240209-9e3a339","nodejs-20:v27-20240213-5e75727","nodejs-20:v28-20240213-3f08513","nodejs-20:v29-20240315-3def760","nodejs-20:v30-20240319-38caddd","nodejs-20:v31-20240329-787bc7d","nodejs-20:v32-20240401-269b323","nodejs-20:v33-20240429-4b1b00e","nodejs-20:v34-20240429-0325cbb","nodejs-20:v35-20240502-5b9002a","nodejs-20:v36-20240502-f4453db"],"error":"","Changed":true}
|
package/.cache/replit/modules/{replit:v8-20240329-787bc7d.res → replit:v9-20240429-0325cbb.res}
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"type":"resolve","resolvedModuleId":"replit:
|
1
|
+
{"type":"resolve","resolvedModuleId":"replit:v9-20240429-0325cbb","inputHash":"","resolutionPath":["replit","replit:v1-20231211-d5ddcff","replit:v2-20240117-0bd73cd","replit:v3-20240123-c72e35a","replit:v4-20240206-fdbd396","replit:v5-20240209-9e3a339","replit:v6-20240315-3def760","replit:v7-20240319-38caddd","replit:v8-20240329-787bc7d","replit:v9-20240429-0325cbb"],"error":"","Changed":true}
|
@@ -87,6 +87,12 @@
|
|
87
87
|
"integrity": "sha512-Iu174JHfLd7i/XkXY6VDrqSlPvTDQOtQI7wNAXKKOAADJ9TduRLkNdMgjGiMxSttUIZnomv81JAbAbC0DhggxA==",
|
88
88
|
"dev": true
|
89
89
|
},
|
90
|
+
"node_modules/@types/qs": {
|
91
|
+
"version": "6.9.15",
|
92
|
+
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz",
|
93
|
+
"integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==",
|
94
|
+
"dev": true
|
95
|
+
},
|
90
96
|
"node_modules/@types/request": {
|
91
97
|
"version": "2.48.12",
|
92
98
|
"resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.12.tgz",
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) Microsoft Corporation.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Installation
|
2
|
+
> `npm install --save @types/qs`
|
3
|
+
|
4
|
+
# Summary
|
5
|
+
This package contains type definitions for qs (https://github.com/ljharb/qs).
|
6
|
+
|
7
|
+
# Details
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs.
|
9
|
+
|
10
|
+
### Additional Details
|
11
|
+
* Last updated: Tue, 16 Apr 2024 04:07:43 GMT
|
12
|
+
* Dependencies: none
|
13
|
+
|
14
|
+
# Credits
|
15
|
+
These definitions were written by [Roman Korneev](https://github.com/RWander), [Leon Yu](https://github.com/leonyu), [Belinda Teh](https://github.com/tehbelinda), [Melvin Lee](https://github.com/zyml), [Arturs Vonda](https://github.com/artursvonda), [Carlos Bonetti](https://github.com/CarlosBonetti), [Dan Smith](https://github.com/dpsmith3), [Hunter Perrin](https://github.com/hperrin), and [Jordan Harband](https://github.com/ljharb).
|
@@ -0,0 +1,79 @@
|
|
1
|
+
export = QueryString;
|
2
|
+
export as namespace qs;
|
3
|
+
|
4
|
+
declare namespace QueryString {
|
5
|
+
type defaultEncoder = (str: any, defaultEncoder?: any, charset?: string) => string;
|
6
|
+
type defaultDecoder = (str: string, decoder?: any, charset?: string) => string;
|
7
|
+
|
8
|
+
type BooleanOptional = boolean | undefined;
|
9
|
+
|
10
|
+
interface IStringifyBaseOptions {
|
11
|
+
delimiter?: string | undefined;
|
12
|
+
strictNullHandling?: boolean | undefined;
|
13
|
+
skipNulls?: boolean | undefined;
|
14
|
+
encode?: boolean | undefined;
|
15
|
+
encoder?:
|
16
|
+
| ((str: any, defaultEncoder: defaultEncoder, charset: string, type: "key" | "value") => string)
|
17
|
+
| undefined;
|
18
|
+
filter?: Array<string | number> | ((prefix: string, value: any) => any) | undefined;
|
19
|
+
arrayFormat?: "indices" | "brackets" | "repeat" | "comma" | undefined;
|
20
|
+
indices?: boolean | undefined;
|
21
|
+
sort?: ((a: string, b: string) => number) | undefined;
|
22
|
+
serializeDate?: ((d: Date) => string) | undefined;
|
23
|
+
format?: "RFC1738" | "RFC3986" | undefined;
|
24
|
+
encodeValuesOnly?: boolean | undefined;
|
25
|
+
addQueryPrefix?: boolean | undefined;
|
26
|
+
charset?: "utf-8" | "iso-8859-1" | undefined;
|
27
|
+
charsetSentinel?: boolean | undefined;
|
28
|
+
allowEmptyArrays?: boolean | undefined;
|
29
|
+
}
|
30
|
+
|
31
|
+
type IStringifyDynamicOptions<AllowDots extends BooleanOptional> = AllowDots extends true
|
32
|
+
? { allowDots?: AllowDots; encodeDotInKeys?: boolean }
|
33
|
+
: { allowDots?: boolean; encodeDotInKeys?: false };
|
34
|
+
|
35
|
+
type IStringifyOptions<AllowDots extends BooleanOptional = undefined> =
|
36
|
+
& IStringifyBaseOptions
|
37
|
+
& IStringifyDynamicOptions<AllowDots>;
|
38
|
+
|
39
|
+
interface IParseBaseOptions {
|
40
|
+
comma?: boolean | undefined;
|
41
|
+
delimiter?: string | RegExp | undefined;
|
42
|
+
depth?: number | false | undefined;
|
43
|
+
decoder?:
|
44
|
+
| ((str: string, defaultDecoder: defaultDecoder, charset: string, type: "key" | "value") => any)
|
45
|
+
| undefined;
|
46
|
+
arrayLimit?: number | undefined;
|
47
|
+
parseArrays?: boolean | undefined;
|
48
|
+
plainObjects?: boolean | undefined;
|
49
|
+
allowPrototypes?: boolean | undefined;
|
50
|
+
allowSparse?: boolean | undefined;
|
51
|
+
parameterLimit?: number | undefined;
|
52
|
+
strictNullHandling?: boolean | undefined;
|
53
|
+
ignoreQueryPrefix?: boolean | undefined;
|
54
|
+
charset?: "utf-8" | "iso-8859-1" | undefined;
|
55
|
+
charsetSentinel?: boolean | undefined;
|
56
|
+
interpretNumericEntities?: boolean | undefined;
|
57
|
+
allowEmptyArrays?: boolean | undefined;
|
58
|
+
duplicates?: "combine" | "first" | "last" | undefined;
|
59
|
+
}
|
60
|
+
|
61
|
+
type IParseDynamicOptions<AllowDots extends BooleanOptional> = AllowDots extends true
|
62
|
+
? { allowDots?: AllowDots; decodeDotInKeys?: boolean }
|
63
|
+
: { allowDots?: boolean; decodeDotInKeys?: false };
|
64
|
+
|
65
|
+
type IParseOptions<AllowDots extends BooleanOptional = undefined> =
|
66
|
+
& IParseBaseOptions
|
67
|
+
& IParseDynamicOptions<AllowDots>;
|
68
|
+
|
69
|
+
interface ParsedQs {
|
70
|
+
[key: string]: undefined | string | string[] | ParsedQs | ParsedQs[];
|
71
|
+
}
|
72
|
+
|
73
|
+
function stringify(obj: any, options?: IStringifyOptions<BooleanOptional>): string;
|
74
|
+
function parse(str: string, options?: IParseOptions<BooleanOptional> & { decoder?: never | undefined }): ParsedQs;
|
75
|
+
function parse(
|
76
|
+
str: string | Record<string, string>,
|
77
|
+
options?: IParseOptions<BooleanOptional>,
|
78
|
+
): { [key: string]: unknown };
|
79
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
{
|
2
|
+
"name": "@types/qs",
|
3
|
+
"version": "6.9.15",
|
4
|
+
"description": "TypeScript definitions for qs",
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs",
|
6
|
+
"license": "MIT",
|
7
|
+
"contributors": [
|
8
|
+
{
|
9
|
+
"name": "Roman Korneev",
|
10
|
+
"githubUsername": "RWander",
|
11
|
+
"url": "https://github.com/RWander"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"name": "Leon Yu",
|
15
|
+
"githubUsername": "leonyu",
|
16
|
+
"url": "https://github.com/leonyu"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"name": "Belinda Teh",
|
20
|
+
"githubUsername": "tehbelinda",
|
21
|
+
"url": "https://github.com/tehbelinda"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"name": "Melvin Lee",
|
25
|
+
"githubUsername": "zyml",
|
26
|
+
"url": "https://github.com/zyml"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"name": "Arturs Vonda",
|
30
|
+
"githubUsername": "artursvonda",
|
31
|
+
"url": "https://github.com/artursvonda"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"name": "Carlos Bonetti",
|
35
|
+
"githubUsername": "CarlosBonetti",
|
36
|
+
"url": "https://github.com/CarlosBonetti"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"name": "Dan Smith",
|
40
|
+
"githubUsername": "dpsmith3",
|
41
|
+
"url": "https://github.com/dpsmith3"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"name": "Hunter Perrin",
|
45
|
+
"githubUsername": "hperrin",
|
46
|
+
"url": "https://github.com/hperrin"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"name": "Jordan Harband",
|
50
|
+
"githubUsername": "ljharb",
|
51
|
+
"url": "https://github.com/ljharb"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"main": "",
|
55
|
+
"types": "index.d.ts",
|
56
|
+
"repository": {
|
57
|
+
"type": "git",
|
58
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
59
|
+
"directory": "types/qs"
|
60
|
+
},
|
61
|
+
"scripts": {},
|
62
|
+
"dependencies": {},
|
63
|
+
"typesPublisherContentHash": "1f1cbc913fb092d4ffa9230a21894f18d2826d04431244517086c6fc477dbf12",
|
64
|
+
"typeScriptVersion": "4.7"
|
65
|
+
}
|
@@ -14,6 +14,7 @@
|
|
14
14
|
"@types/jsdom": "^21.1.6",
|
15
15
|
"@types/node-fetch": "^2.6.9",
|
16
16
|
"@types/psl": "^1.1.3",
|
17
|
+
"@types/qs": "^6.9.15",
|
17
18
|
"@types/request": "^2.48.12"
|
18
19
|
}
|
19
20
|
},
|
@@ -101,6 +102,12 @@
|
|
101
102
|
"integrity": "sha512-Iu174JHfLd7i/XkXY6VDrqSlPvTDQOtQI7wNAXKKOAADJ9TduRLkNdMgjGiMxSttUIZnomv81JAbAbC0DhggxA==",
|
102
103
|
"dev": true
|
103
104
|
},
|
105
|
+
"node_modules/@types/qs": {
|
106
|
+
"version": "6.9.15",
|
107
|
+
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz",
|
108
|
+
"integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==",
|
109
|
+
"dev": true
|
110
|
+
},
|
104
111
|
"node_modules/@types/request": {
|
105
112
|
"version": "2.48.12",
|
106
113
|
"resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.12.tgz",
|
@@ -1 +1 @@
|
|
1
|
-
{"private":true,"dependencies":{"types-registry":"^0.1.684"},"devDependencies":{"@types/cheerio":"^0.22.35","@types/cookie":"^0.6.0","@types/htmlparser2":"^3.10.7","@types/jsdom":"^21.1.6","@types/node-fetch":"^2.6.9","@types/psl":"^1.1.3","@types/request":"^2.48.12"}}
|
1
|
+
{"private":true,"dependencies":{"types-registry":"^0.1.684"},"devDependencies":{"@types/cheerio":"^0.22.35","@types/cookie":"^0.6.0","@types/htmlparser2":"^3.10.7","@types/jsdom":"^21.1.6","@types/node-fetch":"^2.6.9","@types/psl":"^1.1.3","@types/qs":"^6.9.15","@types/request":"^2.48.12"}}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "rahad-media-downloader",
|
3
|
-
"version": "2.1.
|
3
|
+
"version": "2.1.12",
|
4
4
|
"description": "Fetch Url Downloads From Facebook & TikTok & Instagram",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -28,10 +28,37 @@
|
|
28
28
|
"rahad-media-downloader",
|
29
29
|
"Instagram-download",
|
30
30
|
"Instagram-downloader",
|
31
|
+
"ytdl",
|
32
|
+
"YouTubedl",
|
33
|
+
"yt",
|
34
|
+
"YouTube video download",
|
31
35
|
"instadl",
|
32
36
|
"Instagram",
|
33
37
|
"instadl-rahad",
|
34
|
-
"Rahad-Media-Downloader"
|
38
|
+
"Rahad-Media-Downloader",
|
39
|
+
"server",
|
40
|
+
"dl",
|
41
|
+
"MOHAMMAD-RAHAD",
|
42
|
+
"Mohammad",
|
43
|
+
"mohammad-Rahad",
|
44
|
+
"tik.down",
|
45
|
+
"tiktok-down",
|
46
|
+
"tiktok-downloader",
|
47
|
+
"tiktok-downloader-rahad",
|
48
|
+
"tik-dl",
|
49
|
+
"yt-dl",
|
50
|
+
"g",
|
51
|
+
"link",
|
52
|
+
"api",
|
53
|
+
"api-rahad",
|
54
|
+
"api",
|
55
|
+
"any-video-dl",
|
56
|
+
"any-video-downloader",
|
57
|
+
"any-video-downloader-rahad",
|
58
|
+
"any-video-downloade",
|
59
|
+
"any-video-downloade-rahad"
|
60
|
+
|
61
|
+
|
35
62
|
],
|
36
63
|
"author": "RAHAD",
|
37
64
|
"license": "MIT",
|
@@ -43,6 +70,8 @@
|
|
43
70
|
"axios": "^1.6.8",
|
44
71
|
"cheerio": "~1.0.0-rc.5",
|
45
72
|
"got": "^11.8.3",
|
73
|
+
"html-entities": "^2.5.2 ",
|
74
|
+
"node-fetch": "^3.3.2",
|
46
75
|
"request": "^2.88.2",
|
47
76
|
"ytdl-core": "^4.11.5"
|
48
77
|
}
|