slidge-whatsapp 0.2.7__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.0__cp312-cp312-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 +15 -3
- slidge_whatsapp/event.go +144 -48
- slidge_whatsapp/gateway.go +7 -63
- slidge_whatsapp/gateway.py +2 -3
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +146 -129
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +114 -100
- slidge_whatsapp/generated/whatsapp.c +1309 -1037
- slidge_whatsapp/generated/whatsapp.go +779 -668
- slidge_whatsapp/generated/whatsapp.py +1168 -1043
- slidge_whatsapp/generated/whatsapp_go.h +146 -129
- slidge_whatsapp/go.mod +18 -15
- slidge_whatsapp/go.sum +38 -26
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +1 -1
- slidge_whatsapp/session.go +34 -17
- slidge_whatsapp/session.py +46 -14
- slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +30 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +51 -13
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +3096 -1651
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +188 -128
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +2 -2
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +60 -26
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +19 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +15 -18
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +97 -25
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +22 -10
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +10 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +2 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +30 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8532 -11526
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +132 -438
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +52 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +225 -73
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +21 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +884 -441
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +40 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +60 -38
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +8 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +25 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +3 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +12 -8
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +44 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +14 -3
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +7 -29
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +53 -71
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +20 -74
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +1 -55
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +6 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +483 -483
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +10 -5
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +68 -22
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +8 -0
- slidge_whatsapp/vendor/modules.txt +43 -23
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +208 -161
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -230,6 +230,65 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
|
|
|
230
230
|
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
+
type MaibaAIFeaturesControlAction_MaibaAIFeatureStatus int32
|
|
234
|
+
|
|
235
|
+
const (
|
|
236
|
+
MaibaAIFeaturesControlAction_ENABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 0
|
|
237
|
+
MaibaAIFeaturesControlAction_ENABLED_HAS_LEARNING MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 1
|
|
238
|
+
MaibaAIFeaturesControlAction_DISABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 2
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
// Enum value maps for MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.
|
|
242
|
+
var (
|
|
243
|
+
MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_name = map[int32]string{
|
|
244
|
+
0: "ENABLED",
|
|
245
|
+
1: "ENABLED_HAS_LEARNING",
|
|
246
|
+
2: "DISABLED",
|
|
247
|
+
}
|
|
248
|
+
MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_value = map[string]int32{
|
|
249
|
+
"ENABLED": 0,
|
|
250
|
+
"ENABLED_HAS_LEARNING": 1,
|
|
251
|
+
"DISABLED": 2,
|
|
252
|
+
}
|
|
253
|
+
)
|
|
254
|
+
|
|
255
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Enum() *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
256
|
+
p := new(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)
|
|
257
|
+
*p = x
|
|
258
|
+
return p
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) String() string {
|
|
262
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
266
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Type() protoreflect.EnumType {
|
|
270
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Number() protoreflect.EnumNumber {
|
|
274
|
+
return protoreflect.EnumNumber(x)
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// Deprecated: Do not use.
|
|
278
|
+
func (x *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) UnmarshalJSON(b []byte) error {
|
|
279
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
280
|
+
if err != nil {
|
|
281
|
+
return err
|
|
282
|
+
}
|
|
283
|
+
*x = MaibaAIFeaturesControlAction_MaibaAIFeatureStatus(num)
|
|
284
|
+
return nil
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// Deprecated: Use MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.Descriptor instead.
|
|
288
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) EnumDescriptor() ([]byte, []int) {
|
|
289
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
|
|
290
|
+
}
|
|
291
|
+
|
|
233
292
|
type PaymentTosAction_PaymentNotice int32
|
|
234
293
|
|
|
235
294
|
const (
|
|
@@ -257,11 +316,11 @@ func (x PaymentTosAction_PaymentNotice) String() string {
|
|
|
257
316
|
}
|
|
258
317
|
|
|
259
318
|
func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
|
|
260
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
319
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
|
|
261
320
|
}
|
|
262
321
|
|
|
263
322
|
func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
|
|
264
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
323
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
|
|
265
324
|
}
|
|
266
325
|
|
|
267
326
|
func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
|
|
@@ -280,7 +339,7 @@ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
|
|
|
280
339
|
|
|
281
340
|
// Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
|
|
282
341
|
func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
|
|
283
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
342
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
|
|
284
343
|
}
|
|
285
344
|
|
|
286
345
|
type NotificationActivitySettingAction_NotificationActivitySetting int32
|
|
@@ -319,11 +378,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
|
|
|
319
378
|
}
|
|
320
379
|
|
|
321
380
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
|
|
322
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
381
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
|
|
323
382
|
}
|
|
324
383
|
|
|
325
384
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
|
|
326
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
385
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
|
|
327
386
|
}
|
|
328
387
|
|
|
329
388
|
func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
|
|
@@ -342,7 +401,7 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
|
|
|
342
401
|
|
|
343
402
|
// Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
|
|
344
403
|
func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
|
|
345
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
404
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
|
|
346
405
|
}
|
|
347
406
|
|
|
348
407
|
type WaffleAccountLinkStateAction_AccountLinkState int32
|
|
@@ -372,11 +431,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
|
|
|
372
431
|
}
|
|
373
432
|
|
|
374
433
|
func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
|
|
375
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
434
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
|
|
376
435
|
}
|
|
377
436
|
|
|
378
437
|
func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
|
|
379
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
438
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
|
|
380
439
|
}
|
|
381
440
|
|
|
382
441
|
func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
|
|
@@ -395,7 +454,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
|
|
|
395
454
|
|
|
396
455
|
// Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
|
|
397
456
|
func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
|
|
398
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
457
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
|
|
399
458
|
}
|
|
400
459
|
|
|
401
460
|
type MerchantPaymentPartnerAction_Status int32
|
|
@@ -428,11 +487,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
|
|
|
428
487
|
}
|
|
429
488
|
|
|
430
489
|
func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
431
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
490
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
|
|
432
491
|
}
|
|
433
492
|
|
|
434
493
|
func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
|
|
435
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
494
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
|
|
436
495
|
}
|
|
437
496
|
|
|
438
497
|
func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
|
|
@@ -451,7 +510,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
|
|
|
451
510
|
|
|
452
511
|
// Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
|
|
453
512
|
func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
|
|
454
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
513
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
|
|
455
514
|
}
|
|
456
515
|
|
|
457
516
|
type NoteEditAction_NoteType int32
|
|
@@ -484,11 +543,11 @@ func (x NoteEditAction_NoteType) String() string {
|
|
|
484
543
|
}
|
|
485
544
|
|
|
486
545
|
func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
|
|
487
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
546
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
|
|
488
547
|
}
|
|
489
548
|
|
|
490
549
|
func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
|
|
491
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
550
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
|
|
492
551
|
}
|
|
493
552
|
|
|
494
553
|
func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
|
|
@@ -507,7 +566,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
|
|
|
507
566
|
|
|
508
567
|
// Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
|
|
509
568
|
func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
|
|
510
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
569
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
|
|
511
570
|
}
|
|
512
571
|
|
|
513
572
|
type StatusPrivacyAction_StatusDistributionMode int32
|
|
@@ -543,11 +602,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
|
|
|
543
602
|
}
|
|
544
603
|
|
|
545
604
|
func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
546
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
605
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
547
606
|
}
|
|
548
607
|
|
|
549
608
|
func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
|
|
550
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
609
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
551
610
|
}
|
|
552
611
|
|
|
553
612
|
func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
|
|
@@ -566,7 +625,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
|
|
|
566
625
|
|
|
567
626
|
// Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
|
|
568
627
|
func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
|
|
569
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
628
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
570
629
|
}
|
|
571
630
|
|
|
572
631
|
type MarketingMessageAction_MarketingMessagePrototypeType int32
|
|
@@ -596,11 +655,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
|
|
|
596
655
|
}
|
|
597
656
|
|
|
598
657
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
|
|
599
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
658
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
|
|
600
659
|
}
|
|
601
660
|
|
|
602
661
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
|
|
603
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
662
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
|
|
604
663
|
}
|
|
605
664
|
|
|
606
665
|
func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
|
|
@@ -619,7 +678,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
|
|
|
619
678
|
|
|
620
679
|
// Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
|
|
621
680
|
func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
|
|
622
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
681
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
|
|
623
682
|
}
|
|
624
683
|
|
|
625
684
|
type UsernameChatStartModeAction_ChatStartMode int32
|
|
@@ -652,11 +711,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
|
|
|
652
711
|
}
|
|
653
712
|
|
|
654
713
|
func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
|
|
655
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
714
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
|
|
656
715
|
}
|
|
657
716
|
|
|
658
717
|
func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
|
|
659
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
718
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
|
|
660
719
|
}
|
|
661
720
|
|
|
662
721
|
func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
|
|
@@ -675,7 +734,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
|
|
|
675
734
|
|
|
676
735
|
// Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
|
|
677
736
|
func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
|
|
678
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
737
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
|
|
679
738
|
}
|
|
680
739
|
|
|
681
740
|
type LabelEditAction_ListType int32
|
|
@@ -726,11 +785,11 @@ func (x LabelEditAction_ListType) String() string {
|
|
|
726
785
|
}
|
|
727
786
|
|
|
728
787
|
func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
|
|
729
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
788
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
|
|
730
789
|
}
|
|
731
790
|
|
|
732
791
|
func (LabelEditAction_ListType) Type() protoreflect.EnumType {
|
|
733
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
792
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
|
|
734
793
|
}
|
|
735
794
|
|
|
736
795
|
func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
|
|
@@ -749,7 +808,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
|
|
|
749
808
|
|
|
750
809
|
// Deprecated: Use LabelEditAction_ListType.Descriptor instead.
|
|
751
810
|
func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
|
|
752
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
811
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
|
|
753
812
|
}
|
|
754
813
|
|
|
755
814
|
type PatchDebugData_Platform int32
|
|
@@ -803,11 +862,11 @@ func (x PatchDebugData_Platform) String() string {
|
|
|
803
862
|
}
|
|
804
863
|
|
|
805
864
|
func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
|
|
806
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
865
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
|
|
807
866
|
}
|
|
808
867
|
|
|
809
868
|
func (PatchDebugData_Platform) Type() protoreflect.EnumType {
|
|
810
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
869
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
|
|
811
870
|
}
|
|
812
871
|
|
|
813
872
|
func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
|
|
@@ -826,7 +885,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
|
|
|
826
885
|
|
|
827
886
|
// Deprecated: Use PatchDebugData_Platform.Descriptor instead.
|
|
828
887
|
func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
|
|
829
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
888
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
|
|
830
889
|
}
|
|
831
890
|
|
|
832
891
|
type CallLogRecord struct {
|
|
@@ -985,6 +1044,50 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
|
|
|
985
1044
|
return CallLogRecord_REGULAR
|
|
986
1045
|
}
|
|
987
1046
|
|
|
1047
|
+
type MaibaAIFeaturesControlAction struct {
|
|
1048
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1049
|
+
AiFeatureStatus *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus `protobuf:"varint,1,opt,name=aiFeatureStatus,enum=WASyncAction.MaibaAIFeaturesControlAction_MaibaAIFeatureStatus" json:"aiFeatureStatus,omitempty"`
|
|
1050
|
+
unknownFields protoimpl.UnknownFields
|
|
1051
|
+
sizeCache protoimpl.SizeCache
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
func (x *MaibaAIFeaturesControlAction) Reset() {
|
|
1055
|
+
*x = MaibaAIFeaturesControlAction{}
|
|
1056
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1057
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1058
|
+
ms.StoreMessageInfo(mi)
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
func (x *MaibaAIFeaturesControlAction) String() string {
|
|
1062
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
|
|
1066
|
+
|
|
1067
|
+
func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
1068
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1069
|
+
if x != nil {
|
|
1070
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1071
|
+
if ms.LoadMessageInfo() == nil {
|
|
1072
|
+
ms.StoreMessageInfo(mi)
|
|
1073
|
+
}
|
|
1074
|
+
return ms
|
|
1075
|
+
}
|
|
1076
|
+
return mi.MessageOf(x)
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
// Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
|
|
1080
|
+
func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
|
|
1081
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
1085
|
+
if x != nil && x.AiFeatureStatus != nil {
|
|
1086
|
+
return *x.AiFeatureStatus
|
|
1087
|
+
}
|
|
1088
|
+
return MaibaAIFeaturesControlAction_ENABLED
|
|
1089
|
+
}
|
|
1090
|
+
|
|
988
1091
|
type PaymentTosAction struct {
|
|
989
1092
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
990
1093
|
PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
|
|
@@ -995,7 +1098,7 @@ type PaymentTosAction struct {
|
|
|
995
1098
|
|
|
996
1099
|
func (x *PaymentTosAction) Reset() {
|
|
997
1100
|
*x = PaymentTosAction{}
|
|
998
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1101
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
999
1102
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1000
1103
|
ms.StoreMessageInfo(mi)
|
|
1001
1104
|
}
|
|
@@ -1007,7 +1110,7 @@ func (x *PaymentTosAction) String() string {
|
|
|
1007
1110
|
func (*PaymentTosAction) ProtoMessage() {}
|
|
1008
1111
|
|
|
1009
1112
|
func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
1010
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1113
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1011
1114
|
if x != nil {
|
|
1012
1115
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1013
1116
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1020,7 +1123,7 @@ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
|
1020
1123
|
|
|
1021
1124
|
// Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
|
|
1022
1125
|
func (*PaymentTosAction) Descriptor() ([]byte, []int) {
|
|
1023
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1126
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
|
|
1024
1127
|
}
|
|
1025
1128
|
|
|
1026
1129
|
func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
|
|
@@ -1046,7 +1149,7 @@ type NotificationActivitySettingAction struct {
|
|
|
1046
1149
|
|
|
1047
1150
|
func (x *NotificationActivitySettingAction) Reset() {
|
|
1048
1151
|
*x = NotificationActivitySettingAction{}
|
|
1049
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1152
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1050
1153
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1051
1154
|
ms.StoreMessageInfo(mi)
|
|
1052
1155
|
}
|
|
@@ -1058,7 +1161,7 @@ func (x *NotificationActivitySettingAction) String() string {
|
|
|
1058
1161
|
func (*NotificationActivitySettingAction) ProtoMessage() {}
|
|
1059
1162
|
|
|
1060
1163
|
func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
|
|
1061
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1164
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1062
1165
|
if x != nil {
|
|
1063
1166
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1064
1167
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1071,7 +1174,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
|
|
|
1071
1174
|
|
|
1072
1175
|
// Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
|
|
1073
1176
|
func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
|
|
1074
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1177
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
|
|
1075
1178
|
}
|
|
1076
1179
|
|
|
1077
1180
|
func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
|
|
@@ -1090,7 +1193,7 @@ type WaffleAccountLinkStateAction struct {
|
|
|
1090
1193
|
|
|
1091
1194
|
func (x *WaffleAccountLinkStateAction) Reset() {
|
|
1092
1195
|
*x = WaffleAccountLinkStateAction{}
|
|
1093
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1196
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1094
1197
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1095
1198
|
ms.StoreMessageInfo(mi)
|
|
1096
1199
|
}
|
|
@@ -1102,7 +1205,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
|
|
|
1102
1205
|
func (*WaffleAccountLinkStateAction) ProtoMessage() {}
|
|
1103
1206
|
|
|
1104
1207
|
func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
1105
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1208
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1106
1209
|
if x != nil {
|
|
1107
1210
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1108
1211
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1115,7 +1218,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
|
1115
1218
|
|
|
1116
1219
|
// Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
|
|
1117
1220
|
func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
|
|
1118
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1221
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
|
|
1119
1222
|
}
|
|
1120
1223
|
|
|
1121
1224
|
func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
|
|
@@ -1137,7 +1240,7 @@ type MerchantPaymentPartnerAction struct {
|
|
|
1137
1240
|
|
|
1138
1241
|
func (x *MerchantPaymentPartnerAction) Reset() {
|
|
1139
1242
|
*x = MerchantPaymentPartnerAction{}
|
|
1140
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1243
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1141
1244
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1142
1245
|
ms.StoreMessageInfo(mi)
|
|
1143
1246
|
}
|
|
@@ -1149,7 +1252,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
|
|
|
1149
1252
|
func (*MerchantPaymentPartnerAction) ProtoMessage() {}
|
|
1150
1253
|
|
|
1151
1254
|
func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
1152
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1255
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1153
1256
|
if x != nil {
|
|
1154
1257
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1155
1258
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1162,7 +1265,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
|
1162
1265
|
|
|
1163
1266
|
// Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
|
|
1164
1267
|
func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
|
|
1165
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1268
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
|
|
1166
1269
|
}
|
|
1167
1270
|
|
|
1168
1271
|
func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
|
|
@@ -1206,7 +1309,7 @@ type NoteEditAction struct {
|
|
|
1206
1309
|
|
|
1207
1310
|
func (x *NoteEditAction) Reset() {
|
|
1208
1311
|
*x = NoteEditAction{}
|
|
1209
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1312
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1210
1313
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1211
1314
|
ms.StoreMessageInfo(mi)
|
|
1212
1315
|
}
|
|
@@ -1218,7 +1321,7 @@ func (x *NoteEditAction) String() string {
|
|
|
1218
1321
|
func (*NoteEditAction) ProtoMessage() {}
|
|
1219
1322
|
|
|
1220
1323
|
func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
1221
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1324
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1222
1325
|
if x != nil {
|
|
1223
1326
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1224
1327
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1231,7 +1334,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1231
1334
|
|
|
1232
1335
|
// Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
|
|
1233
1336
|
func (*NoteEditAction) Descriptor() ([]byte, []int) {
|
|
1234
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1337
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
|
|
1235
1338
|
}
|
|
1236
1339
|
|
|
1237
1340
|
func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
|
|
@@ -1279,7 +1382,7 @@ type StatusPrivacyAction struct {
|
|
|
1279
1382
|
|
|
1280
1383
|
func (x *StatusPrivacyAction) Reset() {
|
|
1281
1384
|
*x = StatusPrivacyAction{}
|
|
1282
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1385
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1283
1386
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1284
1387
|
ms.StoreMessageInfo(mi)
|
|
1285
1388
|
}
|
|
@@ -1291,7 +1394,7 @@ func (x *StatusPrivacyAction) String() string {
|
|
|
1291
1394
|
func (*StatusPrivacyAction) ProtoMessage() {}
|
|
1292
1395
|
|
|
1293
1396
|
func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
1294
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1397
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1295
1398
|
if x != nil {
|
|
1296
1399
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1297
1400
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1304,7 +1407,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
|
1304
1407
|
|
|
1305
1408
|
// Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
|
|
1306
1409
|
func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
|
|
1307
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1410
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1308
1411
|
}
|
|
1309
1412
|
|
|
1310
1413
|
func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
|
|
@@ -1336,7 +1439,7 @@ type MarketingMessageAction struct {
|
|
|
1336
1439
|
|
|
1337
1440
|
func (x *MarketingMessageAction) Reset() {
|
|
1338
1441
|
*x = MarketingMessageAction{}
|
|
1339
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1442
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1340
1443
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1341
1444
|
ms.StoreMessageInfo(mi)
|
|
1342
1445
|
}
|
|
@@ -1348,7 +1451,7 @@ func (x *MarketingMessageAction) String() string {
|
|
|
1348
1451
|
func (*MarketingMessageAction) ProtoMessage() {}
|
|
1349
1452
|
|
|
1350
1453
|
func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
1351
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1454
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1352
1455
|
if x != nil {
|
|
1353
1456
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1354
1457
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1361,7 +1464,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
|
1361
1464
|
|
|
1362
1465
|
// Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
|
|
1363
1466
|
func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
|
|
1364
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1467
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
|
|
1365
1468
|
}
|
|
1366
1469
|
|
|
1367
1470
|
func (x *MarketingMessageAction) GetName() string {
|
|
@@ -1422,7 +1525,7 @@ type UsernameChatStartModeAction struct {
|
|
|
1422
1525
|
|
|
1423
1526
|
func (x *UsernameChatStartModeAction) Reset() {
|
|
1424
1527
|
*x = UsernameChatStartModeAction{}
|
|
1425
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1528
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1426
1529
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1427
1530
|
ms.StoreMessageInfo(mi)
|
|
1428
1531
|
}
|
|
@@ -1434,7 +1537,7 @@ func (x *UsernameChatStartModeAction) String() string {
|
|
|
1434
1537
|
func (*UsernameChatStartModeAction) ProtoMessage() {}
|
|
1435
1538
|
|
|
1436
1539
|
func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
1437
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1540
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1438
1541
|
if x != nil {
|
|
1439
1542
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1440
1543
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1447,7 +1550,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
|
1447
1550
|
|
|
1448
1551
|
// Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
|
|
1449
1552
|
func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
|
|
1450
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1553
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
|
|
1451
1554
|
}
|
|
1452
1555
|
|
|
1453
1556
|
func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
|
|
@@ -1473,7 +1576,7 @@ type LabelEditAction struct {
|
|
|
1473
1576
|
|
|
1474
1577
|
func (x *LabelEditAction) Reset() {
|
|
1475
1578
|
*x = LabelEditAction{}
|
|
1476
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1579
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1477
1580
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1478
1581
|
ms.StoreMessageInfo(mi)
|
|
1479
1582
|
}
|
|
@@ -1485,7 +1588,7 @@ func (x *LabelEditAction) String() string {
|
|
|
1485
1588
|
func (*LabelEditAction) ProtoMessage() {}
|
|
1486
1589
|
|
|
1487
1590
|
func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
1488
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1591
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1489
1592
|
if x != nil {
|
|
1490
1593
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1491
1594
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1498,7 +1601,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1498
1601
|
|
|
1499
1602
|
// Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
|
|
1500
1603
|
func (*LabelEditAction) Descriptor() ([]byte, []int) {
|
|
1501
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1604
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
|
|
1502
1605
|
}
|
|
1503
1606
|
|
|
1504
1607
|
func (x *LabelEditAction) GetName() string {
|
|
@@ -1576,7 +1679,7 @@ type PatchDebugData struct {
|
|
|
1576
1679
|
|
|
1577
1680
|
func (x *PatchDebugData) Reset() {
|
|
1578
1681
|
*x = PatchDebugData{}
|
|
1579
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1682
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1580
1683
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1581
1684
|
ms.StoreMessageInfo(mi)
|
|
1582
1685
|
}
|
|
@@ -1588,7 +1691,7 @@ func (x *PatchDebugData) String() string {
|
|
|
1588
1691
|
func (*PatchDebugData) ProtoMessage() {}
|
|
1589
1692
|
|
|
1590
1693
|
func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
1591
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1694
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1592
1695
|
if x != nil {
|
|
1593
1696
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1594
1697
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1601,7 +1704,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
|
1601
1704
|
|
|
1602
1705
|
// Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
|
|
1603
1706
|
func (*PatchDebugData) Descriptor() ([]byte, []int) {
|
|
1604
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1707
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
|
|
1605
1708
|
}
|
|
1606
1709
|
|
|
1607
1710
|
func (x *PatchDebugData) GetCurrentLthash() []byte {
|
|
@@ -1691,7 +1794,7 @@ type RecentEmojiWeight struct {
|
|
|
1691
1794
|
|
|
1692
1795
|
func (x *RecentEmojiWeight) Reset() {
|
|
1693
1796
|
*x = RecentEmojiWeight{}
|
|
1694
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1797
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1695
1798
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1696
1799
|
ms.StoreMessageInfo(mi)
|
|
1697
1800
|
}
|
|
@@ -1703,7 +1806,7 @@ func (x *RecentEmojiWeight) String() string {
|
|
|
1703
1806
|
func (*RecentEmojiWeight) ProtoMessage() {}
|
|
1704
1807
|
|
|
1705
1808
|
func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
1706
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1809
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1707
1810
|
if x != nil {
|
|
1708
1811
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1709
1812
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1716,7 +1819,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
|
1716
1819
|
|
|
1717
1820
|
// Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
|
|
1718
1821
|
func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
|
|
1719
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1822
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
|
|
1720
1823
|
}
|
|
1721
1824
|
|
|
1722
1825
|
func (x *RecentEmojiWeight) GetEmoji() string {
|
|
@@ -1794,13 +1897,18 @@ type SyncActionValue struct {
|
|
|
1794
1897
|
PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
|
|
1795
1898
|
PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
|
|
1796
1899
|
BusinessBroadcastAssociationAction *BusinessBroadcastAssociationAction `protobuf:"bytes,65,opt,name=businessBroadcastAssociationAction" json:"businessBroadcastAssociationAction,omitempty"`
|
|
1900
|
+
DetectedOutcomesStatusAction *DetectedOutcomesStatusAction `protobuf:"bytes,66,opt,name=detectedOutcomesStatusAction" json:"detectedOutcomesStatusAction,omitempty"`
|
|
1901
|
+
MaibaAiFeaturesControlAction *MaibaAIFeaturesControlAction `protobuf:"bytes,68,opt,name=maibaAiFeaturesControlAction" json:"maibaAiFeaturesControlAction,omitempty"`
|
|
1902
|
+
BusinessBroadcastListAction *BusinessBroadcastListAction `protobuf:"bytes,69,opt,name=businessBroadcastListAction" json:"businessBroadcastListAction,omitempty"`
|
|
1903
|
+
MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
|
|
1904
|
+
StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
|
|
1797
1905
|
unknownFields protoimpl.UnknownFields
|
|
1798
1906
|
sizeCache protoimpl.SizeCache
|
|
1799
1907
|
}
|
|
1800
1908
|
|
|
1801
1909
|
func (x *SyncActionValue) Reset() {
|
|
1802
1910
|
*x = SyncActionValue{}
|
|
1803
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1911
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1804
1912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1805
1913
|
ms.StoreMessageInfo(mi)
|
|
1806
1914
|
}
|
|
@@ -1812,7 +1920,7 @@ func (x *SyncActionValue) String() string {
|
|
|
1812
1920
|
func (*SyncActionValue) ProtoMessage() {}
|
|
1813
1921
|
|
|
1814
1922
|
func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
1815
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1923
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1816
1924
|
if x != nil {
|
|
1817
1925
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1818
1926
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1825,7 +1933,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
|
1825
1933
|
|
|
1826
1934
|
// Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
|
|
1827
1935
|
func (*SyncActionValue) Descriptor() ([]byte, []int) {
|
|
1828
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1936
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
|
|
1829
1937
|
}
|
|
1830
1938
|
|
|
1831
1939
|
func (x *SyncActionValue) GetTimestamp() int64 {
|
|
@@ -2241,28 +2349,63 @@ func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroad
|
|
|
2241
2349
|
return nil
|
|
2242
2350
|
}
|
|
2243
2351
|
|
|
2244
|
-
|
|
2352
|
+
func (x *SyncActionValue) GetDetectedOutcomesStatusAction() *DetectedOutcomesStatusAction {
|
|
2353
|
+
if x != nil {
|
|
2354
|
+
return x.DetectedOutcomesStatusAction
|
|
2355
|
+
}
|
|
2356
|
+
return nil
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
func (x *SyncActionValue) GetMaibaAiFeaturesControlAction() *MaibaAIFeaturesControlAction {
|
|
2360
|
+
if x != nil {
|
|
2361
|
+
return x.MaibaAiFeaturesControlAction
|
|
2362
|
+
}
|
|
2363
|
+
return nil
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
func (x *SyncActionValue) GetBusinessBroadcastListAction() *BusinessBroadcastListAction {
|
|
2367
|
+
if x != nil {
|
|
2368
|
+
return x.BusinessBroadcastListAction
|
|
2369
|
+
}
|
|
2370
|
+
return nil
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
func (x *SyncActionValue) GetMusicUserIDAction() *MusicUserIdAction {
|
|
2374
|
+
if x != nil {
|
|
2375
|
+
return x.MusicUserIDAction
|
|
2376
|
+
}
|
|
2377
|
+
return nil
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
func (x *SyncActionValue) GetStatusPostOptInNotificationPreferencesAction() *StatusPostOptInNotificationPreferencesAction {
|
|
2381
|
+
if x != nil {
|
|
2382
|
+
return x.StatusPostOptInNotificationPreferencesAction
|
|
2383
|
+
}
|
|
2384
|
+
return nil
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
type StatusPostOptInNotificationPreferencesAction struct {
|
|
2245
2388
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2246
|
-
|
|
2389
|
+
Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
|
|
2247
2390
|
unknownFields protoimpl.UnknownFields
|
|
2248
2391
|
sizeCache protoimpl.SizeCache
|
|
2249
2392
|
}
|
|
2250
2393
|
|
|
2251
|
-
func (x *
|
|
2252
|
-
*x =
|
|
2253
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2394
|
+
func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
|
|
2395
|
+
*x = StatusPostOptInNotificationPreferencesAction{}
|
|
2396
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2254
2397
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2255
2398
|
ms.StoreMessageInfo(mi)
|
|
2256
2399
|
}
|
|
2257
2400
|
|
|
2258
|
-
func (x *
|
|
2401
|
+
func (x *StatusPostOptInNotificationPreferencesAction) String() string {
|
|
2259
2402
|
return protoimpl.X.MessageStringOf(x)
|
|
2260
2403
|
}
|
|
2261
2404
|
|
|
2262
|
-
func (*
|
|
2405
|
+
func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
|
|
2263
2406
|
|
|
2264
|
-
func (x *
|
|
2265
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2407
|
+
func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
|
|
2408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2266
2409
|
if x != nil {
|
|
2267
2410
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2268
2411
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2273,40 +2416,41 @@ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message
|
|
|
2273
2416
|
return mi.MessageOf(x)
|
|
2274
2417
|
}
|
|
2275
2418
|
|
|
2276
|
-
// Deprecated: Use
|
|
2277
|
-
func (*
|
|
2278
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2419
|
+
// Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
|
|
2420
|
+
func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
|
|
2421
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
|
|
2279
2422
|
}
|
|
2280
2423
|
|
|
2281
|
-
func (x *
|
|
2282
|
-
if x != nil && x.
|
|
2283
|
-
return *x.
|
|
2424
|
+
func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
|
|
2425
|
+
if x != nil && x.Enabled != nil {
|
|
2426
|
+
return *x.Enabled
|
|
2284
2427
|
}
|
|
2285
2428
|
return false
|
|
2286
2429
|
}
|
|
2287
2430
|
|
|
2288
|
-
type
|
|
2289
|
-
state
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2431
|
+
type BroadcastListParticipant struct {
|
|
2432
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2433
|
+
LidJID *string `protobuf:"bytes,1,req,name=lidJID" json:"lidJID,omitempty"`
|
|
2434
|
+
PnJID *string `protobuf:"bytes,2,opt,name=pnJID" json:"pnJID,omitempty"`
|
|
2435
|
+
unknownFields protoimpl.UnknownFields
|
|
2436
|
+
sizeCache protoimpl.SizeCache
|
|
2293
2437
|
}
|
|
2294
2438
|
|
|
2295
|
-
func (x *
|
|
2296
|
-
*x =
|
|
2297
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2439
|
+
func (x *BroadcastListParticipant) Reset() {
|
|
2440
|
+
*x = BroadcastListParticipant{}
|
|
2441
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2298
2442
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2299
2443
|
ms.StoreMessageInfo(mi)
|
|
2300
2444
|
}
|
|
2301
2445
|
|
|
2302
|
-
func (x *
|
|
2446
|
+
func (x *BroadcastListParticipant) String() string {
|
|
2303
2447
|
return protoimpl.X.MessageStringOf(x)
|
|
2304
2448
|
}
|
|
2305
2449
|
|
|
2306
|
-
func (*
|
|
2450
|
+
func (*BroadcastListParticipant) ProtoMessage() {}
|
|
2307
2451
|
|
|
2308
|
-
func (x *
|
|
2309
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2452
|
+
func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
2453
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2310
2454
|
if x != nil {
|
|
2311
2455
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2312
2456
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2317,9 +2461,164 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
|
2317
2461
|
return mi.MessageOf(x)
|
|
2318
2462
|
}
|
|
2319
2463
|
|
|
2320
|
-
// Deprecated: Use
|
|
2464
|
+
// Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
|
|
2465
|
+
func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
|
|
2466
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
func (x *BroadcastListParticipant) GetLidJID() string {
|
|
2470
|
+
if x != nil && x.LidJID != nil {
|
|
2471
|
+
return *x.LidJID
|
|
2472
|
+
}
|
|
2473
|
+
return ""
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
func (x *BroadcastListParticipant) GetPnJID() string {
|
|
2477
|
+
if x != nil && x.PnJID != nil {
|
|
2478
|
+
return *x.PnJID
|
|
2479
|
+
}
|
|
2480
|
+
return ""
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
type BusinessBroadcastListAction struct {
|
|
2484
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2485
|
+
Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
|
|
2486
|
+
Participants []*BroadcastListParticipant `protobuf:"bytes,2,rep,name=participants" json:"participants,omitempty"`
|
|
2487
|
+
ListName *string `protobuf:"bytes,3,opt,name=listName" json:"listName,omitempty"`
|
|
2488
|
+
unknownFields protoimpl.UnknownFields
|
|
2489
|
+
sizeCache protoimpl.SizeCache
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
func (x *BusinessBroadcastListAction) Reset() {
|
|
2493
|
+
*x = BusinessBroadcastListAction{}
|
|
2494
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2495
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2496
|
+
ms.StoreMessageInfo(mi)
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
func (x *BusinessBroadcastListAction) String() string {
|
|
2500
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
func (*BusinessBroadcastListAction) ProtoMessage() {}
|
|
2504
|
+
|
|
2505
|
+
func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
2506
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2507
|
+
if x != nil {
|
|
2508
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2509
|
+
if ms.LoadMessageInfo() == nil {
|
|
2510
|
+
ms.StoreMessageInfo(mi)
|
|
2511
|
+
}
|
|
2512
|
+
return ms
|
|
2513
|
+
}
|
|
2514
|
+
return mi.MessageOf(x)
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
// Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
|
|
2518
|
+
func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
|
|
2519
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
func (x *BusinessBroadcastListAction) GetDeleted() bool {
|
|
2523
|
+
if x != nil && x.Deleted != nil {
|
|
2524
|
+
return *x.Deleted
|
|
2525
|
+
}
|
|
2526
|
+
return false
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
func (x *BusinessBroadcastListAction) GetParticipants() []*BroadcastListParticipant {
|
|
2530
|
+
if x != nil {
|
|
2531
|
+
return x.Participants
|
|
2532
|
+
}
|
|
2533
|
+
return nil
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
func (x *BusinessBroadcastListAction) GetListName() string {
|
|
2537
|
+
if x != nil && x.ListName != nil {
|
|
2538
|
+
return *x.ListName
|
|
2539
|
+
}
|
|
2540
|
+
return ""
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
type BusinessBroadcastAssociationAction struct {
|
|
2544
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2545
|
+
Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
|
|
2546
|
+
unknownFields protoimpl.UnknownFields
|
|
2547
|
+
sizeCache protoimpl.SizeCache
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
func (x *BusinessBroadcastAssociationAction) Reset() {
|
|
2551
|
+
*x = BusinessBroadcastAssociationAction{}
|
|
2552
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2553
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2554
|
+
ms.StoreMessageInfo(mi)
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
func (x *BusinessBroadcastAssociationAction) String() string {
|
|
2558
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
|
|
2562
|
+
|
|
2563
|
+
func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
|
|
2564
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2565
|
+
if x != nil {
|
|
2566
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2567
|
+
if ms.LoadMessageInfo() == nil {
|
|
2568
|
+
ms.StoreMessageInfo(mi)
|
|
2569
|
+
}
|
|
2570
|
+
return ms
|
|
2571
|
+
}
|
|
2572
|
+
return mi.MessageOf(x)
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
// Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
|
|
2576
|
+
func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
|
|
2577
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
|
|
2581
|
+
if x != nil && x.Deleted != nil {
|
|
2582
|
+
return *x.Deleted
|
|
2583
|
+
}
|
|
2584
|
+
return false
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
type CtwaPerCustomerDataSharingAction struct {
|
|
2588
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2589
|
+
IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
|
|
2590
|
+
unknownFields protoimpl.UnknownFields
|
|
2591
|
+
sizeCache protoimpl.SizeCache
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
func (x *CtwaPerCustomerDataSharingAction) Reset() {
|
|
2595
|
+
*x = CtwaPerCustomerDataSharingAction{}
|
|
2596
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2597
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2598
|
+
ms.StoreMessageInfo(mi)
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
func (x *CtwaPerCustomerDataSharingAction) String() string {
|
|
2602
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
|
|
2606
|
+
|
|
2607
|
+
func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
2608
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2609
|
+
if x != nil {
|
|
2610
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2611
|
+
if ms.LoadMessageInfo() == nil {
|
|
2612
|
+
ms.StoreMessageInfo(mi)
|
|
2613
|
+
}
|
|
2614
|
+
return ms
|
|
2615
|
+
}
|
|
2616
|
+
return mi.MessageOf(x)
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
// Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
|
|
2321
2620
|
func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
|
|
2322
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2621
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
|
|
2323
2622
|
}
|
|
2324
2623
|
|
|
2325
2624
|
func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
|
|
@@ -2341,7 +2640,7 @@ type LidContactAction struct {
|
|
|
2341
2640
|
|
|
2342
2641
|
func (x *LidContactAction) Reset() {
|
|
2343
2642
|
*x = LidContactAction{}
|
|
2344
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2643
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2345
2644
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2346
2645
|
ms.StoreMessageInfo(mi)
|
|
2347
2646
|
}
|
|
@@ -2353,7 +2652,7 @@ func (x *LidContactAction) String() string {
|
|
|
2353
2652
|
func (*LidContactAction) ProtoMessage() {}
|
|
2354
2653
|
|
|
2355
2654
|
func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
2356
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2655
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2357
2656
|
if x != nil {
|
|
2358
2657
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2359
2658
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2366,7 +2665,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
|
2366
2665
|
|
|
2367
2666
|
// Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
|
|
2368
2667
|
func (*LidContactAction) Descriptor() ([]byte, []int) {
|
|
2369
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2668
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
|
|
2370
2669
|
}
|
|
2371
2670
|
|
|
2372
2671
|
func (x *LidContactAction) GetFullName() string {
|
|
@@ -2406,7 +2705,7 @@ type FavoritesAction struct {
|
|
|
2406
2705
|
|
|
2407
2706
|
func (x *FavoritesAction) Reset() {
|
|
2408
2707
|
*x = FavoritesAction{}
|
|
2409
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2708
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2410
2709
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2411
2710
|
ms.StoreMessageInfo(mi)
|
|
2412
2711
|
}
|
|
@@ -2418,7 +2717,7 @@ func (x *FavoritesAction) String() string {
|
|
|
2418
2717
|
func (*FavoritesAction) ProtoMessage() {}
|
|
2419
2718
|
|
|
2420
2719
|
func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
2421
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2720
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2422
2721
|
if x != nil {
|
|
2423
2722
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2424
2723
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2431,7 +2730,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
|
2431
2730
|
|
|
2432
2731
|
// Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
|
|
2433
2732
|
func (*FavoritesAction) Descriptor() ([]byte, []int) {
|
|
2434
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2733
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
|
|
2435
2734
|
}
|
|
2436
2735
|
|
|
2437
2736
|
func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
@@ -2450,7 +2749,7 @@ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
|
|
|
2450
2749
|
|
|
2451
2750
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
|
|
2452
2751
|
*x = PrivacySettingChannelsPersonalisedRecommendationAction{}
|
|
2453
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2752
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2454
2753
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2455
2754
|
ms.StoreMessageInfo(mi)
|
|
2456
2755
|
}
|
|
@@ -2462,7 +2761,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string
|
|
|
2462
2761
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
|
|
2463
2762
|
|
|
2464
2763
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
|
|
2465
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2764
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2466
2765
|
if x != nil {
|
|
2467
2766
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2468
2767
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2475,7 +2774,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect()
|
|
|
2475
2774
|
|
|
2476
2775
|
// Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
|
|
2477
2776
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
|
|
2478
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2777
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
|
|
2479
2778
|
}
|
|
2480
2779
|
|
|
2481
2780
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
|
|
@@ -2494,7 +2793,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
|
|
|
2494
2793
|
|
|
2495
2794
|
func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
|
|
2496
2795
|
*x = PrivacySettingDisableLinkPreviewsAction{}
|
|
2497
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2796
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2498
2797
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2499
2798
|
ms.StoreMessageInfo(mi)
|
|
2500
2799
|
}
|
|
@@ -2506,7 +2805,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
|
|
|
2506
2805
|
func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
|
|
2507
2806
|
|
|
2508
2807
|
func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
|
|
2509
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2808
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2510
2809
|
if x != nil {
|
|
2511
2810
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2512
2811
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2519,7 +2818,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
|
|
|
2519
2818
|
|
|
2520
2819
|
// Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
|
|
2521
2820
|
func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
|
|
2522
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2821
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
|
|
2523
2822
|
}
|
|
2524
2823
|
|
|
2525
2824
|
func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
|
|
@@ -2538,7 +2837,7 @@ type WamoUserIdentifierAction struct {
|
|
|
2538
2837
|
|
|
2539
2838
|
func (x *WamoUserIdentifierAction) Reset() {
|
|
2540
2839
|
*x = WamoUserIdentifierAction{}
|
|
2541
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2840
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2542
2841
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2543
2842
|
ms.StoreMessageInfo(mi)
|
|
2544
2843
|
}
|
|
@@ -2550,7 +2849,7 @@ func (x *WamoUserIdentifierAction) String() string {
|
|
|
2550
2849
|
func (*WamoUserIdentifierAction) ProtoMessage() {}
|
|
2551
2850
|
|
|
2552
2851
|
func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
2553
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2852
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2554
2853
|
if x != nil {
|
|
2555
2854
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2556
2855
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2563,7 +2862,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
|
2563
2862
|
|
|
2564
2863
|
// Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
|
|
2565
2864
|
func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
|
|
2566
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2865
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
|
|
2567
2866
|
}
|
|
2568
2867
|
|
|
2569
2868
|
func (x *WamoUserIdentifierAction) GetIdentifier() string {
|
|
@@ -2582,7 +2881,7 @@ type LockChatAction struct {
|
|
|
2582
2881
|
|
|
2583
2882
|
func (x *LockChatAction) Reset() {
|
|
2584
2883
|
*x = LockChatAction{}
|
|
2585
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2884
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2586
2885
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2587
2886
|
ms.StoreMessageInfo(mi)
|
|
2588
2887
|
}
|
|
@@ -2594,7 +2893,7 @@ func (x *LockChatAction) String() string {
|
|
|
2594
2893
|
func (*LockChatAction) ProtoMessage() {}
|
|
2595
2894
|
|
|
2596
2895
|
func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
2597
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2896
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2598
2897
|
if x != nil {
|
|
2599
2898
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2600
2899
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2607,7 +2906,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
|
2607
2906
|
|
|
2608
2907
|
// Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
|
|
2609
2908
|
func (*LockChatAction) Descriptor() ([]byte, []int) {
|
|
2610
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2909
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
|
|
2611
2910
|
}
|
|
2612
2911
|
|
|
2613
2912
|
func (x *LockChatAction) GetLocked() bool {
|
|
@@ -2626,7 +2925,7 @@ type CustomPaymentMethodsAction struct {
|
|
|
2626
2925
|
|
|
2627
2926
|
func (x *CustomPaymentMethodsAction) Reset() {
|
|
2628
2927
|
*x = CustomPaymentMethodsAction{}
|
|
2629
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2928
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2630
2929
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2631
2930
|
ms.StoreMessageInfo(mi)
|
|
2632
2931
|
}
|
|
@@ -2638,7 +2937,7 @@ func (x *CustomPaymentMethodsAction) String() string {
|
|
|
2638
2937
|
func (*CustomPaymentMethodsAction) ProtoMessage() {}
|
|
2639
2938
|
|
|
2640
2939
|
func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
2641
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2940
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2642
2941
|
if x != nil {
|
|
2643
2942
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2644
2943
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2651,7 +2950,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
|
2651
2950
|
|
|
2652
2951
|
// Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
|
|
2653
2952
|
func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
|
|
2654
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2953
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
|
|
2655
2954
|
}
|
|
2656
2955
|
|
|
2657
2956
|
func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
|
|
@@ -2673,7 +2972,7 @@ type CustomPaymentMethod struct {
|
|
|
2673
2972
|
|
|
2674
2973
|
func (x *CustomPaymentMethod) Reset() {
|
|
2675
2974
|
*x = CustomPaymentMethod{}
|
|
2676
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2975
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2677
2976
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2678
2977
|
ms.StoreMessageInfo(mi)
|
|
2679
2978
|
}
|
|
@@ -2685,7 +2984,7 @@ func (x *CustomPaymentMethod) String() string {
|
|
|
2685
2984
|
func (*CustomPaymentMethod) ProtoMessage() {}
|
|
2686
2985
|
|
|
2687
2986
|
func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
2688
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2689
2988
|
if x != nil {
|
|
2690
2989
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2691
2990
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2698,7 +2997,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
|
2698
2997
|
|
|
2699
2998
|
// Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
|
|
2700
2999
|
func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
|
|
2701
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3000
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
|
|
2702
3001
|
}
|
|
2703
3002
|
|
|
2704
3003
|
func (x *CustomPaymentMethod) GetCredentialID() string {
|
|
@@ -2739,7 +3038,7 @@ type CustomPaymentMethodMetadata struct {
|
|
|
2739
3038
|
|
|
2740
3039
|
func (x *CustomPaymentMethodMetadata) Reset() {
|
|
2741
3040
|
*x = CustomPaymentMethodMetadata{}
|
|
2742
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3041
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2743
3042
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2744
3043
|
ms.StoreMessageInfo(mi)
|
|
2745
3044
|
}
|
|
@@ -2751,7 +3050,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
|
|
|
2751
3050
|
func (*CustomPaymentMethodMetadata) ProtoMessage() {}
|
|
2752
3051
|
|
|
2753
3052
|
func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
2754
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3053
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2755
3054
|
if x != nil {
|
|
2756
3055
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2757
3056
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2764,7 +3063,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
|
2764
3063
|
|
|
2765
3064
|
// Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
|
|
2766
3065
|
func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
|
|
2767
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3066
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
|
|
2768
3067
|
}
|
|
2769
3068
|
|
|
2770
3069
|
func (x *CustomPaymentMethodMetadata) GetKey() string {
|
|
@@ -2790,7 +3089,7 @@ type PaymentInfoAction struct {
|
|
|
2790
3089
|
|
|
2791
3090
|
func (x *PaymentInfoAction) Reset() {
|
|
2792
3091
|
*x = PaymentInfoAction{}
|
|
2793
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3092
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2794
3093
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2795
3094
|
ms.StoreMessageInfo(mi)
|
|
2796
3095
|
}
|
|
@@ -2802,7 +3101,7 @@ func (x *PaymentInfoAction) String() string {
|
|
|
2802
3101
|
func (*PaymentInfoAction) ProtoMessage() {}
|
|
2803
3102
|
|
|
2804
3103
|
func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
2805
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3104
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2806
3105
|
if x != nil {
|
|
2807
3106
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2808
3107
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2815,7 +3114,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
|
2815
3114
|
|
|
2816
3115
|
// Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
|
|
2817
3116
|
func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
|
|
2818
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3117
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
|
|
2819
3118
|
}
|
|
2820
3119
|
|
|
2821
3120
|
func (x *PaymentInfoAction) GetCpi() string {
|
|
@@ -2834,7 +3133,7 @@ type LabelReorderingAction struct {
|
|
|
2834
3133
|
|
|
2835
3134
|
func (x *LabelReorderingAction) Reset() {
|
|
2836
3135
|
*x = LabelReorderingAction{}
|
|
2837
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3136
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2838
3137
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2839
3138
|
ms.StoreMessageInfo(mi)
|
|
2840
3139
|
}
|
|
@@ -2846,7 +3145,7 @@ func (x *LabelReorderingAction) String() string {
|
|
|
2846
3145
|
func (*LabelReorderingAction) ProtoMessage() {}
|
|
2847
3146
|
|
|
2848
3147
|
func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
2849
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3148
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2850
3149
|
if x != nil {
|
|
2851
3150
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2852
3151
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2859,7 +3158,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
|
2859
3158
|
|
|
2860
3159
|
// Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
|
|
2861
3160
|
func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
|
|
2862
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3161
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
|
|
2863
3162
|
}
|
|
2864
3163
|
|
|
2865
3164
|
func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
|
|
@@ -2879,7 +3178,7 @@ type DeleteIndividualCallLogAction struct {
|
|
|
2879
3178
|
|
|
2880
3179
|
func (x *DeleteIndividualCallLogAction) Reset() {
|
|
2881
3180
|
*x = DeleteIndividualCallLogAction{}
|
|
2882
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3181
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2883
3182
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2884
3183
|
ms.StoreMessageInfo(mi)
|
|
2885
3184
|
}
|
|
@@ -2891,7 +3190,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
|
|
|
2891
3190
|
func (*DeleteIndividualCallLogAction) ProtoMessage() {}
|
|
2892
3191
|
|
|
2893
3192
|
func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
2894
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3193
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2895
3194
|
if x != nil {
|
|
2896
3195
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2897
3196
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2904,7 +3203,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
2904
3203
|
|
|
2905
3204
|
// Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
|
|
2906
3205
|
func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
|
|
2907
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3206
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
|
|
2908
3207
|
}
|
|
2909
3208
|
|
|
2910
3209
|
func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
|
|
@@ -2930,7 +3229,7 @@ type BotWelcomeRequestAction struct {
|
|
|
2930
3229
|
|
|
2931
3230
|
func (x *BotWelcomeRequestAction) Reset() {
|
|
2932
3231
|
*x = BotWelcomeRequestAction{}
|
|
2933
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3232
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2934
3233
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2935
3234
|
ms.StoreMessageInfo(mi)
|
|
2936
3235
|
}
|
|
@@ -2942,7 +3241,7 @@ func (x *BotWelcomeRequestAction) String() string {
|
|
|
2942
3241
|
func (*BotWelcomeRequestAction) ProtoMessage() {}
|
|
2943
3242
|
|
|
2944
3243
|
func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
2945
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3244
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2946
3245
|
if x != nil {
|
|
2947
3246
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2948
3247
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2955,7 +3254,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
|
2955
3254
|
|
|
2956
3255
|
// Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
|
|
2957
3256
|
func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
|
|
2958
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3257
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
|
|
2959
3258
|
}
|
|
2960
3259
|
|
|
2961
3260
|
func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
@@ -2965,6 +3264,50 @@ func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
|
2965
3264
|
return false
|
|
2966
3265
|
}
|
|
2967
3266
|
|
|
3267
|
+
type MusicUserIdAction struct {
|
|
3268
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3269
|
+
MusicUserID *string `protobuf:"bytes,1,opt,name=musicUserID" json:"musicUserID,omitempty"`
|
|
3270
|
+
unknownFields protoimpl.UnknownFields
|
|
3271
|
+
sizeCache protoimpl.SizeCache
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
func (x *MusicUserIdAction) Reset() {
|
|
3275
|
+
*x = MusicUserIdAction{}
|
|
3276
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3277
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3278
|
+
ms.StoreMessageInfo(mi)
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
func (x *MusicUserIdAction) String() string {
|
|
3282
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
func (*MusicUserIdAction) ProtoMessage() {}
|
|
3286
|
+
|
|
3287
|
+
func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
3288
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3289
|
+
if x != nil {
|
|
3290
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3291
|
+
if ms.LoadMessageInfo() == nil {
|
|
3292
|
+
ms.StoreMessageInfo(mi)
|
|
3293
|
+
}
|
|
3294
|
+
return ms
|
|
3295
|
+
}
|
|
3296
|
+
return mi.MessageOf(x)
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
// Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
|
|
3300
|
+
func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
|
|
3301
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
func (x *MusicUserIdAction) GetMusicUserID() string {
|
|
3305
|
+
if x != nil && x.MusicUserID != nil {
|
|
3306
|
+
return *x.MusicUserID
|
|
3307
|
+
}
|
|
3308
|
+
return ""
|
|
3309
|
+
}
|
|
3310
|
+
|
|
2968
3311
|
type CallLogAction struct {
|
|
2969
3312
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2970
3313
|
CallLogRecord *CallLogRecord `protobuf:"bytes,1,opt,name=callLogRecord" json:"callLogRecord,omitempty"`
|
|
@@ -2974,7 +3317,7 @@ type CallLogAction struct {
|
|
|
2974
3317
|
|
|
2975
3318
|
func (x *CallLogAction) Reset() {
|
|
2976
3319
|
*x = CallLogAction{}
|
|
2977
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3320
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
2978
3321
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2979
3322
|
ms.StoreMessageInfo(mi)
|
|
2980
3323
|
}
|
|
@@ -2986,7 +3329,7 @@ func (x *CallLogAction) String() string {
|
|
|
2986
3329
|
func (*CallLogAction) ProtoMessage() {}
|
|
2987
3330
|
|
|
2988
3331
|
func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
2989
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3332
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
2990
3333
|
if x != nil {
|
|
2991
3334
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2992
3335
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2999,7 +3342,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
2999
3342
|
|
|
3000
3343
|
// Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
|
|
3001
3344
|
func (*CallLogAction) Descriptor() ([]byte, []int) {
|
|
3002
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3345
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
|
|
3003
3346
|
}
|
|
3004
3347
|
|
|
3005
3348
|
func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
|
|
@@ -3018,7 +3361,7 @@ type PrivacySettingRelayAllCalls struct {
|
|
|
3018
3361
|
|
|
3019
3362
|
func (x *PrivacySettingRelayAllCalls) Reset() {
|
|
3020
3363
|
*x = PrivacySettingRelayAllCalls{}
|
|
3021
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3364
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3022
3365
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3023
3366
|
ms.StoreMessageInfo(mi)
|
|
3024
3367
|
}
|
|
@@ -3030,7 +3373,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
|
|
|
3030
3373
|
func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
|
|
3031
3374
|
|
|
3032
3375
|
func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
3033
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3376
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3034
3377
|
if x != nil {
|
|
3035
3378
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3036
3379
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3043,7 +3386,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
|
3043
3386
|
|
|
3044
3387
|
// Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
|
|
3045
3388
|
func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
|
|
3046
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3389
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
|
|
3047
3390
|
}
|
|
3048
3391
|
|
|
3049
3392
|
func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
@@ -3053,6 +3396,50 @@ func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
|
3053
3396
|
return false
|
|
3054
3397
|
}
|
|
3055
3398
|
|
|
3399
|
+
type DetectedOutcomesStatusAction struct {
|
|
3400
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3401
|
+
IsEnabled *bool `protobuf:"varint,1,opt,name=isEnabled" json:"isEnabled,omitempty"`
|
|
3402
|
+
unknownFields protoimpl.UnknownFields
|
|
3403
|
+
sizeCache protoimpl.SizeCache
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
func (x *DetectedOutcomesStatusAction) Reset() {
|
|
3407
|
+
*x = DetectedOutcomesStatusAction{}
|
|
3408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3409
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3410
|
+
ms.StoreMessageInfo(mi)
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
func (x *DetectedOutcomesStatusAction) String() string {
|
|
3414
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
func (*DetectedOutcomesStatusAction) ProtoMessage() {}
|
|
3418
|
+
|
|
3419
|
+
func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
3420
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3421
|
+
if x != nil {
|
|
3422
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3423
|
+
if ms.LoadMessageInfo() == nil {
|
|
3424
|
+
ms.StoreMessageInfo(mi)
|
|
3425
|
+
}
|
|
3426
|
+
return ms
|
|
3427
|
+
}
|
|
3428
|
+
return mi.MessageOf(x)
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
// Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
|
|
3432
|
+
func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
|
|
3433
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
|
|
3437
|
+
if x != nil && x.IsEnabled != nil {
|
|
3438
|
+
return *x.IsEnabled
|
|
3439
|
+
}
|
|
3440
|
+
return false
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3056
3443
|
type ExternalWebBetaAction struct {
|
|
3057
3444
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3058
3445
|
IsOptIn *bool `protobuf:"varint,1,opt,name=isOptIn" json:"isOptIn,omitempty"`
|
|
@@ -3062,7 +3449,7 @@ type ExternalWebBetaAction struct {
|
|
|
3062
3449
|
|
|
3063
3450
|
func (x *ExternalWebBetaAction) Reset() {
|
|
3064
3451
|
*x = ExternalWebBetaAction{}
|
|
3065
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3452
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3066
3453
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3067
3454
|
ms.StoreMessageInfo(mi)
|
|
3068
3455
|
}
|
|
@@ -3074,7 +3461,7 @@ func (x *ExternalWebBetaAction) String() string {
|
|
|
3074
3461
|
func (*ExternalWebBetaAction) ProtoMessage() {}
|
|
3075
3462
|
|
|
3076
3463
|
func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
3077
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3464
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3078
3465
|
if x != nil {
|
|
3079
3466
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3080
3467
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3087,7 +3474,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
|
3087
3474
|
|
|
3088
3475
|
// Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
|
|
3089
3476
|
func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
|
|
3090
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3477
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
|
|
3091
3478
|
}
|
|
3092
3479
|
|
|
3093
3480
|
func (x *ExternalWebBetaAction) GetIsOptIn() bool {
|
|
@@ -3106,7 +3493,7 @@ type MarketingMessageBroadcastAction struct {
|
|
|
3106
3493
|
|
|
3107
3494
|
func (x *MarketingMessageBroadcastAction) Reset() {
|
|
3108
3495
|
*x = MarketingMessageBroadcastAction{}
|
|
3109
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3496
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3110
3497
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3111
3498
|
ms.StoreMessageInfo(mi)
|
|
3112
3499
|
}
|
|
@@ -3118,7 +3505,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
|
|
|
3118
3505
|
func (*MarketingMessageBroadcastAction) ProtoMessage() {}
|
|
3119
3506
|
|
|
3120
3507
|
func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
3121
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3508
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3122
3509
|
if x != nil {
|
|
3123
3510
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3124
3511
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3131,7 +3518,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
|
3131
3518
|
|
|
3132
3519
|
// Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
|
|
3133
3520
|
func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
|
|
3134
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3521
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
|
|
3135
3522
|
}
|
|
3136
3523
|
|
|
3137
3524
|
func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
|
|
@@ -3150,7 +3537,7 @@ type PnForLidChatAction struct {
|
|
|
3150
3537
|
|
|
3151
3538
|
func (x *PnForLidChatAction) Reset() {
|
|
3152
3539
|
*x = PnForLidChatAction{}
|
|
3153
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3540
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3154
3541
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3155
3542
|
ms.StoreMessageInfo(mi)
|
|
3156
3543
|
}
|
|
@@ -3162,7 +3549,7 @@ func (x *PnForLidChatAction) String() string {
|
|
|
3162
3549
|
func (*PnForLidChatAction) ProtoMessage() {}
|
|
3163
3550
|
|
|
3164
3551
|
func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
3165
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3552
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3166
3553
|
if x != nil {
|
|
3167
3554
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3168
3555
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3175,7 +3562,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3175
3562
|
|
|
3176
3563
|
// Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
|
|
3177
3564
|
func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
|
|
3178
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3565
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
|
|
3179
3566
|
}
|
|
3180
3567
|
|
|
3181
3568
|
func (x *PnForLidChatAction) GetPnJID() string {
|
|
@@ -3194,7 +3581,7 @@ type ChatAssignmentOpenedStatusAction struct {
|
|
|
3194
3581
|
|
|
3195
3582
|
func (x *ChatAssignmentOpenedStatusAction) Reset() {
|
|
3196
3583
|
*x = ChatAssignmentOpenedStatusAction{}
|
|
3197
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3584
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3198
3585
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3199
3586
|
ms.StoreMessageInfo(mi)
|
|
3200
3587
|
}
|
|
@@ -3206,7 +3593,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
|
|
|
3206
3593
|
func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
|
|
3207
3594
|
|
|
3208
3595
|
func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
3209
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3596
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3210
3597
|
if x != nil {
|
|
3211
3598
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3212
3599
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3219,7 +3606,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
3219
3606
|
|
|
3220
3607
|
// Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
|
|
3221
3608
|
func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
|
|
3222
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3609
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
|
|
3223
3610
|
}
|
|
3224
3611
|
|
|
3225
3612
|
func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
|
|
@@ -3238,7 +3625,7 @@ type ChatAssignmentAction struct {
|
|
|
3238
3625
|
|
|
3239
3626
|
func (x *ChatAssignmentAction) Reset() {
|
|
3240
3627
|
*x = ChatAssignmentAction{}
|
|
3241
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3628
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3242
3629
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3243
3630
|
ms.StoreMessageInfo(mi)
|
|
3244
3631
|
}
|
|
@@ -3250,7 +3637,7 @@ func (x *ChatAssignmentAction) String() string {
|
|
|
3250
3637
|
func (*ChatAssignmentAction) ProtoMessage() {}
|
|
3251
3638
|
|
|
3252
3639
|
func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
3253
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3640
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3254
3641
|
if x != nil {
|
|
3255
3642
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3256
3643
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3263,7 +3650,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
|
3263
3650
|
|
|
3264
3651
|
// Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
|
|
3265
3652
|
func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
|
|
3266
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3653
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
|
|
3267
3654
|
}
|
|
3268
3655
|
|
|
3269
3656
|
func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
@@ -3274,25 +3661,27 @@ func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
|
3274
3661
|
}
|
|
3275
3662
|
|
|
3276
3663
|
type StickerAction struct {
|
|
3277
|
-
state
|
|
3278
|
-
URL
|
|
3279
|
-
FileEncSHA256
|
|
3280
|
-
MediaKey
|
|
3281
|
-
Mimetype
|
|
3282
|
-
Height
|
|
3283
|
-
Width
|
|
3284
|
-
DirectPath
|
|
3285
|
-
FileLength
|
|
3286
|
-
IsFavorite
|
|
3287
|
-
DeviceIDHint
|
|
3288
|
-
IsLottie
|
|
3289
|
-
|
|
3290
|
-
|
|
3664
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3665
|
+
URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
|
|
3666
|
+
FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
|
|
3667
|
+
MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
|
|
3668
|
+
Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
|
|
3669
|
+
Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
|
|
3670
|
+
Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
|
|
3671
|
+
DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
|
|
3672
|
+
FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
|
|
3673
|
+
IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
|
|
3674
|
+
DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
|
|
3675
|
+
IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
|
|
3676
|
+
ImageHash *string `protobuf:"bytes,12,opt,name=imageHash" json:"imageHash,omitempty"`
|
|
3677
|
+
IsAvatarSticker *bool `protobuf:"varint,13,opt,name=isAvatarSticker" json:"isAvatarSticker,omitempty"`
|
|
3678
|
+
unknownFields protoimpl.UnknownFields
|
|
3679
|
+
sizeCache protoimpl.SizeCache
|
|
3291
3680
|
}
|
|
3292
3681
|
|
|
3293
3682
|
func (x *StickerAction) Reset() {
|
|
3294
3683
|
*x = StickerAction{}
|
|
3295
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3684
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3296
3685
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3297
3686
|
ms.StoreMessageInfo(mi)
|
|
3298
3687
|
}
|
|
@@ -3304,7 +3693,7 @@ func (x *StickerAction) String() string {
|
|
|
3304
3693
|
func (*StickerAction) ProtoMessage() {}
|
|
3305
3694
|
|
|
3306
3695
|
func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
3307
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3696
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3308
3697
|
if x != nil {
|
|
3309
3698
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3310
3699
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3317,7 +3706,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
|
3317
3706
|
|
|
3318
3707
|
// Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
|
|
3319
3708
|
func (*StickerAction) Descriptor() ([]byte, []int) {
|
|
3320
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3709
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
|
|
3321
3710
|
}
|
|
3322
3711
|
|
|
3323
3712
|
func (x *StickerAction) GetURL() string {
|
|
@@ -3397,6 +3786,20 @@ func (x *StickerAction) GetIsLottie() bool {
|
|
|
3397
3786
|
return false
|
|
3398
3787
|
}
|
|
3399
3788
|
|
|
3789
|
+
func (x *StickerAction) GetImageHash() string {
|
|
3790
|
+
if x != nil && x.ImageHash != nil {
|
|
3791
|
+
return *x.ImageHash
|
|
3792
|
+
}
|
|
3793
|
+
return ""
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
func (x *StickerAction) GetIsAvatarSticker() bool {
|
|
3797
|
+
if x != nil && x.IsAvatarSticker != nil {
|
|
3798
|
+
return *x.IsAvatarSticker
|
|
3799
|
+
}
|
|
3800
|
+
return false
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3400
3803
|
type RemoveRecentStickerAction struct {
|
|
3401
3804
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3402
3805
|
LastStickerSentTS *int64 `protobuf:"varint,1,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
|
|
@@ -3406,7 +3809,7 @@ type RemoveRecentStickerAction struct {
|
|
|
3406
3809
|
|
|
3407
3810
|
func (x *RemoveRecentStickerAction) Reset() {
|
|
3408
3811
|
*x = RemoveRecentStickerAction{}
|
|
3409
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3812
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3410
3813
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3411
3814
|
ms.StoreMessageInfo(mi)
|
|
3412
3815
|
}
|
|
@@ -3418,7 +3821,7 @@ func (x *RemoveRecentStickerAction) String() string {
|
|
|
3418
3821
|
func (*RemoveRecentStickerAction) ProtoMessage() {}
|
|
3419
3822
|
|
|
3420
3823
|
func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
3421
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3824
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3422
3825
|
if x != nil {
|
|
3423
3826
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3424
3827
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3431,7 +3834,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
|
3431
3834
|
|
|
3432
3835
|
// Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
|
|
3433
3836
|
func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
|
|
3434
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3837
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
|
|
3435
3838
|
}
|
|
3436
3839
|
|
|
3437
3840
|
func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
|
|
@@ -3450,7 +3853,7 @@ type PrimaryVersionAction struct {
|
|
|
3450
3853
|
|
|
3451
3854
|
func (x *PrimaryVersionAction) Reset() {
|
|
3452
3855
|
*x = PrimaryVersionAction{}
|
|
3453
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3856
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3454
3857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3455
3858
|
ms.StoreMessageInfo(mi)
|
|
3456
3859
|
}
|
|
@@ -3462,7 +3865,7 @@ func (x *PrimaryVersionAction) String() string {
|
|
|
3462
3865
|
func (*PrimaryVersionAction) ProtoMessage() {}
|
|
3463
3866
|
|
|
3464
3867
|
func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
3465
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3868
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3466
3869
|
if x != nil {
|
|
3467
3870
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3468
3871
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3475,7 +3878,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
|
3475
3878
|
|
|
3476
3879
|
// Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
|
|
3477
3880
|
func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
|
|
3478
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3881
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
|
|
3479
3882
|
}
|
|
3480
3883
|
|
|
3481
3884
|
func (x *PrimaryVersionAction) GetVersion() string {
|
|
@@ -3494,7 +3897,7 @@ type NuxAction struct {
|
|
|
3494
3897
|
|
|
3495
3898
|
func (x *NuxAction) Reset() {
|
|
3496
3899
|
*x = NuxAction{}
|
|
3497
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3900
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3498
3901
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3499
3902
|
ms.StoreMessageInfo(mi)
|
|
3500
3903
|
}
|
|
@@ -3506,7 +3909,7 @@ func (x *NuxAction) String() string {
|
|
|
3506
3909
|
func (*NuxAction) ProtoMessage() {}
|
|
3507
3910
|
|
|
3508
3911
|
func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
3509
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3912
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3510
3913
|
if x != nil {
|
|
3511
3914
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3512
3915
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3519,7 +3922,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
|
3519
3922
|
|
|
3520
3923
|
// Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
|
|
3521
3924
|
func (*NuxAction) Descriptor() ([]byte, []int) {
|
|
3522
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3925
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
|
|
3523
3926
|
}
|
|
3524
3927
|
|
|
3525
3928
|
func (x *NuxAction) GetAcknowledged() bool {
|
|
@@ -3538,7 +3941,7 @@ type TimeFormatAction struct {
|
|
|
3538
3941
|
|
|
3539
3942
|
func (x *TimeFormatAction) Reset() {
|
|
3540
3943
|
*x = TimeFormatAction{}
|
|
3541
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3944
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3542
3945
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3543
3946
|
ms.StoreMessageInfo(mi)
|
|
3544
3947
|
}
|
|
@@ -3550,7 +3953,7 @@ func (x *TimeFormatAction) String() string {
|
|
|
3550
3953
|
func (*TimeFormatAction) ProtoMessage() {}
|
|
3551
3954
|
|
|
3552
3955
|
func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
3553
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3956
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3554
3957
|
if x != nil {
|
|
3555
3958
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3556
3959
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3563,7 +3966,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
|
3563
3966
|
|
|
3564
3967
|
// Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
|
|
3565
3968
|
func (*TimeFormatAction) Descriptor() ([]byte, []int) {
|
|
3566
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3969
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
|
|
3567
3970
|
}
|
|
3568
3971
|
|
|
3569
3972
|
func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
|
|
@@ -3582,7 +3985,7 @@ type UserStatusMuteAction struct {
|
|
|
3582
3985
|
|
|
3583
3986
|
func (x *UserStatusMuteAction) Reset() {
|
|
3584
3987
|
*x = UserStatusMuteAction{}
|
|
3585
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3988
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3586
3989
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3587
3990
|
ms.StoreMessageInfo(mi)
|
|
3588
3991
|
}
|
|
@@ -3594,7 +3997,7 @@ func (x *UserStatusMuteAction) String() string {
|
|
|
3594
3997
|
func (*UserStatusMuteAction) ProtoMessage() {}
|
|
3595
3998
|
|
|
3596
3999
|
func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
3597
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4000
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3598
4001
|
if x != nil {
|
|
3599
4002
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3600
4003
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3607,7 +4010,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
|
3607
4010
|
|
|
3608
4011
|
// Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
|
|
3609
4012
|
func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
|
|
3610
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4013
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
|
|
3611
4014
|
}
|
|
3612
4015
|
|
|
3613
4016
|
func (x *UserStatusMuteAction) GetMuted() bool {
|
|
@@ -3628,7 +4031,7 @@ type SubscriptionAction struct {
|
|
|
3628
4031
|
|
|
3629
4032
|
func (x *SubscriptionAction) Reset() {
|
|
3630
4033
|
*x = SubscriptionAction{}
|
|
3631
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4034
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3632
4035
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3633
4036
|
ms.StoreMessageInfo(mi)
|
|
3634
4037
|
}
|
|
@@ -3640,7 +4043,7 @@ func (x *SubscriptionAction) String() string {
|
|
|
3640
4043
|
func (*SubscriptionAction) ProtoMessage() {}
|
|
3641
4044
|
|
|
3642
4045
|
func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
3643
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4046
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3644
4047
|
if x != nil {
|
|
3645
4048
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3646
4049
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3653,7 +4056,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
|
3653
4056
|
|
|
3654
4057
|
// Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
|
|
3655
4058
|
func (*SubscriptionAction) Descriptor() ([]byte, []int) {
|
|
3656
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4059
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
|
|
3657
4060
|
}
|
|
3658
4061
|
|
|
3659
4062
|
func (x *SubscriptionAction) GetIsDeactivated() bool {
|
|
@@ -3688,7 +4091,7 @@ type AgentAction struct {
|
|
|
3688
4091
|
|
|
3689
4092
|
func (x *AgentAction) Reset() {
|
|
3690
4093
|
*x = AgentAction{}
|
|
3691
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4094
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3692
4095
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3693
4096
|
ms.StoreMessageInfo(mi)
|
|
3694
4097
|
}
|
|
@@ -3700,7 +4103,7 @@ func (x *AgentAction) String() string {
|
|
|
3700
4103
|
func (*AgentAction) ProtoMessage() {}
|
|
3701
4104
|
|
|
3702
4105
|
func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
3703
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4106
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3704
4107
|
if x != nil {
|
|
3705
4108
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3706
4109
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3713,7 +4116,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
|
3713
4116
|
|
|
3714
4117
|
// Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
|
|
3715
4118
|
func (*AgentAction) Descriptor() ([]byte, []int) {
|
|
3716
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4119
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
|
|
3717
4120
|
}
|
|
3718
4121
|
|
|
3719
4122
|
func (x *AgentAction) GetName() string {
|
|
@@ -3746,7 +4149,7 @@ type AndroidUnsupportedActions struct {
|
|
|
3746
4149
|
|
|
3747
4150
|
func (x *AndroidUnsupportedActions) Reset() {
|
|
3748
4151
|
*x = AndroidUnsupportedActions{}
|
|
3749
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4152
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3750
4153
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3751
4154
|
ms.StoreMessageInfo(mi)
|
|
3752
4155
|
}
|
|
@@ -3758,7 +4161,7 @@ func (x *AndroidUnsupportedActions) String() string {
|
|
|
3758
4161
|
func (*AndroidUnsupportedActions) ProtoMessage() {}
|
|
3759
4162
|
|
|
3760
4163
|
func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
3761
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4164
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3762
4165
|
if x != nil {
|
|
3763
4166
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3764
4167
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3771,7 +4174,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
|
3771
4174
|
|
|
3772
4175
|
// Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
|
|
3773
4176
|
func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
|
|
3774
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4177
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
|
|
3775
4178
|
}
|
|
3776
4179
|
|
|
3777
4180
|
func (x *AndroidUnsupportedActions) GetAllowed() bool {
|
|
@@ -3790,7 +4193,7 @@ type PrimaryFeature struct {
|
|
|
3790
4193
|
|
|
3791
4194
|
func (x *PrimaryFeature) Reset() {
|
|
3792
4195
|
*x = PrimaryFeature{}
|
|
3793
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4196
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3794
4197
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3795
4198
|
ms.StoreMessageInfo(mi)
|
|
3796
4199
|
}
|
|
@@ -3802,7 +4205,7 @@ func (x *PrimaryFeature) String() string {
|
|
|
3802
4205
|
func (*PrimaryFeature) ProtoMessage() {}
|
|
3803
4206
|
|
|
3804
4207
|
func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
3805
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4208
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3806
4209
|
if x != nil {
|
|
3807
4210
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3808
4211
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3815,7 +4218,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
|
3815
4218
|
|
|
3816
4219
|
// Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
|
|
3817
4220
|
func (*PrimaryFeature) Descriptor() ([]byte, []int) {
|
|
3818
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4221
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
|
|
3819
4222
|
}
|
|
3820
4223
|
|
|
3821
4224
|
func (x *PrimaryFeature) GetFlags() []string {
|
|
@@ -3834,7 +4237,7 @@ type KeyExpiration struct {
|
|
|
3834
4237
|
|
|
3835
4238
|
func (x *KeyExpiration) Reset() {
|
|
3836
4239
|
*x = KeyExpiration{}
|
|
3837
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4240
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3838
4241
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3839
4242
|
ms.StoreMessageInfo(mi)
|
|
3840
4243
|
}
|
|
@@ -3846,7 +4249,7 @@ func (x *KeyExpiration) String() string {
|
|
|
3846
4249
|
func (*KeyExpiration) ProtoMessage() {}
|
|
3847
4250
|
|
|
3848
4251
|
func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
3849
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4252
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3850
4253
|
if x != nil {
|
|
3851
4254
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3852
4255
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3859,7 +4262,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
|
3859
4262
|
|
|
3860
4263
|
// Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
|
|
3861
4264
|
func (*KeyExpiration) Descriptor() ([]byte, []int) {
|
|
3862
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4265
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
|
|
3863
4266
|
}
|
|
3864
4267
|
|
|
3865
4268
|
func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
|
|
@@ -3879,7 +4282,7 @@ type SyncActionMessage struct {
|
|
|
3879
4282
|
|
|
3880
4283
|
func (x *SyncActionMessage) Reset() {
|
|
3881
4284
|
*x = SyncActionMessage{}
|
|
3882
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4285
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
3883
4286
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3884
4287
|
ms.StoreMessageInfo(mi)
|
|
3885
4288
|
}
|
|
@@ -3891,7 +4294,7 @@ func (x *SyncActionMessage) String() string {
|
|
|
3891
4294
|
func (*SyncActionMessage) ProtoMessage() {}
|
|
3892
4295
|
|
|
3893
4296
|
func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
3894
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4297
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
3895
4298
|
if x != nil {
|
|
3896
4299
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3897
4300
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3904,7 +4307,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
|
3904
4307
|
|
|
3905
4308
|
// Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
3906
4309
|
func (*SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
3907
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4310
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
|
|
3908
4311
|
}
|
|
3909
4312
|
|
|
3910
4313
|
func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
@@ -3932,7 +4335,7 @@ type SyncActionMessageRange struct {
|
|
|
3932
4335
|
|
|
3933
4336
|
func (x *SyncActionMessageRange) Reset() {
|
|
3934
4337
|
*x = SyncActionMessageRange{}
|
|
3935
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4338
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
3936
4339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3937
4340
|
ms.StoreMessageInfo(mi)
|
|
3938
4341
|
}
|
|
@@ -3944,7 +4347,7 @@ func (x *SyncActionMessageRange) String() string {
|
|
|
3944
4347
|
func (*SyncActionMessageRange) ProtoMessage() {}
|
|
3945
4348
|
|
|
3946
4349
|
func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
3947
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4350
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
3948
4351
|
if x != nil {
|
|
3949
4352
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3950
4353
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3957,7 +4360,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
|
3957
4360
|
|
|
3958
4361
|
// Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
3959
4362
|
func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
3960
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4363
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
|
|
3961
4364
|
}
|
|
3962
4365
|
|
|
3963
4366
|
func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
@@ -3990,7 +4393,7 @@ type UnarchiveChatsSetting struct {
|
|
|
3990
4393
|
|
|
3991
4394
|
func (x *UnarchiveChatsSetting) Reset() {
|
|
3992
4395
|
*x = UnarchiveChatsSetting{}
|
|
3993
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4396
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
3994
4397
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3995
4398
|
ms.StoreMessageInfo(mi)
|
|
3996
4399
|
}
|
|
@@ -4002,7 +4405,7 @@ func (x *UnarchiveChatsSetting) String() string {
|
|
|
4002
4405
|
func (*UnarchiveChatsSetting) ProtoMessage() {}
|
|
4003
4406
|
|
|
4004
4407
|
func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
4005
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4006
4409
|
if x != nil {
|
|
4007
4410
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4008
4411
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4015,7 +4418,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
|
4015
4418
|
|
|
4016
4419
|
// Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
|
|
4017
4420
|
func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
|
|
4018
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4421
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
|
|
4019
4422
|
}
|
|
4020
4423
|
|
|
4021
4424
|
func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
|
|
@@ -4034,7 +4437,7 @@ type DeleteChatAction struct {
|
|
|
4034
4437
|
|
|
4035
4438
|
func (x *DeleteChatAction) Reset() {
|
|
4036
4439
|
*x = DeleteChatAction{}
|
|
4037
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4440
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4038
4441
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4039
4442
|
ms.StoreMessageInfo(mi)
|
|
4040
4443
|
}
|
|
@@ -4046,7 +4449,7 @@ func (x *DeleteChatAction) String() string {
|
|
|
4046
4449
|
func (*DeleteChatAction) ProtoMessage() {}
|
|
4047
4450
|
|
|
4048
4451
|
func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
4049
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4452
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4050
4453
|
if x != nil {
|
|
4051
4454
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4052
4455
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4059,7 +4462,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4059
4462
|
|
|
4060
4463
|
// Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
|
|
4061
4464
|
func (*DeleteChatAction) Descriptor() ([]byte, []int) {
|
|
4062
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4465
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
|
|
4063
4466
|
}
|
|
4064
4467
|
|
|
4065
4468
|
func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4078,7 +4481,7 @@ type ClearChatAction struct {
|
|
|
4078
4481
|
|
|
4079
4482
|
func (x *ClearChatAction) Reset() {
|
|
4080
4483
|
*x = ClearChatAction{}
|
|
4081
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4484
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4082
4485
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4083
4486
|
ms.StoreMessageInfo(mi)
|
|
4084
4487
|
}
|
|
@@ -4090,7 +4493,7 @@ func (x *ClearChatAction) String() string {
|
|
|
4090
4493
|
func (*ClearChatAction) ProtoMessage() {}
|
|
4091
4494
|
|
|
4092
4495
|
func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
4093
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4496
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4094
4497
|
if x != nil {
|
|
4095
4498
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4096
4499
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4103,7 +4506,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4103
4506
|
|
|
4104
4507
|
// Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
|
|
4105
4508
|
func (*ClearChatAction) Descriptor() ([]byte, []int) {
|
|
4106
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4509
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
|
|
4107
4510
|
}
|
|
4108
4511
|
|
|
4109
4512
|
func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4123,7 +4526,7 @@ type MarkChatAsReadAction struct {
|
|
|
4123
4526
|
|
|
4124
4527
|
func (x *MarkChatAsReadAction) Reset() {
|
|
4125
4528
|
*x = MarkChatAsReadAction{}
|
|
4126
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4529
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4127
4530
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4128
4531
|
ms.StoreMessageInfo(mi)
|
|
4129
4532
|
}
|
|
@@ -4135,7 +4538,7 @@ func (x *MarkChatAsReadAction) String() string {
|
|
|
4135
4538
|
func (*MarkChatAsReadAction) ProtoMessage() {}
|
|
4136
4539
|
|
|
4137
4540
|
func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
4138
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4541
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4139
4542
|
if x != nil {
|
|
4140
4543
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4141
4544
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4148,7 +4551,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
|
4148
4551
|
|
|
4149
4552
|
// Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
|
|
4150
4553
|
func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
|
|
4151
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4554
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
|
|
4152
4555
|
}
|
|
4153
4556
|
|
|
4154
4557
|
func (x *MarkChatAsReadAction) GetRead() bool {
|
|
@@ -4175,7 +4578,7 @@ type DeleteMessageForMeAction struct {
|
|
|
4175
4578
|
|
|
4176
4579
|
func (x *DeleteMessageForMeAction) Reset() {
|
|
4177
4580
|
*x = DeleteMessageForMeAction{}
|
|
4178
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4581
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4179
4582
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4180
4583
|
ms.StoreMessageInfo(mi)
|
|
4181
4584
|
}
|
|
@@ -4187,7 +4590,7 @@ func (x *DeleteMessageForMeAction) String() string {
|
|
|
4187
4590
|
func (*DeleteMessageForMeAction) ProtoMessage() {}
|
|
4188
4591
|
|
|
4189
4592
|
func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
4190
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4593
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4191
4594
|
if x != nil {
|
|
4192
4595
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4193
4596
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4200,7 +4603,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
|
4200
4603
|
|
|
4201
4604
|
// Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
|
|
4202
4605
|
func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
|
|
4203
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4606
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
|
|
4204
4607
|
}
|
|
4205
4608
|
|
|
4206
4609
|
func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
|
|
@@ -4227,7 +4630,7 @@ type ArchiveChatAction struct {
|
|
|
4227
4630
|
|
|
4228
4631
|
func (x *ArchiveChatAction) Reset() {
|
|
4229
4632
|
*x = ArchiveChatAction{}
|
|
4230
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4633
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4231
4634
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4232
4635
|
ms.StoreMessageInfo(mi)
|
|
4233
4636
|
}
|
|
@@ -4239,7 +4642,7 @@ func (x *ArchiveChatAction) String() string {
|
|
|
4239
4642
|
func (*ArchiveChatAction) ProtoMessage() {}
|
|
4240
4643
|
|
|
4241
4644
|
func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
4242
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4645
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4243
4646
|
if x != nil {
|
|
4244
4647
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4245
4648
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4252,7 +4655,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4252
4655
|
|
|
4253
4656
|
// Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
|
|
4254
4657
|
func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
|
|
4255
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4658
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
|
|
4256
4659
|
}
|
|
4257
4660
|
|
|
4258
4661
|
func (x *ArchiveChatAction) GetArchived() bool {
|
|
@@ -4278,7 +4681,7 @@ type RecentEmojiWeightsAction struct {
|
|
|
4278
4681
|
|
|
4279
4682
|
func (x *RecentEmojiWeightsAction) Reset() {
|
|
4280
4683
|
*x = RecentEmojiWeightsAction{}
|
|
4281
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4684
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4282
4685
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4283
4686
|
ms.StoreMessageInfo(mi)
|
|
4284
4687
|
}
|
|
@@ -4290,7 +4693,7 @@ func (x *RecentEmojiWeightsAction) String() string {
|
|
|
4290
4693
|
func (*RecentEmojiWeightsAction) ProtoMessage() {}
|
|
4291
4694
|
|
|
4292
4695
|
func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
4293
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4696
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4294
4697
|
if x != nil {
|
|
4295
4698
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4296
4699
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4303,7 +4706,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
|
4303
4706
|
|
|
4304
4707
|
// Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
|
|
4305
4708
|
func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
|
|
4306
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4709
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
|
|
4307
4710
|
}
|
|
4308
4711
|
|
|
4309
4712
|
func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
|
|
@@ -4322,7 +4725,7 @@ type LabelAssociationAction struct {
|
|
|
4322
4725
|
|
|
4323
4726
|
func (x *LabelAssociationAction) Reset() {
|
|
4324
4727
|
*x = LabelAssociationAction{}
|
|
4325
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4728
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4326
4729
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4327
4730
|
ms.StoreMessageInfo(mi)
|
|
4328
4731
|
}
|
|
@@ -4334,7 +4737,7 @@ func (x *LabelAssociationAction) String() string {
|
|
|
4334
4737
|
func (*LabelAssociationAction) ProtoMessage() {}
|
|
4335
4738
|
|
|
4336
4739
|
func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
4337
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4740
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4338
4741
|
if x != nil {
|
|
4339
4742
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4340
4743
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4347,7 +4750,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
|
4347
4750
|
|
|
4348
4751
|
// Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
|
|
4349
4752
|
func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
|
|
4350
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4753
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
|
|
4351
4754
|
}
|
|
4352
4755
|
|
|
4353
4756
|
func (x *LabelAssociationAction) GetLabeled() bool {
|
|
@@ -4370,7 +4773,7 @@ type QuickReplyAction struct {
|
|
|
4370
4773
|
|
|
4371
4774
|
func (x *QuickReplyAction) Reset() {
|
|
4372
4775
|
*x = QuickReplyAction{}
|
|
4373
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4776
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4374
4777
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4375
4778
|
ms.StoreMessageInfo(mi)
|
|
4376
4779
|
}
|
|
@@ -4382,7 +4785,7 @@ func (x *QuickReplyAction) String() string {
|
|
|
4382
4785
|
func (*QuickReplyAction) ProtoMessage() {}
|
|
4383
4786
|
|
|
4384
4787
|
func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
4385
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4788
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4386
4789
|
if x != nil {
|
|
4387
4790
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4388
4791
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4395,7 +4798,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
|
4395
4798
|
|
|
4396
4799
|
// Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
|
|
4397
4800
|
func (*QuickReplyAction) Descriptor() ([]byte, []int) {
|
|
4398
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4801
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
|
|
4399
4802
|
}
|
|
4400
4803
|
|
|
4401
4804
|
func (x *QuickReplyAction) GetShortcut() string {
|
|
@@ -4442,7 +4845,7 @@ type LocaleSetting struct {
|
|
|
4442
4845
|
|
|
4443
4846
|
func (x *LocaleSetting) Reset() {
|
|
4444
4847
|
*x = LocaleSetting{}
|
|
4445
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4848
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4446
4849
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4447
4850
|
ms.StoreMessageInfo(mi)
|
|
4448
4851
|
}
|
|
@@ -4454,7 +4857,7 @@ func (x *LocaleSetting) String() string {
|
|
|
4454
4857
|
func (*LocaleSetting) ProtoMessage() {}
|
|
4455
4858
|
|
|
4456
4859
|
func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
4457
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4860
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4458
4861
|
if x != nil {
|
|
4459
4862
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4460
4863
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4467,7 +4870,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
|
4467
4870
|
|
|
4468
4871
|
// Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
|
|
4469
4872
|
func (*LocaleSetting) Descriptor() ([]byte, []int) {
|
|
4470
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4873
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
|
|
4471
4874
|
}
|
|
4472
4875
|
|
|
4473
4876
|
func (x *LocaleSetting) GetLocale() string {
|
|
@@ -4486,7 +4889,7 @@ type PushNameSetting struct {
|
|
|
4486
4889
|
|
|
4487
4890
|
func (x *PushNameSetting) Reset() {
|
|
4488
4891
|
*x = PushNameSetting{}
|
|
4489
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4892
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4490
4893
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4491
4894
|
ms.StoreMessageInfo(mi)
|
|
4492
4895
|
}
|
|
@@ -4498,7 +4901,7 @@ func (x *PushNameSetting) String() string {
|
|
|
4498
4901
|
func (*PushNameSetting) ProtoMessage() {}
|
|
4499
4902
|
|
|
4500
4903
|
func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
4501
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4904
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4502
4905
|
if x != nil {
|
|
4503
4906
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4504
4907
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4511,7 +4914,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
|
4511
4914
|
|
|
4512
4915
|
// Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
|
|
4513
4916
|
func (*PushNameSetting) Descriptor() ([]byte, []int) {
|
|
4514
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4917
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
|
|
4515
4918
|
}
|
|
4516
4919
|
|
|
4517
4920
|
func (x *PushNameSetting) GetName() string {
|
|
@@ -4530,7 +4933,7 @@ type SecurityNotificationSetting struct {
|
|
|
4530
4933
|
|
|
4531
4934
|
func (x *SecurityNotificationSetting) Reset() {
|
|
4532
4935
|
*x = SecurityNotificationSetting{}
|
|
4533
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4936
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4534
4937
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4535
4938
|
ms.StoreMessageInfo(mi)
|
|
4536
4939
|
}
|
|
@@ -4542,7 +4945,7 @@ func (x *SecurityNotificationSetting) String() string {
|
|
|
4542
4945
|
func (*SecurityNotificationSetting) ProtoMessage() {}
|
|
4543
4946
|
|
|
4544
4947
|
func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
4545
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4948
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4546
4949
|
if x != nil {
|
|
4547
4950
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4548
4951
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4555,7 +4958,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
|
4555
4958
|
|
|
4556
4959
|
// Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
|
|
4557
4960
|
func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
|
|
4558
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4961
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
|
|
4559
4962
|
}
|
|
4560
4963
|
|
|
4561
4964
|
func (x *SecurityNotificationSetting) GetShowNotification() bool {
|
|
@@ -4574,7 +4977,7 @@ type PinAction struct {
|
|
|
4574
4977
|
|
|
4575
4978
|
func (x *PinAction) Reset() {
|
|
4576
4979
|
*x = PinAction{}
|
|
4577
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4980
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4578
4981
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4579
4982
|
ms.StoreMessageInfo(mi)
|
|
4580
4983
|
}
|
|
@@ -4586,7 +4989,7 @@ func (x *PinAction) String() string {
|
|
|
4586
4989
|
func (*PinAction) ProtoMessage() {}
|
|
4587
4990
|
|
|
4588
4991
|
func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
4589
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4992
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4590
4993
|
if x != nil {
|
|
4591
4994
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4592
4995
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4599,7 +5002,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
|
4599
5002
|
|
|
4600
5003
|
// Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
|
|
4601
5004
|
func (*PinAction) Descriptor() ([]byte, []int) {
|
|
4602
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5005
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
|
|
4603
5006
|
}
|
|
4604
5007
|
|
|
4605
5008
|
func (x *PinAction) GetPinned() bool {
|
|
@@ -4620,7 +5023,7 @@ type MuteAction struct {
|
|
|
4620
5023
|
|
|
4621
5024
|
func (x *MuteAction) Reset() {
|
|
4622
5025
|
*x = MuteAction{}
|
|
4623
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5026
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4624
5027
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4625
5028
|
ms.StoreMessageInfo(mi)
|
|
4626
5029
|
}
|
|
@@ -4632,7 +5035,7 @@ func (x *MuteAction) String() string {
|
|
|
4632
5035
|
func (*MuteAction) ProtoMessage() {}
|
|
4633
5036
|
|
|
4634
5037
|
func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
4635
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5038
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4636
5039
|
if x != nil {
|
|
4637
5040
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4638
5041
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4645,7 +5048,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
|
4645
5048
|
|
|
4646
5049
|
// Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
|
|
4647
5050
|
func (*MuteAction) Descriptor() ([]byte, []int) {
|
|
4648
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5051
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
|
|
4649
5052
|
}
|
|
4650
5053
|
|
|
4651
5054
|
func (x *MuteAction) GetMuted() bool {
|
|
@@ -4683,7 +5086,7 @@ type ContactAction struct {
|
|
|
4683
5086
|
|
|
4684
5087
|
func (x *ContactAction) Reset() {
|
|
4685
5088
|
*x = ContactAction{}
|
|
4686
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5089
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4687
5090
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4688
5091
|
ms.StoreMessageInfo(mi)
|
|
4689
5092
|
}
|
|
@@ -4695,7 +5098,7 @@ func (x *ContactAction) String() string {
|
|
|
4695
5098
|
func (*ContactAction) ProtoMessage() {}
|
|
4696
5099
|
|
|
4697
5100
|
func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
4698
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5101
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4699
5102
|
if x != nil {
|
|
4700
5103
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4701
5104
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4708,7 +5111,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
|
4708
5111
|
|
|
4709
5112
|
// Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
|
|
4710
5113
|
func (*ContactAction) Descriptor() ([]byte, []int) {
|
|
4711
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5114
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
|
|
4712
5115
|
}
|
|
4713
5116
|
|
|
4714
5117
|
func (x *ContactAction) GetFullName() string {
|
|
@@ -4762,7 +5165,7 @@ type StarAction struct {
|
|
|
4762
5165
|
|
|
4763
5166
|
func (x *StarAction) Reset() {
|
|
4764
5167
|
*x = StarAction{}
|
|
4765
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5168
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
4766
5169
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4767
5170
|
ms.StoreMessageInfo(mi)
|
|
4768
5171
|
}
|
|
@@ -4774,7 +5177,7 @@ func (x *StarAction) String() string {
|
|
|
4774
5177
|
func (*StarAction) ProtoMessage() {}
|
|
4775
5178
|
|
|
4776
5179
|
func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
4777
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5180
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
4778
5181
|
if x != nil {
|
|
4779
5182
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4780
5183
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4787,7 +5190,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
|
4787
5190
|
|
|
4788
5191
|
// Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
|
|
4789
5192
|
func (*StarAction) Descriptor() ([]byte, []int) {
|
|
4790
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5193
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
|
|
4791
5194
|
}
|
|
4792
5195
|
|
|
4793
5196
|
func (x *StarAction) GetStarred() bool {
|
|
@@ -4809,7 +5212,7 @@ type SyncActionData struct {
|
|
|
4809
5212
|
|
|
4810
5213
|
func (x *SyncActionData) Reset() {
|
|
4811
5214
|
*x = SyncActionData{}
|
|
4812
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5215
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
4813
5216
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4814
5217
|
ms.StoreMessageInfo(mi)
|
|
4815
5218
|
}
|
|
@@ -4821,7 +5224,7 @@ func (x *SyncActionData) String() string {
|
|
|
4821
5224
|
func (*SyncActionData) ProtoMessage() {}
|
|
4822
5225
|
|
|
4823
5226
|
func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
4824
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5227
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
4825
5228
|
if x != nil {
|
|
4826
5229
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4827
5230
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4834,7 +5237,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
|
4834
5237
|
|
|
4835
5238
|
// Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
|
|
4836
5239
|
func (*SyncActionData) Descriptor() ([]byte, []int) {
|
|
4837
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5240
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
|
|
4838
5241
|
}
|
|
4839
5242
|
|
|
4840
5243
|
func (x *SyncActionData) GetIndex() []byte {
|
|
@@ -4875,7 +5278,7 @@ type CallLogRecord_ParticipantInfo struct {
|
|
|
4875
5278
|
|
|
4876
5279
|
func (x *CallLogRecord_ParticipantInfo) Reset() {
|
|
4877
5280
|
*x = CallLogRecord_ParticipantInfo{}
|
|
4878
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5281
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
4879
5282
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4880
5283
|
ms.StoreMessageInfo(mi)
|
|
4881
5284
|
}
|
|
@@ -4887,7 +5290,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
|
|
|
4887
5290
|
func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
|
|
4888
5291
|
|
|
4889
5292
|
func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
|
|
4890
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5293
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
4891
5294
|
if x != nil {
|
|
4892
5295
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4893
5296
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4926,7 +5329,7 @@ type FavoritesAction_Favorite struct {
|
|
|
4926
5329
|
|
|
4927
5330
|
func (x *FavoritesAction_Favorite) Reset() {
|
|
4928
5331
|
*x = FavoritesAction_Favorite{}
|
|
4929
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5332
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
4930
5333
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4931
5334
|
ms.StoreMessageInfo(mi)
|
|
4932
5335
|
}
|
|
@@ -4938,7 +5341,7 @@ func (x *FavoritesAction_Favorite) String() string {
|
|
|
4938
5341
|
func (*FavoritesAction_Favorite) ProtoMessage() {}
|
|
4939
5342
|
|
|
4940
5343
|
func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
4941
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5344
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
4942
5345
|
if x != nil {
|
|
4943
5346
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4944
5347
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4951,7 +5354,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
|
4951
5354
|
|
|
4952
5355
|
// Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
|
|
4953
5356
|
func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
|
|
4954
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5357
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20, 0}
|
|
4955
5358
|
}
|
|
4956
5359
|
|
|
4957
5360
|
func (x *FavoritesAction_Favorite) GetID() string {
|
|
@@ -5019,7 +5422,13 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5019
5422
|
"\x06FAILED\x10\b\x12\r\n" +
|
|
5020
5423
|
"\tABANDONED\x10\t\x12\v\n" +
|
|
5021
5424
|
"\aONGOING\x10\n" +
|
|
5022
|
-
"\"\
|
|
5425
|
+
"\"\xd6\x01\n" +
|
|
5426
|
+
"\x1cMaibaAIFeaturesControlAction\x12i\n" +
|
|
5427
|
+
"\x0faiFeatureStatus\x18\x01 \x01(\x0e2?.WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatusR\x0faiFeatureStatus\"K\n" +
|
|
5428
|
+
"\x14MaibaAIFeatureStatus\x12\v\n" +
|
|
5429
|
+
"\aENABLED\x10\x00\x12\x18\n" +
|
|
5430
|
+
"\x14ENABLED_HAS_LEARNING\x10\x01\x12\f\n" +
|
|
5431
|
+
"\bDISABLED\x10\x02\"\xae\x01\n" +
|
|
5023
5432
|
"\x10PaymentTosAction\x12R\n" +
|
|
5024
5433
|
"\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
|
|
5025
5434
|
"\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
|
|
@@ -5134,7 +5543,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5134
5543
|
"\x06WEAROS\x10\b\"A\n" +
|
|
5135
5544
|
"\x11RecentEmojiWeight\x12\x14\n" +
|
|
5136
5545
|
"\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
|
|
5137
|
-
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\
|
|
5546
|
+
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\xb5-\n" +
|
|
5138
5547
|
"\x0fSyncActionValue\x12\x1c\n" +
|
|
5139
5548
|
"\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
|
|
5140
5549
|
"\n" +
|
|
@@ -5198,7 +5607,21 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5198
5607
|
" ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
|
|
5199
5608
|
"\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
|
|
5200
5609
|
"6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\n" +
|
|
5201
|
-
"\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\
|
|
5610
|
+
"\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\x12n\n" +
|
|
5611
|
+
"\x1cdetectedOutcomesStatusAction\x18B \x01(\v2*.WASyncAction.DetectedOutcomesStatusActionR\x1cdetectedOutcomesStatusAction\x12n\n" +
|
|
5612
|
+
"\x1cmaibaAiFeaturesControlAction\x18D \x01(\v2*.WASyncAction.MaibaAIFeaturesControlActionR\x1cmaibaAiFeaturesControlAction\x12k\n" +
|
|
5613
|
+
"\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
|
|
5614
|
+
"\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
|
|
5615
|
+
",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\"H\n" +
|
|
5616
|
+
",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
|
|
5617
|
+
"\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
|
|
5618
|
+
"\x18BroadcastListParticipant\x12\x16\n" +
|
|
5619
|
+
"\x06lidJID\x18\x01 \x02(\tR\x06lidJID\x12\x14\n" +
|
|
5620
|
+
"\x05pnJID\x18\x02 \x01(\tR\x05pnJID\"\x9f\x01\n" +
|
|
5621
|
+
"\x1bBusinessBroadcastListAction\x12\x18\n" +
|
|
5622
|
+
"\adeleted\x18\x01 \x01(\bR\adeleted\x12J\n" +
|
|
5623
|
+
"\fparticipants\x18\x02 \x03(\v2&.WASyncAction.BroadcastListParticipantR\fparticipants\x12\x1a\n" +
|
|
5624
|
+
"\blistName\x18\x03 \x01(\tR\blistName\">\n" +
|
|
5202
5625
|
"\"BusinessBroadcastAssociationAction\x12\x18\n" +
|
|
5203
5626
|
"\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
|
|
5204
5627
|
" CtwaPerCustomerDataSharingAction\x12P\n" +
|
|
@@ -5242,10 +5665,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5242
5665
|
"isIncoming\x18\x02 \x01(\bR\n" +
|
|
5243
5666
|
"isIncoming\"1\n" +
|
|
5244
5667
|
"\x17BotWelcomeRequestAction\x12\x16\n" +
|
|
5245
|
-
"\x06isSent\x18\x01 \x01(\bR\x06isSent\"
|
|
5668
|
+
"\x06isSent\x18\x01 \x01(\bR\x06isSent\"5\n" +
|
|
5669
|
+
"\x11MusicUserIdAction\x12 \n" +
|
|
5670
|
+
"\vmusicUserID\x18\x01 \x01(\tR\vmusicUserID\"R\n" +
|
|
5246
5671
|
"\rCallLogAction\x12A\n" +
|
|
5247
5672
|
"\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
|
|
5248
5673
|
"\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
|
|
5674
|
+
"\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"<\n" +
|
|
5675
|
+
"\x1cDetectedOutcomesStatusAction\x12\x1c\n" +
|
|
5249
5676
|
"\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
|
|
5250
5677
|
"\x15ExternalWebBetaAction\x12\x18\n" +
|
|
5251
5678
|
"\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
|
|
@@ -5258,7 +5685,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5258
5685
|
"chatOpened\x18\x01 \x01(\bR\n" +
|
|
5259
5686
|
"chatOpened\"<\n" +
|
|
5260
5687
|
"\x14ChatAssignmentAction\x12$\n" +
|
|
5261
|
-
"\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\
|
|
5688
|
+
"\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\x95\x03\n" +
|
|
5262
5689
|
"\rStickerAction\x12\x10\n" +
|
|
5263
5690
|
"\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
|
|
5264
5691
|
"\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
|
|
@@ -5277,7 +5704,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5277
5704
|
"isFavorite\x12\"\n" +
|
|
5278
5705
|
"\fdeviceIDHint\x18\n" +
|
|
5279
5706
|
" \x01(\rR\fdeviceIDHint\x12\x1a\n" +
|
|
5280
|
-
"\bisLottie\x18\v \x01(\bR\bisLottie\
|
|
5707
|
+
"\bisLottie\x18\v \x01(\bR\bisLottie\x12\x1c\n" +
|
|
5708
|
+
"\timageHash\x18\f \x01(\tR\timageHash\x12(\n" +
|
|
5709
|
+
"\x0fisAvatarSticker\x18\r \x01(\bR\x0fisAvatarSticker\"I\n" +
|
|
5281
5710
|
"\x19RemoveRecentStickerAction\x12,\n" +
|
|
5282
5711
|
"\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
|
|
5283
5712
|
"\x14PrimaryVersionAction\x12\x18\n" +
|
|
@@ -5375,184 +5804,198 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
|
|
|
5375
5804
|
return file_waSyncAction_WASyncAction_proto_rawDescData
|
|
5376
5805
|
}
|
|
5377
5806
|
|
|
5378
|
-
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
5379
|
-
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
5807
|
+
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 14)
|
|
5808
|
+
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 73)
|
|
5380
5809
|
var file_waSyncAction_WASyncAction_proto_goTypes = []any{
|
|
5381
5810
|
(CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
|
|
5382
5811
|
(CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
|
|
5383
5812
|
(CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
|
|
5384
|
-
(
|
|
5385
|
-
(
|
|
5386
|
-
(
|
|
5387
|
-
(
|
|
5388
|
-
(
|
|
5389
|
-
(
|
|
5390
|
-
(
|
|
5391
|
-
(
|
|
5392
|
-
(
|
|
5393
|
-
(
|
|
5394
|
-
(
|
|
5395
|
-
(*
|
|
5396
|
-
(*
|
|
5397
|
-
(*
|
|
5398
|
-
(*
|
|
5399
|
-
(*
|
|
5400
|
-
(*
|
|
5401
|
-
(*
|
|
5402
|
-
(*
|
|
5403
|
-
(*
|
|
5404
|
-
(*
|
|
5405
|
-
(*
|
|
5406
|
-
(*
|
|
5407
|
-
(*
|
|
5408
|
-
(*
|
|
5409
|
-
(*
|
|
5410
|
-
(*
|
|
5411
|
-
(*
|
|
5412
|
-
(*
|
|
5413
|
-
(*
|
|
5414
|
-
(*
|
|
5415
|
-
(*
|
|
5416
|
-
(*
|
|
5417
|
-
(*
|
|
5418
|
-
(*
|
|
5419
|
-
(*
|
|
5420
|
-
(*
|
|
5421
|
-
(*
|
|
5422
|
-
(*
|
|
5423
|
-
(*
|
|
5424
|
-
(*
|
|
5425
|
-
(*
|
|
5426
|
-
(*
|
|
5427
|
-
(*
|
|
5428
|
-
(*
|
|
5429
|
-
(*
|
|
5430
|
-
(*
|
|
5431
|
-
(*
|
|
5432
|
-
(*
|
|
5433
|
-
(*
|
|
5434
|
-
(*
|
|
5435
|
-
(*
|
|
5436
|
-
(*
|
|
5437
|
-
(*
|
|
5438
|
-
(*
|
|
5439
|
-
(*
|
|
5440
|
-
(*
|
|
5441
|
-
(*
|
|
5442
|
-
(*
|
|
5443
|
-
(*
|
|
5444
|
-
(*
|
|
5445
|
-
(*
|
|
5446
|
-
(*
|
|
5447
|
-
(*
|
|
5448
|
-
(*
|
|
5449
|
-
(*
|
|
5450
|
-
(*
|
|
5451
|
-
(*
|
|
5452
|
-
(*
|
|
5453
|
-
(*
|
|
5454
|
-
(*
|
|
5455
|
-
(*
|
|
5456
|
-
(*
|
|
5457
|
-
(*
|
|
5458
|
-
(*
|
|
5459
|
-
(*
|
|
5460
|
-
(*
|
|
5461
|
-
(*
|
|
5462
|
-
(*
|
|
5463
|
-
(*
|
|
5813
|
+
(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 3: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
5814
|
+
(PaymentTosAction_PaymentNotice)(0), // 4: WASyncAction.PaymentTosAction.PaymentNotice
|
|
5815
|
+
(NotificationActivitySettingAction_NotificationActivitySetting)(0), // 5: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
5816
|
+
(WaffleAccountLinkStateAction_AccountLinkState)(0), // 6: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
5817
|
+
(MerchantPaymentPartnerAction_Status)(0), // 7: WASyncAction.MerchantPaymentPartnerAction.Status
|
|
5818
|
+
(NoteEditAction_NoteType)(0), // 8: WASyncAction.NoteEditAction.NoteType
|
|
5819
|
+
(StatusPrivacyAction_StatusDistributionMode)(0), // 9: WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
5820
|
+
(MarketingMessageAction_MarketingMessagePrototypeType)(0), // 10: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
5821
|
+
(UsernameChatStartModeAction_ChatStartMode)(0), // 11: WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
5822
|
+
(LabelEditAction_ListType)(0), // 12: WASyncAction.LabelEditAction.ListType
|
|
5823
|
+
(PatchDebugData_Platform)(0), // 13: WASyncAction.PatchDebugData.Platform
|
|
5824
|
+
(*CallLogRecord)(nil), // 14: WASyncAction.CallLogRecord
|
|
5825
|
+
(*MaibaAIFeaturesControlAction)(nil), // 15: WASyncAction.MaibaAIFeaturesControlAction
|
|
5826
|
+
(*PaymentTosAction)(nil), // 16: WASyncAction.PaymentTosAction
|
|
5827
|
+
(*NotificationActivitySettingAction)(nil), // 17: WASyncAction.NotificationActivitySettingAction
|
|
5828
|
+
(*WaffleAccountLinkStateAction)(nil), // 18: WASyncAction.WaffleAccountLinkStateAction
|
|
5829
|
+
(*MerchantPaymentPartnerAction)(nil), // 19: WASyncAction.MerchantPaymentPartnerAction
|
|
5830
|
+
(*NoteEditAction)(nil), // 20: WASyncAction.NoteEditAction
|
|
5831
|
+
(*StatusPrivacyAction)(nil), // 21: WASyncAction.StatusPrivacyAction
|
|
5832
|
+
(*MarketingMessageAction)(nil), // 22: WASyncAction.MarketingMessageAction
|
|
5833
|
+
(*UsernameChatStartModeAction)(nil), // 23: WASyncAction.UsernameChatStartModeAction
|
|
5834
|
+
(*LabelEditAction)(nil), // 24: WASyncAction.LabelEditAction
|
|
5835
|
+
(*PatchDebugData)(nil), // 25: WASyncAction.PatchDebugData
|
|
5836
|
+
(*RecentEmojiWeight)(nil), // 26: WASyncAction.RecentEmojiWeight
|
|
5837
|
+
(*SyncActionValue)(nil), // 27: WASyncAction.SyncActionValue
|
|
5838
|
+
(*StatusPostOptInNotificationPreferencesAction)(nil), // 28: WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
5839
|
+
(*BroadcastListParticipant)(nil), // 29: WASyncAction.BroadcastListParticipant
|
|
5840
|
+
(*BusinessBroadcastListAction)(nil), // 30: WASyncAction.BusinessBroadcastListAction
|
|
5841
|
+
(*BusinessBroadcastAssociationAction)(nil), // 31: WASyncAction.BusinessBroadcastAssociationAction
|
|
5842
|
+
(*CtwaPerCustomerDataSharingAction)(nil), // 32: WASyncAction.CtwaPerCustomerDataSharingAction
|
|
5843
|
+
(*LidContactAction)(nil), // 33: WASyncAction.LidContactAction
|
|
5844
|
+
(*FavoritesAction)(nil), // 34: WASyncAction.FavoritesAction
|
|
5845
|
+
(*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 35: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
5846
|
+
(*PrivacySettingDisableLinkPreviewsAction)(nil), // 36: WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
5847
|
+
(*WamoUserIdentifierAction)(nil), // 37: WASyncAction.WamoUserIdentifierAction
|
|
5848
|
+
(*LockChatAction)(nil), // 38: WASyncAction.LockChatAction
|
|
5849
|
+
(*CustomPaymentMethodsAction)(nil), // 39: WASyncAction.CustomPaymentMethodsAction
|
|
5850
|
+
(*CustomPaymentMethod)(nil), // 40: WASyncAction.CustomPaymentMethod
|
|
5851
|
+
(*CustomPaymentMethodMetadata)(nil), // 41: WASyncAction.CustomPaymentMethodMetadata
|
|
5852
|
+
(*PaymentInfoAction)(nil), // 42: WASyncAction.PaymentInfoAction
|
|
5853
|
+
(*LabelReorderingAction)(nil), // 43: WASyncAction.LabelReorderingAction
|
|
5854
|
+
(*DeleteIndividualCallLogAction)(nil), // 44: WASyncAction.DeleteIndividualCallLogAction
|
|
5855
|
+
(*BotWelcomeRequestAction)(nil), // 45: WASyncAction.BotWelcomeRequestAction
|
|
5856
|
+
(*MusicUserIdAction)(nil), // 46: WASyncAction.MusicUserIdAction
|
|
5857
|
+
(*CallLogAction)(nil), // 47: WASyncAction.CallLogAction
|
|
5858
|
+
(*PrivacySettingRelayAllCalls)(nil), // 48: WASyncAction.PrivacySettingRelayAllCalls
|
|
5859
|
+
(*DetectedOutcomesStatusAction)(nil), // 49: WASyncAction.DetectedOutcomesStatusAction
|
|
5860
|
+
(*ExternalWebBetaAction)(nil), // 50: WASyncAction.ExternalWebBetaAction
|
|
5861
|
+
(*MarketingMessageBroadcastAction)(nil), // 51: WASyncAction.MarketingMessageBroadcastAction
|
|
5862
|
+
(*PnForLidChatAction)(nil), // 52: WASyncAction.PnForLidChatAction
|
|
5863
|
+
(*ChatAssignmentOpenedStatusAction)(nil), // 53: WASyncAction.ChatAssignmentOpenedStatusAction
|
|
5864
|
+
(*ChatAssignmentAction)(nil), // 54: WASyncAction.ChatAssignmentAction
|
|
5865
|
+
(*StickerAction)(nil), // 55: WASyncAction.StickerAction
|
|
5866
|
+
(*RemoveRecentStickerAction)(nil), // 56: WASyncAction.RemoveRecentStickerAction
|
|
5867
|
+
(*PrimaryVersionAction)(nil), // 57: WASyncAction.PrimaryVersionAction
|
|
5868
|
+
(*NuxAction)(nil), // 58: WASyncAction.NuxAction
|
|
5869
|
+
(*TimeFormatAction)(nil), // 59: WASyncAction.TimeFormatAction
|
|
5870
|
+
(*UserStatusMuteAction)(nil), // 60: WASyncAction.UserStatusMuteAction
|
|
5871
|
+
(*SubscriptionAction)(nil), // 61: WASyncAction.SubscriptionAction
|
|
5872
|
+
(*AgentAction)(nil), // 62: WASyncAction.AgentAction
|
|
5873
|
+
(*AndroidUnsupportedActions)(nil), // 63: WASyncAction.AndroidUnsupportedActions
|
|
5874
|
+
(*PrimaryFeature)(nil), // 64: WASyncAction.PrimaryFeature
|
|
5875
|
+
(*KeyExpiration)(nil), // 65: WASyncAction.KeyExpiration
|
|
5876
|
+
(*SyncActionMessage)(nil), // 66: WASyncAction.SyncActionMessage
|
|
5877
|
+
(*SyncActionMessageRange)(nil), // 67: WASyncAction.SyncActionMessageRange
|
|
5878
|
+
(*UnarchiveChatsSetting)(nil), // 68: WASyncAction.UnarchiveChatsSetting
|
|
5879
|
+
(*DeleteChatAction)(nil), // 69: WASyncAction.DeleteChatAction
|
|
5880
|
+
(*ClearChatAction)(nil), // 70: WASyncAction.ClearChatAction
|
|
5881
|
+
(*MarkChatAsReadAction)(nil), // 71: WASyncAction.MarkChatAsReadAction
|
|
5882
|
+
(*DeleteMessageForMeAction)(nil), // 72: WASyncAction.DeleteMessageForMeAction
|
|
5883
|
+
(*ArchiveChatAction)(nil), // 73: WASyncAction.ArchiveChatAction
|
|
5884
|
+
(*RecentEmojiWeightsAction)(nil), // 74: WASyncAction.RecentEmojiWeightsAction
|
|
5885
|
+
(*LabelAssociationAction)(nil), // 75: WASyncAction.LabelAssociationAction
|
|
5886
|
+
(*QuickReplyAction)(nil), // 76: WASyncAction.QuickReplyAction
|
|
5887
|
+
(*LocaleSetting)(nil), // 77: WASyncAction.LocaleSetting
|
|
5888
|
+
(*PushNameSetting)(nil), // 78: WASyncAction.PushNameSetting
|
|
5889
|
+
(*SecurityNotificationSetting)(nil), // 79: WASyncAction.SecurityNotificationSetting
|
|
5890
|
+
(*PinAction)(nil), // 80: WASyncAction.PinAction
|
|
5891
|
+
(*MuteAction)(nil), // 81: WASyncAction.MuteAction
|
|
5892
|
+
(*ContactAction)(nil), // 82: WASyncAction.ContactAction
|
|
5893
|
+
(*StarAction)(nil), // 83: WASyncAction.StarAction
|
|
5894
|
+
(*SyncActionData)(nil), // 84: WASyncAction.SyncActionData
|
|
5895
|
+
(*CallLogRecord_ParticipantInfo)(nil), // 85: WASyncAction.CallLogRecord.ParticipantInfo
|
|
5896
|
+
(*FavoritesAction_Favorite)(nil), // 86: WASyncAction.FavoritesAction.Favorite
|
|
5897
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 87: WAProtobufsChatLockSettings.ChatLockSettings
|
|
5898
|
+
(*waDeviceCapabilities.DeviceCapabilities)(nil), // 88: WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
5899
|
+
(*waCommon.MessageKey)(nil), // 89: WACommon.MessageKey
|
|
5464
5900
|
}
|
|
5465
5901
|
var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
|
|
5466
5902
|
2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
5467
5903
|
1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
|
|
5468
|
-
|
|
5904
|
+
85, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
|
|
5469
5905
|
0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
|
|
5470
|
-
3, // 4: WASyncAction.
|
|
5471
|
-
4, // 5: WASyncAction.
|
|
5472
|
-
5, // 6: WASyncAction.
|
|
5473
|
-
6, // 7: WASyncAction.
|
|
5474
|
-
7, // 8: WASyncAction.
|
|
5475
|
-
8, // 9: WASyncAction.
|
|
5476
|
-
9, // 10: WASyncAction.
|
|
5477
|
-
10, // 11: WASyncAction.
|
|
5478
|
-
11, // 12: WASyncAction.
|
|
5479
|
-
12, // 13: WASyncAction.
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5906
|
+
3, // 4: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
5907
|
+
4, // 5: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
|
|
5908
|
+
5, // 6: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
5909
|
+
6, // 7: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
5910
|
+
7, // 8: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
|
|
5911
|
+
8, // 9: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
|
|
5912
|
+
9, // 10: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
5913
|
+
10, // 11: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
5914
|
+
11, // 12: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
5915
|
+
12, // 13: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
|
|
5916
|
+
13, // 14: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
|
|
5917
|
+
83, // 15: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
|
|
5918
|
+
82, // 16: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
|
|
5919
|
+
81, // 17: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
|
|
5920
|
+
80, // 18: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
|
|
5921
|
+
79, // 19: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
|
|
5922
|
+
78, // 20: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
|
|
5923
|
+
76, // 21: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
|
|
5924
|
+
74, // 22: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
|
|
5925
|
+
24, // 23: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
|
|
5926
|
+
75, // 24: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
|
|
5927
|
+
77, // 25: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
|
|
5928
|
+
73, // 26: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
|
|
5929
|
+
72, // 27: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
|
|
5930
|
+
65, // 28: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
|
|
5931
|
+
71, // 29: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
|
|
5932
|
+
70, // 30: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
|
|
5933
|
+
69, // 31: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
|
|
5934
|
+
68, // 32: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
|
|
5935
|
+
64, // 33: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
|
|
5936
|
+
63, // 34: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
|
|
5937
|
+
62, // 35: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
|
|
5938
|
+
61, // 36: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
|
|
5939
|
+
60, // 37: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
|
|
5940
|
+
59, // 38: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
|
|
5941
|
+
58, // 39: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
|
|
5942
|
+
57, // 40: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
|
|
5943
|
+
55, // 41: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
|
|
5944
|
+
56, // 42: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
|
|
5945
|
+
54, // 43: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
|
|
5946
|
+
53, // 44: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
|
|
5947
|
+
52, // 45: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
|
|
5948
|
+
22, // 46: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
|
|
5949
|
+
51, // 47: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
|
|
5950
|
+
50, // 48: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
|
|
5951
|
+
48, // 49: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
|
|
5952
|
+
47, // 50: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
|
|
5953
|
+
21, // 51: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
|
|
5954
|
+
45, // 52: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
|
|
5955
|
+
44, // 53: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
|
|
5956
|
+
43, // 54: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
|
|
5957
|
+
42, // 55: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
|
|
5958
|
+
39, // 56: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
|
|
5959
|
+
38, // 57: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
|
|
5960
|
+
87, // 58: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
5961
|
+
37, // 59: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
|
|
5962
|
+
36, // 60: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
5963
|
+
88, // 61: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
5964
|
+
20, // 62: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
|
|
5965
|
+
34, // 63: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
|
|
5966
|
+
19, // 64: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
|
|
5967
|
+
18, // 65: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
|
|
5968
|
+
23, // 66: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
|
|
5969
|
+
17, // 67: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
|
|
5970
|
+
33, // 68: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
|
|
5971
|
+
32, // 69: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
|
|
5972
|
+
16, // 70: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
|
|
5973
|
+
35, // 71: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
5974
|
+
31, // 72: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
|
|
5975
|
+
49, // 73: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
|
|
5976
|
+
15, // 74: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
|
|
5977
|
+
30, // 75: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
|
|
5978
|
+
46, // 76: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
|
|
5979
|
+
28, // 77: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
5980
|
+
29, // 78: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
|
|
5981
|
+
86, // 79: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
|
|
5982
|
+
40, // 80: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
|
|
5983
|
+
41, // 81: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
|
|
5984
|
+
14, // 82: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
|
|
5985
|
+
89, // 83: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
5986
|
+
66, // 84: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
|
|
5987
|
+
67, // 85: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5988
|
+
67, // 86: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5989
|
+
67, // 87: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5990
|
+
67, // 88: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5991
|
+
26, // 89: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
|
|
5992
|
+
27, // 90: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
|
|
5993
|
+
2, // 91: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
5994
|
+
92, // [92:92] is the sub-list for method output_type
|
|
5995
|
+
92, // [92:92] is the sub-list for method input_type
|
|
5996
|
+
92, // [92:92] is the sub-list for extension type_name
|
|
5997
|
+
92, // [92:92] is the sub-list for extension extendee
|
|
5998
|
+
0, // [0:92] is the sub-list for field type_name
|
|
5556
5999
|
}
|
|
5557
6000
|
|
|
5558
6001
|
func init() { file_waSyncAction_WASyncAction_proto_init() }
|
|
@@ -5565,8 +6008,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
|
|
|
5565
6008
|
File: protoimpl.DescBuilder{
|
|
5566
6009
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
5567
6010
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
|
|
5568
|
-
NumEnums:
|
|
5569
|
-
NumMessages:
|
|
6011
|
+
NumEnums: 14,
|
|
6012
|
+
NumMessages: 73,
|
|
5570
6013
|
NumExtensions: 0,
|
|
5571
6014
|
NumServices: 0,
|
|
5572
6015
|
},
|