@wppconnect/wa-proto 1.1.8 → 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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.1.10 (2025-01-29)
2
+
3
+
4
+
5
+ ## 1.1.9 (2025-01-28)
6
+
7
+
8
+
1
9
  ## 1.1.8 (2025-01-11)
2
10
 
3
11
 
package/WAProto.proto CHANGED
@@ -1,7 +1,7 @@
1
1
  syntax = "proto3";
2
2
  package waproto;
3
3
 
4
- /// WhatsApp Version: 2.3000.1019270342
4
+ /// WhatsApp Version: 2.3000.1019670190
5
5
 
6
6
  message ADVDeviceIdentity {
7
7
  optional uint32 rawId = 1;
@@ -83,6 +83,7 @@ message AIRichResponseMessage {
83
83
  message AIRichResponseImageURL {
84
84
  optional string imagePreviewUrl = 1;
85
85
  optional string imageHighResUrl = 2;
86
+ optional string sourceUrl = 3;
86
87
  }
87
88
 
88
89
  message AIRichResponseInlineImageMetadata {
@@ -224,6 +225,8 @@ message BotCapabilityMetadata {
224
225
  WA_IG_1P_PLUGIN_RANKING_UPDATE_8 = 18;
225
226
  WA_IG_1P_PLUGIN_RANKING_UPDATE_9 = 19;
226
227
  WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20;
228
+ RICH_RESPONSE_SUB_HEADING = 21;
229
+ RICH_RESPONSE_GRID_IMAGE = 22;
227
230
  }
228
231
  }
229
232
 
@@ -594,6 +597,7 @@ message ClientPayload {
594
597
  HARDCODED = 2;
595
598
  OVERRIDE = 3;
596
599
  FALLBACK = 4;
600
+ MNS = 5;
597
601
  }
598
602
  }
599
603
 
@@ -718,6 +722,7 @@ message ClientPayload {
718
722
  WIN_STORE = 2;
719
723
  DARWIN = 3;
720
724
  WIN32 = 4;
725
+ WIN_HYBRID = 5;
721
726
  }
722
727
  message WebdPayload {
723
728
  optional bool usesParticipantInKey = 1;
@@ -864,6 +869,7 @@ message ContextInfo {
864
869
  optional bool cannotBeReactedTo = 1;
865
870
  optional bool cannotBeRanked = 2;
866
871
  optional bool canRequestFeedback = 3;
872
+ optional bool canBeReshared = 4;
867
873
  }
868
874
 
869
875
  message ForwardedAIBotMessageInfo {
@@ -888,6 +894,7 @@ message ContextInfo {
888
894
  enum StatusAttributionType {
889
895
  NONE = 0;
890
896
  RESHARED_FROM_MENTION = 1;
897
+ RESHARED_FROM_POST = 2;
891
898
  }
892
899
  message UTMInfo {
893
900
  optional string utmSource = 1;
@@ -1529,6 +1536,9 @@ message Message {
1529
1536
  BOT_FEEDBACK_NEGATIVE_REFUSED = 7;
1530
1537
  BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING = 8;
1531
1538
  BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT = 9;
1539
+ BOT_FEEDBACK_NEGATIVE_PERSONALIZED = 10;
1540
+ BOT_FEEDBACK_NEGATIVE_CLARITY = 11;
1541
+ BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON = 12;
1532
1542
  }
1533
1543
  enum BotFeedbackKindMultipleNegative {
1534
1544
  BOT_FEEDBACK_MULTIPLE_NEGATIVE_GENERIC = 1;
package/dist/index.d.ts CHANGED
@@ -1144,6 +1144,9 @@ export namespace waproto {
1144
1144
 
1145
1145
  /** AIRichResponseImageURL imageHighResUrl */
1146
1146
  imageHighResUrl?: (string|null);
1147
+
1148
+ /** AIRichResponseImageURL sourceUrl */
1149
+ sourceUrl?: (string|null);
1147
1150
  }
1148
1151
 
1149
1152
  /** Represents a AIRichResponseImageURL. */
@@ -1161,6 +1164,9 @@ export namespace waproto {
1161
1164
  /** AIRichResponseImageURL imageHighResUrl. */
1162
1165
  public imageHighResUrl?: (string|null);
1163
1166
 
1167
+ /** AIRichResponseImageURL sourceUrl. */
1168
+ public sourceUrl?: (string|null);
1169
+
1164
1170
  /**
1165
1171
  * Creates a new AIRichResponseImageURL instance using the specified properties.
1166
1172
  * @param [properties] Properties to set
@@ -2680,7 +2686,9 @@ export namespace waproto {
2680
2686
  WA_IG_1P_PLUGIN_RANKING_UPDATE_7 = 17,
2681
2687
  WA_IG_1P_PLUGIN_RANKING_UPDATE_8 = 18,
2682
2688
  WA_IG_1P_PLUGIN_RANKING_UPDATE_9 = 19,
2683
- WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20
2689
+ WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20,
2690
+ RICH_RESPONSE_SUB_HEADING = 21,
2691
+ RICH_RESPONSE_GRID_IMAGE = 22
2684
2692
  }
2685
2693
  }
2686
2694
 
@@ -6502,7 +6510,8 @@ export namespace waproto {
6502
6510
  GOOGLE = 1,
6503
6511
  HARDCODED = 2,
6504
6512
  OVERRIDE = 3,
6505
- FALLBACK = 4
6513
+ FALLBACK = 4,
6514
+ MNS = 5
6506
6515
  }
6507
6516
  }
6508
6517
 
@@ -7266,7 +7275,8 @@ export namespace waproto {
7266
7275
  APP_STORE = 1,
7267
7276
  WIN_STORE = 2,
7268
7277
  DARWIN = 3,
7269
- WIN32 = 4
7278
+ WIN32 = 4,
7279
+ WIN_HYBRID = 5
7270
7280
  }
7271
7281
 
7272
7282
  /** Properties of a WebdPayload. */
@@ -8884,6 +8894,9 @@ export namespace waproto {
8884
8894
 
8885
8895
  /** FeatureEligibilities canRequestFeedback */
8886
8896
  canRequestFeedback?: (boolean|null);
8897
+
8898
+ /** FeatureEligibilities canBeReshared */
8899
+ canBeReshared?: (boolean|null);
8887
8900
  }
8888
8901
 
8889
8902
  /** Represents a FeatureEligibilities. */
@@ -8904,6 +8917,9 @@ export namespace waproto {
8904
8917
  /** FeatureEligibilities canRequestFeedback. */
8905
8918
  public canRequestFeedback?: (boolean|null);
8906
8919
 
8920
+ /** FeatureEligibilities canBeReshared. */
8921
+ public canBeReshared?: (boolean|null);
8922
+
8907
8923
  /**
8908
8924
  * Creates a new FeatureEligibilities instance using the specified properties.
8909
8925
  * @param [properties] Properties to set
@@ -9225,7 +9241,8 @@ export namespace waproto {
9225
9241
  /** StatusAttributionType enum. */
9226
9242
  enum StatusAttributionType {
9227
9243
  NONE = 0,
9228
- RESHARED_FROM_MENTION = 1
9244
+ RESHARED_FROM_MENTION = 1,
9245
+ RESHARED_FROM_POST = 2
9229
9246
  }
9230
9247
 
9231
9248
  /** Properties of a UTMInfo. */
@@ -16821,7 +16838,10 @@ export namespace waproto {
16821
16838
  BOT_FEEDBACK_NEGATIVE_OTHER = 6,
16822
16839
  BOT_FEEDBACK_NEGATIVE_REFUSED = 7,
16823
16840
  BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING = 8,
16824
- BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT = 9
16841
+ BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT = 9,
16842
+ BOT_FEEDBACK_NEGATIVE_PERSONALIZED = 10,
16843
+ BOT_FEEDBACK_NEGATIVE_CLARITY = 11,
16844
+ BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON = 12
16825
16845
  }
16826
16846
 
16827
16847
  /** BotFeedbackKindMultipleNegative enum. */
package/dist/index.js CHANGED
@@ -3238,6 +3238,7 @@ $root.waproto = (function() {
3238
3238
  * @interface IAIRichResponseImageURL
3239
3239
  * @property {string|null} [imagePreviewUrl] AIRichResponseImageURL imagePreviewUrl
3240
3240
  * @property {string|null} [imageHighResUrl] AIRichResponseImageURL imageHighResUrl
3241
+ * @property {string|null} [sourceUrl] AIRichResponseImageURL sourceUrl
3241
3242
  */
3242
3243
 
3243
3244
  /**
@@ -3271,6 +3272,14 @@ $root.waproto = (function() {
3271
3272
  */
3272
3273
  AIRichResponseImageURL.prototype.imageHighResUrl = null;
3273
3274
 
3275
+ /**
3276
+ * AIRichResponseImageURL sourceUrl.
3277
+ * @member {string|null|undefined} sourceUrl
3278
+ * @memberof waproto.AIRichResponseMessage.AIRichResponseImageURL
3279
+ * @instance
3280
+ */
3281
+ AIRichResponseImageURL.prototype.sourceUrl = null;
3282
+
3274
3283
  // OneOf field names bound to virtual getters and setters
3275
3284
  var $oneOfFields;
3276
3285
 
@@ -3286,6 +3295,12 @@ $root.waproto = (function() {
3286
3295
  set: $util.oneOfSetter($oneOfFields)
3287
3296
  });
3288
3297
 
3298
+ // Virtual OneOf for proto3 optional field
3299
+ Object.defineProperty(AIRichResponseImageURL.prototype, "_sourceUrl", {
3300
+ get: $util.oneOfGetter($oneOfFields = ["sourceUrl"]),
3301
+ set: $util.oneOfSetter($oneOfFields)
3302
+ });
3303
+
3289
3304
  /**
3290
3305
  * Creates a new AIRichResponseImageURL instance using the specified properties.
3291
3306
  * @function create
@@ -3314,6 +3329,8 @@ $root.waproto = (function() {
3314
3329
  writer.uint32(/* id 1, wireType 2 =*/10).string(message.imagePreviewUrl);
3315
3330
  if (message.imageHighResUrl != null && Object.hasOwnProperty.call(message, "imageHighResUrl"))
3316
3331
  writer.uint32(/* id 2, wireType 2 =*/18).string(message.imageHighResUrl);
3332
+ if (message.sourceUrl != null && Object.hasOwnProperty.call(message, "sourceUrl"))
3333
+ writer.uint32(/* id 3, wireType 2 =*/26).string(message.sourceUrl);
3317
3334
  return writer;
3318
3335
  };
3319
3336
 
@@ -3356,6 +3373,10 @@ $root.waproto = (function() {
3356
3373
  message.imageHighResUrl = reader.string();
3357
3374
  break;
3358
3375
  }
3376
+ case 3: {
3377
+ message.sourceUrl = reader.string();
3378
+ break;
3379
+ }
3359
3380
  default:
3360
3381
  reader.skipType(tag & 7);
3361
3382
  break;
@@ -3402,6 +3423,11 @@ $root.waproto = (function() {
3402
3423
  if (!$util.isString(message.imageHighResUrl))
3403
3424
  return "imageHighResUrl: string expected";
3404
3425
  }
3426
+ if (message.sourceUrl != null && message.hasOwnProperty("sourceUrl")) {
3427
+ properties._sourceUrl = 1;
3428
+ if (!$util.isString(message.sourceUrl))
3429
+ return "sourceUrl: string expected";
3430
+ }
3405
3431
  return null;
3406
3432
  };
3407
3433
 
@@ -3421,6 +3447,8 @@ $root.waproto = (function() {
3421
3447
  message.imagePreviewUrl = String(object.imagePreviewUrl);
3422
3448
  if (object.imageHighResUrl != null)
3423
3449
  message.imageHighResUrl = String(object.imageHighResUrl);
3450
+ if (object.sourceUrl != null)
3451
+ message.sourceUrl = String(object.sourceUrl);
3424
3452
  return message;
3425
3453
  };
3426
3454
 
@@ -3447,6 +3475,11 @@ $root.waproto = (function() {
3447
3475
  if (options.oneofs)
3448
3476
  object._imageHighResUrl = "imageHighResUrl";
3449
3477
  }
3478
+ if (message.sourceUrl != null && message.hasOwnProperty("sourceUrl")) {
3479
+ object.sourceUrl = message.sourceUrl;
3480
+ if (options.oneofs)
3481
+ object._sourceUrl = "sourceUrl";
3482
+ }
3450
3483
  return object;
3451
3484
  };
3452
3485
 
@@ -7446,6 +7479,8 @@ $root.waproto = (function() {
7446
7479
  case 18:
7447
7480
  case 19:
7448
7481
  case 20:
7482
+ case 21:
7483
+ case 22:
7449
7484
  break;
7450
7485
  }
7451
7486
  }
@@ -7555,6 +7590,14 @@ $root.waproto = (function() {
7555
7590
  case 20:
7556
7591
  message.capabilities[i] = 20;
7557
7592
  break;
7593
+ case "RICH_RESPONSE_SUB_HEADING":
7594
+ case 21:
7595
+ message.capabilities[i] = 21;
7596
+ break;
7597
+ case "RICH_RESPONSE_GRID_IMAGE":
7598
+ case 22:
7599
+ message.capabilities[i] = 22;
7600
+ break;
7558
7601
  }
7559
7602
  }
7560
7603
  return message;
@@ -7633,6 +7676,8 @@ $root.waproto = (function() {
7633
7676
  * @property {number} WA_IG_1P_PLUGIN_RANKING_UPDATE_8=18 WA_IG_1P_PLUGIN_RANKING_UPDATE_8 value
7634
7677
  * @property {number} WA_IG_1P_PLUGIN_RANKING_UPDATE_9=19 WA_IG_1P_PLUGIN_RANKING_UPDATE_9 value
7635
7678
  * @property {number} WA_IG_1P_PLUGIN_RANKING_UPDATE_10=20 WA_IG_1P_PLUGIN_RANKING_UPDATE_10 value
7679
+ * @property {number} RICH_RESPONSE_SUB_HEADING=21 RICH_RESPONSE_SUB_HEADING value
7680
+ * @property {number} RICH_RESPONSE_GRID_IMAGE=22 RICH_RESPONSE_GRID_IMAGE value
7636
7681
  */
7637
7682
  BotCapabilityMetadata.BotCapabilityType = (function() {
7638
7683
  var valuesById = {}, values = Object.create(valuesById);
@@ -7656,6 +7701,8 @@ $root.waproto = (function() {
7656
7701
  values[valuesById[18] = "WA_IG_1P_PLUGIN_RANKING_UPDATE_8"] = 18;
7657
7702
  values[valuesById[19] = "WA_IG_1P_PLUGIN_RANKING_UPDATE_9"] = 19;
7658
7703
  values[valuesById[20] = "WA_IG_1P_PLUGIN_RANKING_UPDATE_10"] = 20;
7704
+ values[valuesById[21] = "RICH_RESPONSE_SUB_HEADING"] = 21;
7705
+ values[valuesById[22] = "RICH_RESPONSE_GRID_IMAGE"] = 22;
7659
7706
  return values;
7660
7707
  })();
7661
7708
 
@@ -19448,6 +19495,7 @@ $root.waproto = (function() {
19448
19495
  case 2:
19449
19496
  case 3:
19450
19497
  case 4:
19498
+ case 5:
19451
19499
  break;
19452
19500
  }
19453
19501
  }
@@ -19498,6 +19546,10 @@ $root.waproto = (function() {
19498
19546
  case 4:
19499
19547
  message.dnsMethod = 4;
19500
19548
  break;
19549
+ case "MNS":
19550
+ case 5:
19551
+ message.dnsMethod = 5;
19552
+ break;
19501
19553
  }
19502
19554
  if (object.appCached != null)
19503
19555
  message.appCached = Boolean(object.appCached);
@@ -19565,6 +19617,7 @@ $root.waproto = (function() {
19565
19617
  * @property {number} HARDCODED=2 HARDCODED value
19566
19618
  * @property {number} OVERRIDE=3 OVERRIDE value
19567
19619
  * @property {number} FALLBACK=4 FALLBACK value
19620
+ * @property {number} MNS=5 MNS value
19568
19621
  */
19569
19622
  DNSSource.DNSResolutionMethod = (function() {
19570
19623
  var valuesById = {}, values = Object.create(valuesById);
@@ -19573,6 +19626,7 @@ $root.waproto = (function() {
19573
19626
  values[valuesById[2] = "HARDCODED"] = 2;
19574
19627
  values[valuesById[3] = "OVERRIDE"] = 3;
19575
19628
  values[valuesById[4] = "FALLBACK"] = 4;
19629
+ values[valuesById[5] = "MNS"] = 5;
19576
19630
  return values;
19577
19631
  })();
19578
19632
 
@@ -22062,6 +22116,7 @@ $root.waproto = (function() {
22062
22116
  case 2:
22063
22117
  case 3:
22064
22118
  case 4:
22119
+ case 5:
22065
22120
  break;
22066
22121
  }
22067
22122
  }
@@ -22116,6 +22171,10 @@ $root.waproto = (function() {
22116
22171
  case 4:
22117
22172
  message.webSubPlatform = 4;
22118
22173
  break;
22174
+ case "WIN_HYBRID":
22175
+ case 5:
22176
+ message.webSubPlatform = 5;
22177
+ break;
22119
22178
  }
22120
22179
  return message;
22121
22180
  };
@@ -22191,6 +22250,7 @@ $root.waproto = (function() {
22191
22250
  * @property {number} WIN_STORE=2 WIN_STORE value
22192
22251
  * @property {number} DARWIN=3 DARWIN value
22193
22252
  * @property {number} WIN32=4 WIN32 value
22253
+ * @property {number} WIN_HYBRID=5 WIN_HYBRID value
22194
22254
  */
22195
22255
  WebInfo.WebSubPlatform = (function() {
22196
22256
  var valuesById = {}, values = Object.create(valuesById);
@@ -22199,6 +22259,7 @@ $root.waproto = (function() {
22199
22259
  values[valuesById[2] = "WIN_STORE"] = 2;
22200
22260
  values[valuesById[3] = "DARWIN"] = 3;
22201
22261
  values[valuesById[4] = "WIN32"] = 4;
22262
+ values[valuesById[5] = "WIN_HYBRID"] = 5;
22202
22263
  return values;
22203
22264
  })();
22204
22265
 
@@ -25183,6 +25244,7 @@ $root.waproto = (function() {
25183
25244
  return "statusAttributionType: enum value expected";
25184
25245
  case 0:
25185
25246
  case 1:
25247
+ case 2:
25186
25248
  break;
25187
25249
  }
25188
25250
  }
@@ -25369,6 +25431,10 @@ $root.waproto = (function() {
25369
25431
  case 1:
25370
25432
  message.statusAttributionType = 1;
25371
25433
  break;
25434
+ case "RESHARED_FROM_POST":
25435
+ case 2:
25436
+ message.statusAttributionType = 2;
25437
+ break;
25372
25438
  }
25373
25439
  if (object.urlTrackingMap != null) {
25374
25440
  if (typeof object.urlTrackingMap !== "object")
@@ -27830,6 +27896,7 @@ $root.waproto = (function() {
27830
27896
  * @property {boolean|null} [cannotBeReactedTo] FeatureEligibilities cannotBeReactedTo
27831
27897
  * @property {boolean|null} [cannotBeRanked] FeatureEligibilities cannotBeRanked
27832
27898
  * @property {boolean|null} [canRequestFeedback] FeatureEligibilities canRequestFeedback
27899
+ * @property {boolean|null} [canBeReshared] FeatureEligibilities canBeReshared
27833
27900
  */
27834
27901
 
27835
27902
  /**
@@ -27871,6 +27938,14 @@ $root.waproto = (function() {
27871
27938
  */
27872
27939
  FeatureEligibilities.prototype.canRequestFeedback = null;
27873
27940
 
27941
+ /**
27942
+ * FeatureEligibilities canBeReshared.
27943
+ * @member {boolean|null|undefined} canBeReshared
27944
+ * @memberof waproto.ContextInfo.FeatureEligibilities
27945
+ * @instance
27946
+ */
27947
+ FeatureEligibilities.prototype.canBeReshared = null;
27948
+
27874
27949
  // OneOf field names bound to virtual getters and setters
27875
27950
  var $oneOfFields;
27876
27951
 
@@ -27892,6 +27967,12 @@ $root.waproto = (function() {
27892
27967
  set: $util.oneOfSetter($oneOfFields)
27893
27968
  });
27894
27969
 
27970
+ // Virtual OneOf for proto3 optional field
27971
+ Object.defineProperty(FeatureEligibilities.prototype, "_canBeReshared", {
27972
+ get: $util.oneOfGetter($oneOfFields = ["canBeReshared"]),
27973
+ set: $util.oneOfSetter($oneOfFields)
27974
+ });
27975
+
27895
27976
  /**
27896
27977
  * Creates a new FeatureEligibilities instance using the specified properties.
27897
27978
  * @function create
@@ -27922,6 +28003,8 @@ $root.waproto = (function() {
27922
28003
  writer.uint32(/* id 2, wireType 0 =*/16).bool(message.cannotBeRanked);
27923
28004
  if (message.canRequestFeedback != null && Object.hasOwnProperty.call(message, "canRequestFeedback"))
27924
28005
  writer.uint32(/* id 3, wireType 0 =*/24).bool(message.canRequestFeedback);
28006
+ if (message.canBeReshared != null && Object.hasOwnProperty.call(message, "canBeReshared"))
28007
+ writer.uint32(/* id 4, wireType 0 =*/32).bool(message.canBeReshared);
27925
28008
  return writer;
27926
28009
  };
27927
28010
 
@@ -27968,6 +28051,10 @@ $root.waproto = (function() {
27968
28051
  message.canRequestFeedback = reader.bool();
27969
28052
  break;
27970
28053
  }
28054
+ case 4: {
28055
+ message.canBeReshared = reader.bool();
28056
+ break;
28057
+ }
27971
28058
  default:
27972
28059
  reader.skipType(tag & 7);
27973
28060
  break;
@@ -28019,6 +28106,11 @@ $root.waproto = (function() {
28019
28106
  if (typeof message.canRequestFeedback !== "boolean")
28020
28107
  return "canRequestFeedback: boolean expected";
28021
28108
  }
28109
+ if (message.canBeReshared != null && message.hasOwnProperty("canBeReshared")) {
28110
+ properties._canBeReshared = 1;
28111
+ if (typeof message.canBeReshared !== "boolean")
28112
+ return "canBeReshared: boolean expected";
28113
+ }
28022
28114
  return null;
28023
28115
  };
28024
28116
 
@@ -28040,6 +28132,8 @@ $root.waproto = (function() {
28040
28132
  message.cannotBeRanked = Boolean(object.cannotBeRanked);
28041
28133
  if (object.canRequestFeedback != null)
28042
28134
  message.canRequestFeedback = Boolean(object.canRequestFeedback);
28135
+ if (object.canBeReshared != null)
28136
+ message.canBeReshared = Boolean(object.canBeReshared);
28043
28137
  return message;
28044
28138
  };
28045
28139
 
@@ -28071,6 +28165,11 @@ $root.waproto = (function() {
28071
28165
  if (options.oneofs)
28072
28166
  object._canRequestFeedback = "canRequestFeedback";
28073
28167
  }
28168
+ if (message.canBeReshared != null && message.hasOwnProperty("canBeReshared")) {
28169
+ object.canBeReshared = message.canBeReshared;
28170
+ if (options.oneofs)
28171
+ object._canBeReshared = "canBeReshared";
28172
+ }
28074
28173
  return object;
28075
28174
  };
28076
28175
 
@@ -28779,11 +28878,13 @@ $root.waproto = (function() {
28779
28878
  * @enum {number}
28780
28879
  * @property {number} NONE=0 NONE value
28781
28880
  * @property {number} RESHARED_FROM_MENTION=1 RESHARED_FROM_MENTION value
28881
+ * @property {number} RESHARED_FROM_POST=2 RESHARED_FROM_POST value
28782
28882
  */
28783
28883
  ContextInfo.StatusAttributionType = (function() {
28784
28884
  var valuesById = {}, values = Object.create(valuesById);
28785
28885
  values[valuesById[0] = "NONE"] = 0;
28786
28886
  values[valuesById[1] = "RESHARED_FROM_MENTION"] = 1;
28887
+ values[valuesById[2] = "RESHARED_FROM_POST"] = 2;
28787
28888
  return values;
28788
28889
  })();
28789
28890
 
@@ -53129,6 +53230,9 @@ $root.waproto = (function() {
53129
53230
  case 7:
53130
53231
  case 8:
53131
53232
  case 9:
53233
+ case 10:
53234
+ case 11:
53235
+ case 12:
53132
53236
  break;
53133
53237
  }
53134
53238
  }
@@ -53223,6 +53327,18 @@ $root.waproto = (function() {
53223
53327
  case 9:
53224
53328
  message.kind = 9;
53225
53329
  break;
53330
+ case "BOT_FEEDBACK_NEGATIVE_PERSONALIZED":
53331
+ case 10:
53332
+ message.kind = 10;
53333
+ break;
53334
+ case "BOT_FEEDBACK_NEGATIVE_CLARITY":
53335
+ case 11:
53336
+ message.kind = 11;
53337
+ break;
53338
+ case "BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON":
53339
+ case 12:
53340
+ message.kind = 12;
53341
+ break;
53226
53342
  }
53227
53343
  if (object.text != null)
53228
53344
  message.text = String(object.text);
@@ -53351,6 +53467,9 @@ $root.waproto = (function() {
53351
53467
  * @property {number} BOT_FEEDBACK_NEGATIVE_REFUSED=7 BOT_FEEDBACK_NEGATIVE_REFUSED value
53352
53468
  * @property {number} BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING=8 BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING value
53353
53469
  * @property {number} BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT=9 BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT value
53470
+ * @property {number} BOT_FEEDBACK_NEGATIVE_PERSONALIZED=10 BOT_FEEDBACK_NEGATIVE_PERSONALIZED value
53471
+ * @property {number} BOT_FEEDBACK_NEGATIVE_CLARITY=11 BOT_FEEDBACK_NEGATIVE_CLARITY value
53472
+ * @property {number} BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON=12 BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON value
53354
53473
  */
53355
53474
  BotFeedbackMessage.BotFeedbackKind = (function() {
53356
53475
  var valuesById = {}, values = Object.create(valuesById);
@@ -53364,6 +53483,9 @@ $root.waproto = (function() {
53364
53483
  values[valuesById[7] = "BOT_FEEDBACK_NEGATIVE_REFUSED"] = 7;
53365
53484
  values[valuesById[8] = "BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING"] = 8;
53366
53485
  values[valuesById[9] = "BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT"] = 9;
53486
+ values[valuesById[10] = "BOT_FEEDBACK_NEGATIVE_PERSONALIZED"] = 10;
53487
+ values[valuesById[11] = "BOT_FEEDBACK_NEGATIVE_CLARITY"] = 11;
53488
+ values[valuesById[12] = "BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON"] = 12;
53367
53489
  return values;
53368
53490
  })();
53369
53491
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wppconnect/wa-proto",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "Protobuf files from WhatsApp WEB",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -29,7 +29,7 @@
29
29
  "acorn-walk": "^8.3.4",
30
30
  "conventional-changelog-cli": "^4.1.0",
31
31
  "protobufjs-cli": "^1.1.3",
32
- "release-it": "^17.10.0",
32
+ "release-it": "^17.11.0",
33
33
  "request": "^2.88.2",
34
34
  "request-promise-core": "^1.1.4",
35
35
  "request-promise-native": "^1.0.9"