@oxidezap/baileyrs 0.2.9 → 0.2.11

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/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@oxidezap/baileyrs?color=cb3837&logo=npm)](https://www.npmjs.com/package/@oxidezap/baileyrs)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/@oxidezap/baileyrs?color=cb3837&logo=npm)](https://www.npmjs.com/package/@oxidezap/baileyrs)
5
5
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/oxidezap/baileyrs)
6
+ [![pkg.pr.new](https://pkg.pr.new/badge/oxidezap/baileyrs)](https://pkg.pr.new/~/oxidezap/baileyrs)
6
7
 
7
8
  A Rust-powered WhatsApp Web library for JavaScript, with a Baileys-compatible API.
8
9
 
@@ -87,6 +88,41 @@ That writes the alias to your `package.json` (with the latest version at install
87
88
  Every `import { makeWASocket } from '@whiskeysockets/baileys'` in your codebase
88
89
  now resolves to baileyrs.
89
90
 
91
+ ### Preview builds
92
+
93
+ Every commit on `main` and every pull request publishes an installable build
94
+ through [pkg.pr.new](https://github.com/stackblitz-labs/pkg.pr.new). Nothing is
95
+ published to npm — the tarball is served from a URL, so a fix can be tried
96
+ before it reaches a release:
97
+
98
+ ```sh
99
+ # the head of a pull request, following it as new commits land
100
+ npm install https://pkg.pr.new/@oxidezap/baileyrs@94
101
+
102
+ # one specific commit
103
+ npm install https://pkg.pr.new/@oxidezap/baileyrs@f59ae6f
104
+ ```
105
+
106
+ Projects using the Baileys alias point it at the same URL:
107
+
108
+ ```jsonc
109
+ {
110
+ "dependencies": {
111
+ "@whiskeysockets/baileys": "https://pkg.pr.new/@oxidezap/baileyrs@94"
112
+ }
113
+ }
114
+ ```
115
+
116
+ Every open pull request comments the URL for its own head, and
117
+ [pkg.pr.new/~/oxidezap/baileyrs](https://pkg.pr.new/~/oxidezap/baileyrs) lists
118
+ what is available.
119
+
120
+ Preview builds carry the version `0.0.0-preview-<sha>`, which no range written
121
+ for a real release can match — an install is a deliberate pin, and it stays on
122
+ that commit until you change it. They are for trying a change, not for running
123
+ one: they are unreleased code, and the URL is not a substitute for a published
124
+ version in anything that has to keep resolving.
125
+
90
126
  ## Quick Start
91
127
 
92
128
  ```ts
@@ -243,6 +279,19 @@ A few behaviors that differ from upstream — almost always to your advantage:
243
279
  `connectTimeoutMs`, `qrTimeout`, `printQRInTerminal`, `ignoreOfflineMessages`,
244
280
  `downloadHistory`, `agent`, `fetchAgent`, `mobile`, `mediaCache`,
245
281
  `userDevicesCache`, `callOfferCache` and `placeholderResendCache`.
282
+ - **A sender's resend reaches you once, not once per delivery.** When a
283
+ sender's network is bad, their client re-runs its own outbox and sends the
284
+ same message again — same `key.id`, re-encrypted. Upstream Baileys emits a
285
+ `messages.upsert` for each of those deliveries, so an auto-reply bot answers
286
+ the same message two or three times; the engine now recognises the repeat and
287
+ emits one. It is a short-lived, in-memory window (five minutes), so the one
288
+ case still open is a sender whose retry spans a restart of your process. If
289
+ your handler has side effects, keying them on the whole `key` — `remoteJid`,
290
+ `id`, `fromMe` and `participant` — remains the thing that makes it safe. Not
291
+ on `id` alone: the id is the sending client's to choose, so two participants
292
+ of one group can pick the same one, and a handler that keys on it would drop
293
+ the second person's message rather than a duplicate. That is why the engine's
294
+ own check carries the sender too.
246
295
  - **`Boom` ships in the box.** baileyrs exports its own
247
296
  `@hapi/boom`-compatible `Boom`, so the existing
248
297
  `(err as Boom).output.statusCode` pattern works unchanged. If your
@@ -458,6 +458,11 @@ const ADAPTERS = {
458
458
  count: asNumber(data?.count) ?? 0
459
459
  }),
460
460
  offline_sync_preview: () => ({ type: 'noop', bridgeType: 'offline_sync_preview' }),
461
+ // Counterpart of `offline_sync_completed`, not a variant: the drain ended
462
+ // without its end marker, so the client is *not* caught up and the backlog
463
+ // is redelivered on the next connection. Emitting `receivedPendingNotifications`
464
+ // here would be a lie, so this stays a noop until the next preview/completion.
465
+ offline_sync_interrupted: () => ({ type: 'noop', bridgeType: 'offline_sync_interrupted' }),
461
466
  dirty_state: data => {
462
467
  const dirtyType = asString(data?.dirty_type);
463
468
  if (!dirtyType)
@@ -6,8 +6,7 @@ const INSTANCE_SCHEMA = Symbol('proto compatibility schema');
6
6
  const EMPTY_ARRAY = Object.freeze([]);
7
7
  const EMPTY_OBJECT = Object.freeze({});
8
8
  const JSON_OPTIONS = Object.freeze({ longs: String, enums: String, bytes: String, json: true });
9
- const WORD_BITS = 32;
10
- const WORD_BASE = 1n << BigInt(WORD_BITS);
9
+ const WORD_BASE = 1n << 32n;
11
10
  // protobufjs resolves the CommonJS Long constructor internally. Loading that
12
11
  // same export keeps `instanceof` and prototype identity aligned without
13
12
  // loading protobufjs itself or adding a second wire runtime.
@@ -79,12 +78,25 @@ const repairScalar = (kind, item) => {
79
78
  return replaced === item ? item : replaced;
80
79
  };
81
80
  const longFromWords = (low, high, unsigned) => LongRuntime.fromBits(low, high, unsigned);
81
+ /**
82
+ * Split a decoded 64-bit value into the low/high words `longFromWords` takes.
83
+ * Shifts and masks are exact on BigInt at any magnitude, and `BigInt(string)`
84
+ * parses exactly, so the `string` leg the reader's types allow costs precision
85
+ * nothing — only the one intermediate allocation.
86
+ */
87
+ const wordsFromInt64 = (value) => {
88
+ const v = typeof value === 'bigint' ? value : BigInt(value);
89
+ return [Number(v & 0xffffffffn), Number((v >> 32n) & 0xffffffffn)];
90
+ };
82
91
  /**
83
92
  * The neutral codec returns a JS number while a 64-bit value is exact as a
84
93
  * double and a plain `{ low, high, unsigned }` past that. The compatibility
85
94
  * facade supplies this reader so the same generated decoder materializes every
86
95
  * 64-bit word as a long.js Long instead — uniformly, whatever the magnitude —
87
- * without a second decode or an intermediate string/BigInt allocation.
96
+ * through one decode. `@bufbuild/protobuf` 2.14 privatized the word-level
97
+ * varint reader the overrides used to share, so each 64-bit varint now passes
98
+ * through one BigInt intermediate; uniformity is what remains, and precision
99
+ * is unchanged.
88
100
  *
89
101
  * Uniformity is the point: upstream's types declare `Long` for these fields,
90
102
  * so a consumer calling `.toNumber()` must not have that work only for values
@@ -93,18 +105,15 @@ const longFromWords = (low, high, unsigned) => LongRuntime.fromBits(low, high, u
93
105
  */
94
106
  class LongBinaryReader extends BinaryReader {
95
107
  uint64Value() {
96
- const [low, high] = this.varint64();
108
+ const [low, high] = wordsFromInt64(this.uint64());
97
109
  return longFromWords(low, high, true);
98
110
  }
99
111
  int64Value() {
100
- const [low, high] = this.varint64();
112
+ const [low, high] = wordsFromInt64(this.int64());
101
113
  return longFromWords(low, high, false);
102
114
  }
103
115
  sint64Value() {
104
- let [low, high] = this.varint64();
105
- const sign = -(low & 1);
106
- low = ((low >>> 1) | ((high & 1) << (WORD_BITS - 1))) ^ sign;
107
- high = (high >>> 1) ^ sign;
116
+ const [low, high] = wordsFromInt64(this.sint64());
108
117
  return longFromWords(low, high, false);
109
118
  }
110
119
  fixed64Value() {
@@ -19,7 +19,7 @@ export declare const PROTO_FIELD_FLAG: {
19
19
  readonly proto3Optional: 4;
20
20
  readonly oneof: 8;
21
21
  };
22
- export declare const PROTO_SCHEMA_SOURCE = "baileys@7.0.0-rc13:4bab5324186daf8de5ab592548ee80dfc753651667fa9411e0666837f90e4c8d";
22
+ export declare const PROTO_SCHEMA_SOURCE = "baileys@7.0.0-rc14:4bab5324186daf8de5ab592548ee80dfc753651667fa9411e0666837f90e4c8d";
23
23
  export declare const PROTO_MESSAGE_SCHEMAS: readonly ProtoMessageSchema[];
24
24
  export declare const PROTO_ENUM_SCHEMAS: readonly ProtoEnumSchema[];
25
25
  //# sourceMappingURL=compatibility-schema.d.ts.map
@@ -1,6 +1,6 @@
1
1
  export const PROTO_FIELD_KIND = { "message": 0, "enum": 1, "string": 2, "bool": 3, "bytes": 4, "float": 5, "signed32": 6, "unsigned32": 7, "signed64": 8, "unsigned64": 9 };
2
2
  export const PROTO_FIELD_FLAG = { "repeated": 1, "map": 2, "proto3Optional": 4, "oneof": 8 };
3
- export const PROTO_SCHEMA_SOURCE = "baileys@7.0.0-rc13:4bab5324186daf8de5ab592548ee80dfc753651667fa9411e0666837f90e4c8d";
3
+ export const PROTO_SCHEMA_SOURCE = "baileys@7.0.0-rc14:4bab5324186daf8de5ab592548ee80dfc753651667fa9411e0666837f90e4c8d";
4
4
  export const PROTO_MESSAGE_SCHEMAS = [["Account", [["lid", 2, -1, 4, ""], ["username", 2, -1, 4, ""], ["countryCode", 2, -1, 4, ""], ["isUsernameDeleted", 3, -1, 4, ""]]], ["ActionLink", [["url", 2, -1, 4, ""], ["buttonTitle", 2, -1, 4, ""]]], ["ADVDeviceIdentity", [["rawId", 7, -1, 4, ""], ["timestamp", 9, -1, 4, ""], ["keyIndex", 7, -1, 4, ""], ["accountType", 1, 0, 4, ""], ["deviceType", 1, 0, 4, ""]]], ["ADVKeyIndexList", [["rawId", 7, -1, 4, ""], ["timestamp", 9, -1, 4, ""], ["currentIndex", 7, -1, 4, ""], ["validIndexes", 7, -1, 1, ""], ["accountType", 1, 0, 4, ""]]], ["ADVSignedDeviceIdentity", [["details", 4, -1, 4, ""], ["accountSignatureKey", 4, -1, 4, ""], ["accountSignature", 4, -1, 4, ""], ["deviceSignature", 4, -1, 4, ""]]], ["ADVSignedDeviceIdentityHMAC", [["details", 4, -1, 4, ""], ["hmac", 4, -1, 4, ""], ["accountType", 1, 0, 4, ""]]], ["ADVSignedKeyIndexList", [["details", 4, -1, 4, ""], ["accountSignature", 4, -1, 4, ""], ["accountSignatureKey", 4, -1, 4, ""]]], ["AIHomeState", [["lastFetchTime", 8, -1, 4, ""], ["capabilityOptions", 0, 8, 1, ""], ["conversationOptions", 0, 8, 1, ""]]], ["AIHomeState.AIHomeOption", [["type", 1, 1, 4, ""], ["title", 2, -1, 4, ""], ["promptText", 2, -1, 4, ""], ["sessionId", 2, -1, 4, ""], ["imageWdsIdentifier", 2, -1, 4, ""], ["imageTintColor", 2, -1, 4, ""], ["imageBackgroundColor", 2, -1, 4, ""]]], ["AIQueryFanout", [["messageKey", 0, 330, 4, ""], ["message", 0, 179, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["AIRegenerateMetadata", [["messageKey", 0, 330, 4, ""], ["responseTimestampMs", 8, -1, 4, ""]]], ["AIRichResponseCodeMetadata", [["codeLanguage", 2, -1, 4, ""], ["codeBlocks", 0, 12, 1, ""]]], ["AIRichResponseCodeMetadata.AIRichResponseCodeBlock", [["highlightType", 1, 2, 4, ""], ["codeContent", 2, -1, 4, ""]]], ["AIRichResponseContentItemsMetadata", [["itemsMetadata", 0, 14, 1, ""], ["contentType", 1, 3, 4, ""]]], ["AIRichResponseContentItemsMetadata.AIRichResponseContentItemMetadata", [["reelItem", 0, 15, 8, "aIRichResponseContentItem"]]], ["AIRichResponseContentItemsMetadata.AIRichResponseReelItem", [["title", 2, -1, 4, ""], ["profileIconUrl", 2, -1, 4, ""], ["thumbnailUrl", 2, -1, 4, ""], ["videoUrl", 2, -1, 4, ""]]], ["AIRichResponseDynamicMetadata", [["type", 1, 4, 4, ""], ["version", 9, -1, 4, ""], ["url", 2, -1, 4, ""], ["loopCount", 7, -1, 4, ""]]], ["AIRichResponseGridImageMetadata", [["gridImageUrl", 0, 18, 4, ""], ["imageUrls", 0, 18, 1, ""]]], ["AIRichResponseImageURL", [["imagePreviewUrl", 2, -1, 4, ""], ["imageHighResUrl", 2, -1, 4, ""], ["sourceUrl", 2, -1, 4, ""]]], ["AIRichResponseInlineImageMetadata", [["imageUrl", 0, 18, 4, ""], ["imageText", 2, -1, 4, ""], ["alignment", 1, 5, 4, ""], ["tapLinkUrl", 2, -1, 4, ""]]], ["AIRichResponseLatexMetadata", [["text", 2, -1, 4, ""], ["expressions", 0, 21, 1, ""]]], ["AIRichResponseLatexMetadata.AIRichResponseLatexExpression", [["latexExpression", 2, -1, 4, ""], ["url", 2, -1, 4, ""], ["width", 5, -1, 4, ""], ["height", 5, -1, 4, ""], ["fontHeight", 5, -1, 4, ""], ["imageTopPadding", 5, -1, 4, ""], ["imageLeadingPadding", 5, -1, 4, ""], ["imageBottomPadding", 5, -1, 4, ""], ["imageTrailingPadding", 5, -1, 4, ""]]], ["AIRichResponseMapMetadata", [["centerLatitude", 5, -1, 4, ""], ["centerLongitude", 5, -1, 4, ""], ["latitudeDelta", 5, -1, 4, ""], ["longitudeDelta", 5, -1, 4, ""], ["annotations", 0, 23, 1, ""], ["showInfoList", 3, -1, 4, ""]]], ["AIRichResponseMapMetadata.AIRichResponseMapAnnotation", [["annotationNumber", 7, -1, 4, ""], ["latitude", 5, -1, 4, ""], ["longitude", 5, -1, 4, ""], ["title", 2, -1, 4, ""], ["body", 2, -1, 4, ""]]], ["AIRichResponseMessage", [["messageType", 1, 6, 4, ""], ["submessages", 0, 25, 1, ""], ["unifiedResponse", 0, 28, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["AIRichResponseSubMessage", [["messageType", 1, 7, 4, ""], ["gridImageMetadata", 0, 17, 4, ""], ["messageText", 2, -1, 4, ""], ["imageMetadata", 0, 19, 4, ""], ["codeMetadata", 0, 11, 4, ""], ["tableMetadata", 0, 26, 4, ""], ["dynamicMetadata", 0, 16, 4, ""], ["latexMetadata", 0, 20, 4, ""], ["mapMetadata", 0, 22, 4, ""], ["contentItemsMetadata", 0, 13, 4, ""]]], ["AIRichResponseTableMetadata", [["rows", 0, 27, 1, ""], ["title", 2, -1, 4, ""]]], ["AIRichResponseTableMetadata.AIRichResponseTableRow", [["items", 2, -1, 1, ""], ["isHeading", 3, -1, 4, ""]]], ["AIRichResponseUnifiedResponse", [["data", 4, -1, 4, ""]]], ["AIThreadInfo", [["serverInfo", 0, 31, 4, ""], ["clientInfo", 0, 30, 4, ""]]], ["AIThreadInfo.AIThreadClientInfo", [["type", 1, 8, 4, ""]]], ["AIThreadInfo.AIThreadServerInfo", [["title", 2, -1, 4, ""]]], ["AutoDownloadSettings", [["downloadImages", 3, -1, 4, ""], ["downloadAudio", 3, -1, 4, ""], ["downloadVideo", 3, -1, 4, ""], ["downloadDocuments", 3, -1, 4, ""]]], ["AvatarUserSettings", [["fbid", 2, -1, 4, ""], ["password", 2, -1, 4, ""]]], ["BizAccountLinkInfo", [["whatsappBizAcctFbid", 9, -1, 4, ""], ["whatsappAcctNumber", 2, -1, 4, ""], ["issueTime", 9, -1, 4, ""], ["hostStorage", 1, 10, 4, ""], ["accountType", 1, 9, 4, ""]]], ["BizAccountPayload", [["vnameCert", 0, 492, 4, ""], ["bizAcctLinkInfo", 4, -1, 4, ""]]], ["BizIdentityInfo", [["vlevel", 1, 13, 4, ""], ["vnameCert", 0, 492, 4, ""], ["signed", 3, -1, 4, ""], ["revoked", 3, -1, 4, ""], ["hostStorage", 1, 12, 4, ""], ["actualActors", 1, 11, 4, ""], ["privacyModeTs", 9, -1, 4, ""], ["featureControls", 9, -1, 4, ""]]], ["BotAgeCollectionMetadata", [["ageCollectionEligible", 3, -1, 4, ""], ["shouldTriggerAgeCollectionOnClient", 3, -1, 4, ""], ["ageCollectionType", 1, 14, 4, ""]]], ["BotAvatarMetadata", [["sentiment", 7, -1, 4, ""], ["behaviorGraph", 2, -1, 4, ""], ["action", 7, -1, 4, ""], ["intensity", 7, -1, 4, ""], ["wordCount", 7, -1, 4, ""]]], ["BotCapabilityMetadata", [["capabilities", 1, 15, 1, ""]]], ["BotFeedbackMessage", [["messageKey", 0, 330, 4, ""], ["kind", 1, 16, 4, ""], ["text", 2, -1, 4, ""], ["kindNegative", 9, -1, 4, ""], ["kindPositive", 9, -1, 4, ""], ["kindReport", 1, 19, 4, ""], ["sideBySideSurveyMetadata", 0, 41, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata", [["selectedRequestId", 2, -1, 4, ""], ["surveyId", 7, -1, 4, ""], ["simonSessionFbid", 2, -1, 4, ""], ["responseOtid", 2, -1, 4, ""], ["responseTimestampMsString", 2, -1, 4, ""], ["isSelectedResponsePrimary", 3, -1, 4, ""], ["messageIdToEdit", 2, -1, 4, ""], ["analyticsData", 0, 42, 4, ""], ["metaAiAnalyticsData", 0, 43, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SideBySideSurveyAnalyticsData", [["tessaEvent", 2, -1, 4, ""], ["tessaSessionFbid", 2, -1, 4, ""], ["simonSessionFbid", 2, -1, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData", [["surveyId", 7, -1, 4, ""], ["primaryResponseId", 2, -1, 4, ""], ["testArmName", 2, -1, 4, ""], ["timestampMsString", 2, -1, 4, ""], ["ctaImpressionEvent", 0, 47, 4, ""], ["ctaClickEvent", 0, 46, 4, ""], ["cardImpressionEvent", 0, 45, 4, ""], ["responseEvent", 0, 48, 4, ""], ["abandonEvent", 0, 44, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyAbandonEventData", [["abandonDwellTimeMsString", 2, -1, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCardImpressionEventData", []], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAClickEventData", [["isSurveyExpired", 3, -1, 4, ""], ["clickDwellTimeMsString", 2, -1, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAImpressionEventData", [["isSurveyExpired", 3, -1, 4, ""]]], ["BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyResponseEventData", [["responseDwellTimeMsString", 2, -1, 4, ""], ["selectedResponseId", 2, -1, 4, ""]]], ["BotImagineMetadata", [["imagineType", 1, 20, 4, ""]]], ["BotLinkedAccount", [["type", 1, 21, 4, ""]]], ["BotLinkedAccountsMetadata", [["accounts", 0, 50, 1, ""], ["acAuthTokens", 4, -1, 4, ""], ["acErrorCode", 6, -1, 4, ""]]], ["BotMediaMetadata", [["fileSha256", 2, -1, 4, ""], ["mediaKey", 2, -1, 4, ""], ["fileEncSha256", 2, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["orientationType", 1, 22, 4, ""]]], ["BotMemoryFact", [["fact", 2, -1, 4, ""], ["factId", 2, -1, 4, ""]]], ["BotMemoryMetadata", [["addedFacts", 0, 53, 1, ""], ["removedFacts", 0, 53, 1, ""], ["disclaimer", 2, -1, 4, ""]]], ["BotMemuMetadata", [["faceImages", 0, 52, 1, ""]]], ["BotMessageOrigin", [["type", 1, 23, 4, ""]]], ["BotMessageOriginMetadata", [["origins", 0, 56, 1, ""]]], ["BotMessageSharingInfo", [["botEntryPointOrigin", 1, 24, 4, ""], ["forwardScore", 7, -1, 4, ""]]], ["BotMetadata", [["avatarMetadata", 0, 38, 4, ""], ["personaId", 2, -1, 4, ""], ["pluginMetadata", 0, 63, 4, ""], ["suggestedPromptMetadata", 0, 82, 4, ""], ["invokerJid", 2, -1, 4, ""], ["sessionMetadata", 0, 77, 4, ""], ["memuMetadata", 0, 55, 4, ""], ["timezone", 2, -1, 4, ""], ["reminderMetadata", 0, 74, 4, ""], ["modelMetadata", 0, 61, 4, ""], ["messageDisclaimerText", 2, -1, 4, ""], ["progressIndicatorMetadata", 0, 64, 4, ""], ["capabilityMetadata", 0, 39, 4, ""], ["imagineMetadata", 0, 49, 4, ""], ["memoryMetadata", 0, 54, 4, ""], ["renderingMetadata", 0, 75, 4, ""], ["botMetricsMetadata", 0, 60, 4, ""], ["botLinkedAccountsMetadata", 0, 51, 4, ""], ["richResponseSourcesMetadata", 0, 80, 4, ""], ["aiConversationContext", 4, -1, 4, ""], ["botPromotionMessageMetadata", 0, 69, 4, ""], ["botModeSelectionMetadata", 0, 62, 4, ""], ["botQuotaMetadata", 0, 72, 4, ""], ["botAgeCollectionMetadata", 0, 37, 4, ""], ["conversationStarterPromptId", 2, -1, 4, ""], ["botResponseId", 2, -1, 4, ""], ["verificationMetadata", 0, 78, 4, ""], ["unifiedResponseMutation", 0, 83, 4, ""], ["botMessageOriginMetadata", 0, 57, 4, ""], ["inThreadSurveyMetadata", 0, 161, 4, ""], ["botThreadInfo", 0, 29, 4, ""], ["regenerateMetadata", 0, 10, 4, ""], ["sessionTransparencyMetadata", 0, 384, 4, ""], ["internalMetadata", 4, -1, 4, ""]]], ["BotMetricsMetadata", [["destinationId", 2, -1, 4, ""], ["destinationEntryPoint", 1, 24, 4, ""], ["threadOrigin", 1, 25, 4, ""]]], ["BotModelMetadata", [["modelType", 1, 26, 4, ""], ["premiumModelStatus", 1, 27, 4, ""], ["modelNameOverride", 2, -1, 4, ""]]], ["BotModeSelectionMetadata", [["mode", 1, 28, 1, ""]]], ["BotPluginMetadata", [["provider", 1, 30, 4, ""], ["pluginType", 1, 29, 4, ""], ["thumbnailCdnUrl", 2, -1, 4, ""], ["profilePhotoCdnUrl", 2, -1, 4, ""], ["searchProviderUrl", 2, -1, 4, ""], ["referenceIndex", 7, -1, 4, ""], ["expectedLinksCount", 7, -1, 4, ""], ["searchQuery", 2, -1, 4, ""], ["parentPluginMessageKey", 0, 330, 4, ""], ["deprecatedField", 1, 29, 4, ""], ["parentPluginType", 1, 29, 4, ""], ["faviconCdnUrl", 2, -1, 4, ""]]], ["BotProgressIndicatorMetadata", [["progressDescription", 2, -1, 4, ""], ["stepsMetadata", 0, 65, 1, ""]]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata", [["statusTitle", 2, -1, 4, ""], ["statusBody", 2, -1, 4, ""], ["sourcesMetadata", 0, 67, 1, ""], ["status", 1, 33, 4, ""], ["isReasoning", 3, -1, 4, ""], ["isEnhancedSearch", 3, -1, 4, ""], ["sections", 0, 68, 1, ""]]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourceMetadata", [["title", 2, -1, 4, ""], ["provider", 1, 32, 4, ""], ["sourceUrl", 2, -1, 4, ""], ["favIconUrl", 2, -1, 4, ""]]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata", [["sourceTitle", 2, -1, 4, ""], ["provider", 1, 31, 4, ""], ["sourceUrl", 2, -1, 4, ""]]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningStepSectionMetadata", [["sectionTitle", 2, -1, 4, ""], ["sectionBody", 2, -1, 4, ""], ["sourcesMetadata", 0, 66, 1, ""]]], ["BotPromotionMessageMetadata", [["promotionType", 1, 34, 4, ""], ["buttonTitle", 2, -1, 4, ""]]], ["BotPromptSuggestion", [["prompt", 2, -1, 4, ""], ["promptId", 2, -1, 4, ""]]], ["BotPromptSuggestions", [["suggestions", 0, 70, 1, ""]]], ["BotQuotaMetadata", [["botFeatureQuotaMetadata", 0, 73, 1, ""]]], ["BotQuotaMetadata.BotFeatureQuotaMetadata", [["featureType", 1, 35, 4, ""], ["remainingQuota", 7, -1, 4, ""], ["expirationTimestamp", 9, -1, 4, ""]]], ["BotReminderMetadata", [["requestMessageKey", 0, 330, 4, ""], ["action", 1, 36, 4, ""], ["name", 2, -1, 4, ""], ["nextTriggerTimestamp", 9, -1, 4, ""], ["frequency", 1, 37, 4, ""]]], ["BotRenderingMetadata", [["keywords", 0, 76, 1, ""]]], ["BotRenderingMetadata.Keyword", [["value", 2, -1, 4, ""], ["associatedPrompts", 2, -1, 1, ""]]], ["BotSessionMetadata", [["sessionId", 2, -1, 4, ""], ["sessionSource", 1, 38, 4, ""]]], ["BotSignatureVerificationMetadata", [["proofs", 0, 79, 1, ""]]], ["BotSignatureVerificationUseCaseProof", [["version", 6, -1, 4, ""], ["useCase", 1, 39, 4, ""], ["signature", 4, -1, 4, ""], ["certificateChain", 4, -1, 1, ""]]], ["BotSourcesMetadata", [["sources", 0, 81, 1, ""]]], ["BotSourcesMetadata.BotSourceItem", [["provider", 1, 40, 4, ""], ["thumbnailCdnUrl", 2, -1, 4, ""], ["sourceProviderUrl", 2, -1, 4, ""], ["sourceQuery", 2, -1, 4, ""], ["faviconCdnUrl", 2, -1, 4, ""], ["citationNumber", 7, -1, 4, ""], ["sourceTitle", 2, -1, 4, ""]]], ["BotSuggestedPromptMetadata", [["suggestedPrompts", 2, -1, 1, ""], ["selectedPromptIndex", 7, -1, 4, ""], ["promptSuggestions", 0, 71, 4, ""], ["selectedPromptId", 2, -1, 4, ""]]], ["BotUnifiedResponseMutation", [["sbsMetadata", 0, 85, 4, ""], ["mediaDetailsMetadataList", 0, 84, 1, ""]]], ["BotUnifiedResponseMutation.MediaDetailsMetadata", [["id", 2, -1, 4, ""], ["highResMedia", 0, 52, 4, ""], ["previewMedia", 0, 52, 4, ""]]], ["BotUnifiedResponseMutation.SideBySideMetadata", [["primaryResponseId", 2, -1, 4, ""], ["surveyCtaHasRendered", 3, -1, 4, ""]]], ["CallLogRecord", [["callResult", 1, 41, 4, ""], ["isDndMode", 3, -1, 4, ""], ["silenceReason", 1, 43, 4, ""], ["duration", 8, -1, 4, ""], ["startTime", 8, -1, 4, ""], ["isIncoming", 3, -1, 4, ""], ["isVideo", 3, -1, 4, ""], ["isCallLink", 3, -1, 4, ""], ["callLinkToken", 2, -1, 4, ""], ["scheduledCallId", 2, -1, 4, ""], ["callId", 2, -1, 4, ""], ["callCreatorJid", 2, -1, 4, ""], ["groupJid", 2, -1, 4, ""], ["participants", 0, 87, 1, ""], ["callType", 1, 42, 4, ""]]], ["CallLogRecord.ParticipantInfo", [["userJid", 2, -1, 4, ""], ["callResult", 1, 41, 4, ""]]], ["CertChain", [["leaf", 0, 89, 4, ""], ["intermediate", 0, 89, 4, ""]]], ["CertChain.NoiseCertificate", [["details", 4, -1, 4, ""], ["signature", 4, -1, 4, ""]]], ["CertChain.NoiseCertificate.Details", [["serial", 7, -1, 4, ""], ["issuerSerial", 7, -1, 4, ""], ["key", 4, -1, 4, ""], ["notBefore", 9, -1, 4, ""], ["notAfter", 9, -1, 4, ""]]], ["ChatLockSettings", [["hideLockedChats", 3, -1, 4, ""], ["secretCode", 0, 488, 4, ""]]], ["ChatRowOpaqueData", [["draftMessage", 0, 93, 4, ""]]], ["ChatRowOpaqueData.DraftMessage", [["text", 2, -1, 4, ""], ["omittedUrl", 2, -1, 4, ""], ["ctwaContextLinkData", 0, 95, 4, ""], ["ctwaContext", 0, 94, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["ChatRowOpaqueData.DraftMessage.CtwaContextData", [["conversionSource", 2, -1, 4, ""], ["conversionData", 4, -1, 4, ""], ["sourceUrl", 2, -1, 4, ""], ["sourceId", 2, -1, 4, ""], ["sourceType", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["thumbnail", 2, -1, 4, ""], ["thumbnailUrl", 2, -1, 4, ""], ["mediaType", 1, 44, 4, ""], ["mediaUrl", 2, -1, 4, ""], ["isSuspiciousLink", 3, -1, 4, ""]]], ["ChatRowOpaqueData.DraftMessage.CtwaContextLinkData", [["context", 2, -1, 4, ""], ["sourceUrl", 2, -1, 4, ""], ["icebreaker", 2, -1, 4, ""], ["phone", 2, -1, 4, ""]]], ["Citation", [["title", 2, -1, 0, ""], ["subtitle", 2, -1, 0, ""], ["cmsId", 2, -1, 0, ""], ["imageUrl", 2, -1, 0, ""]]], ["ClientPairingProps", [["isChatDbLidMigrated", 3, -1, 4, ""], ["isSyncdPureLidSession", 3, -1, 4, ""], ["isSyncdSnapshotRecoveryEnabled", 3, -1, 4, ""]]], ["ClientPayload", [["username", 9, -1, 4, ""], ["passive", 3, -1, 4, ""], ["userAgent", 0, 102, 4, ""], ["webInfo", 0, 104, 4, ""], ["pushName", 2, -1, 4, ""], ["sessionId", 6, -1, 4, ""], ["shortConnect", 3, -1, 4, ""], ["connectType", 1, 47, 4, ""], ["connectReason", 1, 46, 4, ""], ["shards", 6, -1, 1, ""], ["dnsSource", 0, 100, 4, ""], ["connectAttemptCount", 7, -1, 4, ""], ["device", 7, -1, 4, ""], ["devicePairingData", 0, 99, 4, ""], ["product", 1, 50, 4, ""], ["fbCat", 4, -1, 4, ""], ["fbUserAgent", 4, -1, 4, ""], ["oc", 3, -1, 4, ""], ["lc", 6, -1, 4, ""], ["iosAppExtension", 1, 49, 4, ""], ["fbAppId", 9, -1, 4, ""], ["fbDeviceId", 4, -1, 4, ""], ["pull", 3, -1, 4, ""], ["paddingBytes", 4, -1, 4, ""], ["yearClass", 6, -1, 4, ""], ["memClass", 6, -1, 4, ""], ["interopData", 0, 101, 4, ""], ["trafficAnonymization", 1, 51, 4, ""], ["lidDbMigrated", 3, -1, 4, ""], ["accountType", 1, 45, 4, ""], ["connectionSequenceInfo", 6, -1, 4, ""], ["paaLink", 3, -1, 4, ""], ["preacksCount", 6, -1, 4, ""], ["processingQueueSize", 6, -1, 4, ""]]], ["ClientPayload.DevicePairingRegistrationData", [["eRegid", 4, -1, 4, ""], ["eKeytype", 4, -1, 4, ""], ["eIdent", 4, -1, 4, ""], ["eSkeyId", 4, -1, 4, ""], ["eSkeyVal", 4, -1, 4, ""], ["eSkeySig", 4, -1, 4, ""], ["buildHash", 4, -1, 4, ""], ["deviceProps", 4, -1, 4, ""]]], ["ClientPayload.DNSSource", [["dnsMethod", 1, 48, 4, ""], ["appCached", 3, -1, 4, ""]]], ["ClientPayload.InteropData", [["accountId", 9, -1, 4, ""], ["token", 4, -1, 4, ""], ["enableReadReceipts", 3, -1, 4, ""]]], ["ClientPayload.UserAgent", [["platform", 1, 53, 4, ""], ["appVersion", 0, 103, 4, ""], ["mcc", 2, -1, 4, ""], ["mnc", 2, -1, 4, ""], ["osVersion", 2, -1, 4, ""], ["manufacturer", 2, -1, 4, ""], ["device", 2, -1, 4, ""], ["osBuildNumber", 2, -1, 4, ""], ["phoneId", 2, -1, 4, ""], ["releaseChannel", 1, 54, 4, ""], ["localeLanguageIso6391", 2, -1, 4, ""], ["localeCountryIso31661Alpha2", 2, -1, 4, ""], ["deviceBoard", 2, -1, 4, ""], ["deviceExpId", 2, -1, 4, ""], ["deviceType", 1, 52, 4, ""], ["deviceModelType", 2, -1, 4, ""]]], ["ClientPayload.UserAgent.AppVersion", [["primary", 7, -1, 4, ""], ["secondary", 7, -1, 4, ""], ["tertiary", 7, -1, 4, ""], ["quaternary", 7, -1, 4, ""], ["quinary", 7, -1, 4, ""]]], ["ClientPayload.WebInfo", [["refToken", 2, -1, 4, ""], ["version", 2, -1, 4, ""], ["webdPayload", 0, 105, 4, ""], ["webSubPlatform", 1, 55, 4, ""]]], ["ClientPayload.WebInfo.WebdPayload", [["usesParticipantInKey", 3, -1, 4, ""], ["supportsStarredMessages", 3, -1, 4, ""], ["supportsDocumentMessages", 3, -1, 4, ""], ["supportsUrlMessages", 3, -1, 4, ""], ["supportsMediaRetry", 3, -1, 4, ""], ["supportsE2EImage", 3, -1, 4, ""], ["supportsE2EVideo", 3, -1, 4, ""], ["supportsE2EAudio", 3, -1, 4, ""], ["supportsE2EDocument", 3, -1, 4, ""], ["documentTypes", 2, -1, 4, ""], ["features", 4, -1, 4, ""]]], ["CommentMetadata", [["commentParentKey", 0, 330, 4, ""], ["replyCount", 7, -1, 4, ""]]], ["CompanionCommitment", [["hash", 4, -1, 4, ""]]], ["CompanionEphemeralIdentity", [["publicKey", 4, -1, 4, ""], ["deviceType", 1, 71, 4, ""], ["ref", 2, -1, 4, ""]]], ["Config", [["field", 0, 141, 2, ""], ["version", 7, -1, 4, ""]]], ["ContextInfo", [["stanzaId", 2, -1, 4, ""], ["participant", 2, -1, 4, ""], ["quotedMessage", 0, 179, 4, ""], ["remoteJid", 2, -1, 4, ""], ["mentionedJid", 2, -1, 1, ""], ["conversionSource", 2, -1, 4, ""], ["conversionData", 4, -1, 4, ""], ["conversionDelaySeconds", 7, -1, 4, ""], ["forwardingScore", 7, -1, 4, ""], ["isForwarded", 3, -1, 4, ""], ["quotedAd", 0, 111, 4, ""], ["placeholderKey", 0, 330, 4, ""], ["expiration", 7, -1, 4, ""], ["ephemeralSettingTimestamp", 8, -1, 4, ""], ["ephemeralSharedSecret", 4, -1, 4, ""], ["externalAdReply", 0, 115, 4, ""], ["entryPointConversionSource", 2, -1, 4, ""], ["entryPointConversionApp", 2, -1, 4, ""], ["entryPointConversionDelaySeconds", 7, -1, 4, ""], ["disappearingMode", 0, 131, 4, ""], ["actionLink", 0, 1, 4, ""], ["groupSubject", 2, -1, 4, ""], ["parentGroupJid", 2, -1, 4, ""], ["trustBannerType", 2, -1, 4, ""], ["trustBannerAction", 7, -1, 4, ""], ["isSampled", 3, -1, 4, ""], ["groupMentions", 0, 146, 1, ""], ["utm", 0, 120, 4, ""], ["forwardedNewsletterMessageInfo", 0, 117, 4, ""], ["businessMessageForwardInfo", 0, 112, 4, ""], ["smbClientCampaignId", 2, -1, 4, ""], ["smbServerCampaignId", 2, -1, 4, ""], ["dataSharingContext", 0, 113, 4, ""], ["alwaysShowAdAttribution", 3, -1, 4, ""], ["featureEligibilities", 0, 116, 4, ""], ["entryPointConversionExternalSource", 2, -1, 4, ""], ["entryPointConversionExternalMedium", 2, -1, 4, ""], ["ctwaSignals", 2, -1, 4, ""], ["ctwaPayload", 4, -1, 4, ""], ["forwardedAiBotMessageInfo", 0, 142, 4, ""], ["statusAttributionType", 1, 65, 4, ""], ["urlTrackingMap", 0, 486, 4, ""], ["pairedMediaType", 1, 63, 4, ""], ["rankingVersion", 7, -1, 4, ""], ["memberLabel", 0, 178, 4, ""], ["isQuestion", 3, -1, 4, ""], ["statusSourceType", 1, 67, 4, ""], ["statusAttributions", 0, 387, 1, ""], ["isGroupStatus", 3, -1, 4, ""], ["forwardOrigin", 1, 62, 4, ""], ["questionReplyQuotedMessage", 0, 118, 4, ""], ["statusAudienceMetadata", 0, 119, 4, ""], ["nonJidMentions", 7, -1, 4, ""], ["quotedType", 1, 64, 4, ""], ["botMessageSharingInfo", 0, 58, 4, ""]]], ["ContextInfo.AdReplyInfo", [["advertiserName", 2, -1, 4, ""], ["mediaType", 1, 57, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["caption", 2, -1, 4, ""]]], ["ContextInfo.BusinessMessageForwardInfo", [["businessOwnerJid", 2, -1, 4, ""]]], ["ContextInfo.DataSharingContext", [["showMmDisclosure", 3, -1, 4, ""], ["encryptedSignalTokenConsented", 2, -1, 4, ""], ["parameters", 0, 114, 1, ""], ["dataSharingFlags", 6, -1, 4, ""]]], ["ContextInfo.DataSharingContext.Parameters", [["key", 2, -1, 4, ""], ["stringData", 2, -1, 4, ""], ["intData", 8, -1, 4, ""], ["floatData", 5, -1, 4, ""], ["contents", 0, 114, 4, ""]]], ["ContextInfo.ExternalAdReplyInfo", [["title", 2, -1, 4, ""], ["body", 2, -1, 4, ""], ["mediaType", 1, 60, 4, ""], ["thumbnailUrl", 2, -1, 4, ""], ["mediaUrl", 2, -1, 4, ""], ["thumbnail", 4, -1, 4, ""], ["sourceType", 2, -1, 4, ""], ["sourceId", 2, -1, 4, ""], ["sourceUrl", 2, -1, 4, ""], ["containsAutoReply", 3, -1, 4, ""], ["renderLargerThumbnail", 3, -1, 4, ""], ["showAdAttribution", 3, -1, 4, ""], ["ctwaClid", 2, -1, 4, ""], ["ref", 2, -1, 4, ""], ["clickToWhatsappCall", 3, -1, 4, ""], ["adContextPreviewDismissed", 3, -1, 4, ""], ["sourceApp", 2, -1, 4, ""], ["automatedGreetingMessageShown", 3, -1, 4, ""], ["greetingMessageBody", 2, -1, 4, ""], ["ctaPayload", 2, -1, 4, ""], ["disableNudge", 3, -1, 4, ""], ["originalImageUrl", 2, -1, 4, ""], ["automatedGreetingMessageCtaType", 2, -1, 4, ""], ["wtwaAdFormat", 3, -1, 4, ""], ["adType", 1, 59, 4, ""], ["wtwaWebsiteUrl", 2, -1, 4, ""], ["adPreviewUrl", 2, -1, 4, ""]]], ["ContextInfo.FeatureEligibilities", [["cannotBeReactedTo", 3, -1, 4, ""], ["cannotBeRanked", 3, -1, 4, ""], ["canRequestFeedback", 3, -1, 4, ""], ["canBeReshared", 3, -1, 4, ""], ["canReceiveMultiReact", 3, -1, 4, ""]]], ["ContextInfo.ForwardedNewsletterMessageInfo", [["newsletterJid", 2, -1, 4, ""], ["serverMessageId", 6, -1, 4, ""], ["newsletterName", 2, -1, 4, ""], ["contentType", 1, 61, 4, ""], ["accessibilityText", 2, -1, 4, ""]]], ["ContextInfo.QuestionReplyQuotedMessage", [["serverQuestionId", 6, -1, 4, ""], ["quotedQuestion", 0, 179, 4, ""], ["quotedResponse", 0, 179, 4, ""]]], ["ContextInfo.StatusAudienceMetadata", [["audienceType", 1, 66, 4, ""]]], ["ContextInfo.UTMInfo", [["utmSource", 2, -1, 4, ""], ["utmCampaign", 2, -1, 4, ""]]], ["Conversation", [["id", 2, -1, 0, ""], ["messages", 0, 153, 1, ""], ["newJid", 2, -1, 4, ""], ["oldJid", 2, -1, 4, ""], ["lastMsgTimestamp", 9, -1, 4, ""], ["unreadCount", 7, -1, 4, ""], ["readOnly", 3, -1, 4, ""], ["endOfHistoryTransfer", 3, -1, 4, ""], ["ephemeralExpiration", 7, -1, 4, ""], ["ephemeralSettingTimestamp", 8, -1, 4, ""], ["endOfHistoryTransferType", 1, 68, 4, ""], ["conversationTimestamp", 9, -1, 4, ""], ["name", 2, -1, 4, ""], ["pHash", 2, -1, 4, ""], ["notSpam", 3, -1, 4, ""], ["archived", 3, -1, 4, ""], ["disappearingMode", 0, 131, 4, ""], ["unreadMentionCount", 7, -1, 4, ""], ["markedAsUnread", 3, -1, 4, ""], ["participant", 0, 147, 1, ""], ["tcToken", 4, -1, 4, ""], ["tcTokenTimestamp", 9, -1, 4, ""], ["contactPrimaryIdentityKey", 4, -1, 4, ""], ["pinned", 7, -1, 4, ""], ["muteEndTime", 9, -1, 4, ""], ["wallpaper", 0, 494, 4, ""], ["mediaVisibility", 1, 83, 4, ""], ["tcTokenSenderTimestamp", 9, -1, 4, ""], ["suspended", 3, -1, 4, ""], ["terminated", 3, -1, 4, ""], ["createdAt", 9, -1, 4, ""], ["createdBy", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["support", 3, -1, 4, ""], ["isParentGroup", 3, -1, 4, ""], ["parentGroupId", 2, -1, 4, ""], ["isDefaultSubgroup", 3, -1, 4, ""], ["displayName", 2, -1, 4, ""], ["pnJid", 2, -1, 4, ""], ["shareOwnPn", 3, -1, 4, ""], ["pnhDuplicateLidThread", 3, -1, 4, ""], ["lidJid", 2, -1, 4, ""], ["username", 2, -1, 4, ""], ["lidOriginType", 2, -1, 4, ""], ["commentsCount", 7, -1, 4, ""], ["locked", 3, -1, 4, ""], ["systemMessageToInsert", 1, 144, 4, ""], ["capiCreatedGroup", 3, -1, 4, ""], ["accountLid", 2, -1, 4, ""], ["limitSharing", 3, -1, 4, ""], ["limitSharingSettingTimestamp", 8, -1, 4, ""], ["limitSharingTrigger", 1, 81, 4, ""], ["limitSharingInitiatedByMe", 3, -1, 4, ""], ["maibaAiThreadEnabled", 3, -1, 4, ""]]], ["DeviceCapabilities", [["chatLockSupportLevel", 1, 69, 4, ""], ["lidMigration", 0, 124, 4, ""], ["businessBroadcast", 0, 123, 4, ""], ["userHasAvatar", 0, 125, 4, ""], ["memberNameTagPrimarySupport", 1, 70, 4, ""]]], ["DeviceCapabilities.BusinessBroadcast", [["importListEnabled", 3, -1, 4, ""]]], ["DeviceCapabilities.LIDMigration", [["chatDbMigrationTimestamp", 9, -1, 4, ""]]], ["DeviceCapabilities.UserHasAvatar", [["userHasAvatar", 3, -1, 4, ""]]], ["DeviceConsistencyCodeMessage", [["generation", 7, -1, 4, ""], ["signature", 4, -1, 4, ""]]], ["DeviceListMetadata", [["senderKeyHash", 4, -1, 4, ""], ["senderTimestamp", 9, -1, 4, ""], ["senderKeyIndexes", 7, -1, 1, ""], ["senderAccountType", 1, 0, 4, ""], ["receiverAccountType", 1, 0, 4, ""], ["recipientKeyHash", 4, -1, 4, ""], ["recipientTimestamp", 9, -1, 4, ""], ["recipientKeyIndexes", 7, -1, 1, ""]]], ["DeviceProps", [["os", 2, -1, 4, ""], ["version", 0, 129, 4, ""], ["platformType", 1, 71, 4, ""], ["requireFullSync", 3, -1, 4, ""], ["historySyncConfig", 0, 130, 4, ""]]], ["DeviceProps.AppVersion", [["primary", 7, -1, 4, ""], ["secondary", 7, -1, 4, ""], ["tertiary", 7, -1, 4, ""], ["quaternary", 7, -1, 4, ""], ["quinary", 7, -1, 4, ""]]], ["DeviceProps.HistorySyncConfig", [["fullSyncDaysLimit", 7, -1, 4, ""], ["fullSyncSizeMbLimit", 7, -1, 4, ""], ["storageQuotaMb", 7, -1, 4, ""], ["inlineInitialPayloadInE2EeMsg", 3, -1, 4, ""], ["recentSyncDaysLimit", 7, -1, 4, ""], ["supportCallLogHistory", 3, -1, 4, ""], ["supportBotUserAgentChatHistory", 3, -1, 4, ""], ["supportCagReactionsAndPolls", 3, -1, 4, ""], ["supportBizHostedMsg", 3, -1, 4, ""], ["supportRecentSyncChunkMessageCountTuning", 3, -1, 4, ""], ["supportHostedGroupMsg", 3, -1, 4, ""], ["supportFbidBotChatHistory", 3, -1, 4, ""], ["supportAddOnHistorySyncMigration", 3, -1, 4, ""], ["supportMessageAssociation", 3, -1, 4, ""], ["supportGroupHistory", 3, -1, 4, ""], ["onDemandReady", 3, -1, 4, ""], ["supportGuestChat", 3, -1, 4, ""], ["completeOnDemandReady", 3, -1, 4, ""], ["thumbnailSyncDaysLimit", 7, -1, 4, ""]]], ["DisappearingMode", [["initiator", 1, 72, 4, ""], ["trigger", 1, 73, 4, ""], ["initiatorDeviceJid", 2, -1, 4, ""], ["initiatedByMe", 3, -1, 4, ""]]], ["EmbeddedContent", [["embeddedMessage", 0, 133, 8, "content"], ["embeddedMusic", 0, 134, 8, "content"]]], ["EmbeddedMessage", [["stanzaId", 2, -1, 4, ""], ["message", 0, 179, 4, ""]]], ["EmbeddedMusic", [["musicContentMediaId", 2, -1, 4, ""], ["songId", 2, -1, 4, ""], ["author", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["artworkDirectPath", 2, -1, 4, ""], ["artworkSha256", 4, -1, 4, ""], ["artworkEncSha256", 4, -1, 4, ""], ["artistAttribution", 2, -1, 4, ""], ["countryBlocklist", 4, -1, 4, ""], ["isExplicit", 3, -1, 4, ""], ["artworkMediaKey", 4, -1, 4, ""], ["musicSongStartTimeInMs", 8, -1, 4, ""], ["derivedContentStartTimeInMs", 8, -1, 4, ""], ["overlapDurationInMs", 8, -1, 4, ""]]], ["EncryptedPairingRequest", [["encryptedPayload", 4, -1, 4, ""], ["iv", 4, -1, 4, ""]]], ["EphemeralSetting", [["duration", 6, -1, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["EventAdditionalMetadata", [["isStale", 3, -1, 4, ""]]], ["EventResponse", [["eventResponseMessageKey", 0, 330, 4, ""], ["timestampMs", 8, -1, 4, ""], ["eventResponseMessage", 0, 212, 4, ""], ["unread", 3, -1, 4, ""]]], ["ExitCode", [["code", 9, -1, 4, ""], ["text", 2, -1, 4, ""]]], ["ExternalBlobReference", [["mediaKey", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["handle", 2, -1, 4, ""], ["fileSizeBytes", 9, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""]]], ["Field", [["minVersion", 7, -1, 4, ""], ["maxVersion", 7, -1, 4, ""], ["notReportableMinVersion", 7, -1, 4, ""], ["isMessage", 3, -1, 4, ""], ["subfield", 0, 141, 2, ""]]], ["ForwardedAIBotMessageInfo", [["botName", 2, -1, 4, ""], ["botJid", 2, -1, 4, ""], ["creatorName", 2, -1, 4, ""]]], ["GlobalSettings", [["lightThemeWallpaper", 0, 494, 4, ""], ["mediaVisibility", 1, 83, 4, ""], ["darkThemeWallpaper", 0, 494, 4, ""], ["autoDownloadWiFi", 0, 32, 4, ""], ["autoDownloadCellular", 0, 32, 4, ""], ["autoDownloadRoaming", 0, 32, 4, ""], ["showIndividualNotificationsPreview", 3, -1, 4, ""], ["showGroupNotificationsPreview", 3, -1, 4, ""], ["disappearingModeDuration", 6, -1, 4, ""], ["disappearingModeTimestamp", 8, -1, 4, ""], ["avatarUserSettings", 0, 33, 4, ""], ["fontSize", 6, -1, 4, ""], ["securityNotifications", 3, -1, 4, ""], ["autoUnarchiveChats", 3, -1, 4, ""], ["videoQualityMode", 6, -1, 4, ""], ["photoQualityMode", 6, -1, 4, ""], ["individualNotificationSettings", 0, 342, 4, ""], ["groupNotificationSettings", 0, 342, 4, ""], ["chatLockSettings", 0, 91, 4, ""], ["chatDbLidMigrationTimestamp", 8, -1, 4, ""]]], ["GroupHistoryBundleInfo", [["deprecatedMessageHistoryBundle", 0, 253, 4, ""], ["processState", 1, 74, 4, ""]]], ["GroupHistoryIndividualMessageInfo", [["bundleMessageKey", 0, 330, 4, ""], ["editedAfterReceivedAsHistory", 3, -1, 4, ""]]], ["GroupMention", [["groupJid", 2, -1, 4, ""], ["groupSubject", 2, -1, 4, ""]]], ["GroupParticipant", [["userJid", 2, -1, 0, ""], ["rank", 1, 75, 4, ""], ["memberLabel", 0, 178, 4, ""]]], ["HandshakeMessage", [["clientHello", 0, 150, 4, ""], ["serverHello", 0, 151, 4, ""], ["clientFinish", 0, 149, 4, ""]]], ["HandshakeMessage.ClientFinish", [["static", 4, -1, 4, ""], ["payload", 4, -1, 4, ""], ["extendedCiphertext", 4, -1, 4, ""]]], ["HandshakeMessage.ClientHello", [["ephemeral", 4, -1, 4, ""], ["static", 4, -1, 4, ""], ["payload", 4, -1, 4, ""], ["useExtended", 3, -1, 4, ""], ["extendedCiphertext", 4, -1, 4, ""]]], ["HandshakeMessage.ServerHello", [["ephemeral", 4, -1, 4, ""], ["static", 4, -1, 4, ""], ["payload", 4, -1, 4, ""], ["extendedStatic", 4, -1, 4, ""]]], ["HistorySync", [["syncType", 1, 77, 0, ""], ["conversations", 0, 121, 1, ""], ["statusV3Messages", 0, 496, 1, ""], ["chunkOrder", 7, -1, 4, ""], ["progress", 7, -1, 4, ""], ["pushnames", 0, 363, 1, ""], ["globalSettings", 0, 143, 4, ""], ["threadIdUserSecret", 4, -1, 4, ""], ["threadDsTimeframeOffset", 7, -1, 4, ""], ["recentStickers", 0, 397, 1, ""], ["pastParticipants", 0, 345, 1, ""], ["callLogRecords", 0, 86, 1, ""], ["aiWaitListState", 1, 76, 4, ""], ["phoneNumberToLidMappings", 0, 350, 1, ""], ["companionMetaNonce", 2, -1, 4, ""], ["shareableChatIdentifierEncryptionKey", 4, -1, 4, ""], ["accounts", 0, 0, 1, ""]]], ["HistorySyncMsg", [["message", 0, 496, 4, ""], ["msgOrderId", 9, -1, 4, ""]]], ["HydratedTemplateButton", [["index", 7, -1, 4, ""], ["quickReplyButton", 0, 156, 8, "hydratedButton"], ["urlButton", 0, 157, 8, "hydratedButton"], ["callButton", 0, 155, 8, "hydratedButton"]]], ["HydratedTemplateButton.HydratedCallButton", [["displayText", 2, -1, 4, ""], ["phoneNumber", 2, -1, 4, ""]]], ["HydratedTemplateButton.HydratedQuickReplyButton", [["displayText", 2, -1, 4, ""], ["id", 2, -1, 4, ""]]], ["HydratedTemplateButton.HydratedURLButton", [["displayText", 2, -1, 4, ""], ["url", 2, -1, 4, ""], ["consentedUsersUrl", 2, -1, 4, ""], ["webviewPresentation", 1, 78, 4, ""]]], ["IdentityKeyPairStructure", [["publicKey", 4, -1, 4, ""], ["privateKey", 4, -1, 4, ""]]], ["InteractiveAnnotation", [["polygonVertices", 0, 353, 1, ""], ["shouldSkipConfirmation", 3, -1, 4, ""], ["embeddedContent", 0, 132, 4, ""], ["statusLinkType", 1, 79, 4, ""], ["location", 0, 174, 8, "action"], ["newsletter", 0, 117, 8, "action"], ["embeddedAction", 3, -1, 8, "action"], ["tapAction", 0, 480, 8, "action"]]], ["InteractiveMessageAdditionalMetadata", [["isGalaxyFlowCompleted", 3, -1, 4, ""]]], ["InThreadSurveyMetadata", [["tessaSessionId", 2, -1, 4, ""], ["simonSessionId", 2, -1, 4, ""], ["simonSurveyId", 2, -1, 4, ""], ["tessaRootId", 2, -1, 4, ""], ["requestId", 2, -1, 4, ""], ["tessaEvent", 2, -1, 4, ""], ["invitationHeaderText", 2, -1, 4, ""], ["invitationBodyText", 2, -1, 4, ""], ["invitationCtaText", 2, -1, 4, ""], ["invitationCtaUrl", 2, -1, 4, ""], ["surveyTitle", 2, -1, 4, ""], ["questions", 0, 164, 1, ""], ["surveyContinueButtonText", 2, -1, 4, ""], ["surveySubmitButtonText", 2, -1, 4, ""], ["privacyStatementFull", 2, -1, 4, ""], ["privacyStatementParts", 0, 163, 1, ""], ["feedbackToastText", 2, -1, 4, ""]]], ["InThreadSurveyMetadata.InThreadSurveyOption", [["stringValue", 2, -1, 4, ""], ["numericValue", 7, -1, 4, ""], ["textTranslated", 2, -1, 4, ""]]], ["InThreadSurveyMetadata.InThreadSurveyPrivacyStatementPart", [["text", 2, -1, 4, ""], ["url", 2, -1, 4, ""]]], ["InThreadSurveyMetadata.InThreadSurveyQuestion", [["questionText", 2, -1, 4, ""], ["questionId", 2, -1, 4, ""], ["questionOptions", 0, 162, 1, ""]]], ["KeepInChat", [["keepType", 1, 80, 4, ""], ["serverTimestamp", 8, -1, 4, ""], ["key", 0, 330, 4, ""], ["deviceJid", 2, -1, 4, ""], ["clientTimestampMs", 8, -1, 4, ""], ["serverTimestampMs", 8, -1, 4, ""]]], ["KeyExchangeMessage", [["id", 7, -1, 4, ""], ["baseKey", 4, -1, 4, ""], ["ratchetKey", 4, -1, 4, ""], ["identityKey", 4, -1, 4, ""], ["baseKeySignature", 4, -1, 4, ""]]], ["KeyId", [["id", 4, -1, 4, ""]]], ["LegacyMessage", [["eventResponseMessage", 0, 212, 4, ""], ["pollVote", 0, 296, 4, ""]]], ["LIDMigrationMapping", [["pn", 9, -1, 0, ""], ["assignedLid", 9, -1, 0, ""], ["latestLid", 9, -1, 4, ""]]], ["LIDMigrationMappingSyncMessage", [["encodedMappingPayload", 4, -1, 4, ""]]], ["LIDMigrationMappingSyncPayload", [["pnToLidMappings", 0, 169, 1, ""], ["chatDbMigrationTimestamp", 9, -1, 4, ""]]], ["LimitSharing", [["sharingLimited", 3, -1, 4, ""], ["trigger", 1, 81, 4, ""], ["limitSharingSettingTimestamp", 8, -1, 4, ""], ["initiatedByMe", 3, -1, 4, ""]]], ["LocalizedName", [["lg", 2, -1, 4, ""], ["lc", 2, -1, 4, ""], ["verifiedName", 2, -1, 4, ""]]], ["Location", [["degreesLatitude", 5, -1, 4, ""], ["degreesLongitude", 5, -1, 4, ""], ["name", 2, -1, 4, ""]]], ["MediaData", [["localPath", 2, -1, 4, ""]]], ["MediaNotifyMessage", [["expressPathUrl", 2, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""]]], ["MediaRetryNotification", [["stanzaId", 2, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["result", 1, 82, 4, ""], ["messageSecret", 4, -1, 4, ""]]], ["MemberLabel", [["label", 2, -1, 4, ""], ["labelTimestamp", 8, -1, 4, ""]]], ["Message", [["conversation", 2, -1, 4, ""], ["senderKeyDistributionMessage", 0, 309, 4, ""], ["imageMessage", 0, 225, 4, ""], ["contactMessage", 0, 203, 4, ""], ["locationMessage", 0, 252, 4, ""], ["extendedTextMessage", 0, 213, 4, ""], ["documentMessage", 0, 207, 4, ""], ["audioMessage", 0, 188, 4, ""], ["videoMessage", 0, 325, 4, ""], ["call", 0, 195, 4, ""], ["chat", 0, 199, 4, ""], ["protocolMessage", 0, 300, 4, ""], ["contactsArrayMessage", 0, 204, 4, ""], ["highlyStructuredMessage", 0, 217, 4, ""], ["fastRatchetKeySenderKeyDistributionMessage", 0, 309, 4, ""], ["sendPaymentMessage", 0, 310, 4, ""], ["liveLocationMessage", 0, 251, 4, ""], ["requestPaymentMessage", 0, 303, 4, ""], ["declinePaymentRequestMessage", 0, 205, 4, ""], ["cancelPaymentRequestMessage", 0, 198, 4, ""], ["templateMessage", 0, 320, 4, ""], ["stickerMessage", 0, 315, 4, ""], ["groupInviteMessage", 0, 216, 4, ""], ["templateButtonReplyMessage", 0, 319, 4, ""], ["productMessage", 0, 297, 4, ""], ["deviceSentMessage", 0, 206, 4, ""], ["messageContextInfo", 0, 329, 4, ""], ["listMessage", 0, 242, 4, ""], ["viewOnceMessage", 0, 215, 4, ""], ["orderMessage", 0, 259, 4, ""], ["listResponseMessage", 0, 249, 4, ""], ["ephemeralMessage", 0, 215, 4, ""], ["invoiceMessage", 0, 239, 4, ""], ["buttonsMessage", 0, 190, 4, ""], ["buttonsResponseMessage", 0, 194, 4, ""], ["paymentInviteMessage", 0, 261, 4, ""], ["interactiveMessage", 0, 227, 4, ""], ["reactionMessage", 0, 302, 4, ""], ["stickerSyncRmrMessage", 0, 318, 4, ""], ["interactiveResponseMessage", 0, 236, 4, ""], ["pollCreationMessage", 0, 289, 4, ""], ["pollUpdateMessage", 0, 294, 4, ""], ["keepInChatMessage", 0, 240, 4, ""], ["documentWithCaptionMessage", 0, 215, 4, ""], ["requestPhoneNumberMessage", 0, 304, 4, ""], ["viewOnceMessageV2", 0, 215, 4, ""], ["encReactionMessage", 0, 210, 4, ""], ["editedMessage", 0, 215, 4, ""], ["viewOnceMessageV2Extension", 0, 215, 4, ""], ["pollCreationMessageV2", 0, 289, 4, ""], ["scheduledCallCreationMessage", 0, 306, 4, ""], ["groupMentionedMessage", 0, 215, 4, ""], ["pinInChatMessage", 0, 287, 4, ""], ["pollCreationMessageV3", 0, 289, 4, ""], ["scheduledCallEditMessage", 0, 307, 4, ""], ["ptvMessage", 0, 325, 4, ""], ["botInvokeMessage", 0, 215, 4, ""], ["callLogMesssage", 0, 196, 4, ""], ["messageHistoryBundle", 0, 253, 4, ""], ["encCommentMessage", 0, 208, 4, ""], ["bcallMessage", 0, 189, 4, ""], ["lottieStickerMessage", 0, 215, 4, ""], ["eventMessage", 0, 211, 4, ""], ["encEventResponseMessage", 0, 209, 4, ""], ["commentMessage", 0, 202, 4, ""], ["newsletterAdminInviteMessage", 0, 257, 4, ""], ["placeholderMessage", 0, 288, 4, ""], ["secretEncryptedMessage", 0, 308, 4, ""], ["albumMessage", 0, 180, 4, ""], ["eventCoverImage", 0, 215, 4, ""], ["stickerPackMessage", 0, 316, 4, ""], ["statusMentionMessage", 0, 215, 4, ""], ["pollResultSnapshotMessage", 0, 292, 4, ""], ["pollCreationOptionImageMessage", 0, 215, 4, ""], ["associatedChildMessage", 0, 215, 4, ""], ["groupStatusMentionMessage", 0, 215, 4, ""], ["pollCreationMessageV4", 0, 215, 4, ""], ["statusAddYours", 0, 215, 4, ""], ["groupStatusMessage", 0, 215, 4, ""], ["richResponseMessage", 0, 24, 4, ""], ["statusNotificationMessage", 0, 311, 4, ""], ["limitSharingMessage", 0, 215, 4, ""], ["botTaskMessage", 0, 215, 4, ""], ["questionMessage", 0, 215, 4, ""], ["messageHistoryNotice", 0, 255, 4, ""], ["groupStatusMessageV2", 0, 215, 4, ""], ["botForwardedMessage", 0, 215, 4, ""], ["statusQuestionAnswerMessage", 0, 312, 4, ""], ["questionReplyMessage", 0, 215, 4, ""], ["questionResponseMessage", 0, 301, 4, ""], ["statusQuotedMessage", 0, 313, 4, ""], ["statusStickerInteractionMessage", 0, 314, 4, ""], ["pollCreationMessageV5", 0, 289, 4, ""], ["newsletterFollowerInviteMessageV2", 0, 258, 4, ""], ["pollResultSnapshotMessageV3", 0, 292, 4, ""]]], ["Message.AlbumMessage", [["expectedImageCount", 7, -1, 4, ""], ["expectedVideoCount", 7, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.AppStateFatalExceptionNotification", [["collectionNames", 2, -1, 1, ""], ["timestamp", 8, -1, 4, ""]]], ["Message.AppStateSyncKey", [["keyId", 0, 185, 4, ""], ["keyData", 0, 183, 4, ""]]], ["Message.AppStateSyncKeyData", [["keyData", 4, -1, 4, ""], ["fingerprint", 0, 184, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["Message.AppStateSyncKeyFingerprint", [["rawId", 7, -1, 4, ""], ["currentIndex", 7, -1, 4, ""], ["deviceIndexes", 7, -1, 1, ""]]], ["Message.AppStateSyncKeyId", [["keyId", 4, -1, 4, ""]]], ["Message.AppStateSyncKeyRequest", [["keyIds", 0, 185, 1, ""]]], ["Message.AppStateSyncKeyShare", [["keys", 0, 182, 1, ""]]], ["Message.AudioMessage", [["url", 2, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["seconds", 7, -1, 4, ""], ["ptt", 3, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["streamingSidecar", 4, -1, 4, ""], ["waveform", 4, -1, 4, ""], ["backgroundArgb", 7, -1, 4, ""], ["viewOnce", 3, -1, 4, ""], ["accessibilityLabel", 2, -1, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""]]], ["Message.BCallMessage", [["sessionId", 2, -1, 4, ""], ["mediaType", 1, 84, 4, ""], ["masterKey", 4, -1, 4, ""], ["caption", 2, -1, 4, ""]]], ["Message.ButtonsMessage", [["contentText", 2, -1, 4, ""], ["footerText", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["buttons", 0, 191, 1, ""], ["headerType", 1, 86, 4, ""], ["text", 2, -1, 8, "header"], ["documentMessage", 0, 207, 8, "header"], ["imageMessage", 0, 225, 8, "header"], ["videoMessage", 0, 325, 8, "header"], ["locationMessage", 0, 252, 8, "header"]]], ["Message.ButtonsMessage.Button", [["buttonId", 2, -1, 4, ""], ["buttonText", 0, 192, 4, ""], ["type", 1, 85, 4, ""], ["nativeFlowInfo", 0, 193, 4, ""]]], ["Message.ButtonsMessage.Button.ButtonText", [["displayText", 2, -1, 4, ""]]], ["Message.ButtonsMessage.Button.NativeFlowInfo", [["name", 2, -1, 4, ""], ["paramsJson", 2, -1, 4, ""]]], ["Message.ButtonsResponseMessage", [["selectedButtonId", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["type", 1, 87, 4, ""], ["selectedDisplayText", 2, -1, 8, "response"]]], ["Message.Call", [["callKey", 4, -1, 4, ""], ["conversionSource", 2, -1, 4, ""], ["conversionData", 4, -1, 4, ""], ["conversionDelaySeconds", 7, -1, 4, ""], ["ctwaSignals", 2, -1, 4, ""], ["ctwaPayload", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["nativeFlowCallButtonPayload", 2, -1, 4, ""], ["deeplinkPayload", 2, -1, 4, ""]]], ["Message.CallLogMessage", [["isVideo", 3, -1, 4, ""], ["callOutcome", 1, 88, 4, ""], ["durationSecs", 8, -1, 4, ""], ["callType", 1, 89, 4, ""], ["participants", 0, 197, 1, ""]]], ["Message.CallLogMessage.CallParticipant", [["jid", 2, -1, 4, ""], ["callOutcome", 1, 88, 4, ""]]], ["Message.CancelPaymentRequestMessage", [["key", 0, 330, 4, ""]]], ["Message.Chat", [["displayName", 2, -1, 4, ""], ["id", 2, -1, 4, ""]]], ["Message.CloudAPIThreadControlNotification", [["status", 1, 90, 4, ""], ["senderNotificationTimestampMs", 8, -1, 4, ""], ["consumerLid", 2, -1, 4, ""], ["consumerPhoneNumber", 2, -1, 4, ""], ["notificationContent", 0, 201, 4, ""], ["shouldSuppressNotification", 3, -1, 4, ""]]], ["Message.CloudAPIThreadControlNotification.CloudAPIThreadControlNotificationContent", [["handoffNotificationText", 2, -1, 4, ""], ["extraJson", 2, -1, 4, ""]]], ["Message.CommentMessage", [["message", 0, 179, 4, ""], ["targetMessageKey", 0, 330, 4, ""]]], ["Message.ContactMessage", [["displayName", 2, -1, 4, ""], ["vcard", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.ContactsArrayMessage", [["displayName", 2, -1, 4, ""], ["contacts", 0, 203, 1, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.DeclinePaymentRequestMessage", [["key", 0, 330, 4, ""]]], ["Message.DeviceSentMessage", [["destinationJid", 2, -1, 4, ""], ["message", 0, 179, 4, ""], ["phash", 2, -1, 4, ""]]], ["Message.DocumentMessage", [["url", 2, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["pageCount", 7, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["fileName", 2, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["contactVcard", 3, -1, 4, ""], ["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["thumbnailHeight", 7, -1, 4, ""], ["thumbnailWidth", 7, -1, 4, ""], ["caption", 2, -1, 4, ""], ["accessibilityLabel", 2, -1, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""]]], ["Message.EncCommentMessage", [["targetMessageKey", 0, 330, 4, ""], ["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""]]], ["Message.EncEventResponseMessage", [["eventCreationMessageKey", 0, 330, 4, ""], ["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""]]], ["Message.EncReactionMessage", [["targetMessageKey", 0, 330, 4, ""], ["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""]]], ["Message.EventMessage", [["contextInfo", 0, 110, 4, ""], ["isCanceled", 3, -1, 4, ""], ["name", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["location", 0, 252, 4, ""], ["joinLink", 2, -1, 4, ""], ["startTime", 8, -1, 4, ""], ["endTime", 8, -1, 4, ""], ["extraGuestsAllowed", 3, -1, 4, ""], ["isScheduleCall", 3, -1, 4, ""], ["hasReminder", 3, -1, 4, ""], ["reminderOffsetSec", 8, -1, 4, ""]]], ["Message.EventResponseMessage", [["response", 1, 91, 4, ""], ["timestampMs", 8, -1, 4, ""], ["extraGuestCount", 6, -1, 4, ""]]], ["Message.ExtendedTextMessage", [["text", 2, -1, 4, ""], ["matchedText", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["textArgb", 7, -1, 4, ""], ["backgroundArgb", 7, -1, 4, ""], ["font", 1, 92, 4, ""], ["previewType", 1, 94, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["doNotPlayInline", 3, -1, 4, ""], ["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["thumbnailHeight", 7, -1, 4, ""], ["thumbnailWidth", 7, -1, 4, ""], ["inviteLinkGroupType", 1, 93, 4, ""], ["inviteLinkParentGroupSubjectV2", 2, -1, 4, ""], ["inviteLinkParentGroupThumbnailV2", 4, -1, 4, ""], ["inviteLinkGroupTypeV2", 1, 93, 4, ""], ["viewOnce", 3, -1, 4, ""], ["videoHeight", 7, -1, 4, ""], ["videoWidth", 7, -1, 4, ""], ["faviconMMSMetadata", 0, 256, 4, ""], ["linkPreviewMetadata", 0, 241, 4, ""], ["paymentLinkMetadata", 0, 262, 4, ""], ["endCardTiles", 0, 324, 1, ""], ["videoContentUrl", 2, -1, 4, ""], ["musicMetadata", 0, 134, 4, ""], ["paymentExtendedMetadata", 0, 260, 4, ""]]], ["Message.FullHistorySyncOnDemandRequestMetadata", [["requestId", 2, -1, 4, ""]]], ["Message.FutureProofMessage", [["message", 0, 179, 4, ""]]], ["Message.GroupInviteMessage", [["groupJid", 2, -1, 4, ""], ["inviteCode", 2, -1, 4, ""], ["inviteExpiration", 8, -1, 4, ""], ["groupName", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["caption", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["groupType", 1, 95, 4, ""]]], ["Message.HighlyStructuredMessage", [["namespace", 2, -1, 4, ""], ["elementName", 2, -1, 4, ""], ["params", 2, -1, 1, ""], ["fallbackLg", 2, -1, 4, ""], ["fallbackLc", 2, -1, 4, ""], ["localizableParams", 0, 218, 1, ""], ["deterministicLg", 2, -1, 4, ""], ["deterministicLc", 2, -1, 4, ""], ["hydratedHsm", 0, 320, 4, ""]]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter", [["default", 2, -1, 4, ""], ["currency", 0, 219, 8, "paramOneof"], ["dateTime", 0, 220, 8, "paramOneof"]]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMCurrency", [["currencyCode", 2, -1, 4, ""], ["amount1000", 8, -1, 4, ""]]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime", [["component", 0, 221, 8, "datetimeOneof"], ["unixEpoch", 0, 222, 8, "datetimeOneof"]]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent", [["dayOfWeek", 1, 97, 4, ""], ["year", 7, -1, 4, ""], ["month", 7, -1, 4, ""], ["dayOfMonth", 7, -1, 4, ""], ["hour", 7, -1, 4, ""], ["minute", 7, -1, 4, ""], ["calendar", 1, 96, 4, ""]]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeUnixEpoch", [["timestamp", 8, -1, 4, ""]]], ["Message.HistorySyncMessageAccessStatus", [["completeAccessGranted", 3, -1, 4, ""]]], ["Message.HistorySyncNotification", [["fileSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["syncType", 1, 98, 4, ""], ["chunkOrder", 7, -1, 4, ""], ["originalMessageId", 2, -1, 4, ""], ["progress", 7, -1, 4, ""], ["oldestMsgInChunkTimestampSec", 8, -1, 4, ""], ["initialHistBootstrapInlinePayload", 4, -1, 4, ""], ["peerDataRequestSessionId", 2, -1, 4, ""], ["fullHistorySyncOnDemandRequestMetadata", 0, 214, 4, ""], ["encHandle", 2, -1, 4, ""], ["messageAccessStatus", 0, 223, 4, ""]]], ["Message.ImageMessage", [["url", 2, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["caption", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["interactiveAnnotations", 0, 159, 1, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["firstScanSidecar", 4, -1, 4, ""], ["firstScanLength", 7, -1, 4, ""], ["experimentGroupId", 7, -1, 4, ""], ["scansSidecar", 4, -1, 4, ""], ["scanLengths", 7, -1, 1, ""], ["midQualityFileSha256", 4, -1, 4, ""], ["midQualityFileEncSha256", 4, -1, 4, ""], ["viewOnce", 3, -1, 4, ""], ["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["staticUrl", 2, -1, 4, ""], ["annotations", 0, 159, 1, ""], ["imageSourceType", 1, 99, 4, ""], ["accessibilityLabel", 2, -1, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""], ["qrUrl", 2, -1, 4, ""]]], ["Message.InitialSecurityNotificationSettingSync", [["securityNotificationEnabled", 3, -1, 4, ""]]], ["Message.InteractiveMessage", [["header", 0, 232, 4, ""], ["body", 0, 228, 4, ""], ["footer", 0, 231, 4, ""], ["contextInfo", 0, 110, 4, ""], ["urlTrackingMap", 0, 486, 4, ""], ["shopStorefrontMessage", 0, 235, 8, "interactiveMessage"], ["collectionMessage", 0, 230, 8, "interactiveMessage"], ["nativeFlowMessage", 0, 233, 8, "interactiveMessage"], ["carouselMessage", 0, 229, 8, "interactiveMessage"]]], ["Message.InteractiveMessage.Body", [["text", 2, -1, 4, ""]]], ["Message.InteractiveMessage.CarouselMessage", [["cards", 0, 227, 1, ""], ["messageVersion", 6, -1, 4, ""], ["carouselCardType", 1, 100, 4, ""]]], ["Message.InteractiveMessage.CollectionMessage", [["bizJid", 2, -1, 4, ""], ["id", 2, -1, 4, ""], ["messageVersion", 6, -1, 4, ""]]], ["Message.InteractiveMessage.Footer", [["text", 2, -1, 4, ""], ["hasMediaAttachment", 3, -1, 4, ""], ["audioMessage", 0, 188, 8, "media"]]], ["Message.InteractiveMessage.Header", [["title", 2, -1, 4, ""], ["subtitle", 2, -1, 4, ""], ["hasMediaAttachment", 3, -1, 4, ""], ["documentMessage", 0, 207, 8, "media"], ["imageMessage", 0, 225, 8, "media"], ["jpegThumbnail", 4, -1, 8, "media"], ["videoMessage", 0, 325, 8, "media"], ["locationMessage", 0, 252, 8, "media"], ["productMessage", 0, 297, 8, "media"]]], ["Message.InteractiveMessage.NativeFlowMessage", [["buttons", 0, 234, 1, ""], ["messageParamsJson", 2, -1, 4, ""], ["messageVersion", 6, -1, 4, ""]]], ["Message.InteractiveMessage.NativeFlowMessage.NativeFlowButton", [["name", 2, -1, 4, ""], ["buttonParamsJson", 2, -1, 4, ""]]], ["Message.InteractiveMessage.ShopMessage", [["id", 2, -1, 4, ""], ["surface", 1, 101, 4, ""], ["messageVersion", 6, -1, 4, ""]]], ["Message.InteractiveResponseMessage", [["body", 0, 237, 4, ""], ["contextInfo", 0, 110, 4, ""], ["nativeFlowResponseMessage", 0, 238, 8, "interactiveResponseMessage"]]], ["Message.InteractiveResponseMessage.Body", [["text", 2, -1, 4, ""], ["format", 1, 102, 4, ""]]], ["Message.InteractiveResponseMessage.NativeFlowResponseMessage", [["name", 2, -1, 4, ""], ["paramsJson", 2, -1, 4, ""], ["version", 6, -1, 4, ""]]], ["Message.InvoiceMessage", [["note", 2, -1, 4, ""], ["token", 2, -1, 4, ""], ["attachmentType", 1, 103, 4, ""], ["attachmentMimetype", 2, -1, 4, ""], ["attachmentMediaKey", 4, -1, 4, ""], ["attachmentMediaKeyTimestamp", 8, -1, 4, ""], ["attachmentFileSha256", 4, -1, 4, ""], ["attachmentFileEncSha256", 4, -1, 4, ""], ["attachmentDirectPath", 2, -1, 4, ""], ["attachmentJpegThumbnail", 4, -1, 4, ""]]], ["Message.KeepInChatMessage", [["key", 0, 330, 4, ""], ["keepType", 1, 80, 4, ""], ["timestampMs", 8, -1, 4, ""]]], ["Message.LinkPreviewMetadata", [["paymentLinkMetadata", 0, 262, 4, ""], ["urlMetadata", 0, 323, 4, ""], ["fbExperimentId", 7, -1, 4, ""], ["linkMediaDuration", 7, -1, 4, ""], ["socialMediaPostType", 1, 104, 4, ""], ["linkInlineVideoMuted", 3, -1, 4, ""], ["videoContentUrl", 2, -1, 4, ""], ["musicMetadata", 0, 134, 4, ""], ["videoContentCaption", 2, -1, 4, ""]]], ["Message.ListMessage", [["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["buttonText", 2, -1, 4, ""], ["listType", 1, 105, 4, ""], ["sections", 0, 248, 1, ""], ["productListInfo", 0, 245, 4, ""], ["footerText", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.ListMessage.Product", [["productId", 2, -1, 4, ""]]], ["Message.ListMessage.ProductListHeaderImage", [["productId", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""]]], ["Message.ListMessage.ProductListInfo", [["productSections", 0, 246, 1, ""], ["headerImage", 0, 244, 4, ""], ["businessOwnerJid", 2, -1, 4, ""]]], ["Message.ListMessage.ProductSection", [["title", 2, -1, 4, ""], ["products", 0, 243, 1, ""]]], ["Message.ListMessage.Row", [["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["rowId", 2, -1, 4, ""]]], ["Message.ListMessage.Section", [["title", 2, -1, 4, ""], ["rows", 0, 247, 1, ""]]], ["Message.ListResponseMessage", [["title", 2, -1, 4, ""], ["listType", 1, 106, 4, ""], ["singleSelectReply", 0, 250, 4, ""], ["contextInfo", 0, 110, 4, ""], ["description", 2, -1, 4, ""]]], ["Message.ListResponseMessage.SingleSelectReply", [["selectedRowId", 2, -1, 4, ""]]], ["Message.LiveLocationMessage", [["degreesLatitude", 5, -1, 4, ""], ["degreesLongitude", 5, -1, 4, ""], ["accuracyInMeters", 7, -1, 4, ""], ["speedInMps", 5, -1, 4, ""], ["degreesClockwiseFromMagneticNorth", 7, -1, 4, ""], ["caption", 2, -1, 4, ""], ["sequenceNumber", 8, -1, 4, ""], ["timeOffset", 7, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.LocationMessage", [["degreesLatitude", 5, -1, 4, ""], ["degreesLongitude", 5, -1, 4, ""], ["name", 2, -1, 4, ""], ["address", 2, -1, 4, ""], ["url", 2, -1, 4, ""], ["isLive", 3, -1, 4, ""], ["accuracyInMeters", 7, -1, 4, ""], ["speedInMps", 5, -1, 4, ""], ["degreesClockwiseFromMagneticNorth", 7, -1, 4, ""], ["comment", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.MessageHistoryBundle", [["mimetype", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["messageHistoryMetadata", 0, 254, 4, ""]]], ["Message.MessageHistoryMetadata", [["historyReceivers", 2, -1, 1, ""], ["oldestMessageTimestamp", 8, -1, 4, ""], ["messageCount", 8, -1, 4, ""]]], ["Message.MessageHistoryNotice", [["contextInfo", 0, 110, 4, ""], ["messageHistoryMetadata", 0, 254, 4, ""]]], ["Message.MMSThumbnailMetadata", [["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["thumbnailHeight", 7, -1, 4, ""], ["thumbnailWidth", 7, -1, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""]]], ["Message.NewsletterAdminInviteMessage", [["newsletterJid", 2, -1, 4, ""], ["newsletterName", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["caption", 2, -1, 4, ""], ["inviteExpiration", 8, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.NewsletterFollowerInviteMessage", [["newsletterJid", 2, -1, 4, ""], ["newsletterName", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["caption", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.OrderMessage", [["orderId", 2, -1, 4, ""], ["thumbnail", 4, -1, 4, ""], ["itemCount", 6, -1, 4, ""], ["status", 1, 108, 4, ""], ["surface", 1, 109, 4, ""], ["message", 2, -1, 4, ""], ["orderTitle", 2, -1, 4, ""], ["sellerJid", 2, -1, 4, ""], ["token", 2, -1, 4, ""], ["totalAmount1000", 8, -1, 4, ""], ["totalCurrencyCode", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["messageVersion", 6, -1, 4, ""], ["orderRequestMessageId", 0, 330, 4, ""], ["catalogType", 2, -1, 4, ""]]], ["Message.PaymentExtendedMetadata", [["type", 7, -1, 4, ""], ["platform", 2, -1, 4, ""], ["messageParamsJson", 2, -1, 4, ""]]], ["Message.PaymentInviteMessage", [["serviceType", 1, 110, 4, ""], ["expiryTimestamp", 8, -1, 4, ""]]], ["Message.PaymentLinkMetadata", [["button", 0, 263, 4, ""], ["header", 0, 264, 4, ""], ["provider", 0, 265, 4, ""]]], ["Message.PaymentLinkMetadata.PaymentLinkButton", [["displayText", 2, -1, 4, ""]]], ["Message.PaymentLinkMetadata.PaymentLinkHeader", [["headerType", 1, 111, 4, ""]]], ["Message.PaymentLinkMetadata.PaymentLinkProvider", [["paramsJson", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage", [["peerDataOperationRequestType", 1, 115, 4, ""], ["requestStickerReupload", 0, 272, 1, ""], ["requestUrlPreview", 0, 273, 1, ""], ["historySyncOnDemandRequest", 0, 270, 4, ""], ["placeholderMessageResendRequest", 0, 271, 1, ""], ["fullHistorySyncOnDemandRequest", 0, 267, 4, ""], ["syncdCollectionFatalRecoveryRequest", 0, 274, 4, ""], ["historySyncChunkRetryRequest", 0, 269, 4, ""], ["galaxyFlowAction", 0, 268, 4, ""]]], ["Message.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest", [["requestMetadata", 0, 214, 4, ""], ["historySyncConfig", 0, 130, 4, ""]]], ["Message.PeerDataOperationRequestMessage.GalaxyFlowAction", [["type", 1, 112, 4, ""], ["flowId", 2, -1, 4, ""], ["stanzaId", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest", [["syncType", 1, 98, 4, ""], ["chunkOrder", 7, -1, 4, ""], ["chunkNotificationId", 2, -1, 4, ""], ["regenerateChunk", 3, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest", [["chatJid", 2, -1, 4, ""], ["oldestMsgId", 2, -1, 4, ""], ["oldestMsgFromMe", 3, -1, 4, ""], ["onDemandMsgCount", 6, -1, 4, ""], ["oldestMsgTimestampMs", 8, -1, 4, ""], ["accountLid", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest", [["messageKey", 0, 330, 4, ""]]], ["Message.PeerDataOperationRequestMessage.RequestStickerReupload", [["fileSha256", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage.RequestUrlPreview", [["url", 2, -1, 4, ""], ["includeHqThumbnail", 3, -1, 4, ""]]], ["Message.PeerDataOperationRequestMessage.SyncDCollectionFatalRecoveryRequest", [["collectionName", 2, -1, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage", [["peerDataOperationRequestType", 1, 115, 4, ""], ["stanzaId", 2, -1, 4, ""], ["peerDataOperationResult", 0, 276, 1, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult", [["mediaUploadResult", 1, 82, 4, ""], ["stickerMessage", 0, 315, 4, ""], ["linkPreviewResponse", 0, 281, 4, ""], ["placeholderMessageResendResponse", 0, 284, 4, ""], ["waffleNonceFetchRequestResponse", 0, 286, 4, ""], ["fullHistorySyncOnDemandRequestResponse", 0, 279, 4, ""], ["companionMetaNonceFetchRequestResponse", 0, 278, 4, ""], ["syncdSnapshotFatalRecoveryResponse", 0, 285, 4, ""], ["companionCanonicalUserNonceFetchRequestResponse", 0, 277, 4, ""], ["historySyncChunkRetryResponse", 0, 280, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionCanonicalUserNonceFetchResponse", [["nonce", 2, -1, 4, ""], ["waFbid", 2, -1, 4, ""], ["forceRefresh", 3, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionMetaNonceFetchResponse", [["nonce", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse", [["requestMetadata", 0, 214, 4, ""], ["responseCode", 1, 113, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse", [["syncType", 1, 98, 4, ""], ["chunkOrder", 7, -1, 4, ""], ["requestId", 2, -1, 4, ""], ["responseCode", 1, 114, 4, ""], ["canRecover", 3, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse", [["url", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["thumbData", 4, -1, 4, ""], ["matchText", 2, -1, 4, ""], ["previewType", 2, -1, 4, ""], ["hqThumbnail", 0, 282, 4, ""], ["previewMetadata", 0, 283, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.LinkPreviewHighQualityThumbnail", [["directPath", 2, -1, 4, ""], ["thumbHash", 2, -1, 4, ""], ["encThumbHash", 2, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mediaKeyTimestampMs", 8, -1, 4, ""], ["thumbWidth", 6, -1, 4, ""], ["thumbHeight", 6, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.PaymentLinkPreviewMetadata", [["isBusinessVerified", 3, -1, 4, ""], ["providerName", 2, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.PlaceholderMessageResendResponse", [["webMessageInfoBytes", 4, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.SyncDSnapshotFatalRecoveryResponse", [["collectionSnapshot", 4, -1, 4, ""], ["isCompressed", 3, -1, 4, ""]]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.WaffleNonceFetchResponse", [["nonce", 2, -1, 4, ""], ["waEntFbid", 2, -1, 4, ""]]], ["Message.PinInChatMessage", [["key", 0, 330, 4, ""], ["type", 1, 116, 4, ""], ["senderTimestampMs", 8, -1, 4, ""]]], ["Message.PlaceholderMessage", [["type", 1, 117, 4, ""]]], ["Message.PollCreationMessage", [["encKey", 4, -1, 4, ""], ["name", 2, -1, 4, ""], ["options", 0, 290, 1, ""], ["selectableOptionsCount", 7, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["pollContentType", 1, 118, 4, ""], ["pollType", 1, 119, 4, ""], ["correctAnswer", 0, 290, 4, ""]]], ["Message.PollCreationMessage.Option", [["optionName", 2, -1, 4, ""], ["optionHash", 2, -1, 4, ""]]], ["Message.PollEncValue", [["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""]]], ["Message.PollResultSnapshotMessage", [["name", 2, -1, 4, ""], ["pollVotes", 0, 293, 1, ""], ["contextInfo", 0, 110, 4, ""], ["pollType", 1, 119, 4, ""]]], ["Message.PollResultSnapshotMessage.PollVote", [["optionName", 2, -1, 4, ""], ["optionVoteCount", 8, -1, 4, ""]]], ["Message.PollUpdateMessage", [["pollCreationMessageKey", 0, 330, 4, ""], ["vote", 0, 291, 4, ""], ["metadata", 0, 295, 4, ""], ["senderTimestampMs", 8, -1, 4, ""]]], ["Message.PollUpdateMessageMetadata", []], ["Message.PollVoteMessage", [["selectedOptions", 4, -1, 1, ""]]], ["Message.ProductMessage", [["product", 0, 299, 4, ""], ["businessOwnerJid", 2, -1, 4, ""], ["catalog", 0, 298, 4, ""], ["body", 2, -1, 4, ""], ["footer", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""]]], ["Message.ProductMessage.CatalogSnapshot", [["catalogImage", 0, 225, 4, ""], ["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""]]], ["Message.ProductMessage.ProductSnapshot", [["productImage", 0, 225, 4, ""], ["productId", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["currencyCode", 2, -1, 4, ""], ["priceAmount1000", 8, -1, 4, ""], ["retailerId", 2, -1, 4, ""], ["url", 2, -1, 4, ""], ["productImageCount", 7, -1, 4, ""], ["firstImageId", 2, -1, 4, ""], ["salePriceAmount1000", 8, -1, 4, ""], ["signedUrl", 2, -1, 4, ""]]], ["Message.ProtocolMessage", [["key", 0, 330, 4, ""], ["type", 1, 120, 4, ""], ["ephemeralExpiration", 7, -1, 4, ""], ["ephemeralSettingTimestamp", 8, -1, 4, ""], ["historySyncNotification", 0, 224, 4, ""], ["appStateSyncKeyShare", 0, 187, 4, ""], ["appStateSyncKeyRequest", 0, 186, 4, ""], ["initialSecurityNotificationSettingSync", 0, 226, 4, ""], ["appStateFatalExceptionNotification", 0, 181, 4, ""], ["disappearingMode", 0, 131, 4, ""], ["editedMessage", 0, 179, 4, ""], ["timestampMs", 8, -1, 4, ""], ["peerDataOperationRequestMessage", 0, 266, 4, ""], ["peerDataOperationRequestResponseMessage", 0, 275, 4, ""], ["botFeedbackMessage", 0, 40, 4, ""], ["invokerJid", 2, -1, 4, ""], ["requestWelcomeMessageMetadata", 0, 305, 4, ""], ["mediaNotifyMessage", 0, 176, 4, ""], ["cloudApiThreadControlNotification", 0, 200, 4, ""], ["lidMigrationMappingSyncMessage", 0, 170, 4, ""], ["limitSharing", 0, 172, 4, ""], ["aiPsiMetadata", 4, -1, 4, ""], ["aiQueryFanout", 0, 9, 4, ""], ["memberLabel", 0, 178, 4, ""]]], ["Message.QuestionResponseMessage", [["key", 0, 330, 4, ""], ["text", 2, -1, 4, ""]]], ["Message.ReactionMessage", [["key", 0, 330, 4, ""], ["text", 2, -1, 4, ""], ["groupingKey", 2, -1, 4, ""], ["senderTimestampMs", 8, -1, 4, ""]]], ["Message.RequestPaymentMessage", [["noteMessage", 0, 179, 4, ""], ["currencyCodeIso4217", 2, -1, 4, ""], ["amount1000", 9, -1, 4, ""], ["requestFrom", 2, -1, 4, ""], ["expiryTimestamp", 8, -1, 4, ""], ["amount", 0, 332, 4, ""], ["background", 0, 347, 4, ""]]], ["Message.RequestPhoneNumberMessage", [["contextInfo", 0, 110, 4, ""]]], ["Message.RequestWelcomeMessageMetadata", [["localChatState", 1, 121, 4, ""]]], ["Message.ScheduledCallCreationMessage", [["scheduledTimestampMs", 8, -1, 4, ""], ["callType", 1, 122, 4, ""], ["title", 2, -1, 4, ""]]], ["Message.ScheduledCallEditMessage", [["key", 0, 330, 4, ""], ["editType", 1, 123, 4, ""]]], ["Message.SecretEncryptedMessage", [["targetMessageKey", 0, 330, 4, ""], ["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""], ["secretEncType", 1, 124, 4, ""]]], ["Message.SenderKeyDistributionMessage", [["groupId", 2, -1, 4, ""], ["axolotlSenderKeyDistributionMessage", 4, -1, 4, ""]]], ["Message.SendPaymentMessage", [["noteMessage", 0, 179, 4, ""], ["requestMessageKey", 0, 330, 4, ""], ["background", 0, 347, 4, ""], ["transactionData", 2, -1, 4, ""]]], ["Message.StatusNotificationMessage", [["responseMessageKey", 0, 330, 4, ""], ["originalMessageKey", 0, 330, 4, ""], ["type", 1, 125, 4, ""]]], ["Message.StatusQuestionAnswerMessage", [["key", 0, 330, 4, ""], ["text", 2, -1, 4, ""]]], ["Message.StatusQuotedMessage", [["type", 1, 126, 4, ""], ["text", 2, -1, 4, ""], ["thumbnail", 4, -1, 4, ""], ["originalStatusId", 0, 330, 4, ""]]], ["Message.StatusStickerInteractionMessage", [["key", 0, 330, 4, ""], ["stickerKey", 2, -1, 4, ""], ["type", 1, 127, 4, ""]]], ["Message.StickerMessage", [["url", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["firstFrameLength", 7, -1, 4, ""], ["firstFrameSidecar", 4, -1, 4, ""], ["isAnimated", 3, -1, 4, ""], ["pngThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["stickerSentTs", 8, -1, 4, ""], ["isAvatar", 3, -1, 4, ""], ["isAiSticker", 3, -1, 4, ""], ["isLottie", 3, -1, 4, ""], ["accessibilityLabel", 2, -1, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""]]], ["Message.StickerPackMessage", [["stickerPackId", 2, -1, 4, ""], ["name", 2, -1, 4, ""], ["publisher", 2, -1, 4, ""], ["stickers", 0, 317, 1, ""], ["fileLength", 9, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["caption", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["packDescription", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["trayIconFileName", 2, -1, 4, ""], ["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["thumbnailHeight", 7, -1, 4, ""], ["thumbnailWidth", 7, -1, 4, ""], ["imageDataHash", 2, -1, 4, ""], ["stickerPackSize", 9, -1, 4, ""], ["stickerPackOrigin", 1, 128, 4, ""]]], ["Message.StickerPackMessage.Sticker", [["fileName", 2, -1, 4, ""], ["isAnimated", 3, -1, 4, ""], ["emojis", 2, -1, 1, ""], ["accessibilityLabel", 2, -1, 4, ""], ["isLottie", 3, -1, 4, ""], ["mimetype", 2, -1, 4, ""]]], ["Message.StickerSyncRMRMessage", [["filehash", 2, -1, 1, ""], ["rmrSource", 2, -1, 4, ""], ["requestTimestamp", 8, -1, 4, ""]]], ["Message.TemplateButtonReplyMessage", [["selectedId", 2, -1, 4, ""], ["selectedDisplayText", 2, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["selectedIndex", 7, -1, 4, ""], ["selectedCarouselCardIndex", 7, -1, 4, ""]]], ["Message.TemplateMessage", [["contextInfo", 0, 110, 4, ""], ["hydratedTemplate", 0, 322, 4, ""], ["templateId", 2, -1, 4, ""], ["fourRowTemplate", 0, 321, 8, "format"], ["hydratedFourRowTemplate", 0, 322, 8, "format"], ["interactiveMessageTemplate", 0, 227, 8, "format"]]], ["Message.TemplateMessage.FourRowTemplate", [["content", 0, 217, 4, ""], ["footer", 0, 217, 4, ""], ["buttons", 0, 481, 1, ""], ["documentMessage", 0, 207, 8, "title"], ["highlyStructuredMessage", 0, 217, 8, "title"], ["imageMessage", 0, 225, 8, "title"], ["videoMessage", 0, 325, 8, "title"], ["locationMessage", 0, 252, 8, "title"]]], ["Message.TemplateMessage.HydratedFourRowTemplate", [["hydratedContentText", 2, -1, 4, ""], ["hydratedFooterText", 2, -1, 4, ""], ["hydratedButtons", 0, 154, 1, ""], ["templateId", 2, -1, 4, ""], ["maskLinkedDevices", 3, -1, 4, ""], ["documentMessage", 0, 207, 8, "title"], ["hydratedTitleText", 2, -1, 8, "title"], ["imageMessage", 0, 225, 8, "title"], ["videoMessage", 0, 325, 8, "title"], ["locationMessage", 0, 252, 8, "title"]]], ["Message.URLMetadata", [["fbExperimentId", 7, -1, 4, ""]]], ["Message.VideoEndCard", [["username", 2, -1, 0, ""], ["caption", 2, -1, 0, ""], ["thumbnailImageUrl", 2, -1, 0, ""], ["profilePictureUrl", 2, -1, 0, ""]]], ["Message.VideoMessage", [["url", 2, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["seconds", 7, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["caption", 2, -1, 4, ""], ["gifPlayback", 3, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["interactiveAnnotations", 0, 159, 1, ""], ["directPath", 2, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""], ["contextInfo", 0, 110, 4, ""], ["streamingSidecar", 4, -1, 4, ""], ["gifAttribution", 1, 129, 4, ""], ["viewOnce", 3, -1, 4, ""], ["thumbnailDirectPath", 2, -1, 4, ""], ["thumbnailSha256", 4, -1, 4, ""], ["thumbnailEncSha256", 4, -1, 4, ""], ["staticUrl", 2, -1, 4, ""], ["annotations", 0, 159, 1, ""], ["accessibilityLabel", 2, -1, 4, ""], ["processedVideos", 0, 361, 1, ""], ["externalShareFullVideoDurationInSeconds", 7, -1, 4, ""], ["motionPhotoPresentationOffsetMs", 9, -1, 4, ""], ["metadataUrl", 2, -1, 4, ""], ["videoSourceType", 1, 130, 4, ""], ["mediaKeyDomain", 1, 107, 4, ""]]], ["MessageAddOn", [["messageAddOnType", 1, 131, 4, ""], ["messageAddOn", 0, 179, 4, ""], ["senderTimestampMs", 8, -1, 4, ""], ["serverTimestampMs", 8, -1, 4, ""], ["status", 1, 172, 4, ""], ["addOnContextInfo", 0, 327, 4, ""], ["messageAddOnKey", 0, 330, 4, ""], ["legacyMessage", 0, 168, 4, ""]]], ["MessageAddOnContextInfo", [["messageAddOnDurationInSecs", 7, -1, 4, ""], ["messageAddOnExpiryType", 1, 133, 4, ""]]], ["MessageAssociation", [["associationType", 1, 132, 4, ""], ["parentMessageKey", 0, 330, 4, ""], ["messageIndex", 6, -1, 4, ""]]], ["MessageContextInfo", [["deviceListMetadata", 0, 127, 4, ""], ["deviceListMetadataVersion", 6, -1, 4, ""], ["messageSecret", 4, -1, 4, ""], ["paddingBytes", 4, -1, 4, ""], ["messageAddOnDurationInSecs", 7, -1, 4, ""], ["botMessageSecret", 4, -1, 4, ""], ["botMetadata", 0, 59, 4, ""], ["reportingTokenVersion", 6, -1, 4, ""], ["messageAddOnExpiryType", 1, 133, 4, ""], ["messageAssociation", 0, 328, 4, ""], ["capiCreatedGroup", 3, -1, 4, ""], ["supportPayload", 2, -1, 4, ""], ["limitSharing", 0, 172, 4, ""], ["limitSharingV2", 0, 172, 4, ""], ["threadId", 0, 485, 1, ""], ["weblinkRenderConfig", 1, 170, 4, ""]]], ["MessageKey", [["remoteJid", 2, -1, 4, ""], ["fromMe", 3, -1, 4, ""], ["id", 2, -1, 4, ""], ["participant", 2, -1, 4, ""]]], ["MessageSecretMessage", [["version", 6, -1, 4, ""], ["encIv", 4, -1, 4, ""], ["encPayload", 4, -1, 4, ""]]], ["Money", [["value", 8, -1, 4, ""], ["offset", 7, -1, 4, ""], ["currencyCode", 2, -1, 4, ""]]], ["MsgOpaqueData", [["body", 2, -1, 4, ""], ["caption", 2, -1, 4, ""], ["lng", 5, -1, 4, ""], ["isLive", 3, -1, 4, ""], ["lat", 5, -1, 4, ""], ["paymentAmount1000", 6, -1, 4, ""], ["paymentNoteMsgBody", 2, -1, 4, ""], ["matchedText", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["description", 2, -1, 4, ""], ["futureproofBuffer", 4, -1, 4, ""], ["clientUrl", 2, -1, 4, ""], ["loc", 2, -1, 4, ""], ["pollName", 2, -1, 4, ""], ["pollOptions", 0, 335, 1, ""], ["pollSelectableOptionsCount", 7, -1, 4, ""], ["messageSecret", 4, -1, 4, ""], ["originalSelfAuthor", 2, -1, 4, ""], ["senderTimestampMs", 8, -1, 4, ""], ["pollUpdateParentKey", 2, -1, 4, ""], ["encPollVote", 0, 355, 4, ""], ["isSentCagPollCreation", 3, -1, 4, ""], ["pollContentType", 1, 134, 4, ""], ["pollType", 1, 135, 4, ""], ["correctOptionIndex", 6, -1, 4, ""], ["pollVotesSnapshot", 0, 337, 4, ""], ["encReactionTargetMessageKey", 2, -1, 4, ""], ["encReactionEncPayload", 4, -1, 4, ""], ["encReactionEncIv", 4, -1, 4, ""], ["botMessageSecret", 4, -1, 4, ""], ["targetMessageKey", 2, -1, 4, ""], ["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""], ["eventName", 2, -1, 4, ""], ["isEventCanceled", 3, -1, 4, ""], ["eventDescription", 2, -1, 4, ""], ["eventJoinLink", 2, -1, 4, ""], ["eventStartTime", 8, -1, 4, ""], ["eventLocation", 0, 334, 4, ""], ["eventEndTime", 8, -1, 4, ""], ["eventIsScheduledCall", 3, -1, 4, ""], ["eventExtraGuestsAllowed", 3, -1, 4, ""], ["plainProtobufBytes", 4, -1, 4, ""]]], ["MsgOpaqueData.EventLocation", [["degreesLatitude", 5, -1, 4, ""], ["degreesLongitude", 5, -1, 4, ""], ["name", 2, -1, 4, ""], ["address", 2, -1, 4, ""], ["url", 2, -1, 4, ""], ["jpegThumbnail", 4, -1, 4, ""]]], ["MsgOpaqueData.PollOption", [["name", 2, -1, 4, ""], ["hash", 2, -1, 4, ""]]], ["MsgOpaqueData.PollVoteSnapshot", [["option", 0, 335, 4, ""], ["optionVoteCount", 6, -1, 4, ""]]], ["MsgOpaqueData.PollVotesSnapshot", [["pollVotes", 0, 336, 1, ""]]], ["MsgRowOpaqueData", [["currentMsg", 0, 333, 4, ""], ["quotedMsg", 0, 333, 4, ""]]], ["NoiseCertificate", [["details", 4, -1, 4, ""], ["signature", 4, -1, 4, ""]]], ["NoiseCertificate.Details", [["serial", 7, -1, 4, ""], ["issuer", 2, -1, 4, ""], ["expires", 9, -1, 4, ""], ["subject", 2, -1, 4, ""], ["key", 4, -1, 4, ""]]], ["NotificationMessageInfo", [["key", 0, 330, 4, ""], ["message", 0, 179, 4, ""], ["messageTimestamp", 9, -1, 4, ""], ["participant", 2, -1, 4, ""]]], ["NotificationSettings", [["messageVibrate", 2, -1, 4, ""], ["messagePopup", 2, -1, 4, ""], ["messageLight", 2, -1, 4, ""], ["lowPriorityNotifications", 3, -1, 4, ""], ["reactionsMuted", 3, -1, 4, ""], ["callVibrate", 2, -1, 4, ""]]], ["PairingRequest", [["companionPublicKey", 4, -1, 4, ""], ["companionIdentityKey", 4, -1, 4, ""], ["advSecret", 4, -1, 4, ""]]], ["PastParticipant", [["userJid", 2, -1, 4, ""], ["leaveReason", 1, 137, 4, ""], ["leaveTs", 9, -1, 4, ""]]], ["PastParticipants", [["groupJid", 2, -1, 4, ""], ["pastParticipants", 0, 344, 1, ""]]], ["PatchDebugData", [["currentLthash", 4, -1, 4, ""], ["newLthash", 4, -1, 4, ""], ["patchVersion", 4, -1, 4, ""], ["collectionName", 4, -1, 4, ""], ["firstFourBytesFromAHashOfSnapshotMacKey", 4, -1, 4, ""], ["newLthashSubtract", 4, -1, 4, ""], ["numberAdd", 6, -1, 4, ""], ["numberRemove", 6, -1, 4, ""], ["numberOverride", 6, -1, 4, ""], ["senderPlatform", 1, 138, 4, ""], ["isSenderPrimary", 3, -1, 4, ""]]], ["PaymentBackground", [["id", 2, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["width", 7, -1, 4, ""], ["height", 7, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["placeholderArgb", 7, -1, 4, ""], ["textArgb", 7, -1, 4, ""], ["subtextArgb", 7, -1, 4, ""], ["mediaData", 0, 348, 4, ""], ["type", 1, 139, 4, ""]]], ["PaymentBackground.MediaData", [["mediaKey", 4, -1, 4, ""], ["mediaKeyTimestamp", 8, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["directPath", 2, -1, 4, ""]]], ["PaymentInfo", [["currencyDeprecated", 1, 140, 4, ""], ["amount1000", 9, -1, 4, ""], ["receiverJid", 2, -1, 4, ""], ["status", 1, 141, 4, ""], ["transactionTimestamp", 9, -1, 4, ""], ["requestMessageKey", 0, 330, 4, ""], ["expiryTimestamp", 9, -1, 4, ""], ["futureproofed", 3, -1, 4, ""], ["currency", 2, -1, 4, ""], ["txnStatus", 1, 142, 4, ""], ["useNoviFiatFormat", 3, -1, 4, ""], ["primaryAmount", 0, 332, 4, ""], ["exchangeAmount", 0, 332, 4, ""]]], ["PhoneNumberToLIDMapping", [["pnJid", 2, -1, 4, ""], ["lidJid", 2, -1, 4, ""]]], ["PhotoChange", [["oldPhoto", 4, -1, 4, ""], ["newPhoto", 4, -1, 4, ""], ["newPhotoId", 7, -1, 4, ""]]], ["PinInChat", [["type", 1, 143, 4, ""], ["key", 0, 330, 4, ""], ["senderTimestampMs", 8, -1, 4, ""], ["serverTimestampMs", 8, -1, 4, ""], ["messageAddOnContextInfo", 0, 327, 4, ""]]], ["Point", [["xDeprecated", 6, -1, 4, ""], ["yDeprecated", 6, -1, 4, ""], ["x", 5, -1, 4, ""], ["y", 5, -1, 4, ""]]], ["PollAdditionalMetadata", [["pollInvalidated", 3, -1, 4, ""]]], ["PollEncValue", [["encPayload", 4, -1, 4, ""], ["encIv", 4, -1, 4, ""]]], ["PollUpdate", [["pollUpdateMessageKey", 0, 330, 4, ""], ["vote", 0, 296, 4, ""], ["senderTimestampMs", 8, -1, 4, ""], ["serverTimestampMs", 8, -1, 4, ""], ["unread", 3, -1, 4, ""]]], ["PreKeyRecordStructure", [["id", 7, -1, 4, ""], ["publicKey", 4, -1, 4, ""], ["privateKey", 4, -1, 4, ""]]], ["PreKeySignalMessage", [["registrationId", 7, -1, 4, ""], ["preKeyId", 7, -1, 4, ""], ["signedPreKeyId", 7, -1, 4, ""], ["baseKey", 4, -1, 4, ""], ["identityKey", 4, -1, 4, ""], ["message", 4, -1, 4, ""]]], ["PremiumMessageInfo", [["serverCampaignId", 2, -1, 4, ""]]], ["PrimaryEphemeralIdentity", [["publicKey", 4, -1, 4, ""], ["nonce", 4, -1, 4, ""]]], ["ProcessedVideo", [["directPath", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["bitrate", 7, -1, 4, ""], ["quality", 1, 145, 4, ""], ["capabilities", 2, -1, 1, ""]]], ["ProloguePayload", [["companionEphemeralIdentity", 4, -1, 4, ""], ["commitment", 0, 107, 4, ""]]], ["Pushname", [["id", 2, -1, 4, ""], ["pushname", 2, -1, 4, ""]]], ["QuarantinedMessage", [["originalData", 4, -1, 4, ""], ["extractedText", 2, -1, 4, ""]]], ["Reaction", [["key", 0, 330, 4, ""], ["text", 2, -1, 4, ""], ["groupingKey", 2, -1, 4, ""], ["senderTimestampMs", 8, -1, 4, ""], ["unread", 3, -1, 4, ""]]], ["RecentEmojiWeight", [["emoji", 2, -1, 4, ""], ["weight", 5, -1, 4, ""]]], ["RecordStructure", [["currentSession", 0, 378, 4, ""], ["previousSessions", 0, 378, 1, ""]]], ["Reportable", [["minVersion", 7, -1, 4, ""], ["maxVersion", 7, -1, 4, ""], ["notReportableMinVersion", 7, -1, 4, ""], ["never", 3, -1, 4, ""]]], ["ReportingTokenInfo", [["reportingTag", 4, -1, 4, ""]]], ["SenderKeyDistributionMessage", [["id", 7, -1, 4, ""], ["iteration", 7, -1, 4, ""], ["chainKey", 4, -1, 4, ""], ["signingKey", 4, -1, 4, ""]]], ["SenderKeyMessage", [["id", 7, -1, 4, ""], ["iteration", 7, -1, 4, ""], ["ciphertext", 4, -1, 4, ""]]], ["SenderKeyRecordStructure", [["senderKeyStates", 0, 373, 1, ""]]], ["SenderKeyStateStructure", [["senderKeyId", 7, -1, 4, ""], ["senderChainKey", 0, 374, 4, ""], ["senderSigningKey", 0, 376, 4, ""], ["senderMessageKeys", 0, 375, 1, ""]]], ["SenderKeyStateStructure.SenderChainKey", [["iteration", 7, -1, 4, ""], ["seed", 4, -1, 4, ""]]], ["SenderKeyStateStructure.SenderMessageKey", [["iteration", 7, -1, 4, ""], ["seed", 4, -1, 4, ""]]], ["SenderKeyStateStructure.SenderSigningKey", [["public", 4, -1, 4, ""], ["private", 4, -1, 4, ""]]], ["ServerErrorReceipt", [["stanzaId", 2, -1, 4, ""]]], ["SessionStructure", [["sessionVersion", 7, -1, 4, ""], ["localIdentityPublic", 4, -1, 4, ""], ["remoteIdentityPublic", 4, -1, 4, ""], ["rootKey", 4, -1, 4, ""], ["previousCounter", 7, -1, 4, ""], ["senderChain", 0, 379, 4, ""], ["receiverChains", 0, 379, 1, ""], ["pendingKeyExchange", 0, 382, 4, ""], ["pendingPreKey", 0, 383, 4, ""], ["remoteRegistrationId", 7, -1, 4, ""], ["localRegistrationId", 7, -1, 4, ""], ["needsRefresh", 3, -1, 4, ""], ["aliceBaseKey", 4, -1, 4, ""]]], ["SessionStructure.Chain", [["senderRatchetKey", 4, -1, 4, ""], ["senderRatchetKeyPrivate", 4, -1, 4, ""], ["chainKey", 0, 380, 4, ""], ["messageKeys", 0, 381, 1, ""]]], ["SessionStructure.Chain.ChainKey", [["index", 7, -1, 4, ""], ["key", 4, -1, 4, ""]]], ["SessionStructure.Chain.MessageKey", [["index", 7, -1, 4, ""], ["cipherKey", 4, -1, 4, ""], ["macKey", 4, -1, 4, ""], ["iv", 4, -1, 4, ""]]], ["SessionStructure.PendingKeyExchange", [["sequence", 7, -1, 4, ""], ["localBaseKey", 4, -1, 4, ""], ["localBaseKeyPrivate", 4, -1, 4, ""], ["localRatchetKey", 4, -1, 4, ""], ["localRatchetKeyPrivate", 4, -1, 4, ""], ["localIdentityKey", 4, -1, 4, ""], ["localIdentityKeyPrivate", 4, -1, 4, ""]]], ["SessionStructure.PendingPreKey", [["preKeyId", 7, -1, 4, ""], ["signedPreKeyId", 6, -1, 4, ""], ["baseKey", 4, -1, 4, ""]]], ["SessionTransparencyMetadata", [["disclaimerText", 2, -1, 4, ""], ["hcaId", 2, -1, 4, ""], ["sessionTransparencyType", 1, 146, 4, ""]]], ["SignalMessage", [["ratchetKey", 4, -1, 4, ""], ["counter", 7, -1, 4, ""], ["previousCounter", 7, -1, 4, ""], ["ciphertext", 4, -1, 4, ""]]], ["SignedPreKeyRecordStructure", [["id", 7, -1, 4, ""], ["publicKey", 4, -1, 4, ""], ["privateKey", 4, -1, 4, ""], ["signature", 4, -1, 4, ""], ["timestamp", 9, -1, 4, ""]]], ["StatusAttribution", [["type", 1, 151, 4, ""], ["actionUrl", 2, -1, 4, ""], ["statusReshare", 0, 393, 8, "attributionData"], ["externalShare", 0, 389, 8, "attributionData"], ["music", 0, 391, 8, "attributionData"], ["groupStatus", 0, 390, 8, "attributionData"], ["rlAttribution", 0, 392, 8, "attributionData"], ["aiCreatedAttribution", 0, 388, 8, "attributionData"]]], ["StatusAttribution.AiCreatedAttribution", [["source", 1, 147, 4, ""]]], ["StatusAttribution.ExternalShare", [["actionUrl", 2, -1, 4, ""], ["source", 1, 148, 4, ""], ["duration", 6, -1, 4, ""], ["actionFallbackUrl", 2, -1, 4, ""]]], ["StatusAttribution.GroupStatus", [["authorJid", 2, -1, 4, ""]]], ["StatusAttribution.Music", [["authorName", 2, -1, 4, ""], ["songId", 2, -1, 4, ""], ["title", 2, -1, 4, ""], ["author", 2, -1, 4, ""], ["artistAttribution", 2, -1, 4, ""], ["isExplicit", 3, -1, 4, ""]]], ["StatusAttribution.RLAttribution", [["source", 1, 149, 4, ""]]], ["StatusAttribution.StatusReshare", [["source", 1, 150, 4, ""], ["metadata", 0, 394, 4, ""]]], ["StatusAttribution.StatusReshare.Metadata", [["duration", 6, -1, 4, ""], ["channelJid", 2, -1, 4, ""], ["channelMessageId", 6, -1, 4, ""], ["hasMultipleReshares", 3, -1, 4, ""]]], ["StatusMentionMessage", [["quotedStatus", 0, 179, 4, ""]]], ["StatusPSA", [["campaignId", 9, -1, 0, ""], ["campaignExpirationTimestamp", 9, -1, 4, ""]]], ["StickerMetadata", [["url", 2, -1, 4, ""], ["fileSha256", 4, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["weight", 5, -1, 4, ""], ["lastStickerSentTs", 8, -1, 4, ""], ["isLottie", 3, -1, 4, ""], ["imageHash", 2, -1, 4, ""], ["isAvatarSticker", 3, -1, 4, ""]]], ["SyncActionData", [["index", 4, -1, 4, ""], ["value", 0, 399, 4, ""], ["padding", 4, -1, 4, ""], ["version", 6, -1, 4, ""]]], ["SyncActionValue", [["timestamp", 8, -1, 4, ""], ["starAction", 0, 458, 4, ""], ["contactAction", 0, 413, 4, ""], ["muteAction", 0, 439, 4, ""], ["pinAction", 0, 446, 4, ""], ["pushNameSetting", 0, 454, 4, ""], ["quickReplyAction", 0, 455, 4, ""], ["recentEmojiWeightsAction", 0, 456, 4, ""], ["labelEditAction", 0, 428, 4, ""], ["labelAssociationAction", 0, 427, 4, ""], ["localeSetting", 0, 431, 4, ""], ["archiveChatAction", 0, 403, 4, ""], ["deleteMessageForMeAction", 0, 420, 4, ""], ["keyExpiration", 0, 426, 4, ""], ["markChatAsReadAction", 0, 434, 4, ""], ["clearChatAction", 0, 412, 4, ""], ["deleteChatAction", 0, 418, 4, ""], ["unarchiveChatsSetting", 0, 467, 4, ""], ["primaryFeature", 0, 448, 4, ""], ["androidUnsupportedActions", 0, 402, 4, ""], ["agentAction", 0, 400, 4, ""], ["subscriptionAction", 0, 462, 4, ""], ["userStatusMuteAction", 0, 469, 4, ""], ["timeFormatAction", 0, 465, 4, ""], ["nuxAction", 0, 443, 4, ""], ["primaryVersionAction", 0, 449, 4, ""], ["stickerAction", 0, 461, 4, ""], ["removeRecentStickerAction", 0, 457, 4, ""], ["chatAssignment", 0, 410, 4, ""], ["chatAssignmentOpenedStatus", 0, 411, 4, ""], ["pnForLidChatAction", 0, 447, 4, ""], ["marketingMessageAction", 0, 435, 4, ""], ["marketingMessageBroadcastAction", 0, 436, 4, ""], ["externalWebBetaAction", 0, 422, 4, ""], ["privacySettingRelayAllCalls", 0, 452, 4, ""], ["callLogAction", 0, 409, 4, ""], ["ugcBot", 0, 466, 4, ""], ["statusPrivacy", 0, 460, 4, ""], ["botWelcomeRequestAction", 0, 405, 4, ""], ["deleteIndividualCallLog", 0, 419, 4, ""], ["labelReorderingAction", 0, 429, 4, ""], ["paymentInfoAction", 0, 444, 4, ""], ["customPaymentMethodsAction", 0, 417, 4, ""], ["lockChatAction", 0, 432, 4, ""], ["chatLockSettings", 0, 91, 4, ""], ["wamoUserIdentifierAction", 0, 471, 4, ""], ["privacySettingDisableLinkPreviewsAction", 0, 451, 4, ""], ["deviceCapabilities", 0, 122, 4, ""], ["noteEditAction", 0, 441, 4, ""], ["favoritesAction", 0, 423, 4, ""], ["merchantPaymentPartnerAction", 0, 437, 4, ""], ["waffleAccountLinkStateAction", 0, 470, 4, ""], ["usernameChatStartMode", 0, 468, 4, ""], ["notificationActivitySettingAction", 0, 442, 4, ""], ["lidContactAction", 0, 430, 4, ""], ["ctwaPerCustomerDataSharingAction", 0, 414, 4, ""], ["paymentTosAction", 0, 445, 4, ""], ["privacySettingChannelsPersonalisedRecommendationAction", 0, 450, 4, ""], ["businessBroadcastAssociationAction", 0, 407, 4, ""], ["detectedOutcomesStatusAction", 0, 421, 4, ""], ["maibaAiFeaturesControlAction", 0, 433, 4, ""], ["businessBroadcastListAction", 0, 408, 4, ""], ["musicUserIdAction", 0, 438, 4, ""], ["statusPostOptInNotificationPreferencesAction", 0, 459, 4, ""], ["avatarUpdatedAction", 0, 404, 4, ""], ["privateProcessingSettingAction", 0, 453, 4, ""], ["newsletterSavedInterestsAction", 0, 440, 4, ""], ["aiThreadRenameAction", 0, 401, 4, ""], ["interactiveMessageAction", 0, 425, 4, ""]]], ["SyncActionValue.AgentAction", [["name", 2, -1, 4, ""], ["deviceID", 6, -1, 4, ""], ["isDeleted", 3, -1, 4, ""]]], ["SyncActionValue.AiThreadRenameAction", [["newTitle", 2, -1, 4, ""]]], ["SyncActionValue.AndroidUnsupportedActions", [["allowed", 3, -1, 4, ""]]], ["SyncActionValue.ArchiveChatAction", [["archived", 3, -1, 4, ""], ["messageRange", 0, 464, 4, ""]]], ["SyncActionValue.AvatarUpdatedAction", [["eventType", 1, 152, 4, ""], ["recentAvatarStickers", 0, 461, 1, ""]]], ["SyncActionValue.BotWelcomeRequestAction", [["isSent", 3, -1, 4, ""]]], ["SyncActionValue.BroadcastListParticipant", [["lidJid", 2, -1, 0, ""], ["pnJid", 2, -1, 4, ""]]], ["SyncActionValue.BusinessBroadcastAssociationAction", [["deleted", 3, -1, 4, ""]]], ["SyncActionValue.BusinessBroadcastListAction", [["deleted", 3, -1, 4, ""], ["participants", 0, 406, 1, ""], ["listName", 2, -1, 4, ""]]], ["SyncActionValue.CallLogAction", [["callLogRecord", 0, 86, 4, ""]]], ["SyncActionValue.ChatAssignmentAction", [["deviceAgentID", 2, -1, 4, ""]]], ["SyncActionValue.ChatAssignmentOpenedStatusAction", [["chatOpened", 3, -1, 4, ""]]], ["SyncActionValue.ClearChatAction", [["messageRange", 0, 464, 4, ""]]], ["SyncActionValue.ContactAction", [["fullName", 2, -1, 4, ""], ["firstName", 2, -1, 4, ""], ["lidJid", 2, -1, 4, ""], ["saveOnPrimaryAddressbook", 3, -1, 4, ""], ["pnJid", 2, -1, 4, ""], ["username", 2, -1, 4, ""]]], ["SyncActionValue.CtwaPerCustomerDataSharingAction", [["isCtwaPerCustomerDataSharingEnabled", 3, -1, 4, ""]]], ["SyncActionValue.CustomPaymentMethod", [["credentialId", 2, -1, 0, ""], ["country", 2, -1, 0, ""], ["type", 2, -1, 0, ""], ["metadata", 0, 416, 1, ""]]], ["SyncActionValue.CustomPaymentMethodMetadata", [["key", 2, -1, 0, ""], ["value", 2, -1, 0, ""]]], ["SyncActionValue.CustomPaymentMethodsAction", [["customPaymentMethods", 0, 415, 1, ""]]], ["SyncActionValue.DeleteChatAction", [["messageRange", 0, 464, 4, ""]]], ["SyncActionValue.DeleteIndividualCallLogAction", [["peerJid", 2, -1, 4, ""], ["isIncoming", 3, -1, 4, ""]]], ["SyncActionValue.DeleteMessageForMeAction", [["deleteMedia", 3, -1, 4, ""], ["messageTimestamp", 8, -1, 4, ""]]], ["SyncActionValue.DetectedOutcomesStatusAction", [["isEnabled", 3, -1, 4, ""]]], ["SyncActionValue.ExternalWebBetaAction", [["isOptIn", 3, -1, 4, ""]]], ["SyncActionValue.FavoritesAction", [["favorites", 0, 424, 1, ""]]], ["SyncActionValue.FavoritesAction.Favorite", [["id", 2, -1, 4, ""]]], ["SyncActionValue.InteractiveMessageAction", [["type", 1, 153, 0, ""]]], ["SyncActionValue.KeyExpiration", [["expiredKeyEpoch", 6, -1, 4, ""]]], ["SyncActionValue.LabelAssociationAction", [["labeled", 3, -1, 4, ""]]], ["SyncActionValue.LabelEditAction", [["name", 2, -1, 4, ""], ["color", 6, -1, 4, ""], ["predefinedId", 6, -1, 4, ""], ["deleted", 3, -1, 4, ""], ["orderIndex", 6, -1, 4, ""], ["isActive", 3, -1, 4, ""], ["type", 1, 154, 4, ""], ["isImmutable", 3, -1, 4, ""], ["muteEndTimeMs", 8, -1, 4, ""]]], ["SyncActionValue.LabelReorderingAction", [["sortedLabelIds", 6, -1, 1, ""]]], ["SyncActionValue.LidContactAction", [["fullName", 2, -1, 4, ""], ["firstName", 2, -1, 4, ""], ["username", 2, -1, 4, ""]]], ["SyncActionValue.LocaleSetting", [["locale", 2, -1, 4, ""]]], ["SyncActionValue.LockChatAction", [["locked", 3, -1, 4, ""]]], ["SyncActionValue.MaibaAIFeaturesControlAction", [["aiFeatureStatus", 1, 155, 4, ""]]], ["SyncActionValue.MarkChatAsReadAction", [["read", 3, -1, 4, ""], ["messageRange", 0, 464, 4, ""]]], ["SyncActionValue.MarketingMessageAction", [["name", 2, -1, 4, ""], ["message", 2, -1, 4, ""], ["type", 1, 156, 4, ""], ["createdAt", 8, -1, 4, ""], ["lastSentAt", 8, -1, 4, ""], ["isDeleted", 3, -1, 4, ""], ["mediaId", 2, -1, 4, ""]]], ["SyncActionValue.MarketingMessageBroadcastAction", [["repliedCount", 6, -1, 4, ""]]], ["SyncActionValue.MerchantPaymentPartnerAction", [["status", 1, 157, 0, ""], ["country", 2, -1, 0, ""], ["gatewayName", 2, -1, 4, ""], ["credentialId", 2, -1, 4, ""]]], ["SyncActionValue.MusicUserIdAction", [["musicUserId", 2, -1, 4, ""], ["musicUserIdMap", 2, -1, 2, ""]]], ["SyncActionValue.MuteAction", [["muted", 3, -1, 4, ""], ["muteEndTimestamp", 8, -1, 4, ""], ["autoMuted", 3, -1, 4, ""]]], ["SyncActionValue.NewsletterSavedInterestsAction", [["newsletterSavedInterests", 2, -1, 4, ""]]], ["SyncActionValue.NoteEditAction", [["type", 1, 158, 4, ""], ["chatJid", 2, -1, 4, ""], ["createdAt", 8, -1, 4, ""], ["deleted", 3, -1, 4, ""], ["unstructuredContent", 2, -1, 4, ""]]], ["SyncActionValue.NotificationActivitySettingAction", [["notificationActivitySetting", 1, 159, 4, ""]]], ["SyncActionValue.NuxAction", [["acknowledged", 3, -1, 4, ""]]], ["SyncActionValue.PaymentInfoAction", [["cpi", 2, -1, 4, ""]]], ["SyncActionValue.PaymentTosAction", [["paymentNotice", 1, 160, 0, ""], ["accepted", 3, -1, 0, ""]]], ["SyncActionValue.PinAction", [["pinned", 3, -1, 4, ""]]], ["SyncActionValue.PnForLidChatAction", [["pnJid", 2, -1, 4, ""]]], ["SyncActionValue.PrimaryFeature", [["flags", 2, -1, 1, ""]]], ["SyncActionValue.PrimaryVersionAction", [["version", 2, -1, 4, ""]]], ["SyncActionValue.PrivacySettingChannelsPersonalisedRecommendationAction", [["isUserOptedOut", 3, -1, 4, ""]]], ["SyncActionValue.PrivacySettingDisableLinkPreviewsAction", [["isPreviewsDisabled", 3, -1, 4, ""]]], ["SyncActionValue.PrivacySettingRelayAllCalls", [["isEnabled", 3, -1, 4, ""]]], ["SyncActionValue.PrivateProcessingSettingAction", [["privateProcessingStatus", 1, 161, 4, ""]]], ["SyncActionValue.PushNameSetting", [["name", 2, -1, 4, ""]]], ["SyncActionValue.QuickReplyAction", [["shortcut", 2, -1, 4, ""], ["message", 2, -1, 4, ""], ["keywords", 2, -1, 1, ""], ["count", 6, -1, 4, ""], ["deleted", 3, -1, 4, ""]]], ["SyncActionValue.RecentEmojiWeightsAction", [["weights", 0, 366, 1, ""]]], ["SyncActionValue.RemoveRecentStickerAction", [["lastStickerSentTs", 8, -1, 4, ""]]], ["SyncActionValue.StarAction", [["starred", 3, -1, 4, ""]]], ["SyncActionValue.StatusPostOptInNotificationPreferencesAction", [["enabled", 3, -1, 4, ""]]], ["SyncActionValue.StatusPrivacyAction", [["mode", 1, 162, 4, ""], ["userJid", 2, -1, 1, ""]]], ["SyncActionValue.StickerAction", [["url", 2, -1, 4, ""], ["fileEncSha256", 4, -1, 4, ""], ["mediaKey", 4, -1, 4, ""], ["mimetype", 2, -1, 4, ""], ["height", 7, -1, 4, ""], ["width", 7, -1, 4, ""], ["directPath", 2, -1, 4, ""], ["fileLength", 9, -1, 4, ""], ["isFavorite", 3, -1, 4, ""], ["deviceIdHint", 7, -1, 4, ""], ["isLottie", 3, -1, 4, ""], ["imageHash", 2, -1, 4, ""], ["isAvatarSticker", 3, -1, 4, ""]]], ["SyncActionValue.SubscriptionAction", [["isDeactivated", 3, -1, 4, ""], ["isAutoRenewing", 3, -1, 4, ""], ["expirationDate", 8, -1, 4, ""]]], ["SyncActionValue.SyncActionMessage", [["key", 0, 330, 4, ""], ["timestamp", 8, -1, 4, ""]]], ["SyncActionValue.SyncActionMessageRange", [["lastMessageTimestamp", 8, -1, 4, ""], ["lastSystemMessageTimestamp", 8, -1, 4, ""], ["messages", 0, 463, 1, ""]]], ["SyncActionValue.TimeFormatAction", [["isTwentyFourHourFormatEnabled", 3, -1, 4, ""]]], ["SyncActionValue.UGCBot", [["definition", 4, -1, 4, ""]]], ["SyncActionValue.UnarchiveChatsSetting", [["unarchiveChats", 3, -1, 4, ""]]], ["SyncActionValue.UsernameChatStartModeAction", [["chatStartMode", 1, 163, 4, ""]]], ["SyncActionValue.UserStatusMuteAction", [["muted", 3, -1, 4, ""]]], ["SyncActionValue.WaffleAccountLinkStateAction", [["linkState", 1, 164, 4, ""]]], ["SyncActionValue.WamoUserIdentifierAction", [["identifier", 2, -1, 4, ""]]], ["SyncdIndex", [["blob", 4, -1, 4, ""]]], ["SyncdMutation", [["operation", 1, 165, 4, ""], ["record", 0, 476, 4, ""]]], ["SyncdMutations", [["mutations", 0, 473, 1, ""]]], ["SyncdPatch", [["version", 0, 479, 4, ""], ["mutations", 0, 473, 1, ""], ["externalMutations", 0, 140, 4, ""], ["snapshotMac", 4, -1, 4, ""], ["patchMac", 4, -1, 4, ""], ["keyId", 0, 167, 4, ""], ["exitCode", 0, 139, 4, ""], ["deviceIndex", 7, -1, 4, ""], ["clientDebugData", 4, -1, 4, ""]]], ["SyncdRecord", [["index", 0, 472, 4, ""], ["value", 0, 478, 4, ""], ["keyId", 0, 167, 4, ""]]], ["SyncdSnapshot", [["version", 0, 479, 4, ""], ["records", 0, 476, 1, ""], ["mac", 4, -1, 4, ""], ["keyId", 0, 167, 4, ""]]], ["SyncdValue", [["blob", 4, -1, 4, ""]]], ["SyncdVersion", [["version", 9, -1, 4, ""]]], ["TapLinkAction", [["title", 2, -1, 4, ""], ["tapUrl", 2, -1, 4, ""]]], ["TemplateButton", [["index", 7, -1, 4, ""], ["quickReplyButton", 0, 483, 8, "button"], ["urlButton", 0, 484, 8, "button"], ["callButton", 0, 482, 8, "button"]]], ["TemplateButton.CallButton", [["displayText", 0, 217, 4, ""], ["phoneNumber", 0, 217, 4, ""]]], ["TemplateButton.QuickReplyButton", [["displayText", 0, 217, 4, ""], ["id", 2, -1, 4, ""]]], ["TemplateButton.URLButton", [["displayText", 0, 217, 4, ""], ["url", 0, 217, 4, ""]]], ["ThreadID", [["threadType", 1, 166, 4, ""], ["threadKey", 0, 330, 4, ""]]], ["UrlTrackingMap", [["urlTrackingMapElements", 0, 487, 1, ""]]], ["UrlTrackingMap.UrlTrackingMapElement", [["originalUrl", 2, -1, 4, ""], ["unconsentedUsersUrl", 2, -1, 4, ""], ["consentedUsersUrl", 2, -1, 4, ""], ["cardIndex", 7, -1, 4, ""]]], ["UserPassword", [["encoding", 1, 167, 4, ""], ["transformer", 1, 168, 4, ""], ["transformerArg", 0, 489, 1, ""], ["transformedData", 4, -1, 4, ""]]], ["UserPassword.TransformerArg", [["key", 2, -1, 4, ""], ["value", 0, 490, 4, ""]]], ["UserPassword.TransformerArg.Value", [["asBlob", 4, -1, 8, "value"], ["asUnsignedInteger", 7, -1, 8, "value"]]], ["UserReceipt", [["userJid", 2, -1, 0, ""], ["receiptTimestamp", 8, -1, 4, ""], ["readTimestamp", 8, -1, 4, ""], ["playedTimestamp", 8, -1, 4, ""], ["pendingDeviceJid", 2, -1, 1, ""], ["deliveredDeviceJid", 2, -1, 1, ""]]], ["VerifiedNameCertificate", [["details", 4, -1, 4, ""], ["signature", 4, -1, 4, ""], ["serverSignature", 4, -1, 4, ""]]], ["VerifiedNameCertificate.Details", [["serial", 9, -1, 4, ""], ["issuer", 2, -1, 4, ""], ["verifiedName", 2, -1, 4, ""], ["localizedNames", 0, 173, 1, ""], ["issueTime", 9, -1, 4, ""]]], ["WallpaperSettings", [["filename", 2, -1, 4, ""], ["opacity", 7, -1, 4, ""]]], ["WebFeatures", [["labelsDisplay", 1, 169, 4, ""], ["voipIndividualOutgoing", 1, 169, 4, ""], ["groupsV3", 1, 169, 4, ""], ["groupsV3Create", 1, 169, 4, ""], ["changeNumberV2", 1, 169, 4, ""], ["queryStatusV3Thumbnail", 1, 169, 4, ""], ["liveLocations", 1, 169, 4, ""], ["queryVname", 1, 169, 4, ""], ["voipIndividualIncoming", 1, 169, 4, ""], ["quickRepliesQuery", 1, 169, 4, ""], ["payments", 1, 169, 4, ""], ["stickerPackQuery", 1, 169, 4, ""], ["liveLocationsFinal", 1, 169, 4, ""], ["labelsEdit", 1, 169, 4, ""], ["mediaUpload", 1, 169, 4, ""], ["mediaUploadRichQuickReplies", 1, 169, 4, ""], ["vnameV2", 1, 169, 4, ""], ["videoPlaybackUrl", 1, 169, 4, ""], ["statusRanking", 1, 169, 4, ""], ["voipIndividualVideo", 1, 169, 4, ""], ["thirdPartyStickers", 1, 169, 4, ""], ["frequentlyForwardedSetting", 1, 169, 4, ""], ["groupsV4JoinPermission", 1, 169, 4, ""], ["recentStickers", 1, 169, 4, ""], ["catalog", 1, 169, 4, ""], ["starredStickers", 1, 169, 4, ""], ["voipGroupCall", 1, 169, 4, ""], ["templateMessage", 1, 169, 4, ""], ["templateMessageInteractivity", 1, 169, 4, ""], ["ephemeralMessages", 1, 169, 4, ""], ["e2ENotificationSync", 1, 169, 4, ""], ["recentStickersV2", 1, 169, 4, ""], ["recentStickersV3", 1, 169, 4, ""], ["userNotice", 1, 169, 4, ""], ["support", 1, 169, 4, ""], ["groupUiiCleanup", 1, 169, 4, ""], ["groupDogfoodingInternalOnly", 1, 169, 4, ""], ["settingsSync", 1, 169, 4, ""], ["archiveV2", 1, 169, 4, ""], ["ephemeralAllowGroupMembers", 1, 169, 4, ""], ["ephemeral24HDuration", 1, 169, 4, ""], ["mdForceUpgrade", 1, 169, 4, ""], ["disappearingMode", 1, 169, 4, ""], ["externalMdOptInAvailable", 1, 169, 4, ""], ["noDeleteMessageTimeLimit", 1, 169, 4, ""]]], ["WebMessageInfo", [["key", 0, 330, 0, ""], ["message", 0, 179, 4, ""], ["messageTimestamp", 9, -1, 4, ""], ["status", 1, 172, 4, ""], ["participant", 2, -1, 4, ""], ["messageC2STimestamp", 9, -1, 4, ""], ["ignore", 3, -1, 4, ""], ["starred", 3, -1, 4, ""], ["broadcast", 3, -1, 4, ""], ["pushName", 2, -1, 4, ""], ["mediaCiphertextSha256", 4, -1, 4, ""], ["multicast", 3, -1, 4, ""], ["urlText", 3, -1, 4, ""], ["urlNumber", 3, -1, 4, ""], ["messageStubType", 1, 173, 4, ""], ["clearMedia", 3, -1, 4, ""], ["messageStubParameters", 2, -1, 1, ""], ["duration", 7, -1, 4, ""], ["labels", 2, -1, 1, ""], ["paymentInfo", 0, 349, 4, ""], ["finalLiveLocation", 0, 251, 4, ""], ["quotedPaymentInfo", 0, 349, 4, ""], ["ephemeralStartTimestamp", 9, -1, 4, ""], ["ephemeralDuration", 7, -1, 4, ""], ["ephemeralOffToOn", 3, -1, 4, ""], ["ephemeralOutOfSync", 3, -1, 4, ""], ["bizPrivacyStatus", 1, 171, 4, ""], ["verifiedBizName", 2, -1, 4, ""], ["mediaData", 0, 175, 4, ""], ["photoChange", 0, 351, 4, ""], ["userReceipt", 0, 491, 1, ""], ["reactions", 0, 365, 1, ""], ["quotedStickerData", 0, 175, 4, ""], ["futureproofData", 4, -1, 4, ""], ["statusPsa", 0, 396, 4, ""], ["pollUpdates", 0, 356, 1, ""], ["pollAdditionalMetadata", 0, 354, 4, ""], ["agentId", 2, -1, 4, ""], ["statusAlreadyViewed", 3, -1, 4, ""], ["messageSecret", 4, -1, 4, ""], ["keepInChat", 0, 165, 4, ""], ["originalSelfAuthorUserJidString", 2, -1, 4, ""], ["revokeMessageTimestamp", 9, -1, 4, ""], ["pinInChat", 0, 352, 4, ""], ["premiumMessageInfo", 0, 359, 4, ""], ["is1PBizBotMessage", 3, -1, 4, ""], ["isGroupHistoryMessage", 3, -1, 4, ""], ["botMessageInvokerJid", 2, -1, 4, ""], ["commentMetadata", 0, 106, 4, ""], ["eventResponses", 0, 138, 1, ""], ["reportingTokenInfo", 0, 369, 4, ""], ["newsletterServerId", 9, -1, 4, ""], ["eventAdditionalMetadata", 0, 137, 4, ""], ["isMentionedInStatus", 3, -1, 4, ""], ["statusMentions", 2, -1, 1, ""], ["targetMessageId", 0, 330, 4, ""], ["messageAddOns", 0, 326, 1, ""], ["statusMentionMessageInfo", 0, 395, 4, ""], ["isSupportAiMessage", 3, -1, 4, ""], ["statusMentionSources", 2, -1, 1, ""], ["supportAiCitations", 0, 96, 1, ""], ["botTargetId", 2, -1, 4, ""], ["groupHistoryIndividualMessageInfo", 0, 145, 4, ""], ["groupHistoryBundleInfo", 0, 144, 4, ""], ["interactiveMessageAdditionalMetadata", 0, 160, 4, ""], ["quarantinedMessage", 0, 364, 4, ""]]], ["WebNotificationsInfo", [["timestamp", 9, -1, 4, ""], ["unreadChats", 7, -1, 4, ""], ["notifyMessageCount", 7, -1, 4, ""], ["notifyMessages", 0, 496, 1, ""]]]];
5
5
  export const PROTO_ENUM_SCHEMAS = [["ADVEncryptionType", ["E2EE", 0, "HOSTED", 1]], ["AIHomeState.AIHomeOption.AIHomeActionType", ["PROMPT", 0, "CREATE_IMAGE", 1, "ANIMATE_PHOTO", 2, "ANALYZE_FILE", 3]], ["AIRichResponseCodeMetadata.AIRichResponseCodeHighlightType", ["AI_RICH_RESPONSE_CODE_HIGHLIGHT_DEFAULT", 0, "AI_RICH_RESPONSE_CODE_HIGHLIGHT_KEYWORD", 1, "AI_RICH_RESPONSE_CODE_HIGHLIGHT_METHOD", 2, "AI_RICH_RESPONSE_CODE_HIGHLIGHT_STRING", 3, "AI_RICH_RESPONSE_CODE_HIGHLIGHT_NUMBER", 4, "AI_RICH_RESPONSE_CODE_HIGHLIGHT_COMMENT", 5]], ["AIRichResponseContentItemsMetadata.ContentType", ["DEFAULT", 0, "CAROUSEL", 1]], ["AIRichResponseDynamicMetadata.AIRichResponseDynamicMetadataType", ["AI_RICH_RESPONSE_DYNAMIC_METADATA_TYPE_UNKNOWN", 0, "AI_RICH_RESPONSE_DYNAMIC_METADATA_TYPE_IMAGE", 1, "AI_RICH_RESPONSE_DYNAMIC_METADATA_TYPE_GIF", 2]], ["AIRichResponseInlineImageMetadata.AIRichResponseImageAlignment", ["AI_RICH_RESPONSE_IMAGE_LAYOUT_LEADING_ALIGNED", 0, "AI_RICH_RESPONSE_IMAGE_LAYOUT_TRAILING_ALIGNED", 1, "AI_RICH_RESPONSE_IMAGE_LAYOUT_CENTER_ALIGNED", 2]], ["AIRichResponseMessageType", ["AI_RICH_RESPONSE_TYPE_UNKNOWN", 0, "AI_RICH_RESPONSE_TYPE_STANDARD", 1]], ["AIRichResponseSubMessageType", ["AI_RICH_RESPONSE_UNKNOWN", 0, "AI_RICH_RESPONSE_GRID_IMAGE", 1, "AI_RICH_RESPONSE_TEXT", 2, "AI_RICH_RESPONSE_INLINE_IMAGE", 3, "AI_RICH_RESPONSE_TABLE", 4, "AI_RICH_RESPONSE_CODE", 5, "AI_RICH_RESPONSE_DYNAMIC", 6, "AI_RICH_RESPONSE_MAP", 7, "AI_RICH_RESPONSE_LATEX", 8, "AI_RICH_RESPONSE_CONTENT_ITEMS", 9]], ["AIThreadInfo.AIThreadClientInfo.AIThreadType", ["UNKNOWN", 0, "DEFAULT", 1, "INCOGNITO", 2]], ["BizAccountLinkInfo.AccountType", ["ENTERPRISE", 0]], ["BizAccountLinkInfo.HostStorageType", ["ON_PREMISE", 0, "FACEBOOK", 1]], ["BizIdentityInfo.ActualActorsType", ["SELF", 0, "BSP", 1]], ["BizIdentityInfo.HostStorageType", ["ON_PREMISE", 0, "FACEBOOK", 1]], ["BizIdentityInfo.VerifiedLevelValue", ["UNKNOWN", 0, "LOW", 1, "HIGH", 2]], ["BotAgeCollectionMetadata.AgeCollectionType", ["O18_BINARY", 0, "WAFFLE", 1]], ["BotCapabilityMetadata.BotCapabilityType", ["UNKNOWN", 0, "PROGRESS_INDICATOR", 1, "RICH_RESPONSE_HEADING", 2, "RICH_RESPONSE_NESTED_LIST", 3, "AI_MEMORY", 4, "RICH_RESPONSE_THREAD_SURFING", 5, "RICH_RESPONSE_TABLE", 6, "RICH_RESPONSE_CODE", 7, "RICH_RESPONSE_STRUCTURED_RESPONSE", 8, "RICH_RESPONSE_INLINE_IMAGE", 9, "WA_IG_1P_PLUGIN_RANKING_CONTROL", 10, "WA_IG_1P_PLUGIN_RANKING_UPDATE_1", 11, "WA_IG_1P_PLUGIN_RANKING_UPDATE_2", 12, "WA_IG_1P_PLUGIN_RANKING_UPDATE_3", 13, "WA_IG_1P_PLUGIN_RANKING_UPDATE_4", 14, "WA_IG_1P_PLUGIN_RANKING_UPDATE_5", 15, "WA_IG_1P_PLUGIN_RANKING_UPDATE_6", 16, "WA_IG_1P_PLUGIN_RANKING_UPDATE_7", 17, "WA_IG_1P_PLUGIN_RANKING_UPDATE_8", 18, "WA_IG_1P_PLUGIN_RANKING_UPDATE_9", 19, "WA_IG_1P_PLUGIN_RANKING_UPDATE_10", 20, "RICH_RESPONSE_SUB_HEADING", 21, "RICH_RESPONSE_GRID_IMAGE", 22, "AI_STUDIO_UGC_MEMORY", 23, "RICH_RESPONSE_LATEX", 24, "RICH_RESPONSE_MAPS", 25, "RICH_RESPONSE_INLINE_REELS", 26, "AGENTIC_PLANNING", 27, "ACCOUNT_LINKING", 28, "STREAMING_DISAGGREGATION", 29, "RICH_RESPONSE_GRID_IMAGE_3P", 30, "RICH_RESPONSE_LATEX_INLINE", 31, "QUERY_PLAN", 32, "PROACTIVE_MESSAGE", 33, "RICH_RESPONSE_UNIFIED_RESPONSE", 34, "PROMOTION_MESSAGE", 35, "SIMPLIFIED_PROFILE_PAGE", 36, "RICH_RESPONSE_SOURCES_IN_MESSAGE", 37, "RICH_RESPONSE_SIDE_BY_SIDE_SURVEY", 38, "RICH_RESPONSE_UNIFIED_TEXT_COMPONENT", 39, "AI_SHARED_MEMORY", 40, "RICH_RESPONSE_UNIFIED_SOURCES", 41, "RICH_RESPONSE_UNIFIED_DOMAIN_CITATIONS", 42, "RICH_RESPONSE_UR_INLINE_REELS_ENABLED", 43, "RICH_RESPONSE_UR_MEDIA_GRID_ENABLED", 44, "RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER", 45, "RICH_RESPONSE_IN_APP_SURVEY", 46, "AI_RESPONSE_MODEL_BRANDING", 47, "SESSION_TRANSPARENCY_SYSTEM_MESSAGE", 48, "RICH_RESPONSE_UR_REASONING", 49]], ["BotFeedbackMessage.BotFeedbackKind", ["BOT_FEEDBACK_POSITIVE", 0, "BOT_FEEDBACK_NEGATIVE_GENERIC", 1, "BOT_FEEDBACK_NEGATIVE_HELPFUL", 2, "BOT_FEEDBACK_NEGATIVE_INTERESTING", 3, "BOT_FEEDBACK_NEGATIVE_ACCURATE", 4, "BOT_FEEDBACK_NEGATIVE_SAFE", 5, "BOT_FEEDBACK_NEGATIVE_OTHER", 6, "BOT_FEEDBACK_NEGATIVE_REFUSED", 7, "BOT_FEEDBACK_NEGATIVE_NOT_VISUALLY_APPEALING", 8, "BOT_FEEDBACK_NEGATIVE_NOT_RELEVANT_TO_TEXT", 9, "BOT_FEEDBACK_NEGATIVE_PERSONALIZED", 10, "BOT_FEEDBACK_NEGATIVE_CLARITY", 11, "BOT_FEEDBACK_NEGATIVE_DOESNT_LOOK_LIKE_THE_PERSON", 12, "BOT_FEEDBACK_NEGATIVE_HALLUCINATION_INTERNAL_ONLY", 13, "BOT_FEEDBACK_NEGATIVE", 14]], ["BotFeedbackMessage.BotFeedbackKindMultipleNegative", ["BOT_FEEDBACK_MULTIPLE_NEGATIVE_GENERIC", 1, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_HELPFUL", 2, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_INTERESTING", 4, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_ACCURATE", 8, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_SAFE", 16, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_OTHER", 32, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_REFUSED", 64, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_NOT_VISUALLY_APPEALING", 128, "BOT_FEEDBACK_MULTIPLE_NEGATIVE_NOT_RELEVANT_TO_TEXT", 256]], ["BotFeedbackMessage.BotFeedbackKindMultiplePositive", ["BOT_FEEDBACK_MULTIPLE_POSITIVE_GENERIC", 1]], ["BotFeedbackMessage.ReportKind", ["NONE", 0, "GENERIC", 1]], ["BotImagineMetadata.ImagineType", ["UNKNOWN", 0, "IMAGINE", 1, "MEMU", 2, "FLASH", 3, "EDIT", 4]], ["BotLinkedAccount.BotLinkedAccountType", ["BOT_LINKED_ACCOUNT_TYPE_1P", 0]], ["BotMediaMetadata.OrientationType", ["CENTER", 1, "LEFT", 2, "RIGHT", 3]], ["BotMessageOrigin.BotMessageOriginType", ["BOT_MESSAGE_ORIGIN_TYPE_AI_INITIATED", 0]], ["BotMetricsEntryPoint", ["UNDEFINED_ENTRY_POINT", 0, "FAVICON", 1, "CHATLIST", 2, "AISEARCH_NULL_STATE_PAPER_PLANE", 3, "AISEARCH_NULL_STATE_SUGGESTION", 4, "AISEARCH_TYPE_AHEAD_SUGGESTION", 5, "AISEARCH_TYPE_AHEAD_PAPER_PLANE", 6, "AISEARCH_TYPE_AHEAD_RESULT_CHATLIST", 7, "AISEARCH_TYPE_AHEAD_RESULT_MESSAGES", 8, "AIVOICE_SEARCH_BAR", 9, "AIVOICE_FAVICON", 10, "AISTUDIO", 11, "DEEPLINK", 12, "NOTIFICATION", 13, "PROFILE_MESSAGE_BUTTON", 14, "FORWARD", 15, "APP_SHORTCUT", 16, "FF_FAMILY", 17, "AI_TAB", 18, "AI_HOME", 19, "AI_DEEPLINK_IMMERSIVE", 20, "AI_DEEPLINK", 21, "META_AI_CHAT_SHORTCUT_AI_STUDIO", 22, "UGC_CHAT_SHORTCUT_AI_STUDIO", 23, "NEW_CHAT_AI_STUDIO", 24, "AIVOICE_FAVICON_CALL_HISTORY", 25, "ASK_META_AI_CONTEXT_MENU", 26, "ASK_META_AI_CONTEXT_MENU_1ON1", 27, "ASK_META_AI_CONTEXT_MENU_GROUP", 28, "INVOKE_META_AI_1ON1", 29, "INVOKE_META_AI_GROUP", 30, "META_AI_FORWARD", 31, "NEW_CHAT_AI_CONTACT", 32, "MESSAGE_QUICK_ACTION_1_ON_1_CHAT", 33, "MESSAGE_QUICK_ACTION_GROUP_CHAT", 34, "ATTACHMENT_TRAY_1_ON_1_CHAT", 35, "ATTACHMENT_TRAY_GROUP_CHAT", 36, "ASK_META_AI_MEDIA_VIEWER_1ON1", 37, "ASK_META_AI_MEDIA_VIEWER_GROUP", 38]], ["BotMetricsThreadEntryPoint", ["AI_TAB_THREAD", 1, "AI_HOME_THREAD", 2, "AI_DEEPLINK_IMMERSIVE_THREAD", 3, "AI_DEEPLINK_THREAD", 4, "ASK_META_AI_CONTEXT_MENU_THREAD", 5]], ["BotModelMetadata.ModelType", ["UNKNOWN_TYPE", 0, "LLAMA_PROD", 1, "LLAMA_PROD_PREMIUM", 2]], ["BotModelMetadata.PremiumModelStatus", ["UNKNOWN_STATUS", 0, "AVAILABLE", 1, "QUOTA_EXCEED_LIMIT", 2]], ["BotModeSelectionMetadata.BotUserSelectionMode", ["UNKNOWN_MODE", 0, "REASONING_MODE", 1]], ["BotPluginMetadata.PluginType", ["UNKNOWN_PLUGIN", 0, "REELS", 1, "SEARCH", 2]], ["BotPluginMetadata.SearchProvider", ["UNKNOWN", 0, "BING", 1, "GOOGLE", 2, "SUPPORT", 3]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.BotPlanningSearchSourceProvider", ["UNKNOWN", 0, "OTHER", 1, "GOOGLE", 2, "BING", 3]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotSearchSourceProvider", ["UNKNOWN_PROVIDER", 0, "OTHER", 1, "GOOGLE", 2, "BING", 3]], ["BotProgressIndicatorMetadata.BotPlanningStepMetadata.PlanningStepStatus", ["UNKNOWN", 0, "PLANNED", 1, "EXECUTING", 2, "FINISHED", 3]], ["BotPromotionMessageMetadata.BotPromotionType", ["UNKNOWN_TYPE", 0, "C50", 1, "SURVEY_PLATFORM", 2]], ["BotQuotaMetadata.BotFeatureQuotaMetadata.BotFeatureType", ["UNKNOWN_FEATURE", 0, "REASONING_FEATURE", 1]], ["BotReminderMetadata.ReminderAction", ["NOTIFY", 1, "CREATE", 2, "DELETE", 3, "UPDATE", 4]], ["BotReminderMetadata.ReminderFrequency", ["ONCE", 1, "DAILY", 2, "WEEKLY", 3, "BIWEEKLY", 4, "MONTHLY", 5]], ["BotSessionSource", ["NONE", 0, "NULL_STATE", 1, "TYPEAHEAD", 2, "USER_INPUT", 3, "EMU_FLASH", 4, "EMU_FLASH_FOLLOWUP", 5, "VOICE", 6]], ["BotSignatureVerificationUseCaseProof.BotSignatureUseCase", ["UNSPECIFIED", 0, "WA_BOT_MSG", 1]], ["BotSourcesMetadata.BotSourceItem.SourceProvider", ["UNKNOWN", 0, "BING", 1, "GOOGLE", 2, "SUPPORT", 3, "OTHER", 4]], ["CallLogRecord.CallResult", ["CONNECTED", 0, "REJECTED", 1, "CANCELLED", 2, "ACCEPTEDELSEWHERE", 3, "MISSED", 4, "INVALID", 5, "UNAVAILABLE", 6, "UPCOMING", 7, "FAILED", 8, "ABANDONED", 9, "ONGOING", 10]], ["CallLogRecord.CallType", ["REGULAR", 0, "SCHEDULED_CALL", 1, "VOICE_CHAT", 2]], ["CallLogRecord.SilenceReason", ["NONE", 0, "SCHEDULED", 1, "PRIVACY", 2, "LIGHTWEIGHT", 3]], ["ChatRowOpaqueData.DraftMessage.CtwaContextData.ContextInfoExternalAdReplyInfoMediaType", ["NONE", 0, "IMAGE", 1, "VIDEO", 2]], ["ClientPayload.AccountType", ["DEFAULT", 0, "GUEST", 1]], ["ClientPayload.ConnectReason", ["PUSH", 0, "USER_ACTIVATED", 1, "SCHEDULED", 2, "ERROR_RECONNECT", 3, "NETWORK_SWITCH", 4, "PING_RECONNECT", 5, "UNKNOWN", 6]], ["ClientPayload.ConnectType", ["CELLULAR_UNKNOWN", 0, "WIFI_UNKNOWN", 1, "CELLULAR_EDGE", 100, "CELLULAR_IDEN", 101, "CELLULAR_UMTS", 102, "CELLULAR_EVDO", 103, "CELLULAR_GPRS", 104, "CELLULAR_HSDPA", 105, "CELLULAR_HSUPA", 106, "CELLULAR_HSPA", 107, "CELLULAR_CDMA", 108, "CELLULAR_1XRTT", 109, "CELLULAR_EHRPD", 110, "CELLULAR_LTE", 111, "CELLULAR_HSPAP", 112]], ["ClientPayload.DNSSource.DNSResolutionMethod", ["SYSTEM", 0, "GOOGLE", 1, "HARDCODED", 2, "OVERRIDE", 3, "FALLBACK", 4, "MNS", 5]], ["ClientPayload.IOSAppExtension", ["SHARE_EXTENSION", 0, "SERVICE_EXTENSION", 1, "INTENTS_EXTENSION", 2]], ["ClientPayload.Product", ["WHATSAPP", 0, "MESSENGER", 1, "INTEROP", 2, "INTEROP_MSGR", 3, "WHATSAPP_LID", 4]], ["ClientPayload.TrafficAnonymization", ["OFF", 0, "STANDARD", 1]], ["ClientPayload.UserAgent.DeviceType", ["PHONE", 0, "TABLET", 1, "DESKTOP", 2, "WEARABLE", 3, "VR", 4]], ["ClientPayload.UserAgent.Platform", ["ANDROID", 0, "IOS", 1, "WINDOWS_PHONE", 2, "BLACKBERRY", 3, "BLACKBERRYX", 4, "S40", 5, "S60", 6, "PYTHON_CLIENT", 7, "TIZEN", 8, "ENTERPRISE", 9, "SMB_ANDROID", 10, "KAIOS", 11, "SMB_IOS", 12, "WINDOWS", 13, "WEB", 14, "PORTAL", 15, "GREEN_ANDROID", 16, "GREEN_IPHONE", 17, "BLUE_ANDROID", 18, "BLUE_IPHONE", 19, "FBLITE_ANDROID", 20, "MLITE_ANDROID", 21, "IGLITE_ANDROID", 22, "PAGE", 23, "MACOS", 24, "OCULUS_MSG", 25, "OCULUS_CALL", 26, "MILAN", 27, "CAPI", 28, "WEAROS", 29, "ARDEVICE", 30, "VRDEVICE", 31, "BLUE_WEB", 32, "IPAD", 33, "TEST", 34, "SMART_GLASSES", 35, "BLUE_VR", 36, "AR_WRIST", 37]], ["ClientPayload.UserAgent.ReleaseChannel", ["RELEASE", 0, "BETA", 1, "ALPHA", 2, "DEBUG", 3]], ["ClientPayload.WebInfo.WebSubPlatform", ["WEB_BROWSER", 0, "APP_STORE", 1, "WIN_STORE", 2, "DARWIN", 3, "WIN32", 4, "WIN_HYBRID", 5]], ["CollectionName", ["COLLECTION_NAME_UNKNOWN", 0, "REGULAR", 1, "REGULAR_LOW", 2, "REGULAR_HIGH", 3, "CRITICAL_BLOCK", 4, "CRITICAL_UNBLOCK_LOW", 5]], ["ContextInfo.AdReplyInfo.MediaType", ["NONE", 0, "IMAGE", 1, "VIDEO", 2]], ["ContextInfo.DataSharingContext.DataSharingFlags", ["SHOW_MM_DISCLOSURE_ON_CLICK", 1, "SHOW_MM_DISCLOSURE_ON_READ", 2]], ["ContextInfo.ExternalAdReplyInfo.AdType", ["CTWA", 0, "CAWC", 1]], ["ContextInfo.ExternalAdReplyInfo.MediaType", ["NONE", 0, "IMAGE", 1, "VIDEO", 2]], ["ContextInfo.ForwardedNewsletterMessageInfo.ContentType", ["UPDATE", 1, "UPDATE_CARD", 2, "LINK_CARD", 3]], ["ContextInfo.ForwardOrigin", ["UNKNOWN", 0, "CHAT", 1, "STATUS", 2, "CHANNELS", 3, "META_AI", 4, "UGC", 5]], ["ContextInfo.PairedMediaType", ["NOT_PAIRED_MEDIA", 0, "SD_VIDEO_PARENT", 1, "HD_VIDEO_CHILD", 2, "SD_IMAGE_PARENT", 3, "HD_IMAGE_CHILD", 4, "MOTION_PHOTO_PARENT", 5, "MOTION_PHOTO_CHILD", 6, "HEVC_VIDEO_PARENT", 7, "HEVC_VIDEO_CHILD", 8]], ["ContextInfo.QuotedType", ["EXPLICIT", 0, "AUTO", 1]], ["ContextInfo.StatusAttributionType", ["NONE", 0, "RESHARED_FROM_MENTION", 1, "RESHARED_FROM_POST", 2, "RESHARED_FROM_POST_MANY_TIMES", 3, "FORWARDED_FROM_STATUS", 4]], ["ContextInfo.StatusAudienceMetadata.AudienceType", ["UNKNOWN", 0, "CLOSE_FRIENDS", 1]], ["ContextInfo.StatusSourceType", ["IMAGE", 0, "VIDEO", 1, "GIF", 2, "AUDIO", 3, "TEXT", 4, "MUSIC_STANDALONE", 5]], ["Conversation.EndOfHistoryTransferType", ["COMPLETE_BUT_MORE_MESSAGES_REMAIN_ON_PRIMARY", 0, "COMPLETE_AND_NO_MORE_MESSAGE_REMAIN_ON_PRIMARY", 1, "COMPLETE_ON_DEMAND_SYNC_BUT_MORE_MSG_REMAIN_ON_PRIMARY", 2]], ["DeviceCapabilities.ChatLockSupportLevel", ["NONE", 0, "MINIMAL", 1, "FULL", 2]], ["DeviceCapabilities.MemberNameTagPrimarySupport", ["DISABLED", 0, "RECEIVER_ENABLED", 1, "SENDER_ENABLED", 2]], ["DeviceProps.PlatformType", ["UNKNOWN", 0, "CHROME", 1, "FIREFOX", 2, "IE", 3, "OPERA", 4, "SAFARI", 5, "EDGE", 6, "DESKTOP", 7, "IPAD", 8, "ANDROID_TABLET", 9, "OHANA", 10, "ALOHA", 11, "CATALINA", 12, "TCL_TV", 13, "IOS_PHONE", 14, "IOS_CATALYST", 15, "ANDROID_PHONE", 16, "ANDROID_AMBIGUOUS", 17, "WEAR_OS", 18, "AR_WRIST", 19, "AR_DEVICE", 20, "UWP", 21, "VR", 22, "CLOUD_API", 23, "SMARTGLASSES", 24]], ["DisappearingMode.Initiator", ["CHANGED_IN_CHAT", 0, "INITIATED_BY_ME", 1, "INITIATED_BY_OTHER", 2, "BIZ_UPGRADE_FB_HOSTING", 3]], ["DisappearingMode.Trigger", ["UNKNOWN", 0, "CHAT_SETTING", 1, "ACCOUNT_SETTING", 2, "BULK_CHANGE", 3, "BIZ_SUPPORTS_FB_HOSTING", 4, "UNKNOWN_GROUPS", 5]], ["GroupHistoryBundleInfo.ProcessState", ["NOT_INJECTED", 0, "INJECTED", 1, "INJECTED_PARTIAL", 2, "INJECTION_FAILED", 3, "INJECTION_FAILED_NO_RETRY", 4]], ["GroupParticipant.Rank", ["REGULAR", 0, "ADMIN", 1, "SUPERADMIN", 2]], ["HistorySync.BotAIWaitListState", ["IN_WAITLIST", 0, "AI_AVAILABLE", 1]], ["HistorySync.HistorySyncType", ["INITIAL_BOOTSTRAP", 0, "INITIAL_STATUS_V3", 1, "FULL", 2, "RECENT", 3, "PUSH_NAME", 4, "NON_BLOCKING_DATA", 5, "ON_DEMAND", 6]], ["HydratedTemplateButton.HydratedURLButton.WebviewPresentationType", ["FULL", 1, "TALL", 2, "COMPACT", 3]], ["InteractiveAnnotation.StatusLinkType", ["RASTERIZED_LINK_PREVIEW", 1, "RASTERIZED_LINK_TRUNCATED", 2, "RASTERIZED_LINK_FULL_URL", 3]], ["KeepType", ["UNKNOWN", 0, "KEEP_FOR_ALL", 1, "UNDO_KEEP_FOR_ALL", 2]], ["LimitSharing.TriggerType", ["UNKNOWN", 0, "CHAT_SETTING", 1, "BIZ_SUPPORTS_FB_HOSTING", 2, "UNKNOWN_GROUP", 3]], ["MediaRetryNotification.ResultType", ["GENERAL_ERROR", 0, "SUCCESS", 1, "NOT_FOUND", 2, "DECRYPTION_ERROR", 3]], ["MediaVisibility", ["DEFAULT", 0, "OFF", 1, "ON", 2]], ["Message.BCallMessage.MediaType", ["UNKNOWN", 0, "AUDIO", 1, "VIDEO", 2]], ["Message.ButtonsMessage.Button.Type", ["UNKNOWN", 0, "RESPONSE", 1, "NATIVE_FLOW", 2]], ["Message.ButtonsMessage.HeaderType", ["UNKNOWN", 0, "EMPTY", 1, "TEXT", 2, "DOCUMENT", 3, "IMAGE", 4, "VIDEO", 5, "LOCATION", 6]], ["Message.ButtonsResponseMessage.Type", ["UNKNOWN", 0, "DISPLAY_TEXT", 1]], ["Message.CallLogMessage.CallOutcome", ["CONNECTED", 0, "MISSED", 1, "FAILED", 2, "REJECTED", 3, "ACCEPTED_ELSEWHERE", 4, "ONGOING", 5, "SILENCED_BY_DND", 6, "SILENCED_UNKNOWN_CALLER", 7]], ["Message.CallLogMessage.CallType", ["REGULAR", 0, "SCHEDULED_CALL", 1, "VOICE_CHAT", 2]], ["Message.CloudAPIThreadControlNotification.CloudAPIThreadControl", ["UNKNOWN", 0, "CONTROL_PASSED", 1, "CONTROL_TAKEN", 2]], ["Message.EventResponseMessage.EventResponseType", ["UNKNOWN", 0, "GOING", 1, "NOT_GOING", 2, "MAYBE", 3]], ["Message.ExtendedTextMessage.FontType", ["SYSTEM", 0, "SYSTEM_TEXT", 1, "FB_SCRIPT", 2, "SYSTEM_BOLD", 6, "MORNINGBREEZE_REGULAR", 7, "CALISTOGA_REGULAR", 8, "EXO2_EXTRABOLD", 9, "COURIERPRIME_BOLD", 10]], ["Message.ExtendedTextMessage.InviteLinkGroupType", ["DEFAULT", 0, "PARENT", 1, "SUB", 2, "DEFAULT_SUB", 3]], ["Message.ExtendedTextMessage.PreviewType", ["NONE", 0, "VIDEO", 1, "PLACEHOLDER", 4, "IMAGE", 5, "PAYMENT_LINKS", 6, "PROFILE", 7]], ["Message.GroupInviteMessage.GroupType", ["DEFAULT", 0, "PARENT", 1]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.CalendarType", ["GREGORIAN", 1, "SOLAR_HIJRI", 2]], ["Message.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.DayOfWeekType", ["MONDAY", 1, "TUESDAY", 2, "WEDNESDAY", 3, "THURSDAY", 4, "FRIDAY", 5, "SATURDAY", 6, "SUNDAY", 7]], ["Message.HistorySyncType", ["INITIAL_BOOTSTRAP", 0, "INITIAL_STATUS_V3", 1, "FULL", 2, "RECENT", 3, "PUSH_NAME", 4, "NON_BLOCKING_DATA", 5, "ON_DEMAND", 6, "NO_HISTORY", 7, "MESSAGE_ACCESS_STATUS", 8]], ["Message.ImageMessage.ImageSourceType", ["USER_IMAGE", 0, "AI_GENERATED", 1, "AI_MODIFIED", 2, "RASTERIZED_TEXT_STATUS", 3]], ["Message.InteractiveMessage.CarouselMessage.CarouselCardType", ["UNKNOWN", 0, "HSCROLL_CARDS", 1, "ALBUM_IMAGE", 2]], ["Message.InteractiveMessage.ShopMessage.Surface", ["UNKNOWN_SURFACE", 0, "FB", 1, "IG", 2, "WA", 3]], ["Message.InteractiveResponseMessage.Body.Format", ["DEFAULT", 0, "EXTENSIONS_1", 1]], ["Message.InvoiceMessage.AttachmentType", ["IMAGE", 0, "PDF", 1]], ["Message.LinkPreviewMetadata.SocialMediaPostType", ["NONE", 0, "REEL", 1, "LIVE_VIDEO", 2, "LONG_VIDEO", 3, "SINGLE_IMAGE", 4, "CAROUSEL", 5]], ["Message.ListMessage.ListType", ["UNKNOWN", 0, "SINGLE_SELECT", 1, "PRODUCT_LIST", 2]], ["Message.ListResponseMessage.ListType", ["UNKNOWN", 0, "SINGLE_SELECT", 1]], ["Message.MediaKeyDomain", ["UNSET", 0, "E2EE_CHAT", 1, "STATUS", 2, "CAPI", 3, "BOT", 4]], ["Message.OrderMessage.OrderStatus", ["INQUIRY", 1, "ACCEPTED", 2, "DECLINED", 3]], ["Message.OrderMessage.OrderSurface", ["CATALOG", 1]], ["Message.PaymentInviteMessage.ServiceType", ["UNKNOWN", 0, "FBPAY", 1, "NOVI", 2, "UPI", 3]], ["Message.PaymentLinkMetadata.PaymentLinkHeader.PaymentLinkHeaderType", ["LINK_PREVIEW", 0, "ORDER", 1]], ["Message.PeerDataOperationRequestMessage.GalaxyFlowAction.GalaxyFlowActionType", ["NOTIFY_LAUNCH", 1]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandResponseCode", ["REQUEST_SUCCESS", 0, "REQUEST_TIME_EXPIRED", 1, "DECLINED_SHARING_HISTORY", 2, "GENERIC_ERROR", 3, "ERROR_REQUEST_ON_NON_SMB_PRIMARY", 4, "ERROR_HOSTED_DEVICE_NOT_CONNECTED", 5, "ERROR_HOSTED_DEVICE_LOGIN_TIME_NOT_SET", 6]], ["Message.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponseCode", ["GENERATION_ERROR", 1, "CHUNK_CONSUMED", 2, "TIMEOUT", 3, "SESSION_EXHAUSTED", 4, "CHUNK_EXHAUSTED", 5, "DUPLICATED_REQUEST", 6]], ["Message.PeerDataOperationRequestType", ["UPLOAD_STICKER", 0, "SEND_RECENT_STICKER_BOOTSTRAP", 1, "GENERATE_LINK_PREVIEW", 2, "HISTORY_SYNC_ON_DEMAND", 3, "PLACEHOLDER_MESSAGE_RESEND", 4, "WAFFLE_LINKING_NONCE_FETCH", 5, "FULL_HISTORY_SYNC_ON_DEMAND", 6, "COMPANION_META_NONCE_FETCH", 7, "COMPANION_SYNCD_SNAPSHOT_FATAL_RECOVERY", 8, "COMPANION_CANONICAL_USER_NONCE_FETCH", 9, "HISTORY_SYNC_CHUNK_RETRY", 10, "GALAXY_FLOW_ACTION", 11]], ["Message.PinInChatMessage.Type", ["UNKNOWN_TYPE", 0, "PIN_FOR_ALL", 1, "UNPIN_FOR_ALL", 2]], ["Message.PlaceholderMessage.PlaceholderType", ["MASK_LINKED_DEVICES", 0]], ["Message.PollContentType", ["UNKNOWN", 0, "TEXT", 1, "IMAGE", 2]], ["Message.PollType", ["POLL", 0, "QUIZ", 1]], ["Message.ProtocolMessage.Type", ["REVOKE", 0, "EPHEMERAL_SETTING", 3, "EPHEMERAL_SYNC_RESPONSE", 4, "HISTORY_SYNC_NOTIFICATION", 5, "APP_STATE_SYNC_KEY_SHARE", 6, "APP_STATE_SYNC_KEY_REQUEST", 7, "MSG_FANOUT_BACKFILL_REQUEST", 8, "INITIAL_SECURITY_NOTIFICATION_SETTING_SYNC", 9, "APP_STATE_FATAL_EXCEPTION_NOTIFICATION", 10, "SHARE_PHONE_NUMBER", 11, "MESSAGE_EDIT", 14, "PEER_DATA_OPERATION_REQUEST_MESSAGE", 16, "PEER_DATA_OPERATION_REQUEST_RESPONSE_MESSAGE", 17, "REQUEST_WELCOME_MESSAGE", 18, "BOT_FEEDBACK_MESSAGE", 19, "MEDIA_NOTIFY_MESSAGE", 20, "CLOUD_API_THREAD_CONTROL_NOTIFICATION", 21, "LID_MIGRATION_MAPPING_SYNC", 22, "REMINDER_MESSAGE", 23, "BOT_MEMU_ONBOARDING_MESSAGE", 24, "STATUS_MENTION_MESSAGE", 25, "STOP_GENERATION_MESSAGE", 26, "LIMIT_SHARING", 27, "AI_PSI_METADATA", 28, "AI_QUERY_FANOUT", 29, "GROUP_MEMBER_LABEL_CHANGE", 30]], ["Message.RequestWelcomeMessageMetadata.LocalChatState", ["EMPTY", 0, "NON_EMPTY", 1]], ["Message.ScheduledCallCreationMessage.CallType", ["UNKNOWN", 0, "VOICE", 1, "VIDEO", 2]], ["Message.ScheduledCallEditMessage.EditType", ["UNKNOWN", 0, "CANCEL", 1]], ["Message.SecretEncryptedMessage.SecretEncType", ["UNKNOWN", 0, "EVENT_EDIT", 1, "MESSAGE_EDIT", 2]], ["Message.StatusNotificationMessage.StatusNotificationType", ["UNKNOWN", 0, "STATUS_ADD_YOURS", 1, "STATUS_RESHARE", 2, "STATUS_QUESTION_ANSWER_RESHARE", 3]], ["Message.StatusQuotedMessage.StatusQuotedMessageType", ["QUESTION_ANSWER", 1]], ["Message.StatusStickerInteractionMessage.StatusStickerType", ["UNKNOWN", 0, "REACTION", 1]], ["Message.StickerPackMessage.StickerPackOrigin", ["FIRST_PARTY", 0, "THIRD_PARTY", 1, "USER_CREATED", 2]], ["Message.VideoMessage.Attribution", ["NONE", 0, "GIPHY", 1, "TENOR", 2, "KLIPY", 3]], ["Message.VideoMessage.VideoSourceType", ["USER_VIDEO", 0, "AI_GENERATED", 1]], ["MessageAddOn.MessageAddOnType", ["UNDEFINED", 0, "REACTION", 1, "EVENT_RESPONSE", 2, "POLL_UPDATE", 3, "PIN_IN_CHAT", 4]], ["MessageAssociation.AssociationType", ["UNKNOWN", 0, "MEDIA_ALBUM", 1, "BOT_PLUGIN", 2, "EVENT_COVER_IMAGE", 3, "STATUS_POLL", 4, "HD_VIDEO_DUAL_UPLOAD", 5, "STATUS_EXTERNAL_RESHARE", 6, "MEDIA_POLL", 7, "STATUS_ADD_YOURS", 8, "STATUS_NOTIFICATION", 9, "HD_IMAGE_DUAL_UPLOAD", 10, "STICKER_ANNOTATION", 11, "MOTION_PHOTO", 12, "STATUS_LINK_ACTION", 13, "VIEW_ALL_REPLIES", 14, "STATUS_ADD_YOURS_AI_IMAGINE", 15, "STATUS_QUESTION", 16, "STATUS_ADD_YOURS_DIWALI", 17, "STATUS_REACTION", 18, "HEVC_VIDEO_DUAL_UPLOAD", 19]], ["MessageContextInfo.MessageAddonExpiryType", ["STATIC", 1, "DEPENDENT_ON_PARENT", 2]], ["MsgOpaqueData.PollContentType", ["UNKNOWN", 0, "TEXT", 1, "IMAGE", 2]], ["MsgOpaqueData.PollType", ["POLL", 0, "QUIZ", 1]], ["MutationProps", ["STAR_ACTION", 2, "CONTACT_ACTION", 3, "MUTE_ACTION", 4, "PIN_ACTION", 5, "SECURITY_NOTIFICATION_SETTING", 6, "PUSH_NAME_SETTING", 7, "QUICK_REPLY_ACTION", 8, "RECENT_EMOJI_WEIGHTS_ACTION", 11, "LABEL_MESSAGE_ACTION", 13, "LABEL_EDIT_ACTION", 14, "LABEL_ASSOCIATION_ACTION", 15, "LOCALE_SETTING", 16, "ARCHIVE_CHAT_ACTION", 17, "DELETE_MESSAGE_FOR_ME_ACTION", 18, "KEY_EXPIRATION", 19, "MARK_CHAT_AS_READ_ACTION", 20, "CLEAR_CHAT_ACTION", 21, "DELETE_CHAT_ACTION", 22, "UNARCHIVE_CHATS_SETTING", 23, "PRIMARY_FEATURE", 24, "ANDROID_UNSUPPORTED_ACTIONS", 26, "AGENT_ACTION", 27, "SUBSCRIPTION_ACTION", 28, "USER_STATUS_MUTE_ACTION", 29, "TIME_FORMAT_ACTION", 30, "NUX_ACTION", 31, "PRIMARY_VERSION_ACTION", 32, "STICKER_ACTION", 33, "REMOVE_RECENT_STICKER_ACTION", 34, "CHAT_ASSIGNMENT", 35, "CHAT_ASSIGNMENT_OPENED_STATUS", 36, "PN_FOR_LID_CHAT_ACTION", 37, "MARKETING_MESSAGE_ACTION", 38, "MARKETING_MESSAGE_BROADCAST_ACTION", 39, "EXTERNAL_WEB_BETA_ACTION", 40, "PRIVACY_SETTING_RELAY_ALL_CALLS", 41, "CALL_LOG_ACTION", 42, "UGC_BOT", 43, "STATUS_PRIVACY", 44, "BOT_WELCOME_REQUEST_ACTION", 45, "DELETE_INDIVIDUAL_CALL_LOG", 46, "LABEL_REORDERING_ACTION", 47, "PAYMENT_INFO_ACTION", 48, "CUSTOM_PAYMENT_METHODS_ACTION", 49, "LOCK_CHAT_ACTION", 50, "CHAT_LOCK_SETTINGS", 51, "WAMO_USER_IDENTIFIER_ACTION", 52, "PRIVACY_SETTING_DISABLE_LINK_PREVIEWS_ACTION", 53, "DEVICE_CAPABILITIES", 54, "NOTE_EDIT_ACTION", 55, "FAVORITES_ACTION", 56, "MERCHANT_PAYMENT_PARTNER_ACTION", 57, "WAFFLE_ACCOUNT_LINK_STATE_ACTION", 58, "USERNAME_CHAT_START_MODE", 59, "NOTIFICATION_ACTIVITY_SETTING_ACTION", 60, "LID_CONTACT_ACTION", 61, "CTWA_PER_CUSTOMER_DATA_SHARING_ACTION", 62, "PAYMENT_TOS_ACTION", 63, "PRIVACY_SETTING_CHANNELS_PERSONALISED_RECOMMENDATION_ACTION", 64, "BUSINESS_BROADCAST_ASSOCIATION_ACTION", 65, "DETECTED_OUTCOMES_STATUS_ACTION", 66, "MAIBA_AI_FEATURES_CONTROL_ACTION", 68, "BUSINESS_BROADCAST_LIST_ACTION", 69, "MUSIC_USER_ID_ACTION", 70, "STATUS_POST_OPT_IN_NOTIFICATION_PREFERENCES_ACTION", 71, "AVATAR_UPDATED_ACTION", 72, "GALAXY_FLOW_ACTION", 73, "PRIVATE_PROCESSING_SETTING_ACTION", 74, "NEWSLETTER_SAVED_INTERESTS_ACTION", 75, "AI_THREAD_RENAME_ACTION", 76, "INTERACTIVE_MESSAGE_ACTION", 77, "SHARE_OWN_PN", 10001, "BUSINESS_BROADCAST_ACTION", 10002]], ["PastParticipant.LeaveReason", ["LEFT", 0, "REMOVED", 1]], ["PatchDebugData.Platform", ["ANDROID", 0, "SMBA", 1, "IPHONE", 2, "SMBI", 3, "WEB", 4, "UWP", 5, "DARWIN", 6, "IPAD", 7, "WEAROS", 8, "WASG", 9, "WEARM", 10, "CAPI", 11]], ["PaymentBackground.Type", ["UNKNOWN", 0, "DEFAULT", 1]], ["PaymentInfo.Currency", ["UNKNOWN_CURRENCY", 0, "INR", 1]], ["PaymentInfo.Status", ["UNKNOWN_STATUS", 0, "PROCESSING", 1, "SENT", 2, "NEED_TO_ACCEPT", 3, "COMPLETE", 4, "COULD_NOT_COMPLETE", 5, "REFUNDED", 6, "EXPIRED", 7, "REJECTED", 8, "CANCELLED", 9, "WAITING_FOR_PAYER", 10, "WAITING", 11]], ["PaymentInfo.TxnStatus", ["UNKNOWN", 0, "PENDING_SETUP", 1, "PENDING_RECEIVER_SETUP", 2, "INIT", 3, "SUCCESS", 4, "COMPLETED", 5, "FAILED", 6, "FAILED_RISK", 7, "FAILED_PROCESSING", 8, "FAILED_RECEIVER_PROCESSING", 9, "FAILED_DA", 10, "FAILED_DA_FINAL", 11, "REFUNDED_TXN", 12, "REFUND_FAILED", 13, "REFUND_FAILED_PROCESSING", 14, "REFUND_FAILED_DA", 15, "EXPIRED_TXN", 16, "AUTH_CANCELED", 17, "AUTH_CANCEL_FAILED_PROCESSING", 18, "AUTH_CANCEL_FAILED", 19, "COLLECT_INIT", 20, "COLLECT_SUCCESS", 21, "COLLECT_FAILED", 22, "COLLECT_FAILED_RISK", 23, "COLLECT_REJECTED", 24, "COLLECT_EXPIRED", 25, "COLLECT_CANCELED", 26, "COLLECT_CANCELLING", 27, "IN_REVIEW", 28, "REVERSAL_SUCCESS", 29, "REVERSAL_PENDING", 30, "REFUND_PENDING", 31]], ["PinInChat.Type", ["UNKNOWN_TYPE", 0, "PIN_FOR_ALL", 1, "UNPIN_FOR_ALL", 2]], ["PrivacySystemMessage", ["E2EE_MSG", 1, "NE2EE_SELF", 2, "NE2EE_OTHER", 3]], ["ProcessedVideo.VideoQuality", ["UNDEFINED", 0, "LOW", 1, "MID", 2, "HIGH", 3]], ["SessionTransparencyType", ["UNKNOWN_TYPE", 0, "NY_AI_SAFETY_DISCLAIMER", 1]], ["StatusAttribution.AiCreatedAttribution.Source", ["UNKNOWN", 0, "STATUS_MIMICRY", 1]], ["StatusAttribution.ExternalShare.Source", ["UNKNOWN", 0, "INSTAGRAM", 1, "FACEBOOK", 2, "MESSENGER", 3, "SPOTIFY", 4, "YOUTUBE", 5, "PINTEREST", 6, "THREADS", 7, "APPLE_MUSIC", 8, "SHARECHAT", 9, "GOOGLE_PHOTOS", 10]], ["StatusAttribution.RLAttribution.Source", ["UNKNOWN", 0, "RAY_BAN_META_GLASSES", 1, "OAKLEY_META_GLASSES", 2, "HYPERNOVA_GLASSES", 3]], ["StatusAttribution.StatusReshare.Source", ["UNKNOWN", 0, "INTERNAL_RESHARE", 1, "MENTION_RESHARE", 2, "CHANNEL_RESHARE", 3, "FORWARD", 4]], ["StatusAttribution.Type", ["UNKNOWN", 0, "RESHARE", 1, "EXTERNAL_SHARE", 2, "MUSIC", 3, "STATUS_MENTION", 4, "GROUP_STATUS", 5, "RL_ATTRIBUTION", 6, "AI_CREATED", 7, "LAYOUTS", 8]], ["SyncActionValue.AvatarUpdatedAction.AvatarEventType", ["UPDATED", 0, "CREATED", 1, "DELETED", 2]], ["SyncActionValue.InteractiveMessageAction.InteractiveMessageActionMode", ["DISABLE_CTA", 1]], ["SyncActionValue.LabelEditAction.ListType", ["NONE", 0, "UNREAD", 1, "GROUPS", 2, "FAVORITES", 3, "PREDEFINED", 4, "CUSTOM", 5, "COMMUNITY", 6, "SERVER_ASSIGNED", 7, "DRAFTED", 8, "AI_HANDOFF", 9]], ["SyncActionValue.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus", ["ENABLED", 0, "ENABLED_HAS_LEARNING", 1, "DISABLED", 2]], ["SyncActionValue.MarketingMessageAction.MarketingMessagePrototypeType", ["PERSONALIZED", 0]], ["SyncActionValue.MerchantPaymentPartnerAction.Status", ["ACTIVE", 0, "INACTIVE", 1]], ["SyncActionValue.NoteEditAction.NoteType", ["UNSTRUCTURED", 1, "STRUCTURED", 2]], ["SyncActionValue.NotificationActivitySettingAction.NotificationActivitySetting", ["DEFAULT_ALL_MESSAGES", 0, "ALL_MESSAGES", 1, "HIGHLIGHTS", 2, "DEFAULT_HIGHLIGHTS", 3]], ["SyncActionValue.PaymentTosAction.PaymentNotice", ["BR_PAY_PRIVACY_POLICY", 0]], ["SyncActionValue.PrivateProcessingSettingAction.PrivateProcessingStatus", ["UNDEFINED", 0, "ENABLED", 1, "DISABLED", 2]], ["SyncActionValue.StatusPrivacyAction.StatusDistributionMode", ["ALLOW_LIST", 0, "DENY_LIST", 1, "CONTACTS", 2, "CLOSE_FRIENDS", 3]], ["SyncActionValue.UsernameChatStartModeAction.ChatStartMode", ["LID", 1, "PN", 2]], ["SyncActionValue.WaffleAccountLinkStateAction.AccountLinkState", ["ACTIVE", 0, "PAUSED", 1, "UNLINKED", 2]], ["SyncdMutation.SyncdOperation", ["SET", 0, "REMOVE", 1]], ["ThreadID.ThreadType", ["UNKNOWN", 0, "VIEW_REPLIES", 1, "AI_THREAD", 2]], ["UserPassword.Encoding", ["UTF8", 0, "UTF8_BROKEN", 1]], ["UserPassword.Transformer", ["NONE", 0, "PBKDF2_HMAC_SHA512", 1, "PBKDF2_HMAC_SHA384", 2]], ["WebFeatures.Flag", ["NOT_STARTED", 0, "FORCE_UPGRADE", 1, "DEVELOPMENT", 2, "PRODUCTION", 3]], ["WebLinkRenderConfig", ["WEBVIEW", 0, "SYSTEM", 1]], ["WebMessageInfo.BizPrivacyStatus", ["E2EE", 0, "FB", 2, "BSP", 1, "BSP_AND_FB", 3]], ["WebMessageInfo.Status", ["ERROR", 0, "PENDING", 1, "SERVER_ACK", 2, "DELIVERY_ACK", 3, "READ", 4, "PLAYED", 5]], ["WebMessageInfo.StubType", ["UNKNOWN", 0, "REVOKE", 1, "CIPHERTEXT", 2, "FUTUREPROOF", 3, "NON_VERIFIED_TRANSITION", 4, "UNVERIFIED_TRANSITION", 5, "VERIFIED_TRANSITION", 6, "VERIFIED_LOW_UNKNOWN", 7, "VERIFIED_HIGH", 8, "VERIFIED_INITIAL_UNKNOWN", 9, "VERIFIED_INITIAL_LOW", 10, "VERIFIED_INITIAL_HIGH", 11, "VERIFIED_TRANSITION_ANY_TO_NONE", 12, "VERIFIED_TRANSITION_ANY_TO_HIGH", 13, "VERIFIED_TRANSITION_HIGH_TO_LOW", 14, "VERIFIED_TRANSITION_HIGH_TO_UNKNOWN", 15, "VERIFIED_TRANSITION_UNKNOWN_TO_LOW", 16, "VERIFIED_TRANSITION_LOW_TO_UNKNOWN", 17, "VERIFIED_TRANSITION_NONE_TO_LOW", 18, "VERIFIED_TRANSITION_NONE_TO_UNKNOWN", 19, "GROUP_CREATE", 20, "GROUP_CHANGE_SUBJECT", 21, "GROUP_CHANGE_ICON", 22, "GROUP_CHANGE_INVITE_LINK", 23, "GROUP_CHANGE_DESCRIPTION", 24, "GROUP_CHANGE_RESTRICT", 25, "GROUP_CHANGE_ANNOUNCE", 26, "GROUP_PARTICIPANT_ADD", 27, "GROUP_PARTICIPANT_REMOVE", 28, "GROUP_PARTICIPANT_PROMOTE", 29, "GROUP_PARTICIPANT_DEMOTE", 30, "GROUP_PARTICIPANT_INVITE", 31, "GROUP_PARTICIPANT_LEAVE", 32, "GROUP_PARTICIPANT_CHANGE_NUMBER", 33, "BROADCAST_CREATE", 34, "BROADCAST_ADD", 35, "BROADCAST_REMOVE", 36, "GENERIC_NOTIFICATION", 37, "E2E_IDENTITY_CHANGED", 38, "E2E_ENCRYPTED", 39, "CALL_MISSED_VOICE", 40, "CALL_MISSED_VIDEO", 41, "INDIVIDUAL_CHANGE_NUMBER", 42, "GROUP_DELETE", 43, "GROUP_ANNOUNCE_MODE_MESSAGE_BOUNCE", 44, "CALL_MISSED_GROUP_VOICE", 45, "CALL_MISSED_GROUP_VIDEO", 46, "PAYMENT_CIPHERTEXT", 47, "PAYMENT_FUTUREPROOF", 48, "PAYMENT_TRANSACTION_STATUS_UPDATE_FAILED", 49, "PAYMENT_TRANSACTION_STATUS_UPDATE_REFUNDED", 50, "PAYMENT_TRANSACTION_STATUS_UPDATE_REFUND_FAILED", 51, "PAYMENT_TRANSACTION_STATUS_RECEIVER_PENDING_SETUP", 52, "PAYMENT_TRANSACTION_STATUS_RECEIVER_SUCCESS_AFTER_HICCUP", 53, "PAYMENT_ACTION_ACCOUNT_SETUP_REMINDER", 54, "PAYMENT_ACTION_SEND_PAYMENT_REMINDER", 55, "PAYMENT_ACTION_SEND_PAYMENT_INVITATION", 56, "PAYMENT_ACTION_REQUEST_DECLINED", 57, "PAYMENT_ACTION_REQUEST_EXPIRED", 58, "PAYMENT_ACTION_REQUEST_CANCELLED", 59, "BIZ_VERIFIED_TRANSITION_TOP_TO_BOTTOM", 60, "BIZ_VERIFIED_TRANSITION_BOTTOM_TO_TOP", 61, "BIZ_INTRO_TOP", 62, "BIZ_INTRO_BOTTOM", 63, "BIZ_NAME_CHANGE", 64, "BIZ_MOVE_TO_CONSUMER_APP", 65, "BIZ_TWO_TIER_MIGRATION_TOP", 66, "BIZ_TWO_TIER_MIGRATION_BOTTOM", 67, "OVERSIZED", 68, "GROUP_CHANGE_NO_FREQUENTLY_FORWARDED", 69, "GROUP_V4_ADD_INVITE_SENT", 70, "GROUP_PARTICIPANT_ADD_REQUEST_JOIN", 71, "CHANGE_EPHEMERAL_SETTING", 72, "E2E_DEVICE_CHANGED", 73, "VIEWED_ONCE", 74, "E2E_ENCRYPTED_NOW", 75, "BLUE_MSG_BSP_FB_TO_BSP_PREMISE", 76, "BLUE_MSG_BSP_FB_TO_SELF_FB", 77, "BLUE_MSG_BSP_FB_TO_SELF_PREMISE", 78, "BLUE_MSG_BSP_FB_UNVERIFIED", 79, "BLUE_MSG_BSP_FB_UNVERIFIED_TO_SELF_PREMISE_VERIFIED", 80, "BLUE_MSG_BSP_FB_VERIFIED", 81, "BLUE_MSG_BSP_FB_VERIFIED_TO_SELF_PREMISE_UNVERIFIED", 82, "BLUE_MSG_BSP_PREMISE_TO_SELF_PREMISE", 83, "BLUE_MSG_BSP_PREMISE_UNVERIFIED", 84, "BLUE_MSG_BSP_PREMISE_UNVERIFIED_TO_SELF_PREMISE_VERIFIED", 85, "BLUE_MSG_BSP_PREMISE_VERIFIED", 86, "BLUE_MSG_BSP_PREMISE_VERIFIED_TO_SELF_PREMISE_UNVERIFIED", 87, "BLUE_MSG_CONSUMER_TO_BSP_FB_UNVERIFIED", 88, "BLUE_MSG_CONSUMER_TO_BSP_PREMISE_UNVERIFIED", 89, "BLUE_MSG_CONSUMER_TO_SELF_FB_UNVERIFIED", 90, "BLUE_MSG_CONSUMER_TO_SELF_PREMISE_UNVERIFIED", 91, "BLUE_MSG_SELF_FB_TO_BSP_PREMISE", 92, "BLUE_MSG_SELF_FB_TO_SELF_PREMISE", 93, "BLUE_MSG_SELF_FB_UNVERIFIED", 94, "BLUE_MSG_SELF_FB_UNVERIFIED_TO_SELF_PREMISE_VERIFIED", 95, "BLUE_MSG_SELF_FB_VERIFIED", 96, "BLUE_MSG_SELF_FB_VERIFIED_TO_SELF_PREMISE_UNVERIFIED", 97, "BLUE_MSG_SELF_PREMISE_TO_BSP_PREMISE", 98, "BLUE_MSG_SELF_PREMISE_UNVERIFIED", 99, "BLUE_MSG_SELF_PREMISE_VERIFIED", 100, "BLUE_MSG_TO_BSP_FB", 101, "BLUE_MSG_TO_CONSUMER", 102, "BLUE_MSG_TO_SELF_FB", 103, "BLUE_MSG_UNVERIFIED_TO_BSP_FB_VERIFIED", 104, "BLUE_MSG_UNVERIFIED_TO_BSP_PREMISE_VERIFIED", 105, "BLUE_MSG_UNVERIFIED_TO_SELF_FB_VERIFIED", 106, "BLUE_MSG_UNVERIFIED_TO_VERIFIED", 107, "BLUE_MSG_VERIFIED_TO_BSP_FB_UNVERIFIED", 108, "BLUE_MSG_VERIFIED_TO_BSP_PREMISE_UNVERIFIED", 109, "BLUE_MSG_VERIFIED_TO_SELF_FB_UNVERIFIED", 110, "BLUE_MSG_VERIFIED_TO_UNVERIFIED", 111, "BLUE_MSG_BSP_FB_UNVERIFIED_TO_BSP_PREMISE_VERIFIED", 112, "BLUE_MSG_BSP_FB_UNVERIFIED_TO_SELF_FB_VERIFIED", 113, "BLUE_MSG_BSP_FB_VERIFIED_TO_BSP_PREMISE_UNVERIFIED", 114, "BLUE_MSG_BSP_FB_VERIFIED_TO_SELF_FB_UNVERIFIED", 115, "BLUE_MSG_SELF_FB_UNVERIFIED_TO_BSP_PREMISE_VERIFIED", 116, "BLUE_MSG_SELF_FB_VERIFIED_TO_BSP_PREMISE_UNVERIFIED", 117, "E2E_IDENTITY_UNAVAILABLE", 118, "GROUP_CREATING", 119, "GROUP_CREATE_FAILED", 120, "GROUP_BOUNCED", 121, "BLOCK_CONTACT", 122, "EPHEMERAL_SETTING_NOT_APPLIED", 123, "SYNC_FAILED", 124, "SYNCING", 125, "BIZ_PRIVACY_MODE_INIT_FB", 126, "BIZ_PRIVACY_MODE_INIT_BSP", 127, "BIZ_PRIVACY_MODE_TO_FB", 128, "BIZ_PRIVACY_MODE_TO_BSP", 129, "DISAPPEARING_MODE", 130, "E2E_DEVICE_FETCH_FAILED", 131, "ADMIN_REVOKE", 132, "GROUP_INVITE_LINK_GROWTH_LOCKED", 133, "COMMUNITY_LINK_PARENT_GROUP", 134, "COMMUNITY_LINK_SIBLING_GROUP", 135, "COMMUNITY_LINK_SUB_GROUP", 136, "COMMUNITY_UNLINK_PARENT_GROUP", 137, "COMMUNITY_UNLINK_SIBLING_GROUP", 138, "COMMUNITY_UNLINK_SUB_GROUP", 139, "GROUP_PARTICIPANT_ACCEPT", 140, "GROUP_PARTICIPANT_LINKED_GROUP_JOIN", 141, "COMMUNITY_CREATE", 142, "EPHEMERAL_KEEP_IN_CHAT", 143, "GROUP_MEMBERSHIP_JOIN_APPROVAL_REQUEST", 144, "GROUP_MEMBERSHIP_JOIN_APPROVAL_MODE", 145, "INTEGRITY_UNLINK_PARENT_GROUP", 146, "COMMUNITY_PARTICIPANT_PROMOTE", 147, "COMMUNITY_PARTICIPANT_DEMOTE", 148, "COMMUNITY_PARENT_GROUP_DELETED", 149, "COMMUNITY_LINK_PARENT_GROUP_MEMBERSHIP_APPROVAL", 150, "GROUP_PARTICIPANT_JOINED_GROUP_AND_PARENT_GROUP", 151, "MASKED_THREAD_CREATED", 152, "MASKED_THREAD_UNMASKED", 153, "BIZ_CHAT_ASSIGNMENT", 154, "CHAT_PSA", 155, "CHAT_POLL_CREATION_MESSAGE", 156, "CAG_MASKED_THREAD_CREATED", 157, "COMMUNITY_PARENT_GROUP_SUBJECT_CHANGED", 158, "CAG_INVITE_AUTO_ADD", 159, "BIZ_CHAT_ASSIGNMENT_UNASSIGN", 160, "CAG_INVITE_AUTO_JOINED", 161, "SCHEDULED_CALL_START_MESSAGE", 162, "COMMUNITY_INVITE_RICH", 163, "COMMUNITY_INVITE_AUTO_ADD_RICH", 164, "SUB_GROUP_INVITE_RICH", 165, "SUB_GROUP_PARTICIPANT_ADD_RICH", 166, "COMMUNITY_LINK_PARENT_GROUP_RICH", 167, "COMMUNITY_PARTICIPANT_ADD_RICH", 168, "SILENCED_UNKNOWN_CALLER_AUDIO", 169, "SILENCED_UNKNOWN_CALLER_VIDEO", 170, "GROUP_MEMBER_ADD_MODE", 171, "GROUP_MEMBERSHIP_JOIN_APPROVAL_REQUEST_NON_ADMIN_ADD", 172, "COMMUNITY_CHANGE_DESCRIPTION", 173, "SENDER_INVITE", 174, "RECEIVER_INVITE", 175, "COMMUNITY_ALLOW_MEMBER_ADDED_GROUPS", 176, "PINNED_MESSAGE_IN_CHAT", 177, "PAYMENT_INVITE_SETUP_INVITER", 178, "PAYMENT_INVITE_SETUP_INVITEE_RECEIVE_ONLY", 179, "PAYMENT_INVITE_SETUP_INVITEE_SEND_AND_RECEIVE", 180, "LINKED_GROUP_CALL_START", 181, "REPORT_TO_ADMIN_ENABLED_STATUS", 182, "EMPTY_SUBGROUP_CREATE", 183, "SCHEDULED_CALL_CANCEL", 184, "SUBGROUP_ADMIN_TRIGGERED_AUTO_ADD_RICH", 185, "GROUP_CHANGE_RECENT_HISTORY_SHARING", 186, "PAID_MESSAGE_SERVER_CAMPAIGN_ID", 187, "GENERAL_CHAT_CREATE", 188, "GENERAL_CHAT_ADD", 189, "GENERAL_CHAT_AUTO_ADD_DISABLED", 190, "SUGGESTED_SUBGROUP_ANNOUNCE", 191, "BIZ_BOT_1P_MESSAGING_ENABLED", 192, "CHANGE_USERNAME", 193, "BIZ_COEX_PRIVACY_INIT_SELF", 194, "BIZ_COEX_PRIVACY_TRANSITION_SELF", 195, "SUPPORT_AI_EDUCATION", 196, "BIZ_BOT_3P_MESSAGING_ENABLED", 197, "REMINDER_SETUP_MESSAGE", 198, "REMINDER_SENT_MESSAGE", 199, "REMINDER_CANCEL_MESSAGE", 200, "BIZ_COEX_PRIVACY_INIT", 201, "BIZ_COEX_PRIVACY_TRANSITION", 202, "GROUP_DEACTIVATED", 203, "COMMUNITY_DEACTIVATE_SIBLING_GROUP", 204, "EVENT_UPDATED", 205, "EVENT_CANCELED", 206, "COMMUNITY_OWNER_UPDATED", 207, "COMMUNITY_SUB_GROUP_VISIBILITY_HIDDEN", 208, "CAPI_GROUP_NE2EE_SYSTEM_MESSAGE", 209, "STATUS_MENTION", 210, "USER_CONTROLS_SYSTEM_MESSAGE", 211, "SUPPORT_SYSTEM_MESSAGE", 212, "CHANGE_LID", 213, "BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_IN_MESSAGE", 214, "BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_OUT_MESSAGE", 215, "CHANGE_LIMIT_SHARING", 216, "GROUP_MEMBER_LINK_MODE", 217, "BIZ_AUTOMATICALLY_LABELED_CHAT_SYSTEM_MESSAGE", 218, "PHONE_NUMBER_HIDING_CHAT_DEPRECATED_MESSAGE", 219, "QUARANTINED_MESSAGE", 220, "GROUP_MEMBER_SHARE_GROUP_HISTORY_MODE", 221]]];
6
6
  //# sourceMappingURL=compatibility-schema.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oxidezap/baileyrs",
3
3
  "type": "module",
4
- "version": "0.2.9",
4
+ "version": "0.2.11",
5
5
  "description": "A Rust-powered WhatsApp Web library for JavaScript, with a Baileys-compatible API",
6
6
  "keywords": [
7
7
  "whatsapp",
@@ -81,8 +81,8 @@
81
81
  "test:e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 ADV_SECRET_KEY=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= node --expose-gc --test --test-concurrency=1 ./src/__tests__/e2e/*.test-e2e.ts ./scripts/compatibility/__tests__/*.test-e2e.ts"
82
82
  },
83
83
  "dependencies": {
84
- "@hapi/boom": "^9.1.4",
85
- "@oxidezap/whatsapp-rust-bridge": "0.18.0",
84
+ "@hapi/boom": "^10.0.1",
85
+ "@oxidezap/whatsapp-rust-bridge": "0.20.0",
86
86
  "long": "^5.3.2",
87
87
  "pino": "^10.3.1",
88
88
  "protobufjs": "^7.6.5"
@@ -90,13 +90,14 @@
90
90
  "devDependencies": {
91
91
  "@bufbuild/protobuf": "^2.13.0",
92
92
  "@types/node": "^26.1.1",
93
- "baileys": "7.0.0-rc13",
93
+ "baileys": "7.0.0-rc14",
94
94
  "jimp": "^1.6.0",
95
- "link-preview-js": "^3.2.0",
95
+ "link-preview-js": "^5.0.0",
96
96
  "music-metadata": "^11.14.0",
97
- "oxfmt": "^0.59.0",
98
- "oxlint": "1.74.0",
97
+ "oxfmt": "^0.66.0",
98
+ "oxlint": "1.81.0",
99
99
  "pino-pretty": "^13.1.3",
100
+ "pkg-pr-new": "^0.0.88",
100
101
  "tsc-esm-fix": "^3.1.2",
101
102
  "typescript": "^7.0.2",
102
103
  "typescript-compat-auditor": "npm:typescript@6.0.3"