@tgsnake/skema 1.12.0 → 2.0.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/LICENSE +1 -1
- package/README.md +125 -16
- package/dist/mod.d.ts +10 -0
- package/dist/mod.js +10 -0
- package/dist/src/Logger.d.ts +20 -0
- package/dist/src/Logger.js +23 -0
- package/dist/src/deps.d.ts +29 -0
- package/dist/src/deps.js +34 -0
- package/dist/src/errors/Base.d.ts +53 -0
- package/dist/src/errors/Base.js +114 -0
- package/dist/src/errors/Client.d.ts +69 -0
- package/dist/src/errors/Client.js +69 -0
- package/dist/src/errors/File.d.ts +89 -0
- package/dist/src/errors/File.js +99 -0
- package/dist/src/errors/RpcError.d.ts +115 -0
- package/dist/src/errors/RpcError.js +226 -0
- package/dist/src/errors/SecretChat.d.ts +78 -0
- package/dist/src/errors/SecretChat.js +88 -0
- package/dist/src/errors/WebSocket.d.ts +70 -0
- package/dist/src/errors/WebSocket.js +80 -0
- package/dist/{errors → src/errors}/exceptions/All.d.ts +14 -0
- package/dist/{errors → src/errors}/exceptions/All.js +15 -5
- package/dist/{errors → src/errors}/exceptions/BadRequest400.d.ts +15 -1
- package/dist/src/errors/exceptions/BadRequest400.js +2683 -0
- package/dist/{errors → src/errors}/exceptions/Flood420.d.ts +15 -1
- package/dist/{errors → src/errors}/exceptions/Flood420.js +25 -24
- package/dist/{errors → src/errors}/exceptions/Forbidden403.d.ts +15 -1
- package/dist/src/errors/exceptions/Forbidden403.js +243 -0
- package/dist/{errors → src/errors}/exceptions/InternalServerError500.d.ts +15 -1
- package/dist/src/errors/exceptions/InternalServerError500.js +255 -0
- package/dist/{errors → src/errors}/exceptions/NotAcceptable406.d.ts +15 -1
- package/dist/{errors → src/errors}/exceptions/NotAcceptable406.js +51 -76
- package/dist/src/errors/exceptions/NotFound404.d.ts +27 -0
- package/dist/src/errors/exceptions/NotFound404.js +27 -0
- package/dist/src/errors/exceptions/SeeOther303.d.ts +39 -0
- package/dist/src/errors/exceptions/SeeOther303.js +39 -0
- package/dist/src/errors/exceptions/ServiceUnavailable503.d.ts +31 -0
- package/dist/src/errors/exceptions/ServiceUnavailable503.js +31 -0
- package/dist/{errors → src/errors}/exceptions/Unauthorized401.d.ts +15 -1
- package/dist/src/errors/exceptions/Unauthorized401.js +55 -0
- package/dist/src/errors/exceptions/index.d.ts +24 -0
- package/dist/src/errors/exceptions/index.js +24 -0
- package/dist/src/errors/index.d.ts +142 -0
- package/dist/src/errors/index.js +178 -0
- package/dist/src/helpers.d.ts +102 -0
- package/dist/src/helpers.js +176 -0
- package/dist/src/index.d.ts +12 -0
- package/dist/src/index.js +12 -0
- package/dist/{raw → src/raw}/All.d.ts +47 -5
- package/dist/{raw → src/raw}/All.js +48 -9
- package/dist/{raw → src/raw}/Raw.d.ts +17546 -9
- package/dist/{raw → src/raw}/Raw.js +44899 -21694
- package/dist/src/raw/UpdateSecretChat.d.ts +186 -0
- package/dist/src/raw/UpdateSecretChat.js +215 -0
- package/dist/src/raw/core/GzipPacked.d.ts +63 -0
- package/dist/src/raw/core/GzipPacked.js +76 -0
- package/dist/src/raw/core/Message.d.ts +68 -0
- package/dist/src/raw/core/Message.js +105 -0
- package/dist/src/raw/core/MsgContainer.d.ts +56 -0
- package/dist/src/raw/core/MsgContainer.js +77 -0
- package/dist/src/raw/core/TLObject.d.ts +108 -0
- package/dist/src/raw/core/TLObject.js +209 -0
- package/dist/src/raw/core/index.d.ts +19 -0
- package/dist/src/raw/core/index.js +19 -0
- package/dist/src/raw/core/primitive/Bool.d.ts +104 -0
- package/dist/src/raw/core/primitive/Bool.js +120 -0
- package/dist/src/raw/core/primitive/Bytes.d.ts +45 -0
- package/dist/src/raw/core/primitive/Bytes.js +76 -0
- package/dist/src/raw/core/primitive/Double.d.ts +37 -0
- package/dist/src/raw/core/primitive/Double.js +51 -0
- package/dist/src/raw/core/primitive/Float.d.ts +37 -0
- package/dist/src/raw/core/primitive/Float.js +51 -0
- package/dist/src/raw/core/primitive/Int.d.ts +144 -0
- package/dist/src/raw/core/primitive/Int.js +237 -0
- package/dist/src/raw/core/primitive/String.d.ts +37 -0
- package/dist/src/raw/core/primitive/String.js +42 -0
- package/dist/src/raw/core/primitive/Vector.d.ts +56 -0
- package/dist/src/raw/core/primitive/Vector.js +93 -0
- package/dist/src/raw/core/primitive/index.d.ts +20 -0
- package/dist/src/raw/core/primitive/index.js +20 -0
- package/dist/src/raw/index.d.ts +17 -0
- package/dist/src/raw/index.js +17 -0
- package/package.json +54 -50
- package/dist/Logger.d.ts +0 -3
- package/dist/Logger.js +0 -9
- package/dist/deps.d.ts +0 -8
- package/dist/deps.js +0 -19
- package/dist/errors/Base.d.ts +0 -9
- package/dist/errors/Base.js +0 -50
- package/dist/errors/Client.d.ts +0 -21
- package/dist/errors/Client.js +0 -29
- package/dist/errors/File.d.ts +0 -13
- package/dist/errors/File.js +0 -30
- package/dist/errors/RpcError.d.ts +0 -22
- package/dist/errors/RpcError.js +0 -120
- package/dist/errors/SecretChat.d.ts +0 -13
- package/dist/errors/SecretChat.js +0 -30
- package/dist/errors/WebSocket.d.ts +0 -13
- package/dist/errors/WebSocket.js +0 -30
- package/dist/errors/exceptions/BadRequest400.js +0 -3352
- package/dist/errors/exceptions/Forbidden403.js +0 -290
- package/dist/errors/exceptions/InternalServerError500.js +0 -305
- package/dist/errors/exceptions/NotFound404.d.ts +0 -13
- package/dist/errors/exceptions/NotFound404.js +0 -19
- package/dist/errors/exceptions/SeeOther303.d.ts +0 -25
- package/dist/errors/exceptions/SeeOther303.js +0 -34
- package/dist/errors/exceptions/ServiceUnavailable503.d.ts +0 -17
- package/dist/errors/exceptions/ServiceUnavailable503.js +0 -24
- package/dist/errors/exceptions/Unauthorized401.js +0 -54
- package/dist/errors/exceptions/index.d.ts +0 -10
- package/dist/errors/exceptions/index.js +0 -48
- package/dist/errors/index.d.ts +0 -31
- package/dist/errors/index.js +0 -111
- package/dist/helpers.d.ts +0 -6
- package/dist/helpers.js +0 -85
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -34
- package/dist/raw/UpdateSecretChat.d.ts +0 -43
- package/dist/raw/UpdateSecretChat.js +0 -91
- package/dist/raw/core/GzipPacked.d.ts +0 -9
- package/dist/raw/core/GzipPacked.js +0 -59
- package/dist/raw/core/Message.d.ts +0 -12
- package/dist/raw/core/Message.js +0 -80
- package/dist/raw/core/MsgContainer.d.ts +0 -10
- package/dist/raw/core/MsgContainer.js +0 -68
- package/dist/raw/core/TLObject.d.ts +0 -18
- package/dist/raw/core/TLObject.js +0 -108
- package/dist/raw/core/index.d.ts +0 -6
- package/dist/raw/core/index.js +0 -46
- package/dist/raw/core/primitive/Bool.d.ts +0 -19
- package/dist/raw/core/primitive/Bool.js +0 -41
- package/dist/raw/core/primitive/Bytes.d.ts +0 -6
- package/dist/raw/core/primitive/Bytes.js +0 -41
- package/dist/raw/core/primitive/Double.d.ts +0 -6
- package/dist/raw/core/primitive/Double.js +0 -24
- package/dist/raw/core/primitive/Float.d.ts +0 -6
- package/dist/raw/core/primitive/Float.js +0 -24
- package/dist/raw/core/primitive/Int.d.ts +0 -22
- package/dist/raw/core/primitive/Int.js +0 -122
- package/dist/raw/core/primitive/String.d.ts +0 -6
- package/dist/raw/core/primitive/String.js +0 -15
- package/dist/raw/core/primitive/Vector.d.ts +0 -8
- package/dist/raw/core/primitive/Vector.js +0 -49
- package/dist/raw/core/primitive/index.d.ts +0 -7
- package/dist/raw/core/primitive/index.js +0 -22
- package/dist/raw/index.d.ts +0 -4
- package/dist/raw/index.js +0 -17
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Int256 = exports.Int128 = exports.Long = exports.Int = void 0;
|
|
4
|
-
const TLObject_js_1 = require("@/raw/core/TLObject.js");
|
|
5
|
-
const deps_js_1 = require("@/deps.js");
|
|
6
|
-
const helpers_js_1 = require("@/helpers.js");
|
|
7
|
-
class Int extends TLObject_js_1.TLObject {
|
|
8
|
-
static SIZE = 4;
|
|
9
|
-
static write(value, signed = true, little = true) {
|
|
10
|
-
const buffer = deps_js_1.Buffer.alloc(Int.SIZE);
|
|
11
|
-
if (signed) {
|
|
12
|
-
if (little) {
|
|
13
|
-
buffer.writeInt32LE(Number(value));
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
buffer.writeInt32BE(Number(value));
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
if (little) {
|
|
21
|
-
buffer.writeUInt32LE(Number(value));
|
|
22
|
-
}
|
|
23
|
-
else {
|
|
24
|
-
buffer.writeUInt32BE(Number(value));
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
return buffer;
|
|
28
|
-
}
|
|
29
|
-
static async read(data, signed = true, little = true, size = Int.SIZE) {
|
|
30
|
-
if (signed) {
|
|
31
|
-
if (little) {
|
|
32
|
-
return data.readInt32LE(size);
|
|
33
|
-
}
|
|
34
|
-
else {
|
|
35
|
-
return data.readInt32BE(size);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
else {
|
|
39
|
-
if (little) {
|
|
40
|
-
return data.readUInt32LE(size);
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
return data.readUInt32BE(size);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
exports.Int = Int;
|
|
49
|
-
class Long extends TLObject_js_1.TLObject {
|
|
50
|
-
static SIZE = 8;
|
|
51
|
-
static async read(data, signed = true, little = true, size = Long.SIZE) {
|
|
52
|
-
if (signed) {
|
|
53
|
-
if (little) {
|
|
54
|
-
return data.readBigInt64LE(size);
|
|
55
|
-
}
|
|
56
|
-
else {
|
|
57
|
-
return data.readBigInt64BE(size);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
else {
|
|
61
|
-
if (little) {
|
|
62
|
-
return data.readBigUInt64LE(size);
|
|
63
|
-
}
|
|
64
|
-
else {
|
|
65
|
-
return data.readBigUInt64BE(size);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
static write(value, signed = true, little = true) {
|
|
70
|
-
const buffer = deps_js_1.Buffer.alloc(Long.SIZE);
|
|
71
|
-
if (signed) {
|
|
72
|
-
if (little) {
|
|
73
|
-
buffer.writeBigInt64LE(BigInt(value));
|
|
74
|
-
}
|
|
75
|
-
else {
|
|
76
|
-
buffer.writeBigInt64BE(BigInt(value));
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
else {
|
|
80
|
-
if (little) {
|
|
81
|
-
buffer.writeBigUInt64LE(BigInt(value));
|
|
82
|
-
}
|
|
83
|
-
else {
|
|
84
|
-
buffer.writeBigUInt64BE(BigInt(value));
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
return buffer;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
exports.Long = Long;
|
|
91
|
-
class Int128 extends Long {
|
|
92
|
-
static SIZE = 16;
|
|
93
|
-
static async read(data, signed = true, little = true, size = Int128.SIZE) {
|
|
94
|
-
return (0, helpers_js_1.bufferToBigint)(data.read(size), little, signed);
|
|
95
|
-
}
|
|
96
|
-
static write(value, _signed = true, _little = true) {
|
|
97
|
-
const bytesArray = [];
|
|
98
|
-
for (let i = 0; i < Int128.SIZE; i++) {
|
|
99
|
-
let shift = value >> BigInt(Long.SIZE * i);
|
|
100
|
-
shift &= BigInt(255);
|
|
101
|
-
bytesArray[i] = Number(String(shift));
|
|
102
|
-
}
|
|
103
|
-
return deps_js_1.Buffer.from(bytesArray);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
exports.Int128 = Int128;
|
|
107
|
-
class Int256 extends Long {
|
|
108
|
-
static SIZE = 32;
|
|
109
|
-
static async read(data, signed = true, little = true, size = Int256.SIZE) {
|
|
110
|
-
return Int128.read(data, signed, little, size);
|
|
111
|
-
}
|
|
112
|
-
static write(value, _signed = true, _little = true) {
|
|
113
|
-
const bytesArray = [];
|
|
114
|
-
for (let i = 0; i < Int256.SIZE; i++) {
|
|
115
|
-
let shift = value >> BigInt(Long.SIZE * i);
|
|
116
|
-
shift &= BigInt(255);
|
|
117
|
-
bytesArray[i] = Number(String(shift));
|
|
118
|
-
}
|
|
119
|
-
return deps_js_1.Buffer.from(bytesArray);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
exports.Int256 = Int256;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.String = void 0;
|
|
4
|
-
const TLObject_js_1 = require("@/raw/core/TLObject.js");
|
|
5
|
-
const deps_js_1 = require("@/deps.js");
|
|
6
|
-
const Bytes_js_1 = require("@/raw/core/primitive/Bytes.js");
|
|
7
|
-
class String extends TLObject_js_1.TLObject {
|
|
8
|
-
static write(value) {
|
|
9
|
-
return Bytes_js_1.Bytes.write(deps_js_1.Buffer.from(value, 'utf8'));
|
|
10
|
-
}
|
|
11
|
-
static async read(data, ..._args) {
|
|
12
|
-
return (await Bytes_js_1.Bytes.read(data)).toString('utf8');
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
exports.String = String;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { TLObject } from '@/raw/core/TLObject.js';
|
|
2
|
-
import { BytesIO, Buffer } from '@/deps.js';
|
|
3
|
-
export declare class Vector extends TLObject {
|
|
4
|
-
static ID: number;
|
|
5
|
-
static write(value: Array<any>, tl?: any): Buffer;
|
|
6
|
-
static readBare(data: BytesIO, size: number): Promise<any>;
|
|
7
|
-
static read(data: BytesIO, tl?: any): Promise<Array<any>>;
|
|
8
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Vector = void 0;
|
|
4
|
-
const TLObject_js_1 = require("@/raw/core/TLObject.js");
|
|
5
|
-
const deps_js_1 = require("@/deps.js");
|
|
6
|
-
const index_js_1 = require("@/raw/core/primitive/index.js");
|
|
7
|
-
class Vector extends TLObject_js_1.TLObject {
|
|
8
|
-
static ID = 0x1cb5c415;
|
|
9
|
-
static write(value, tl) {
|
|
10
|
-
const bytes = new deps_js_1.BytesIO();
|
|
11
|
-
bytes.write(index_js_1.Int.write(Vector.ID, false));
|
|
12
|
-
bytes.write(index_js_1.Int.write(value.length));
|
|
13
|
-
for (const i of value) {
|
|
14
|
-
if (tl) {
|
|
15
|
-
bytes.write(tl.write(i));
|
|
16
|
-
}
|
|
17
|
-
else {
|
|
18
|
-
bytes.write(i.write());
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
return deps_js_1.Buffer.from(bytes.buffer);
|
|
22
|
-
}
|
|
23
|
-
static async readBare(data, size) {
|
|
24
|
-
if (size === 4) {
|
|
25
|
-
return await index_js_1.Int.read(data);
|
|
26
|
-
}
|
|
27
|
-
if (size === 8) {
|
|
28
|
-
return await index_js_1.Long.read(data);
|
|
29
|
-
}
|
|
30
|
-
return await TLObject_js_1.TLObject.read(data);
|
|
31
|
-
}
|
|
32
|
-
static async read(data, tl) {
|
|
33
|
-
const results = [];
|
|
34
|
-
const count = await index_js_1.Int.read(data);
|
|
35
|
-
const left = deps_js_1.Buffer.byteLength(data.read());
|
|
36
|
-
const size = count ? left / count : 0;
|
|
37
|
-
data.seek(-left, 1);
|
|
38
|
-
for (let i = 0; i < count; i++) {
|
|
39
|
-
if (tl) {
|
|
40
|
-
results.push(await tl.read(data));
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
results.push(await Vector.readBare(data, size));
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
return results;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
exports.Vector = Vector;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export { Int, Long, Int128, Int256 } from '@/raw/core/primitive/Int.js';
|
|
2
|
-
export { Bytes } from '@/raw/core/primitive/Bytes.js';
|
|
3
|
-
export { String } from '@/raw/core/primitive/String.js';
|
|
4
|
-
export { Bool, BoolTrue, BoolFalse } from '@/raw/core/primitive/Bool.js';
|
|
5
|
-
export { Vector } from '@/raw/core/primitive/Vector.js';
|
|
6
|
-
export { Double } from '@/raw/core/primitive/Double.js';
|
|
7
|
-
export { Float } from '@/raw/core/primitive/Float.js';
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Float = exports.Double = exports.Vector = exports.BoolFalse = exports.BoolTrue = exports.Bool = exports.String = exports.Bytes = exports.Int256 = exports.Int128 = exports.Long = exports.Int = void 0;
|
|
4
|
-
var Int_js_1 = require("@/raw/core/primitive/Int.js");
|
|
5
|
-
Object.defineProperty(exports, "Int", { enumerable: true, get: function () { return Int_js_1.Int; } });
|
|
6
|
-
Object.defineProperty(exports, "Long", { enumerable: true, get: function () { return Int_js_1.Long; } });
|
|
7
|
-
Object.defineProperty(exports, "Int128", { enumerable: true, get: function () { return Int_js_1.Int128; } });
|
|
8
|
-
Object.defineProperty(exports, "Int256", { enumerable: true, get: function () { return Int_js_1.Int256; } });
|
|
9
|
-
var Bytes_js_1 = require("@/raw/core/primitive/Bytes.js");
|
|
10
|
-
Object.defineProperty(exports, "Bytes", { enumerable: true, get: function () { return Bytes_js_1.Bytes; } });
|
|
11
|
-
var String_js_1 = require("@/raw/core/primitive/String.js");
|
|
12
|
-
Object.defineProperty(exports, "String", { enumerable: true, get: function () { return String_js_1.String; } });
|
|
13
|
-
var Bool_js_1 = require("@/raw/core/primitive/Bool.js");
|
|
14
|
-
Object.defineProperty(exports, "Bool", { enumerable: true, get: function () { return Bool_js_1.Bool; } });
|
|
15
|
-
Object.defineProperty(exports, "BoolTrue", { enumerable: true, get: function () { return Bool_js_1.BoolTrue; } });
|
|
16
|
-
Object.defineProperty(exports, "BoolFalse", { enumerable: true, get: function () { return Bool_js_1.BoolFalse; } });
|
|
17
|
-
var Vector_js_1 = require("@/raw/core/primitive/Vector.js");
|
|
18
|
-
Object.defineProperty(exports, "Vector", { enumerable: true, get: function () { return Vector_js_1.Vector; } });
|
|
19
|
-
var Double_js_1 = require("@/raw/core/primitive/Double.js");
|
|
20
|
-
Object.defineProperty(exports, "Double", { enumerable: true, get: function () { return Double_js_1.Double; } });
|
|
21
|
-
var Float_js_1 = require("@/raw/core/primitive/Float.js");
|
|
22
|
-
Object.defineProperty(exports, "Float", { enumerable: true, get: function () { return Float_js_1.Float; } });
|
package/dist/raw/index.d.ts
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export { Raw } from '@/raw/Raw.js';
|
|
2
|
-
export { AllTLObject } from '@/raw/All.js';
|
|
3
|
-
export { Primitive, TLObject, GzipPacked, Message, MsgContainer } from '@/raw/core/index.js';
|
|
4
|
-
export { SecretChatMessage, SecretChatMessageService, UpdateSecretChatMessage, TypeTGenerate, } from '@/raw/UpdateSecretChat.js';
|
package/dist/raw/index.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateSecretChatMessage = exports.SecretChatMessageService = exports.SecretChatMessage = exports.MsgContainer = exports.Message = exports.GzipPacked = exports.TLObject = exports.Primitive = exports.AllTLObject = exports.Raw = void 0;
|
|
4
|
-
var Raw_js_1 = require("@/raw/Raw.js");
|
|
5
|
-
Object.defineProperty(exports, "Raw", { enumerable: true, get: function () { return Raw_js_1.Raw; } });
|
|
6
|
-
var All_js_1 = require("@/raw/All.js");
|
|
7
|
-
Object.defineProperty(exports, "AllTLObject", { enumerable: true, get: function () { return All_js_1.AllTLObject; } });
|
|
8
|
-
var index_js_1 = require("@/raw/core/index.js");
|
|
9
|
-
Object.defineProperty(exports, "Primitive", { enumerable: true, get: function () { return index_js_1.Primitive; } });
|
|
10
|
-
Object.defineProperty(exports, "TLObject", { enumerable: true, get: function () { return index_js_1.TLObject; } });
|
|
11
|
-
Object.defineProperty(exports, "GzipPacked", { enumerable: true, get: function () { return index_js_1.GzipPacked; } });
|
|
12
|
-
Object.defineProperty(exports, "Message", { enumerable: true, get: function () { return index_js_1.Message; } });
|
|
13
|
-
Object.defineProperty(exports, "MsgContainer", { enumerable: true, get: function () { return index_js_1.MsgContainer; } });
|
|
14
|
-
var UpdateSecretChat_js_1 = require("@/raw/UpdateSecretChat.js");
|
|
15
|
-
Object.defineProperty(exports, "SecretChatMessage", { enumerable: true, get: function () { return UpdateSecretChat_js_1.SecretChatMessage; } });
|
|
16
|
-
Object.defineProperty(exports, "SecretChatMessageService", { enumerable: true, get: function () { return UpdateSecretChat_js_1.SecretChatMessageService; } });
|
|
17
|
-
Object.defineProperty(exports, "UpdateSecretChatMessage", { enumerable: true, get: function () { return UpdateSecretChat_js_1.UpdateSecretChatMessage; } });
|