协议更新
This commit is contained in:
Vendored
+414
@@ -4603,6 +4603,420 @@ toJSON(): { [k: string]: any };
|
||||
static getTypeUrl(typeUrlPrefix?: string): string;
|
||||
}
|
||||
|
||||
/** Properties of a CSFBCodeReq. */
|
||||
interface ICSFBCodeReq {
|
||||
|
||||
/** CSFBCodeReq pixelAppId */
|
||||
pixelAppId?: (string|null);
|
||||
|
||||
/** CSFBCodeReq fbc */
|
||||
fbc?: (string|null);
|
||||
|
||||
/** CSFBCodeReq fbp */
|
||||
fbp?: (string|null);
|
||||
|
||||
/** CSFBCodeReq userAgent */
|
||||
userAgent?: (string|null);
|
||||
}
|
||||
|
||||
/** Represents a CSFBCodeReq. */
|
||||
class CSFBCodeReq implements ICSFBCodeReq {
|
||||
|
||||
/**
|
||||
* Constructs a new CSFBCodeReq.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: cs.ICSFBCodeReq);
|
||||
|
||||
/** CSFBCodeReq pixelAppId. */
|
||||
pixelAppId: string;
|
||||
|
||||
/** CSFBCodeReq fbc. */
|
||||
fbc: string;
|
||||
|
||||
/** CSFBCodeReq fbp. */
|
||||
fbp: string;
|
||||
|
||||
/** CSFBCodeReq userAgent. */
|
||||
userAgent: string;
|
||||
|
||||
/**
|
||||
* Creates a new CSFBCodeReq instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns CSFBCodeReq instance
|
||||
*/
|
||||
static create(properties?: cs.ICSFBCodeReq): cs.CSFBCodeReq;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSFBCodeReq message. Does not implicitly {@link cs.CSFBCodeReq.verify|verify} messages.
|
||||
* @param message CSFBCodeReq message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encode(message: cs.ICSFBCodeReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSFBCodeReq message, length delimited. Does not implicitly {@link cs.CSFBCodeReq.verify|verify} messages.
|
||||
* @param message CSFBCodeReq message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encodeDelimited(message: cs.ICSFBCodeReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a CSFBCodeReq message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns CSFBCodeReq
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): cs.CSFBCodeReq;
|
||||
|
||||
/**
|
||||
* Decodes a CSFBCodeReq message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns CSFBCodeReq
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): cs.CSFBCodeReq;
|
||||
|
||||
/**
|
||||
* Verifies a CSFBCodeReq message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a CSFBCodeReq message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns CSFBCodeReq
|
||||
*/
|
||||
static fromObject(object: { [k: string]: any }): cs.CSFBCodeReq;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a CSFBCodeReq message. Also converts values to other types if specified.
|
||||
* @param message CSFBCodeReq
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
static toObject(message: cs.CSFBCodeReq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this CSFBCodeReq to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
toJSON(): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Gets the default type url for CSFBCodeReq
|
||||
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||
* @returns The default type url
|
||||
*/
|
||||
static getTypeUrl(typeUrlPrefix?: string): string;
|
||||
}
|
||||
|
||||
/** Properties of a CSFBCodeRes. */
|
||||
interface ICSFBCodeRes {
|
||||
|
||||
/** CSFBCodeRes fbCode */
|
||||
fbCode?: (string|null);
|
||||
}
|
||||
|
||||
/** Represents a CSFBCodeRes. */
|
||||
class CSFBCodeRes implements ICSFBCodeRes {
|
||||
|
||||
/**
|
||||
* Constructs a new CSFBCodeRes.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: cs.ICSFBCodeRes);
|
||||
|
||||
/** CSFBCodeRes fbCode. */
|
||||
fbCode: string;
|
||||
|
||||
/**
|
||||
* Creates a new CSFBCodeRes instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns CSFBCodeRes instance
|
||||
*/
|
||||
static create(properties?: cs.ICSFBCodeRes): cs.CSFBCodeRes;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSFBCodeRes message. Does not implicitly {@link cs.CSFBCodeRes.verify|verify} messages.
|
||||
* @param message CSFBCodeRes message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encode(message: cs.ICSFBCodeRes, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSFBCodeRes message, length delimited. Does not implicitly {@link cs.CSFBCodeRes.verify|verify} messages.
|
||||
* @param message CSFBCodeRes message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encodeDelimited(message: cs.ICSFBCodeRes, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a CSFBCodeRes message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns CSFBCodeRes
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): cs.CSFBCodeRes;
|
||||
|
||||
/**
|
||||
* Decodes a CSFBCodeRes message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns CSFBCodeRes
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): cs.CSFBCodeRes;
|
||||
|
||||
/**
|
||||
* Verifies a CSFBCodeRes message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a CSFBCodeRes message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns CSFBCodeRes
|
||||
*/
|
||||
static fromObject(object: { [k: string]: any }): cs.CSFBCodeRes;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a CSFBCodeRes message. Also converts values to other types if specified.
|
||||
* @param message CSFBCodeRes
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
static toObject(message: cs.CSFBCodeRes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this CSFBCodeRes to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
toJSON(): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Gets the default type url for CSFBCodeRes
|
||||
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||
* @returns The default type url
|
||||
*/
|
||||
static getTypeUrl(typeUrlPrefix?: string): string;
|
||||
}
|
||||
|
||||
/** EnmPointEvent enum. */
|
||||
enum EnmPointEvent {
|
||||
EPE_FBCode = 0,
|
||||
EPE_LoadA = 1,
|
||||
EPE_LoadB = 2,
|
||||
EPE_LoadGame = 3
|
||||
}
|
||||
|
||||
/** Properties of a CSPointEventReq. */
|
||||
interface ICSPointEventReq {
|
||||
|
||||
/** CSPointEventReq fbCode */
|
||||
fbCode?: (string|null);
|
||||
|
||||
/** CSPointEventReq point */
|
||||
point?: (number|null);
|
||||
}
|
||||
|
||||
/** Represents a CSPointEventReq. */
|
||||
class CSPointEventReq implements ICSPointEventReq {
|
||||
|
||||
/**
|
||||
* Constructs a new CSPointEventReq.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: cs.ICSPointEventReq);
|
||||
|
||||
/** CSPointEventReq fbCode. */
|
||||
fbCode: string;
|
||||
|
||||
/** CSPointEventReq point. */
|
||||
point: number;
|
||||
|
||||
/**
|
||||
* Creates a new CSPointEventReq instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns CSPointEventReq instance
|
||||
*/
|
||||
static create(properties?: cs.ICSPointEventReq): cs.CSPointEventReq;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSPointEventReq message. Does not implicitly {@link cs.CSPointEventReq.verify|verify} messages.
|
||||
* @param message CSPointEventReq message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encode(message: cs.ICSPointEventReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSPointEventReq message, length delimited. Does not implicitly {@link cs.CSPointEventReq.verify|verify} messages.
|
||||
* @param message CSPointEventReq message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encodeDelimited(message: cs.ICSPointEventReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a CSPointEventReq message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns CSPointEventReq
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): cs.CSPointEventReq;
|
||||
|
||||
/**
|
||||
* Decodes a CSPointEventReq message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns CSPointEventReq
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): cs.CSPointEventReq;
|
||||
|
||||
/**
|
||||
* Verifies a CSPointEventReq message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a CSPointEventReq message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns CSPointEventReq
|
||||
*/
|
||||
static fromObject(object: { [k: string]: any }): cs.CSPointEventReq;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a CSPointEventReq message. Also converts values to other types if specified.
|
||||
* @param message CSPointEventReq
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
static toObject(message: cs.CSPointEventReq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this CSPointEventReq to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
toJSON(): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Gets the default type url for CSPointEventReq
|
||||
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||
* @returns The default type url
|
||||
*/
|
||||
static getTypeUrl(typeUrlPrefix?: string): string;
|
||||
}
|
||||
|
||||
/** Properties of a CSPointEventRes. */
|
||||
interface ICSPointEventRes {
|
||||
}
|
||||
|
||||
/** Represents a CSPointEventRes. */
|
||||
class CSPointEventRes implements ICSPointEventRes {
|
||||
|
||||
/**
|
||||
* Constructs a new CSPointEventRes.
|
||||
* @param [properties] Properties to set
|
||||
*/
|
||||
constructor(properties?: cs.ICSPointEventRes);
|
||||
|
||||
/**
|
||||
* Creates a new CSPointEventRes instance using the specified properties.
|
||||
* @param [properties] Properties to set
|
||||
* @returns CSPointEventRes instance
|
||||
*/
|
||||
static create(properties?: cs.ICSPointEventRes): cs.CSPointEventRes;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSPointEventRes message. Does not implicitly {@link cs.CSPointEventRes.verify|verify} messages.
|
||||
* @param message CSPointEventRes message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encode(message: cs.ICSPointEventRes, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Encodes the specified CSPointEventRes message, length delimited. Does not implicitly {@link cs.CSPointEventRes.verify|verify} messages.
|
||||
* @param message CSPointEventRes message or plain object to encode
|
||||
* @param [writer] Writer to encode to
|
||||
* @returns Writer
|
||||
*/
|
||||
static encodeDelimited(message: cs.ICSPointEventRes, writer?: $protobuf.Writer): $protobuf.Writer;
|
||||
|
||||
/**
|
||||
* Decodes a CSPointEventRes message from the specified reader or buffer.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @param [length] Message length if known beforehand
|
||||
* @returns CSPointEventRes
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): cs.CSPointEventRes;
|
||||
|
||||
/**
|
||||
* Decodes a CSPointEventRes message from the specified reader or buffer, length delimited.
|
||||
* @param reader Reader or buffer to decode from
|
||||
* @returns CSPointEventRes
|
||||
* @throws {Error} If the payload is not a reader or valid buffer
|
||||
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
||||
*/
|
||||
static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): cs.CSPointEventRes;
|
||||
|
||||
/**
|
||||
* Verifies a CSPointEventRes message.
|
||||
* @param message Plain object to verify
|
||||
* @returns `null` if valid, otherwise the reason why it is not
|
||||
*/
|
||||
static verify(message: { [k: string]: any }): (string|null);
|
||||
|
||||
/**
|
||||
* Creates a CSPointEventRes message from a plain object. Also converts values to their respective internal types.
|
||||
* @param object Plain object
|
||||
* @returns CSPointEventRes
|
||||
*/
|
||||
static fromObject(object: { [k: string]: any }): cs.CSPointEventRes;
|
||||
|
||||
/**
|
||||
* Creates a plain object from a CSPointEventRes message. Also converts values to other types if specified.
|
||||
* @param message CSPointEventRes
|
||||
* @param [options] Conversion options
|
||||
* @returns Plain object
|
||||
*/
|
||||
static toObject(message: cs.CSPointEventRes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Converts this CSPointEventRes to JSON.
|
||||
* @returns JSON object
|
||||
*/
|
||||
toJSON(): { [k: string]: any };
|
||||
|
||||
/**
|
||||
* Gets the default type url for CSPointEventRes
|
||||
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
||||
* @returns The default type url
|
||||
*/
|
||||
static getTypeUrl(typeUrlPrefix?: string): string;
|
||||
}
|
||||
|
||||
/** Category enum. */
|
||||
enum Category {
|
||||
Category_mature = 0,
|
||||
|
||||
Reference in New Issue
Block a user