@miniblox/protocol 3.42.3-0.0.0 → 3.43.16-0.0.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/index.d.mts +291 -5
- package/dist/index.mjs +1 -7758
- package/package.json +7 -3
package/dist/index.d.mts
CHANGED
|
@@ -900,6 +900,10 @@ declare class CPacketServerInfo extends Message<CPacketServerInfo> {
|
|
|
900
900
|
* @generated from field: optional bool command_blocks_enabled = 14;
|
|
901
901
|
*/
|
|
902
902
|
commandBlocksEnabled?: boolean;
|
|
903
|
+
/**
|
|
904
|
+
* @generated from field: optional bool scripting_enabled = 15;
|
|
905
|
+
*/
|
|
906
|
+
scriptingEnabled?: boolean;
|
|
903
907
|
constructor(data?: PartialMessage<CPacketServerInfo>);
|
|
904
908
|
static readonly runtime: typeof proto2;
|
|
905
909
|
static readonly typeName = "CPacketServerInfo";
|
|
@@ -2236,6 +2240,118 @@ declare class CPacketTimeUpdate extends Message<CPacketTimeUpdate> {
|
|
|
2236
2240
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CPacketTimeUpdate;
|
|
2237
2241
|
static equals(a: CPacketTimeUpdate | PlainMessage<CPacketTimeUpdate> | undefined, b: CPacketTimeUpdate | PlainMessage<CPacketTimeUpdate> | undefined): boolean;
|
|
2238
2242
|
}
|
|
2243
|
+
/**
|
|
2244
|
+
* @generated from message CPacketScriptData
|
|
2245
|
+
*/
|
|
2246
|
+
declare class CPacketScriptData extends Message<CPacketScriptData> {
|
|
2247
|
+
/**
|
|
2248
|
+
* @generated from field: required bool enabled = 1;
|
|
2249
|
+
*/
|
|
2250
|
+
enabled?: boolean;
|
|
2251
|
+
/**
|
|
2252
|
+
* @generated from field: optional string disabled_reason = 2;
|
|
2253
|
+
*/
|
|
2254
|
+
disabledReason?: string;
|
|
2255
|
+
/**
|
|
2256
|
+
* @generated from field: repeated PBScriptEntry scripts = 3;
|
|
2257
|
+
*/
|
|
2258
|
+
scripts: PBScriptEntry[];
|
|
2259
|
+
/**
|
|
2260
|
+
* @generated from field: optional bool read_only = 4;
|
|
2261
|
+
*/
|
|
2262
|
+
readOnly?: boolean;
|
|
2263
|
+
constructor(data?: PartialMessage<CPacketScriptData>);
|
|
2264
|
+
static readonly runtime: typeof proto2;
|
|
2265
|
+
static readonly typeName = "CPacketScriptData";
|
|
2266
|
+
static readonly fields: FieldList;
|
|
2267
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CPacketScriptData;
|
|
2268
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CPacketScriptData;
|
|
2269
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CPacketScriptData;
|
|
2270
|
+
static equals(a: CPacketScriptData | PlainMessage<CPacketScriptData> | undefined, b: CPacketScriptData | PlainMessage<CPacketScriptData> | undefined): boolean;
|
|
2271
|
+
}
|
|
2272
|
+
/**
|
|
2273
|
+
* @generated from message PBScriptEntry
|
|
2274
|
+
*/
|
|
2275
|
+
declare class PBScriptEntry extends Message<PBScriptEntry> {
|
|
2276
|
+
/**
|
|
2277
|
+
* @generated from field: required string name = 1;
|
|
2278
|
+
*/
|
|
2279
|
+
name?: string;
|
|
2280
|
+
/**
|
|
2281
|
+
* @generated from field: required string source = 2;
|
|
2282
|
+
*/
|
|
2283
|
+
source?: string;
|
|
2284
|
+
/**
|
|
2285
|
+
* @generated from field: optional uint64 updated_at = 3;
|
|
2286
|
+
*/
|
|
2287
|
+
updatedAt?: bigint;
|
|
2288
|
+
/**
|
|
2289
|
+
* @generated from field: optional string updated_by = 4;
|
|
2290
|
+
*/
|
|
2291
|
+
updatedBy?: string;
|
|
2292
|
+
/**
|
|
2293
|
+
* @generated from field: optional string load_error = 5;
|
|
2294
|
+
*/
|
|
2295
|
+
loadError?: string;
|
|
2296
|
+
constructor(data?: PartialMessage<PBScriptEntry>);
|
|
2297
|
+
static readonly runtime: typeof proto2;
|
|
2298
|
+
static readonly typeName = "PBScriptEntry";
|
|
2299
|
+
static readonly fields: FieldList;
|
|
2300
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PBScriptEntry;
|
|
2301
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PBScriptEntry;
|
|
2302
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PBScriptEntry;
|
|
2303
|
+
static equals(a: PBScriptEntry | PlainMessage<PBScriptEntry> | undefined, b: PBScriptEntry | PlainMessage<PBScriptEntry> | undefined): boolean;
|
|
2304
|
+
}
|
|
2305
|
+
/**
|
|
2306
|
+
* @generated from message CPacketScriptLog
|
|
2307
|
+
*/
|
|
2308
|
+
declare class CPacketScriptLog extends Message<CPacketScriptLog> {
|
|
2309
|
+
/**
|
|
2310
|
+
* @generated from field: repeated PBScriptLogEntry entries = 1;
|
|
2311
|
+
*/
|
|
2312
|
+
entries: PBScriptLogEntry[];
|
|
2313
|
+
constructor(data?: PartialMessage<CPacketScriptLog>);
|
|
2314
|
+
static readonly runtime: typeof proto2;
|
|
2315
|
+
static readonly typeName = "CPacketScriptLog";
|
|
2316
|
+
static readonly fields: FieldList;
|
|
2317
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CPacketScriptLog;
|
|
2318
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CPacketScriptLog;
|
|
2319
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CPacketScriptLog;
|
|
2320
|
+
static equals(a: CPacketScriptLog | PlainMessage<CPacketScriptLog> | undefined, b: CPacketScriptLog | PlainMessage<CPacketScriptLog> | undefined): boolean;
|
|
2321
|
+
}
|
|
2322
|
+
/**
|
|
2323
|
+
* @generated from message PBScriptLogEntry
|
|
2324
|
+
*/
|
|
2325
|
+
declare class PBScriptLogEntry extends Message<PBScriptLogEntry> {
|
|
2326
|
+
/**
|
|
2327
|
+
* @generated from field: required string level = 1;
|
|
2328
|
+
*/
|
|
2329
|
+
level?: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* @generated from field: required string message = 2;
|
|
2332
|
+
*/
|
|
2333
|
+
message?: string;
|
|
2334
|
+
/**
|
|
2335
|
+
* @generated from field: optional string stack = 3;
|
|
2336
|
+
*/
|
|
2337
|
+
stack?: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* @generated from field: optional uint64 tick = 4;
|
|
2340
|
+
*/
|
|
2341
|
+
tick?: bigint;
|
|
2342
|
+
/**
|
|
2343
|
+
* @generated from field: optional uint64 timestamp = 5;
|
|
2344
|
+
*/
|
|
2345
|
+
timestamp?: bigint;
|
|
2346
|
+
constructor(data?: PartialMessage<PBScriptLogEntry>);
|
|
2347
|
+
static readonly runtime: typeof proto2;
|
|
2348
|
+
static readonly typeName = "PBScriptLogEntry";
|
|
2349
|
+
static readonly fields: FieldList;
|
|
2350
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PBScriptLogEntry;
|
|
2351
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PBScriptLogEntry;
|
|
2352
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PBScriptLogEntry;
|
|
2353
|
+
static equals(a: PBScriptLogEntry | PlainMessage<PBScriptLogEntry> | undefined, b: PBScriptLogEntry | PlainMessage<PBScriptLogEntry> | undefined): boolean;
|
|
2354
|
+
}
|
|
2239
2355
|
/**
|
|
2240
2356
|
* @generated from message ClientBoundCombined
|
|
2241
2357
|
*/
|
|
@@ -2608,6 +2724,18 @@ declare class ClientBoundCombined_CPacket extends Message<ClientBoundCombined_CP
|
|
|
2608
2724
|
*/
|
|
2609
2725
|
value: CPacketPlayerReconciliation;
|
|
2610
2726
|
case: "CPacketPlayerReconciliation";
|
|
2727
|
+
} | {
|
|
2728
|
+
/**
|
|
2729
|
+
* @generated from field: CPacketScriptData CPacketScriptData = 59;
|
|
2730
|
+
*/
|
|
2731
|
+
value: CPacketScriptData;
|
|
2732
|
+
case: "CPacketScriptData";
|
|
2733
|
+
} | {
|
|
2734
|
+
/**
|
|
2735
|
+
* @generated from field: CPacketScriptLog CPacketScriptLog = 60;
|
|
2736
|
+
*/
|
|
2737
|
+
value: CPacketScriptLog;
|
|
2738
|
+
case: "CPacketScriptLog";
|
|
2611
2739
|
} | {
|
|
2612
2740
|
case: undefined;
|
|
2613
2741
|
value?: undefined;
|
|
@@ -2787,6 +2915,23 @@ declare class UpdateCommandBlock extends Message<UpdateCommandBlock> {
|
|
|
2787
2915
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateCommandBlock;
|
|
2788
2916
|
static equals(a: UpdateCommandBlock | PlainMessage<UpdateCommandBlock> | undefined, b: UpdateCommandBlock | PlainMessage<UpdateCommandBlock> | undefined): boolean;
|
|
2789
2917
|
}
|
|
2918
|
+
/**
|
|
2919
|
+
* @generated from message UpdateScripting
|
|
2920
|
+
*/
|
|
2921
|
+
declare class UpdateScripting extends Message<UpdateScripting> {
|
|
2922
|
+
/**
|
|
2923
|
+
* @generated from field: required bool enabled = 1;
|
|
2924
|
+
*/
|
|
2925
|
+
enabled?: boolean;
|
|
2926
|
+
constructor(data?: PartialMessage<UpdateScripting>);
|
|
2927
|
+
static readonly runtime: typeof proto2;
|
|
2928
|
+
static readonly typeName = "UpdateScripting";
|
|
2929
|
+
static readonly fields: FieldList;
|
|
2930
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateScripting;
|
|
2931
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateScripting;
|
|
2932
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateScripting;
|
|
2933
|
+
static equals(a: UpdateScripting | PlainMessage<UpdateScripting> | undefined, b: UpdateScripting | PlainMessage<UpdateScripting> | undefined): boolean;
|
|
2934
|
+
}
|
|
2790
2935
|
/**
|
|
2791
2936
|
* @generated from message SPacketAdminAction
|
|
2792
2937
|
*/
|
|
@@ -2854,6 +2999,12 @@ declare class SPacketAdminAction extends Message<SPacketAdminAction> {
|
|
|
2854
2999
|
*/
|
|
2855
3000
|
value: UpdateCommandBlock;
|
|
2856
3001
|
case: "updateCommandBlock";
|
|
3002
|
+
} | {
|
|
3003
|
+
/**
|
|
3004
|
+
* @generated from field: UpdateScripting update_scripting = 11;
|
|
3005
|
+
*/
|
|
3006
|
+
value: UpdateScripting;
|
|
3007
|
+
case: "updateScripting";
|
|
2857
3008
|
} | {
|
|
2858
3009
|
case: undefined;
|
|
2859
3010
|
value?: undefined;
|
|
@@ -3009,13 +3160,13 @@ declare class SPacketEntityAction extends Message<SPacketEntityAction> {
|
|
|
3009
3160
|
*/
|
|
3010
3161
|
punching?: boolean;
|
|
3011
3162
|
/**
|
|
3012
|
-
* @generated from field: optional float
|
|
3163
|
+
* @generated from field: optional float PQeKgVMnct = 5;
|
|
3013
3164
|
*/
|
|
3014
|
-
|
|
3165
|
+
PQeKgVMnct?: number;
|
|
3015
3166
|
/**
|
|
3016
|
-
* @generated from field: optional float
|
|
3167
|
+
* @generated from field: optional float OyLnqYcJaP = 6;
|
|
3017
3168
|
*/
|
|
3018
|
-
|
|
3169
|
+
OyLnqYcJaP?: number;
|
|
3019
3170
|
/**
|
|
3020
3171
|
* @generated from field: optional int32 fire = 20;
|
|
3021
3172
|
*/
|
|
@@ -3074,6 +3225,10 @@ declare class SPacketLoginStart extends Message<SPacketLoginStart> {
|
|
|
3074
3225
|
* @generated from field: required string client_version = 5;
|
|
3075
3226
|
*/
|
|
3076
3227
|
clientVersion?: string;
|
|
3228
|
+
/**
|
|
3229
|
+
* @generated from field: optional string language = 6;
|
|
3230
|
+
*/
|
|
3231
|
+
language?: string;
|
|
3077
3232
|
constructor(data?: PartialMessage<SPacketLoginStart>);
|
|
3078
3233
|
static readonly runtime: typeof proto2;
|
|
3079
3234
|
static readonly typeName = "SPacketLoginStart";
|
|
@@ -3572,6 +3727,137 @@ declare class SPacketUseItem extends Message<SPacketUseItem> {
|
|
|
3572
3727
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SPacketUseItem;
|
|
3573
3728
|
static equals(a: SPacketUseItem | PlainMessage<SPacketUseItem> | undefined, b: SPacketUseItem | PlainMessage<SPacketUseItem> | undefined): boolean;
|
|
3574
3729
|
}
|
|
3730
|
+
/**
|
|
3731
|
+
* @generated from message ScriptList
|
|
3732
|
+
*/
|
|
3733
|
+
declare class ScriptList extends Message<ScriptList> {
|
|
3734
|
+
constructor(data?: PartialMessage<ScriptList>);
|
|
3735
|
+
static readonly runtime: typeof proto2;
|
|
3736
|
+
static readonly typeName = "ScriptList";
|
|
3737
|
+
static readonly fields: FieldList;
|
|
3738
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScriptList;
|
|
3739
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScriptList;
|
|
3740
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScriptList;
|
|
3741
|
+
static equals(a: ScriptList | PlainMessage<ScriptList> | undefined, b: ScriptList | PlainMessage<ScriptList> | undefined): boolean;
|
|
3742
|
+
}
|
|
3743
|
+
/**
|
|
3744
|
+
* @generated from message ScriptSave
|
|
3745
|
+
*/
|
|
3746
|
+
declare class ScriptSave extends Message<ScriptSave> {
|
|
3747
|
+
/**
|
|
3748
|
+
* @generated from field: required string name = 1;
|
|
3749
|
+
*/
|
|
3750
|
+
name?: string;
|
|
3751
|
+
/**
|
|
3752
|
+
* @generated from field: required string source = 2;
|
|
3753
|
+
*/
|
|
3754
|
+
source?: string;
|
|
3755
|
+
constructor(data?: PartialMessage<ScriptSave>);
|
|
3756
|
+
static readonly runtime: typeof proto2;
|
|
3757
|
+
static readonly typeName = "ScriptSave";
|
|
3758
|
+
static readonly fields: FieldList;
|
|
3759
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScriptSave;
|
|
3760
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScriptSave;
|
|
3761
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScriptSave;
|
|
3762
|
+
static equals(a: ScriptSave | PlainMessage<ScriptSave> | undefined, b: ScriptSave | PlainMessage<ScriptSave> | undefined): boolean;
|
|
3763
|
+
}
|
|
3764
|
+
/**
|
|
3765
|
+
* @generated from message ScriptDelete
|
|
3766
|
+
*/
|
|
3767
|
+
declare class ScriptDelete extends Message<ScriptDelete> {
|
|
3768
|
+
/**
|
|
3769
|
+
* @generated from field: required string name = 1;
|
|
3770
|
+
*/
|
|
3771
|
+
name?: string;
|
|
3772
|
+
constructor(data?: PartialMessage<ScriptDelete>);
|
|
3773
|
+
static readonly runtime: typeof proto2;
|
|
3774
|
+
static readonly typeName = "ScriptDelete";
|
|
3775
|
+
static readonly fields: FieldList;
|
|
3776
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScriptDelete;
|
|
3777
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScriptDelete;
|
|
3778
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScriptDelete;
|
|
3779
|
+
static equals(a: ScriptDelete | PlainMessage<ScriptDelete> | undefined, b: ScriptDelete | PlainMessage<ScriptDelete> | undefined): boolean;
|
|
3780
|
+
}
|
|
3781
|
+
/**
|
|
3782
|
+
* @generated from message ScriptSetEnabled
|
|
3783
|
+
*/
|
|
3784
|
+
declare class ScriptSetEnabled extends Message<ScriptSetEnabled> {
|
|
3785
|
+
/**
|
|
3786
|
+
* @generated from field: required bool enabled = 1;
|
|
3787
|
+
*/
|
|
3788
|
+
enabled?: boolean;
|
|
3789
|
+
constructor(data?: PartialMessage<ScriptSetEnabled>);
|
|
3790
|
+
static readonly runtime: typeof proto2;
|
|
3791
|
+
static readonly typeName = "ScriptSetEnabled";
|
|
3792
|
+
static readonly fields: FieldList;
|
|
3793
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScriptSetEnabled;
|
|
3794
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScriptSetEnabled;
|
|
3795
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScriptSetEnabled;
|
|
3796
|
+
static equals(a: ScriptSetEnabled | PlainMessage<ScriptSetEnabled> | undefined, b: ScriptSetEnabled | PlainMessage<ScriptSetEnabled> | undefined): boolean;
|
|
3797
|
+
}
|
|
3798
|
+
/**
|
|
3799
|
+
* @generated from message ScriptGetLogs
|
|
3800
|
+
*/
|
|
3801
|
+
declare class ScriptGetLogs extends Message<ScriptGetLogs> {
|
|
3802
|
+
constructor(data?: PartialMessage<ScriptGetLogs>);
|
|
3803
|
+
static readonly runtime: typeof proto2;
|
|
3804
|
+
static readonly typeName = "ScriptGetLogs";
|
|
3805
|
+
static readonly fields: FieldList;
|
|
3806
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScriptGetLogs;
|
|
3807
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScriptGetLogs;
|
|
3808
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScriptGetLogs;
|
|
3809
|
+
static equals(a: ScriptGetLogs | PlainMessage<ScriptGetLogs> | undefined, b: ScriptGetLogs | PlainMessage<ScriptGetLogs> | undefined): boolean;
|
|
3810
|
+
}
|
|
3811
|
+
/**
|
|
3812
|
+
* @generated from message SPacketScriptAction
|
|
3813
|
+
*/
|
|
3814
|
+
declare class SPacketScriptAction extends Message<SPacketScriptAction> {
|
|
3815
|
+
/**
|
|
3816
|
+
* @generated from oneof SPacketScriptAction.action
|
|
3817
|
+
*/
|
|
3818
|
+
action: {
|
|
3819
|
+
/**
|
|
3820
|
+
* @generated from field: ScriptList list = 1;
|
|
3821
|
+
*/
|
|
3822
|
+
value: ScriptList;
|
|
3823
|
+
case: "list";
|
|
3824
|
+
} | {
|
|
3825
|
+
/**
|
|
3826
|
+
* @generated from field: ScriptSave save = 2;
|
|
3827
|
+
*/
|
|
3828
|
+
value: ScriptSave;
|
|
3829
|
+
case: "save";
|
|
3830
|
+
} | {
|
|
3831
|
+
/**
|
|
3832
|
+
* @generated from field: ScriptDelete delete = 3;
|
|
3833
|
+
*/
|
|
3834
|
+
value: ScriptDelete;
|
|
3835
|
+
case: "delete";
|
|
3836
|
+
} | {
|
|
3837
|
+
/**
|
|
3838
|
+
* @generated from field: ScriptSetEnabled set_enabled = 4;
|
|
3839
|
+
*/
|
|
3840
|
+
value: ScriptSetEnabled;
|
|
3841
|
+
case: "setEnabled";
|
|
3842
|
+
} | {
|
|
3843
|
+
/**
|
|
3844
|
+
* @generated from field: ScriptGetLogs get_logs = 5;
|
|
3845
|
+
*/
|
|
3846
|
+
value: ScriptGetLogs;
|
|
3847
|
+
case: "getLogs";
|
|
3848
|
+
} | {
|
|
3849
|
+
case: undefined;
|
|
3850
|
+
value?: undefined;
|
|
3851
|
+
};
|
|
3852
|
+
constructor(data?: PartialMessage<SPacketScriptAction>);
|
|
3853
|
+
static readonly runtime: typeof proto2;
|
|
3854
|
+
static readonly typeName = "SPacketScriptAction";
|
|
3855
|
+
static readonly fields: FieldList;
|
|
3856
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SPacketScriptAction;
|
|
3857
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SPacketScriptAction;
|
|
3858
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SPacketScriptAction;
|
|
3859
|
+
static equals(a: SPacketScriptAction | PlainMessage<SPacketScriptAction> | undefined, b: SPacketScriptAction | PlainMessage<SPacketScriptAction> | undefined): boolean;
|
|
3860
|
+
}
|
|
3575
3861
|
//#endregion
|
|
3576
3862
|
//#region src/index.d.ts
|
|
3577
3863
|
declare const CPACKET_MAP: {
|
|
@@ -3672,4 +3958,4 @@ declare const NAME_TO_ID: Record<string, number>;
|
|
|
3672
3958
|
declare const ID_TO_PACKET: Record<string, PlainMessage<Message>>;
|
|
3673
3959
|
declare const ID_TO_NAME: Record<number, keyof AnyPacketMap>;
|
|
3674
3960
|
//#endregion
|
|
3675
|
-
export { BanPlayer, CPACKET_MAP, CPacketAnimation, CPacketBlockAction, CPacketBlockUpdate, CPacketChangeServers, CPacketChunkData, CPacketCloseWindow, CPacketConfirmTransaction, CPacketDestroyEntities, CPacketDisconnect, CPacketEntityAction, CPacketEntityAttach, CPacketEntityEffect, CPacketEntityEquipment, CPacketEntityMetadata, CPacketEntityPositionAndRotation, CPacketEntityProperties, CPacketEntityRelativePositionAndRotation, CPacketEntityStatus, CPacketEntityVelocity, CPacketExplosion, CPacketJoinGame, CPacketLeaderboard, CPacketLocalStorage, CPacketLocalStorage_Action, CPacketMessage, CPacketOpenShop, CPacketOpenWindow, CPacketParticles, CPacketPlayerList, CPacketPlayerPosLook, CPacketPlayerPosition, CPacketPlayerReconciliation, CPacketPong, CPacketQueueNext, CPacketRemoveEntityEffect, CPacketRespawn, CPacketScoreboard, CPacketServerInfo, CPacketServerMetadata, CPacketSetExperience, CPacketSetSlot, CPacketShopProperties, CPacketShopProperty, CPacketSignEditorOpen, CPacketSoundEffect, CPacketSpawnEntity, CPacketSpawnExperienceOrb, CPacketSpawnPlayer, CPacketTabComplete, CPacketTimeUpdate, CPacketTitle, CPacketUpdate, CPacketUpdateCommandBlock, CPacketUpdateHealth, CPacketUpdateLeaderboard, CPacketUpdateScoreboard, CPacketUpdateSign, CPacketUpdateStatus, CPacketUseBed, CPacketWindowItems, CPacketWindowProperty, ClientBoundCombined, ClientBoundCombined_CPacket, DemotePlayer, Equipment, Equipment_Slot, ID_TO_NAME, ID_TO_PACKET, KickPlayer, NAME_TO_ID, PBAction, PBBlockPos, PBCell, PBCosmetics, PBEnumFacing, PBFloatVector3, PBItemStack, PBModifier, PBSnapshot, PBTileEntity, PBVector3, PBWatchableObject, PlayerData, PlayerPermissionEntry, PromotePlayer, SPACKET_MAP, SPacketAdminAction, SPacketAnalytics, SPacketBreakBlock, SPacketClick, SPacketClickWindow, SPacketCloseWindow, SPacketConfirmTransaction, SPacketCraftItem, SPacketEnchantItem, SPacketEntityAction, SPacketHeldItemChange, SPacketLoginStart, SPacketMessage, SPacketOpenShop, SPacketPing, SPacketPlaceBlock, SPacketPlayerAbilities, SPacketPlayerAction, SPacketPlayerInput, SPacketPlayerPosLook, SPacketQueueNext, SPacketRequestChunk, SPacketRespawn, SPacketTabComplete, SPacketUpdateCommandBlock, SPacketUpdateInventory, SPacketUpdateSign, SPacketUseEntity, SPacketUseEntity_Action, SPacketUseItem, ScoreboardContent, StopServer, UnbanPlayer, UpdateAccessControl, UpdateCheats, UpdateCommandBlock, UpdatePvP, Vector3 };
|
|
3961
|
+
export { BanPlayer, CPACKET_MAP, CPacketAnimation, CPacketBlockAction, CPacketBlockUpdate, CPacketChangeServers, CPacketChunkData, CPacketCloseWindow, CPacketConfirmTransaction, CPacketDestroyEntities, CPacketDisconnect, CPacketEntityAction, CPacketEntityAttach, CPacketEntityEffect, CPacketEntityEquipment, CPacketEntityMetadata, CPacketEntityPositionAndRotation, CPacketEntityProperties, CPacketEntityRelativePositionAndRotation, CPacketEntityStatus, CPacketEntityVelocity, CPacketExplosion, CPacketJoinGame, CPacketLeaderboard, CPacketLocalStorage, CPacketLocalStorage_Action, CPacketMessage, CPacketOpenShop, CPacketOpenWindow, CPacketParticles, CPacketPlayerList, CPacketPlayerPosLook, CPacketPlayerPosition, CPacketPlayerReconciliation, CPacketPong, CPacketQueueNext, CPacketRemoveEntityEffect, CPacketRespawn, CPacketScoreboard, CPacketScriptData, CPacketScriptLog, CPacketServerInfo, CPacketServerMetadata, CPacketSetExperience, CPacketSetSlot, CPacketShopProperties, CPacketShopProperty, CPacketSignEditorOpen, CPacketSoundEffect, CPacketSpawnEntity, CPacketSpawnExperienceOrb, CPacketSpawnPlayer, CPacketTabComplete, CPacketTimeUpdate, CPacketTitle, CPacketUpdate, CPacketUpdateCommandBlock, CPacketUpdateHealth, CPacketUpdateLeaderboard, CPacketUpdateScoreboard, CPacketUpdateSign, CPacketUpdateStatus, CPacketUseBed, CPacketWindowItems, CPacketWindowProperty, ClientBoundCombined, ClientBoundCombined_CPacket, DemotePlayer, Equipment, Equipment_Slot, ID_TO_NAME, ID_TO_PACKET, KickPlayer, NAME_TO_ID, PBAction, PBBlockPos, PBCell, PBCosmetics, PBEnumFacing, PBFloatVector3, PBItemStack, PBModifier, PBScriptEntry, PBScriptLogEntry, PBSnapshot, PBTileEntity, PBVector3, PBWatchableObject, PlayerData, PlayerPermissionEntry, PromotePlayer, SPACKET_MAP, SPacketAdminAction, SPacketAnalytics, SPacketBreakBlock, SPacketClick, SPacketClickWindow, SPacketCloseWindow, SPacketConfirmTransaction, SPacketCraftItem, SPacketEnchantItem, SPacketEntityAction, SPacketHeldItemChange, SPacketLoginStart, SPacketMessage, SPacketOpenShop, SPacketPing, SPacketPlaceBlock, SPacketPlayerAbilities, SPacketPlayerAction, SPacketPlayerInput, SPacketPlayerPosLook, SPacketQueueNext, SPacketRequestChunk, SPacketRespawn, SPacketScriptAction, SPacketTabComplete, SPacketUpdateCommandBlock, SPacketUpdateInventory, SPacketUpdateSign, SPacketUseEntity, SPacketUseEntity_Action, SPacketUseItem, ScoreboardContent, ScriptDelete, ScriptGetLogs, ScriptList, ScriptSave, ScriptSetEnabled, StopServer, UnbanPlayer, UpdateAccessControl, UpdateCheats, UpdateCommandBlock, UpdatePvP, UpdateScripting, Vector3 };
|