@tgsnake/skema 2.1.0 → 2.2.0-browser.0
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/src/deps.d.ts +4 -3
- package/dist/src/deps.js +4 -4
- package/dist/src/errors/exceptions/All.d.ts +41 -1
- package/dist/src/errors/exceptions/All.js +41 -1
- package/dist/src/errors/exceptions/BadRequest400.d.ts +124 -0
- package/dist/src/errors/exceptions/BadRequest400.js +143 -19
- package/dist/src/errors/exceptions/Forbidden403.d.ts +24 -0
- package/dist/src/errors/exceptions/Forbidden403.js +24 -0
- package/dist/src/errors/exceptions/InternalServerError500.d.ts +8 -0
- package/dist/src/errors/exceptions/InternalServerError500.js +8 -0
- package/dist/src/errors/exceptions/NotAcceptable406.d.ts +4 -0
- package/dist/src/errors/exceptions/NotAcceptable406.js +4 -0
- package/package.json +54 -52
package/package.json
CHANGED
|
@@ -1,52 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tgsnake/skema",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "A compiled Telegram TL Schema and Telegram errors Schema into usable JavaScript classes with full TypeScript support",
|
|
5
|
-
"main": "dist/mod.js",
|
|
6
|
-
"types": "dist/mod.d.ts",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"packageManager": "yarn@4.9.2",
|
|
9
|
-
"homepage": "https://tgsnake.js.org",
|
|
10
|
-
"keywords": [
|
|
11
|
-
"tgsnake",
|
|
12
|
-
"mtproto",
|
|
13
|
-
"telegram"
|
|
14
|
-
],
|
|
15
|
-
"bugs": "https://github.com/tgsnake/skema/issues",
|
|
16
|
-
"repository": "https://github.com/tgsnake/skema",
|
|
17
|
-
"author": "butthx",
|
|
18
|
-
"files": [
|
|
19
|
-
"dist/**/**"
|
|
20
|
-
],
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"engineStrict": true,
|
|
23
|
-
"engines": {
|
|
24
|
-
"node": ">=22.0.0",
|
|
25
|
-
"npm": ">=6.0.0",
|
|
26
|
-
"yarn": ">=1.0.0",
|
|
27
|
-
"deno": ">=1.0.0",
|
|
28
|
-
"bun": ">=1.0.0"
|
|
29
|
-
},
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "tsc",
|
|
32
|
-
"build:api": "node ./generator/api",
|
|
33
|
-
"build:sync": "node ./generator/sync-tl",
|
|
34
|
-
"build:error": "node ./generator/error",
|
|
35
|
-
"build:jsr": "node ./generator/jsr_version/index.js",
|
|
36
|
-
"build:docs": "typedoc --tsconfig tsconfig.json --out docs src/index.ts",
|
|
37
|
-
"prepare": "yarn build",
|
|
38
|
-
"prettier": "NODE_OPTIONS=--max_old_space_size=4096 prettier -w ."
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@types/bun": "^1.3.14",
|
|
42
|
-
"@types/node": "^25.9.3",
|
|
43
|
-
"prettier": "^3.8.4",
|
|
44
|
-
"typedoc": "^0.28.19",
|
|
45
|
-
"typescript": "^6.0.3"
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@tgsnake/bytesio": "
|
|
49
|
-
"@tgsnake/log": "
|
|
50
|
-
"big-integer": "^1.6.52"
|
|
51
|
-
|
|
52
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@tgsnake/skema",
|
|
3
|
+
"version": "2.2.0-browser.0",
|
|
4
|
+
"description": "A compiled Telegram TL Schema and Telegram errors Schema into usable JavaScript classes with full TypeScript support",
|
|
5
|
+
"main": "dist/mod.js",
|
|
6
|
+
"types": "dist/mod.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"packageManager": "yarn@4.9.2",
|
|
9
|
+
"homepage": "https://tgsnake.js.org",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"tgsnake",
|
|
12
|
+
"mtproto",
|
|
13
|
+
"telegram"
|
|
14
|
+
],
|
|
15
|
+
"bugs": "https://github.com/tgsnake/skema/issues",
|
|
16
|
+
"repository": "https://github.com/tgsnake/skema",
|
|
17
|
+
"author": "butthx",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/**/**"
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"engineStrict": true,
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22.0.0",
|
|
25
|
+
"npm": ">=6.0.0",
|
|
26
|
+
"yarn": ">=1.0.0",
|
|
27
|
+
"deno": ">=1.0.0",
|
|
28
|
+
"bun": ">=1.0.0"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsc",
|
|
32
|
+
"build:api": "node ./generator/api",
|
|
33
|
+
"build:sync": "node ./generator/sync-tl",
|
|
34
|
+
"build:error": "node ./generator/error",
|
|
35
|
+
"build:jsr": "node ./generator/jsr_version/index.js",
|
|
36
|
+
"build:docs": "typedoc --tsconfig tsconfig.json --out docs src/index.ts",
|
|
37
|
+
"prepare": "yarn build",
|
|
38
|
+
"prettier": "NODE_OPTIONS=--max_old_space_size=4096 prettier -w ."
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/bun": "^1.3.14",
|
|
42
|
+
"@types/node": "^25.9.3",
|
|
43
|
+
"prettier": "^3.8.4",
|
|
44
|
+
"typedoc": "^0.28.19",
|
|
45
|
+
"typescript": "^6.0.3"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@tgsnake/bytesio": "browser",
|
|
49
|
+
"@tgsnake/log": "browser",
|
|
50
|
+
"big-integer": "^1.6.52",
|
|
51
|
+
"browserify-zlib": "^0.2.0",
|
|
52
|
+
"buffer": "^6.0.3"
|
|
53
|
+
}
|
|
54
|
+
}
|