slidge-whatsapp 0.3.0b0__cp313-cp313-manylinux_2_36_aarch64.whl → 0.3.4__cp313-cp313-manylinux_2_36_aarch64.whl
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.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/contact.py +2 -0
- slidge_whatsapp/event.go +72 -22
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +206 -206
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +166 -166
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1557 -1557
- slidge_whatsapp/generated/whatsapp.go +1227 -1227
- slidge_whatsapp/generated/whatsapp.py +1382 -1382
- slidge_whatsapp/generated/whatsapp_go.h +206 -206
- slidge_whatsapp/go.mod +11 -11
- slidge_whatsapp/go.sum +26 -26
- slidge_whatsapp/session.go +4 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +21 -5
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_netbsd.go +15 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_netbsd.go +9 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +113 -60
- slidge_whatsapp/vendor/github.com/ebitengine/purego/gen.go +6 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_loong64.s +40 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_loong64.go +92 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_netbsd.go +106 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_netbsd.go +26 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/netbsd.go +23 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +11 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_netbsd.go +30 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_loong64.s +71 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +5 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +8 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +16 -6
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +190 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +6 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_loong64.s +96 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_loong64.s +75 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +6 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +3 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +13 -10
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2002 -2002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4002 -4002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_loong64.s +4014 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +7 -2
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +119 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +3 -34
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/string.go +20 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/writer.go +78 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/cast.go +42 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/chunk.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/deduplicate.go +67 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/diff.go +63 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +15 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +48 -7
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +13 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +16 -5
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +27 -12
- slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +47 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +60 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +20 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +63 -42
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +31 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +77 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +22 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +7747 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/{waBotMetadata/WABotMetadata.proto → waAICommon/WAAICommon.proto} +269 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +128 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8953 -10087
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +216 -330
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +11 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +226 -83
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +709 -449
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +78 -24
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +528 -267
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +47 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +6 -13
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +130 -62
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +33 -32
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +16 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sessioncache.go +125 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +82 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +135 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +8 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/11-redacted-phone-contacts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +24 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +24 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +7 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +43 -3
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +7 -4
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +11 -6
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go125.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go126.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +24 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +0 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +35 -26
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +4 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/{writesched_priority.go → writesched_priority_rfc7540.go} +52 -52
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority_rfc9128.go +209 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +2 -2
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +18 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +2 -9
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +35 -17
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +14 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/modules.txt +15 -13
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/METADATA +4 -3
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/RECORD +166 -138
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info/licenses}/LICENSE +0 -0
|
@@ -1339,72 +1339,137 @@ func (MessageAddOn_MessageAddOnType) EnumDescriptor() ([]byte, []int) {
|
|
|
1339
1339
|
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{4, 0}
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
1342
|
+
type GroupHistoryBundleInfo_ProcessState int32
|
|
1343
|
+
|
|
1344
|
+
const (
|
|
1345
|
+
GroupHistoryBundleInfo_NOT_INJECTED GroupHistoryBundleInfo_ProcessState = 0
|
|
1346
|
+
GroupHistoryBundleInfo_INJECTED GroupHistoryBundleInfo_ProcessState = 1
|
|
1347
|
+
GroupHistoryBundleInfo_INJECTED_PARTIAL GroupHistoryBundleInfo_ProcessState = 2
|
|
1348
|
+
GroupHistoryBundleInfo_INJECTION_FAILED GroupHistoryBundleInfo_ProcessState = 3
|
|
1349
|
+
)
|
|
1350
|
+
|
|
1351
|
+
// Enum value maps for GroupHistoryBundleInfo_ProcessState.
|
|
1352
|
+
var (
|
|
1353
|
+
GroupHistoryBundleInfo_ProcessState_name = map[int32]string{
|
|
1354
|
+
0: "NOT_INJECTED",
|
|
1355
|
+
1: "INJECTED",
|
|
1356
|
+
2: "INJECTED_PARTIAL",
|
|
1357
|
+
3: "INJECTION_FAILED",
|
|
1358
|
+
}
|
|
1359
|
+
GroupHistoryBundleInfo_ProcessState_value = map[string]int32{
|
|
1360
|
+
"NOT_INJECTED": 0,
|
|
1361
|
+
"INJECTED": 1,
|
|
1362
|
+
"INJECTED_PARTIAL": 2,
|
|
1363
|
+
"INJECTION_FAILED": 3,
|
|
1364
|
+
}
|
|
1365
|
+
)
|
|
1366
|
+
|
|
1367
|
+
func (x GroupHistoryBundleInfo_ProcessState) Enum() *GroupHistoryBundleInfo_ProcessState {
|
|
1368
|
+
p := new(GroupHistoryBundleInfo_ProcessState)
|
|
1369
|
+
*p = x
|
|
1370
|
+
return p
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
func (x GroupHistoryBundleInfo_ProcessState) String() string {
|
|
1374
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
func (GroupHistoryBundleInfo_ProcessState) Descriptor() protoreflect.EnumDescriptor {
|
|
1378
|
+
return file_waWeb_WAWebProtobufsWeb_proto_enumTypes[9].Descriptor()
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
func (GroupHistoryBundleInfo_ProcessState) Type() protoreflect.EnumType {
|
|
1382
|
+
return &file_waWeb_WAWebProtobufsWeb_proto_enumTypes[9]
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
func (x GroupHistoryBundleInfo_ProcessState) Number() protoreflect.EnumNumber {
|
|
1386
|
+
return protoreflect.EnumNumber(x)
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
// Deprecated: Do not use.
|
|
1390
|
+
func (x *GroupHistoryBundleInfo_ProcessState) UnmarshalJSON(b []byte) error {
|
|
1391
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
1392
|
+
if err != nil {
|
|
1393
|
+
return err
|
|
1394
|
+
}
|
|
1395
|
+
*x = GroupHistoryBundleInfo_ProcessState(num)
|
|
1396
|
+
return nil
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
// Deprecated: Use GroupHistoryBundleInfo_ProcessState.Descriptor instead.
|
|
1400
|
+
func (GroupHistoryBundleInfo_ProcessState) EnumDescriptor() ([]byte, []int) {
|
|
1401
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{5, 0}
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1342
1404
|
type WebMessageInfo struct {
|
|
1343
|
-
state
|
|
1344
|
-
Key
|
|
1345
|
-
Message
|
|
1346
|
-
MessageTimestamp
|
|
1347
|
-
Status
|
|
1348
|
-
Participant
|
|
1349
|
-
MessageC2STimestamp
|
|
1350
|
-
Ignore
|
|
1351
|
-
Starred
|
|
1352
|
-
Broadcast
|
|
1353
|
-
PushName
|
|
1354
|
-
MediaCiphertextSHA256
|
|
1355
|
-
Multicast
|
|
1356
|
-
UrlText
|
|
1357
|
-
UrlNumber
|
|
1358
|
-
MessageStubType
|
|
1359
|
-
ClearMedia
|
|
1360
|
-
MessageStubParameters
|
|
1361
|
-
Duration
|
|
1362
|
-
Labels
|
|
1363
|
-
PaymentInfo
|
|
1364
|
-
FinalLiveLocation
|
|
1365
|
-
QuotedPaymentInfo
|
|
1366
|
-
EphemeralStartTimestamp
|
|
1367
|
-
EphemeralDuration
|
|
1368
|
-
EphemeralOffToOn
|
|
1369
|
-
EphemeralOutOfSync
|
|
1370
|
-
BizPrivacyStatus
|
|
1371
|
-
VerifiedBizName
|
|
1372
|
-
MediaData
|
|
1373
|
-
PhotoChange
|
|
1374
|
-
UserReceipt
|
|
1375
|
-
Reactions
|
|
1376
|
-
QuotedStickerData
|
|
1377
|
-
FutureproofData
|
|
1378
|
-
StatusPsa
|
|
1379
|
-
PollUpdates
|
|
1380
|
-
PollAdditionalMetadata
|
|
1381
|
-
AgentID
|
|
1382
|
-
StatusAlreadyViewed
|
|
1383
|
-
MessageSecret
|
|
1384
|
-
KeepInChat
|
|
1385
|
-
OriginalSelfAuthorUserJIDString
|
|
1386
|
-
RevokeMessageTimestamp
|
|
1387
|
-
PinInChat
|
|
1388
|
-
PremiumMessageInfo
|
|
1389
|
-
Is1PBizBotMessage
|
|
1390
|
-
IsGroupHistoryMessage
|
|
1391
|
-
BotMessageInvokerJID
|
|
1392
|
-
CommentMetadata
|
|
1393
|
-
EventResponses
|
|
1394
|
-
ReportingTokenInfo
|
|
1395
|
-
NewsletterServerID
|
|
1396
|
-
EventAdditionalMetadata
|
|
1397
|
-
IsMentionedInStatus
|
|
1398
|
-
StatusMentions
|
|
1399
|
-
TargetMessageID
|
|
1400
|
-
MessageAddOns
|
|
1401
|
-
StatusMentionMessageInfo
|
|
1402
|
-
IsSupportAiMessage
|
|
1403
|
-
StatusMentionSources
|
|
1404
|
-
SupportAiCitations
|
|
1405
|
-
BotTargetID
|
|
1406
|
-
|
|
1407
|
-
|
|
1405
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1406
|
+
Key *waCommon.MessageKey `protobuf:"bytes,1,req,name=key" json:"key,omitempty"`
|
|
1407
|
+
Message *waE2E.Message `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
|
|
1408
|
+
MessageTimestamp *uint64 `protobuf:"varint,3,opt,name=messageTimestamp" json:"messageTimestamp,omitempty"`
|
|
1409
|
+
Status *WebMessageInfo_Status `protobuf:"varint,4,opt,name=status,enum=WAWebProtobufsWeb.WebMessageInfo_Status" json:"status,omitempty"`
|
|
1410
|
+
Participant *string `protobuf:"bytes,5,opt,name=participant" json:"participant,omitempty"`
|
|
1411
|
+
MessageC2STimestamp *uint64 `protobuf:"varint,6,opt,name=messageC2STimestamp" json:"messageC2STimestamp,omitempty"`
|
|
1412
|
+
Ignore *bool `protobuf:"varint,16,opt,name=ignore" json:"ignore,omitempty"`
|
|
1413
|
+
Starred *bool `protobuf:"varint,17,opt,name=starred" json:"starred,omitempty"`
|
|
1414
|
+
Broadcast *bool `protobuf:"varint,18,opt,name=broadcast" json:"broadcast,omitempty"`
|
|
1415
|
+
PushName *string `protobuf:"bytes,19,opt,name=pushName" json:"pushName,omitempty"`
|
|
1416
|
+
MediaCiphertextSHA256 []byte `protobuf:"bytes,20,opt,name=mediaCiphertextSHA256" json:"mediaCiphertextSHA256,omitempty"`
|
|
1417
|
+
Multicast *bool `protobuf:"varint,21,opt,name=multicast" json:"multicast,omitempty"`
|
|
1418
|
+
UrlText *bool `protobuf:"varint,22,opt,name=urlText" json:"urlText,omitempty"`
|
|
1419
|
+
UrlNumber *bool `protobuf:"varint,23,opt,name=urlNumber" json:"urlNumber,omitempty"`
|
|
1420
|
+
MessageStubType *WebMessageInfo_StubType `protobuf:"varint,24,opt,name=messageStubType,enum=WAWebProtobufsWeb.WebMessageInfo_StubType" json:"messageStubType,omitempty"`
|
|
1421
|
+
ClearMedia *bool `protobuf:"varint,25,opt,name=clearMedia" json:"clearMedia,omitempty"`
|
|
1422
|
+
MessageStubParameters []string `protobuf:"bytes,26,rep,name=messageStubParameters" json:"messageStubParameters,omitempty"`
|
|
1423
|
+
Duration *uint32 `protobuf:"varint,27,opt,name=duration" json:"duration,omitempty"`
|
|
1424
|
+
Labels []string `protobuf:"bytes,28,rep,name=labels" json:"labels,omitempty"`
|
|
1425
|
+
PaymentInfo *PaymentInfo `protobuf:"bytes,29,opt,name=paymentInfo" json:"paymentInfo,omitempty"`
|
|
1426
|
+
FinalLiveLocation *waE2E.LiveLocationMessage `protobuf:"bytes,30,opt,name=finalLiveLocation" json:"finalLiveLocation,omitempty"`
|
|
1427
|
+
QuotedPaymentInfo *PaymentInfo `protobuf:"bytes,31,opt,name=quotedPaymentInfo" json:"quotedPaymentInfo,omitempty"`
|
|
1428
|
+
EphemeralStartTimestamp *uint64 `protobuf:"varint,32,opt,name=ephemeralStartTimestamp" json:"ephemeralStartTimestamp,omitempty"`
|
|
1429
|
+
EphemeralDuration *uint32 `protobuf:"varint,33,opt,name=ephemeralDuration" json:"ephemeralDuration,omitempty"`
|
|
1430
|
+
EphemeralOffToOn *bool `protobuf:"varint,34,opt,name=ephemeralOffToOn" json:"ephemeralOffToOn,omitempty"`
|
|
1431
|
+
EphemeralOutOfSync *bool `protobuf:"varint,35,opt,name=ephemeralOutOfSync" json:"ephemeralOutOfSync,omitempty"`
|
|
1432
|
+
BizPrivacyStatus *WebMessageInfo_BizPrivacyStatus `protobuf:"varint,36,opt,name=bizPrivacyStatus,enum=WAWebProtobufsWeb.WebMessageInfo_BizPrivacyStatus" json:"bizPrivacyStatus,omitempty"`
|
|
1433
|
+
VerifiedBizName *string `protobuf:"bytes,37,opt,name=verifiedBizName" json:"verifiedBizName,omitempty"`
|
|
1434
|
+
MediaData *MediaData `protobuf:"bytes,38,opt,name=mediaData" json:"mediaData,omitempty"`
|
|
1435
|
+
PhotoChange *PhotoChange `protobuf:"bytes,39,opt,name=photoChange" json:"photoChange,omitempty"`
|
|
1436
|
+
UserReceipt []*UserReceipt `protobuf:"bytes,40,rep,name=userReceipt" json:"userReceipt,omitempty"`
|
|
1437
|
+
Reactions []*Reaction `protobuf:"bytes,41,rep,name=reactions" json:"reactions,omitempty"`
|
|
1438
|
+
QuotedStickerData *MediaData `protobuf:"bytes,42,opt,name=quotedStickerData" json:"quotedStickerData,omitempty"`
|
|
1439
|
+
FutureproofData []byte `protobuf:"bytes,43,opt,name=futureproofData" json:"futureproofData,omitempty"`
|
|
1440
|
+
StatusPsa *StatusPSA `protobuf:"bytes,44,opt,name=statusPsa" json:"statusPsa,omitempty"`
|
|
1441
|
+
PollUpdates []*PollUpdate `protobuf:"bytes,45,rep,name=pollUpdates" json:"pollUpdates,omitempty"`
|
|
1442
|
+
PollAdditionalMetadata *PollAdditionalMetadata `protobuf:"bytes,46,opt,name=pollAdditionalMetadata" json:"pollAdditionalMetadata,omitempty"`
|
|
1443
|
+
AgentID *string `protobuf:"bytes,47,opt,name=agentID" json:"agentID,omitempty"`
|
|
1444
|
+
StatusAlreadyViewed *bool `protobuf:"varint,48,opt,name=statusAlreadyViewed" json:"statusAlreadyViewed,omitempty"`
|
|
1445
|
+
MessageSecret []byte `protobuf:"bytes,49,opt,name=messageSecret" json:"messageSecret,omitempty"`
|
|
1446
|
+
KeepInChat *KeepInChat `protobuf:"bytes,50,opt,name=keepInChat" json:"keepInChat,omitempty"`
|
|
1447
|
+
OriginalSelfAuthorUserJIDString *string `protobuf:"bytes,51,opt,name=originalSelfAuthorUserJIDString" json:"originalSelfAuthorUserJIDString,omitempty"`
|
|
1448
|
+
RevokeMessageTimestamp *uint64 `protobuf:"varint,52,opt,name=revokeMessageTimestamp" json:"revokeMessageTimestamp,omitempty"`
|
|
1449
|
+
PinInChat *PinInChat `protobuf:"bytes,54,opt,name=pinInChat" json:"pinInChat,omitempty"`
|
|
1450
|
+
PremiumMessageInfo *PremiumMessageInfo `protobuf:"bytes,55,opt,name=premiumMessageInfo" json:"premiumMessageInfo,omitempty"`
|
|
1451
|
+
Is1PBizBotMessage *bool `protobuf:"varint,56,opt,name=is1PBizBotMessage" json:"is1PBizBotMessage,omitempty"`
|
|
1452
|
+
IsGroupHistoryMessage *bool `protobuf:"varint,57,opt,name=isGroupHistoryMessage" json:"isGroupHistoryMessage,omitempty"`
|
|
1453
|
+
BotMessageInvokerJID *string `protobuf:"bytes,58,opt,name=botMessageInvokerJID" json:"botMessageInvokerJID,omitempty"`
|
|
1454
|
+
CommentMetadata *CommentMetadata `protobuf:"bytes,59,opt,name=commentMetadata" json:"commentMetadata,omitempty"`
|
|
1455
|
+
EventResponses []*EventResponse `protobuf:"bytes,61,rep,name=eventResponses" json:"eventResponses,omitempty"`
|
|
1456
|
+
ReportingTokenInfo *ReportingTokenInfo `protobuf:"bytes,62,opt,name=reportingTokenInfo" json:"reportingTokenInfo,omitempty"`
|
|
1457
|
+
NewsletterServerID *uint64 `protobuf:"varint,63,opt,name=newsletterServerID" json:"newsletterServerID,omitempty"`
|
|
1458
|
+
EventAdditionalMetadata *EventAdditionalMetadata `protobuf:"bytes,64,opt,name=eventAdditionalMetadata" json:"eventAdditionalMetadata,omitempty"`
|
|
1459
|
+
IsMentionedInStatus *bool `protobuf:"varint,65,opt,name=isMentionedInStatus" json:"isMentionedInStatus,omitempty"`
|
|
1460
|
+
StatusMentions []string `protobuf:"bytes,66,rep,name=statusMentions" json:"statusMentions,omitempty"`
|
|
1461
|
+
TargetMessageID *waCommon.MessageKey `protobuf:"bytes,67,opt,name=targetMessageID" json:"targetMessageID,omitempty"`
|
|
1462
|
+
MessageAddOns []*MessageAddOn `protobuf:"bytes,68,rep,name=messageAddOns" json:"messageAddOns,omitempty"`
|
|
1463
|
+
StatusMentionMessageInfo *StatusMentionMessage `protobuf:"bytes,69,opt,name=statusMentionMessageInfo" json:"statusMentionMessageInfo,omitempty"`
|
|
1464
|
+
IsSupportAiMessage *bool `protobuf:"varint,70,opt,name=isSupportAiMessage" json:"isSupportAiMessage,omitempty"`
|
|
1465
|
+
StatusMentionSources []string `protobuf:"bytes,71,rep,name=statusMentionSources" json:"statusMentionSources,omitempty"`
|
|
1466
|
+
SupportAiCitations []*Citation `protobuf:"bytes,72,rep,name=supportAiCitations" json:"supportAiCitations,omitempty"`
|
|
1467
|
+
BotTargetID *string `protobuf:"bytes,73,opt,name=botTargetID" json:"botTargetID,omitempty"`
|
|
1468
|
+
GroupHistoryIndividualMessageInfo *GroupHistoryIndividualMessageInfo `protobuf:"bytes,74,opt,name=groupHistoryIndividualMessageInfo" json:"groupHistoryIndividualMessageInfo,omitempty"`
|
|
1469
|
+
GroupHistoryBundleInfo *GroupHistoryBundleInfo `protobuf:"bytes,75,opt,name=groupHistoryBundleInfo" json:"groupHistoryBundleInfo,omitempty"`
|
|
1470
|
+
InteractiveMessageAdditionalMetadata *InteractiveMessageAdditionalMetadata `protobuf:"bytes,76,opt,name=interactiveMessageAdditionalMetadata" json:"interactiveMessageAdditionalMetadata,omitempty"`
|
|
1471
|
+
unknownFields protoimpl.UnknownFields
|
|
1472
|
+
sizeCache protoimpl.SizeCache
|
|
1408
1473
|
}
|
|
1409
1474
|
|
|
1410
1475
|
func (x *WebMessageInfo) Reset() {
|
|
@@ -1871,6 +1936,27 @@ func (x *WebMessageInfo) GetBotTargetID() string {
|
|
|
1871
1936
|
return ""
|
|
1872
1937
|
}
|
|
1873
1938
|
|
|
1939
|
+
func (x *WebMessageInfo) GetGroupHistoryIndividualMessageInfo() *GroupHistoryIndividualMessageInfo {
|
|
1940
|
+
if x != nil {
|
|
1941
|
+
return x.GroupHistoryIndividualMessageInfo
|
|
1942
|
+
}
|
|
1943
|
+
return nil
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
func (x *WebMessageInfo) GetGroupHistoryBundleInfo() *GroupHistoryBundleInfo {
|
|
1947
|
+
if x != nil {
|
|
1948
|
+
return x.GroupHistoryBundleInfo
|
|
1949
|
+
}
|
|
1950
|
+
return nil
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
func (x *WebMessageInfo) GetInteractiveMessageAdditionalMetadata() *InteractiveMessageAdditionalMetadata {
|
|
1954
|
+
if x != nil {
|
|
1955
|
+
return x.InteractiveMessageAdditionalMetadata
|
|
1956
|
+
}
|
|
1957
|
+
return nil
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1874
1960
|
type PaymentInfo struct {
|
|
1875
1961
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1876
1962
|
CurrencyDeprecated *PaymentInfo_Currency `protobuf:"varint,1,opt,name=currencyDeprecated,enum=WAWebProtobufsWeb.PaymentInfo_Currency" json:"currencyDeprecated,omitempty"`
|
|
@@ -2583,6 +2669,58 @@ func (x *MessageAddOn) GetLegacyMessage() *LegacyMessage {
|
|
|
2583
2669
|
return nil
|
|
2584
2670
|
}
|
|
2585
2671
|
|
|
2672
|
+
type GroupHistoryBundleInfo struct {
|
|
2673
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2674
|
+
DeprecatedMessageHistoryBundle *waE2E.MessageHistoryBundle `protobuf:"bytes,1,opt,name=deprecatedMessageHistoryBundle" json:"deprecatedMessageHistoryBundle,omitempty"`
|
|
2675
|
+
ProcessState *GroupHistoryBundleInfo_ProcessState `protobuf:"varint,2,opt,name=processState,enum=WAWebProtobufsWeb.GroupHistoryBundleInfo_ProcessState" json:"processState,omitempty"`
|
|
2676
|
+
unknownFields protoimpl.UnknownFields
|
|
2677
|
+
sizeCache protoimpl.SizeCache
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
func (x *GroupHistoryBundleInfo) Reset() {
|
|
2681
|
+
*x = GroupHistoryBundleInfo{}
|
|
2682
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
|
|
2683
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2684
|
+
ms.StoreMessageInfo(mi)
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
func (x *GroupHistoryBundleInfo) String() string {
|
|
2688
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2689
|
+
}
|
|
2690
|
+
|
|
2691
|
+
func (*GroupHistoryBundleInfo) ProtoMessage() {}
|
|
2692
|
+
|
|
2693
|
+
func (x *GroupHistoryBundleInfo) ProtoReflect() protoreflect.Message {
|
|
2694
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
|
|
2695
|
+
if x != nil {
|
|
2696
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2697
|
+
if ms.LoadMessageInfo() == nil {
|
|
2698
|
+
ms.StoreMessageInfo(mi)
|
|
2699
|
+
}
|
|
2700
|
+
return ms
|
|
2701
|
+
}
|
|
2702
|
+
return mi.MessageOf(x)
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
// Deprecated: Use GroupHistoryBundleInfo.ProtoReflect.Descriptor instead.
|
|
2706
|
+
func (*GroupHistoryBundleInfo) Descriptor() ([]byte, []int) {
|
|
2707
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{5}
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
func (x *GroupHistoryBundleInfo) GetDeprecatedMessageHistoryBundle() *waE2E.MessageHistoryBundle {
|
|
2711
|
+
if x != nil {
|
|
2712
|
+
return x.DeprecatedMessageHistoryBundle
|
|
2713
|
+
}
|
|
2714
|
+
return nil
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
func (x *GroupHistoryBundleInfo) GetProcessState() GroupHistoryBundleInfo_ProcessState {
|
|
2718
|
+
if x != nil && x.ProcessState != nil {
|
|
2719
|
+
return *x.ProcessState
|
|
2720
|
+
}
|
|
2721
|
+
return GroupHistoryBundleInfo_NOT_INJECTED
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2586
2724
|
type CommentMetadata struct {
|
|
2587
2725
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2588
2726
|
CommentParentKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=commentParentKey" json:"commentParentKey,omitempty"`
|
|
@@ -2593,7 +2731,7 @@ type CommentMetadata struct {
|
|
|
2593
2731
|
|
|
2594
2732
|
func (x *CommentMetadata) Reset() {
|
|
2595
2733
|
*x = CommentMetadata{}
|
|
2596
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2734
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
|
|
2597
2735
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2598
2736
|
ms.StoreMessageInfo(mi)
|
|
2599
2737
|
}
|
|
@@ -2605,7 +2743,7 @@ func (x *CommentMetadata) String() string {
|
|
|
2605
2743
|
func (*CommentMetadata) ProtoMessage() {}
|
|
2606
2744
|
|
|
2607
2745
|
func (x *CommentMetadata) ProtoReflect() protoreflect.Message {
|
|
2608
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2746
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
|
|
2609
2747
|
if x != nil {
|
|
2610
2748
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2611
2749
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2618,7 +2756,7 @@ func (x *CommentMetadata) ProtoReflect() protoreflect.Message {
|
|
|
2618
2756
|
|
|
2619
2757
|
// Deprecated: Use CommentMetadata.ProtoReflect.Descriptor instead.
|
|
2620
2758
|
func (*CommentMetadata) Descriptor() ([]byte, []int) {
|
|
2621
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
2759
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{6}
|
|
2622
2760
|
}
|
|
2623
2761
|
|
|
2624
2762
|
func (x *CommentMetadata) GetCommentParentKey() *waCommon.MessageKey {
|
|
@@ -2647,7 +2785,7 @@ type WebNotificationsInfo struct {
|
|
|
2647
2785
|
|
|
2648
2786
|
func (x *WebNotificationsInfo) Reset() {
|
|
2649
2787
|
*x = WebNotificationsInfo{}
|
|
2650
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2788
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
|
|
2651
2789
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2652
2790
|
ms.StoreMessageInfo(mi)
|
|
2653
2791
|
}
|
|
@@ -2659,7 +2797,7 @@ func (x *WebNotificationsInfo) String() string {
|
|
|
2659
2797
|
func (*WebNotificationsInfo) ProtoMessage() {}
|
|
2660
2798
|
|
|
2661
2799
|
func (x *WebNotificationsInfo) ProtoReflect() protoreflect.Message {
|
|
2662
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2800
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
|
|
2663
2801
|
if x != nil {
|
|
2664
2802
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2665
2803
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2672,7 +2810,7 @@ func (x *WebNotificationsInfo) ProtoReflect() protoreflect.Message {
|
|
|
2672
2810
|
|
|
2673
2811
|
// Deprecated: Use WebNotificationsInfo.ProtoReflect.Descriptor instead.
|
|
2674
2812
|
func (*WebNotificationsInfo) Descriptor() ([]byte, []int) {
|
|
2675
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
2813
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{7}
|
|
2676
2814
|
}
|
|
2677
2815
|
|
|
2678
2816
|
func (x *WebNotificationsInfo) GetTimestamp() uint64 {
|
|
@@ -2715,7 +2853,7 @@ type NotificationMessageInfo struct {
|
|
|
2715
2853
|
|
|
2716
2854
|
func (x *NotificationMessageInfo) Reset() {
|
|
2717
2855
|
*x = NotificationMessageInfo{}
|
|
2718
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2856
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
|
|
2719
2857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2720
2858
|
ms.StoreMessageInfo(mi)
|
|
2721
2859
|
}
|
|
@@ -2727,7 +2865,7 @@ func (x *NotificationMessageInfo) String() string {
|
|
|
2727
2865
|
func (*NotificationMessageInfo) ProtoMessage() {}
|
|
2728
2866
|
|
|
2729
2867
|
func (x *NotificationMessageInfo) ProtoReflect() protoreflect.Message {
|
|
2730
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2868
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
|
|
2731
2869
|
if x != nil {
|
|
2732
2870
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2733
2871
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2740,7 +2878,7 @@ func (x *NotificationMessageInfo) ProtoReflect() protoreflect.Message {
|
|
|
2740
2878
|
|
|
2741
2879
|
// Deprecated: Use NotificationMessageInfo.ProtoReflect.Descriptor instead.
|
|
2742
2880
|
func (*NotificationMessageInfo) Descriptor() ([]byte, []int) {
|
|
2743
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
2881
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{8}
|
|
2744
2882
|
}
|
|
2745
2883
|
|
|
2746
2884
|
func (x *NotificationMessageInfo) GetKey() *waCommon.MessageKey {
|
|
@@ -2780,7 +2918,7 @@ type ReportingTokenInfo struct {
|
|
|
2780
2918
|
|
|
2781
2919
|
func (x *ReportingTokenInfo) Reset() {
|
|
2782
2920
|
*x = ReportingTokenInfo{}
|
|
2783
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2921
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
|
|
2784
2922
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2785
2923
|
ms.StoreMessageInfo(mi)
|
|
2786
2924
|
}
|
|
@@ -2792,7 +2930,7 @@ func (x *ReportingTokenInfo) String() string {
|
|
|
2792
2930
|
func (*ReportingTokenInfo) ProtoMessage() {}
|
|
2793
2931
|
|
|
2794
2932
|
func (x *ReportingTokenInfo) ProtoReflect() protoreflect.Message {
|
|
2795
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2933
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
|
|
2796
2934
|
if x != nil {
|
|
2797
2935
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2798
2936
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2805,7 +2943,7 @@ func (x *ReportingTokenInfo) ProtoReflect() protoreflect.Message {
|
|
|
2805
2943
|
|
|
2806
2944
|
// Deprecated: Use ReportingTokenInfo.ProtoReflect.Descriptor instead.
|
|
2807
2945
|
func (*ReportingTokenInfo) Descriptor() ([]byte, []int) {
|
|
2808
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
2946
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{9}
|
|
2809
2947
|
}
|
|
2810
2948
|
|
|
2811
2949
|
func (x *ReportingTokenInfo) GetReportingTag() []byte {
|
|
@@ -2824,7 +2962,7 @@ type MediaData struct {
|
|
|
2824
2962
|
|
|
2825
2963
|
func (x *MediaData) Reset() {
|
|
2826
2964
|
*x = MediaData{}
|
|
2827
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2965
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
|
|
2828
2966
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2829
2967
|
ms.StoreMessageInfo(mi)
|
|
2830
2968
|
}
|
|
@@ -2836,7 +2974,7 @@ func (x *MediaData) String() string {
|
|
|
2836
2974
|
func (*MediaData) ProtoMessage() {}
|
|
2837
2975
|
|
|
2838
2976
|
func (x *MediaData) ProtoReflect() protoreflect.Message {
|
|
2839
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
2977
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
|
|
2840
2978
|
if x != nil {
|
|
2841
2979
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2842
2980
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2849,7 +2987,7 @@ func (x *MediaData) ProtoReflect() protoreflect.Message {
|
|
|
2849
2987
|
|
|
2850
2988
|
// Deprecated: Use MediaData.ProtoReflect.Descriptor instead.
|
|
2851
2989
|
func (*MediaData) Descriptor() ([]byte, []int) {
|
|
2852
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
2990
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{10}
|
|
2853
2991
|
}
|
|
2854
2992
|
|
|
2855
2993
|
func (x *MediaData) GetLocalPath() string {
|
|
@@ -2870,7 +3008,7 @@ type PhotoChange struct {
|
|
|
2870
3008
|
|
|
2871
3009
|
func (x *PhotoChange) Reset() {
|
|
2872
3010
|
*x = PhotoChange{}
|
|
2873
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3011
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
|
|
2874
3012
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2875
3013
|
ms.StoreMessageInfo(mi)
|
|
2876
3014
|
}
|
|
@@ -2882,7 +3020,7 @@ func (x *PhotoChange) String() string {
|
|
|
2882
3020
|
func (*PhotoChange) ProtoMessage() {}
|
|
2883
3021
|
|
|
2884
3022
|
func (x *PhotoChange) ProtoReflect() protoreflect.Message {
|
|
2885
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3023
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
|
|
2886
3024
|
if x != nil {
|
|
2887
3025
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2888
3026
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2895,7 +3033,7 @@ func (x *PhotoChange) ProtoReflect() protoreflect.Message {
|
|
|
2895
3033
|
|
|
2896
3034
|
// Deprecated: Use PhotoChange.ProtoReflect.Descriptor instead.
|
|
2897
3035
|
func (*PhotoChange) Descriptor() ([]byte, []int) {
|
|
2898
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3036
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{11}
|
|
2899
3037
|
}
|
|
2900
3038
|
|
|
2901
3039
|
func (x *PhotoChange) GetOldPhoto() []byte {
|
|
@@ -2929,7 +3067,7 @@ type StatusPSA struct {
|
|
|
2929
3067
|
|
|
2930
3068
|
func (x *StatusPSA) Reset() {
|
|
2931
3069
|
*x = StatusPSA{}
|
|
2932
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3070
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
|
|
2933
3071
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2934
3072
|
ms.StoreMessageInfo(mi)
|
|
2935
3073
|
}
|
|
@@ -2941,7 +3079,7 @@ func (x *StatusPSA) String() string {
|
|
|
2941
3079
|
func (*StatusPSA) ProtoMessage() {}
|
|
2942
3080
|
|
|
2943
3081
|
func (x *StatusPSA) ProtoReflect() protoreflect.Message {
|
|
2944
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3082
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
|
|
2945
3083
|
if x != nil {
|
|
2946
3084
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2947
3085
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2954,7 +3092,7 @@ func (x *StatusPSA) ProtoReflect() protoreflect.Message {
|
|
|
2954
3092
|
|
|
2955
3093
|
// Deprecated: Use StatusPSA.ProtoReflect.Descriptor instead.
|
|
2956
3094
|
func (*StatusPSA) Descriptor() ([]byte, []int) {
|
|
2957
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3095
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{12}
|
|
2958
3096
|
}
|
|
2959
3097
|
|
|
2960
3098
|
func (x *StatusPSA) GetCampaignID() uint64 {
|
|
@@ -2985,7 +3123,7 @@ type UserReceipt struct {
|
|
|
2985
3123
|
|
|
2986
3124
|
func (x *UserReceipt) Reset() {
|
|
2987
3125
|
*x = UserReceipt{}
|
|
2988
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3126
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
|
|
2989
3127
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2990
3128
|
ms.StoreMessageInfo(mi)
|
|
2991
3129
|
}
|
|
@@ -2997,7 +3135,7 @@ func (x *UserReceipt) String() string {
|
|
|
2997
3135
|
func (*UserReceipt) ProtoMessage() {}
|
|
2998
3136
|
|
|
2999
3137
|
func (x *UserReceipt) ProtoReflect() protoreflect.Message {
|
|
3000
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3138
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
|
|
3001
3139
|
if x != nil {
|
|
3002
3140
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3003
3141
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3010,7 +3148,7 @@ func (x *UserReceipt) ProtoReflect() protoreflect.Message {
|
|
|
3010
3148
|
|
|
3011
3149
|
// Deprecated: Use UserReceipt.ProtoReflect.Descriptor instead.
|
|
3012
3150
|
func (*UserReceipt) Descriptor() ([]byte, []int) {
|
|
3013
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3151
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{13}
|
|
3014
3152
|
}
|
|
3015
3153
|
|
|
3016
3154
|
func (x *UserReceipt) GetUserJID() string {
|
|
@@ -3068,7 +3206,7 @@ type Reaction struct {
|
|
|
3068
3206
|
|
|
3069
3207
|
func (x *Reaction) Reset() {
|
|
3070
3208
|
*x = Reaction{}
|
|
3071
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3209
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
|
|
3072
3210
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3073
3211
|
ms.StoreMessageInfo(mi)
|
|
3074
3212
|
}
|
|
@@ -3080,7 +3218,7 @@ func (x *Reaction) String() string {
|
|
|
3080
3218
|
func (*Reaction) ProtoMessage() {}
|
|
3081
3219
|
|
|
3082
3220
|
func (x *Reaction) ProtoReflect() protoreflect.Message {
|
|
3083
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3221
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
|
|
3084
3222
|
if x != nil {
|
|
3085
3223
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3086
3224
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3093,7 +3231,7 @@ func (x *Reaction) ProtoReflect() protoreflect.Message {
|
|
|
3093
3231
|
|
|
3094
3232
|
// Deprecated: Use Reaction.ProtoReflect.Descriptor instead.
|
|
3095
3233
|
func (*Reaction) Descriptor() ([]byte, []int) {
|
|
3096
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3234
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{14}
|
|
3097
3235
|
}
|
|
3098
3236
|
|
|
3099
3237
|
func (x *Reaction) GetKey() *waCommon.MessageKey {
|
|
@@ -3144,7 +3282,7 @@ type PollUpdate struct {
|
|
|
3144
3282
|
|
|
3145
3283
|
func (x *PollUpdate) Reset() {
|
|
3146
3284
|
*x = PollUpdate{}
|
|
3147
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3285
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
|
|
3148
3286
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3149
3287
|
ms.StoreMessageInfo(mi)
|
|
3150
3288
|
}
|
|
@@ -3156,7 +3294,7 @@ func (x *PollUpdate) String() string {
|
|
|
3156
3294
|
func (*PollUpdate) ProtoMessage() {}
|
|
3157
3295
|
|
|
3158
3296
|
func (x *PollUpdate) ProtoReflect() protoreflect.Message {
|
|
3159
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3297
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
|
|
3160
3298
|
if x != nil {
|
|
3161
3299
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3162
3300
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3169,7 +3307,7 @@ func (x *PollUpdate) ProtoReflect() protoreflect.Message {
|
|
|
3169
3307
|
|
|
3170
3308
|
// Deprecated: Use PollUpdate.ProtoReflect.Descriptor instead.
|
|
3171
3309
|
func (*PollUpdate) Descriptor() ([]byte, []int) {
|
|
3172
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3310
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{15}
|
|
3173
3311
|
}
|
|
3174
3312
|
|
|
3175
3313
|
func (x *PollUpdate) GetPollUpdateMessageKey() *waCommon.MessageKey {
|
|
@@ -3216,7 +3354,7 @@ type PollAdditionalMetadata struct {
|
|
|
3216
3354
|
|
|
3217
3355
|
func (x *PollAdditionalMetadata) Reset() {
|
|
3218
3356
|
*x = PollAdditionalMetadata{}
|
|
3219
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3357
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
|
|
3220
3358
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3221
3359
|
ms.StoreMessageInfo(mi)
|
|
3222
3360
|
}
|
|
@@ -3228,7 +3366,7 @@ func (x *PollAdditionalMetadata) String() string {
|
|
|
3228
3366
|
func (*PollAdditionalMetadata) ProtoMessage() {}
|
|
3229
3367
|
|
|
3230
3368
|
func (x *PollAdditionalMetadata) ProtoReflect() protoreflect.Message {
|
|
3231
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3369
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
|
|
3232
3370
|
if x != nil {
|
|
3233
3371
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3234
3372
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3241,7 +3379,7 @@ func (x *PollAdditionalMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3241
3379
|
|
|
3242
3380
|
// Deprecated: Use PollAdditionalMetadata.ProtoReflect.Descriptor instead.
|
|
3243
3381
|
func (*PollAdditionalMetadata) Descriptor() ([]byte, []int) {
|
|
3244
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3382
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{16}
|
|
3245
3383
|
}
|
|
3246
3384
|
|
|
3247
3385
|
func (x *PollAdditionalMetadata) GetPollInvalidated() bool {
|
|
@@ -3251,6 +3389,50 @@ func (x *PollAdditionalMetadata) GetPollInvalidated() bool {
|
|
|
3251
3389
|
return false
|
|
3252
3390
|
}
|
|
3253
3391
|
|
|
3392
|
+
type InteractiveMessageAdditionalMetadata struct {
|
|
3393
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3394
|
+
IsGalaxyFlowCompleted *bool `protobuf:"varint,1,opt,name=isGalaxyFlowCompleted" json:"isGalaxyFlowCompleted,omitempty"`
|
|
3395
|
+
unknownFields protoimpl.UnknownFields
|
|
3396
|
+
sizeCache protoimpl.SizeCache
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
func (x *InteractiveMessageAdditionalMetadata) Reset() {
|
|
3400
|
+
*x = InteractiveMessageAdditionalMetadata{}
|
|
3401
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
|
|
3402
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3403
|
+
ms.StoreMessageInfo(mi)
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
func (x *InteractiveMessageAdditionalMetadata) String() string {
|
|
3407
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
func (*InteractiveMessageAdditionalMetadata) ProtoMessage() {}
|
|
3411
|
+
|
|
3412
|
+
func (x *InteractiveMessageAdditionalMetadata) ProtoReflect() protoreflect.Message {
|
|
3413
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
|
|
3414
|
+
if x != nil {
|
|
3415
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3416
|
+
if ms.LoadMessageInfo() == nil {
|
|
3417
|
+
ms.StoreMessageInfo(mi)
|
|
3418
|
+
}
|
|
3419
|
+
return ms
|
|
3420
|
+
}
|
|
3421
|
+
return mi.MessageOf(x)
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
// Deprecated: Use InteractiveMessageAdditionalMetadata.ProtoReflect.Descriptor instead.
|
|
3425
|
+
func (*InteractiveMessageAdditionalMetadata) Descriptor() ([]byte, []int) {
|
|
3426
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{17}
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
func (x *InteractiveMessageAdditionalMetadata) GetIsGalaxyFlowCompleted() bool {
|
|
3430
|
+
if x != nil && x.IsGalaxyFlowCompleted != nil {
|
|
3431
|
+
return *x.IsGalaxyFlowCompleted
|
|
3432
|
+
}
|
|
3433
|
+
return false
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3254
3436
|
type EventAdditionalMetadata struct {
|
|
3255
3437
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3256
3438
|
IsStale *bool `protobuf:"varint,1,opt,name=isStale" json:"isStale,omitempty"`
|
|
@@ -3260,7 +3442,7 @@ type EventAdditionalMetadata struct {
|
|
|
3260
3442
|
|
|
3261
3443
|
func (x *EventAdditionalMetadata) Reset() {
|
|
3262
3444
|
*x = EventAdditionalMetadata{}
|
|
3263
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3445
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
|
|
3264
3446
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3265
3447
|
ms.StoreMessageInfo(mi)
|
|
3266
3448
|
}
|
|
@@ -3272,7 +3454,7 @@ func (x *EventAdditionalMetadata) String() string {
|
|
|
3272
3454
|
func (*EventAdditionalMetadata) ProtoMessage() {}
|
|
3273
3455
|
|
|
3274
3456
|
func (x *EventAdditionalMetadata) ProtoReflect() protoreflect.Message {
|
|
3275
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3457
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
|
|
3276
3458
|
if x != nil {
|
|
3277
3459
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3278
3460
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3285,7 +3467,7 @@ func (x *EventAdditionalMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3285
3467
|
|
|
3286
3468
|
// Deprecated: Use EventAdditionalMetadata.ProtoReflect.Descriptor instead.
|
|
3287
3469
|
func (*EventAdditionalMetadata) Descriptor() ([]byte, []int) {
|
|
3288
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3470
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{18}
|
|
3289
3471
|
}
|
|
3290
3472
|
|
|
3291
3473
|
func (x *EventAdditionalMetadata) GetIsStale() bool {
|
|
@@ -3309,7 +3491,7 @@ type KeepInChat struct {
|
|
|
3309
3491
|
|
|
3310
3492
|
func (x *KeepInChat) Reset() {
|
|
3311
3493
|
*x = KeepInChat{}
|
|
3312
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3494
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
|
|
3313
3495
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3314
3496
|
ms.StoreMessageInfo(mi)
|
|
3315
3497
|
}
|
|
@@ -3321,7 +3503,7 @@ func (x *KeepInChat) String() string {
|
|
|
3321
3503
|
func (*KeepInChat) ProtoMessage() {}
|
|
3322
3504
|
|
|
3323
3505
|
func (x *KeepInChat) ProtoReflect() protoreflect.Message {
|
|
3324
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3506
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
|
|
3325
3507
|
if x != nil {
|
|
3326
3508
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3327
3509
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3334,7 +3516,7 @@ func (x *KeepInChat) ProtoReflect() protoreflect.Message {
|
|
|
3334
3516
|
|
|
3335
3517
|
// Deprecated: Use KeepInChat.ProtoReflect.Descriptor instead.
|
|
3336
3518
|
func (*KeepInChat) Descriptor() ([]byte, []int) {
|
|
3337
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3519
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{19}
|
|
3338
3520
|
}
|
|
3339
3521
|
|
|
3340
3522
|
func (x *KeepInChat) GetKeepType() waE2E.KeepType {
|
|
@@ -3389,7 +3571,7 @@ type MessageAddOnContextInfo struct {
|
|
|
3389
3571
|
|
|
3390
3572
|
func (x *MessageAddOnContextInfo) Reset() {
|
|
3391
3573
|
*x = MessageAddOnContextInfo{}
|
|
3392
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3574
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
|
|
3393
3575
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3394
3576
|
ms.StoreMessageInfo(mi)
|
|
3395
3577
|
}
|
|
@@ -3401,7 +3583,7 @@ func (x *MessageAddOnContextInfo) String() string {
|
|
|
3401
3583
|
func (*MessageAddOnContextInfo) ProtoMessage() {}
|
|
3402
3584
|
|
|
3403
3585
|
func (x *MessageAddOnContextInfo) ProtoReflect() protoreflect.Message {
|
|
3404
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3586
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
|
|
3405
3587
|
if x != nil {
|
|
3406
3588
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3407
3589
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3414,7 +3596,7 @@ func (x *MessageAddOnContextInfo) ProtoReflect() protoreflect.Message {
|
|
|
3414
3596
|
|
|
3415
3597
|
// Deprecated: Use MessageAddOnContextInfo.ProtoReflect.Descriptor instead.
|
|
3416
3598
|
func (*MessageAddOnContextInfo) Descriptor() ([]byte, []int) {
|
|
3417
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3599
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{20}
|
|
3418
3600
|
}
|
|
3419
3601
|
|
|
3420
3602
|
func (x *MessageAddOnContextInfo) GetMessageAddOnDurationInSecs() uint32 {
|
|
@@ -3440,7 +3622,7 @@ type PremiumMessageInfo struct {
|
|
|
3440
3622
|
|
|
3441
3623
|
func (x *PremiumMessageInfo) Reset() {
|
|
3442
3624
|
*x = PremiumMessageInfo{}
|
|
3443
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3625
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
|
|
3444
3626
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3445
3627
|
ms.StoreMessageInfo(mi)
|
|
3446
3628
|
}
|
|
@@ -3452,7 +3634,7 @@ func (x *PremiumMessageInfo) String() string {
|
|
|
3452
3634
|
func (*PremiumMessageInfo) ProtoMessage() {}
|
|
3453
3635
|
|
|
3454
3636
|
func (x *PremiumMessageInfo) ProtoReflect() protoreflect.Message {
|
|
3455
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3637
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
|
|
3456
3638
|
if x != nil {
|
|
3457
3639
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3458
3640
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3465,7 +3647,7 @@ func (x *PremiumMessageInfo) ProtoReflect() protoreflect.Message {
|
|
|
3465
3647
|
|
|
3466
3648
|
// Deprecated: Use PremiumMessageInfo.ProtoReflect.Descriptor instead.
|
|
3467
3649
|
func (*PremiumMessageInfo) Descriptor() ([]byte, []int) {
|
|
3468
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3650
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{21}
|
|
3469
3651
|
}
|
|
3470
3652
|
|
|
3471
3653
|
func (x *PremiumMessageInfo) GetServerCampaignID() string {
|
|
@@ -3487,7 +3669,7 @@ type EventResponse struct {
|
|
|
3487
3669
|
|
|
3488
3670
|
func (x *EventResponse) Reset() {
|
|
3489
3671
|
*x = EventResponse{}
|
|
3490
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3672
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
|
|
3491
3673
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3492
3674
|
ms.StoreMessageInfo(mi)
|
|
3493
3675
|
}
|
|
@@ -3499,7 +3681,7 @@ func (x *EventResponse) String() string {
|
|
|
3499
3681
|
func (*EventResponse) ProtoMessage() {}
|
|
3500
3682
|
|
|
3501
3683
|
func (x *EventResponse) ProtoReflect() protoreflect.Message {
|
|
3502
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3684
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
|
|
3503
3685
|
if x != nil {
|
|
3504
3686
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3505
3687
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3512,7 +3694,7 @@ func (x *EventResponse) ProtoReflect() protoreflect.Message {
|
|
|
3512
3694
|
|
|
3513
3695
|
// Deprecated: Use EventResponse.ProtoReflect.Descriptor instead.
|
|
3514
3696
|
func (*EventResponse) Descriptor() ([]byte, []int) {
|
|
3515
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3697
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{22}
|
|
3516
3698
|
}
|
|
3517
3699
|
|
|
3518
3700
|
func (x *EventResponse) GetEventResponseMessageKey() *waCommon.MessageKey {
|
|
@@ -3553,7 +3735,7 @@ type LegacyMessage struct {
|
|
|
3553
3735
|
|
|
3554
3736
|
func (x *LegacyMessage) Reset() {
|
|
3555
3737
|
*x = LegacyMessage{}
|
|
3556
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3738
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
|
|
3557
3739
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3558
3740
|
ms.StoreMessageInfo(mi)
|
|
3559
3741
|
}
|
|
@@ -3565,7 +3747,7 @@ func (x *LegacyMessage) String() string {
|
|
|
3565
3747
|
func (*LegacyMessage) ProtoMessage() {}
|
|
3566
3748
|
|
|
3567
3749
|
func (x *LegacyMessage) ProtoReflect() protoreflect.Message {
|
|
3568
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3750
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
|
|
3569
3751
|
if x != nil {
|
|
3570
3752
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3571
3753
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3578,7 +3760,7 @@ func (x *LegacyMessage) ProtoReflect() protoreflect.Message {
|
|
|
3578
3760
|
|
|
3579
3761
|
// Deprecated: Use LegacyMessage.ProtoReflect.Descriptor instead.
|
|
3580
3762
|
func (*LegacyMessage) Descriptor() ([]byte, []int) {
|
|
3581
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3763
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{23}
|
|
3582
3764
|
}
|
|
3583
3765
|
|
|
3584
3766
|
func (x *LegacyMessage) GetEventResponseMessage() *waE2E.EventResponseMessage {
|
|
@@ -3604,7 +3786,7 @@ type StatusMentionMessage struct {
|
|
|
3604
3786
|
|
|
3605
3787
|
func (x *StatusMentionMessage) Reset() {
|
|
3606
3788
|
*x = StatusMentionMessage{}
|
|
3607
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3789
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[24]
|
|
3608
3790
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3609
3791
|
ms.StoreMessageInfo(mi)
|
|
3610
3792
|
}
|
|
@@ -3616,7 +3798,7 @@ func (x *StatusMentionMessage) String() string {
|
|
|
3616
3798
|
func (*StatusMentionMessage) ProtoMessage() {}
|
|
3617
3799
|
|
|
3618
3800
|
func (x *StatusMentionMessage) ProtoReflect() protoreflect.Message {
|
|
3619
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3801
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[24]
|
|
3620
3802
|
if x != nil {
|
|
3621
3803
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3622
3804
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3629,7 +3811,7 @@ func (x *StatusMentionMessage) ProtoReflect() protoreflect.Message {
|
|
|
3629
3811
|
|
|
3630
3812
|
// Deprecated: Use StatusMentionMessage.ProtoReflect.Descriptor instead.
|
|
3631
3813
|
func (*StatusMentionMessage) Descriptor() ([]byte, []int) {
|
|
3632
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3814
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{24}
|
|
3633
3815
|
}
|
|
3634
3816
|
|
|
3635
3817
|
func (x *StatusMentionMessage) GetQuotedStatus() *waE2E.Message {
|
|
@@ -3651,7 +3833,7 @@ type Citation struct {
|
|
|
3651
3833
|
|
|
3652
3834
|
func (x *Citation) Reset() {
|
|
3653
3835
|
*x = Citation{}
|
|
3654
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3836
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[25]
|
|
3655
3837
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3656
3838
|
ms.StoreMessageInfo(mi)
|
|
3657
3839
|
}
|
|
@@ -3663,7 +3845,7 @@ func (x *Citation) String() string {
|
|
|
3663
3845
|
func (*Citation) ProtoMessage() {}
|
|
3664
3846
|
|
|
3665
3847
|
func (x *Citation) ProtoReflect() protoreflect.Message {
|
|
3666
|
-
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[
|
|
3848
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[25]
|
|
3667
3849
|
if x != nil {
|
|
3668
3850
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3669
3851
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3676,7 +3858,7 @@ func (x *Citation) ProtoReflect() protoreflect.Message {
|
|
|
3676
3858
|
|
|
3677
3859
|
// Deprecated: Use Citation.ProtoReflect.Descriptor instead.
|
|
3678
3860
|
func (*Citation) Descriptor() ([]byte, []int) {
|
|
3679
|
-
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{
|
|
3861
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{25}
|
|
3680
3862
|
}
|
|
3681
3863
|
|
|
3682
3864
|
func (x *Citation) GetTitle() string {
|
|
@@ -3707,11 +3889,63 @@ func (x *Citation) GetImageURL() string {
|
|
|
3707
3889
|
return ""
|
|
3708
3890
|
}
|
|
3709
3891
|
|
|
3892
|
+
type GroupHistoryIndividualMessageInfo struct {
|
|
3893
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3894
|
+
BundleMessageKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=bundleMessageKey" json:"bundleMessageKey,omitempty"`
|
|
3895
|
+
EditedAfterReceivedAsHistory *bool `protobuf:"varint,2,opt,name=editedAfterReceivedAsHistory" json:"editedAfterReceivedAsHistory,omitempty"`
|
|
3896
|
+
unknownFields protoimpl.UnknownFields
|
|
3897
|
+
sizeCache protoimpl.SizeCache
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
func (x *GroupHistoryIndividualMessageInfo) Reset() {
|
|
3901
|
+
*x = GroupHistoryIndividualMessageInfo{}
|
|
3902
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[26]
|
|
3903
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3904
|
+
ms.StoreMessageInfo(mi)
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
func (x *GroupHistoryIndividualMessageInfo) String() string {
|
|
3908
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
func (*GroupHistoryIndividualMessageInfo) ProtoMessage() {}
|
|
3912
|
+
|
|
3913
|
+
func (x *GroupHistoryIndividualMessageInfo) ProtoReflect() protoreflect.Message {
|
|
3914
|
+
mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[26]
|
|
3915
|
+
if x != nil {
|
|
3916
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3917
|
+
if ms.LoadMessageInfo() == nil {
|
|
3918
|
+
ms.StoreMessageInfo(mi)
|
|
3919
|
+
}
|
|
3920
|
+
return ms
|
|
3921
|
+
}
|
|
3922
|
+
return mi.MessageOf(x)
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
// Deprecated: Use GroupHistoryIndividualMessageInfo.ProtoReflect.Descriptor instead.
|
|
3926
|
+
func (*GroupHistoryIndividualMessageInfo) Descriptor() ([]byte, []int) {
|
|
3927
|
+
return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{26}
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
func (x *GroupHistoryIndividualMessageInfo) GetBundleMessageKey() *waCommon.MessageKey {
|
|
3931
|
+
if x != nil {
|
|
3932
|
+
return x.BundleMessageKey
|
|
3933
|
+
}
|
|
3934
|
+
return nil
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
func (x *GroupHistoryIndividualMessageInfo) GetEditedAfterReceivedAsHistory() bool {
|
|
3938
|
+
if x != nil && x.EditedAfterReceivedAsHistory != nil {
|
|
3939
|
+
return *x.EditedAfterReceivedAsHistory
|
|
3940
|
+
}
|
|
3941
|
+
return false
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3710
3944
|
var File_waWeb_WAWebProtobufsWeb_proto protoreflect.FileDescriptor
|
|
3711
3945
|
|
|
3712
3946
|
const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
|
|
3713
3947
|
"\n" +
|
|
3714
|
-
"\x1dwaWeb/WAWebProtobufsWeb.proto\x12\x11WAWebProtobufsWeb\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\"\
|
|
3948
|
+
"\x1dwaWeb/WAWebProtobufsWeb.proto\x12\x11WAWebProtobufsWeb\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\"\xf0Y\n" +
|
|
3715
3949
|
"\x0eWebMessageInfo\x12&\n" +
|
|
3716
3950
|
"\x03key\x18\x01 \x02(\v2\x14.WACommon.MessageKeyR\x03key\x124\n" +
|
|
3717
3951
|
"\amessage\x18\x02 \x01(\v2\x1a.WAWebProtobufsE2E.MessageR\amessage\x12*\n" +
|
|
@@ -3778,7 +4012,10 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
|
|
|
3778
4012
|
"\x12isSupportAiMessage\x18F \x01(\bR\x12isSupportAiMessage\x122\n" +
|
|
3779
4013
|
"\x14statusMentionSources\x18G \x03(\tR\x14statusMentionSources\x12K\n" +
|
|
3780
4014
|
"\x12supportAiCitations\x18H \x03(\v2\x1b.WAWebProtobufsWeb.CitationR\x12supportAiCitations\x12 \n" +
|
|
3781
|
-
"\vbotTargetID\x18I \x01(\tR\vbotTargetID\
|
|
4015
|
+
"\vbotTargetID\x18I \x01(\tR\vbotTargetID\x12\x82\x01\n" +
|
|
4016
|
+
"!groupHistoryIndividualMessageInfo\x18J \x01(\v24.WAWebProtobufsWeb.GroupHistoryIndividualMessageInfoR!groupHistoryIndividualMessageInfo\x12a\n" +
|
|
4017
|
+
"\x16groupHistoryBundleInfo\x18K \x01(\v2).WAWebProtobufsWeb.GroupHistoryBundleInfoR\x16groupHistoryBundleInfo\x12\x8b\x01\n" +
|
|
4018
|
+
"$interactiveMessageAdditionalMetadata\x18L \x01(\v27.WAWebProtobufsWeb.InteractiveMessageAdditionalMetadataR$interactiveMessageAdditionalMetadata\"=\n" +
|
|
3782
4019
|
"\x10BizPrivacyStatus\x12\b\n" +
|
|
3783
4020
|
"\x04E2EE\x10\x00\x12\x06\n" +
|
|
3784
4021
|
"\x02FB\x10\x02\x12\a\n" +
|
|
@@ -4172,7 +4409,15 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
|
|
|
4172
4409
|
"\bREACTION\x10\x01\x12\x12\n" +
|
|
4173
4410
|
"\x0eEVENT_RESPONSE\x10\x02\x12\x0f\n" +
|
|
4174
4411
|
"\vPOLL_UPDATE\x10\x03\x12\x0f\n" +
|
|
4175
|
-
"\vPIN_IN_CHAT\x10\x04\"
|
|
4412
|
+
"\vPIN_IN_CHAT\x10\x04\"\xc1\x02\n" +
|
|
4413
|
+
"\x16GroupHistoryBundleInfo\x12o\n" +
|
|
4414
|
+
"\x1edeprecatedMessageHistoryBundle\x18\x01 \x01(\v2'.WAWebProtobufsE2E.MessageHistoryBundleR\x1edeprecatedMessageHistoryBundle\x12Z\n" +
|
|
4415
|
+
"\fprocessState\x18\x02 \x01(\x0e26.WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessStateR\fprocessState\"Z\n" +
|
|
4416
|
+
"\fProcessState\x12\x10\n" +
|
|
4417
|
+
"\fNOT_INJECTED\x10\x00\x12\f\n" +
|
|
4418
|
+
"\bINJECTED\x10\x01\x12\x14\n" +
|
|
4419
|
+
"\x10INJECTED_PARTIAL\x10\x02\x12\x14\n" +
|
|
4420
|
+
"\x10INJECTION_FAILED\x10\x03\"s\n" +
|
|
4176
4421
|
"\x0fCommentMetadata\x12@\n" +
|
|
4177
4422
|
"\x10commentParentKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x10commentParentKey\x12\x1e\n" +
|
|
4178
4423
|
"\n" +
|
|
@@ -4224,7 +4469,9 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
|
|
|
4224
4469
|
"\x11serverTimestampMS\x18\x04 \x01(\x03R\x11serverTimestampMS\x12\x16\n" +
|
|
4225
4470
|
"\x06unread\x18\x05 \x01(\bR\x06unread\"B\n" +
|
|
4226
4471
|
"\x16PollAdditionalMetadata\x12(\n" +
|
|
4227
|
-
"\x0fpollInvalidated\x18\x01 \x01(\bR\x0fpollInvalidated\"
|
|
4472
|
+
"\x0fpollInvalidated\x18\x01 \x01(\bR\x0fpollInvalidated\"\\\n" +
|
|
4473
|
+
"$InteractiveMessageAdditionalMetadata\x124\n" +
|
|
4474
|
+
"\x15isGalaxyFlowCompleted\x18\x01 \x01(\bR\x15isGalaxyFlowCompleted\"3\n" +
|
|
4228
4475
|
"\x17EventAdditionalMetadata\x12\x18\n" +
|
|
4229
4476
|
"\aisStale\x18\x01 \x01(\bR\aisStale\"\x91\x02\n" +
|
|
4230
4477
|
"\n" +
|
|
@@ -4254,7 +4501,10 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
|
|
|
4254
4501
|
"\x05title\x18\x01 \x02(\tR\x05title\x12\x1a\n" +
|
|
4255
4502
|
"\bsubtitle\x18\x02 \x02(\tR\bsubtitle\x12\x14\n" +
|
|
4256
4503
|
"\x05cmsID\x18\x03 \x02(\tR\x05cmsID\x12\x1a\n" +
|
|
4257
|
-
"\bimageURL\x18\x04 \x02(\tR\
|
|
4504
|
+
"\bimageURL\x18\x04 \x02(\tR\bimageURL\"\xa9\x01\n" +
|
|
4505
|
+
"!GroupHistoryIndividualMessageInfo\x12@\n" +
|
|
4506
|
+
"\x10bundleMessageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x10bundleMessageKey\x12B\n" +
|
|
4507
|
+
"\x1ceditedAfterReceivedAsHistory\x18\x02 \x01(\bR\x1ceditedAfterReceivedAsHistoryB!Z\x1fgo.mau.fi/whatsmeow/proto/waWeb"
|
|
4258
4508
|
|
|
4259
4509
|
var (
|
|
4260
4510
|
file_waWeb_WAWebProtobufsWeb_proto_rawDescOnce sync.Once
|
|
@@ -4268,8 +4518,8 @@ func file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP() []byte {
|
|
|
4268
4518
|
return file_waWeb_WAWebProtobufsWeb_proto_rawDescData
|
|
4269
4519
|
}
|
|
4270
4520
|
|
|
4271
|
-
var file_waWeb_WAWebProtobufsWeb_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
4272
|
-
var file_waWeb_WAWebProtobufsWeb_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
4521
|
+
var file_waWeb_WAWebProtobufsWeb_proto_enumTypes = make([]protoimpl.EnumInfo, 10)
|
|
4522
|
+
var file_waWeb_WAWebProtobufsWeb_proto_msgTypes = make([]protoimpl.MessageInfo, 27)
|
|
4273
4523
|
var file_waWeb_WAWebProtobufsWeb_proto_goTypes = []any{
|
|
4274
4524
|
(WebMessageInfo_BizPrivacyStatus)(0), // 0: WAWebProtobufsWeb.WebMessageInfo.BizPrivacyStatus
|
|
4275
4525
|
(WebMessageInfo_StubType)(0), // 1: WAWebProtobufsWeb.WebMessageInfo.StubType
|
|
@@ -4280,147 +4530,158 @@ var file_waWeb_WAWebProtobufsWeb_proto_goTypes = []any{
|
|
|
4280
4530
|
(WebFeatures_Flag)(0), // 6: WAWebProtobufsWeb.WebFeatures.Flag
|
|
4281
4531
|
(PinInChat_Type)(0), // 7: WAWebProtobufsWeb.PinInChat.Type
|
|
4282
4532
|
(MessageAddOn_MessageAddOnType)(0), // 8: WAWebProtobufsWeb.MessageAddOn.MessageAddOnType
|
|
4283
|
-
(
|
|
4284
|
-
(*
|
|
4285
|
-
(*
|
|
4286
|
-
(*
|
|
4287
|
-
(*
|
|
4288
|
-
(*
|
|
4289
|
-
(*
|
|
4290
|
-
(*
|
|
4291
|
-
(*
|
|
4292
|
-
(*
|
|
4293
|
-
(*
|
|
4294
|
-
(*
|
|
4295
|
-
(*
|
|
4296
|
-
(*
|
|
4297
|
-
(*
|
|
4298
|
-
(*
|
|
4299
|
-
(*
|
|
4300
|
-
(*
|
|
4301
|
-
(*
|
|
4302
|
-
(*
|
|
4303
|
-
(*
|
|
4304
|
-
(*
|
|
4305
|
-
(*
|
|
4306
|
-
(*
|
|
4307
|
-
(*
|
|
4308
|
-
(*
|
|
4309
|
-
(*
|
|
4310
|
-
(*
|
|
4311
|
-
(*
|
|
4312
|
-
(waE2E.
|
|
4313
|
-
(waE2E.
|
|
4314
|
-
(*waE2E.
|
|
4533
|
+
(GroupHistoryBundleInfo_ProcessState)(0), // 9: WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessState
|
|
4534
|
+
(*WebMessageInfo)(nil), // 10: WAWebProtobufsWeb.WebMessageInfo
|
|
4535
|
+
(*PaymentInfo)(nil), // 11: WAWebProtobufsWeb.PaymentInfo
|
|
4536
|
+
(*WebFeatures)(nil), // 12: WAWebProtobufsWeb.WebFeatures
|
|
4537
|
+
(*PinInChat)(nil), // 13: WAWebProtobufsWeb.PinInChat
|
|
4538
|
+
(*MessageAddOn)(nil), // 14: WAWebProtobufsWeb.MessageAddOn
|
|
4539
|
+
(*GroupHistoryBundleInfo)(nil), // 15: WAWebProtobufsWeb.GroupHistoryBundleInfo
|
|
4540
|
+
(*CommentMetadata)(nil), // 16: WAWebProtobufsWeb.CommentMetadata
|
|
4541
|
+
(*WebNotificationsInfo)(nil), // 17: WAWebProtobufsWeb.WebNotificationsInfo
|
|
4542
|
+
(*NotificationMessageInfo)(nil), // 18: WAWebProtobufsWeb.NotificationMessageInfo
|
|
4543
|
+
(*ReportingTokenInfo)(nil), // 19: WAWebProtobufsWeb.ReportingTokenInfo
|
|
4544
|
+
(*MediaData)(nil), // 20: WAWebProtobufsWeb.MediaData
|
|
4545
|
+
(*PhotoChange)(nil), // 21: WAWebProtobufsWeb.PhotoChange
|
|
4546
|
+
(*StatusPSA)(nil), // 22: WAWebProtobufsWeb.StatusPSA
|
|
4547
|
+
(*UserReceipt)(nil), // 23: WAWebProtobufsWeb.UserReceipt
|
|
4548
|
+
(*Reaction)(nil), // 24: WAWebProtobufsWeb.Reaction
|
|
4549
|
+
(*PollUpdate)(nil), // 25: WAWebProtobufsWeb.PollUpdate
|
|
4550
|
+
(*PollAdditionalMetadata)(nil), // 26: WAWebProtobufsWeb.PollAdditionalMetadata
|
|
4551
|
+
(*InteractiveMessageAdditionalMetadata)(nil), // 27: WAWebProtobufsWeb.InteractiveMessageAdditionalMetadata
|
|
4552
|
+
(*EventAdditionalMetadata)(nil), // 28: WAWebProtobufsWeb.EventAdditionalMetadata
|
|
4553
|
+
(*KeepInChat)(nil), // 29: WAWebProtobufsWeb.KeepInChat
|
|
4554
|
+
(*MessageAddOnContextInfo)(nil), // 30: WAWebProtobufsWeb.MessageAddOnContextInfo
|
|
4555
|
+
(*PremiumMessageInfo)(nil), // 31: WAWebProtobufsWeb.PremiumMessageInfo
|
|
4556
|
+
(*EventResponse)(nil), // 32: WAWebProtobufsWeb.EventResponse
|
|
4557
|
+
(*LegacyMessage)(nil), // 33: WAWebProtobufsWeb.LegacyMessage
|
|
4558
|
+
(*StatusMentionMessage)(nil), // 34: WAWebProtobufsWeb.StatusMentionMessage
|
|
4559
|
+
(*Citation)(nil), // 35: WAWebProtobufsWeb.Citation
|
|
4560
|
+
(*GroupHistoryIndividualMessageInfo)(nil), // 36: WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo
|
|
4561
|
+
(*waCommon.MessageKey)(nil), // 37: WACommon.MessageKey
|
|
4562
|
+
(*waE2E.Message)(nil), // 38: WAWebProtobufsE2E.Message
|
|
4563
|
+
(*waE2E.LiveLocationMessage)(nil), // 39: WAWebProtobufsE2E.LiveLocationMessage
|
|
4564
|
+
(*waE2E.Money)(nil), // 40: WAWebProtobufsE2E.Money
|
|
4565
|
+
(*waE2E.MessageHistoryBundle)(nil), // 41: WAWebProtobufsE2E.MessageHistoryBundle
|
|
4566
|
+
(*waE2E.PollVoteMessage)(nil), // 42: WAWebProtobufsE2E.PollVoteMessage
|
|
4567
|
+
(waE2E.KeepType)(0), // 43: WAWebProtobufsE2E.KeepType
|
|
4568
|
+
(waE2E.MessageContextInfo_MessageAddonExpiryType)(0), // 44: WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
|
|
4569
|
+
(*waE2E.EventResponseMessage)(nil), // 45: WAWebProtobufsE2E.EventResponseMessage
|
|
4315
4570
|
}
|
|
4316
4571
|
var file_waWeb_WAWebProtobufsWeb_proto_depIdxs = []int32{
|
|
4317
|
-
|
|
4318
|
-
|
|
4572
|
+
37, // 0: WAWebProtobufsWeb.WebMessageInfo.key:type_name -> WACommon.MessageKey
|
|
4573
|
+
38, // 1: WAWebProtobufsWeb.WebMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
|
|
4319
4574
|
2, // 2: WAWebProtobufsWeb.WebMessageInfo.status:type_name -> WAWebProtobufsWeb.WebMessageInfo.Status
|
|
4320
4575
|
1, // 3: WAWebProtobufsWeb.WebMessageInfo.messageStubType:type_name -> WAWebProtobufsWeb.WebMessageInfo.StubType
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4576
|
+
11, // 4: WAWebProtobufsWeb.WebMessageInfo.paymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
|
|
4577
|
+
39, // 5: WAWebProtobufsWeb.WebMessageInfo.finalLiveLocation:type_name -> WAWebProtobufsE2E.LiveLocationMessage
|
|
4578
|
+
11, // 6: WAWebProtobufsWeb.WebMessageInfo.quotedPaymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
|
|
4324
4579
|
0, // 7: WAWebProtobufsWeb.WebMessageInfo.bizPrivacyStatus:type_name -> WAWebProtobufsWeb.WebMessageInfo.BizPrivacyStatus
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
6, // 36: WAWebProtobufsWeb.WebFeatures.
|
|
4354
|
-
6, // 37: WAWebProtobufsWeb.WebFeatures.
|
|
4355
|
-
6, // 38: WAWebProtobufsWeb.WebFeatures.
|
|
4356
|
-
6, // 39: WAWebProtobufsWeb.WebFeatures.
|
|
4357
|
-
6, // 40: WAWebProtobufsWeb.WebFeatures.
|
|
4358
|
-
6, // 41: WAWebProtobufsWeb.WebFeatures.
|
|
4359
|
-
6, // 42: WAWebProtobufsWeb.WebFeatures.
|
|
4360
|
-
6, // 43: WAWebProtobufsWeb.WebFeatures.
|
|
4361
|
-
6, // 44: WAWebProtobufsWeb.WebFeatures.
|
|
4362
|
-
6, // 45: WAWebProtobufsWeb.WebFeatures.
|
|
4363
|
-
6, // 46: WAWebProtobufsWeb.WebFeatures.
|
|
4364
|
-
6, // 47: WAWebProtobufsWeb.WebFeatures.
|
|
4365
|
-
6, // 48: WAWebProtobufsWeb.WebFeatures.
|
|
4366
|
-
6, // 49: WAWebProtobufsWeb.WebFeatures.
|
|
4367
|
-
6, // 50: WAWebProtobufsWeb.WebFeatures.
|
|
4368
|
-
6, // 51: WAWebProtobufsWeb.WebFeatures.
|
|
4369
|
-
6, // 52: WAWebProtobufsWeb.WebFeatures.
|
|
4370
|
-
6, // 53: WAWebProtobufsWeb.WebFeatures.
|
|
4371
|
-
6, // 54: WAWebProtobufsWeb.WebFeatures.
|
|
4372
|
-
6, // 55: WAWebProtobufsWeb.WebFeatures.
|
|
4373
|
-
6, // 56: WAWebProtobufsWeb.WebFeatures.
|
|
4374
|
-
6, // 57: WAWebProtobufsWeb.WebFeatures.
|
|
4375
|
-
6, // 58: WAWebProtobufsWeb.WebFeatures.
|
|
4376
|
-
6, // 59: WAWebProtobufsWeb.WebFeatures.
|
|
4377
|
-
6, // 60: WAWebProtobufsWeb.WebFeatures.
|
|
4378
|
-
6, // 61: WAWebProtobufsWeb.WebFeatures.
|
|
4379
|
-
6, // 62: WAWebProtobufsWeb.WebFeatures.
|
|
4380
|
-
6, // 63: WAWebProtobufsWeb.WebFeatures.
|
|
4381
|
-
6, // 64: WAWebProtobufsWeb.WebFeatures.
|
|
4382
|
-
6, // 65: WAWebProtobufsWeb.WebFeatures.
|
|
4383
|
-
6, // 66: WAWebProtobufsWeb.WebFeatures.
|
|
4384
|
-
6, // 67: WAWebProtobufsWeb.WebFeatures.
|
|
4385
|
-
6, // 68: WAWebProtobufsWeb.WebFeatures.
|
|
4386
|
-
6, // 69: WAWebProtobufsWeb.WebFeatures.
|
|
4387
|
-
6, // 70: WAWebProtobufsWeb.WebFeatures.
|
|
4388
|
-
6, // 71: WAWebProtobufsWeb.WebFeatures.
|
|
4389
|
-
6, // 72: WAWebProtobufsWeb.WebFeatures.
|
|
4390
|
-
6, // 73: WAWebProtobufsWeb.WebFeatures.
|
|
4391
|
-
6, // 74: WAWebProtobufsWeb.WebFeatures.
|
|
4392
|
-
6, // 75: WAWebProtobufsWeb.WebFeatures.
|
|
4393
|
-
6, // 76: WAWebProtobufsWeb.WebFeatures.
|
|
4394
|
-
6, // 77: WAWebProtobufsWeb.WebFeatures.
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
33, // 89: WAWebProtobufsWeb.
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
37, // 100: WAWebProtobufsWeb.
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4580
|
+
20, // 8: WAWebProtobufsWeb.WebMessageInfo.mediaData:type_name -> WAWebProtobufsWeb.MediaData
|
|
4581
|
+
21, // 9: WAWebProtobufsWeb.WebMessageInfo.photoChange:type_name -> WAWebProtobufsWeb.PhotoChange
|
|
4582
|
+
23, // 10: WAWebProtobufsWeb.WebMessageInfo.userReceipt:type_name -> WAWebProtobufsWeb.UserReceipt
|
|
4583
|
+
24, // 11: WAWebProtobufsWeb.WebMessageInfo.reactions:type_name -> WAWebProtobufsWeb.Reaction
|
|
4584
|
+
20, // 12: WAWebProtobufsWeb.WebMessageInfo.quotedStickerData:type_name -> WAWebProtobufsWeb.MediaData
|
|
4585
|
+
22, // 13: WAWebProtobufsWeb.WebMessageInfo.statusPsa:type_name -> WAWebProtobufsWeb.StatusPSA
|
|
4586
|
+
25, // 14: WAWebProtobufsWeb.WebMessageInfo.pollUpdates:type_name -> WAWebProtobufsWeb.PollUpdate
|
|
4587
|
+
26, // 15: WAWebProtobufsWeb.WebMessageInfo.pollAdditionalMetadata:type_name -> WAWebProtobufsWeb.PollAdditionalMetadata
|
|
4588
|
+
29, // 16: WAWebProtobufsWeb.WebMessageInfo.keepInChat:type_name -> WAWebProtobufsWeb.KeepInChat
|
|
4589
|
+
13, // 17: WAWebProtobufsWeb.WebMessageInfo.pinInChat:type_name -> WAWebProtobufsWeb.PinInChat
|
|
4590
|
+
31, // 18: WAWebProtobufsWeb.WebMessageInfo.premiumMessageInfo:type_name -> WAWebProtobufsWeb.PremiumMessageInfo
|
|
4591
|
+
16, // 19: WAWebProtobufsWeb.WebMessageInfo.commentMetadata:type_name -> WAWebProtobufsWeb.CommentMetadata
|
|
4592
|
+
32, // 20: WAWebProtobufsWeb.WebMessageInfo.eventResponses:type_name -> WAWebProtobufsWeb.EventResponse
|
|
4593
|
+
19, // 21: WAWebProtobufsWeb.WebMessageInfo.reportingTokenInfo:type_name -> WAWebProtobufsWeb.ReportingTokenInfo
|
|
4594
|
+
28, // 22: WAWebProtobufsWeb.WebMessageInfo.eventAdditionalMetadata:type_name -> WAWebProtobufsWeb.EventAdditionalMetadata
|
|
4595
|
+
37, // 23: WAWebProtobufsWeb.WebMessageInfo.targetMessageID:type_name -> WACommon.MessageKey
|
|
4596
|
+
14, // 24: WAWebProtobufsWeb.WebMessageInfo.messageAddOns:type_name -> WAWebProtobufsWeb.MessageAddOn
|
|
4597
|
+
34, // 25: WAWebProtobufsWeb.WebMessageInfo.statusMentionMessageInfo:type_name -> WAWebProtobufsWeb.StatusMentionMessage
|
|
4598
|
+
35, // 26: WAWebProtobufsWeb.WebMessageInfo.supportAiCitations:type_name -> WAWebProtobufsWeb.Citation
|
|
4599
|
+
36, // 27: WAWebProtobufsWeb.WebMessageInfo.groupHistoryIndividualMessageInfo:type_name -> WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo
|
|
4600
|
+
15, // 28: WAWebProtobufsWeb.WebMessageInfo.groupHistoryBundleInfo:type_name -> WAWebProtobufsWeb.GroupHistoryBundleInfo
|
|
4601
|
+
27, // 29: WAWebProtobufsWeb.WebMessageInfo.interactiveMessageAdditionalMetadata:type_name -> WAWebProtobufsWeb.InteractiveMessageAdditionalMetadata
|
|
4602
|
+
5, // 30: WAWebProtobufsWeb.PaymentInfo.currencyDeprecated:type_name -> WAWebProtobufsWeb.PaymentInfo.Currency
|
|
4603
|
+
4, // 31: WAWebProtobufsWeb.PaymentInfo.status:type_name -> WAWebProtobufsWeb.PaymentInfo.Status
|
|
4604
|
+
37, // 32: WAWebProtobufsWeb.PaymentInfo.requestMessageKey:type_name -> WACommon.MessageKey
|
|
4605
|
+
3, // 33: WAWebProtobufsWeb.PaymentInfo.txnStatus:type_name -> WAWebProtobufsWeb.PaymentInfo.TxnStatus
|
|
4606
|
+
40, // 34: WAWebProtobufsWeb.PaymentInfo.primaryAmount:type_name -> WAWebProtobufsE2E.Money
|
|
4607
|
+
40, // 35: WAWebProtobufsWeb.PaymentInfo.exchangeAmount:type_name -> WAWebProtobufsE2E.Money
|
|
4608
|
+
6, // 36: WAWebProtobufsWeb.WebFeatures.labelsDisplay:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4609
|
+
6, // 37: WAWebProtobufsWeb.WebFeatures.voipIndividualOutgoing:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4610
|
+
6, // 38: WAWebProtobufsWeb.WebFeatures.groupsV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4611
|
+
6, // 39: WAWebProtobufsWeb.WebFeatures.groupsV3Create:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4612
|
+
6, // 40: WAWebProtobufsWeb.WebFeatures.changeNumberV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4613
|
+
6, // 41: WAWebProtobufsWeb.WebFeatures.queryStatusV3Thumbnail:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4614
|
+
6, // 42: WAWebProtobufsWeb.WebFeatures.liveLocations:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4615
|
+
6, // 43: WAWebProtobufsWeb.WebFeatures.queryVname:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4616
|
+
6, // 44: WAWebProtobufsWeb.WebFeatures.voipIndividualIncoming:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4617
|
+
6, // 45: WAWebProtobufsWeb.WebFeatures.quickRepliesQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4618
|
+
6, // 46: WAWebProtobufsWeb.WebFeatures.payments:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4619
|
+
6, // 47: WAWebProtobufsWeb.WebFeatures.stickerPackQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4620
|
+
6, // 48: WAWebProtobufsWeb.WebFeatures.liveLocationsFinal:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4621
|
+
6, // 49: WAWebProtobufsWeb.WebFeatures.labelsEdit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4622
|
+
6, // 50: WAWebProtobufsWeb.WebFeatures.mediaUpload:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4623
|
+
6, // 51: WAWebProtobufsWeb.WebFeatures.mediaUploadRichQuickReplies:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4624
|
+
6, // 52: WAWebProtobufsWeb.WebFeatures.vnameV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4625
|
+
6, // 53: WAWebProtobufsWeb.WebFeatures.videoPlaybackURL:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4626
|
+
6, // 54: WAWebProtobufsWeb.WebFeatures.statusRanking:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4627
|
+
6, // 55: WAWebProtobufsWeb.WebFeatures.voipIndividualVideo:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4628
|
+
6, // 56: WAWebProtobufsWeb.WebFeatures.thirdPartyStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4629
|
+
6, // 57: WAWebProtobufsWeb.WebFeatures.frequentlyForwardedSetting:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4630
|
+
6, // 58: WAWebProtobufsWeb.WebFeatures.groupsV4JoinPermission:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4631
|
+
6, // 59: WAWebProtobufsWeb.WebFeatures.recentStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4632
|
+
6, // 60: WAWebProtobufsWeb.WebFeatures.catalog:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4633
|
+
6, // 61: WAWebProtobufsWeb.WebFeatures.starredStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4634
|
+
6, // 62: WAWebProtobufsWeb.WebFeatures.voipGroupCall:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4635
|
+
6, // 63: WAWebProtobufsWeb.WebFeatures.templateMessage:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4636
|
+
6, // 64: WAWebProtobufsWeb.WebFeatures.templateMessageInteractivity:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4637
|
+
6, // 65: WAWebProtobufsWeb.WebFeatures.ephemeralMessages:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4638
|
+
6, // 66: WAWebProtobufsWeb.WebFeatures.e2ENotificationSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4639
|
+
6, // 67: WAWebProtobufsWeb.WebFeatures.recentStickersV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4640
|
+
6, // 68: WAWebProtobufsWeb.WebFeatures.recentStickersV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4641
|
+
6, // 69: WAWebProtobufsWeb.WebFeatures.userNotice:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4642
|
+
6, // 70: WAWebProtobufsWeb.WebFeatures.support:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4643
|
+
6, // 71: WAWebProtobufsWeb.WebFeatures.groupUiiCleanup:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4644
|
+
6, // 72: WAWebProtobufsWeb.WebFeatures.groupDogfoodingInternalOnly:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4645
|
+
6, // 73: WAWebProtobufsWeb.WebFeatures.settingsSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4646
|
+
6, // 74: WAWebProtobufsWeb.WebFeatures.archiveV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4647
|
+
6, // 75: WAWebProtobufsWeb.WebFeatures.ephemeralAllowGroupMembers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4648
|
+
6, // 76: WAWebProtobufsWeb.WebFeatures.ephemeral24HDuration:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4649
|
+
6, // 77: WAWebProtobufsWeb.WebFeatures.mdForceUpgrade:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4650
|
+
6, // 78: WAWebProtobufsWeb.WebFeatures.disappearingMode:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4651
|
+
6, // 79: WAWebProtobufsWeb.WebFeatures.externalMdOptInAvailable:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4652
|
+
6, // 80: WAWebProtobufsWeb.WebFeatures.noDeleteMessageTimeLimit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
|
|
4653
|
+
7, // 81: WAWebProtobufsWeb.PinInChat.type:type_name -> WAWebProtobufsWeb.PinInChat.Type
|
|
4654
|
+
37, // 82: WAWebProtobufsWeb.PinInChat.key:type_name -> WACommon.MessageKey
|
|
4655
|
+
30, // 83: WAWebProtobufsWeb.PinInChat.messageAddOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
|
|
4656
|
+
8, // 84: WAWebProtobufsWeb.MessageAddOn.messageAddOnType:type_name -> WAWebProtobufsWeb.MessageAddOn.MessageAddOnType
|
|
4657
|
+
38, // 85: WAWebProtobufsWeb.MessageAddOn.messageAddOn:type_name -> WAWebProtobufsE2E.Message
|
|
4658
|
+
2, // 86: WAWebProtobufsWeb.MessageAddOn.status:type_name -> WAWebProtobufsWeb.WebMessageInfo.Status
|
|
4659
|
+
30, // 87: WAWebProtobufsWeb.MessageAddOn.addOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
|
|
4660
|
+
37, // 88: WAWebProtobufsWeb.MessageAddOn.messageAddOnKey:type_name -> WACommon.MessageKey
|
|
4661
|
+
33, // 89: WAWebProtobufsWeb.MessageAddOn.legacyMessage:type_name -> WAWebProtobufsWeb.LegacyMessage
|
|
4662
|
+
41, // 90: WAWebProtobufsWeb.GroupHistoryBundleInfo.deprecatedMessageHistoryBundle:type_name -> WAWebProtobufsE2E.MessageHistoryBundle
|
|
4663
|
+
9, // 91: WAWebProtobufsWeb.GroupHistoryBundleInfo.processState:type_name -> WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessState
|
|
4664
|
+
37, // 92: WAWebProtobufsWeb.CommentMetadata.commentParentKey:type_name -> WACommon.MessageKey
|
|
4665
|
+
10, // 93: WAWebProtobufsWeb.WebNotificationsInfo.notifyMessages:type_name -> WAWebProtobufsWeb.WebMessageInfo
|
|
4666
|
+
37, // 94: WAWebProtobufsWeb.NotificationMessageInfo.key:type_name -> WACommon.MessageKey
|
|
4667
|
+
38, // 95: WAWebProtobufsWeb.NotificationMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
|
|
4668
|
+
37, // 96: WAWebProtobufsWeb.Reaction.key:type_name -> WACommon.MessageKey
|
|
4669
|
+
37, // 97: WAWebProtobufsWeb.PollUpdate.pollUpdateMessageKey:type_name -> WACommon.MessageKey
|
|
4670
|
+
42, // 98: WAWebProtobufsWeb.PollUpdate.vote:type_name -> WAWebProtobufsE2E.PollVoteMessage
|
|
4671
|
+
43, // 99: WAWebProtobufsWeb.KeepInChat.keepType:type_name -> WAWebProtobufsE2E.KeepType
|
|
4672
|
+
37, // 100: WAWebProtobufsWeb.KeepInChat.key:type_name -> WACommon.MessageKey
|
|
4673
|
+
44, // 101: WAWebProtobufsWeb.MessageAddOnContextInfo.messageAddOnExpiryType:type_name -> WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
|
|
4674
|
+
37, // 102: WAWebProtobufsWeb.EventResponse.eventResponseMessageKey:type_name -> WACommon.MessageKey
|
|
4675
|
+
45, // 103: WAWebProtobufsWeb.EventResponse.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
|
|
4676
|
+
45, // 104: WAWebProtobufsWeb.LegacyMessage.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
|
|
4677
|
+
42, // 105: WAWebProtobufsWeb.LegacyMessage.pollVote:type_name -> WAWebProtobufsE2E.PollVoteMessage
|
|
4678
|
+
38, // 106: WAWebProtobufsWeb.StatusMentionMessage.quotedStatus:type_name -> WAWebProtobufsE2E.Message
|
|
4679
|
+
37, // 107: WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo.bundleMessageKey:type_name -> WACommon.MessageKey
|
|
4680
|
+
108, // [108:108] is the sub-list for method output_type
|
|
4681
|
+
108, // [108:108] is the sub-list for method input_type
|
|
4682
|
+
108, // [108:108] is the sub-list for extension type_name
|
|
4683
|
+
108, // [108:108] is the sub-list for extension extendee
|
|
4684
|
+
0, // [0:108] is the sub-list for field type_name
|
|
4424
4685
|
}
|
|
4425
4686
|
|
|
4426
4687
|
func init() { file_waWeb_WAWebProtobufsWeb_proto_init() }
|
|
@@ -4433,8 +4694,8 @@ func file_waWeb_WAWebProtobufsWeb_proto_init() {
|
|
|
4433
4694
|
File: protoimpl.DescBuilder{
|
|
4434
4695
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
4435
4696
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waWeb_WAWebProtobufsWeb_proto_rawDesc), len(file_waWeb_WAWebProtobufsWeb_proto_rawDesc)),
|
|
4436
|
-
NumEnums:
|
|
4437
|
-
NumMessages:
|
|
4697
|
+
NumEnums: 10,
|
|
4698
|
+
NumMessages: 27,
|
|
4438
4699
|
NumExtensions: 0,
|
|
4439
4700
|
NumServices: 0,
|
|
4440
4701
|
},
|