@wppconnect/wa-proto 1.1.9 → 1.1.10
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/CHANGELOG.md +4 -0
- package/WAProto.proto +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/WAProto.proto
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
syntax = "proto3";
|
|
2
2
|
package waproto;
|
|
3
3
|
|
|
4
|
-
/// WhatsApp Version: 2.3000.
|
|
4
|
+
/// WhatsApp Version: 2.3000.1019670190
|
|
5
5
|
|
|
6
6
|
message ADVDeviceIdentity {
|
|
7
7
|
optional uint32 rawId = 1;
|
|
@@ -597,6 +597,7 @@ message ClientPayload {
|
|
|
597
597
|
HARDCODED = 2;
|
|
598
598
|
OVERRIDE = 3;
|
|
599
599
|
FALLBACK = 4;
|
|
600
|
+
MNS = 5;
|
|
600
601
|
}
|
|
601
602
|
}
|
|
602
603
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -19495,6 +19495,7 @@ $root.waproto = (function() {
|
|
|
19495
19495
|
case 2:
|
|
19496
19496
|
case 3:
|
|
19497
19497
|
case 4:
|
|
19498
|
+
case 5:
|
|
19498
19499
|
break;
|
|
19499
19500
|
}
|
|
19500
19501
|
}
|
|
@@ -19545,6 +19546,10 @@ $root.waproto = (function() {
|
|
|
19545
19546
|
case 4:
|
|
19546
19547
|
message.dnsMethod = 4;
|
|
19547
19548
|
break;
|
|
19549
|
+
case "MNS":
|
|
19550
|
+
case 5:
|
|
19551
|
+
message.dnsMethod = 5;
|
|
19552
|
+
break;
|
|
19548
19553
|
}
|
|
19549
19554
|
if (object.appCached != null)
|
|
19550
19555
|
message.appCached = Boolean(object.appCached);
|
|
@@ -19612,6 +19617,7 @@ $root.waproto = (function() {
|
|
|
19612
19617
|
* @property {number} HARDCODED=2 HARDCODED value
|
|
19613
19618
|
* @property {number} OVERRIDE=3 OVERRIDE value
|
|
19614
19619
|
* @property {number} FALLBACK=4 FALLBACK value
|
|
19620
|
+
* @property {number} MNS=5 MNS value
|
|
19615
19621
|
*/
|
|
19616
19622
|
DNSSource.DNSResolutionMethod = (function() {
|
|
19617
19623
|
var valuesById = {}, values = Object.create(valuesById);
|
|
@@ -19620,6 +19626,7 @@ $root.waproto = (function() {
|
|
|
19620
19626
|
values[valuesById[2] = "HARDCODED"] = 2;
|
|
19621
19627
|
values[valuesById[3] = "OVERRIDE"] = 3;
|
|
19622
19628
|
values[valuesById[4] = "FALLBACK"] = 4;
|
|
19629
|
+
values[valuesById[5] = "MNS"] = 5;
|
|
19623
19630
|
return values;
|
|
19624
19631
|
})();
|
|
19625
19632
|
|