chore: update proto/version to v2.3000.1037038379 (#351)
Co-authored-by: rsalcara <rsalcara@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
22e758b1e6
commit
8df39c320e
@@ -1,7 +1,7 @@
|
||||
syntax = "proto3";
|
||||
package proto;
|
||||
|
||||
/// WhatsApp Version: 2.3000.1036961647
|
||||
/// WhatsApp Version: 2.3000.1037038379
|
||||
|
||||
message ADVDeviceIdentity {
|
||||
optional uint32 rawId = 1;
|
||||
@@ -3321,6 +3321,7 @@ message Message {
|
||||
optional int32 onDemandMsgCount = 4;
|
||||
optional int64 oldestMsgTimestampMs = 5;
|
||||
optional string accountLid = 6;
|
||||
optional bool supportInlineResponse = 7;
|
||||
}
|
||||
|
||||
message PlaceholderMessageResendRequest {
|
||||
|
||||
Vendored
+2
@@ -8480,6 +8480,7 @@ export namespace proto {
|
||||
onDemandMsgCount?: (number|null);
|
||||
oldestMsgTimestampMs?: (number|Long|null);
|
||||
accountLid?: (string|null);
|
||||
supportInlineResponse?: (boolean|null);
|
||||
}
|
||||
|
||||
class HistorySyncOnDemandRequest implements IHistorySyncOnDemandRequest {
|
||||
@@ -8490,6 +8491,7 @@ export namespace proto {
|
||||
public onDemandMsgCount?: (number|null);
|
||||
public oldestMsgTimestampMs?: (number|Long|null);
|
||||
public accountLid?: (string|null);
|
||||
public supportInlineResponse?: (boolean|null);
|
||||
public static create(properties?: proto.Message.PeerDataOperationRequestMessage.IHistorySyncOnDemandRequest): proto.Message.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest;
|
||||
public static encode(m: proto.Message.PeerDataOperationRequestMessage.IHistorySyncOnDemandRequest, w?: $protobuf.Writer): $protobuf.Writer;
|
||||
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): proto.Message.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest;
|
||||
|
||||
@@ -59542,6 +59542,7 @@ export const proto = $root.proto = (() => {
|
||||
HistorySyncOnDemandRequest.prototype.onDemandMsgCount = null;
|
||||
HistorySyncOnDemandRequest.prototype.oldestMsgTimestampMs = null;
|
||||
HistorySyncOnDemandRequest.prototype.accountLid = null;
|
||||
HistorySyncOnDemandRequest.prototype.supportInlineResponse = null;
|
||||
|
||||
let $oneOfFields;
|
||||
|
||||
@@ -59581,6 +59582,12 @@ export const proto = $root.proto = (() => {
|
||||
set: $util.oneOfSetter($oneOfFields)
|
||||
});
|
||||
|
||||
// Virtual OneOf for proto3 optional field
|
||||
Object.defineProperty(HistorySyncOnDemandRequest.prototype, "_supportInlineResponse", {
|
||||
get: $util.oneOfGetter($oneOfFields = ["supportInlineResponse"]),
|
||||
set: $util.oneOfSetter($oneOfFields)
|
||||
});
|
||||
|
||||
HistorySyncOnDemandRequest.create = function create(properties) {
|
||||
return new HistorySyncOnDemandRequest(properties);
|
||||
};
|
||||
@@ -59600,6 +59607,8 @@ export const proto = $root.proto = (() => {
|
||||
w.uint32(40).int64(m.oldestMsgTimestampMs);
|
||||
if (m.accountLid != null && Object.hasOwnProperty.call(m, "accountLid"))
|
||||
w.uint32(50).string(m.accountLid);
|
||||
if (m.supportInlineResponse != null && Object.hasOwnProperty.call(m, "supportInlineResponse"))
|
||||
w.uint32(56).bool(m.supportInlineResponse);
|
||||
return w;
|
||||
};
|
||||
|
||||
@@ -59636,6 +59645,10 @@ export const proto = $root.proto = (() => {
|
||||
m.accountLid = r.string();
|
||||
break;
|
||||
}
|
||||
case 7: {
|
||||
m.supportInlineResponse = r.bool();
|
||||
break;
|
||||
}
|
||||
default:
|
||||
r.skipType(t & 7);
|
||||
break;
|
||||
@@ -59673,6 +59686,9 @@ export const proto = $root.proto = (() => {
|
||||
if (d.accountLid != null) {
|
||||
m.accountLid = String(d.accountLid);
|
||||
}
|
||||
if (d.supportInlineResponse != null) {
|
||||
m.supportInlineResponse = Boolean(d.supportInlineResponse);
|
||||
}
|
||||
return m;
|
||||
};
|
||||
|
||||
@@ -59713,6 +59729,11 @@ export const proto = $root.proto = (() => {
|
||||
if (o.oneofs)
|
||||
d._accountLid = "accountLid";
|
||||
}
|
||||
if (m.supportInlineResponse != null && m.hasOwnProperty("supportInlineResponse")) {
|
||||
d.supportInlineResponse = m.supportInlineResponse;
|
||||
if (o.oneofs)
|
||||
d._supportInlineResponse = "supportInlineResponse";
|
||||
}
|
||||
return d;
|
||||
};
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"version":[2,3000,1036978211]}
|
||||
{"version": [2, 3000, 1037038379]}
|
||||
|
||||
Reference in New Issue
Block a user