rozod 6.7.0 → 6.7.1

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.
Files changed (50) hide show
  1. package/lib/endpoints/accountinformationv1.d.ts +50 -87
  2. package/lib/endpoints/accountinformationv1.js +46 -90
  3. package/lib/endpoints/assetdeliveryv1.d.ts +1 -0
  4. package/lib/endpoints/assetdeliveryv1.js +1 -0
  5. package/lib/endpoints/assetdeliveryv2.d.ts +1 -0
  6. package/lib/endpoints/assetdeliveryv2.js +1 -0
  7. package/lib/endpoints/authv1.d.ts +64 -1
  8. package/lib/endpoints/authv1.js +67 -3
  9. package/lib/endpoints/authv2.d.ts +21 -0
  10. package/lib/endpoints/authv2.js +22 -1
  11. package/lib/endpoints/avatarv1.d.ts +9 -6
  12. package/lib/endpoints/avatarv1.js +9 -6
  13. package/lib/endpoints/avatarv2.d.ts +11 -5
  14. package/lib/endpoints/avatarv2.js +11 -5
  15. package/lib/endpoints/avatarv3.d.ts +16 -7
  16. package/lib/endpoints/avatarv3.js +16 -7
  17. package/lib/endpoints/catalogv1.d.ts +23 -2
  18. package/lib/endpoints/catalogv1.js +19 -2
  19. package/lib/endpoints/catalogv2.d.ts +242 -6
  20. package/lib/endpoints/catalogv2.js +235 -7
  21. package/lib/endpoints/chatv2.d.ts +778 -778
  22. package/lib/endpoints/clientsettingsv2.d.ts +6 -0
  23. package/lib/endpoints/clientsettingsv2.js +6 -0
  24. package/lib/endpoints/contactsv1.d.ts +18 -22
  25. package/lib/endpoints/contactsv1.js +14 -22
  26. package/lib/endpoints/developv1.d.ts +33 -1
  27. package/lib/endpoints/developv1.js +9 -3
  28. package/lib/endpoints/developv2.d.ts +29 -2
  29. package/lib/endpoints/developv2.js +13 -4
  30. package/lib/endpoints/gameinternationalizationv1.d.ts +59 -0
  31. package/lib/endpoints/gameinternationalizationv1.js +57 -1
  32. package/lib/endpoints/gamejoinv1.d.ts +458 -458
  33. package/lib/endpoints/gamesv1.d.ts +77 -0
  34. package/lib/endpoints/gamesv1.js +68 -97
  35. package/lib/endpoints/gamesv2.d.ts +1 -0
  36. package/lib/endpoints/gamesv2.js +1 -0
  37. package/lib/endpoints/groupsv1.d.ts +7 -3
  38. package/lib/endpoints/groupsv1.js +7 -3
  39. package/lib/endpoints/groupsv2.d.ts +1 -0
  40. package/lib/endpoints/groupsv2.js +1 -0
  41. package/lib/endpoints/inventoryv2.d.ts +68 -0
  42. package/lib/endpoints/inventoryv2.js +66 -1
  43. package/lib/endpoints/localev1.d.ts +27 -0
  44. package/lib/endpoints/localev1.js +28 -1
  45. package/lib/endpoints/metricsv1.d.ts +88 -88
  46. package/lib/endpoints/publishv1.d.ts +3 -6
  47. package/lib/endpoints/publishv1.js +3 -6
  48. package/lib/opencloud/v2/cloud.d.ts +27 -5
  49. package/lib/opencloud/v2/cloud.js +43 -6
  50. package/package.json +108 -108
