UNPKG

neroxbailx

Version:

baileys whatsapp-api

299 lines (298 loc) 12 kB
import * as $protobuf from "protobufjs"; import Long = require("long"); /** Namespace UserPassword. */ export namespace UserPassword { /** Properties of a UserPassword. */ interface IUserPassword { /** UserPassword encoding */ encoding?: (UserPassword.UserPassword.Encoding|null); /** UserPassword transformer */ transformer?: (UserPassword.UserPassword.Transformer|null); /** UserPassword transformerArg */ transformerArg?: (UserPassword.UserPassword.ITransformerArg[]|null); /** UserPassword transformedData */ transformedData?: (Uint8Array|null); } /** Represents a UserPassword. */ class UserPassword implements IUserPassword { /** * Constructs a new UserPassword. * @param [properties] Properties to set */ constructor(properties?: UserPassword.IUserPassword); /** UserPassword encoding. */ public encoding?: (UserPassword.UserPassword.Encoding|null); /** UserPassword transformer. */ public transformer?: (UserPassword.UserPassword.Transformer|null); /** UserPassword transformerArg. */ public transformerArg: UserPassword.UserPassword.ITransformerArg[]; /** UserPassword transformedData. */ public transformedData?: (Uint8Array|null); /** UserPassword _encoding. */ public _encoding?: "encoding"; /** UserPassword _transformer. */ public _transformer?: "transformer"; /** UserPassword _transformedData. */ public _transformedData?: "transformedData"; /** * Creates a new UserPassword instance using the specified properties. * @param [properties] Properties to set * @returns UserPassword instance */ public static create(properties?: UserPassword.IUserPassword): UserPassword.UserPassword; /** * Encodes the specified UserPassword message. Does not implicitly {@link UserPassword.UserPassword.verify|verify} messages. * @param message UserPassword message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: UserPassword.IUserPassword, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UserPassword message, length delimited. Does not implicitly {@link UserPassword.UserPassword.verify|verify} messages. * @param message UserPassword message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: UserPassword.IUserPassword, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UserPassword message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UserPassword * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): UserPassword.UserPassword; /** * Decodes a UserPassword message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UserPassword * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): UserPassword.UserPassword; /** * Verifies a UserPassword message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UserPassword message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UserPassword */ public static fromObject(object: { [k: string]: any }): UserPassword.UserPassword; /** * Creates a plain object from a UserPassword message. Also converts values to other types if specified. * @param message UserPassword * @param [options] Conversion options * @returns Plain object */ public static toObject(message: UserPassword.UserPassword, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UserPassword to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UserPassword * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace UserPassword { /** Encoding enum. */ enum Encoding { UTF8 = 0, UTF8_BROKEN = 1 } /** Transformer enum. */ enum Transformer { NONE = 0, PBKDF2_HMAC_SHA512 = 1, PBKDF2_HMAC_SHA384 = 2 } /** Properties of a TransformerArg. */ interface ITransformerArg { /** TransformerArg key */ key?: (string|null); /** TransformerArg value */ value?: (UserPassword.UserPassword.TransformerArg.IValue|null); } /** Represents a TransformerArg. */ class TransformerArg implements ITransformerArg { /** * Constructs a new TransformerArg. * @param [properties] Properties to set */ constructor(properties?: UserPassword.UserPassword.ITransformerArg); /** TransformerArg key. */ public key?: (string|null); /** TransformerArg value. */ public value?: (UserPassword.UserPassword.TransformerArg.IValue|null); /** TransformerArg _key. */ public _key?: "key"; /** TransformerArg _value. */ public _value?: "value"; /** * Creates a new TransformerArg instance using the specified properties. * @param [properties] Properties to set * @returns TransformerArg instance */ public static create(properties?: UserPassword.UserPassword.ITransformerArg): UserPassword.UserPassword.TransformerArg; /** * Encodes the specified TransformerArg message. Does not implicitly {@link UserPassword.UserPassword.TransformerArg.verify|verify} messages. * @param message TransformerArg message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: UserPassword.UserPassword.ITransformerArg, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransformerArg message, length delimited. Does not implicitly {@link UserPassword.UserPassword.TransformerArg.verify|verify} messages. * @param message TransformerArg message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: UserPassword.UserPassword.ITransformerArg, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransformerArg message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransformerArg * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): UserPassword.UserPassword.TransformerArg; /** * Decodes a TransformerArg message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransformerArg * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): UserPassword.UserPassword.TransformerArg; /** * Verifies a TransformerArg message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransformerArg message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransformerArg */ public static fromObject(object: { [k: string]: any }): UserPassword.UserPassword.TransformerArg; /** * Creates a plain object from a TransformerArg message. Also converts values to other types if specified. * @param message TransformerArg * @param [options] Conversion options * @returns Plain object */ public static toObject(message: UserPassword.UserPassword.TransformerArg, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransformerArg to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransformerArg * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace TransformerArg { /** Properties of a Value. */ interface IValue { /** Value asBlob */ asBlob?: (Uint8Array|null); /** Value asUnsignedInteger */ asUnsignedInteger?: (number|null); } /** Represents a Value. */ class Value implements IValue { /** * Constructs a new Value. * @param [properties] Properties to set */ constructor(properties?: UserPassword.UserPassword.TransformerArg.IValue); /** Value asBlob. */ public asBlob?: (Uint8Array|null); /** Value asUnsignedInteger. */ public asUnsignedInteger?: (number|null); /** Value value. */ public value?: ("asBlob"|"asUnsignedInteger"); /** * Creates a new Value instance using the specified properties. * @param [properties] Properties to set * @returns Value instance */ public static create(properties?: UserPassword.UserPassword.TransformerArg.IValue): UserPassword.UserPassword.TransformerArg.Value; /** * Encodes the specified Value message. Does not implicitly {@link UserPassword.UserPassword.TransformerArg.Value.verify|verify} messages. * @param message Value message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: UserPassword.UserPassword.TransformerArg.IValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Value message, length delimited. Does not implicitly {@link UserPassword.UserPassword.TransformerArg.Value.verify|verify} messages. * @param message Value message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: UserPassword.UserPassword.TransformerArg.IValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Value message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Value * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): UserPassword.UserPassword.TransformerArg.Value; /** * Decodes a Value message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Value * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): UserPassword.UserPassword.TransformerArg.Value; /** * Verifies a Value message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Value message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Value */ public static fromObject(object: { [k: string]: any }): UserPassword.UserPassword.TransformerArg.Value; /** * Creates a plain object from a Value message. Also converts values to other types if specified. * @param message Value * @param [options] Conversion options * @returns Plain object */ public static toObject(message: UserPassword.UserPassword.TransformerArg.Value, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Value to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Value * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } } }