@valpro-labs/valorant-api 1.0.2 → 1.0.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.
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const BundleSchema: z.ZodObject<{
|
|
3
3
|
uuid: z.ZodString;
|
|
4
4
|
displayName: z.ZodString;
|
|
5
|
-
|
|
5
|
+
displayNameSubText: z.ZodString;
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
extraDescription: z.ZodString;
|
|
8
8
|
promoDescription: z.ZodString;
|
|
@@ -16,7 +16,7 @@ export type BundleResponse = z.infer<typeof BundleSchema>;
|
|
|
16
16
|
export declare const BundlesSchema: z.ZodArray<z.ZodObject<{
|
|
17
17
|
uuid: z.ZodString;
|
|
18
18
|
displayName: z.ZodString;
|
|
19
|
-
|
|
19
|
+
displayNameSubText: z.ZodString;
|
|
20
20
|
description: z.ZodString;
|
|
21
21
|
extraDescription: z.ZodString;
|
|
22
22
|
promoDescription: z.ZodString;
|
|
@@ -5,7 +5,7 @@ const zod_1 = require("zod");
|
|
|
5
5
|
exports.BundleSchema = zod_1.z.object({
|
|
6
6
|
uuid: zod_1.z.string().uuid(),
|
|
7
7
|
displayName: zod_1.z.string(),
|
|
8
|
-
|
|
8
|
+
displayNameSubText: zod_1.z.string(),
|
|
9
9
|
description: zod_1.z.string(),
|
|
10
10
|
extraDescription: zod_1.z.string(),
|
|
11
11
|
promoDescription: zod_1.z.string(),
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@valpro-labs/valorant-api",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A typed TypeScript client for Valorant-API",
|
|
5
|
-
"homepage": "https://github.com/valpro-labs/valorant-api#readme",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/valpro-labs/valorant-api/issues"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/valpro-labs/valorant-api.git"
|
|
12
|
-
},
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"keywords": [
|
|
15
|
-
"valorant"
|
|
16
|
-
],
|
|
17
|
-
"author": "rhy3h",
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
|
-
"main": "dist/index.js",
|
|
22
|
-
"types": "dist/index.d.ts",
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsc",
|
|
25
|
-
"prepare": "npm run build",
|
|
26
|
-
"test": "jest"
|
|
27
|
-
},
|
|
28
|
-
"type": "commonjs",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"axios": "^1.13.5",
|
|
31
|
-
"zod": "^4.3.6"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@types/jest": "^30.0.0",
|
|
35
|
-
"@types/node": "^25.3.0",
|
|
36
|
-
"jest": "^30.2.0",
|
|
37
|
-
"ts-jest": "^29.4.6",
|
|
38
|
-
"typescript": "^5.9.3"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@valpro-labs/valorant-api",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "A typed TypeScript client for Valorant-API",
|
|
5
|
+
"homepage": "https://github.com/valpro-labs/valorant-api#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/valpro-labs/valorant-api/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/valpro-labs/valorant-api.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"valorant"
|
|
16
|
+
],
|
|
17
|
+
"author": "rhy3h",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"types": "dist/index.d.ts",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsc",
|
|
25
|
+
"prepare": "npm run build",
|
|
26
|
+
"test": "jest"
|
|
27
|
+
},
|
|
28
|
+
"type": "commonjs",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"axios": "^1.13.5",
|
|
31
|
+
"zod": "^4.3.6"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/jest": "^30.0.0",
|
|
35
|
+
"@types/node": "^25.3.0",
|
|
36
|
+
"jest": "^30.2.0",
|
|
37
|
+
"ts-jest": "^29.4.6",
|
|
38
|
+
"typescript": "^5.9.3"
|
|
39
|
+
}
|
|
40
|
+
}
|