package/package.json CHANGED
@@ -1,108 +1,108 @@
1
- {
2
- "name": "rozod",
3
- "version": "6.7.0",
4
- "description": "A TypeScript wrapper for the Roblox API",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
7
- "exports": {
8
- ".": {
9
- "types": "./lib/index.d.ts",
10
- "default": "./lib/index.js"
11
- },
12
- "./endpoints/*": {
13
- "types": "./lib/endpoints/*.d.ts",
14
- "default": "./lib/endpoints/*.js"
15
- },
16
- "./endpoints/*.js": {
17
- "types": "./lib/endpoints/*.d.ts",
18
- "default": "./lib/endpoints/*.js"
19
- },
20
- "./opencloud": {
21
- "types": "./lib/opencloud/index.d.ts",
22
- "default": "./lib/opencloud/index.js"
23
- },
24
- "./opencloud/*": {
25
- "types": "./lib/opencloud/*.d.ts",
26
- "default": "./lib/opencloud/*.js"
27
- },
28
- "./opencloud/*.js": {
29
- "types": "./lib/opencloud/*.d.ts",
30
- "default": "./lib/opencloud/*.js"
31
- },
32
- "./cache": {
33
- "types": "./lib/cache.d.ts",
34
- "default": "./lib/cache.js"
35
- },
36
- "./lib/opencloud": {
37
- "types": "./lib/opencloud/index.d.ts",
38
- "default": "./lib/opencloud/index.js"
39
- },
40
- "./lib/*": {
41
- "types": "./lib/*.d.ts",
42
- "default": "./lib/*.js"
43
- },
44
- "./lib/*.js": {
45
- "types": "./lib/*.d.ts",
46
- "default": "./lib/*.js"
47
- },
48
- "./package.json": "./package.json"
49
- },
50
- "scripts": {
51
- "test": "jest --config jestconfig.json",
52
- "test:exports": "npm run build && node scripts/smoke-test-exports.mjs",
53
- "build": "tsc && tsc --project tsconfig.declarations.json",
54
- "format": "prettier --write \"src/**/*.ts\"",
55
- "prepare": "npm run build",
56
- "prepublishOnly": "npm test && npm run test:exports",
57
- "version": "npm run format && git add -A src",
58
- "generate": "node ./zodios_endpoints.js",
59
- "docs": "cd docs && node scripts/generate-reference.mjs && bunx astro build",
60
- "docs:dev": "cd docs && node scripts/generate-reference.mjs && bunx astro dev",
61
- "docs:preview": "cd docs && bunx astro preview"
62
- },
63
- "author": "AlroviOfficial",
64
- "license": "ISC",
65
- "dependencies": {
66
- "parse-roblox-errors": "^1.2.2",
67
- "roblox-bat": "^0.6.5",
68
- "zod": "^4.3.6"
69
- },
70
- "repository": {
71
- "url": "https://github.com/AlroviOfficial/RoZod"
72
- },
73
- "bugs": {
74
- "url": "https://github.com/AlroviOfficial/RoZod/issues"
75
- },
76
- "devDependencies": {
77
- "@alexop/openapi-zod-client": "^1.11.2",
78
- "@apidevtools/swagger-parser": "^10.1.1",
79
- "@types/jest": "^29.5.14",
80
- "@types/node": "^20.19.39",
81
- "@typescript-eslint/eslint-plugin": "^8.58.0",
82
- "@typescript-eslint/parser": "^8.58.0",
83
- "@zodios/plugins": "^10.6.0",
84
- "eslint": "^9.39.4",
85
- "eslint-config-prettier": "^9.1.2",
86
- "eslint-plugin-jsdoc": "^50.8.0",
87
- "eslint-plugin-prefer-arrow": "^1.2.3",
88
- "eslint-plugin-react": "^7.37.5",
89
- "handlebars": "^4.7.9",
90
- "jest": "^29.7.0",
91
- "p-limit": "^6.2.0",
92
- "prettier": "^3.8.1",
93
- "swagger2openapi": "^7.0.8",
94
- "ts-jest": "^29.4.9",
95
- "typescript": "^5.9.3"
96
- },
97
- "keywords": [
98
- "roblox",
99
- "bot",
100
- "api",
101
- "roblox-api",
102
- "zod",
103
- "typescript"
104
- ],
105
- "files": [
106
- "lib/**/*"
107
- ]
108
- }
1
+ {
2
+ "name": "rozod",
3
+ "version": "6.7.1",
4
+ "description": "A TypeScript wrapper for the Roblox API",
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./lib/index.d.ts",
10
+ "default": "./lib/index.js"
11
+ },
12
+ "./endpoints/*": {
13
+ "types": "./lib/endpoints/*.d.ts",
14
+ "default": "./lib/endpoints/*.js"
15
+ },
16
+ "./endpoints/*.js": {
17
+ "types": "./lib/endpoints/*.d.ts",
18
+ "default": "./lib/endpoints/*.js"
19
+ },
20
+ "./opencloud": {
21
+ "types": "./lib/opencloud/index.d.ts",
22
+ "default": "./lib/opencloud/index.js"
23
+ },
24
+ "./opencloud/*": {
25
+ "types": "./lib/opencloud/*.d.ts",
26
+ "default": "./lib/opencloud/*.js"
27
+ },
28
+ "./opencloud/*.js": {
29
+ "types": "./lib/opencloud/*.d.ts",
30
+ "default": "./lib/opencloud/*.js"
31
+ },
32
+ "./cache": {
33
+ "types": "./lib/cache.d.ts",
34
+ "default": "./lib/cache.js"
35
+ },
36
+ "./lib/opencloud": {
37
+ "types": "./lib/opencloud/index.d.ts",
38
+ "default": "./lib/opencloud/index.js"
39
+ },
40
+ "./lib/*": {
41
+ "types": "./lib/*.d.ts",
42
+ "default": "./lib/*.js"
43
+ },
44
+ "./lib/*.js": {
45
+ "types": "./lib/*.d.ts",
46
+ "default": "./lib/*.js"
47
+ },
48
+ "./package.json": "./package.json"
49
+ },
50
+ "scripts": {
51
+ "test": "jest --config jestconfig.json",
52
+ "test:exports": "npm run build && node scripts/smoke-test-exports.mjs",
53
+ "build": "tsc && tsc --project tsconfig.declarations.json",
54
+ "format": "prettier --write \"src/**/*.ts\"",
55
+ "prepare": "npm run build",
56
+ "prepublishOnly": "npm test && npm run test:exports",
57
+ "version": "npm run format && git add -A src",
58
+ "generate": "node ./zodios_endpoints.js",
59
+ "docs": "cd docs && node scripts/generate-reference.mjs && bunx astro build",
60
+ "docs:dev": "cd docs && node scripts/generate-reference.mjs && bunx astro dev",
61
+ "docs:preview": "cd docs && bunx astro preview"
62
+ },
63
+ "author": "AlroviOfficial",
64
+ "license": "ISC",
65
+ "dependencies": {
66
+ "parse-roblox-errors": "^1.2.2",
67
+ "roblox-bat": "^0.6.5",
68
+ "zod": "^4.3.6"
69
+ },
70
+ "repository": {
71
+ "url": "https://github.com/AlroviOfficial/RoZod"
72
+ },
73
+ "bugs": {
74
+ "url": "https://github.com/AlroviOfficial/RoZod/issues"
75
+ },
76
+ "devDependencies": {
77
+ "@alexop/openapi-zod-client": "^1.11.2",
78
+ "@apidevtools/swagger-parser": "^10.1.1",
79
+ "@types/jest": "^29.5.14",
80
+ "@types/node": "^20.19.39",
81
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
82
+ "@typescript-eslint/parser": "^8.58.0",
83
+ "@zodios/plugins": "^10.6.0",
84
+ "eslint": "^9.39.4",
85
+ "eslint-config-prettier": "^9.1.2",
86
+ "eslint-plugin-jsdoc": "^50.8.0",
87
+ "eslint-plugin-prefer-arrow": "^1.2.3",
88
+ "eslint-plugin-react": "^7.37.5",
89
+ "handlebars": "^4.7.9",
90
+ "jest": "^29.7.0",
91
+ "p-limit": "^6.2.0",
92
+ "prettier": "^3.8.1",
93
+ "swagger2openapi": "^7.0.8",
94
+ "ts-jest": "^29.4.9",
95
+ "typescript": "^5.9.3"
96
+ },
97
+ "keywords": [
98
+ "roblox",
99
+ "bot",
100
+ "api",
101
+ "roblox-api",
102
+ "zod",
103
+ "typescript"
104
+ ],
105
+ "files": [
106
+ "lib/**/*"
107
+ ]
108
+ }