mezon-js-protobuf 1.7.16 → 1.7.17
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 +39587 -39570
- package/dist/mezon-js-protobuf/api/api.d.ts +6 -0
- package/package.json +1 -1
|
@@ -245,6 +245,8 @@ export interface SessionLogoutRequest {
|
|
|
245
245
|
device_id: string;
|
|
246
246
|
/** FCM token from firebase */
|
|
247
247
|
fcm_token: string;
|
|
248
|
+
/** platform */
|
|
249
|
+
platform: string;
|
|
248
250
|
}
|
|
249
251
|
/** Authenticate against the server with Apple Sign In. */
|
|
250
252
|
export interface AuthenticateAppleRequest {
|
|
@@ -4103,22 +4105,26 @@ export declare const SessionLogoutRequest: {
|
|
|
4103
4105
|
refresh_token?: string | undefined;
|
|
4104
4106
|
device_id?: string | undefined;
|
|
4105
4107
|
fcm_token?: string | undefined;
|
|
4108
|
+
platform?: string | undefined;
|
|
4106
4109
|
} & {
|
|
4107
4110
|
token?: string | undefined;
|
|
4108
4111
|
refresh_token?: string | undefined;
|
|
4109
4112
|
device_id?: string | undefined;
|
|
4110
4113
|
fcm_token?: string | undefined;
|
|
4114
|
+
platform?: string | undefined;
|
|
4111
4115
|
} & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
|
|
4112
4116
|
fromPartial<I_1 extends {
|
|
4113
4117
|
token?: string | undefined;
|
|
4114
4118
|
refresh_token?: string | undefined;
|
|
4115
4119
|
device_id?: string | undefined;
|
|
4116
4120
|
fcm_token?: string | undefined;
|
|
4121
|
+
platform?: string | undefined;
|
|
4117
4122
|
} & {
|
|
4118
4123
|
token?: string | undefined;
|
|
4119
4124
|
refresh_token?: string | undefined;
|
|
4120
4125
|
device_id?: string | undefined;
|
|
4121
4126
|
fcm_token?: string | undefined;
|
|
4127
|
+
platform?: string | undefined;
|
|
4122
4128
|
} & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
|
|
4123
4129
|
};
|
|
4124
4130
|
export declare const AuthenticateAppleRequest: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mezon-js-protobuf",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.17",
|
|
4
4
|
"description": "Websocket adapter adding protocol buffer support to the Mezon Javascript client.",
|
|
5
5
|
"main": "dist/mezon-js-protobuf.cjs.js",
|
|
6
6
|
"module": "dist/mezon-js-protobuf.esm.mjs",
|