slidge-whatsapp 0.3.7__cp312-cp312-manylinux_2_41_aarch64.whl → 0.3.8__cp312-cp312-manylinux_2_41_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.
- slidge_whatsapp/config.py +7 -2
- slidge_whatsapp/contact.py +3 -2
- slidge_whatsapp/event.go +14 -9
- slidge_whatsapp/gateway.go +7 -1
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +182 -178
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +146 -142
- slidge_whatsapp/generated/whatsapp.c +1456 -1376
- slidge_whatsapp/generated/whatsapp.go +1069 -1045
- slidge_whatsapp/generated/whatsapp.py +1324 -1298
- slidge_whatsapp/generated/whatsapp_go.h +182 -178
- slidge_whatsapp/go.mod +6 -6
- slidge_whatsapp/go.sum +12 -12
- slidge_whatsapp/group.py +25 -0
- slidge_whatsapp/session.go +69 -67
- slidge_whatsapp/session.py +11 -1
- slidge_whatsapp/vendor/github.com/coder/websocket/LICENSE.txt +13 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/Makefile +18 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/README.md +162 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/accept.go +378 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/close.go +335 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/compress.go +234 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/conn.go +306 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/dial.go +347 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/doc.go +33 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/errors.go +8 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/frame.go +173 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/hijack.go +33 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/internal/bpool/bpool.go +25 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/internal/errd/wrap.go +14 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/internal/util/util.go +15 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/internal/wsjs/wsjs_js.go +169 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/mask.go +128 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/mask_amd64.s +127 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/mask_arm64.s +72 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/mask_asm.go +26 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/mask_go.go +7 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/netconn.go +233 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/netconn_js.go +11 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/netconn_notjs.go +19 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/read.go +540 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/stringer.go +91 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/write.go +384 -0
- slidge_whatsapp/vendor/github.com/coder/websocket/ws_js.go +598 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +3 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +1 -1
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +3 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +3 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +4 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +18 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +3 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +90 -80
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +14 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +47 -48
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +79 -75
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +8 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +1 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +42 -40
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +35 -32
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +2 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +19 -19
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +9 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +4 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +1145 -335
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.proto +78 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +22 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +104 -30
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +1037 -963
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +15 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +40 -35
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +921 -653
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +44 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +9 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +193 -115
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +9 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +2 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +12 -12
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +25 -19
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +43 -27
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +4 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +43 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +9 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +36 -22
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +24 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +12 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +79 -40
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +6 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +10 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +31 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +76 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +37 -0
- slidge_whatsapp/vendor/modules.txt +12 -8
- {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/METADATA +1 -1
- {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/RECORD +145 -136
- slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +0 -25
- slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +0 -9
- slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +0 -22
- slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +0 -33
- slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +0 -434
- slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +0 -148
- slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +0 -1238
- slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +0 -227
- slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +0 -42
- slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +0 -60
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +0 -55
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +0 -16
- slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +0 -102
- slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +0 -77
- slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +0 -365
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +0 -21
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +0 -21
- slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +0 -298
- slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +0 -473
- {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/WHEEL +0 -0
- {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
2
|
// versions:
|
|
3
|
-
// protoc-gen-go v1.36.
|
|
3
|
+
// protoc-gen-go v1.36.10
|
|
4
4
|
// protoc v3.21.12
|
|
5
5
|
// source: waSyncAction/WASyncAction.proto
|
|
6
6
|
|
|
@@ -230,6 +230,118 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
|
|
|
230
230
|
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
+
type InteractiveMessageAction_InteractiveMessageActionMode int32
|
|
234
|
+
|
|
235
|
+
const (
|
|
236
|
+
InteractiveMessageAction_DISABLE_CTA InteractiveMessageAction_InteractiveMessageActionMode = 1
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
// Enum value maps for InteractiveMessageAction_InteractiveMessageActionMode.
|
|
240
|
+
var (
|
|
241
|
+
InteractiveMessageAction_InteractiveMessageActionMode_name = map[int32]string{
|
|
242
|
+
1: "DISABLE_CTA",
|
|
243
|
+
}
|
|
244
|
+
InteractiveMessageAction_InteractiveMessageActionMode_value = map[string]int32{
|
|
245
|
+
"DISABLE_CTA": 1,
|
|
246
|
+
}
|
|
247
|
+
)
|
|
248
|
+
|
|
249
|
+
func (x InteractiveMessageAction_InteractiveMessageActionMode) Enum() *InteractiveMessageAction_InteractiveMessageActionMode {
|
|
250
|
+
p := new(InteractiveMessageAction_InteractiveMessageActionMode)
|
|
251
|
+
*p = x
|
|
252
|
+
return p
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
func (x InteractiveMessageAction_InteractiveMessageActionMode) String() string {
|
|
256
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
func (InteractiveMessageAction_InteractiveMessageActionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
260
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
func (InteractiveMessageAction_InteractiveMessageActionMode) Type() protoreflect.EnumType {
|
|
264
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
func (x InteractiveMessageAction_InteractiveMessageActionMode) Number() protoreflect.EnumNumber {
|
|
268
|
+
return protoreflect.EnumNumber(x)
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
// Deprecated: Do not use.
|
|
272
|
+
func (x *InteractiveMessageAction_InteractiveMessageActionMode) UnmarshalJSON(b []byte) error {
|
|
273
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
274
|
+
if err != nil {
|
|
275
|
+
return err
|
|
276
|
+
}
|
|
277
|
+
*x = InteractiveMessageAction_InteractiveMessageActionMode(num)
|
|
278
|
+
return nil
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// Deprecated: Use InteractiveMessageAction_InteractiveMessageActionMode.Descriptor instead.
|
|
282
|
+
func (InteractiveMessageAction_InteractiveMessageActionMode) EnumDescriptor() ([]byte, []int) {
|
|
283
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
type PrivateProcessingSettingAction_PrivateProcessingStatus int32
|
|
287
|
+
|
|
288
|
+
const (
|
|
289
|
+
PrivateProcessingSettingAction_UNDEFINED PrivateProcessingSettingAction_PrivateProcessingStatus = 0
|
|
290
|
+
PrivateProcessingSettingAction_ENABLED PrivateProcessingSettingAction_PrivateProcessingStatus = 1
|
|
291
|
+
PrivateProcessingSettingAction_DISABLED PrivateProcessingSettingAction_PrivateProcessingStatus = 2
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
// Enum value maps for PrivateProcessingSettingAction_PrivateProcessingStatus.
|
|
295
|
+
var (
|
|
296
|
+
PrivateProcessingSettingAction_PrivateProcessingStatus_name = map[int32]string{
|
|
297
|
+
0: "UNDEFINED",
|
|
298
|
+
1: "ENABLED",
|
|
299
|
+
2: "DISABLED",
|
|
300
|
+
}
|
|
301
|
+
PrivateProcessingSettingAction_PrivateProcessingStatus_value = map[string]int32{
|
|
302
|
+
"UNDEFINED": 0,
|
|
303
|
+
"ENABLED": 1,
|
|
304
|
+
"DISABLED": 2,
|
|
305
|
+
}
|
|
306
|
+
)
|
|
307
|
+
|
|
308
|
+
func (x PrivateProcessingSettingAction_PrivateProcessingStatus) Enum() *PrivateProcessingSettingAction_PrivateProcessingStatus {
|
|
309
|
+
p := new(PrivateProcessingSettingAction_PrivateProcessingStatus)
|
|
310
|
+
*p = x
|
|
311
|
+
return p
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
func (x PrivateProcessingSettingAction_PrivateProcessingStatus) String() string {
|
|
315
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
func (PrivateProcessingSettingAction_PrivateProcessingStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
319
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
func (PrivateProcessingSettingAction_PrivateProcessingStatus) Type() protoreflect.EnumType {
|
|
323
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
func (x PrivateProcessingSettingAction_PrivateProcessingStatus) Number() protoreflect.EnumNumber {
|
|
327
|
+
return protoreflect.EnumNumber(x)
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// Deprecated: Do not use.
|
|
331
|
+
func (x *PrivateProcessingSettingAction_PrivateProcessingStatus) UnmarshalJSON(b []byte) error {
|
|
332
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
333
|
+
if err != nil {
|
|
334
|
+
return err
|
|
335
|
+
}
|
|
336
|
+
*x = PrivateProcessingSettingAction_PrivateProcessingStatus(num)
|
|
337
|
+
return nil
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// Deprecated: Use PrivateProcessingSettingAction_PrivateProcessingStatus.Descriptor instead.
|
|
341
|
+
func (PrivateProcessingSettingAction_PrivateProcessingStatus) EnumDescriptor() ([]byte, []int) {
|
|
342
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
|
|
343
|
+
}
|
|
344
|
+
|
|
233
345
|
type AvatarUpdatedAction_AvatarEventType int32
|
|
234
346
|
|
|
235
347
|
const (
|
|
@@ -263,11 +375,11 @@ func (x AvatarUpdatedAction_AvatarEventType) String() string {
|
|
|
263
375
|
}
|
|
264
376
|
|
|
265
377
|
func (AvatarUpdatedAction_AvatarEventType) Descriptor() protoreflect.EnumDescriptor {
|
|
266
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
378
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
|
|
267
379
|
}
|
|
268
380
|
|
|
269
381
|
func (AvatarUpdatedAction_AvatarEventType) Type() protoreflect.EnumType {
|
|
270
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
382
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
|
|
271
383
|
}
|
|
272
384
|
|
|
273
385
|
func (x AvatarUpdatedAction_AvatarEventType) Number() protoreflect.EnumNumber {
|
|
@@ -286,7 +398,7 @@ func (x *AvatarUpdatedAction_AvatarEventType) UnmarshalJSON(b []byte) error {
|
|
|
286
398
|
|
|
287
399
|
// Deprecated: Use AvatarUpdatedAction_AvatarEventType.Descriptor instead.
|
|
288
400
|
func (AvatarUpdatedAction_AvatarEventType) EnumDescriptor() ([]byte, []int) {
|
|
289
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
401
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
|
|
290
402
|
}
|
|
291
403
|
|
|
292
404
|
type MaibaAIFeaturesControlAction_MaibaAIFeatureStatus int32
|
|
@@ -322,11 +434,11 @@ func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) String() string {
|
|
|
322
434
|
}
|
|
323
435
|
|
|
324
436
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
325
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
437
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
|
|
326
438
|
}
|
|
327
439
|
|
|
328
440
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Type() protoreflect.EnumType {
|
|
329
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
441
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
|
|
330
442
|
}
|
|
331
443
|
|
|
332
444
|
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Number() protoreflect.EnumNumber {
|
|
@@ -345,7 +457,7 @@ func (x *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) UnmarshalJSON(b []by
|
|
|
345
457
|
|
|
346
458
|
// Deprecated: Use MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.Descriptor instead.
|
|
347
459
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) EnumDescriptor() ([]byte, []int) {
|
|
348
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
460
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
|
|
349
461
|
}
|
|
350
462
|
|
|
351
463
|
type PaymentTosAction_PaymentNotice int32
|
|
@@ -375,11 +487,11 @@ func (x PaymentTosAction_PaymentNotice) String() string {
|
|
|
375
487
|
}
|
|
376
488
|
|
|
377
489
|
func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
|
|
378
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
490
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
|
|
379
491
|
}
|
|
380
492
|
|
|
381
493
|
func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
|
|
382
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
494
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
|
|
383
495
|
}
|
|
384
496
|
|
|
385
497
|
func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
|
|
@@ -398,7 +510,7 @@ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
|
|
|
398
510
|
|
|
399
511
|
// Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
|
|
400
512
|
func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
|
|
401
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
513
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
|
|
402
514
|
}
|
|
403
515
|
|
|
404
516
|
type NotificationActivitySettingAction_NotificationActivitySetting int32
|
|
@@ -437,11 +549,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
|
|
|
437
549
|
}
|
|
438
550
|
|
|
439
551
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
|
|
440
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
552
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
|
|
441
553
|
}
|
|
442
554
|
|
|
443
555
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
|
|
444
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
556
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
|
|
445
557
|
}
|
|
446
558
|
|
|
447
559
|
func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
|
|
@@ -460,22 +572,28 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
|
|
|
460
572
|
|
|
461
573
|
// Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
|
|
462
574
|
func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
|
|
463
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
575
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
|
|
464
576
|
}
|
|
465
577
|
|
|
466
578
|
type WaffleAccountLinkStateAction_AccountLinkState int32
|
|
467
579
|
|
|
468
580
|
const (
|
|
469
|
-
WaffleAccountLinkStateAction_ACTIVE
|
|
581
|
+
WaffleAccountLinkStateAction_ACTIVE WaffleAccountLinkStateAction_AccountLinkState = 0
|
|
582
|
+
WaffleAccountLinkStateAction_PAUSED WaffleAccountLinkStateAction_AccountLinkState = 1
|
|
583
|
+
WaffleAccountLinkStateAction_UNLINKED WaffleAccountLinkStateAction_AccountLinkState = 2
|
|
470
584
|
)
|
|
471
585
|
|
|
472
586
|
// Enum value maps for WaffleAccountLinkStateAction_AccountLinkState.
|
|
473
587
|
var (
|
|
474
588
|
WaffleAccountLinkStateAction_AccountLinkState_name = map[int32]string{
|
|
475
589
|
0: "ACTIVE",
|
|
590
|
+
1: "PAUSED",
|
|
591
|
+
2: "UNLINKED",
|
|
476
592
|
}
|
|
477
593
|
WaffleAccountLinkStateAction_AccountLinkState_value = map[string]int32{
|
|
478
|
-
"ACTIVE":
|
|
594
|
+
"ACTIVE": 0,
|
|
595
|
+
"PAUSED": 1,
|
|
596
|
+
"UNLINKED": 2,
|
|
479
597
|
}
|
|
480
598
|
)
|
|
481
599
|
|
|
@@ -490,11 +608,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
|
|
|
490
608
|
}
|
|
491
609
|
|
|
492
610
|
func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
|
|
493
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
611
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
494
612
|
}
|
|
495
613
|
|
|
496
614
|
func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
|
|
497
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
615
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
498
616
|
}
|
|
499
617
|
|
|
500
618
|
func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
|
|
@@ -513,7 +631,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
|
|
|
513
631
|
|
|
514
632
|
// Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
|
|
515
633
|
func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
|
|
516
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
634
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
517
635
|
}
|
|
518
636
|
|
|
519
637
|
type MerchantPaymentPartnerAction_Status int32
|
|
@@ -546,11 +664,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
|
|
|
546
664
|
}
|
|
547
665
|
|
|
548
666
|
func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
549
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
667
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
|
|
550
668
|
}
|
|
551
669
|
|
|
552
670
|
func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
|
|
553
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
671
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
|
|
554
672
|
}
|
|
555
673
|
|
|
556
674
|
func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
|
|
@@ -569,60 +687,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
|
|
|
569
687
|
|
|
570
688
|
// Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
|
|
571
689
|
func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
|
|
572
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
type GalaxyFlowAction_GalaxyFlowActionType int32
|
|
576
|
-
|
|
577
|
-
const (
|
|
578
|
-
GalaxyFlowAction_LAUNCH GalaxyFlowAction_GalaxyFlowActionType = 1
|
|
579
|
-
)
|
|
580
|
-
|
|
581
|
-
// Enum value maps for GalaxyFlowAction_GalaxyFlowActionType.
|
|
582
|
-
var (
|
|
583
|
-
GalaxyFlowAction_GalaxyFlowActionType_name = map[int32]string{
|
|
584
|
-
1: "LAUNCH",
|
|
585
|
-
}
|
|
586
|
-
GalaxyFlowAction_GalaxyFlowActionType_value = map[string]int32{
|
|
587
|
-
"LAUNCH": 1,
|
|
588
|
-
}
|
|
589
|
-
)
|
|
590
|
-
|
|
591
|
-
func (x GalaxyFlowAction_GalaxyFlowActionType) Enum() *GalaxyFlowAction_GalaxyFlowActionType {
|
|
592
|
-
p := new(GalaxyFlowAction_GalaxyFlowActionType)
|
|
593
|
-
*p = x
|
|
594
|
-
return p
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
func (x GalaxyFlowAction_GalaxyFlowActionType) String() string {
|
|
598
|
-
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
func (GalaxyFlowAction_GalaxyFlowActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
602
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
func (GalaxyFlowAction_GalaxyFlowActionType) Type() protoreflect.EnumType {
|
|
606
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
func (x GalaxyFlowAction_GalaxyFlowActionType) Number() protoreflect.EnumNumber {
|
|
610
|
-
return protoreflect.EnumNumber(x)
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
// Deprecated: Do not use.
|
|
614
|
-
func (x *GalaxyFlowAction_GalaxyFlowActionType) UnmarshalJSON(b []byte) error {
|
|
615
|
-
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
616
|
-
if err != nil {
|
|
617
|
-
return err
|
|
618
|
-
}
|
|
619
|
-
*x = GalaxyFlowAction_GalaxyFlowActionType(num)
|
|
620
|
-
return nil
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
// Deprecated: Use GalaxyFlowAction_GalaxyFlowActionType.Descriptor instead.
|
|
624
|
-
func (GalaxyFlowAction_GalaxyFlowActionType) EnumDescriptor() ([]byte, []int) {
|
|
625
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
690
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
|
|
626
691
|
}
|
|
627
692
|
|
|
628
693
|
type NoteEditAction_NoteType int32
|
|
@@ -655,11 +720,11 @@ func (x NoteEditAction_NoteType) String() string {
|
|
|
655
720
|
}
|
|
656
721
|
|
|
657
722
|
func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
|
|
658
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
723
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
|
|
659
724
|
}
|
|
660
725
|
|
|
661
726
|
func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
|
|
662
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
727
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
|
|
663
728
|
}
|
|
664
729
|
|
|
665
730
|
func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
|
|
@@ -678,15 +743,16 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
|
|
|
678
743
|
|
|
679
744
|
// Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
|
|
680
745
|
func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
|
|
681
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
746
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
|
|
682
747
|
}
|
|
683
748
|
|
|
684
749
|
type StatusPrivacyAction_StatusDistributionMode int32
|
|
685
750
|
|
|
686
751
|
const (
|
|
687
|
-
StatusPrivacyAction_ALLOW_LIST
|
|
688
|
-
StatusPrivacyAction_DENY_LIST
|
|
689
|
-
StatusPrivacyAction_CONTACTS
|
|
752
|
+
StatusPrivacyAction_ALLOW_LIST StatusPrivacyAction_StatusDistributionMode = 0
|
|
753
|
+
StatusPrivacyAction_DENY_LIST StatusPrivacyAction_StatusDistributionMode = 1
|
|
754
|
+
StatusPrivacyAction_CONTACTS StatusPrivacyAction_StatusDistributionMode = 2
|
|
755
|
+
StatusPrivacyAction_CLOSE_FRIENDS StatusPrivacyAction_StatusDistributionMode = 3
|
|
690
756
|
)
|
|
691
757
|
|
|
692
758
|
// Enum value maps for StatusPrivacyAction_StatusDistributionMode.
|
|
@@ -695,11 +761,13 @@ var (
|
|
|
695
761
|
0: "ALLOW_LIST",
|
|
696
762
|
1: "DENY_LIST",
|
|
697
763
|
2: "CONTACTS",
|
|
764
|
+
3: "CLOSE_FRIENDS",
|
|
698
765
|
}
|
|
699
766
|
StatusPrivacyAction_StatusDistributionMode_value = map[string]int32{
|
|
700
|
-
"ALLOW_LIST":
|
|
701
|
-
"DENY_LIST":
|
|
702
|
-
"CONTACTS":
|
|
767
|
+
"ALLOW_LIST": 0,
|
|
768
|
+
"DENY_LIST": 1,
|
|
769
|
+
"CONTACTS": 2,
|
|
770
|
+
"CLOSE_FRIENDS": 3,
|
|
703
771
|
}
|
|
704
772
|
)
|
|
705
773
|
|
|
@@ -714,11 +782,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
|
|
|
714
782
|
}
|
|
715
783
|
|
|
716
784
|
func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
717
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
785
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
|
|
718
786
|
}
|
|
719
787
|
|
|
720
788
|
func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
|
|
721
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
789
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
|
|
722
790
|
}
|
|
723
791
|
|
|
724
792
|
func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
|
|
@@ -737,7 +805,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
|
|
|
737
805
|
|
|
738
806
|
// Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
|
|
739
807
|
func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
|
|
740
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
808
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
|
|
741
809
|
}
|
|
742
810
|
|
|
743
811
|
type MarketingMessageAction_MarketingMessagePrototypeType int32
|
|
@@ -767,11 +835,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
|
|
|
767
835
|
}
|
|
768
836
|
|
|
769
837
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
|
|
770
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
838
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
|
|
771
839
|
}
|
|
772
840
|
|
|
773
841
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
|
|
774
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
842
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
|
|
775
843
|
}
|
|
776
844
|
|
|
777
845
|
func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
|
|
@@ -790,7 +858,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
|
|
|
790
858
|
|
|
791
859
|
// Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
|
|
792
860
|
func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
|
|
793
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
861
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
|
|
794
862
|
}
|
|
795
863
|
|
|
796
864
|
type UsernameChatStartModeAction_ChatStartMode int32
|
|
@@ -823,11 +891,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
|
|
|
823
891
|
}
|
|
824
892
|
|
|
825
893
|
func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
|
|
826
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
894
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[14].Descriptor()
|
|
827
895
|
}
|
|
828
896
|
|
|
829
897
|
func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
|
|
830
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
898
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[14]
|
|
831
899
|
}
|
|
832
900
|
|
|
833
901
|
func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
|
|
@@ -846,7 +914,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
|
|
|
846
914
|
|
|
847
915
|
// Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
|
|
848
916
|
func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
|
|
849
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
917
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12, 0}
|
|
850
918
|
}
|
|
851
919
|
|
|
852
920
|
type LabelEditAction_ListType int32
|
|
@@ -860,6 +928,8 @@ const (
|
|
|
860
928
|
LabelEditAction_CUSTOM LabelEditAction_ListType = 5
|
|
861
929
|
LabelEditAction_COMMUNITY LabelEditAction_ListType = 6
|
|
862
930
|
LabelEditAction_SERVER_ASSIGNED LabelEditAction_ListType = 7
|
|
931
|
+
LabelEditAction_DRAFTED LabelEditAction_ListType = 8
|
|
932
|
+
LabelEditAction_AI_HANDOFF LabelEditAction_ListType = 9
|
|
863
933
|
)
|
|
864
934
|
|
|
865
935
|
// Enum value maps for LabelEditAction_ListType.
|
|
@@ -873,6 +943,8 @@ var (
|
|
|
873
943
|
5: "CUSTOM",
|
|
874
944
|
6: "COMMUNITY",
|
|
875
945
|
7: "SERVER_ASSIGNED",
|
|
946
|
+
8: "DRAFTED",
|
|
947
|
+
9: "AI_HANDOFF",
|
|
876
948
|
}
|
|
877
949
|
LabelEditAction_ListType_value = map[string]int32{
|
|
878
950
|
"NONE": 0,
|
|
@@ -883,6 +955,8 @@ var (
|
|
|
883
955
|
"CUSTOM": 5,
|
|
884
956
|
"COMMUNITY": 6,
|
|
885
957
|
"SERVER_ASSIGNED": 7,
|
|
958
|
+
"DRAFTED": 8,
|
|
959
|
+
"AI_HANDOFF": 9,
|
|
886
960
|
}
|
|
887
961
|
)
|
|
888
962
|
|
|
@@ -897,11 +971,11 @@ func (x LabelEditAction_ListType) String() string {
|
|
|
897
971
|
}
|
|
898
972
|
|
|
899
973
|
func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
|
|
900
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
974
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[15].Descriptor()
|
|
901
975
|
}
|
|
902
976
|
|
|
903
977
|
func (LabelEditAction_ListType) Type() protoreflect.EnumType {
|
|
904
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
978
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[15]
|
|
905
979
|
}
|
|
906
980
|
|
|
907
981
|
func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
|
|
@@ -920,7 +994,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
|
|
|
920
994
|
|
|
921
995
|
// Deprecated: Use LabelEditAction_ListType.Descriptor instead.
|
|
922
996
|
func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
|
|
923
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
997
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13, 0}
|
|
924
998
|
}
|
|
925
999
|
|
|
926
1000
|
type PatchDebugData_Platform int32
|
|
@@ -983,11 +1057,11 @@ func (x PatchDebugData_Platform) String() string {
|
|
|
983
1057
|
}
|
|
984
1058
|
|
|
985
1059
|
func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
|
|
986
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
1060
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[16].Descriptor()
|
|
987
1061
|
}
|
|
988
1062
|
|
|
989
1063
|
func (PatchDebugData_Platform) Type() protoreflect.EnumType {
|
|
990
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
1064
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[16]
|
|
991
1065
|
}
|
|
992
1066
|
|
|
993
1067
|
func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
|
|
@@ -1006,7 +1080,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
|
|
|
1006
1080
|
|
|
1007
1081
|
// Deprecated: Use PatchDebugData_Platform.Descriptor instead.
|
|
1008
1082
|
func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
|
|
1009
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1083
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14, 0}
|
|
1010
1084
|
}
|
|
1011
1085
|
|
|
1012
1086
|
type CallLogRecord struct {
|
|
@@ -1165,6 +1239,94 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
|
|
|
1165
1239
|
return CallLogRecord_REGULAR
|
|
1166
1240
|
}
|
|
1167
1241
|
|
|
1242
|
+
type InteractiveMessageAction struct {
|
|
1243
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1244
|
+
Type *InteractiveMessageAction_InteractiveMessageActionMode `protobuf:"varint,1,req,name=type,enum=WASyncAction.InteractiveMessageAction_InteractiveMessageActionMode" json:"type,omitempty"`
|
|
1245
|
+
unknownFields protoimpl.UnknownFields
|
|
1246
|
+
sizeCache protoimpl.SizeCache
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
func (x *InteractiveMessageAction) Reset() {
|
|
1250
|
+
*x = InteractiveMessageAction{}
|
|
1251
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1252
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1253
|
+
ms.StoreMessageInfo(mi)
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
func (x *InteractiveMessageAction) String() string {
|
|
1257
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
func (*InteractiveMessageAction) ProtoMessage() {}
|
|
1261
|
+
|
|
1262
|
+
func (x *InteractiveMessageAction) ProtoReflect() protoreflect.Message {
|
|
1263
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1264
|
+
if x != nil {
|
|
1265
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1266
|
+
if ms.LoadMessageInfo() == nil {
|
|
1267
|
+
ms.StoreMessageInfo(mi)
|
|
1268
|
+
}
|
|
1269
|
+
return ms
|
|
1270
|
+
}
|
|
1271
|
+
return mi.MessageOf(x)
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
// Deprecated: Use InteractiveMessageAction.ProtoReflect.Descriptor instead.
|
|
1275
|
+
func (*InteractiveMessageAction) Descriptor() ([]byte, []int) {
|
|
1276
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
func (x *InteractiveMessageAction) GetType() InteractiveMessageAction_InteractiveMessageActionMode {
|
|
1280
|
+
if x != nil && x.Type != nil {
|
|
1281
|
+
return *x.Type
|
|
1282
|
+
}
|
|
1283
|
+
return InteractiveMessageAction_DISABLE_CTA
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
type PrivateProcessingSettingAction struct {
|
|
1287
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1288
|
+
PrivateProcessingStatus *PrivateProcessingSettingAction_PrivateProcessingStatus `protobuf:"varint,1,opt,name=privateProcessingStatus,enum=WASyncAction.PrivateProcessingSettingAction_PrivateProcessingStatus" json:"privateProcessingStatus,omitempty"`
|
|
1289
|
+
unknownFields protoimpl.UnknownFields
|
|
1290
|
+
sizeCache protoimpl.SizeCache
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
func (x *PrivateProcessingSettingAction) Reset() {
|
|
1294
|
+
*x = PrivateProcessingSettingAction{}
|
|
1295
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1296
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1297
|
+
ms.StoreMessageInfo(mi)
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
func (x *PrivateProcessingSettingAction) String() string {
|
|
1301
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
func (*PrivateProcessingSettingAction) ProtoMessage() {}
|
|
1305
|
+
|
|
1306
|
+
func (x *PrivateProcessingSettingAction) ProtoReflect() protoreflect.Message {
|
|
1307
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1308
|
+
if x != nil {
|
|
1309
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1310
|
+
if ms.LoadMessageInfo() == nil {
|
|
1311
|
+
ms.StoreMessageInfo(mi)
|
|
1312
|
+
}
|
|
1313
|
+
return ms
|
|
1314
|
+
}
|
|
1315
|
+
return mi.MessageOf(x)
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
// Deprecated: Use PrivateProcessingSettingAction.ProtoReflect.Descriptor instead.
|
|
1319
|
+
func (*PrivateProcessingSettingAction) Descriptor() ([]byte, []int) {
|
|
1320
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
func (x *PrivateProcessingSettingAction) GetPrivateProcessingStatus() PrivateProcessingSettingAction_PrivateProcessingStatus {
|
|
1324
|
+
if x != nil && x.PrivateProcessingStatus != nil {
|
|
1325
|
+
return *x.PrivateProcessingStatus
|
|
1326
|
+
}
|
|
1327
|
+
return PrivateProcessingSettingAction_UNDEFINED
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1168
1330
|
type AvatarUpdatedAction struct {
|
|
1169
1331
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1170
1332
|
EventType *AvatarUpdatedAction_AvatarEventType `protobuf:"varint,1,opt,name=eventType,enum=WASyncAction.AvatarUpdatedAction_AvatarEventType" json:"eventType,omitempty"`
|
|
@@ -1175,7 +1337,7 @@ type AvatarUpdatedAction struct {
|
|
|
1175
1337
|
|
|
1176
1338
|
func (x *AvatarUpdatedAction) Reset() {
|
|
1177
1339
|
*x = AvatarUpdatedAction{}
|
|
1178
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1340
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1179
1341
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1180
1342
|
ms.StoreMessageInfo(mi)
|
|
1181
1343
|
}
|
|
@@ -1187,7 +1349,7 @@ func (x *AvatarUpdatedAction) String() string {
|
|
|
1187
1349
|
func (*AvatarUpdatedAction) ProtoMessage() {}
|
|
1188
1350
|
|
|
1189
1351
|
func (x *AvatarUpdatedAction) ProtoReflect() protoreflect.Message {
|
|
1190
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1352
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1191
1353
|
if x != nil {
|
|
1192
1354
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1193
1355
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1200,7 +1362,7 @@ func (x *AvatarUpdatedAction) ProtoReflect() protoreflect.Message {
|
|
|
1200
1362
|
|
|
1201
1363
|
// Deprecated: Use AvatarUpdatedAction.ProtoReflect.Descriptor instead.
|
|
1202
1364
|
func (*AvatarUpdatedAction) Descriptor() ([]byte, []int) {
|
|
1203
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1365
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
|
|
1204
1366
|
}
|
|
1205
1367
|
|
|
1206
1368
|
func (x *AvatarUpdatedAction) GetEventType() AvatarUpdatedAction_AvatarEventType {
|
|
@@ -1226,7 +1388,7 @@ type MaibaAIFeaturesControlAction struct {
|
|
|
1226
1388
|
|
|
1227
1389
|
func (x *MaibaAIFeaturesControlAction) Reset() {
|
|
1228
1390
|
*x = MaibaAIFeaturesControlAction{}
|
|
1229
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1391
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1230
1392
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1231
1393
|
ms.StoreMessageInfo(mi)
|
|
1232
1394
|
}
|
|
@@ -1238,7 +1400,7 @@ func (x *MaibaAIFeaturesControlAction) String() string {
|
|
|
1238
1400
|
func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
|
|
1239
1401
|
|
|
1240
1402
|
func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
1241
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1403
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1242
1404
|
if x != nil {
|
|
1243
1405
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1244
1406
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1251,7 +1413,7 @@ func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
|
1251
1413
|
|
|
1252
1414
|
// Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
|
|
1253
1415
|
func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
|
|
1254
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1416
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
|
|
1255
1417
|
}
|
|
1256
1418
|
|
|
1257
1419
|
func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
@@ -1271,7 +1433,7 @@ type PaymentTosAction struct {
|
|
|
1271
1433
|
|
|
1272
1434
|
func (x *PaymentTosAction) Reset() {
|
|
1273
1435
|
*x = PaymentTosAction{}
|
|
1274
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1436
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1275
1437
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1276
1438
|
ms.StoreMessageInfo(mi)
|
|
1277
1439
|
}
|
|
@@ -1283,7 +1445,7 @@ func (x *PaymentTosAction) String() string {
|
|
|
1283
1445
|
func (*PaymentTosAction) ProtoMessage() {}
|
|
1284
1446
|
|
|
1285
1447
|
func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
1286
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1448
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1287
1449
|
if x != nil {
|
|
1288
1450
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1289
1451
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1296,7 +1458,7 @@ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
|
1296
1458
|
|
|
1297
1459
|
// Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
|
|
1298
1460
|
func (*PaymentTosAction) Descriptor() ([]byte, []int) {
|
|
1299
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1461
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
|
|
1300
1462
|
}
|
|
1301
1463
|
|
|
1302
1464
|
func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
|
|
@@ -1322,7 +1484,7 @@ type NotificationActivitySettingAction struct {
|
|
|
1322
1484
|
|
|
1323
1485
|
func (x *NotificationActivitySettingAction) Reset() {
|
|
1324
1486
|
*x = NotificationActivitySettingAction{}
|
|
1325
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1487
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1326
1488
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1327
1489
|
ms.StoreMessageInfo(mi)
|
|
1328
1490
|
}
|
|
@@ -1334,7 +1496,7 @@ func (x *NotificationActivitySettingAction) String() string {
|
|
|
1334
1496
|
func (*NotificationActivitySettingAction) ProtoMessage() {}
|
|
1335
1497
|
|
|
1336
1498
|
func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
|
|
1337
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1499
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1338
1500
|
if x != nil {
|
|
1339
1501
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1340
1502
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1347,7 +1509,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
|
|
|
1347
1509
|
|
|
1348
1510
|
// Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
|
|
1349
1511
|
func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
|
|
1350
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1512
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
|
|
1351
1513
|
}
|
|
1352
1514
|
|
|
1353
1515
|
func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
|
|
@@ -1366,7 +1528,7 @@ type WaffleAccountLinkStateAction struct {
|
|
|
1366
1528
|
|
|
1367
1529
|
func (x *WaffleAccountLinkStateAction) Reset() {
|
|
1368
1530
|
*x = WaffleAccountLinkStateAction{}
|
|
1369
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1531
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1370
1532
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1371
1533
|
ms.StoreMessageInfo(mi)
|
|
1372
1534
|
}
|
|
@@ -1378,7 +1540,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
|
|
|
1378
1540
|
func (*WaffleAccountLinkStateAction) ProtoMessage() {}
|
|
1379
1541
|
|
|
1380
1542
|
func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
1381
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1543
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1382
1544
|
if x != nil {
|
|
1383
1545
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1384
1546
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1391,7 +1553,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
|
1391
1553
|
|
|
1392
1554
|
// Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
|
|
1393
1555
|
func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
|
|
1394
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1556
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1395
1557
|
}
|
|
1396
1558
|
|
|
1397
1559
|
func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
|
|
@@ -1413,7 +1575,7 @@ type MerchantPaymentPartnerAction struct {
|
|
|
1413
1575
|
|
|
1414
1576
|
func (x *MerchantPaymentPartnerAction) Reset() {
|
|
1415
1577
|
*x = MerchantPaymentPartnerAction{}
|
|
1416
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1578
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1417
1579
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1418
1580
|
ms.StoreMessageInfo(mi)
|
|
1419
1581
|
}
|
|
@@ -1425,7 +1587,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
|
|
|
1425
1587
|
func (*MerchantPaymentPartnerAction) ProtoMessage() {}
|
|
1426
1588
|
|
|
1427
1589
|
func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
1428
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1590
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1429
1591
|
if x != nil {
|
|
1430
1592
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1431
1593
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1438,7 +1600,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
|
1438
1600
|
|
|
1439
1601
|
// Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
|
|
1440
1602
|
func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
|
|
1441
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1603
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
|
|
1442
1604
|
}
|
|
1443
1605
|
|
|
1444
1606
|
func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
|
|
@@ -1469,50 +1631,6 @@ func (x *MerchantPaymentPartnerAction) GetCredentialID() string {
|
|
|
1469
1631
|
return ""
|
|
1470
1632
|
}
|
|
1471
1633
|
|
|
1472
|
-
type GalaxyFlowAction struct {
|
|
1473
|
-
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1474
|
-
Type *GalaxyFlowAction_GalaxyFlowActionType `protobuf:"varint,1,req,name=type,enum=WASyncAction.GalaxyFlowAction_GalaxyFlowActionType" json:"type,omitempty"`
|
|
1475
|
-
unknownFields protoimpl.UnknownFields
|
|
1476
|
-
sizeCache protoimpl.SizeCache
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
func (x *GalaxyFlowAction) Reset() {
|
|
1480
|
-
*x = GalaxyFlowAction{}
|
|
1481
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1482
|
-
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1483
|
-
ms.StoreMessageInfo(mi)
|
|
1484
|
-
}
|
|
1485
|
-
|
|
1486
|
-
func (x *GalaxyFlowAction) String() string {
|
|
1487
|
-
return protoimpl.X.MessageStringOf(x)
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
func (*GalaxyFlowAction) ProtoMessage() {}
|
|
1491
|
-
|
|
1492
|
-
func (x *GalaxyFlowAction) ProtoReflect() protoreflect.Message {
|
|
1493
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1494
|
-
if x != nil {
|
|
1495
|
-
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1496
|
-
if ms.LoadMessageInfo() == nil {
|
|
1497
|
-
ms.StoreMessageInfo(mi)
|
|
1498
|
-
}
|
|
1499
|
-
return ms
|
|
1500
|
-
}
|
|
1501
|
-
return mi.MessageOf(x)
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
// Deprecated: Use GalaxyFlowAction.ProtoReflect.Descriptor instead.
|
|
1505
|
-
func (*GalaxyFlowAction) Descriptor() ([]byte, []int) {
|
|
1506
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1507
|
-
}
|
|
1508
|
-
|
|
1509
|
-
func (x *GalaxyFlowAction) GetType() GalaxyFlowAction_GalaxyFlowActionType {
|
|
1510
|
-
if x != nil && x.Type != nil {
|
|
1511
|
-
return *x.Type
|
|
1512
|
-
}
|
|
1513
|
-
return GalaxyFlowAction_LAUNCH
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
1634
|
type NoteEditAction struct {
|
|
1517
1635
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1518
1636
|
Type *NoteEditAction_NoteType `protobuf:"varint,1,opt,name=type,enum=WASyncAction.NoteEditAction_NoteType" json:"type,omitempty"`
|
|
@@ -1526,7 +1644,7 @@ type NoteEditAction struct {
|
|
|
1526
1644
|
|
|
1527
1645
|
func (x *NoteEditAction) Reset() {
|
|
1528
1646
|
*x = NoteEditAction{}
|
|
1529
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1647
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1530
1648
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1531
1649
|
ms.StoreMessageInfo(mi)
|
|
1532
1650
|
}
|
|
@@ -1538,7 +1656,7 @@ func (x *NoteEditAction) String() string {
|
|
|
1538
1656
|
func (*NoteEditAction) ProtoMessage() {}
|
|
1539
1657
|
|
|
1540
1658
|
func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
1541
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1659
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1542
1660
|
if x != nil {
|
|
1543
1661
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1544
1662
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1551,7 +1669,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1551
1669
|
|
|
1552
1670
|
// Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
|
|
1553
1671
|
func (*NoteEditAction) Descriptor() ([]byte, []int) {
|
|
1554
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1672
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
|
|
1555
1673
|
}
|
|
1556
1674
|
|
|
1557
1675
|
func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
|
|
@@ -1599,7 +1717,7 @@ type StatusPrivacyAction struct {
|
|
|
1599
1717
|
|
|
1600
1718
|
func (x *StatusPrivacyAction) Reset() {
|
|
1601
1719
|
*x = StatusPrivacyAction{}
|
|
1602
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1720
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1603
1721
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1604
1722
|
ms.StoreMessageInfo(mi)
|
|
1605
1723
|
}
|
|
@@ -1611,7 +1729,7 @@ func (x *StatusPrivacyAction) String() string {
|
|
|
1611
1729
|
func (*StatusPrivacyAction) ProtoMessage() {}
|
|
1612
1730
|
|
|
1613
1731
|
func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
1614
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1732
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1615
1733
|
if x != nil {
|
|
1616
1734
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1617
1735
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1624,7 +1742,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
|
1624
1742
|
|
|
1625
1743
|
// Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
|
|
1626
1744
|
func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
|
|
1627
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1745
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
|
|
1628
1746
|
}
|
|
1629
1747
|
|
|
1630
1748
|
func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
|
|
@@ -1656,7 +1774,7 @@ type MarketingMessageAction struct {
|
|
|
1656
1774
|
|
|
1657
1775
|
func (x *MarketingMessageAction) Reset() {
|
|
1658
1776
|
*x = MarketingMessageAction{}
|
|
1659
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1777
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1660
1778
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1661
1779
|
ms.StoreMessageInfo(mi)
|
|
1662
1780
|
}
|
|
@@ -1668,7 +1786,7 @@ func (x *MarketingMessageAction) String() string {
|
|
|
1668
1786
|
func (*MarketingMessageAction) ProtoMessage() {}
|
|
1669
1787
|
|
|
1670
1788
|
func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
1671
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1789
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1672
1790
|
if x != nil {
|
|
1673
1791
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1674
1792
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1681,7 +1799,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
|
1681
1799
|
|
|
1682
1800
|
// Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
|
|
1683
1801
|
func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
|
|
1684
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1802
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
|
|
1685
1803
|
}
|
|
1686
1804
|
|
|
1687
1805
|
func (x *MarketingMessageAction) GetName() string {
|
|
@@ -1742,7 +1860,7 @@ type UsernameChatStartModeAction struct {
|
|
|
1742
1860
|
|
|
1743
1861
|
func (x *UsernameChatStartModeAction) Reset() {
|
|
1744
1862
|
*x = UsernameChatStartModeAction{}
|
|
1745
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1863
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1746
1864
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1747
1865
|
ms.StoreMessageInfo(mi)
|
|
1748
1866
|
}
|
|
@@ -1754,7 +1872,7 @@ func (x *UsernameChatStartModeAction) String() string {
|
|
|
1754
1872
|
func (*UsernameChatStartModeAction) ProtoMessage() {}
|
|
1755
1873
|
|
|
1756
1874
|
func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
1757
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1875
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1758
1876
|
if x != nil {
|
|
1759
1877
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1760
1878
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1767,7 +1885,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
|
1767
1885
|
|
|
1768
1886
|
// Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
|
|
1769
1887
|
func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
|
|
1770
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1888
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
|
|
1771
1889
|
}
|
|
1772
1890
|
|
|
1773
1891
|
func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
|
|
@@ -1787,13 +1905,14 @@ type LabelEditAction struct {
|
|
|
1787
1905
|
IsActive *bool `protobuf:"varint,6,opt,name=isActive" json:"isActive,omitempty"`
|
|
1788
1906
|
Type *LabelEditAction_ListType `protobuf:"varint,7,opt,name=type,enum=WASyncAction.LabelEditAction_ListType" json:"type,omitempty"`
|
|
1789
1907
|
IsImmutable *bool `protobuf:"varint,8,opt,name=isImmutable" json:"isImmutable,omitempty"`
|
|
1908
|
+
MuteEndTimeMS *int64 `protobuf:"varint,9,opt,name=muteEndTimeMS" json:"muteEndTimeMS,omitempty"`
|
|
1790
1909
|
unknownFields protoimpl.UnknownFields
|
|
1791
1910
|
sizeCache protoimpl.SizeCache
|
|
1792
1911
|
}
|
|
1793
1912
|
|
|
1794
1913
|
func (x *LabelEditAction) Reset() {
|
|
1795
1914
|
*x = LabelEditAction{}
|
|
1796
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1915
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1797
1916
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1798
1917
|
ms.StoreMessageInfo(mi)
|
|
1799
1918
|
}
|
|
@@ -1805,7 +1924,7 @@ func (x *LabelEditAction) String() string {
|
|
|
1805
1924
|
func (*LabelEditAction) ProtoMessage() {}
|
|
1806
1925
|
|
|
1807
1926
|
func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
1808
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1927
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1809
1928
|
if x != nil {
|
|
1810
1929
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1811
1930
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1818,7 +1937,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1818
1937
|
|
|
1819
1938
|
// Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
|
|
1820
1939
|
func (*LabelEditAction) Descriptor() ([]byte, []int) {
|
|
1821
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1940
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
|
|
1822
1941
|
}
|
|
1823
1942
|
|
|
1824
1943
|
func (x *LabelEditAction) GetName() string {
|
|
@@ -1877,6 +1996,13 @@ func (x *LabelEditAction) GetIsImmutable() bool {
|
|
|
1877
1996
|
return false
|
|
1878
1997
|
}
|
|
1879
1998
|
|
|
1999
|
+
func (x *LabelEditAction) GetMuteEndTimeMS() int64 {
|
|
2000
|
+
if x != nil && x.MuteEndTimeMS != nil {
|
|
2001
|
+
return *x.MuteEndTimeMS
|
|
2002
|
+
}
|
|
2003
|
+
return 0
|
|
2004
|
+
}
|
|
2005
|
+
|
|
1880
2006
|
type PatchDebugData struct {
|
|
1881
2007
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1882
2008
|
CurrentLthash []byte `protobuf:"bytes,1,opt,name=currentLthash" json:"currentLthash,omitempty"`
|
|
@@ -1896,7 +2022,7 @@ type PatchDebugData struct {
|
|
|
1896
2022
|
|
|
1897
2023
|
func (x *PatchDebugData) Reset() {
|
|
1898
2024
|
*x = PatchDebugData{}
|
|
1899
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2025
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
1900
2026
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1901
2027
|
ms.StoreMessageInfo(mi)
|
|
1902
2028
|
}
|
|
@@ -1908,7 +2034,7 @@ func (x *PatchDebugData) String() string {
|
|
|
1908
2034
|
func (*PatchDebugData) ProtoMessage() {}
|
|
1909
2035
|
|
|
1910
2036
|
func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
1911
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2037
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
1912
2038
|
if x != nil {
|
|
1913
2039
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1914
2040
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1921,7 +2047,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
|
1921
2047
|
|
|
1922
2048
|
// Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
|
|
1923
2049
|
func (*PatchDebugData) Descriptor() ([]byte, []int) {
|
|
1924
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2050
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
|
|
1925
2051
|
}
|
|
1926
2052
|
|
|
1927
2053
|
func (x *PatchDebugData) GetCurrentLthash() []byte {
|
|
@@ -2011,7 +2137,7 @@ type RecentEmojiWeight struct {
|
|
|
2011
2137
|
|
|
2012
2138
|
func (x *RecentEmojiWeight) Reset() {
|
|
2013
2139
|
*x = RecentEmojiWeight{}
|
|
2014
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2140
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2015
2141
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2016
2142
|
ms.StoreMessageInfo(mi)
|
|
2017
2143
|
}
|
|
@@ -2023,7 +2149,7 @@ func (x *RecentEmojiWeight) String() string {
|
|
|
2023
2149
|
func (*RecentEmojiWeight) ProtoMessage() {}
|
|
2024
2150
|
|
|
2025
2151
|
func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
2026
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2152
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2027
2153
|
if x != nil {
|
|
2028
2154
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2029
2155
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2036,7 +2162,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
|
2036
2162
|
|
|
2037
2163
|
// Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
|
|
2038
2164
|
func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
|
|
2039
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2165
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
|
|
2040
2166
|
}
|
|
2041
2167
|
|
|
2042
2168
|
func (x *RecentEmojiWeight) GetEmoji() string {
|
|
@@ -2060,7 +2186,6 @@ type SyncActionValue struct {
|
|
|
2060
2186
|
ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
|
|
2061
2187
|
MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
|
|
2062
2188
|
PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
|
|
2063
|
-
SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
|
|
2064
2189
|
PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
|
|
2065
2190
|
QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
|
|
2066
2191
|
RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
|
|
@@ -2092,6 +2217,7 @@ type SyncActionValue struct {
|
|
|
2092
2217
|
ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
|
|
2093
2218
|
PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
|
|
2094
2219
|
CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
|
|
2220
|
+
UgcBot *UGCBot `protobuf:"bytes,43,opt,name=ugcBot" json:"ugcBot,omitempty"`
|
|
2095
2221
|
StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
|
|
2096
2222
|
BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
|
|
2097
2223
|
DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
|
|
@@ -2120,14 +2246,17 @@ type SyncActionValue struct {
|
|
|
2120
2246
|
MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
|
|
2121
2247
|
StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
|
|
2122
2248
|
AvatarUpdatedAction *AvatarUpdatedAction `protobuf:"bytes,72,opt,name=avatarUpdatedAction" json:"avatarUpdatedAction,omitempty"`
|
|
2123
|
-
|
|
2249
|
+
PrivateProcessingSettingAction *PrivateProcessingSettingAction `protobuf:"bytes,74,opt,name=privateProcessingSettingAction" json:"privateProcessingSettingAction,omitempty"`
|
|
2250
|
+
NewsletterSavedInterestsAction *NewsletterSavedInterestsAction `protobuf:"bytes,75,opt,name=newsletterSavedInterestsAction" json:"newsletterSavedInterestsAction,omitempty"`
|
|
2251
|
+
AiThreadRenameAction *AiThreadRenameAction `protobuf:"bytes,76,opt,name=aiThreadRenameAction" json:"aiThreadRenameAction,omitempty"`
|
|
2252
|
+
InteractiveMessageAction *InteractiveMessageAction `protobuf:"bytes,77,opt,name=interactiveMessageAction" json:"interactiveMessageAction,omitempty"`
|
|
2124
2253
|
unknownFields protoimpl.UnknownFields
|
|
2125
2254
|
sizeCache protoimpl.SizeCache
|
|
2126
2255
|
}
|
|
2127
2256
|
|
|
2128
2257
|
func (x *SyncActionValue) Reset() {
|
|
2129
2258
|
*x = SyncActionValue{}
|
|
2130
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2259
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2131
2260
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2132
2261
|
ms.StoreMessageInfo(mi)
|
|
2133
2262
|
}
|
|
@@ -2139,7 +2268,7 @@ func (x *SyncActionValue) String() string {
|
|
|
2139
2268
|
func (*SyncActionValue) ProtoMessage() {}
|
|
2140
2269
|
|
|
2141
2270
|
func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
2142
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2271
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2143
2272
|
if x != nil {
|
|
2144
2273
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2145
2274
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2152,7 +2281,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
|
2152
2281
|
|
|
2153
2282
|
// Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
|
|
2154
2283
|
func (*SyncActionValue) Descriptor() ([]byte, []int) {
|
|
2155
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2284
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
|
|
2156
2285
|
}
|
|
2157
2286
|
|
|
2158
2287
|
func (x *SyncActionValue) GetTimestamp() int64 {
|
|
@@ -2190,13 +2319,6 @@ func (x *SyncActionValue) GetPinAction() *PinAction {
|
|
|
2190
2319
|
return nil
|
|
2191
2320
|
}
|
|
2192
2321
|
|
|
2193
|
-
func (x *SyncActionValue) GetSecurityNotificationSetting() *SecurityNotificationSetting {
|
|
2194
|
-
if x != nil {
|
|
2195
|
-
return x.SecurityNotificationSetting
|
|
2196
|
-
}
|
|
2197
|
-
return nil
|
|
2198
|
-
}
|
|
2199
|
-
|
|
2200
2322
|
func (x *SyncActionValue) GetPushNameSetting() *PushNameSetting {
|
|
2201
2323
|
if x != nil {
|
|
2202
2324
|
return x.PushNameSetting
|
|
@@ -2414,6 +2536,13 @@ func (x *SyncActionValue) GetCallLogAction() *CallLogAction {
|
|
|
2414
2536
|
return nil
|
|
2415
2537
|
}
|
|
2416
2538
|
|
|
2539
|
+
func (x *SyncActionValue) GetUgcBot() *UGCBot {
|
|
2540
|
+
if x != nil {
|
|
2541
|
+
return x.UgcBot
|
|
2542
|
+
}
|
|
2543
|
+
return nil
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2417
2546
|
func (x *SyncActionValue) GetStatusPrivacy() *StatusPrivacyAction {
|
|
2418
2547
|
if x != nil {
|
|
2419
2548
|
return x.StatusPrivacy
|
|
@@ -2610,13 +2739,86 @@ func (x *SyncActionValue) GetAvatarUpdatedAction() *AvatarUpdatedAction {
|
|
|
2610
2739
|
return nil
|
|
2611
2740
|
}
|
|
2612
2741
|
|
|
2613
|
-
func (x *SyncActionValue)
|
|
2742
|
+
func (x *SyncActionValue) GetPrivateProcessingSettingAction() *PrivateProcessingSettingAction {
|
|
2743
|
+
if x != nil {
|
|
2744
|
+
return x.PrivateProcessingSettingAction
|
|
2745
|
+
}
|
|
2746
|
+
return nil
|
|
2747
|
+
}
|
|
2748
|
+
|
|
2749
|
+
func (x *SyncActionValue) GetNewsletterSavedInterestsAction() *NewsletterSavedInterestsAction {
|
|
2750
|
+
if x != nil {
|
|
2751
|
+
return x.NewsletterSavedInterestsAction
|
|
2752
|
+
}
|
|
2753
|
+
return nil
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
func (x *SyncActionValue) GetAiThreadRenameAction() *AiThreadRenameAction {
|
|
2757
|
+
if x != nil {
|
|
2758
|
+
return x.AiThreadRenameAction
|
|
2759
|
+
}
|
|
2760
|
+
return nil
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
func (x *SyncActionValue) GetInteractiveMessageAction() *InteractiveMessageAction {
|
|
2614
2764
|
if x != nil {
|
|
2615
|
-
return x.
|
|
2765
|
+
return x.InteractiveMessageAction
|
|
2616
2766
|
}
|
|
2617
2767
|
return nil
|
|
2618
2768
|
}
|
|
2619
2769
|
|
|
2770
|
+
type AiThreadRenameAction struct {
|
|
2771
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2772
|
+
NewTitle *string `protobuf:"bytes,1,opt,name=newTitle" json:"newTitle,omitempty"`
|
|
2773
|
+
IsFromServer *bool `protobuf:"varint,2,opt,name=isFromServer" json:"isFromServer,omitempty"`
|
|
2774
|
+
unknownFields protoimpl.UnknownFields
|
|
2775
|
+
sizeCache protoimpl.SizeCache
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
func (x *AiThreadRenameAction) Reset() {
|
|
2779
|
+
*x = AiThreadRenameAction{}
|
|
2780
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2781
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2782
|
+
ms.StoreMessageInfo(mi)
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
func (x *AiThreadRenameAction) String() string {
|
|
2786
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
func (*AiThreadRenameAction) ProtoMessage() {}
|
|
2790
|
+
|
|
2791
|
+
func (x *AiThreadRenameAction) ProtoReflect() protoreflect.Message {
|
|
2792
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2793
|
+
if x != nil {
|
|
2794
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2795
|
+
if ms.LoadMessageInfo() == nil {
|
|
2796
|
+
ms.StoreMessageInfo(mi)
|
|
2797
|
+
}
|
|
2798
|
+
return ms
|
|
2799
|
+
}
|
|
2800
|
+
return mi.MessageOf(x)
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
// Deprecated: Use AiThreadRenameAction.ProtoReflect.Descriptor instead.
|
|
2804
|
+
func (*AiThreadRenameAction) Descriptor() ([]byte, []int) {
|
|
2805
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
func (x *AiThreadRenameAction) GetNewTitle() string {
|
|
2809
|
+
if x != nil && x.NewTitle != nil {
|
|
2810
|
+
return *x.NewTitle
|
|
2811
|
+
}
|
|
2812
|
+
return ""
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
func (x *AiThreadRenameAction) GetIsFromServer() bool {
|
|
2816
|
+
if x != nil && x.IsFromServer != nil {
|
|
2817
|
+
return *x.IsFromServer
|
|
2818
|
+
}
|
|
2819
|
+
return false
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2620
2822
|
type StatusPostOptInNotificationPreferencesAction struct {
|
|
2621
2823
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2622
2824
|
Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
|
|
@@ -2626,7 +2828,7 @@ type StatusPostOptInNotificationPreferencesAction struct {
|
|
|
2626
2828
|
|
|
2627
2829
|
func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
|
|
2628
2830
|
*x = StatusPostOptInNotificationPreferencesAction{}
|
|
2629
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2831
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2630
2832
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2631
2833
|
ms.StoreMessageInfo(mi)
|
|
2632
2834
|
}
|
|
@@ -2638,7 +2840,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) String() string {
|
|
|
2638
2840
|
func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
|
|
2639
2841
|
|
|
2640
2842
|
func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
|
|
2641
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2843
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2642
2844
|
if x != nil {
|
|
2643
2845
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2644
2846
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2651,7 +2853,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protorefle
|
|
|
2651
2853
|
|
|
2652
2854
|
// Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
|
|
2653
2855
|
func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
|
|
2654
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2856
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
|
|
2655
2857
|
}
|
|
2656
2858
|
|
|
2657
2859
|
func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
|
|
@@ -2671,7 +2873,7 @@ type BroadcastListParticipant struct {
|
|
|
2671
2873
|
|
|
2672
2874
|
func (x *BroadcastListParticipant) Reset() {
|
|
2673
2875
|
*x = BroadcastListParticipant{}
|
|
2674
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2876
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2675
2877
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2676
2878
|
ms.StoreMessageInfo(mi)
|
|
2677
2879
|
}
|
|
@@ -2683,7 +2885,7 @@ func (x *BroadcastListParticipant) String() string {
|
|
|
2683
2885
|
func (*BroadcastListParticipant) ProtoMessage() {}
|
|
2684
2886
|
|
|
2685
2887
|
func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
2686
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2888
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2687
2889
|
if x != nil {
|
|
2688
2890
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2689
2891
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2696,7 +2898,7 @@ func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
|
2696
2898
|
|
|
2697
2899
|
// Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
|
|
2698
2900
|
func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
|
|
2699
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2901
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
|
|
2700
2902
|
}
|
|
2701
2903
|
|
|
2702
2904
|
func (x *BroadcastListParticipant) GetLidJID() string {
|
|
@@ -2724,7 +2926,7 @@ type BusinessBroadcastListAction struct {
|
|
|
2724
2926
|
|
|
2725
2927
|
func (x *BusinessBroadcastListAction) Reset() {
|
|
2726
2928
|
*x = BusinessBroadcastListAction{}
|
|
2727
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2929
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2728
2930
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2729
2931
|
ms.StoreMessageInfo(mi)
|
|
2730
2932
|
}
|
|
@@ -2736,7 +2938,7 @@ func (x *BusinessBroadcastListAction) String() string {
|
|
|
2736
2938
|
func (*BusinessBroadcastListAction) ProtoMessage() {}
|
|
2737
2939
|
|
|
2738
2940
|
func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
2739
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2941
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2740
2942
|
if x != nil {
|
|
2741
2943
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2742
2944
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2749,7 +2951,7 @@ func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
|
2749
2951
|
|
|
2750
2952
|
// Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
|
|
2751
2953
|
func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
|
|
2752
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2954
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
|
|
2753
2955
|
}
|
|
2754
2956
|
|
|
2755
2957
|
func (x *BusinessBroadcastListAction) GetDeleted() bool {
|
|
@@ -2782,7 +2984,7 @@ type BusinessBroadcastAssociationAction struct {
|
|
|
2782
2984
|
|
|
2783
2985
|
func (x *BusinessBroadcastAssociationAction) Reset() {
|
|
2784
2986
|
*x = BusinessBroadcastAssociationAction{}
|
|
2785
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2786
2988
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2787
2989
|
ms.StoreMessageInfo(mi)
|
|
2788
2990
|
}
|
|
@@ -2794,7 +2996,7 @@ func (x *BusinessBroadcastAssociationAction) String() string {
|
|
|
2794
2996
|
func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
|
|
2795
2997
|
|
|
2796
2998
|
func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
|
|
2797
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2999
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2798
3000
|
if x != nil {
|
|
2799
3001
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2800
3002
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2807,7 +3009,7 @@ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message
|
|
|
2807
3009
|
|
|
2808
3010
|
// Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
|
|
2809
3011
|
func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
|
|
2810
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3012
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
|
|
2811
3013
|
}
|
|
2812
3014
|
|
|
2813
3015
|
func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
|
|
@@ -2826,7 +3028,7 @@ type CtwaPerCustomerDataSharingAction struct {
|
|
|
2826
3028
|
|
|
2827
3029
|
func (x *CtwaPerCustomerDataSharingAction) Reset() {
|
|
2828
3030
|
*x = CtwaPerCustomerDataSharingAction{}
|
|
2829
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3031
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2830
3032
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2831
3033
|
ms.StoreMessageInfo(mi)
|
|
2832
3034
|
}
|
|
@@ -2838,7 +3040,7 @@ func (x *CtwaPerCustomerDataSharingAction) String() string {
|
|
|
2838
3040
|
func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
|
|
2839
3041
|
|
|
2840
3042
|
func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
2841
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3043
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2842
3044
|
if x != nil {
|
|
2843
3045
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2844
3046
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2851,7 +3053,7 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
|
2851
3053
|
|
|
2852
3054
|
// Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
|
|
2853
3055
|
func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
|
|
2854
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3056
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
|
|
2855
3057
|
}
|
|
2856
3058
|
|
|
2857
3059
|
func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
|
|
@@ -2862,18 +3064,17 @@ func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnable
|
|
|
2862
3064
|
}
|
|
2863
3065
|
|
|
2864
3066
|
type LidContactAction struct {
|
|
2865
|
-
state
|
|
2866
|
-
FullName
|
|
2867
|
-
FirstName
|
|
2868
|
-
Username
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
sizeCache protoimpl.SizeCache
|
|
3067
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3068
|
+
FullName *string `protobuf:"bytes,1,opt,name=fullName" json:"fullName,omitempty"`
|
|
3069
|
+
FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
|
|
3070
|
+
Username *string `protobuf:"bytes,3,opt,name=username" json:"username,omitempty"`
|
|
3071
|
+
unknownFields protoimpl.UnknownFields
|
|
3072
|
+
sizeCache protoimpl.SizeCache
|
|
2872
3073
|
}
|
|
2873
3074
|
|
|
2874
3075
|
func (x *LidContactAction) Reset() {
|
|
2875
3076
|
*x = LidContactAction{}
|
|
2876
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3077
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2877
3078
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2878
3079
|
ms.StoreMessageInfo(mi)
|
|
2879
3080
|
}
|
|
@@ -2885,7 +3086,7 @@ func (x *LidContactAction) String() string {
|
|
|
2885
3086
|
func (*LidContactAction) ProtoMessage() {}
|
|
2886
3087
|
|
|
2887
3088
|
func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
2888
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3089
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2889
3090
|
if x != nil {
|
|
2890
3091
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2891
3092
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2898,7 +3099,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
|
2898
3099
|
|
|
2899
3100
|
// Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
|
|
2900
3101
|
func (*LidContactAction) Descriptor() ([]byte, []int) {
|
|
2901
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3102
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
|
|
2902
3103
|
}
|
|
2903
3104
|
|
|
2904
3105
|
func (x *LidContactAction) GetFullName() string {
|
|
@@ -2922,13 +3123,6 @@ func (x *LidContactAction) GetUsername() string {
|
|
|
2922
3123
|
return ""
|
|
2923
3124
|
}
|
|
2924
3125
|
|
|
2925
|
-
func (x *LidContactAction) GetSaveOnPrimaryAddressbook() bool {
|
|
2926
|
-
if x != nil && x.SaveOnPrimaryAddressbook != nil {
|
|
2927
|
-
return *x.SaveOnPrimaryAddressbook
|
|
2928
|
-
}
|
|
2929
|
-
return false
|
|
2930
|
-
}
|
|
2931
|
-
|
|
2932
3126
|
type FavoritesAction struct {
|
|
2933
3127
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2934
3128
|
Favorites []*FavoritesAction_Favorite `protobuf:"bytes,1,rep,name=favorites" json:"favorites,omitempty"`
|
|
@@ -2938,7 +3132,7 @@ type FavoritesAction struct {
|
|
|
2938
3132
|
|
|
2939
3133
|
func (x *FavoritesAction) Reset() {
|
|
2940
3134
|
*x = FavoritesAction{}
|
|
2941
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3135
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2942
3136
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2943
3137
|
ms.StoreMessageInfo(mi)
|
|
2944
3138
|
}
|
|
@@ -2950,7 +3144,7 @@ func (x *FavoritesAction) String() string {
|
|
|
2950
3144
|
func (*FavoritesAction) ProtoMessage() {}
|
|
2951
3145
|
|
|
2952
3146
|
func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
2953
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3147
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2954
3148
|
if x != nil {
|
|
2955
3149
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2956
3150
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2963,7 +3157,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
|
2963
3157
|
|
|
2964
3158
|
// Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
|
|
2965
3159
|
func (*FavoritesAction) Descriptor() ([]byte, []int) {
|
|
2966
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3160
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
|
|
2967
3161
|
}
|
|
2968
3162
|
|
|
2969
3163
|
func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
@@ -2982,7 +3176,7 @@ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
|
|
|
2982
3176
|
|
|
2983
3177
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
|
|
2984
3178
|
*x = PrivacySettingChannelsPersonalisedRecommendationAction{}
|
|
2985
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3179
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2986
3180
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2987
3181
|
ms.StoreMessageInfo(mi)
|
|
2988
3182
|
}
|
|
@@ -2994,7 +3188,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string
|
|
|
2994
3188
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
|
|
2995
3189
|
|
|
2996
3190
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
|
|
2997
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3191
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2998
3192
|
if x != nil {
|
|
2999
3193
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3000
3194
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3007,7 +3201,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect()
|
|
|
3007
3201
|
|
|
3008
3202
|
// Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
|
|
3009
3203
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
|
|
3010
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3204
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
|
|
3011
3205
|
}
|
|
3012
3206
|
|
|
3013
3207
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
|
|
@@ -3026,7 +3220,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
|
|
|
3026
3220
|
|
|
3027
3221
|
func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
|
|
3028
3222
|
*x = PrivacySettingDisableLinkPreviewsAction{}
|
|
3029
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3223
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
3030
3224
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3031
3225
|
ms.StoreMessageInfo(mi)
|
|
3032
3226
|
}
|
|
@@ -3038,7 +3232,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
|
|
|
3038
3232
|
func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
|
|
3039
3233
|
|
|
3040
3234
|
func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
|
|
3041
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3235
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
3042
3236
|
if x != nil {
|
|
3043
3237
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3044
3238
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3051,7 +3245,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
|
|
|
3051
3245
|
|
|
3052
3246
|
// Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
|
|
3053
3247
|
func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
|
|
3054
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3248
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
|
|
3055
3249
|
}
|
|
3056
3250
|
|
|
3057
3251
|
func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
|
|
@@ -3070,7 +3264,7 @@ type WamoUserIdentifierAction struct {
|
|
|
3070
3264
|
|
|
3071
3265
|
func (x *WamoUserIdentifierAction) Reset() {
|
|
3072
3266
|
*x = WamoUserIdentifierAction{}
|
|
3073
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3267
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
3074
3268
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3075
3269
|
ms.StoreMessageInfo(mi)
|
|
3076
3270
|
}
|
|
@@ -3082,7 +3276,7 @@ func (x *WamoUserIdentifierAction) String() string {
|
|
|
3082
3276
|
func (*WamoUserIdentifierAction) ProtoMessage() {}
|
|
3083
3277
|
|
|
3084
3278
|
func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
3085
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3279
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
3086
3280
|
if x != nil {
|
|
3087
3281
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3088
3282
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3095,7 +3289,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
|
3095
3289
|
|
|
3096
3290
|
// Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
|
|
3097
3291
|
func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
|
|
3098
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3292
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
|
|
3099
3293
|
}
|
|
3100
3294
|
|
|
3101
3295
|
func (x *WamoUserIdentifierAction) GetIdentifier() string {
|
|
@@ -3114,7 +3308,7 @@ type LockChatAction struct {
|
|
|
3114
3308
|
|
|
3115
3309
|
func (x *LockChatAction) Reset() {
|
|
3116
3310
|
*x = LockChatAction{}
|
|
3117
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3311
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
3118
3312
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3119
3313
|
ms.StoreMessageInfo(mi)
|
|
3120
3314
|
}
|
|
@@ -3126,7 +3320,7 @@ func (x *LockChatAction) String() string {
|
|
|
3126
3320
|
func (*LockChatAction) ProtoMessage() {}
|
|
3127
3321
|
|
|
3128
3322
|
func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
3129
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3323
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
3130
3324
|
if x != nil {
|
|
3131
3325
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3132
3326
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3139,7 +3333,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3139
3333
|
|
|
3140
3334
|
// Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
|
|
3141
3335
|
func (*LockChatAction) Descriptor() ([]byte, []int) {
|
|
3142
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3336
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
|
|
3143
3337
|
}
|
|
3144
3338
|
|
|
3145
3339
|
func (x *LockChatAction) GetLocked() bool {
|
|
@@ -3158,7 +3352,7 @@ type CustomPaymentMethodsAction struct {
|
|
|
3158
3352
|
|
|
3159
3353
|
func (x *CustomPaymentMethodsAction) Reset() {
|
|
3160
3354
|
*x = CustomPaymentMethodsAction{}
|
|
3161
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3355
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
3162
3356
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3163
3357
|
ms.StoreMessageInfo(mi)
|
|
3164
3358
|
}
|
|
@@ -3170,7 +3364,7 @@ func (x *CustomPaymentMethodsAction) String() string {
|
|
|
3170
3364
|
func (*CustomPaymentMethodsAction) ProtoMessage() {}
|
|
3171
3365
|
|
|
3172
3366
|
func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
3173
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3367
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
3174
3368
|
if x != nil {
|
|
3175
3369
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3176
3370
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3183,7 +3377,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
|
3183
3377
|
|
|
3184
3378
|
// Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
|
|
3185
3379
|
func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
|
|
3186
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3380
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
|
|
3187
3381
|
}
|
|
3188
3382
|
|
|
3189
3383
|
func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
|
|
@@ -3205,7 +3399,7 @@ type CustomPaymentMethod struct {
|
|
|
3205
3399
|
|
|
3206
3400
|
func (x *CustomPaymentMethod) Reset() {
|
|
3207
3401
|
*x = CustomPaymentMethod{}
|
|
3208
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3402
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
3209
3403
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3210
3404
|
ms.StoreMessageInfo(mi)
|
|
3211
3405
|
}
|
|
@@ -3217,7 +3411,7 @@ func (x *CustomPaymentMethod) String() string {
|
|
|
3217
3411
|
func (*CustomPaymentMethod) ProtoMessage() {}
|
|
3218
3412
|
|
|
3219
3413
|
func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
3220
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3414
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
3221
3415
|
if x != nil {
|
|
3222
3416
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3223
3417
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3230,7 +3424,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
|
3230
3424
|
|
|
3231
3425
|
// Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
|
|
3232
3426
|
func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
|
|
3233
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3427
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
|
|
3234
3428
|
}
|
|
3235
3429
|
|
|
3236
3430
|
func (x *CustomPaymentMethod) GetCredentialID() string {
|
|
@@ -3271,7 +3465,7 @@ type CustomPaymentMethodMetadata struct {
|
|
|
3271
3465
|
|
|
3272
3466
|
func (x *CustomPaymentMethodMetadata) Reset() {
|
|
3273
3467
|
*x = CustomPaymentMethodMetadata{}
|
|
3274
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3468
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
3275
3469
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3276
3470
|
ms.StoreMessageInfo(mi)
|
|
3277
3471
|
}
|
|
@@ -3283,7 +3477,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
|
|
|
3283
3477
|
func (*CustomPaymentMethodMetadata) ProtoMessage() {}
|
|
3284
3478
|
|
|
3285
3479
|
func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
3286
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3480
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
3287
3481
|
if x != nil {
|
|
3288
3482
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3289
3483
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3296,7 +3490,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3296
3490
|
|
|
3297
3491
|
// Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
|
|
3298
3492
|
func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
|
|
3299
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3493
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
|
|
3300
3494
|
}
|
|
3301
3495
|
|
|
3302
3496
|
func (x *CustomPaymentMethodMetadata) GetKey() string {
|
|
@@ -3322,7 +3516,7 @@ type PaymentInfoAction struct {
|
|
|
3322
3516
|
|
|
3323
3517
|
func (x *PaymentInfoAction) Reset() {
|
|
3324
3518
|
*x = PaymentInfoAction{}
|
|
3325
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3519
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3326
3520
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3327
3521
|
ms.StoreMessageInfo(mi)
|
|
3328
3522
|
}
|
|
@@ -3334,7 +3528,7 @@ func (x *PaymentInfoAction) String() string {
|
|
|
3334
3528
|
func (*PaymentInfoAction) ProtoMessage() {}
|
|
3335
3529
|
|
|
3336
3530
|
func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
3337
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3531
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3338
3532
|
if x != nil {
|
|
3339
3533
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3340
3534
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3347,7 +3541,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
|
3347
3541
|
|
|
3348
3542
|
// Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
|
|
3349
3543
|
func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
|
|
3350
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3544
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
|
|
3351
3545
|
}
|
|
3352
3546
|
|
|
3353
3547
|
func (x *PaymentInfoAction) GetCpi() string {
|
|
@@ -3366,7 +3560,7 @@ type LabelReorderingAction struct {
|
|
|
3366
3560
|
|
|
3367
3561
|
func (x *LabelReorderingAction) Reset() {
|
|
3368
3562
|
*x = LabelReorderingAction{}
|
|
3369
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3563
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3370
3564
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3371
3565
|
ms.StoreMessageInfo(mi)
|
|
3372
3566
|
}
|
|
@@ -3378,7 +3572,7 @@ func (x *LabelReorderingAction) String() string {
|
|
|
3378
3572
|
func (*LabelReorderingAction) ProtoMessage() {}
|
|
3379
3573
|
|
|
3380
3574
|
func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
3381
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3575
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3382
3576
|
if x != nil {
|
|
3383
3577
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3384
3578
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3391,7 +3585,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
|
3391
3585
|
|
|
3392
3586
|
// Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
|
|
3393
3587
|
func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
|
|
3394
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3588
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
|
|
3395
3589
|
}
|
|
3396
3590
|
|
|
3397
3591
|
func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
|
|
@@ -3411,7 +3605,7 @@ type DeleteIndividualCallLogAction struct {
|
|
|
3411
3605
|
|
|
3412
3606
|
func (x *DeleteIndividualCallLogAction) Reset() {
|
|
3413
3607
|
*x = DeleteIndividualCallLogAction{}
|
|
3414
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3608
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3415
3609
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3416
3610
|
ms.StoreMessageInfo(mi)
|
|
3417
3611
|
}
|
|
@@ -3423,7 +3617,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
|
|
|
3423
3617
|
func (*DeleteIndividualCallLogAction) ProtoMessage() {}
|
|
3424
3618
|
|
|
3425
3619
|
func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
3426
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3620
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3427
3621
|
if x != nil {
|
|
3428
3622
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3429
3623
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3436,7 +3630,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
3436
3630
|
|
|
3437
3631
|
// Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
|
|
3438
3632
|
func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
|
|
3439
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3633
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
|
|
3440
3634
|
}
|
|
3441
3635
|
|
|
3442
3636
|
func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
|
|
@@ -3462,7 +3656,7 @@ type BotWelcomeRequestAction struct {
|
|
|
3462
3656
|
|
|
3463
3657
|
func (x *BotWelcomeRequestAction) Reset() {
|
|
3464
3658
|
*x = BotWelcomeRequestAction{}
|
|
3465
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3659
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3466
3660
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3467
3661
|
ms.StoreMessageInfo(mi)
|
|
3468
3662
|
}
|
|
@@ -3474,7 +3668,7 @@ func (x *BotWelcomeRequestAction) String() string {
|
|
|
3474
3668
|
func (*BotWelcomeRequestAction) ProtoMessage() {}
|
|
3475
3669
|
|
|
3476
3670
|
func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
3477
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3671
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3478
3672
|
if x != nil {
|
|
3479
3673
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3480
3674
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3487,7 +3681,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
|
3487
3681
|
|
|
3488
3682
|
// Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
|
|
3489
3683
|
func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
|
|
3490
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3684
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
|
|
3491
3685
|
}
|
|
3492
3686
|
|
|
3493
3687
|
func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
@@ -3497,6 +3691,50 @@ func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
|
3497
3691
|
return false
|
|
3498
3692
|
}
|
|
3499
3693
|
|
|
3694
|
+
type NewsletterSavedInterestsAction struct {
|
|
3695
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3696
|
+
NewsletterSavedInterests *string `protobuf:"bytes,1,opt,name=newsletterSavedInterests" json:"newsletterSavedInterests,omitempty"`
|
|
3697
|
+
unknownFields protoimpl.UnknownFields
|
|
3698
|
+
sizeCache protoimpl.SizeCache
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
func (x *NewsletterSavedInterestsAction) Reset() {
|
|
3702
|
+
*x = NewsletterSavedInterestsAction{}
|
|
3703
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3704
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3705
|
+
ms.StoreMessageInfo(mi)
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
func (x *NewsletterSavedInterestsAction) String() string {
|
|
3709
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
func (*NewsletterSavedInterestsAction) ProtoMessage() {}
|
|
3713
|
+
|
|
3714
|
+
func (x *NewsletterSavedInterestsAction) ProtoReflect() protoreflect.Message {
|
|
3715
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3716
|
+
if x != nil {
|
|
3717
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3718
|
+
if ms.LoadMessageInfo() == nil {
|
|
3719
|
+
ms.StoreMessageInfo(mi)
|
|
3720
|
+
}
|
|
3721
|
+
return ms
|
|
3722
|
+
}
|
|
3723
|
+
return mi.MessageOf(x)
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
// Deprecated: Use NewsletterSavedInterestsAction.ProtoReflect.Descriptor instead.
|
|
3727
|
+
func (*NewsletterSavedInterestsAction) Descriptor() ([]byte, []int) {
|
|
3728
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
func (x *NewsletterSavedInterestsAction) GetNewsletterSavedInterests() string {
|
|
3732
|
+
if x != nil && x.NewsletterSavedInterests != nil {
|
|
3733
|
+
return *x.NewsletterSavedInterests
|
|
3734
|
+
}
|
|
3735
|
+
return ""
|
|
3736
|
+
}
|
|
3737
|
+
|
|
3500
3738
|
type MusicUserIdAction struct {
|
|
3501
3739
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3502
3740
|
MusicUserID *string `protobuf:"bytes,1,opt,name=musicUserID" json:"musicUserID,omitempty"`
|
|
@@ -3506,7 +3744,7 @@ type MusicUserIdAction struct {
|
|
|
3506
3744
|
|
|
3507
3745
|
func (x *MusicUserIdAction) Reset() {
|
|
3508
3746
|
*x = MusicUserIdAction{}
|
|
3509
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3747
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3510
3748
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3511
3749
|
ms.StoreMessageInfo(mi)
|
|
3512
3750
|
}
|
|
@@ -3518,7 +3756,7 @@ func (x *MusicUserIdAction) String() string {
|
|
|
3518
3756
|
func (*MusicUserIdAction) ProtoMessage() {}
|
|
3519
3757
|
|
|
3520
3758
|
func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
3521
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3759
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3522
3760
|
if x != nil {
|
|
3523
3761
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3524
3762
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3531,7 +3769,7 @@ func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
|
3531
3769
|
|
|
3532
3770
|
// Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
|
|
3533
3771
|
func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
|
|
3534
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3772
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
|
|
3535
3773
|
}
|
|
3536
3774
|
|
|
3537
3775
|
func (x *MusicUserIdAction) GetMusicUserID() string {
|
|
@@ -3541,6 +3779,50 @@ func (x *MusicUserIdAction) GetMusicUserID() string {
|
|
|
3541
3779
|
return ""
|
|
3542
3780
|
}
|
|
3543
3781
|
|
|
3782
|
+
type UGCBot struct {
|
|
3783
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3784
|
+
Definition []byte `protobuf:"bytes,1,opt,name=definition" json:"definition,omitempty"`
|
|
3785
|
+
unknownFields protoimpl.UnknownFields
|
|
3786
|
+
sizeCache protoimpl.SizeCache
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
func (x *UGCBot) Reset() {
|
|
3790
|
+
*x = UGCBot{}
|
|
3791
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3792
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3793
|
+
ms.StoreMessageInfo(mi)
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
func (x *UGCBot) String() string {
|
|
3797
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
func (*UGCBot) ProtoMessage() {}
|
|
3801
|
+
|
|
3802
|
+
func (x *UGCBot) ProtoReflect() protoreflect.Message {
|
|
3803
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3804
|
+
if x != nil {
|
|
3805
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3806
|
+
if ms.LoadMessageInfo() == nil {
|
|
3807
|
+
ms.StoreMessageInfo(mi)
|
|
3808
|
+
}
|
|
3809
|
+
return ms
|
|
3810
|
+
}
|
|
3811
|
+
return mi.MessageOf(x)
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
// Deprecated: Use UGCBot.ProtoReflect.Descriptor instead.
|
|
3815
|
+
func (*UGCBot) Descriptor() ([]byte, []int) {
|
|
3816
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
func (x *UGCBot) GetDefinition() []byte {
|
|
3820
|
+
if x != nil {
|
|
3821
|
+
return x.Definition
|
|
3822
|
+
}
|
|
3823
|
+
return nil
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3544
3826
|
type CallLogAction struct {
|
|
3545
3827
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3546
3828
|
CallLogRecord *CallLogRecord `protobuf:"bytes,1,opt,name=callLogRecord" json:"callLogRecord,omitempty"`
|
|
@@ -3550,7 +3832,7 @@ type CallLogAction struct {
|
|
|
3550
3832
|
|
|
3551
3833
|
func (x *CallLogAction) Reset() {
|
|
3552
3834
|
*x = CallLogAction{}
|
|
3553
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3835
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3554
3836
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3555
3837
|
ms.StoreMessageInfo(mi)
|
|
3556
3838
|
}
|
|
@@ -3562,7 +3844,7 @@ func (x *CallLogAction) String() string {
|
|
|
3562
3844
|
func (*CallLogAction) ProtoMessage() {}
|
|
3563
3845
|
|
|
3564
3846
|
func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
3565
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3847
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3566
3848
|
if x != nil {
|
|
3567
3849
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3568
3850
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3575,7 +3857,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
3575
3857
|
|
|
3576
3858
|
// Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
|
|
3577
3859
|
func (*CallLogAction) Descriptor() ([]byte, []int) {
|
|
3578
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3860
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
|
|
3579
3861
|
}
|
|
3580
3862
|
|
|
3581
3863
|
func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
|
|
@@ -3594,7 +3876,7 @@ type PrivacySettingRelayAllCalls struct {
|
|
|
3594
3876
|
|
|
3595
3877
|
func (x *PrivacySettingRelayAllCalls) Reset() {
|
|
3596
3878
|
*x = PrivacySettingRelayAllCalls{}
|
|
3597
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3879
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3598
3880
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3599
3881
|
ms.StoreMessageInfo(mi)
|
|
3600
3882
|
}
|
|
@@ -3606,7 +3888,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
|
|
|
3606
3888
|
func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
|
|
3607
3889
|
|
|
3608
3890
|
func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
3609
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3891
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3610
3892
|
if x != nil {
|
|
3611
3893
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3612
3894
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3619,7 +3901,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
|
3619
3901
|
|
|
3620
3902
|
// Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
|
|
3621
3903
|
func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
|
|
3622
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3904
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
|
|
3623
3905
|
}
|
|
3624
3906
|
|
|
3625
3907
|
func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
@@ -3638,7 +3920,7 @@ type DetectedOutcomesStatusAction struct {
|
|
|
3638
3920
|
|
|
3639
3921
|
func (x *DetectedOutcomesStatusAction) Reset() {
|
|
3640
3922
|
*x = DetectedOutcomesStatusAction{}
|
|
3641
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3923
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3642
3924
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3643
3925
|
ms.StoreMessageInfo(mi)
|
|
3644
3926
|
}
|
|
@@ -3650,7 +3932,7 @@ func (x *DetectedOutcomesStatusAction) String() string {
|
|
|
3650
3932
|
func (*DetectedOutcomesStatusAction) ProtoMessage() {}
|
|
3651
3933
|
|
|
3652
3934
|
func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
3653
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3935
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3654
3936
|
if x != nil {
|
|
3655
3937
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3656
3938
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3663,7 +3945,7 @@ func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
3663
3945
|
|
|
3664
3946
|
// Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
|
|
3665
3947
|
func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
|
|
3666
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3948
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
|
|
3667
3949
|
}
|
|
3668
3950
|
|
|
3669
3951
|
func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
|
|
@@ -3682,7 +3964,7 @@ type ExternalWebBetaAction struct {
|
|
|
3682
3964
|
|
|
3683
3965
|
func (x *ExternalWebBetaAction) Reset() {
|
|
3684
3966
|
*x = ExternalWebBetaAction{}
|
|
3685
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3967
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3686
3968
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3687
3969
|
ms.StoreMessageInfo(mi)
|
|
3688
3970
|
}
|
|
@@ -3694,7 +3976,7 @@ func (x *ExternalWebBetaAction) String() string {
|
|
|
3694
3976
|
func (*ExternalWebBetaAction) ProtoMessage() {}
|
|
3695
3977
|
|
|
3696
3978
|
func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
3697
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3979
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3698
3980
|
if x != nil {
|
|
3699
3981
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3700
3982
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3707,7 +3989,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
|
3707
3989
|
|
|
3708
3990
|
// Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
|
|
3709
3991
|
func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
|
|
3710
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3992
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
|
|
3711
3993
|
}
|
|
3712
3994
|
|
|
3713
3995
|
func (x *ExternalWebBetaAction) GetIsOptIn() bool {
|
|
@@ -3726,7 +4008,7 @@ type MarketingMessageBroadcastAction struct {
|
|
|
3726
4008
|
|
|
3727
4009
|
func (x *MarketingMessageBroadcastAction) Reset() {
|
|
3728
4010
|
*x = MarketingMessageBroadcastAction{}
|
|
3729
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4011
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3730
4012
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3731
4013
|
ms.StoreMessageInfo(mi)
|
|
3732
4014
|
}
|
|
@@ -3738,7 +4020,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
|
|
|
3738
4020
|
func (*MarketingMessageBroadcastAction) ProtoMessage() {}
|
|
3739
4021
|
|
|
3740
4022
|
func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
3741
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4023
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3742
4024
|
if x != nil {
|
|
3743
4025
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3744
4026
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3751,7 +4033,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
|
3751
4033
|
|
|
3752
4034
|
// Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
|
|
3753
4035
|
func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
|
|
3754
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4036
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
|
|
3755
4037
|
}
|
|
3756
4038
|
|
|
3757
4039
|
func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
|
|
@@ -3770,7 +4052,7 @@ type PnForLidChatAction struct {
|
|
|
3770
4052
|
|
|
3771
4053
|
func (x *PnForLidChatAction) Reset() {
|
|
3772
4054
|
*x = PnForLidChatAction{}
|
|
3773
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4055
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3774
4056
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3775
4057
|
ms.StoreMessageInfo(mi)
|
|
3776
4058
|
}
|
|
@@ -3782,7 +4064,7 @@ func (x *PnForLidChatAction) String() string {
|
|
|
3782
4064
|
func (*PnForLidChatAction) ProtoMessage() {}
|
|
3783
4065
|
|
|
3784
4066
|
func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
3785
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4067
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3786
4068
|
if x != nil {
|
|
3787
4069
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3788
4070
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3795,7 +4077,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3795
4077
|
|
|
3796
4078
|
// Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
|
|
3797
4079
|
func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
|
|
3798
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4080
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
|
|
3799
4081
|
}
|
|
3800
4082
|
|
|
3801
4083
|
func (x *PnForLidChatAction) GetPnJID() string {
|
|
@@ -3814,7 +4096,7 @@ type ChatAssignmentOpenedStatusAction struct {
|
|
|
3814
4096
|
|
|
3815
4097
|
func (x *ChatAssignmentOpenedStatusAction) Reset() {
|
|
3816
4098
|
*x = ChatAssignmentOpenedStatusAction{}
|
|
3817
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4099
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3818
4100
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3819
4101
|
ms.StoreMessageInfo(mi)
|
|
3820
4102
|
}
|
|
@@ -3826,7 +4108,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
|
|
|
3826
4108
|
func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
|
|
3827
4109
|
|
|
3828
4110
|
func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
3829
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4111
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3830
4112
|
if x != nil {
|
|
3831
4113
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3832
4114
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3839,7 +4121,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
3839
4121
|
|
|
3840
4122
|
// Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
|
|
3841
4123
|
func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
|
|
3842
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4124
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
|
|
3843
4125
|
}
|
|
3844
4126
|
|
|
3845
4127
|
func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
|
|
@@ -3858,7 +4140,7 @@ type ChatAssignmentAction struct {
|
|
|
3858
4140
|
|
|
3859
4141
|
func (x *ChatAssignmentAction) Reset() {
|
|
3860
4142
|
*x = ChatAssignmentAction{}
|
|
3861
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4143
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3862
4144
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3863
4145
|
ms.StoreMessageInfo(mi)
|
|
3864
4146
|
}
|
|
@@ -3870,7 +4152,7 @@ func (x *ChatAssignmentAction) String() string {
|
|
|
3870
4152
|
func (*ChatAssignmentAction) ProtoMessage() {}
|
|
3871
4153
|
|
|
3872
4154
|
func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
3873
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4155
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3874
4156
|
if x != nil {
|
|
3875
4157
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3876
4158
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3883,7 +4165,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
|
3883
4165
|
|
|
3884
4166
|
// Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
|
|
3885
4167
|
func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
|
|
3886
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4168
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
|
|
3887
4169
|
}
|
|
3888
4170
|
|
|
3889
4171
|
func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
@@ -3914,7 +4196,7 @@ type StickerAction struct {
|
|
|
3914
4196
|
|
|
3915
4197
|
func (x *StickerAction) Reset() {
|
|
3916
4198
|
*x = StickerAction{}
|
|
3917
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4199
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3918
4200
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3919
4201
|
ms.StoreMessageInfo(mi)
|
|
3920
4202
|
}
|
|
@@ -3926,7 +4208,7 @@ func (x *StickerAction) String() string {
|
|
|
3926
4208
|
func (*StickerAction) ProtoMessage() {}
|
|
3927
4209
|
|
|
3928
4210
|
func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
3929
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4211
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3930
4212
|
if x != nil {
|
|
3931
4213
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3932
4214
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3939,7 +4221,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
|
3939
4221
|
|
|
3940
4222
|
// Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
|
|
3941
4223
|
func (*StickerAction) Descriptor() ([]byte, []int) {
|
|
3942
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4224
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
|
|
3943
4225
|
}
|
|
3944
4226
|
|
|
3945
4227
|
func (x *StickerAction) GetURL() string {
|
|
@@ -4042,7 +4324,7 @@ type RemoveRecentStickerAction struct {
|
|
|
4042
4324
|
|
|
4043
4325
|
func (x *RemoveRecentStickerAction) Reset() {
|
|
4044
4326
|
*x = RemoveRecentStickerAction{}
|
|
4045
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4327
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
4046
4328
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4047
4329
|
ms.StoreMessageInfo(mi)
|
|
4048
4330
|
}
|
|
@@ -4054,7 +4336,7 @@ func (x *RemoveRecentStickerAction) String() string {
|
|
|
4054
4336
|
func (*RemoveRecentStickerAction) ProtoMessage() {}
|
|
4055
4337
|
|
|
4056
4338
|
func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
4057
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4339
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
4058
4340
|
if x != nil {
|
|
4059
4341
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4060
4342
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4067,7 +4349,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
|
4067
4349
|
|
|
4068
4350
|
// Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
|
|
4069
4351
|
func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
|
|
4070
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4352
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
|
|
4071
4353
|
}
|
|
4072
4354
|
|
|
4073
4355
|
func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
|
|
@@ -4086,7 +4368,7 @@ type PrimaryVersionAction struct {
|
|
|
4086
4368
|
|
|
4087
4369
|
func (x *PrimaryVersionAction) Reset() {
|
|
4088
4370
|
*x = PrimaryVersionAction{}
|
|
4089
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4371
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
4090
4372
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4091
4373
|
ms.StoreMessageInfo(mi)
|
|
4092
4374
|
}
|
|
@@ -4098,7 +4380,7 @@ func (x *PrimaryVersionAction) String() string {
|
|
|
4098
4380
|
func (*PrimaryVersionAction) ProtoMessage() {}
|
|
4099
4381
|
|
|
4100
4382
|
func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
4101
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4383
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
4102
4384
|
if x != nil {
|
|
4103
4385
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4104
4386
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4111,7 +4393,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
|
4111
4393
|
|
|
4112
4394
|
// Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
|
|
4113
4395
|
func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
|
|
4114
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4396
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
|
|
4115
4397
|
}
|
|
4116
4398
|
|
|
4117
4399
|
func (x *PrimaryVersionAction) GetVersion() string {
|
|
@@ -4130,7 +4412,7 @@ type NuxAction struct {
|
|
|
4130
4412
|
|
|
4131
4413
|
func (x *NuxAction) Reset() {
|
|
4132
4414
|
*x = NuxAction{}
|
|
4133
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4415
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
4134
4416
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4135
4417
|
ms.StoreMessageInfo(mi)
|
|
4136
4418
|
}
|
|
@@ -4142,7 +4424,7 @@ func (x *NuxAction) String() string {
|
|
|
4142
4424
|
func (*NuxAction) ProtoMessage() {}
|
|
4143
4425
|
|
|
4144
4426
|
func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
4145
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4427
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
4146
4428
|
if x != nil {
|
|
4147
4429
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4148
4430
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4155,7 +4437,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
|
4155
4437
|
|
|
4156
4438
|
// Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
|
|
4157
4439
|
func (*NuxAction) Descriptor() ([]byte, []int) {
|
|
4158
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4440
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
|
|
4159
4441
|
}
|
|
4160
4442
|
|
|
4161
4443
|
func (x *NuxAction) GetAcknowledged() bool {
|
|
@@ -4174,7 +4456,7 @@ type TimeFormatAction struct {
|
|
|
4174
4456
|
|
|
4175
4457
|
func (x *TimeFormatAction) Reset() {
|
|
4176
4458
|
*x = TimeFormatAction{}
|
|
4177
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4459
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
4178
4460
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4179
4461
|
ms.StoreMessageInfo(mi)
|
|
4180
4462
|
}
|
|
@@ -4186,7 +4468,7 @@ func (x *TimeFormatAction) String() string {
|
|
|
4186
4468
|
func (*TimeFormatAction) ProtoMessage() {}
|
|
4187
4469
|
|
|
4188
4470
|
func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
4189
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4471
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
4190
4472
|
if x != nil {
|
|
4191
4473
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4192
4474
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4199,7 +4481,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
|
4199
4481
|
|
|
4200
4482
|
// Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
|
|
4201
4483
|
func (*TimeFormatAction) Descriptor() ([]byte, []int) {
|
|
4202
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4484
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
|
|
4203
4485
|
}
|
|
4204
4486
|
|
|
4205
4487
|
func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
|
|
@@ -4218,7 +4500,7 @@ type UserStatusMuteAction struct {
|
|
|
4218
4500
|
|
|
4219
4501
|
func (x *UserStatusMuteAction) Reset() {
|
|
4220
4502
|
*x = UserStatusMuteAction{}
|
|
4221
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4503
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4222
4504
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4223
4505
|
ms.StoreMessageInfo(mi)
|
|
4224
4506
|
}
|
|
@@ -4230,7 +4512,7 @@ func (x *UserStatusMuteAction) String() string {
|
|
|
4230
4512
|
func (*UserStatusMuteAction) ProtoMessage() {}
|
|
4231
4513
|
|
|
4232
4514
|
func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
4233
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4515
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4234
4516
|
if x != nil {
|
|
4235
4517
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4236
4518
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4243,7 +4525,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
|
4243
4525
|
|
|
4244
4526
|
// Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
|
|
4245
4527
|
func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
|
|
4246
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4528
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
|
|
4247
4529
|
}
|
|
4248
4530
|
|
|
4249
4531
|
func (x *UserStatusMuteAction) GetMuted() bool {
|
|
@@ -4264,7 +4546,7 @@ type SubscriptionAction struct {
|
|
|
4264
4546
|
|
|
4265
4547
|
func (x *SubscriptionAction) Reset() {
|
|
4266
4548
|
*x = SubscriptionAction{}
|
|
4267
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4549
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4268
4550
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4269
4551
|
ms.StoreMessageInfo(mi)
|
|
4270
4552
|
}
|
|
@@ -4276,7 +4558,7 @@ func (x *SubscriptionAction) String() string {
|
|
|
4276
4558
|
func (*SubscriptionAction) ProtoMessage() {}
|
|
4277
4559
|
|
|
4278
4560
|
func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
4279
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4561
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4280
4562
|
if x != nil {
|
|
4281
4563
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4282
4564
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4289,7 +4571,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
|
4289
4571
|
|
|
4290
4572
|
// Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
|
|
4291
4573
|
func (*SubscriptionAction) Descriptor() ([]byte, []int) {
|
|
4292
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4574
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
|
|
4293
4575
|
}
|
|
4294
4576
|
|
|
4295
4577
|
func (x *SubscriptionAction) GetIsDeactivated() bool {
|
|
@@ -4324,7 +4606,7 @@ type AgentAction struct {
|
|
|
4324
4606
|
|
|
4325
4607
|
func (x *AgentAction) Reset() {
|
|
4326
4608
|
*x = AgentAction{}
|
|
4327
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4609
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4328
4610
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4329
4611
|
ms.StoreMessageInfo(mi)
|
|
4330
4612
|
}
|
|
@@ -4336,7 +4618,7 @@ func (x *AgentAction) String() string {
|
|
|
4336
4618
|
func (*AgentAction) ProtoMessage() {}
|
|
4337
4619
|
|
|
4338
4620
|
func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
4339
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4621
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4340
4622
|
if x != nil {
|
|
4341
4623
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4342
4624
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4349,7 +4631,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
|
4349
4631
|
|
|
4350
4632
|
// Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
|
|
4351
4633
|
func (*AgentAction) Descriptor() ([]byte, []int) {
|
|
4352
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4634
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
|
|
4353
4635
|
}
|
|
4354
4636
|
|
|
4355
4637
|
func (x *AgentAction) GetName() string {
|
|
@@ -4382,7 +4664,7 @@ type AndroidUnsupportedActions struct {
|
|
|
4382
4664
|
|
|
4383
4665
|
func (x *AndroidUnsupportedActions) Reset() {
|
|
4384
4666
|
*x = AndroidUnsupportedActions{}
|
|
4385
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4667
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4386
4668
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4387
4669
|
ms.StoreMessageInfo(mi)
|
|
4388
4670
|
}
|
|
@@ -4394,7 +4676,7 @@ func (x *AndroidUnsupportedActions) String() string {
|
|
|
4394
4676
|
func (*AndroidUnsupportedActions) ProtoMessage() {}
|
|
4395
4677
|
|
|
4396
4678
|
func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
4397
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4679
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4398
4680
|
if x != nil {
|
|
4399
4681
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4400
4682
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4407,7 +4689,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
|
4407
4689
|
|
|
4408
4690
|
// Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
|
|
4409
4691
|
func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
|
|
4410
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4692
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
|
|
4411
4693
|
}
|
|
4412
4694
|
|
|
4413
4695
|
func (x *AndroidUnsupportedActions) GetAllowed() bool {
|
|
@@ -4426,7 +4708,7 @@ type PrimaryFeature struct {
|
|
|
4426
4708
|
|
|
4427
4709
|
func (x *PrimaryFeature) Reset() {
|
|
4428
4710
|
*x = PrimaryFeature{}
|
|
4429
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4711
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4430
4712
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4431
4713
|
ms.StoreMessageInfo(mi)
|
|
4432
4714
|
}
|
|
@@ -4438,7 +4720,7 @@ func (x *PrimaryFeature) String() string {
|
|
|
4438
4720
|
func (*PrimaryFeature) ProtoMessage() {}
|
|
4439
4721
|
|
|
4440
4722
|
func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
4441
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4723
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4442
4724
|
if x != nil {
|
|
4443
4725
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4444
4726
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4451,7 +4733,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
|
4451
4733
|
|
|
4452
4734
|
// Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
|
|
4453
4735
|
func (*PrimaryFeature) Descriptor() ([]byte, []int) {
|
|
4454
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4736
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
|
|
4455
4737
|
}
|
|
4456
4738
|
|
|
4457
4739
|
func (x *PrimaryFeature) GetFlags() []string {
|
|
@@ -4470,7 +4752,7 @@ type KeyExpiration struct {
|
|
|
4470
4752
|
|
|
4471
4753
|
func (x *KeyExpiration) Reset() {
|
|
4472
4754
|
*x = KeyExpiration{}
|
|
4473
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4755
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4474
4756
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4475
4757
|
ms.StoreMessageInfo(mi)
|
|
4476
4758
|
}
|
|
@@ -4482,7 +4764,7 @@ func (x *KeyExpiration) String() string {
|
|
|
4482
4764
|
func (*KeyExpiration) ProtoMessage() {}
|
|
4483
4765
|
|
|
4484
4766
|
func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
4485
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4767
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4486
4768
|
if x != nil {
|
|
4487
4769
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4488
4770
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4495,7 +4777,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
|
4495
4777
|
|
|
4496
4778
|
// Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
|
|
4497
4779
|
func (*KeyExpiration) Descriptor() ([]byte, []int) {
|
|
4498
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4780
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
|
|
4499
4781
|
}
|
|
4500
4782
|
|
|
4501
4783
|
func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
|
|
@@ -4515,7 +4797,7 @@ type SyncActionMessage struct {
|
|
|
4515
4797
|
|
|
4516
4798
|
func (x *SyncActionMessage) Reset() {
|
|
4517
4799
|
*x = SyncActionMessage{}
|
|
4518
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4800
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4519
4801
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4520
4802
|
ms.StoreMessageInfo(mi)
|
|
4521
4803
|
}
|
|
@@ -4527,7 +4809,7 @@ func (x *SyncActionMessage) String() string {
|
|
|
4527
4809
|
func (*SyncActionMessage) ProtoMessage() {}
|
|
4528
4810
|
|
|
4529
4811
|
func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
4530
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4812
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4531
4813
|
if x != nil {
|
|
4532
4814
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4533
4815
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4540,7 +4822,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
|
4540
4822
|
|
|
4541
4823
|
// Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
4542
4824
|
func (*SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
4543
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4825
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
|
|
4544
4826
|
}
|
|
4545
4827
|
|
|
4546
4828
|
func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
@@ -4568,7 +4850,7 @@ type SyncActionMessageRange struct {
|
|
|
4568
4850
|
|
|
4569
4851
|
func (x *SyncActionMessageRange) Reset() {
|
|
4570
4852
|
*x = SyncActionMessageRange{}
|
|
4571
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4853
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4572
4854
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4573
4855
|
ms.StoreMessageInfo(mi)
|
|
4574
4856
|
}
|
|
@@ -4580,7 +4862,7 @@ func (x *SyncActionMessageRange) String() string {
|
|
|
4580
4862
|
func (*SyncActionMessageRange) ProtoMessage() {}
|
|
4581
4863
|
|
|
4582
4864
|
func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
4583
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4865
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4584
4866
|
if x != nil {
|
|
4585
4867
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4586
4868
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4593,7 +4875,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
|
4593
4875
|
|
|
4594
4876
|
// Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
4595
4877
|
func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
4596
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4878
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
|
|
4597
4879
|
}
|
|
4598
4880
|
|
|
4599
4881
|
func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
@@ -4626,7 +4908,7 @@ type UnarchiveChatsSetting struct {
|
|
|
4626
4908
|
|
|
4627
4909
|
func (x *UnarchiveChatsSetting) Reset() {
|
|
4628
4910
|
*x = UnarchiveChatsSetting{}
|
|
4629
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4911
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4630
4912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4631
4913
|
ms.StoreMessageInfo(mi)
|
|
4632
4914
|
}
|
|
@@ -4638,7 +4920,7 @@ func (x *UnarchiveChatsSetting) String() string {
|
|
|
4638
4920
|
func (*UnarchiveChatsSetting) ProtoMessage() {}
|
|
4639
4921
|
|
|
4640
4922
|
func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
4641
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4923
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4642
4924
|
if x != nil {
|
|
4643
4925
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4644
4926
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4651,7 +4933,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
|
4651
4933
|
|
|
4652
4934
|
// Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
|
|
4653
4935
|
func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
|
|
4654
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4936
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
|
|
4655
4937
|
}
|
|
4656
4938
|
|
|
4657
4939
|
func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
|
|
@@ -4670,7 +4952,7 @@ type DeleteChatAction struct {
|
|
|
4670
4952
|
|
|
4671
4953
|
func (x *DeleteChatAction) Reset() {
|
|
4672
4954
|
*x = DeleteChatAction{}
|
|
4673
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4955
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4674
4956
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4675
4957
|
ms.StoreMessageInfo(mi)
|
|
4676
4958
|
}
|
|
@@ -4682,7 +4964,7 @@ func (x *DeleteChatAction) String() string {
|
|
|
4682
4964
|
func (*DeleteChatAction) ProtoMessage() {}
|
|
4683
4965
|
|
|
4684
4966
|
func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
4685
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4967
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4686
4968
|
if x != nil {
|
|
4687
4969
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4688
4970
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4695,7 +4977,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4695
4977
|
|
|
4696
4978
|
// Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
|
|
4697
4979
|
func (*DeleteChatAction) Descriptor() ([]byte, []int) {
|
|
4698
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4980
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
|
|
4699
4981
|
}
|
|
4700
4982
|
|
|
4701
4983
|
func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4714,7 +4996,7 @@ type ClearChatAction struct {
|
|
|
4714
4996
|
|
|
4715
4997
|
func (x *ClearChatAction) Reset() {
|
|
4716
4998
|
*x = ClearChatAction{}
|
|
4717
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4999
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4718
5000
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4719
5001
|
ms.StoreMessageInfo(mi)
|
|
4720
5002
|
}
|
|
@@ -4726,7 +5008,7 @@ func (x *ClearChatAction) String() string {
|
|
|
4726
5008
|
func (*ClearChatAction) ProtoMessage() {}
|
|
4727
5009
|
|
|
4728
5010
|
func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
4729
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5011
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4730
5012
|
if x != nil {
|
|
4731
5013
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4732
5014
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4739,7 +5021,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4739
5021
|
|
|
4740
5022
|
// Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
|
|
4741
5023
|
func (*ClearChatAction) Descriptor() ([]byte, []int) {
|
|
4742
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5024
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
|
|
4743
5025
|
}
|
|
4744
5026
|
|
|
4745
5027
|
func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4759,7 +5041,7 @@ type MarkChatAsReadAction struct {
|
|
|
4759
5041
|
|
|
4760
5042
|
func (x *MarkChatAsReadAction) Reset() {
|
|
4761
5043
|
*x = MarkChatAsReadAction{}
|
|
4762
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5044
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4763
5045
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4764
5046
|
ms.StoreMessageInfo(mi)
|
|
4765
5047
|
}
|
|
@@ -4771,7 +5053,7 @@ func (x *MarkChatAsReadAction) String() string {
|
|
|
4771
5053
|
func (*MarkChatAsReadAction) ProtoMessage() {}
|
|
4772
5054
|
|
|
4773
5055
|
func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
4774
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5056
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4775
5057
|
if x != nil {
|
|
4776
5058
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4777
5059
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4784,7 +5066,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
|
4784
5066
|
|
|
4785
5067
|
// Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
|
|
4786
5068
|
func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
|
|
4787
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5069
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
|
|
4788
5070
|
}
|
|
4789
5071
|
|
|
4790
5072
|
func (x *MarkChatAsReadAction) GetRead() bool {
|
|
@@ -4811,7 +5093,7 @@ type DeleteMessageForMeAction struct {
|
|
|
4811
5093
|
|
|
4812
5094
|
func (x *DeleteMessageForMeAction) Reset() {
|
|
4813
5095
|
*x = DeleteMessageForMeAction{}
|
|
4814
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5096
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4815
5097
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4816
5098
|
ms.StoreMessageInfo(mi)
|
|
4817
5099
|
}
|
|
@@ -4823,7 +5105,7 @@ func (x *DeleteMessageForMeAction) String() string {
|
|
|
4823
5105
|
func (*DeleteMessageForMeAction) ProtoMessage() {}
|
|
4824
5106
|
|
|
4825
5107
|
func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
4826
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5108
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4827
5109
|
if x != nil {
|
|
4828
5110
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4829
5111
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4836,7 +5118,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
|
4836
5118
|
|
|
4837
5119
|
// Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
|
|
4838
5120
|
func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
|
|
4839
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5121
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
|
|
4840
5122
|
}
|
|
4841
5123
|
|
|
4842
5124
|
func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
|
|
@@ -4863,7 +5145,7 @@ type ArchiveChatAction struct {
|
|
|
4863
5145
|
|
|
4864
5146
|
func (x *ArchiveChatAction) Reset() {
|
|
4865
5147
|
*x = ArchiveChatAction{}
|
|
4866
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5148
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4867
5149
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4868
5150
|
ms.StoreMessageInfo(mi)
|
|
4869
5151
|
}
|
|
@@ -4875,7 +5157,7 @@ func (x *ArchiveChatAction) String() string {
|
|
|
4875
5157
|
func (*ArchiveChatAction) ProtoMessage() {}
|
|
4876
5158
|
|
|
4877
5159
|
func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
4878
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5160
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4879
5161
|
if x != nil {
|
|
4880
5162
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4881
5163
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4888,7 +5170,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4888
5170
|
|
|
4889
5171
|
// Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
|
|
4890
5172
|
func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
|
|
4891
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5173
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
|
|
4892
5174
|
}
|
|
4893
5175
|
|
|
4894
5176
|
func (x *ArchiveChatAction) GetArchived() bool {
|
|
@@ -4914,7 +5196,7 @@ type RecentEmojiWeightsAction struct {
|
|
|
4914
5196
|
|
|
4915
5197
|
func (x *RecentEmojiWeightsAction) Reset() {
|
|
4916
5198
|
*x = RecentEmojiWeightsAction{}
|
|
4917
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5199
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4918
5200
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4919
5201
|
ms.StoreMessageInfo(mi)
|
|
4920
5202
|
}
|
|
@@ -4926,7 +5208,7 @@ func (x *RecentEmojiWeightsAction) String() string {
|
|
|
4926
5208
|
func (*RecentEmojiWeightsAction) ProtoMessage() {}
|
|
4927
5209
|
|
|
4928
5210
|
func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
4929
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5211
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4930
5212
|
if x != nil {
|
|
4931
5213
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4932
5214
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4939,7 +5221,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
|
4939
5221
|
|
|
4940
5222
|
// Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
|
|
4941
5223
|
func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
|
|
4942
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5224
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
|
|
4943
5225
|
}
|
|
4944
5226
|
|
|
4945
5227
|
func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
|
|
@@ -4958,7 +5240,7 @@ type LabelAssociationAction struct {
|
|
|
4958
5240
|
|
|
4959
5241
|
func (x *LabelAssociationAction) Reset() {
|
|
4960
5242
|
*x = LabelAssociationAction{}
|
|
4961
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5243
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4962
5244
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4963
5245
|
ms.StoreMessageInfo(mi)
|
|
4964
5246
|
}
|
|
@@ -4970,7 +5252,7 @@ func (x *LabelAssociationAction) String() string {
|
|
|
4970
5252
|
func (*LabelAssociationAction) ProtoMessage() {}
|
|
4971
5253
|
|
|
4972
5254
|
func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
4973
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5255
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4974
5256
|
if x != nil {
|
|
4975
5257
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4976
5258
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4983,7 +5265,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
|
4983
5265
|
|
|
4984
5266
|
// Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
|
|
4985
5267
|
func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
|
|
4986
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5268
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
|
|
4987
5269
|
}
|
|
4988
5270
|
|
|
4989
5271
|
func (x *LabelAssociationAction) GetLabeled() bool {
|
|
@@ -5006,7 +5288,7 @@ type QuickReplyAction struct {
|
|
|
5006
5288
|
|
|
5007
5289
|
func (x *QuickReplyAction) Reset() {
|
|
5008
5290
|
*x = QuickReplyAction{}
|
|
5009
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5291
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
5010
5292
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5011
5293
|
ms.StoreMessageInfo(mi)
|
|
5012
5294
|
}
|
|
@@ -5018,7 +5300,7 @@ func (x *QuickReplyAction) String() string {
|
|
|
5018
5300
|
func (*QuickReplyAction) ProtoMessage() {}
|
|
5019
5301
|
|
|
5020
5302
|
func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
5021
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5303
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
5022
5304
|
if x != nil {
|
|
5023
5305
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5024
5306
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5031,7 +5313,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
|
5031
5313
|
|
|
5032
5314
|
// Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
|
|
5033
5315
|
func (*QuickReplyAction) Descriptor() ([]byte, []int) {
|
|
5034
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5316
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
|
|
5035
5317
|
}
|
|
5036
5318
|
|
|
5037
5319
|
func (x *QuickReplyAction) GetShortcut() string {
|
|
@@ -5078,7 +5360,7 @@ type LocaleSetting struct {
|
|
|
5078
5360
|
|
|
5079
5361
|
func (x *LocaleSetting) Reset() {
|
|
5080
5362
|
*x = LocaleSetting{}
|
|
5081
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5363
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
5082
5364
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5083
5365
|
ms.StoreMessageInfo(mi)
|
|
5084
5366
|
}
|
|
@@ -5090,7 +5372,7 @@ func (x *LocaleSetting) String() string {
|
|
|
5090
5372
|
func (*LocaleSetting) ProtoMessage() {}
|
|
5091
5373
|
|
|
5092
5374
|
func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
5093
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5375
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
5094
5376
|
if x != nil {
|
|
5095
5377
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5096
5378
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5103,7 +5385,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
|
5103
5385
|
|
|
5104
5386
|
// Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
|
|
5105
5387
|
func (*LocaleSetting) Descriptor() ([]byte, []int) {
|
|
5106
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5388
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
|
|
5107
5389
|
}
|
|
5108
5390
|
|
|
5109
5391
|
func (x *LocaleSetting) GetLocale() string {
|
|
@@ -5122,7 +5404,7 @@ type PushNameSetting struct {
|
|
|
5122
5404
|
|
|
5123
5405
|
func (x *PushNameSetting) Reset() {
|
|
5124
5406
|
*x = PushNameSetting{}
|
|
5125
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5407
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
5126
5408
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5127
5409
|
ms.StoreMessageInfo(mi)
|
|
5128
5410
|
}
|
|
@@ -5134,7 +5416,7 @@ func (x *PushNameSetting) String() string {
|
|
|
5134
5416
|
func (*PushNameSetting) ProtoMessage() {}
|
|
5135
5417
|
|
|
5136
5418
|
func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
5137
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5419
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
5138
5420
|
if x != nil {
|
|
5139
5421
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5140
5422
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5147,7 +5429,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
|
5147
5429
|
|
|
5148
5430
|
// Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
|
|
5149
5431
|
func (*PushNameSetting) Descriptor() ([]byte, []int) {
|
|
5150
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5432
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
|
|
5151
5433
|
}
|
|
5152
5434
|
|
|
5153
5435
|
func (x *PushNameSetting) GetName() string {
|
|
@@ -5157,50 +5439,6 @@ func (x *PushNameSetting) GetName() string {
|
|
|
5157
5439
|
return ""
|
|
5158
5440
|
}
|
|
5159
5441
|
|
|
5160
|
-
type SecurityNotificationSetting struct {
|
|
5161
|
-
state protoimpl.MessageState `protogen:"open.v1"`
|
|
5162
|
-
ShowNotification *bool `protobuf:"varint,1,opt,name=showNotification" json:"showNotification,omitempty"`
|
|
5163
|
-
unknownFields protoimpl.UnknownFields
|
|
5164
|
-
sizeCache protoimpl.SizeCache
|
|
5165
|
-
}
|
|
5166
|
-
|
|
5167
|
-
func (x *SecurityNotificationSetting) Reset() {
|
|
5168
|
-
*x = SecurityNotificationSetting{}
|
|
5169
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
5170
|
-
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5171
|
-
ms.StoreMessageInfo(mi)
|
|
5172
|
-
}
|
|
5173
|
-
|
|
5174
|
-
func (x *SecurityNotificationSetting) String() string {
|
|
5175
|
-
return protoimpl.X.MessageStringOf(x)
|
|
5176
|
-
}
|
|
5177
|
-
|
|
5178
|
-
func (*SecurityNotificationSetting) ProtoMessage() {}
|
|
5179
|
-
|
|
5180
|
-
func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
5181
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
5182
|
-
if x != nil {
|
|
5183
|
-
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5184
|
-
if ms.LoadMessageInfo() == nil {
|
|
5185
|
-
ms.StoreMessageInfo(mi)
|
|
5186
|
-
}
|
|
5187
|
-
return ms
|
|
5188
|
-
}
|
|
5189
|
-
return mi.MessageOf(x)
|
|
5190
|
-
}
|
|
5191
|
-
|
|
5192
|
-
// Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
|
|
5193
|
-
func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
|
|
5194
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
|
|
5195
|
-
}
|
|
5196
|
-
|
|
5197
|
-
func (x *SecurityNotificationSetting) GetShowNotification() bool {
|
|
5198
|
-
if x != nil && x.ShowNotification != nil {
|
|
5199
|
-
return *x.ShowNotification
|
|
5200
|
-
}
|
|
5201
|
-
return false
|
|
5202
|
-
}
|
|
5203
|
-
|
|
5204
5442
|
type PinAction struct {
|
|
5205
5443
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
5206
5444
|
Pinned *bool `protobuf:"varint,1,opt,name=pinned" json:"pinned,omitempty"`
|
|
@@ -5210,7 +5448,7 @@ type PinAction struct {
|
|
|
5210
5448
|
|
|
5211
5449
|
func (x *PinAction) Reset() {
|
|
5212
5450
|
*x = PinAction{}
|
|
5213
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5451
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
5214
5452
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5215
5453
|
ms.StoreMessageInfo(mi)
|
|
5216
5454
|
}
|
|
@@ -5222,7 +5460,7 @@ func (x *PinAction) String() string {
|
|
|
5222
5460
|
func (*PinAction) ProtoMessage() {}
|
|
5223
5461
|
|
|
5224
5462
|
func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
5225
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5463
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
5226
5464
|
if x != nil {
|
|
5227
5465
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5228
5466
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5235,7 +5473,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
|
5235
5473
|
|
|
5236
5474
|
// Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
|
|
5237
5475
|
func (*PinAction) Descriptor() ([]byte, []int) {
|
|
5238
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5476
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{71}
|
|
5239
5477
|
}
|
|
5240
5478
|
|
|
5241
5479
|
func (x *PinAction) GetPinned() bool {
|
|
@@ -5256,7 +5494,7 @@ type MuteAction struct {
|
|
|
5256
5494
|
|
|
5257
5495
|
func (x *MuteAction) Reset() {
|
|
5258
5496
|
*x = MuteAction{}
|
|
5259
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5497
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
5260
5498
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5261
5499
|
ms.StoreMessageInfo(mi)
|
|
5262
5500
|
}
|
|
@@ -5268,7 +5506,7 @@ func (x *MuteAction) String() string {
|
|
|
5268
5506
|
func (*MuteAction) ProtoMessage() {}
|
|
5269
5507
|
|
|
5270
5508
|
func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
5271
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5509
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
5272
5510
|
if x != nil {
|
|
5273
5511
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5274
5512
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5281,7 +5519,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
|
5281
5519
|
|
|
5282
5520
|
// Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
|
|
5283
5521
|
func (*MuteAction) Descriptor() ([]byte, []int) {
|
|
5284
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5522
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{72}
|
|
5285
5523
|
}
|
|
5286
5524
|
|
|
5287
5525
|
func (x *MuteAction) GetMuted() bool {
|
|
@@ -5319,7 +5557,7 @@ type ContactAction struct {
|
|
|
5319
5557
|
|
|
5320
5558
|
func (x *ContactAction) Reset() {
|
|
5321
5559
|
*x = ContactAction{}
|
|
5322
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5560
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
|
|
5323
5561
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5324
5562
|
ms.StoreMessageInfo(mi)
|
|
5325
5563
|
}
|
|
@@ -5331,7 +5569,7 @@ func (x *ContactAction) String() string {
|
|
|
5331
5569
|
func (*ContactAction) ProtoMessage() {}
|
|
5332
5570
|
|
|
5333
5571
|
func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
5334
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5572
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
|
|
5335
5573
|
if x != nil {
|
|
5336
5574
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5337
5575
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5344,7 +5582,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
|
5344
5582
|
|
|
5345
5583
|
// Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
|
|
5346
5584
|
func (*ContactAction) Descriptor() ([]byte, []int) {
|
|
5347
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5585
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{73}
|
|
5348
5586
|
}
|
|
5349
5587
|
|
|
5350
5588
|
func (x *ContactAction) GetFullName() string {
|
|
@@ -5398,7 +5636,7 @@ type StarAction struct {
|
|
|
5398
5636
|
|
|
5399
5637
|
func (x *StarAction) Reset() {
|
|
5400
5638
|
*x = StarAction{}
|
|
5401
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5639
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
|
|
5402
5640
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5403
5641
|
ms.StoreMessageInfo(mi)
|
|
5404
5642
|
}
|
|
@@ -5410,7 +5648,7 @@ func (x *StarAction) String() string {
|
|
|
5410
5648
|
func (*StarAction) ProtoMessage() {}
|
|
5411
5649
|
|
|
5412
5650
|
func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
5413
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5651
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
|
|
5414
5652
|
if x != nil {
|
|
5415
5653
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5416
5654
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5423,7 +5661,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
|
5423
5661
|
|
|
5424
5662
|
// Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
|
|
5425
5663
|
func (*StarAction) Descriptor() ([]byte, []int) {
|
|
5426
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5664
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{74}
|
|
5427
5665
|
}
|
|
5428
5666
|
|
|
5429
5667
|
func (x *StarAction) GetStarred() bool {
|
|
@@ -5445,7 +5683,7 @@ type SyncActionData struct {
|
|
|
5445
5683
|
|
|
5446
5684
|
func (x *SyncActionData) Reset() {
|
|
5447
5685
|
*x = SyncActionData{}
|
|
5448
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5686
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[75]
|
|
5449
5687
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5450
5688
|
ms.StoreMessageInfo(mi)
|
|
5451
5689
|
}
|
|
@@ -5457,7 +5695,7 @@ func (x *SyncActionData) String() string {
|
|
|
5457
5695
|
func (*SyncActionData) ProtoMessage() {}
|
|
5458
5696
|
|
|
5459
5697
|
func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
5460
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5698
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[75]
|
|
5461
5699
|
if x != nil {
|
|
5462
5700
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5463
5701
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5470,7 +5708,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
|
5470
5708
|
|
|
5471
5709
|
// Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
|
|
5472
5710
|
func (*SyncActionData) Descriptor() ([]byte, []int) {
|
|
5473
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5711
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{75}
|
|
5474
5712
|
}
|
|
5475
5713
|
|
|
5476
5714
|
func (x *SyncActionData) GetIndex() []byte {
|
|
@@ -5511,7 +5749,7 @@ type CallLogRecord_ParticipantInfo struct {
|
|
|
5511
5749
|
|
|
5512
5750
|
func (x *CallLogRecord_ParticipantInfo) Reset() {
|
|
5513
5751
|
*x = CallLogRecord_ParticipantInfo{}
|
|
5514
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5752
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[76]
|
|
5515
5753
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5516
5754
|
ms.StoreMessageInfo(mi)
|
|
5517
5755
|
}
|
|
@@ -5523,7 +5761,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
|
|
|
5523
5761
|
func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
|
|
5524
5762
|
|
|
5525
5763
|
func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
|
|
5526
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5764
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[76]
|
|
5527
5765
|
if x != nil {
|
|
5528
5766
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5529
5767
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5562,7 +5800,7 @@ type FavoritesAction_Favorite struct {
|
|
|
5562
5800
|
|
|
5563
5801
|
func (x *FavoritesAction_Favorite) Reset() {
|
|
5564
5802
|
*x = FavoritesAction_Favorite{}
|
|
5565
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5803
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[77]
|
|
5566
5804
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5567
5805
|
ms.StoreMessageInfo(mi)
|
|
5568
5806
|
}
|
|
@@ -5574,7 +5812,7 @@ func (x *FavoritesAction_Favorite) String() string {
|
|
|
5574
5812
|
func (*FavoritesAction_Favorite) ProtoMessage() {}
|
|
5575
5813
|
|
|
5576
5814
|
func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
5577
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5815
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[77]
|
|
5578
5816
|
if x != nil {
|
|
5579
5817
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5580
5818
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5587,7 +5825,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
|
5587
5825
|
|
|
5588
5826
|
// Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
|
|
5589
5827
|
func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
|
|
5590
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5828
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24, 0}
|
|
5591
5829
|
}
|
|
5592
5830
|
|
|
5593
5831
|
func (x *FavoritesAction_Favorite) GetID() string {
|
|
@@ -5655,7 +5893,17 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5655
5893
|
"\x06FAILED\x10\b\x12\r\n" +
|
|
5656
5894
|
"\tABANDONED\x10\t\x12\v\n" +
|
|
5657
5895
|
"\aONGOING\x10\n" +
|
|
5658
|
-
"\"\
|
|
5896
|
+
"\"\xa4\x01\n" +
|
|
5897
|
+
"\x18InteractiveMessageAction\x12W\n" +
|
|
5898
|
+
"\x04type\x18\x01 \x02(\x0e2C.WASyncAction.InteractiveMessageAction.InteractiveMessageActionModeR\x04type\"/\n" +
|
|
5899
|
+
"\x1cInteractiveMessageActionMode\x12\x0f\n" +
|
|
5900
|
+
"\vDISABLE_CTA\x10\x01\"\xe5\x01\n" +
|
|
5901
|
+
"\x1ePrivateProcessingSettingAction\x12~\n" +
|
|
5902
|
+
"\x17privateProcessingStatus\x18\x01 \x01(\x0e2D.WASyncAction.PrivateProcessingSettingAction.PrivateProcessingStatusR\x17privateProcessingStatus\"C\n" +
|
|
5903
|
+
"\x17PrivateProcessingStatus\x12\r\n" +
|
|
5904
|
+
"\tUNDEFINED\x10\x00\x12\v\n" +
|
|
5905
|
+
"\aENABLED\x10\x01\x12\f\n" +
|
|
5906
|
+
"\bDISABLED\x10\x02\"\xf1\x01\n" +
|
|
5659
5907
|
"\x13AvatarUpdatedAction\x12O\n" +
|
|
5660
5908
|
"\teventType\x18\x01 \x01(\x0e21.WASyncAction.AvatarUpdatedAction.AvatarEventTypeR\teventType\x12O\n" +
|
|
5661
5909
|
"\x14recentAvatarStickers\x18\x02 \x03(\v2\x1b.WASyncAction.StickerActionR\x14recentAvatarStickers\"8\n" +
|
|
@@ -5681,12 +5929,15 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5681
5929
|
"\fALL_MESSAGES\x10\x01\x12\x0e\n" +
|
|
5682
5930
|
"\n" +
|
|
5683
5931
|
"HIGHLIGHTS\x10\x02\x12\x16\n" +
|
|
5684
|
-
"\x12DEFAULT_HIGHLIGHTS\x10\x03\"\
|
|
5932
|
+
"\x12DEFAULT_HIGHLIGHTS\x10\x03\"\xb3\x01\n" +
|
|
5685
5933
|
"\x1cWaffleAccountLinkStateAction\x12Y\n" +
|
|
5686
|
-
"\tlinkState\x18\x02 \x01(\x0e2;.WASyncAction.WaffleAccountLinkStateAction.AccountLinkStateR\tlinkState\"\
|
|
5934
|
+
"\tlinkState\x18\x02 \x01(\x0e2;.WASyncAction.WaffleAccountLinkStateAction.AccountLinkStateR\tlinkState\"8\n" +
|
|
5687
5935
|
"\x10AccountLinkState\x12\n" +
|
|
5688
5936
|
"\n" +
|
|
5689
|
-
"\x06ACTIVE\x10\x00\
|
|
5937
|
+
"\x06ACTIVE\x10\x00\x12\n" +
|
|
5938
|
+
"\n" +
|
|
5939
|
+
"\x06PAUSED\x10\x01\x12\f\n" +
|
|
5940
|
+
"\bUNLINKED\x10\x02\"\xed\x01\n" +
|
|
5690
5941
|
"\x1cMerchantPaymentPartnerAction\x12I\n" +
|
|
5691
5942
|
"\x06status\x18\x01 \x02(\x0e21.WASyncAction.MerchantPaymentPartnerAction.StatusR\x06status\x12\x18\n" +
|
|
5692
5943
|
"\acountry\x18\x02 \x02(\tR\acountry\x12 \n" +
|
|
@@ -5695,12 +5946,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5695
5946
|
"\x06Status\x12\n" +
|
|
5696
5947
|
"\n" +
|
|
5697
5948
|
"\x06ACTIVE\x10\x00\x12\f\n" +
|
|
5698
|
-
"\bINACTIVE\x10\x01\"\
|
|
5699
|
-
"\x10GalaxyFlowAction\x12G\n" +
|
|
5700
|
-
"\x04type\x18\x01 \x02(\x0e23.WASyncAction.GalaxyFlowAction.GalaxyFlowActionTypeR\x04type\"\"\n" +
|
|
5701
|
-
"\x14GalaxyFlowActionType\x12\n" +
|
|
5702
|
-
"\n" +
|
|
5703
|
-
"\x06LAUNCH\x10\x01\"\xfd\x01\n" +
|
|
5949
|
+
"\bINACTIVE\x10\x01\"\xfd\x01\n" +
|
|
5704
5950
|
"\x0eNoteEditAction\x129\n" +
|
|
5705
5951
|
"\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
|
|
5706
5952
|
"\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
|
|
@@ -5710,15 +5956,16 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5710
5956
|
"\bNoteType\x12\x10\n" +
|
|
5711
5957
|
"\fUNSTRUCTURED\x10\x01\x12\x0e\n" +
|
|
5712
5958
|
"\n" +
|
|
5713
|
-
"STRUCTURED\x10\x02\"\
|
|
5959
|
+
"STRUCTURED\x10\x02\"\xd7\x01\n" +
|
|
5714
5960
|
"\x13StatusPrivacyAction\x12L\n" +
|
|
5715
5961
|
"\x04mode\x18\x01 \x01(\x0e28.WASyncAction.StatusPrivacyAction.StatusDistributionModeR\x04mode\x12\x18\n" +
|
|
5716
|
-
"\auserJID\x18\x02 \x03(\tR\auserJID\"
|
|
5962
|
+
"\auserJID\x18\x02 \x03(\tR\auserJID\"X\n" +
|
|
5717
5963
|
"\x16StatusDistributionMode\x12\x0e\n" +
|
|
5718
5964
|
"\n" +
|
|
5719
5965
|
"ALLOW_LIST\x10\x00\x12\r\n" +
|
|
5720
5966
|
"\tDENY_LIST\x10\x01\x12\f\n" +
|
|
5721
|
-
"\bCONTACTS\x10\x02\
|
|
5967
|
+
"\bCONTACTS\x10\x02\x12\x11\n" +
|
|
5968
|
+
"\rCLOSE_FRIENDS\x10\x03\"\xc7\x02\n" +
|
|
5722
5969
|
"\x16MarketingMessageAction\x12\x12\n" +
|
|
5723
5970
|
"\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n" +
|
|
5724
5971
|
"\amessage\x18\x02 \x01(\tR\amessage\x12V\n" +
|
|
@@ -5735,7 +5982,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5735
5982
|
"\rchatStartMode\x18\x01 \x01(\x0e27.WASyncAction.UsernameChatStartModeAction.ChatStartModeR\rchatStartMode\" \n" +
|
|
5736
5983
|
"\rChatStartMode\x12\a\n" +
|
|
5737
5984
|
"\x03LID\x10\x01\x12\x06\n" +
|
|
5738
|
-
"\x02PN\x10\x02\"\
|
|
5985
|
+
"\x02PN\x10\x02\"\xd4\x03\n" +
|
|
5739
5986
|
"\x0fLabelEditAction\x12\x12\n" +
|
|
5740
5987
|
"\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
|
|
5741
5988
|
"\x05color\x18\x02 \x01(\x05R\x05color\x12\"\n" +
|
|
@@ -5746,7 +5993,8 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5746
5993
|
"orderIndex\x12\x1a\n" +
|
|
5747
5994
|
"\bisActive\x18\x06 \x01(\bR\bisActive\x12:\n" +
|
|
5748
5995
|
"\x04type\x18\a \x01(\x0e2&.WASyncAction.LabelEditAction.ListTypeR\x04type\x12 \n" +
|
|
5749
|
-
"\visImmutable\x18\b \x01(\bR\visImmutable\
|
|
5996
|
+
"\visImmutable\x18\b \x01(\bR\visImmutable\x12$\n" +
|
|
5997
|
+
"\rmuteEndTimeMS\x18\t \x01(\x03R\rmuteEndTimeMS\"\x98\x01\n" +
|
|
5750
5998
|
"\bListType\x12\b\n" +
|
|
5751
5999
|
"\x04NONE\x10\x00\x12\n" +
|
|
5752
6000
|
"\n" +
|
|
@@ -5759,7 +6007,10 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5759
6007
|
"\n" +
|
|
5760
6008
|
"\x06CUSTOM\x10\x05\x12\r\n" +
|
|
5761
6009
|
"\tCOMMUNITY\x10\x06\x12\x13\n" +
|
|
5762
|
-
"\x0fSERVER_ASSIGNED\x10\a\
|
|
6010
|
+
"\x0fSERVER_ASSIGNED\x10\a\x12\v\n" +
|
|
6011
|
+
"\aDRAFTED\x10\b\x12\x0e\n" +
|
|
6012
|
+
"\n" +
|
|
6013
|
+
"AI_HANDOFF\x10\t\"\x98\x05\n" +
|
|
5763
6014
|
"\x0ePatchDebugData\x12$\n" +
|
|
5764
6015
|
"\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
|
|
5765
6016
|
"\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
|
|
@@ -5792,7 +6043,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5792
6043
|
"\x04CAPI\x10\v\"A\n" +
|
|
5793
6044
|
"\x11RecentEmojiWeight\x12\x14\n" +
|
|
5794
6045
|
"\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
|
|
5795
|
-
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\
|
|
6046
|
+
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\xf30\n" +
|
|
5796
6047
|
"\x0fSyncActionValue\x12\x1c\n" +
|
|
5797
6048
|
"\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
|
|
5798
6049
|
"\n" +
|
|
@@ -5802,8 +6053,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5802
6053
|
"\n" +
|
|
5803
6054
|
"muteAction\x18\x04 \x01(\v2\x18.WASyncAction.MuteActionR\n" +
|
|
5804
6055
|
"muteAction\x125\n" +
|
|
5805
|
-
"\tpinAction\x18\x05 \x01(\v2\x17.WASyncAction.PinActionR\tpinAction\
|
|
5806
|
-
"\x1bsecurityNotificationSetting\x18\x06 \x01(\v2).WASyncAction.SecurityNotificationSettingR\x1bsecurityNotificationSetting\x12G\n" +
|
|
6056
|
+
"\tpinAction\x18\x05 \x01(\v2\x17.WASyncAction.PinActionR\tpinAction\x12G\n" +
|
|
5807
6057
|
"\x0fpushNameSetting\x18\a \x01(\v2\x1d.WASyncAction.PushNameSettingR\x0fpushNameSetting\x12J\n" +
|
|
5808
6058
|
"\x10quickReplyAction\x18\b \x01(\v2\x1e.WASyncAction.QuickReplyActionR\x10quickReplyAction\x12b\n" +
|
|
5809
6059
|
"\x18recentEmojiWeightsAction\x18\v \x01(\v2&.WASyncAction.RecentEmojiWeightsActionR\x18recentEmojiWeightsAction\x12G\n" +
|
|
@@ -5834,7 +6084,8 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5834
6084
|
"\x1fmarketingMessageBroadcastAction\x18' \x01(\v2-.WASyncAction.MarketingMessageBroadcastActionR\x1fmarketingMessageBroadcastAction\x12Y\n" +
|
|
5835
6085
|
"\x15externalWebBetaAction\x18( \x01(\v2#.WASyncAction.ExternalWebBetaActionR\x15externalWebBetaAction\x12k\n" +
|
|
5836
6086
|
"\x1bprivacySettingRelayAllCalls\x18) \x01(\v2).WASyncAction.PrivacySettingRelayAllCallsR\x1bprivacySettingRelayAllCalls\x12A\n" +
|
|
5837
|
-
"\rcallLogAction\x18* \x01(\v2\x1b.WASyncAction.CallLogActionR\rcallLogAction\
|
|
6087
|
+
"\rcallLogAction\x18* \x01(\v2\x1b.WASyncAction.CallLogActionR\rcallLogAction\x12,\n" +
|
|
6088
|
+
"\x06ugcBot\x18+ \x01(\v2\x14.WASyncAction.UGCBotR\x06ugcBot\x12G\n" +
|
|
5838
6089
|
"\rstatusPrivacy\x18, \x01(\v2!.WASyncAction.StatusPrivacyActionR\rstatusPrivacy\x12_\n" +
|
|
5839
6090
|
"\x17botWelcomeRequestAction\x18- \x01(\v2%.WASyncAction.BotWelcomeRequestActionR\x17botWelcomeRequestAction\x12e\n" +
|
|
5840
6091
|
"\x17deleteIndividualCallLog\x18. \x01(\v2+.WASyncAction.DeleteIndividualCallLogActionR\x17deleteIndividualCallLog\x12Y\n" +
|
|
@@ -5862,8 +6113,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5862
6113
|
"\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
|
|
5863
6114
|
"\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
|
|
5864
6115
|
",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\x12S\n" +
|
|
5865
|
-
"\x13avatarUpdatedAction\x18H \x01(\v2!.WASyncAction.AvatarUpdatedActionR\x13avatarUpdatedAction\
|
|
5866
|
-
"\
|
|
6116
|
+
"\x13avatarUpdatedAction\x18H \x01(\v2!.WASyncAction.AvatarUpdatedActionR\x13avatarUpdatedAction\x12t\n" +
|
|
6117
|
+
"\x1eprivateProcessingSettingAction\x18J \x01(\v2,.WASyncAction.PrivateProcessingSettingActionR\x1eprivateProcessingSettingAction\x12t\n" +
|
|
6118
|
+
"\x1enewsletterSavedInterestsAction\x18K \x01(\v2,.WASyncAction.NewsletterSavedInterestsActionR\x1enewsletterSavedInterestsAction\x12V\n" +
|
|
6119
|
+
"\x14aiThreadRenameAction\x18L \x01(\v2\".WASyncAction.AiThreadRenameActionR\x14aiThreadRenameAction\x12b\n" +
|
|
6120
|
+
"\x18interactiveMessageAction\x18M \x01(\v2&.WASyncAction.InteractiveMessageActionR\x18interactiveMessageAction\"V\n" +
|
|
6121
|
+
"\x14AiThreadRenameAction\x12\x1a\n" +
|
|
6122
|
+
"\bnewTitle\x18\x01 \x01(\tR\bnewTitle\x12\"\n" +
|
|
6123
|
+
"\fisFromServer\x18\x02 \x01(\bR\fisFromServer\"H\n" +
|
|
5867
6124
|
",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
|
|
5868
6125
|
"\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
|
|
5869
6126
|
"\x18BroadcastListParticipant\x12\x16\n" +
|
|
@@ -5876,12 +6133,11 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5876
6133
|
"\"BusinessBroadcastAssociationAction\x12\x18\n" +
|
|
5877
6134
|
"\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
|
|
5878
6135
|
" CtwaPerCustomerDataSharingAction\x12P\n" +
|
|
5879
|
-
"#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\
|
|
6136
|
+
"#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"h\n" +
|
|
5880
6137
|
"\x10LidContactAction\x12\x1a\n" +
|
|
5881
6138
|
"\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
|
|
5882
6139
|
"\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x1a\n" +
|
|
5883
|
-
"\busername\x18\x03 \x01(\tR\busername\
|
|
5884
|
-
"\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\"s\n" +
|
|
6140
|
+
"\busername\x18\x03 \x01(\tR\busername\"s\n" +
|
|
5885
6141
|
"\x0fFavoritesAction\x12D\n" +
|
|
5886
6142
|
"\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
|
|
5887
6143
|
"\bFavorite\x12\x0e\n" +
|
|
@@ -5916,9 +6172,15 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5916
6172
|
"isIncoming\x18\x02 \x01(\bR\n" +
|
|
5917
6173
|
"isIncoming\"1\n" +
|
|
5918
6174
|
"\x17BotWelcomeRequestAction\x12\x16\n" +
|
|
5919
|
-
"\x06isSent\x18\x01 \x01(\bR\x06isSent\"
|
|
6175
|
+
"\x06isSent\x18\x01 \x01(\bR\x06isSent\"\\\n" +
|
|
6176
|
+
"\x1eNewsletterSavedInterestsAction\x12:\n" +
|
|
6177
|
+
"\x18newsletterSavedInterests\x18\x01 \x01(\tR\x18newsletterSavedInterests\"5\n" +
|
|
5920
6178
|
"\x11MusicUserIdAction\x12 \n" +
|
|
5921
|
-
"\vmusicUserID\x18\x01 \x01(\tR\vmusicUserID\"
|
|
6179
|
+
"\vmusicUserID\x18\x01 \x01(\tR\vmusicUserID\"(\n" +
|
|
6180
|
+
"\x06UGCBot\x12\x1e\n" +
|
|
6181
|
+
"\n" +
|
|
6182
|
+
"definition\x18\x01 \x01(\fR\n" +
|
|
6183
|
+
"definition\"R\n" +
|
|
5922
6184
|
"\rCallLogAction\x12A\n" +
|
|
5923
6185
|
"\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
|
|
5924
6186
|
"\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
|
|
@@ -6017,9 +6279,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
6017
6279
|
"\rLocaleSetting\x12\x16\n" +
|
|
6018
6280
|
"\x06locale\x18\x01 \x01(\tR\x06locale\"%\n" +
|
|
6019
6281
|
"\x0fPushNameSetting\x12\x12\n" +
|
|
6020
|
-
"\x04name\x18\x01 \x01(\tR\x04name\"
|
|
6021
|
-
"\x1bSecurityNotificationSetting\x12*\n" +
|
|
6022
|
-
"\x10showNotification\x18\x01 \x01(\bR\x10showNotification\"#\n" +
|
|
6282
|
+
"\x04name\x18\x01 \x01(\tR\x04name\"#\n" +
|
|
6023
6283
|
"\tPinAction\x12\x16\n" +
|
|
6024
6284
|
"\x06pinned\x18\x01 \x01(\bR\x06pinned\"l\n" +
|
|
6025
6285
|
"\n" +
|
|
@@ -6055,207 +6315,215 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
|
|
|
6055
6315
|
return file_waSyncAction_WASyncAction_proto_rawDescData
|
|
6056
6316
|
}
|
|
6057
6317
|
|
|
6058
|
-
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
6059
|
-
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
6318
|
+
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 17)
|
|
6319
|
+
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 78)
|
|
6060
6320
|
var file_waSyncAction_WASyncAction_proto_goTypes = []any{
|
|
6061
6321
|
(CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
|
|
6062
6322
|
(CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
|
|
6063
6323
|
(CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
|
|
6064
|
-
(
|
|
6065
|
-
(
|
|
6066
|
-
(
|
|
6067
|
-
(
|
|
6068
|
-
(
|
|
6069
|
-
(
|
|
6070
|
-
(
|
|
6071
|
-
(
|
|
6072
|
-
(
|
|
6073
|
-
(
|
|
6074
|
-
(
|
|
6075
|
-
(
|
|
6076
|
-
(
|
|
6077
|
-
(
|
|
6078
|
-
(*
|
|
6079
|
-
(*
|
|
6080
|
-
(*
|
|
6081
|
-
(*
|
|
6082
|
-
(*
|
|
6083
|
-
(*
|
|
6084
|
-
(*
|
|
6085
|
-
(*
|
|
6086
|
-
(*
|
|
6087
|
-
(*
|
|
6088
|
-
(*
|
|
6089
|
-
(*
|
|
6090
|
-
(*
|
|
6091
|
-
(*
|
|
6092
|
-
(*
|
|
6093
|
-
(*
|
|
6094
|
-
(*
|
|
6095
|
-
(*
|
|
6096
|
-
(*
|
|
6097
|
-
(*
|
|
6098
|
-
(*
|
|
6099
|
-
(*
|
|
6100
|
-
(*
|
|
6101
|
-
(*
|
|
6102
|
-
(*
|
|
6103
|
-
(*
|
|
6104
|
-
(*
|
|
6105
|
-
(*
|
|
6106
|
-
(*
|
|
6107
|
-
(*
|
|
6108
|
-
(*
|
|
6109
|
-
(*
|
|
6110
|
-
(*
|
|
6111
|
-
(*
|
|
6112
|
-
(*
|
|
6113
|
-
(*
|
|
6114
|
-
(*
|
|
6115
|
-
(*
|
|
6116
|
-
(*
|
|
6117
|
-
(*
|
|
6118
|
-
(*
|
|
6119
|
-
(*
|
|
6120
|
-
(*
|
|
6121
|
-
(*
|
|
6122
|
-
(*
|
|
6123
|
-
(*
|
|
6124
|
-
(*
|
|
6125
|
-
(*
|
|
6126
|
-
(*
|
|
6127
|
-
(*
|
|
6128
|
-
(*
|
|
6129
|
-
(*
|
|
6130
|
-
(*
|
|
6131
|
-
(*
|
|
6132
|
-
(*
|
|
6133
|
-
(*
|
|
6134
|
-
(*
|
|
6135
|
-
(*
|
|
6136
|
-
(*
|
|
6137
|
-
(*
|
|
6138
|
-
(*
|
|
6139
|
-
(*
|
|
6140
|
-
(*
|
|
6141
|
-
(*
|
|
6142
|
-
(*
|
|
6143
|
-
(*
|
|
6144
|
-
(*
|
|
6145
|
-
(*
|
|
6146
|
-
(*
|
|
6147
|
-
(*
|
|
6148
|
-
(*
|
|
6149
|
-
(*
|
|
6150
|
-
(*
|
|
6151
|
-
(*
|
|
6152
|
-
(*
|
|
6153
|
-
(*
|
|
6154
|
-
(*
|
|
6324
|
+
(InteractiveMessageAction_InteractiveMessageActionMode)(0), // 3: WASyncAction.InteractiveMessageAction.InteractiveMessageActionMode
|
|
6325
|
+
(PrivateProcessingSettingAction_PrivateProcessingStatus)(0), // 4: WASyncAction.PrivateProcessingSettingAction.PrivateProcessingStatus
|
|
6326
|
+
(AvatarUpdatedAction_AvatarEventType)(0), // 5: WASyncAction.AvatarUpdatedAction.AvatarEventType
|
|
6327
|
+
(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 6: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
6328
|
+
(PaymentTosAction_PaymentNotice)(0), // 7: WASyncAction.PaymentTosAction.PaymentNotice
|
|
6329
|
+
(NotificationActivitySettingAction_NotificationActivitySetting)(0), // 8: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
6330
|
+
(WaffleAccountLinkStateAction_AccountLinkState)(0), // 9: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
6331
|
+
(MerchantPaymentPartnerAction_Status)(0), // 10: WASyncAction.MerchantPaymentPartnerAction.Status
|
|
6332
|
+
(NoteEditAction_NoteType)(0), // 11: WASyncAction.NoteEditAction.NoteType
|
|
6333
|
+
(StatusPrivacyAction_StatusDistributionMode)(0), // 12: WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
6334
|
+
(MarketingMessageAction_MarketingMessagePrototypeType)(0), // 13: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
6335
|
+
(UsernameChatStartModeAction_ChatStartMode)(0), // 14: WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
6336
|
+
(LabelEditAction_ListType)(0), // 15: WASyncAction.LabelEditAction.ListType
|
|
6337
|
+
(PatchDebugData_Platform)(0), // 16: WASyncAction.PatchDebugData.Platform
|
|
6338
|
+
(*CallLogRecord)(nil), // 17: WASyncAction.CallLogRecord
|
|
6339
|
+
(*InteractiveMessageAction)(nil), // 18: WASyncAction.InteractiveMessageAction
|
|
6340
|
+
(*PrivateProcessingSettingAction)(nil), // 19: WASyncAction.PrivateProcessingSettingAction
|
|
6341
|
+
(*AvatarUpdatedAction)(nil), // 20: WASyncAction.AvatarUpdatedAction
|
|
6342
|
+
(*MaibaAIFeaturesControlAction)(nil), // 21: WASyncAction.MaibaAIFeaturesControlAction
|
|
6343
|
+
(*PaymentTosAction)(nil), // 22: WASyncAction.PaymentTosAction
|
|
6344
|
+
(*NotificationActivitySettingAction)(nil), // 23: WASyncAction.NotificationActivitySettingAction
|
|
6345
|
+
(*WaffleAccountLinkStateAction)(nil), // 24: WASyncAction.WaffleAccountLinkStateAction
|
|
6346
|
+
(*MerchantPaymentPartnerAction)(nil), // 25: WASyncAction.MerchantPaymentPartnerAction
|
|
6347
|
+
(*NoteEditAction)(nil), // 26: WASyncAction.NoteEditAction
|
|
6348
|
+
(*StatusPrivacyAction)(nil), // 27: WASyncAction.StatusPrivacyAction
|
|
6349
|
+
(*MarketingMessageAction)(nil), // 28: WASyncAction.MarketingMessageAction
|
|
6350
|
+
(*UsernameChatStartModeAction)(nil), // 29: WASyncAction.UsernameChatStartModeAction
|
|
6351
|
+
(*LabelEditAction)(nil), // 30: WASyncAction.LabelEditAction
|
|
6352
|
+
(*PatchDebugData)(nil), // 31: WASyncAction.PatchDebugData
|
|
6353
|
+
(*RecentEmojiWeight)(nil), // 32: WASyncAction.RecentEmojiWeight
|
|
6354
|
+
(*SyncActionValue)(nil), // 33: WASyncAction.SyncActionValue
|
|
6355
|
+
(*AiThreadRenameAction)(nil), // 34: WASyncAction.AiThreadRenameAction
|
|
6356
|
+
(*StatusPostOptInNotificationPreferencesAction)(nil), // 35: WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
6357
|
+
(*BroadcastListParticipant)(nil), // 36: WASyncAction.BroadcastListParticipant
|
|
6358
|
+
(*BusinessBroadcastListAction)(nil), // 37: WASyncAction.BusinessBroadcastListAction
|
|
6359
|
+
(*BusinessBroadcastAssociationAction)(nil), // 38: WASyncAction.BusinessBroadcastAssociationAction
|
|
6360
|
+
(*CtwaPerCustomerDataSharingAction)(nil), // 39: WASyncAction.CtwaPerCustomerDataSharingAction
|
|
6361
|
+
(*LidContactAction)(nil), // 40: WASyncAction.LidContactAction
|
|
6362
|
+
(*FavoritesAction)(nil), // 41: WASyncAction.FavoritesAction
|
|
6363
|
+
(*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 42: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
6364
|
+
(*PrivacySettingDisableLinkPreviewsAction)(nil), // 43: WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
6365
|
+
(*WamoUserIdentifierAction)(nil), // 44: WASyncAction.WamoUserIdentifierAction
|
|
6366
|
+
(*LockChatAction)(nil), // 45: WASyncAction.LockChatAction
|
|
6367
|
+
(*CustomPaymentMethodsAction)(nil), // 46: WASyncAction.CustomPaymentMethodsAction
|
|
6368
|
+
(*CustomPaymentMethod)(nil), // 47: WASyncAction.CustomPaymentMethod
|
|
6369
|
+
(*CustomPaymentMethodMetadata)(nil), // 48: WASyncAction.CustomPaymentMethodMetadata
|
|
6370
|
+
(*PaymentInfoAction)(nil), // 49: WASyncAction.PaymentInfoAction
|
|
6371
|
+
(*LabelReorderingAction)(nil), // 50: WASyncAction.LabelReorderingAction
|
|
6372
|
+
(*DeleteIndividualCallLogAction)(nil), // 51: WASyncAction.DeleteIndividualCallLogAction
|
|
6373
|
+
(*BotWelcomeRequestAction)(nil), // 52: WASyncAction.BotWelcomeRequestAction
|
|
6374
|
+
(*NewsletterSavedInterestsAction)(nil), // 53: WASyncAction.NewsletterSavedInterestsAction
|
|
6375
|
+
(*MusicUserIdAction)(nil), // 54: WASyncAction.MusicUserIdAction
|
|
6376
|
+
(*UGCBot)(nil), // 55: WASyncAction.UGCBot
|
|
6377
|
+
(*CallLogAction)(nil), // 56: WASyncAction.CallLogAction
|
|
6378
|
+
(*PrivacySettingRelayAllCalls)(nil), // 57: WASyncAction.PrivacySettingRelayAllCalls
|
|
6379
|
+
(*DetectedOutcomesStatusAction)(nil), // 58: WASyncAction.DetectedOutcomesStatusAction
|
|
6380
|
+
(*ExternalWebBetaAction)(nil), // 59: WASyncAction.ExternalWebBetaAction
|
|
6381
|
+
(*MarketingMessageBroadcastAction)(nil), // 60: WASyncAction.MarketingMessageBroadcastAction
|
|
6382
|
+
(*PnForLidChatAction)(nil), // 61: WASyncAction.PnForLidChatAction
|
|
6383
|
+
(*ChatAssignmentOpenedStatusAction)(nil), // 62: WASyncAction.ChatAssignmentOpenedStatusAction
|
|
6384
|
+
(*ChatAssignmentAction)(nil), // 63: WASyncAction.ChatAssignmentAction
|
|
6385
|
+
(*StickerAction)(nil), // 64: WASyncAction.StickerAction
|
|
6386
|
+
(*RemoveRecentStickerAction)(nil), // 65: WASyncAction.RemoveRecentStickerAction
|
|
6387
|
+
(*PrimaryVersionAction)(nil), // 66: WASyncAction.PrimaryVersionAction
|
|
6388
|
+
(*NuxAction)(nil), // 67: WASyncAction.NuxAction
|
|
6389
|
+
(*TimeFormatAction)(nil), // 68: WASyncAction.TimeFormatAction
|
|
6390
|
+
(*UserStatusMuteAction)(nil), // 69: WASyncAction.UserStatusMuteAction
|
|
6391
|
+
(*SubscriptionAction)(nil), // 70: WASyncAction.SubscriptionAction
|
|
6392
|
+
(*AgentAction)(nil), // 71: WASyncAction.AgentAction
|
|
6393
|
+
(*AndroidUnsupportedActions)(nil), // 72: WASyncAction.AndroidUnsupportedActions
|
|
6394
|
+
(*PrimaryFeature)(nil), // 73: WASyncAction.PrimaryFeature
|
|
6395
|
+
(*KeyExpiration)(nil), // 74: WASyncAction.KeyExpiration
|
|
6396
|
+
(*SyncActionMessage)(nil), // 75: WASyncAction.SyncActionMessage
|
|
6397
|
+
(*SyncActionMessageRange)(nil), // 76: WASyncAction.SyncActionMessageRange
|
|
6398
|
+
(*UnarchiveChatsSetting)(nil), // 77: WASyncAction.UnarchiveChatsSetting
|
|
6399
|
+
(*DeleteChatAction)(nil), // 78: WASyncAction.DeleteChatAction
|
|
6400
|
+
(*ClearChatAction)(nil), // 79: WASyncAction.ClearChatAction
|
|
6401
|
+
(*MarkChatAsReadAction)(nil), // 80: WASyncAction.MarkChatAsReadAction
|
|
6402
|
+
(*DeleteMessageForMeAction)(nil), // 81: WASyncAction.DeleteMessageForMeAction
|
|
6403
|
+
(*ArchiveChatAction)(nil), // 82: WASyncAction.ArchiveChatAction
|
|
6404
|
+
(*RecentEmojiWeightsAction)(nil), // 83: WASyncAction.RecentEmojiWeightsAction
|
|
6405
|
+
(*LabelAssociationAction)(nil), // 84: WASyncAction.LabelAssociationAction
|
|
6406
|
+
(*QuickReplyAction)(nil), // 85: WASyncAction.QuickReplyAction
|
|
6407
|
+
(*LocaleSetting)(nil), // 86: WASyncAction.LocaleSetting
|
|
6408
|
+
(*PushNameSetting)(nil), // 87: WASyncAction.PushNameSetting
|
|
6409
|
+
(*PinAction)(nil), // 88: WASyncAction.PinAction
|
|
6410
|
+
(*MuteAction)(nil), // 89: WASyncAction.MuteAction
|
|
6411
|
+
(*ContactAction)(nil), // 90: WASyncAction.ContactAction
|
|
6412
|
+
(*StarAction)(nil), // 91: WASyncAction.StarAction
|
|
6413
|
+
(*SyncActionData)(nil), // 92: WASyncAction.SyncActionData
|
|
6414
|
+
(*CallLogRecord_ParticipantInfo)(nil), // 93: WASyncAction.CallLogRecord.ParticipantInfo
|
|
6415
|
+
(*FavoritesAction_Favorite)(nil), // 94: WASyncAction.FavoritesAction.Favorite
|
|
6416
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 95: WAProtobufsChatLockSettings.ChatLockSettings
|
|
6417
|
+
(*waDeviceCapabilities.DeviceCapabilities)(nil), // 96: WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
6418
|
+
(*waCommon.MessageKey)(nil), // 97: WACommon.MessageKey
|
|
6155
6419
|
}
|
|
6156
6420
|
var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
|
|
6157
|
-
2,
|
|
6158
|
-
1,
|
|
6159
|
-
|
|
6160
|
-
0,
|
|
6161
|
-
3,
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
6,
|
|
6166
|
-
7,
|
|
6167
|
-
8,
|
|
6168
|
-
9,
|
|
6169
|
-
10,
|
|
6170
|
-
11,
|
|
6171
|
-
12,
|
|
6172
|
-
13,
|
|
6173
|
-
14,
|
|
6174
|
-
15,
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
6247
|
-
|
|
6248
|
-
|
|
6249
|
-
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
|
|
6421
|
+
2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
6422
|
+
1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
|
|
6423
|
+
93, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
|
|
6424
|
+
0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
|
|
6425
|
+
3, // 4: WASyncAction.InteractiveMessageAction.type:type_name -> WASyncAction.InteractiveMessageAction.InteractiveMessageActionMode
|
|
6426
|
+
4, // 5: WASyncAction.PrivateProcessingSettingAction.privateProcessingStatus:type_name -> WASyncAction.PrivateProcessingSettingAction.PrivateProcessingStatus
|
|
6427
|
+
5, // 6: WASyncAction.AvatarUpdatedAction.eventType:type_name -> WASyncAction.AvatarUpdatedAction.AvatarEventType
|
|
6428
|
+
64, // 7: WASyncAction.AvatarUpdatedAction.recentAvatarStickers:type_name -> WASyncAction.StickerAction
|
|
6429
|
+
6, // 8: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
6430
|
+
7, // 9: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
|
|
6431
|
+
8, // 10: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
6432
|
+
9, // 11: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
6433
|
+
10, // 12: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
|
|
6434
|
+
11, // 13: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
|
|
6435
|
+
12, // 14: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
6436
|
+
13, // 15: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
6437
|
+
14, // 16: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
6438
|
+
15, // 17: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
|
|
6439
|
+
16, // 18: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
|
|
6440
|
+
91, // 19: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
|
|
6441
|
+
90, // 20: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
|
|
6442
|
+
89, // 21: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
|
|
6443
|
+
88, // 22: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
|
|
6444
|
+
87, // 23: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
|
|
6445
|
+
85, // 24: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
|
|
6446
|
+
83, // 25: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
|
|
6447
|
+
30, // 26: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
|
|
6448
|
+
84, // 27: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
|
|
6449
|
+
86, // 28: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
|
|
6450
|
+
82, // 29: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
|
|
6451
|
+
81, // 30: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
|
|
6452
|
+
74, // 31: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
|
|
6453
|
+
80, // 32: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
|
|
6454
|
+
79, // 33: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
|
|
6455
|
+
78, // 34: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
|
|
6456
|
+
77, // 35: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
|
|
6457
|
+
73, // 36: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
|
|
6458
|
+
72, // 37: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
|
|
6459
|
+
71, // 38: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
|
|
6460
|
+
70, // 39: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
|
|
6461
|
+
69, // 40: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
|
|
6462
|
+
68, // 41: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
|
|
6463
|
+
67, // 42: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
|
|
6464
|
+
66, // 43: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
|
|
6465
|
+
64, // 44: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
|
|
6466
|
+
65, // 45: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
|
|
6467
|
+
63, // 46: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
|
|
6468
|
+
62, // 47: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
|
|
6469
|
+
61, // 48: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
|
|
6470
|
+
28, // 49: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
|
|
6471
|
+
60, // 50: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
|
|
6472
|
+
59, // 51: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
|
|
6473
|
+
57, // 52: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
|
|
6474
|
+
56, // 53: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
|
|
6475
|
+
55, // 54: WASyncAction.SyncActionValue.ugcBot:type_name -> WASyncAction.UGCBot
|
|
6476
|
+
27, // 55: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
|
|
6477
|
+
52, // 56: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
|
|
6478
|
+
51, // 57: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
|
|
6479
|
+
50, // 58: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
|
|
6480
|
+
49, // 59: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
|
|
6481
|
+
46, // 60: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
|
|
6482
|
+
45, // 61: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
|
|
6483
|
+
95, // 62: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
6484
|
+
44, // 63: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
|
|
6485
|
+
43, // 64: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
6486
|
+
96, // 65: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
6487
|
+
26, // 66: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
|
|
6488
|
+
41, // 67: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
|
|
6489
|
+
25, // 68: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
|
|
6490
|
+
24, // 69: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
|
|
6491
|
+
29, // 70: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
|
|
6492
|
+
23, // 71: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
|
|
6493
|
+
40, // 72: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
|
|
6494
|
+
39, // 73: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
|
|
6495
|
+
22, // 74: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
|
|
6496
|
+
42, // 75: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
6497
|
+
38, // 76: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
|
|
6498
|
+
58, // 77: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
|
|
6499
|
+
21, // 78: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
|
|
6500
|
+
37, // 79: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
|
|
6501
|
+
54, // 80: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
|
|
6502
|
+
35, // 81: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
6503
|
+
20, // 82: WASyncAction.SyncActionValue.avatarUpdatedAction:type_name -> WASyncAction.AvatarUpdatedAction
|
|
6504
|
+
19, // 83: WASyncAction.SyncActionValue.privateProcessingSettingAction:type_name -> WASyncAction.PrivateProcessingSettingAction
|
|
6505
|
+
53, // 84: WASyncAction.SyncActionValue.newsletterSavedInterestsAction:type_name -> WASyncAction.NewsletterSavedInterestsAction
|
|
6506
|
+
34, // 85: WASyncAction.SyncActionValue.aiThreadRenameAction:type_name -> WASyncAction.AiThreadRenameAction
|
|
6507
|
+
18, // 86: WASyncAction.SyncActionValue.interactiveMessageAction:type_name -> WASyncAction.InteractiveMessageAction
|
|
6508
|
+
36, // 87: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
|
|
6509
|
+
94, // 88: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
|
|
6510
|
+
47, // 89: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
|
|
6511
|
+
48, // 90: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
|
|
6512
|
+
17, // 91: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
|
|
6513
|
+
97, // 92: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
6514
|
+
75, // 93: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
|
|
6515
|
+
76, // 94: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6516
|
+
76, // 95: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6517
|
+
76, // 96: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6518
|
+
76, // 97: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6519
|
+
32, // 98: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
|
|
6520
|
+
33, // 99: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
|
|
6521
|
+
2, // 100: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
6522
|
+
101, // [101:101] is the sub-list for method output_type
|
|
6523
|
+
101, // [101:101] is the sub-list for method input_type
|
|
6524
|
+
101, // [101:101] is the sub-list for extension type_name
|
|
6525
|
+
101, // [101:101] is the sub-list for extension extendee
|
|
6526
|
+
0, // [0:101] is the sub-list for field type_name
|
|
6259
6527
|
}
|
|
6260
6528
|
|
|
6261
6529
|
func init() { file_waSyncAction_WASyncAction_proto_init() }
|
|
@@ -6268,8 +6536,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
|
|
|
6268
6536
|
File: protoimpl.DescBuilder{
|
|
6269
6537
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
6270
6538
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
|
|
6271
|
-
NumEnums:
|
|
6272
|
-
NumMessages:
|
|
6539
|
+
NumEnums: 17,
|
|
6540
|
+
NumMessages: 78,
|
|
6273
6541
|
NumExtensions: 0,
|
|
6274
6542
|
NumServices: 0,
|
|
6275
6543
|
},
|