mezon-js-protobuf 1.8.87 → 1.8.88
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/api/api.ts +7025 -4695
- package/build.js +1 -1
- package/build.mjs +1 -1
- package/dist/mezon-js/api/api.d.ts +5372 -5110
- package/dist/mezon-js/utils.d.ts +10 -5
- package/dist/mezon-js-protobuf/api/api.d.ts +5372 -5110
- package/dist/mezon-js-protobuf/google/protobuf/struct.d.ts +1 -1
- package/dist/mezon-js-protobuf/google/protobuf/wrappers.d.ts +11 -11
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +8644 -8644
- package/dist/mezon-js-protobuf.cjs.js +7176 -6170
- package/dist/mezon-js-protobuf.esm.mjs +7176 -6170
- package/google/protobuf/struct.ts +1 -1
- package/google/protobuf/wrappers.ts +27 -27
- package/package.json +4 -4
- package/rtapi/realtime.ts +2549 -1838
- package/tsconfig.json +4 -1
package/dist/mezon-js/utils.d.ts
CHANGED
|
@@ -3,8 +3,13 @@ export declare function buildFetchOptions(method: string, options: any, bodyJson
|
|
|
3
3
|
export declare function b64EncodeUnicode(str: string): string;
|
|
4
4
|
export declare function b64DecodeUnicode(str: string): string;
|
|
5
5
|
export declare function safeJSONParse(jsonStr: string): any;
|
|
6
|
-
export declare function decodeMentions(data: any):
|
|
7
|
-
export declare function decodeAttachments(data: any):
|
|
8
|
-
export declare function decodeRefs(data: any):
|
|
9
|
-
export declare function decodeReactions(data: any):
|
|
10
|
-
export declare function decodeNotificationFcm(data: any):
|
|
6
|
+
export declare function decodeMentions(data: any): any;
|
|
7
|
+
export declare function decodeAttachments(data: any): any;
|
|
8
|
+
export declare function decodeRefs(data: any): any;
|
|
9
|
+
export declare function decodeReactions(data: any): any;
|
|
10
|
+
export declare function decodeNotificationFcm(data: any): any;
|
|
11
|
+
export declare function encodeMentions(data: tsproto.MessageMentionList): Uint8Array;
|
|
12
|
+
export declare function encodeAttachments(data: tsproto.MessageAttachmentList): Uint8Array;
|
|
13
|
+
export declare function encodeRefs(data: tsproto.MessageRefList): Uint8Array;
|
|
14
|
+
export declare function encodeReactions(data: tsproto.MessageReactionList): Uint8Array;
|
|
15
|
+
export declare function encodeNotificationFcm(data: tsproto.DirectFcmProto): Uint8Array;
|