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: waAICommon/WAAICommon.proto
|
|
6
6
|
|
|
@@ -64,6 +64,8 @@ const (
|
|
|
64
64
|
BotMetricsEntryPoint_MESSAGE_QUICK_ACTION_GROUP_CHAT BotMetricsEntryPoint = 34
|
|
65
65
|
BotMetricsEntryPoint_ATTACHMENT_TRAY_1_ON_1_CHAT BotMetricsEntryPoint = 35
|
|
66
66
|
BotMetricsEntryPoint_ATTACHMENT_TRAY_GROUP_CHAT BotMetricsEntryPoint = 36
|
|
67
|
+
BotMetricsEntryPoint_ASK_META_AI_MEDIA_VIEWER_1ON1 BotMetricsEntryPoint = 37
|
|
68
|
+
BotMetricsEntryPoint_ASK_META_AI_MEDIA_VIEWER_GROUP BotMetricsEntryPoint = 38
|
|
67
69
|
)
|
|
68
70
|
|
|
69
71
|
// Enum value maps for BotMetricsEntryPoint.
|
|
@@ -106,6 +108,8 @@ var (
|
|
|
106
108
|
34: "MESSAGE_QUICK_ACTION_GROUP_CHAT",
|
|
107
109
|
35: "ATTACHMENT_TRAY_1_ON_1_CHAT",
|
|
108
110
|
36: "ATTACHMENT_TRAY_GROUP_CHAT",
|
|
111
|
+
37: "ASK_META_AI_MEDIA_VIEWER_1ON1",
|
|
112
|
+
38: "ASK_META_AI_MEDIA_VIEWER_GROUP",
|
|
109
113
|
}
|
|
110
114
|
BotMetricsEntryPoint_value = map[string]int32{
|
|
111
115
|
"UNDEFINED_ENTRY_POINT": 0,
|
|
@@ -145,6 +149,8 @@ var (
|
|
|
145
149
|
"MESSAGE_QUICK_ACTION_GROUP_CHAT": 34,
|
|
146
150
|
"ATTACHMENT_TRAY_1_ON_1_CHAT": 35,
|
|
147
151
|
"ATTACHMENT_TRAY_GROUP_CHAT": 36,
|
|
152
|
+
"ASK_META_AI_MEDIA_VIEWER_1ON1": 37,
|
|
153
|
+
"ASK_META_AI_MEDIA_VIEWER_GROUP": 38,
|
|
148
154
|
}
|
|
149
155
|
)
|
|
150
156
|
|
|
@@ -1285,6 +1291,10 @@ const (
|
|
|
1285
1291
|
BotCapabilityMetadata_RICH_RESPONSE_UR_INLINE_REELS_ENABLED BotCapabilityMetadata_BotCapabilityType = 43
|
|
1286
1292
|
BotCapabilityMetadata_RICH_RESPONSE_UR_MEDIA_GRID_ENABLED BotCapabilityMetadata_BotCapabilityType = 44
|
|
1287
1293
|
BotCapabilityMetadata_RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER BotCapabilityMetadata_BotCapabilityType = 45
|
|
1294
|
+
BotCapabilityMetadata_RICH_RESPONSE_IN_APP_SURVEY BotCapabilityMetadata_BotCapabilityType = 46
|
|
1295
|
+
BotCapabilityMetadata_AI_RESPONSE_MODEL_BRANDING BotCapabilityMetadata_BotCapabilityType = 47
|
|
1296
|
+
BotCapabilityMetadata_SESSION_TRANSPARENCY_SYSTEM_MESSAGE BotCapabilityMetadata_BotCapabilityType = 48
|
|
1297
|
+
BotCapabilityMetadata_RICH_RESPONSE_UR_REASONING BotCapabilityMetadata_BotCapabilityType = 49
|
|
1288
1298
|
)
|
|
1289
1299
|
|
|
1290
1300
|
// Enum value maps for BotCapabilityMetadata_BotCapabilityType.
|
|
@@ -1336,6 +1346,10 @@ var (
|
|
|
1336
1346
|
43: "RICH_RESPONSE_UR_INLINE_REELS_ENABLED",
|
|
1337
1347
|
44: "RICH_RESPONSE_UR_MEDIA_GRID_ENABLED",
|
|
1338
1348
|
45: "RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER",
|
|
1349
|
+
46: "RICH_RESPONSE_IN_APP_SURVEY",
|
|
1350
|
+
47: "AI_RESPONSE_MODEL_BRANDING",
|
|
1351
|
+
48: "SESSION_TRANSPARENCY_SYSTEM_MESSAGE",
|
|
1352
|
+
49: "RICH_RESPONSE_UR_REASONING",
|
|
1339
1353
|
}
|
|
1340
1354
|
BotCapabilityMetadata_BotCapabilityType_value = map[string]int32{
|
|
1341
1355
|
"UNKNOWN": 0,
|
|
@@ -1384,6 +1398,10 @@ var (
|
|
|
1384
1398
|
"RICH_RESPONSE_UR_INLINE_REELS_ENABLED": 43,
|
|
1385
1399
|
"RICH_RESPONSE_UR_MEDIA_GRID_ENABLED": 44,
|
|
1386
1400
|
"RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER": 45,
|
|
1401
|
+
"RICH_RESPONSE_IN_APP_SURVEY": 46,
|
|
1402
|
+
"AI_RESPONSE_MODEL_BRANDING": 47,
|
|
1403
|
+
"SESSION_TRANSPARENCY_SYSTEM_MESSAGE": 48,
|
|
1404
|
+
"RICH_RESPONSE_UR_REASONING": 49,
|
|
1387
1405
|
}
|
|
1388
1406
|
)
|
|
1389
1407
|
|
|
@@ -2357,6 +2375,68 @@ func (AIRichResponseContentItemsMetadata_ContentType) EnumDescriptor() ([]byte,
|
|
|
2357
2375
|
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{20, 0}
|
|
2358
2376
|
}
|
|
2359
2377
|
|
|
2378
|
+
type AIHomeState_AIHomeOption_AIHomeActionType int32
|
|
2379
|
+
|
|
2380
|
+
const (
|
|
2381
|
+
AIHomeState_AIHomeOption_PROMPT AIHomeState_AIHomeOption_AIHomeActionType = 0
|
|
2382
|
+
AIHomeState_AIHomeOption_CREATE_IMAGE AIHomeState_AIHomeOption_AIHomeActionType = 1
|
|
2383
|
+
AIHomeState_AIHomeOption_ANIMATE_PHOTO AIHomeState_AIHomeOption_AIHomeActionType = 2
|
|
2384
|
+
AIHomeState_AIHomeOption_ANALYZE_FILE AIHomeState_AIHomeOption_AIHomeActionType = 3
|
|
2385
|
+
)
|
|
2386
|
+
|
|
2387
|
+
// Enum value maps for AIHomeState_AIHomeOption_AIHomeActionType.
|
|
2388
|
+
var (
|
|
2389
|
+
AIHomeState_AIHomeOption_AIHomeActionType_name = map[int32]string{
|
|
2390
|
+
0: "PROMPT",
|
|
2391
|
+
1: "CREATE_IMAGE",
|
|
2392
|
+
2: "ANIMATE_PHOTO",
|
|
2393
|
+
3: "ANALYZE_FILE",
|
|
2394
|
+
}
|
|
2395
|
+
AIHomeState_AIHomeOption_AIHomeActionType_value = map[string]int32{
|
|
2396
|
+
"PROMPT": 0,
|
|
2397
|
+
"CREATE_IMAGE": 1,
|
|
2398
|
+
"ANIMATE_PHOTO": 2,
|
|
2399
|
+
"ANALYZE_FILE": 3,
|
|
2400
|
+
}
|
|
2401
|
+
)
|
|
2402
|
+
|
|
2403
|
+
func (x AIHomeState_AIHomeOption_AIHomeActionType) Enum() *AIHomeState_AIHomeOption_AIHomeActionType {
|
|
2404
|
+
p := new(AIHomeState_AIHomeOption_AIHomeActionType)
|
|
2405
|
+
*p = x
|
|
2406
|
+
return p
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
func (x AIHomeState_AIHomeOption_AIHomeActionType) String() string {
|
|
2410
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
func (AIHomeState_AIHomeOption_AIHomeActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
2414
|
+
return file_waAICommon_WAAICommon_proto_enumTypes[34].Descriptor()
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
func (AIHomeState_AIHomeOption_AIHomeActionType) Type() protoreflect.EnumType {
|
|
2418
|
+
return &file_waAICommon_WAAICommon_proto_enumTypes[34]
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
func (x AIHomeState_AIHomeOption_AIHomeActionType) Number() protoreflect.EnumNumber {
|
|
2422
|
+
return protoreflect.EnumNumber(x)
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
// Deprecated: Do not use.
|
|
2426
|
+
func (x *AIHomeState_AIHomeOption_AIHomeActionType) UnmarshalJSON(b []byte) error {
|
|
2427
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
2428
|
+
if err != nil {
|
|
2429
|
+
return err
|
|
2430
|
+
}
|
|
2431
|
+
*x = AIHomeState_AIHomeOption_AIHomeActionType(num)
|
|
2432
|
+
return nil
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
// Deprecated: Use AIHomeState_AIHomeOption_AIHomeActionType.Descriptor instead.
|
|
2436
|
+
func (AIHomeState_AIHomeOption_AIHomeActionType) EnumDescriptor() ([]byte, []int) {
|
|
2437
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{21, 0, 0}
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2360
2440
|
type BotPluginMetadata struct {
|
|
2361
2441
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2362
2442
|
Provider *BotPluginMetadata_SearchProvider `protobuf:"varint,1,opt,name=provider,enum=WAAICommon.BotPluginMetadata_SearchProvider" json:"provider,omitempty"`
|
|
@@ -2825,6 +2905,7 @@ type BotModelMetadata struct {
|
|
|
2825
2905
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2826
2906
|
ModelType *BotModelMetadata_ModelType `protobuf:"varint,1,opt,name=modelType,enum=WAAICommon.BotModelMetadata_ModelType" json:"modelType,omitempty"`
|
|
2827
2907
|
PremiumModelStatus *BotModelMetadata_PremiumModelStatus `protobuf:"varint,2,opt,name=premiumModelStatus,enum=WAAICommon.BotModelMetadata_PremiumModelStatus" json:"premiumModelStatus,omitempty"`
|
|
2908
|
+
ModelNameOverride *string `protobuf:"bytes,3,opt,name=modelNameOverride" json:"modelNameOverride,omitempty"`
|
|
2828
2909
|
unknownFields protoimpl.UnknownFields
|
|
2829
2910
|
sizeCache protoimpl.SizeCache
|
|
2830
2911
|
}
|
|
@@ -2873,6 +2954,13 @@ func (x *BotModelMetadata) GetPremiumModelStatus() BotModelMetadata_PremiumModel
|
|
|
2873
2954
|
return BotModelMetadata_UNKNOWN_STATUS
|
|
2874
2955
|
}
|
|
2875
2956
|
|
|
2957
|
+
func (x *BotModelMetadata) GetModelNameOverride() string {
|
|
2958
|
+
if x != nil && x.ModelNameOverride != nil {
|
|
2959
|
+
return *x.ModelNameOverride
|
|
2960
|
+
}
|
|
2961
|
+
return ""
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2876
2964
|
type BotProgressIndicatorMetadata struct {
|
|
2877
2965
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2878
2966
|
ProgressDescription *string `protobuf:"bytes,1,opt,name=progressDescription" json:"progressDescription,omitempty"`
|
|
@@ -3633,6 +3721,66 @@ func (x *AIRichResponseContentItemsMetadata) GetContentType() AIRichResponseCont
|
|
|
3633
3721
|
return AIRichResponseContentItemsMetadata_DEFAULT
|
|
3634
3722
|
}
|
|
3635
3723
|
|
|
3724
|
+
type AIHomeState struct {
|
|
3725
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3726
|
+
LastFetchTime *int64 `protobuf:"varint,1,opt,name=lastFetchTime" json:"lastFetchTime,omitempty"`
|
|
3727
|
+
CapabilityOptions []*AIHomeState_AIHomeOption `protobuf:"bytes,2,rep,name=capabilityOptions" json:"capabilityOptions,omitempty"`
|
|
3728
|
+
ConversationOptions []*AIHomeState_AIHomeOption `protobuf:"bytes,3,rep,name=conversationOptions" json:"conversationOptions,omitempty"`
|
|
3729
|
+
unknownFields protoimpl.UnknownFields
|
|
3730
|
+
sizeCache protoimpl.SizeCache
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
func (x *AIHomeState) Reset() {
|
|
3734
|
+
*x = AIHomeState{}
|
|
3735
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[21]
|
|
3736
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3737
|
+
ms.StoreMessageInfo(mi)
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
func (x *AIHomeState) String() string {
|
|
3741
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
func (*AIHomeState) ProtoMessage() {}
|
|
3745
|
+
|
|
3746
|
+
func (x *AIHomeState) ProtoReflect() protoreflect.Message {
|
|
3747
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[21]
|
|
3748
|
+
if x != nil {
|
|
3749
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3750
|
+
if ms.LoadMessageInfo() == nil {
|
|
3751
|
+
ms.StoreMessageInfo(mi)
|
|
3752
|
+
}
|
|
3753
|
+
return ms
|
|
3754
|
+
}
|
|
3755
|
+
return mi.MessageOf(x)
|
|
3756
|
+
}
|
|
3757
|
+
|
|
3758
|
+
// Deprecated: Use AIHomeState.ProtoReflect.Descriptor instead.
|
|
3759
|
+
func (*AIHomeState) Descriptor() ([]byte, []int) {
|
|
3760
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{21}
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
func (x *AIHomeState) GetLastFetchTime() int64 {
|
|
3764
|
+
if x != nil && x.LastFetchTime != nil {
|
|
3765
|
+
return *x.LastFetchTime
|
|
3766
|
+
}
|
|
3767
|
+
return 0
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
func (x *AIHomeState) GetCapabilityOptions() []*AIHomeState_AIHomeOption {
|
|
3771
|
+
if x != nil {
|
|
3772
|
+
return x.CapabilityOptions
|
|
3773
|
+
}
|
|
3774
|
+
return nil
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
func (x *AIHomeState) GetConversationOptions() []*AIHomeState_AIHomeOption {
|
|
3778
|
+
if x != nil {
|
|
3779
|
+
return x.ConversationOptions
|
|
3780
|
+
}
|
|
3781
|
+
return nil
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3636
3784
|
type BotAvatarMetadata struct {
|
|
3637
3785
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3638
3786
|
Sentiment *uint32 `protobuf:"varint,1,opt,name=sentiment" json:"sentiment,omitempty"`
|
|
@@ -3646,7 +3794,7 @@ type BotAvatarMetadata struct {
|
|
|
3646
3794
|
|
|
3647
3795
|
func (x *BotAvatarMetadata) Reset() {
|
|
3648
3796
|
*x = BotAvatarMetadata{}
|
|
3649
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3797
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[22]
|
|
3650
3798
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3651
3799
|
ms.StoreMessageInfo(mi)
|
|
3652
3800
|
}
|
|
@@ -3658,7 +3806,7 @@ func (x *BotAvatarMetadata) String() string {
|
|
|
3658
3806
|
func (*BotAvatarMetadata) ProtoMessage() {}
|
|
3659
3807
|
|
|
3660
3808
|
func (x *BotAvatarMetadata) ProtoReflect() protoreflect.Message {
|
|
3661
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3809
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[22]
|
|
3662
3810
|
if x != nil {
|
|
3663
3811
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3664
3812
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3671,7 +3819,7 @@ func (x *BotAvatarMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3671
3819
|
|
|
3672
3820
|
// Deprecated: Use BotAvatarMetadata.ProtoReflect.Descriptor instead.
|
|
3673
3821
|
func (*BotAvatarMetadata) Descriptor() ([]byte, []int) {
|
|
3674
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
3822
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{22}
|
|
3675
3823
|
}
|
|
3676
3824
|
|
|
3677
3825
|
func (x *BotAvatarMetadata) GetSentiment() uint32 {
|
|
@@ -3721,7 +3869,7 @@ type BotSuggestedPromptMetadata struct {
|
|
|
3721
3869
|
|
|
3722
3870
|
func (x *BotSuggestedPromptMetadata) Reset() {
|
|
3723
3871
|
*x = BotSuggestedPromptMetadata{}
|
|
3724
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3872
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[23]
|
|
3725
3873
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3726
3874
|
ms.StoreMessageInfo(mi)
|
|
3727
3875
|
}
|
|
@@ -3733,7 +3881,7 @@ func (x *BotSuggestedPromptMetadata) String() string {
|
|
|
3733
3881
|
func (*BotSuggestedPromptMetadata) ProtoMessage() {}
|
|
3734
3882
|
|
|
3735
3883
|
func (x *BotSuggestedPromptMetadata) ProtoReflect() protoreflect.Message {
|
|
3736
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3884
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[23]
|
|
3737
3885
|
if x != nil {
|
|
3738
3886
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3739
3887
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3746,7 +3894,7 @@ func (x *BotSuggestedPromptMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3746
3894
|
|
|
3747
3895
|
// Deprecated: Use BotSuggestedPromptMetadata.ProtoReflect.Descriptor instead.
|
|
3748
3896
|
func (*BotSuggestedPromptMetadata) Descriptor() ([]byte, []int) {
|
|
3749
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
3897
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{23}
|
|
3750
3898
|
}
|
|
3751
3899
|
|
|
3752
3900
|
func (x *BotSuggestedPromptMetadata) GetSuggestedPrompts() []string {
|
|
@@ -3786,7 +3934,7 @@ type BotPromptSuggestions struct {
|
|
|
3786
3934
|
|
|
3787
3935
|
func (x *BotPromptSuggestions) Reset() {
|
|
3788
3936
|
*x = BotPromptSuggestions{}
|
|
3789
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3937
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[24]
|
|
3790
3938
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3791
3939
|
ms.StoreMessageInfo(mi)
|
|
3792
3940
|
}
|
|
@@ -3798,7 +3946,7 @@ func (x *BotPromptSuggestions) String() string {
|
|
|
3798
3946
|
func (*BotPromptSuggestions) ProtoMessage() {}
|
|
3799
3947
|
|
|
3800
3948
|
func (x *BotPromptSuggestions) ProtoReflect() protoreflect.Message {
|
|
3801
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3949
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[24]
|
|
3802
3950
|
if x != nil {
|
|
3803
3951
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3804
3952
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3811,7 +3959,7 @@ func (x *BotPromptSuggestions) ProtoReflect() protoreflect.Message {
|
|
|
3811
3959
|
|
|
3812
3960
|
// Deprecated: Use BotPromptSuggestions.ProtoReflect.Descriptor instead.
|
|
3813
3961
|
func (*BotPromptSuggestions) Descriptor() ([]byte, []int) {
|
|
3814
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
3962
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{24}
|
|
3815
3963
|
}
|
|
3816
3964
|
|
|
3817
3965
|
func (x *BotPromptSuggestions) GetSuggestions() []*BotPromptSuggestion {
|
|
@@ -3831,7 +3979,7 @@ type BotPromptSuggestion struct {
|
|
|
3831
3979
|
|
|
3832
3980
|
func (x *BotPromptSuggestion) Reset() {
|
|
3833
3981
|
*x = BotPromptSuggestion{}
|
|
3834
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3982
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[25]
|
|
3835
3983
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3836
3984
|
ms.StoreMessageInfo(mi)
|
|
3837
3985
|
}
|
|
@@ -3843,7 +3991,7 @@ func (x *BotPromptSuggestion) String() string {
|
|
|
3843
3991
|
func (*BotPromptSuggestion) ProtoMessage() {}
|
|
3844
3992
|
|
|
3845
3993
|
func (x *BotPromptSuggestion) ProtoReflect() protoreflect.Message {
|
|
3846
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
3994
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[25]
|
|
3847
3995
|
if x != nil {
|
|
3848
3996
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3849
3997
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3856,7 +4004,7 @@ func (x *BotPromptSuggestion) ProtoReflect() protoreflect.Message {
|
|
|
3856
4004
|
|
|
3857
4005
|
// Deprecated: Use BotPromptSuggestion.ProtoReflect.Descriptor instead.
|
|
3858
4006
|
func (*BotPromptSuggestion) Descriptor() ([]byte, []int) {
|
|
3859
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4007
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{25}
|
|
3860
4008
|
}
|
|
3861
4009
|
|
|
3862
4010
|
func (x *BotPromptSuggestion) GetPrompt() string {
|
|
@@ -3884,7 +4032,7 @@ type BotLinkedAccountsMetadata struct {
|
|
|
3884
4032
|
|
|
3885
4033
|
func (x *BotLinkedAccountsMetadata) Reset() {
|
|
3886
4034
|
*x = BotLinkedAccountsMetadata{}
|
|
3887
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4035
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[26]
|
|
3888
4036
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3889
4037
|
ms.StoreMessageInfo(mi)
|
|
3890
4038
|
}
|
|
@@ -3896,7 +4044,7 @@ func (x *BotLinkedAccountsMetadata) String() string {
|
|
|
3896
4044
|
func (*BotLinkedAccountsMetadata) ProtoMessage() {}
|
|
3897
4045
|
|
|
3898
4046
|
func (x *BotLinkedAccountsMetadata) ProtoReflect() protoreflect.Message {
|
|
3899
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4047
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[26]
|
|
3900
4048
|
if x != nil {
|
|
3901
4049
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3902
4050
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3909,7 +4057,7 @@ func (x *BotLinkedAccountsMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3909
4057
|
|
|
3910
4058
|
// Deprecated: Use BotLinkedAccountsMetadata.ProtoReflect.Descriptor instead.
|
|
3911
4059
|
func (*BotLinkedAccountsMetadata) Descriptor() ([]byte, []int) {
|
|
3912
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4060
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{26}
|
|
3913
4061
|
}
|
|
3914
4062
|
|
|
3915
4063
|
func (x *BotLinkedAccountsMetadata) GetAccounts() []*BotLinkedAccount {
|
|
@@ -3944,7 +4092,7 @@ type BotMemoryMetadata struct {
|
|
|
3944
4092
|
|
|
3945
4093
|
func (x *BotMemoryMetadata) Reset() {
|
|
3946
4094
|
*x = BotMemoryMetadata{}
|
|
3947
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4095
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[27]
|
|
3948
4096
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3949
4097
|
ms.StoreMessageInfo(mi)
|
|
3950
4098
|
}
|
|
@@ -3956,7 +4104,7 @@ func (x *BotMemoryMetadata) String() string {
|
|
|
3956
4104
|
func (*BotMemoryMetadata) ProtoMessage() {}
|
|
3957
4105
|
|
|
3958
4106
|
func (x *BotMemoryMetadata) ProtoReflect() protoreflect.Message {
|
|
3959
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4107
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[27]
|
|
3960
4108
|
if x != nil {
|
|
3961
4109
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3962
4110
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3969,7 +4117,7 @@ func (x *BotMemoryMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3969
4117
|
|
|
3970
4118
|
// Deprecated: Use BotMemoryMetadata.ProtoReflect.Descriptor instead.
|
|
3971
4119
|
func (*BotMemoryMetadata) Descriptor() ([]byte, []int) {
|
|
3972
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4120
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{27}
|
|
3973
4121
|
}
|
|
3974
4122
|
|
|
3975
4123
|
func (x *BotMemoryMetadata) GetAddedFacts() []*BotMemoryFact {
|
|
@@ -4003,7 +4151,7 @@ type BotMemoryFact struct {
|
|
|
4003
4151
|
|
|
4004
4152
|
func (x *BotMemoryFact) Reset() {
|
|
4005
4153
|
*x = BotMemoryFact{}
|
|
4006
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4154
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[28]
|
|
4007
4155
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4008
4156
|
ms.StoreMessageInfo(mi)
|
|
4009
4157
|
}
|
|
@@ -4015,7 +4163,7 @@ func (x *BotMemoryFact) String() string {
|
|
|
4015
4163
|
func (*BotMemoryFact) ProtoMessage() {}
|
|
4016
4164
|
|
|
4017
4165
|
func (x *BotMemoryFact) ProtoReflect() protoreflect.Message {
|
|
4018
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4166
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[28]
|
|
4019
4167
|
if x != nil {
|
|
4020
4168
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4021
4169
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4028,7 +4176,7 @@ func (x *BotMemoryFact) ProtoReflect() protoreflect.Message {
|
|
|
4028
4176
|
|
|
4029
4177
|
// Deprecated: Use BotMemoryFact.ProtoReflect.Descriptor instead.
|
|
4030
4178
|
func (*BotMemoryFact) Descriptor() ([]byte, []int) {
|
|
4031
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4179
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{28}
|
|
4032
4180
|
}
|
|
4033
4181
|
|
|
4034
4182
|
func (x *BotMemoryFact) GetFact() string {
|
|
@@ -4054,7 +4202,7 @@ type BotSignatureVerificationMetadata struct {
|
|
|
4054
4202
|
|
|
4055
4203
|
func (x *BotSignatureVerificationMetadata) Reset() {
|
|
4056
4204
|
*x = BotSignatureVerificationMetadata{}
|
|
4057
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4205
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[29]
|
|
4058
4206
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4059
4207
|
ms.StoreMessageInfo(mi)
|
|
4060
4208
|
}
|
|
@@ -4066,7 +4214,7 @@ func (x *BotSignatureVerificationMetadata) String() string {
|
|
|
4066
4214
|
func (*BotSignatureVerificationMetadata) ProtoMessage() {}
|
|
4067
4215
|
|
|
4068
4216
|
func (x *BotSignatureVerificationMetadata) ProtoReflect() protoreflect.Message {
|
|
4069
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4217
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[29]
|
|
4070
4218
|
if x != nil {
|
|
4071
4219
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4072
4220
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4079,7 +4227,7 @@ func (x *BotSignatureVerificationMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4079
4227
|
|
|
4080
4228
|
// Deprecated: Use BotSignatureVerificationMetadata.ProtoReflect.Descriptor instead.
|
|
4081
4229
|
func (*BotSignatureVerificationMetadata) Descriptor() ([]byte, []int) {
|
|
4082
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4230
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{29}
|
|
4083
4231
|
}
|
|
4084
4232
|
|
|
4085
4233
|
func (x *BotSignatureVerificationMetadata) GetProofs() []*BotSignatureVerificationUseCaseProof {
|
|
@@ -4098,7 +4246,7 @@ type BotRenderingMetadata struct {
|
|
|
4098
4246
|
|
|
4099
4247
|
func (x *BotRenderingMetadata) Reset() {
|
|
4100
4248
|
*x = BotRenderingMetadata{}
|
|
4101
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4249
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[30]
|
|
4102
4250
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4103
4251
|
ms.StoreMessageInfo(mi)
|
|
4104
4252
|
}
|
|
@@ -4110,7 +4258,7 @@ func (x *BotRenderingMetadata) String() string {
|
|
|
4110
4258
|
func (*BotRenderingMetadata) ProtoMessage() {}
|
|
4111
4259
|
|
|
4112
4260
|
func (x *BotRenderingMetadata) ProtoReflect() protoreflect.Message {
|
|
4113
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4261
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[30]
|
|
4114
4262
|
if x != nil {
|
|
4115
4263
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4116
4264
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4123,7 +4271,7 @@ func (x *BotRenderingMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4123
4271
|
|
|
4124
4272
|
// Deprecated: Use BotRenderingMetadata.ProtoReflect.Descriptor instead.
|
|
4125
4273
|
func (*BotRenderingMetadata) Descriptor() ([]byte, []int) {
|
|
4126
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4274
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{30}
|
|
4127
4275
|
}
|
|
4128
4276
|
|
|
4129
4277
|
func (x *BotRenderingMetadata) GetKeywords() []*BotRenderingMetadata_Keyword {
|
|
@@ -4144,7 +4292,7 @@ type BotMetricsMetadata struct {
|
|
|
4144
4292
|
|
|
4145
4293
|
func (x *BotMetricsMetadata) Reset() {
|
|
4146
4294
|
*x = BotMetricsMetadata{}
|
|
4147
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4295
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[31]
|
|
4148
4296
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4149
4297
|
ms.StoreMessageInfo(mi)
|
|
4150
4298
|
}
|
|
@@ -4156,7 +4304,7 @@ func (x *BotMetricsMetadata) String() string {
|
|
|
4156
4304
|
func (*BotMetricsMetadata) ProtoMessage() {}
|
|
4157
4305
|
|
|
4158
4306
|
func (x *BotMetricsMetadata) ProtoReflect() protoreflect.Message {
|
|
4159
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4307
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[31]
|
|
4160
4308
|
if x != nil {
|
|
4161
4309
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4162
4310
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4169,7 +4317,7 @@ func (x *BotMetricsMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4169
4317
|
|
|
4170
4318
|
// Deprecated: Use BotMetricsMetadata.ProtoReflect.Descriptor instead.
|
|
4171
4319
|
func (*BotMetricsMetadata) Descriptor() ([]byte, []int) {
|
|
4172
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4320
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{31}
|
|
4173
4321
|
}
|
|
4174
4322
|
|
|
4175
4323
|
func (x *BotMetricsMetadata) GetDestinationID() string {
|
|
@@ -4203,7 +4351,7 @@ type BotSessionMetadata struct {
|
|
|
4203
4351
|
|
|
4204
4352
|
func (x *BotSessionMetadata) Reset() {
|
|
4205
4353
|
*x = BotSessionMetadata{}
|
|
4206
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4354
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[32]
|
|
4207
4355
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4208
4356
|
ms.StoreMessageInfo(mi)
|
|
4209
4357
|
}
|
|
@@ -4215,7 +4363,7 @@ func (x *BotSessionMetadata) String() string {
|
|
|
4215
4363
|
func (*BotSessionMetadata) ProtoMessage() {}
|
|
4216
4364
|
|
|
4217
4365
|
func (x *BotSessionMetadata) ProtoReflect() protoreflect.Message {
|
|
4218
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4366
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[32]
|
|
4219
4367
|
if x != nil {
|
|
4220
4368
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4221
4369
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4228,7 +4376,7 @@ func (x *BotSessionMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4228
4376
|
|
|
4229
4377
|
// Deprecated: Use BotSessionMetadata.ProtoReflect.Descriptor instead.
|
|
4230
4378
|
func (*BotSessionMetadata) Descriptor() ([]byte, []int) {
|
|
4231
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4379
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{32}
|
|
4232
4380
|
}
|
|
4233
4381
|
|
|
4234
4382
|
func (x *BotSessionMetadata) GetSessionID() string {
|
|
@@ -4254,7 +4402,7 @@ type BotMemuMetadata struct {
|
|
|
4254
4402
|
|
|
4255
4403
|
func (x *BotMemuMetadata) Reset() {
|
|
4256
4404
|
*x = BotMemuMetadata{}
|
|
4257
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4405
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[33]
|
|
4258
4406
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4259
4407
|
ms.StoreMessageInfo(mi)
|
|
4260
4408
|
}
|
|
@@ -4266,7 +4414,7 @@ func (x *BotMemuMetadata) String() string {
|
|
|
4266
4414
|
func (*BotMemuMetadata) ProtoMessage() {}
|
|
4267
4415
|
|
|
4268
4416
|
func (x *BotMemuMetadata) ProtoReflect() protoreflect.Message {
|
|
4269
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4417
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[33]
|
|
4270
4418
|
if x != nil {
|
|
4271
4419
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4272
4420
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4279,7 +4427,7 @@ func (x *BotMemuMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4279
4427
|
|
|
4280
4428
|
// Deprecated: Use BotMemuMetadata.ProtoReflect.Descriptor instead.
|
|
4281
4429
|
func (*BotMemuMetadata) Descriptor() ([]byte, []int) {
|
|
4282
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4430
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{33}
|
|
4283
4431
|
}
|
|
4284
4432
|
|
|
4285
4433
|
func (x *BotMemuMetadata) GetFaceImages() []*BotMediaMetadata {
|
|
@@ -4314,7 +4462,7 @@ type InThreadSurveyMetadata struct {
|
|
|
4314
4462
|
|
|
4315
4463
|
func (x *InThreadSurveyMetadata) Reset() {
|
|
4316
4464
|
*x = InThreadSurveyMetadata{}
|
|
4317
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4465
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[34]
|
|
4318
4466
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4319
4467
|
ms.StoreMessageInfo(mi)
|
|
4320
4468
|
}
|
|
@@ -4326,7 +4474,7 @@ func (x *InThreadSurveyMetadata) String() string {
|
|
|
4326
4474
|
func (*InThreadSurveyMetadata) ProtoMessage() {}
|
|
4327
4475
|
|
|
4328
4476
|
func (x *InThreadSurveyMetadata) ProtoReflect() protoreflect.Message {
|
|
4329
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4477
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[34]
|
|
4330
4478
|
if x != nil {
|
|
4331
4479
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4332
4480
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4339,7 +4487,7 @@ func (x *InThreadSurveyMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4339
4487
|
|
|
4340
4488
|
// Deprecated: Use InThreadSurveyMetadata.ProtoReflect.Descriptor instead.
|
|
4341
4489
|
func (*InThreadSurveyMetadata) Descriptor() ([]byte, []int) {
|
|
4342
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4490
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{34}
|
|
4343
4491
|
}
|
|
4344
4492
|
|
|
4345
4493
|
func (x *InThreadSurveyMetadata) GetTessaSessionID() string {
|
|
@@ -4470,7 +4618,7 @@ type BotMessageOriginMetadata struct {
|
|
|
4470
4618
|
|
|
4471
4619
|
func (x *BotMessageOriginMetadata) Reset() {
|
|
4472
4620
|
*x = BotMessageOriginMetadata{}
|
|
4473
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4621
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[35]
|
|
4474
4622
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4475
4623
|
ms.StoreMessageInfo(mi)
|
|
4476
4624
|
}
|
|
@@ -4482,7 +4630,7 @@ func (x *BotMessageOriginMetadata) String() string {
|
|
|
4482
4630
|
func (*BotMessageOriginMetadata) ProtoMessage() {}
|
|
4483
4631
|
|
|
4484
4632
|
func (x *BotMessageOriginMetadata) ProtoReflect() protoreflect.Message {
|
|
4485
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4633
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[35]
|
|
4486
4634
|
if x != nil {
|
|
4487
4635
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4488
4636
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4495,7 +4643,7 @@ func (x *BotMessageOriginMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4495
4643
|
|
|
4496
4644
|
// Deprecated: Use BotMessageOriginMetadata.ProtoReflect.Descriptor instead.
|
|
4497
4645
|
func (*BotMessageOriginMetadata) Descriptor() ([]byte, []int) {
|
|
4498
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4646
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{35}
|
|
4499
4647
|
}
|
|
4500
4648
|
|
|
4501
4649
|
func (x *BotMessageOriginMetadata) GetOrigins() []*BotMessageOrigin {
|
|
@@ -4515,7 +4663,7 @@ type BotUnifiedResponseMutation struct {
|
|
|
4515
4663
|
|
|
4516
4664
|
func (x *BotUnifiedResponseMutation) Reset() {
|
|
4517
4665
|
*x = BotUnifiedResponseMutation{}
|
|
4518
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4666
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[36]
|
|
4519
4667
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4520
4668
|
ms.StoreMessageInfo(mi)
|
|
4521
4669
|
}
|
|
@@ -4527,7 +4675,7 @@ func (x *BotUnifiedResponseMutation) String() string {
|
|
|
4527
4675
|
func (*BotUnifiedResponseMutation) ProtoMessage() {}
|
|
4528
4676
|
|
|
4529
4677
|
func (x *BotUnifiedResponseMutation) ProtoReflect() protoreflect.Message {
|
|
4530
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4678
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[36]
|
|
4531
4679
|
if x != nil {
|
|
4532
4680
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4533
4681
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4540,7 +4688,7 @@ func (x *BotUnifiedResponseMutation) ProtoReflect() protoreflect.Message {
|
|
|
4540
4688
|
|
|
4541
4689
|
// Deprecated: Use BotUnifiedResponseMutation.ProtoReflect.Descriptor instead.
|
|
4542
4690
|
func (*BotUnifiedResponseMutation) Descriptor() ([]byte, []int) {
|
|
4543
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4691
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{36}
|
|
4544
4692
|
}
|
|
4545
4693
|
|
|
4546
4694
|
func (x *BotUnifiedResponseMutation) GetSbsMetadata() *BotUnifiedResponseMutation_SideBySideMetadata {
|
|
@@ -4590,6 +4738,8 @@ type BotMetadata struct {
|
|
|
4590
4738
|
BotMessageOriginMetadata *BotMessageOriginMetadata `protobuf:"bytes,29,opt,name=botMessageOriginMetadata" json:"botMessageOriginMetadata,omitempty"`
|
|
4591
4739
|
InThreadSurveyMetadata *InThreadSurveyMetadata `protobuf:"bytes,30,opt,name=inThreadSurveyMetadata" json:"inThreadSurveyMetadata,omitempty"`
|
|
4592
4740
|
BotThreadInfo *AIThreadInfo `protobuf:"bytes,31,opt,name=botThreadInfo" json:"botThreadInfo,omitempty"`
|
|
4741
|
+
RegenerateMetadata *AIRegenerateMetadata `protobuf:"bytes,32,opt,name=regenerateMetadata" json:"regenerateMetadata,omitempty"`
|
|
4742
|
+
SessionTransparencyMetadata *SessionTransparencyMetadata `protobuf:"bytes,33,opt,name=sessionTransparencyMetadata" json:"sessionTransparencyMetadata,omitempty"`
|
|
4593
4743
|
InternalMetadata []byte `protobuf:"bytes,999,opt,name=internalMetadata" json:"internalMetadata,omitempty"`
|
|
4594
4744
|
unknownFields protoimpl.UnknownFields
|
|
4595
4745
|
sizeCache protoimpl.SizeCache
|
|
@@ -4597,7 +4747,7 @@ type BotMetadata struct {
|
|
|
4597
4747
|
|
|
4598
4748
|
func (x *BotMetadata) Reset() {
|
|
4599
4749
|
*x = BotMetadata{}
|
|
4600
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4750
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[37]
|
|
4601
4751
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4602
4752
|
ms.StoreMessageInfo(mi)
|
|
4603
4753
|
}
|
|
@@ -4609,7 +4759,7 @@ func (x *BotMetadata) String() string {
|
|
|
4609
4759
|
func (*BotMetadata) ProtoMessage() {}
|
|
4610
4760
|
|
|
4611
4761
|
func (x *BotMetadata) ProtoReflect() protoreflect.Message {
|
|
4612
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
4762
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[37]
|
|
4613
4763
|
if x != nil {
|
|
4614
4764
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4615
4765
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4622,7 +4772,7 @@ func (x *BotMetadata) ProtoReflect() protoreflect.Message {
|
|
|
4622
4772
|
|
|
4623
4773
|
// Deprecated: Use BotMetadata.ProtoReflect.Descriptor instead.
|
|
4624
4774
|
func (*BotMetadata) Descriptor() ([]byte, []int) {
|
|
4625
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
4775
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{37}
|
|
4626
4776
|
}
|
|
4627
4777
|
|
|
4628
4778
|
func (x *BotMetadata) GetAvatarMetadata() *BotAvatarMetadata {
|
|
@@ -4842,6 +4992,20 @@ func (x *BotMetadata) GetBotThreadInfo() *AIThreadInfo {
|
|
|
4842
4992
|
return nil
|
|
4843
4993
|
}
|
|
4844
4994
|
|
|
4995
|
+
func (x *BotMetadata) GetRegenerateMetadata() *AIRegenerateMetadata {
|
|
4996
|
+
if x != nil {
|
|
4997
|
+
return x.RegenerateMetadata
|
|
4998
|
+
}
|
|
4999
|
+
return nil
|
|
5000
|
+
}
|
|
5001
|
+
|
|
5002
|
+
func (x *BotMetadata) GetSessionTransparencyMetadata() *SessionTransparencyMetadata {
|
|
5003
|
+
if x != nil {
|
|
5004
|
+
return x.SessionTransparencyMetadata
|
|
5005
|
+
}
|
|
5006
|
+
return nil
|
|
5007
|
+
}
|
|
5008
|
+
|
|
4845
5009
|
func (x *BotMetadata) GetInternalMetadata() []byte {
|
|
4846
5010
|
if x != nil {
|
|
4847
5011
|
return x.InternalMetadata
|
|
@@ -4860,7 +5024,7 @@ type ForwardedAIBotMessageInfo struct {
|
|
|
4860
5024
|
|
|
4861
5025
|
func (x *ForwardedAIBotMessageInfo) Reset() {
|
|
4862
5026
|
*x = ForwardedAIBotMessageInfo{}
|
|
4863
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5027
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[38]
|
|
4864
5028
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4865
5029
|
ms.StoreMessageInfo(mi)
|
|
4866
5030
|
}
|
|
@@ -4872,7 +5036,7 @@ func (x *ForwardedAIBotMessageInfo) String() string {
|
|
|
4872
5036
|
func (*ForwardedAIBotMessageInfo) ProtoMessage() {}
|
|
4873
5037
|
|
|
4874
5038
|
func (x *ForwardedAIBotMessageInfo) ProtoReflect() protoreflect.Message {
|
|
4875
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5039
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[38]
|
|
4876
5040
|
if x != nil {
|
|
4877
5041
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4878
5042
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4885,7 +5049,7 @@ func (x *ForwardedAIBotMessageInfo) ProtoReflect() protoreflect.Message {
|
|
|
4885
5049
|
|
|
4886
5050
|
// Deprecated: Use ForwardedAIBotMessageInfo.ProtoReflect.Descriptor instead.
|
|
4887
5051
|
func (*ForwardedAIBotMessageInfo) Descriptor() ([]byte, []int) {
|
|
4888
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5052
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{38}
|
|
4889
5053
|
}
|
|
4890
5054
|
|
|
4891
5055
|
func (x *ForwardedAIBotMessageInfo) GetBotName() string {
|
|
@@ -4919,7 +5083,7 @@ type BotMessageSharingInfo struct {
|
|
|
4919
5083
|
|
|
4920
5084
|
func (x *BotMessageSharingInfo) Reset() {
|
|
4921
5085
|
*x = BotMessageSharingInfo{}
|
|
4922
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5086
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[39]
|
|
4923
5087
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4924
5088
|
ms.StoreMessageInfo(mi)
|
|
4925
5089
|
}
|
|
@@ -4931,7 +5095,7 @@ func (x *BotMessageSharingInfo) String() string {
|
|
|
4931
5095
|
func (*BotMessageSharingInfo) ProtoMessage() {}
|
|
4932
5096
|
|
|
4933
5097
|
func (x *BotMessageSharingInfo) ProtoReflect() protoreflect.Message {
|
|
4934
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5098
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[39]
|
|
4935
5099
|
if x != nil {
|
|
4936
5100
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4937
5101
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4944,7 +5108,7 @@ func (x *BotMessageSharingInfo) ProtoReflect() protoreflect.Message {
|
|
|
4944
5108
|
|
|
4945
5109
|
// Deprecated: Use BotMessageSharingInfo.ProtoReflect.Descriptor instead.
|
|
4946
5110
|
func (*BotMessageSharingInfo) Descriptor() ([]byte, []int) {
|
|
4947
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5111
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{39}
|
|
4948
5112
|
}
|
|
4949
5113
|
|
|
4950
5114
|
func (x *BotMessageSharingInfo) GetBotEntryPointOrigin() BotMetricsEntryPoint {
|
|
@@ -4972,7 +5136,7 @@ type AIRichResponseImageURL struct {
|
|
|
4972
5136
|
|
|
4973
5137
|
func (x *AIRichResponseImageURL) Reset() {
|
|
4974
5138
|
*x = AIRichResponseImageURL{}
|
|
4975
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5139
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[40]
|
|
4976
5140
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4977
5141
|
ms.StoreMessageInfo(mi)
|
|
4978
5142
|
}
|
|
@@ -4984,7 +5148,7 @@ func (x *AIRichResponseImageURL) String() string {
|
|
|
4984
5148
|
func (*AIRichResponseImageURL) ProtoMessage() {}
|
|
4985
5149
|
|
|
4986
5150
|
func (x *AIRichResponseImageURL) ProtoReflect() protoreflect.Message {
|
|
4987
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5151
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[40]
|
|
4988
5152
|
if x != nil {
|
|
4989
5153
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4990
5154
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4997,7 +5161,7 @@ func (x *AIRichResponseImageURL) ProtoReflect() protoreflect.Message {
|
|
|
4997
5161
|
|
|
4998
5162
|
// Deprecated: Use AIRichResponseImageURL.ProtoReflect.Descriptor instead.
|
|
4999
5163
|
func (*AIRichResponseImageURL) Descriptor() ([]byte, []int) {
|
|
5000
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5164
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{40}
|
|
5001
5165
|
}
|
|
5002
5166
|
|
|
5003
5167
|
func (x *AIRichResponseImageURL) GetImagePreviewURL() string {
|
|
@@ -5031,7 +5195,7 @@ type AIRichResponseGridImageMetadata struct {
|
|
|
5031
5195
|
|
|
5032
5196
|
func (x *AIRichResponseGridImageMetadata) Reset() {
|
|
5033
5197
|
*x = AIRichResponseGridImageMetadata{}
|
|
5034
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5198
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[41]
|
|
5035
5199
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5036
5200
|
ms.StoreMessageInfo(mi)
|
|
5037
5201
|
}
|
|
@@ -5043,7 +5207,7 @@ func (x *AIRichResponseGridImageMetadata) String() string {
|
|
|
5043
5207
|
func (*AIRichResponseGridImageMetadata) ProtoMessage() {}
|
|
5044
5208
|
|
|
5045
5209
|
func (x *AIRichResponseGridImageMetadata) ProtoReflect() protoreflect.Message {
|
|
5046
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5210
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[41]
|
|
5047
5211
|
if x != nil {
|
|
5048
5212
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5049
5213
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5056,7 +5220,7 @@ func (x *AIRichResponseGridImageMetadata) ProtoReflect() protoreflect.Message {
|
|
|
5056
5220
|
|
|
5057
5221
|
// Deprecated: Use AIRichResponseGridImageMetadata.ProtoReflect.Descriptor instead.
|
|
5058
5222
|
func (*AIRichResponseGridImageMetadata) Descriptor() ([]byte, []int) {
|
|
5059
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5223
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{41}
|
|
5060
5224
|
}
|
|
5061
5225
|
|
|
5062
5226
|
func (x *AIRichResponseGridImageMetadata) GetGridImageURL() *AIRichResponseImageURL {
|
|
@@ -5083,7 +5247,7 @@ type AIRichResponseTableMetadata struct {
|
|
|
5083
5247
|
|
|
5084
5248
|
func (x *AIRichResponseTableMetadata) Reset() {
|
|
5085
5249
|
*x = AIRichResponseTableMetadata{}
|
|
5086
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5250
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[42]
|
|
5087
5251
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5088
5252
|
ms.StoreMessageInfo(mi)
|
|
5089
5253
|
}
|
|
@@ -5095,7 +5259,7 @@ func (x *AIRichResponseTableMetadata) String() string {
|
|
|
5095
5259
|
func (*AIRichResponseTableMetadata) ProtoMessage() {}
|
|
5096
5260
|
|
|
5097
5261
|
func (x *AIRichResponseTableMetadata) ProtoReflect() protoreflect.Message {
|
|
5098
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5262
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[42]
|
|
5099
5263
|
if x != nil {
|
|
5100
5264
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5101
5265
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5108,7 +5272,7 @@ func (x *AIRichResponseTableMetadata) ProtoReflect() protoreflect.Message {
|
|
|
5108
5272
|
|
|
5109
5273
|
// Deprecated: Use AIRichResponseTableMetadata.ProtoReflect.Descriptor instead.
|
|
5110
5274
|
func (*AIRichResponseTableMetadata) Descriptor() ([]byte, []int) {
|
|
5111
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5275
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{42}
|
|
5112
5276
|
}
|
|
5113
5277
|
|
|
5114
5278
|
func (x *AIRichResponseTableMetadata) GetRows() []*AIRichResponseTableMetadata_AIRichResponseTableRow {
|
|
@@ -5134,7 +5298,7 @@ type AIRichResponseUnifiedResponse struct {
|
|
|
5134
5298
|
|
|
5135
5299
|
func (x *AIRichResponseUnifiedResponse) Reset() {
|
|
5136
5300
|
*x = AIRichResponseUnifiedResponse{}
|
|
5137
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5301
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[43]
|
|
5138
5302
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5139
5303
|
ms.StoreMessageInfo(mi)
|
|
5140
5304
|
}
|
|
@@ -5146,7 +5310,7 @@ func (x *AIRichResponseUnifiedResponse) String() string {
|
|
|
5146
5310
|
func (*AIRichResponseUnifiedResponse) ProtoMessage() {}
|
|
5147
5311
|
|
|
5148
5312
|
func (x *AIRichResponseUnifiedResponse) ProtoReflect() protoreflect.Message {
|
|
5149
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5313
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[43]
|
|
5150
5314
|
if x != nil {
|
|
5151
5315
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5152
5316
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5159,7 +5323,7 @@ func (x *AIRichResponseUnifiedResponse) ProtoReflect() protoreflect.Message {
|
|
|
5159
5323
|
|
|
5160
5324
|
// Deprecated: Use AIRichResponseUnifiedResponse.ProtoReflect.Descriptor instead.
|
|
5161
5325
|
func (*AIRichResponseUnifiedResponse) Descriptor() ([]byte, []int) {
|
|
5162
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5326
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{43}
|
|
5163
5327
|
}
|
|
5164
5328
|
|
|
5165
5329
|
func (x *AIRichResponseUnifiedResponse) GetData() []byte {
|
|
@@ -5179,7 +5343,7 @@ type AIRichResponseLatexMetadata struct {
|
|
|
5179
5343
|
|
|
5180
5344
|
func (x *AIRichResponseLatexMetadata) Reset() {
|
|
5181
5345
|
*x = AIRichResponseLatexMetadata{}
|
|
5182
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5346
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[44]
|
|
5183
5347
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5184
5348
|
ms.StoreMessageInfo(mi)
|
|
5185
5349
|
}
|
|
@@ -5191,7 +5355,7 @@ func (x *AIRichResponseLatexMetadata) String() string {
|
|
|
5191
5355
|
func (*AIRichResponseLatexMetadata) ProtoMessage() {}
|
|
5192
5356
|
|
|
5193
5357
|
func (x *AIRichResponseLatexMetadata) ProtoReflect() protoreflect.Message {
|
|
5194
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5358
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[44]
|
|
5195
5359
|
if x != nil {
|
|
5196
5360
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5197
5361
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5204,7 +5368,7 @@ func (x *AIRichResponseLatexMetadata) ProtoReflect() protoreflect.Message {
|
|
|
5204
5368
|
|
|
5205
5369
|
// Deprecated: Use AIRichResponseLatexMetadata.ProtoReflect.Descriptor instead.
|
|
5206
5370
|
func (*AIRichResponseLatexMetadata) Descriptor() ([]byte, []int) {
|
|
5207
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5371
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{44}
|
|
5208
5372
|
}
|
|
5209
5373
|
|
|
5210
5374
|
func (x *AIRichResponseLatexMetadata) GetText() string {
|
|
@@ -5235,7 +5399,7 @@ type AIRichResponseMapMetadata struct {
|
|
|
5235
5399
|
|
|
5236
5400
|
func (x *AIRichResponseMapMetadata) Reset() {
|
|
5237
5401
|
*x = AIRichResponseMapMetadata{}
|
|
5238
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5402
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[45]
|
|
5239
5403
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5240
5404
|
ms.StoreMessageInfo(mi)
|
|
5241
5405
|
}
|
|
@@ -5247,7 +5411,7 @@ func (x *AIRichResponseMapMetadata) String() string {
|
|
|
5247
5411
|
func (*AIRichResponseMapMetadata) ProtoMessage() {}
|
|
5248
5412
|
|
|
5249
5413
|
func (x *AIRichResponseMapMetadata) ProtoReflect() protoreflect.Message {
|
|
5250
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5414
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[45]
|
|
5251
5415
|
if x != nil {
|
|
5252
5416
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5253
5417
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5260,7 +5424,7 @@ func (x *AIRichResponseMapMetadata) ProtoReflect() protoreflect.Message {
|
|
|
5260
5424
|
|
|
5261
5425
|
// Deprecated: Use AIRichResponseMapMetadata.ProtoReflect.Descriptor instead.
|
|
5262
5426
|
func (*AIRichResponseMapMetadata) Descriptor() ([]byte, []int) {
|
|
5263
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5427
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{45}
|
|
5264
5428
|
}
|
|
5265
5429
|
|
|
5266
5430
|
func (x *AIRichResponseMapMetadata) GetCenterLatitude() float64 {
|
|
@@ -5323,7 +5487,7 @@ type AIRichResponseSubMessage struct {
|
|
|
5323
5487
|
|
|
5324
5488
|
func (x *AIRichResponseSubMessage) Reset() {
|
|
5325
5489
|
*x = AIRichResponseSubMessage{}
|
|
5326
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5490
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[46]
|
|
5327
5491
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5328
5492
|
ms.StoreMessageInfo(mi)
|
|
5329
5493
|
}
|
|
@@ -5335,7 +5499,7 @@ func (x *AIRichResponseSubMessage) String() string {
|
|
|
5335
5499
|
func (*AIRichResponseSubMessage) ProtoMessage() {}
|
|
5336
5500
|
|
|
5337
5501
|
func (x *AIRichResponseSubMessage) ProtoReflect() protoreflect.Message {
|
|
5338
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5502
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[46]
|
|
5339
5503
|
if x != nil {
|
|
5340
5504
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5341
5505
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5348,7 +5512,7 @@ func (x *AIRichResponseSubMessage) ProtoReflect() protoreflect.Message {
|
|
|
5348
5512
|
|
|
5349
5513
|
// Deprecated: Use AIRichResponseSubMessage.ProtoReflect.Descriptor instead.
|
|
5350
5514
|
func (*AIRichResponseSubMessage) Descriptor() ([]byte, []int) {
|
|
5351
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
5515
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{46}
|
|
5352
5516
|
}
|
|
5353
5517
|
|
|
5354
5518
|
func (x *AIRichResponseSubMessage) GetMessageType() AIRichResponseSubMessageType {
|
|
@@ -5421,34 +5585,138 @@ func (x *AIRichResponseSubMessage) GetContentItemsMetadata() *AIRichResponseCont
|
|
|
5421
5585
|
return nil
|
|
5422
5586
|
}
|
|
5423
5587
|
|
|
5424
|
-
type
|
|
5425
|
-
state
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
IsReasoning *bool `protobuf:"varint,5,opt,name=isReasoning" json:"isReasoning,omitempty"`
|
|
5431
|
-
IsEnhancedSearch *bool `protobuf:"varint,6,opt,name=isEnhancedSearch" json:"isEnhancedSearch,omitempty"`
|
|
5432
|
-
Sections []*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata `protobuf:"bytes,7,rep,name=sections" json:"sections,omitempty"`
|
|
5433
|
-
unknownFields protoimpl.UnknownFields
|
|
5434
|
-
sizeCache protoimpl.SizeCache
|
|
5588
|
+
type AIRegenerateMetadata struct {
|
|
5589
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
5590
|
+
MessageKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=messageKey" json:"messageKey,omitempty"`
|
|
5591
|
+
ResponseTimestampMS *int64 `protobuf:"varint,2,opt,name=responseTimestampMS" json:"responseTimestampMS,omitempty"`
|
|
5592
|
+
unknownFields protoimpl.UnknownFields
|
|
5593
|
+
sizeCache protoimpl.SizeCache
|
|
5435
5594
|
}
|
|
5436
5595
|
|
|
5437
|
-
func (x *
|
|
5438
|
-
*x =
|
|
5439
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5596
|
+
func (x *AIRegenerateMetadata) Reset() {
|
|
5597
|
+
*x = AIRegenerateMetadata{}
|
|
5598
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[47]
|
|
5440
5599
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5441
5600
|
ms.StoreMessageInfo(mi)
|
|
5442
5601
|
}
|
|
5443
5602
|
|
|
5444
|
-
func (x *
|
|
5603
|
+
func (x *AIRegenerateMetadata) String() string {
|
|
5445
5604
|
return protoimpl.X.MessageStringOf(x)
|
|
5446
5605
|
}
|
|
5447
5606
|
|
|
5448
|
-
func (*
|
|
5607
|
+
func (*AIRegenerateMetadata) ProtoMessage() {}
|
|
5608
|
+
|
|
5609
|
+
func (x *AIRegenerateMetadata) ProtoReflect() protoreflect.Message {
|
|
5610
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[47]
|
|
5611
|
+
if x != nil {
|
|
5612
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5613
|
+
if ms.LoadMessageInfo() == nil {
|
|
5614
|
+
ms.StoreMessageInfo(mi)
|
|
5615
|
+
}
|
|
5616
|
+
return ms
|
|
5617
|
+
}
|
|
5618
|
+
return mi.MessageOf(x)
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
// Deprecated: Use AIRegenerateMetadata.ProtoReflect.Descriptor instead.
|
|
5622
|
+
func (*AIRegenerateMetadata) Descriptor() ([]byte, []int) {
|
|
5623
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{47}
|
|
5624
|
+
}
|
|
5625
|
+
|
|
5626
|
+
func (x *AIRegenerateMetadata) GetMessageKey() *waCommon.MessageKey {
|
|
5627
|
+
if x != nil {
|
|
5628
|
+
return x.MessageKey
|
|
5629
|
+
}
|
|
5630
|
+
return nil
|
|
5631
|
+
}
|
|
5632
|
+
|
|
5633
|
+
func (x *AIRegenerateMetadata) GetResponseTimestampMS() int64 {
|
|
5634
|
+
if x != nil && x.ResponseTimestampMS != nil {
|
|
5635
|
+
return *x.ResponseTimestampMS
|
|
5636
|
+
}
|
|
5637
|
+
return 0
|
|
5638
|
+
}
|
|
5639
|
+
|
|
5640
|
+
type SessionTransparencyMetadata struct {
|
|
5641
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
5642
|
+
DisclaimerText *string `protobuf:"bytes,1,opt,name=disclaimerText" json:"disclaimerText,omitempty"`
|
|
5643
|
+
HcaID *string `protobuf:"bytes,2,opt,name=hcaID" json:"hcaID,omitempty"`
|
|
5644
|
+
unknownFields protoimpl.UnknownFields
|
|
5645
|
+
sizeCache protoimpl.SizeCache
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
func (x *SessionTransparencyMetadata) Reset() {
|
|
5649
|
+
*x = SessionTransparencyMetadata{}
|
|
5650
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[48]
|
|
5651
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5652
|
+
ms.StoreMessageInfo(mi)
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
func (x *SessionTransparencyMetadata) String() string {
|
|
5656
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5657
|
+
}
|
|
5658
|
+
|
|
5659
|
+
func (*SessionTransparencyMetadata) ProtoMessage() {}
|
|
5660
|
+
|
|
5661
|
+
func (x *SessionTransparencyMetadata) ProtoReflect() protoreflect.Message {
|
|
5662
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[48]
|
|
5663
|
+
if x != nil {
|
|
5664
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5665
|
+
if ms.LoadMessageInfo() == nil {
|
|
5666
|
+
ms.StoreMessageInfo(mi)
|
|
5667
|
+
}
|
|
5668
|
+
return ms
|
|
5669
|
+
}
|
|
5670
|
+
return mi.MessageOf(x)
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5673
|
+
// Deprecated: Use SessionTransparencyMetadata.ProtoReflect.Descriptor instead.
|
|
5674
|
+
func (*SessionTransparencyMetadata) Descriptor() ([]byte, []int) {
|
|
5675
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{48}
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5678
|
+
func (x *SessionTransparencyMetadata) GetDisclaimerText() string {
|
|
5679
|
+
if x != nil && x.DisclaimerText != nil {
|
|
5680
|
+
return *x.DisclaimerText
|
|
5681
|
+
}
|
|
5682
|
+
return ""
|
|
5683
|
+
}
|
|
5684
|
+
|
|
5685
|
+
func (x *SessionTransparencyMetadata) GetHcaID() string {
|
|
5686
|
+
if x != nil && x.HcaID != nil {
|
|
5687
|
+
return *x.HcaID
|
|
5688
|
+
}
|
|
5689
|
+
return ""
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
type BotProgressIndicatorMetadata_BotPlanningStepMetadata struct {
|
|
5693
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
5694
|
+
StatusTitle *string `protobuf:"bytes,1,opt,name=statusTitle" json:"statusTitle,omitempty"`
|
|
5695
|
+
StatusBody *string `protobuf:"bytes,2,opt,name=statusBody" json:"statusBody,omitempty"`
|
|
5696
|
+
SourcesMetadata []*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourcesMetadata `protobuf:"bytes,3,rep,name=sourcesMetadata" json:"sourcesMetadata,omitempty"`
|
|
5697
|
+
Status *BotProgressIndicatorMetadata_BotPlanningStepMetadata_PlanningStepStatus `protobuf:"varint,4,opt,name=status,enum=WAAICommon.BotProgressIndicatorMetadata_BotPlanningStepMetadata_PlanningStepStatus" json:"status,omitempty"`
|
|
5698
|
+
IsReasoning *bool `protobuf:"varint,5,opt,name=isReasoning" json:"isReasoning,omitempty"`
|
|
5699
|
+
IsEnhancedSearch *bool `protobuf:"varint,6,opt,name=isEnhancedSearch" json:"isEnhancedSearch,omitempty"`
|
|
5700
|
+
Sections []*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata `protobuf:"bytes,7,rep,name=sections" json:"sections,omitempty"`
|
|
5701
|
+
unknownFields protoimpl.UnknownFields
|
|
5702
|
+
sizeCache protoimpl.SizeCache
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5705
|
+
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata) Reset() {
|
|
5706
|
+
*x = BotProgressIndicatorMetadata_BotPlanningStepMetadata{}
|
|
5707
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[49]
|
|
5708
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5709
|
+
ms.StoreMessageInfo(mi)
|
|
5710
|
+
}
|
|
5711
|
+
|
|
5712
|
+
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata) String() string {
|
|
5713
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5714
|
+
}
|
|
5715
|
+
|
|
5716
|
+
func (*BotProgressIndicatorMetadata_BotPlanningStepMetadata) ProtoMessage() {}
|
|
5449
5717
|
|
|
5450
5718
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata) ProtoReflect() protoreflect.Message {
|
|
5451
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5719
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[49]
|
|
5452
5720
|
if x != nil {
|
|
5453
5721
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5454
5722
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5524,7 +5792,7 @@ type BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourc
|
|
|
5524
5792
|
|
|
5525
5793
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourcesMetadata) Reset() {
|
|
5526
5794
|
*x = BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourcesMetadata{}
|
|
5527
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5795
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[50]
|
|
5528
5796
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5529
5797
|
ms.StoreMessageInfo(mi)
|
|
5530
5798
|
}
|
|
@@ -5537,7 +5805,7 @@ func (*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSou
|
|
|
5537
5805
|
}
|
|
5538
5806
|
|
|
5539
5807
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourcesMetadata) ProtoReflect() protoreflect.Message {
|
|
5540
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5808
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[50]
|
|
5541
5809
|
if x != nil {
|
|
5542
5810
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5543
5811
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5585,7 +5853,7 @@ type BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSection
|
|
|
5585
5853
|
|
|
5586
5854
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata) Reset() {
|
|
5587
5855
|
*x = BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata{}
|
|
5588
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5856
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[51]
|
|
5589
5857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5590
5858
|
ms.StoreMessageInfo(mi)
|
|
5591
5859
|
}
|
|
@@ -5598,7 +5866,7 @@ func (*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSecti
|
|
|
5598
5866
|
}
|
|
5599
5867
|
|
|
5600
5868
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata) ProtoReflect() protoreflect.Message {
|
|
5601
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5869
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[51]
|
|
5602
5870
|
if x != nil {
|
|
5603
5871
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5604
5872
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5647,7 +5915,7 @@ type BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourc
|
|
|
5647
5915
|
|
|
5648
5916
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourceMetadata) Reset() {
|
|
5649
5917
|
*x = BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourceMetadata{}
|
|
5650
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5918
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[52]
|
|
5651
5919
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5652
5920
|
ms.StoreMessageInfo(mi)
|
|
5653
5921
|
}
|
|
@@ -5660,7 +5928,7 @@ func (*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSou
|
|
|
5660
5928
|
}
|
|
5661
5929
|
|
|
5662
5930
|
func (x *BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourceMetadata) ProtoReflect() protoreflect.Message {
|
|
5663
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5931
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[52]
|
|
5664
5932
|
if x != nil {
|
|
5665
5933
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5666
5934
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5715,7 +5983,7 @@ type BotQuotaMetadata_BotFeatureQuotaMetadata struct {
|
|
|
5715
5983
|
|
|
5716
5984
|
func (x *BotQuotaMetadata_BotFeatureQuotaMetadata) Reset() {
|
|
5717
5985
|
*x = BotQuotaMetadata_BotFeatureQuotaMetadata{}
|
|
5718
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5986
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[53]
|
|
5719
5987
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5720
5988
|
ms.StoreMessageInfo(mi)
|
|
5721
5989
|
}
|
|
@@ -5727,7 +5995,7 @@ func (x *BotQuotaMetadata_BotFeatureQuotaMetadata) String() string {
|
|
|
5727
5995
|
func (*BotQuotaMetadata_BotFeatureQuotaMetadata) ProtoMessage() {}
|
|
5728
5996
|
|
|
5729
5997
|
func (x *BotQuotaMetadata_BotFeatureQuotaMetadata) ProtoReflect() protoreflect.Message {
|
|
5730
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
5998
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[53]
|
|
5731
5999
|
if x != nil {
|
|
5732
6000
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5733
6001
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5779,7 +6047,7 @@ type BotSourcesMetadata_BotSourceItem struct {
|
|
|
5779
6047
|
|
|
5780
6048
|
func (x *BotSourcesMetadata_BotSourceItem) Reset() {
|
|
5781
6049
|
*x = BotSourcesMetadata_BotSourceItem{}
|
|
5782
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6050
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[54]
|
|
5783
6051
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5784
6052
|
ms.StoreMessageInfo(mi)
|
|
5785
6053
|
}
|
|
@@ -5791,7 +6059,7 @@ func (x *BotSourcesMetadata_BotSourceItem) String() string {
|
|
|
5791
6059
|
func (*BotSourcesMetadata_BotSourceItem) ProtoMessage() {}
|
|
5792
6060
|
|
|
5793
6061
|
func (x *BotSourcesMetadata_BotSourceItem) ProtoReflect() protoreflect.Message {
|
|
5794
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6062
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[54]
|
|
5795
6063
|
if x != nil {
|
|
5796
6064
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5797
6065
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5865,7 +6133,7 @@ type AIThreadInfo_AIThreadClientInfo struct {
|
|
|
5865
6133
|
|
|
5866
6134
|
func (x *AIThreadInfo_AIThreadClientInfo) Reset() {
|
|
5867
6135
|
*x = AIThreadInfo_AIThreadClientInfo{}
|
|
5868
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6136
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[55]
|
|
5869
6137
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5870
6138
|
ms.StoreMessageInfo(mi)
|
|
5871
6139
|
}
|
|
@@ -5877,7 +6145,7 @@ func (x *AIThreadInfo_AIThreadClientInfo) String() string {
|
|
|
5877
6145
|
func (*AIThreadInfo_AIThreadClientInfo) ProtoMessage() {}
|
|
5878
6146
|
|
|
5879
6147
|
func (x *AIThreadInfo_AIThreadClientInfo) ProtoReflect() protoreflect.Message {
|
|
5880
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6148
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[55]
|
|
5881
6149
|
if x != nil {
|
|
5882
6150
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5883
6151
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5909,7 +6177,7 @@ type AIThreadInfo_AIThreadServerInfo struct {
|
|
|
5909
6177
|
|
|
5910
6178
|
func (x *AIThreadInfo_AIThreadServerInfo) Reset() {
|
|
5911
6179
|
*x = AIThreadInfo_AIThreadServerInfo{}
|
|
5912
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6180
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[56]
|
|
5913
6181
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5914
6182
|
ms.StoreMessageInfo(mi)
|
|
5915
6183
|
}
|
|
@@ -5921,7 +6189,7 @@ func (x *AIThreadInfo_AIThreadServerInfo) String() string {
|
|
|
5921
6189
|
func (*AIThreadInfo_AIThreadServerInfo) ProtoMessage() {}
|
|
5922
6190
|
|
|
5923
6191
|
func (x *AIThreadInfo_AIThreadServerInfo) ProtoReflect() protoreflect.Message {
|
|
5924
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6192
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[56]
|
|
5925
6193
|
if x != nil {
|
|
5926
6194
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5927
6195
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5945,22 +6213,23 @@ func (x *AIThreadInfo_AIThreadServerInfo) GetTitle() string {
|
|
|
5945
6213
|
}
|
|
5946
6214
|
|
|
5947
6215
|
type BotFeedbackMessage_SideBySideSurveyMetadata struct {
|
|
5948
|
-
state protoimpl.MessageState
|
|
5949
|
-
SelectedRequestID *string
|
|
5950
|
-
SurveyID *uint32
|
|
5951
|
-
SimonSessionFbid *string
|
|
5952
|
-
ResponseOtid *string
|
|
5953
|
-
ResponseTimestampMSString *string
|
|
5954
|
-
IsSelectedResponsePrimary *bool
|
|
5955
|
-
MessageIDToEdit *string
|
|
5956
|
-
AnalyticsData *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData
|
|
6216
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6217
|
+
SelectedRequestID *string `protobuf:"bytes,1,opt,name=selectedRequestID" json:"selectedRequestID,omitempty"`
|
|
6218
|
+
SurveyID *uint32 `protobuf:"varint,2,opt,name=surveyID" json:"surveyID,omitempty"`
|
|
6219
|
+
SimonSessionFbid *string `protobuf:"bytes,3,opt,name=simonSessionFbid" json:"simonSessionFbid,omitempty"`
|
|
6220
|
+
ResponseOtid *string `protobuf:"bytes,4,opt,name=responseOtid" json:"responseOtid,omitempty"`
|
|
6221
|
+
ResponseTimestampMSString *string `protobuf:"bytes,5,opt,name=responseTimestampMSString" json:"responseTimestampMSString,omitempty"`
|
|
6222
|
+
IsSelectedResponsePrimary *bool `protobuf:"varint,6,opt,name=isSelectedResponsePrimary" json:"isSelectedResponsePrimary,omitempty"`
|
|
6223
|
+
MessageIDToEdit *string `protobuf:"bytes,7,opt,name=messageIDToEdit" json:"messageIDToEdit,omitempty"`
|
|
6224
|
+
AnalyticsData *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData `protobuf:"bytes,8,opt,name=analyticsData" json:"analyticsData,omitempty"`
|
|
6225
|
+
MetaAiAnalyticsData *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData `protobuf:"bytes,9,opt,name=metaAiAnalyticsData" json:"metaAiAnalyticsData,omitempty"`
|
|
5957
6226
|
unknownFields protoimpl.UnknownFields
|
|
5958
6227
|
sizeCache protoimpl.SizeCache
|
|
5959
6228
|
}
|
|
5960
6229
|
|
|
5961
6230
|
func (x *BotFeedbackMessage_SideBySideSurveyMetadata) Reset() {
|
|
5962
6231
|
*x = BotFeedbackMessage_SideBySideSurveyMetadata{}
|
|
5963
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6232
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[57]
|
|
5964
6233
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5965
6234
|
ms.StoreMessageInfo(mi)
|
|
5966
6235
|
}
|
|
@@ -5972,7 +6241,7 @@ func (x *BotFeedbackMessage_SideBySideSurveyMetadata) String() string {
|
|
|
5972
6241
|
func (*BotFeedbackMessage_SideBySideSurveyMetadata) ProtoMessage() {}
|
|
5973
6242
|
|
|
5974
6243
|
func (x *BotFeedbackMessage_SideBySideSurveyMetadata) ProtoReflect() protoreflect.Message {
|
|
5975
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6244
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[57]
|
|
5976
6245
|
if x != nil {
|
|
5977
6246
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5978
6247
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6044,17 +6313,134 @@ func (x *BotFeedbackMessage_SideBySideSurveyMetadata) GetAnalyticsData() *BotFee
|
|
|
6044
6313
|
return nil
|
|
6045
6314
|
}
|
|
6046
6315
|
|
|
6316
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata) GetMetaAiAnalyticsData() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData {
|
|
6317
|
+
if x != nil {
|
|
6318
|
+
return x.MetaAiAnalyticsData
|
|
6319
|
+
}
|
|
6320
|
+
return nil
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6323
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData struct {
|
|
6324
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6325
|
+
SurveyID *uint32 `protobuf:"varint,1,opt,name=surveyID" json:"surveyID,omitempty"`
|
|
6326
|
+
PrimaryResponseID *string `protobuf:"bytes,2,opt,name=primaryResponseID" json:"primaryResponseID,omitempty"`
|
|
6327
|
+
TestArmName *string `protobuf:"bytes,3,opt,name=testArmName" json:"testArmName,omitempty"`
|
|
6328
|
+
TimestampMSString *string `protobuf:"bytes,4,opt,name=timestampMSString" json:"timestampMSString,omitempty"`
|
|
6329
|
+
CtaImpressionEvent *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData `protobuf:"bytes,5,opt,name=ctaImpressionEvent" json:"ctaImpressionEvent,omitempty"`
|
|
6330
|
+
CtaClickEvent *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData `protobuf:"bytes,6,opt,name=ctaClickEvent" json:"ctaClickEvent,omitempty"`
|
|
6331
|
+
CardImpressionEvent *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData `protobuf:"bytes,7,opt,name=cardImpressionEvent" json:"cardImpressionEvent,omitempty"`
|
|
6332
|
+
ResponseEvent *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData `protobuf:"bytes,8,opt,name=responseEvent" json:"responseEvent,omitempty"`
|
|
6333
|
+
AbandonEvent *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData `protobuf:"bytes,9,opt,name=abandonEvent" json:"abandonEvent,omitempty"`
|
|
6334
|
+
unknownFields protoimpl.UnknownFields
|
|
6335
|
+
sizeCache protoimpl.SizeCache
|
|
6336
|
+
}
|
|
6337
|
+
|
|
6338
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) Reset() {
|
|
6339
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData{}
|
|
6340
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[58]
|
|
6341
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6342
|
+
ms.StoreMessageInfo(mi)
|
|
6343
|
+
}
|
|
6344
|
+
|
|
6345
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) String() string {
|
|
6346
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6347
|
+
}
|
|
6348
|
+
|
|
6349
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) ProtoMessage() {
|
|
6350
|
+
}
|
|
6351
|
+
|
|
6352
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) ProtoReflect() protoreflect.Message {
|
|
6353
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[58]
|
|
6354
|
+
if x != nil {
|
|
6355
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6356
|
+
if ms.LoadMessageInfo() == nil {
|
|
6357
|
+
ms.StoreMessageInfo(mi)
|
|
6358
|
+
}
|
|
6359
|
+
return ms
|
|
6360
|
+
}
|
|
6361
|
+
return mi.MessageOf(x)
|
|
6362
|
+
}
|
|
6363
|
+
|
|
6364
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData.ProtoReflect.Descriptor instead.
|
|
6365
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) Descriptor() ([]byte, []int) {
|
|
6366
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0}
|
|
6367
|
+
}
|
|
6368
|
+
|
|
6369
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetSurveyID() uint32 {
|
|
6370
|
+
if x != nil && x.SurveyID != nil {
|
|
6371
|
+
return *x.SurveyID
|
|
6372
|
+
}
|
|
6373
|
+
return 0
|
|
6374
|
+
}
|
|
6375
|
+
|
|
6376
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetPrimaryResponseID() string {
|
|
6377
|
+
if x != nil && x.PrimaryResponseID != nil {
|
|
6378
|
+
return *x.PrimaryResponseID
|
|
6379
|
+
}
|
|
6380
|
+
return ""
|
|
6381
|
+
}
|
|
6382
|
+
|
|
6383
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetTestArmName() string {
|
|
6384
|
+
if x != nil && x.TestArmName != nil {
|
|
6385
|
+
return *x.TestArmName
|
|
6386
|
+
}
|
|
6387
|
+
return ""
|
|
6388
|
+
}
|
|
6389
|
+
|
|
6390
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetTimestampMSString() string {
|
|
6391
|
+
if x != nil && x.TimestampMSString != nil {
|
|
6392
|
+
return *x.TimestampMSString
|
|
6393
|
+
}
|
|
6394
|
+
return ""
|
|
6395
|
+
}
|
|
6396
|
+
|
|
6397
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetCtaImpressionEvent() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData {
|
|
6398
|
+
if x != nil {
|
|
6399
|
+
return x.CtaImpressionEvent
|
|
6400
|
+
}
|
|
6401
|
+
return nil
|
|
6402
|
+
}
|
|
6403
|
+
|
|
6404
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetCtaClickEvent() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData {
|
|
6405
|
+
if x != nil {
|
|
6406
|
+
return x.CtaClickEvent
|
|
6407
|
+
}
|
|
6408
|
+
return nil
|
|
6409
|
+
}
|
|
6410
|
+
|
|
6411
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetCardImpressionEvent() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData {
|
|
6412
|
+
if x != nil {
|
|
6413
|
+
return x.CardImpressionEvent
|
|
6414
|
+
}
|
|
6415
|
+
return nil
|
|
6416
|
+
}
|
|
6417
|
+
|
|
6418
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetResponseEvent() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData {
|
|
6419
|
+
if x != nil {
|
|
6420
|
+
return x.ResponseEvent
|
|
6421
|
+
}
|
|
6422
|
+
return nil
|
|
6423
|
+
}
|
|
6424
|
+
|
|
6425
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData) GetAbandonEvent() *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData {
|
|
6426
|
+
if x != nil {
|
|
6427
|
+
return x.AbandonEvent
|
|
6428
|
+
}
|
|
6429
|
+
return nil
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6047
6432
|
type BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData struct {
|
|
6048
6433
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6049
6434
|
TessaEvent *string `protobuf:"bytes,1,opt,name=tessaEvent" json:"tessaEvent,omitempty"`
|
|
6050
6435
|
TessaSessionFbid *string `protobuf:"bytes,2,opt,name=tessaSessionFbid" json:"tessaSessionFbid,omitempty"`
|
|
6436
|
+
SimonSessionFbid *string `protobuf:"bytes,3,opt,name=simonSessionFbid" json:"simonSessionFbid,omitempty"`
|
|
6051
6437
|
unknownFields protoimpl.UnknownFields
|
|
6052
6438
|
sizeCache protoimpl.SizeCache
|
|
6053
6439
|
}
|
|
6054
6440
|
|
|
6055
6441
|
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) Reset() {
|
|
6056
6442
|
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData{}
|
|
6057
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6443
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[59]
|
|
6058
6444
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6059
6445
|
ms.StoreMessageInfo(mi)
|
|
6060
6446
|
}
|
|
@@ -6066,7 +6452,7 @@ func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsDa
|
|
|
6066
6452
|
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) ProtoMessage() {}
|
|
6067
6453
|
|
|
6068
6454
|
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) ProtoReflect() protoreflect.Message {
|
|
6069
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6455
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[59]
|
|
6070
6456
|
if x != nil {
|
|
6071
6457
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6072
6458
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6079,7 +6465,7 @@ func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsDa
|
|
|
6079
6465
|
|
|
6080
6466
|
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData.ProtoReflect.Descriptor instead.
|
|
6081
6467
|
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) Descriptor() ([]byte, []int) {
|
|
6082
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0,
|
|
6468
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 1}
|
|
6083
6469
|
}
|
|
6084
6470
|
|
|
6085
6471
|
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) GetTessaEvent() string {
|
|
@@ -6096,6 +6482,246 @@ func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsDa
|
|
|
6096
6482
|
return ""
|
|
6097
6483
|
}
|
|
6098
6484
|
|
|
6485
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData) GetSimonSessionFbid() string {
|
|
6486
|
+
if x != nil && x.SimonSessionFbid != nil {
|
|
6487
|
+
return *x.SimonSessionFbid
|
|
6488
|
+
}
|
|
6489
|
+
return ""
|
|
6490
|
+
}
|
|
6491
|
+
|
|
6492
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData struct {
|
|
6493
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6494
|
+
AbandonDwellTimeMSString *string `protobuf:"bytes,1,opt,name=abandonDwellTimeMSString" json:"abandonDwellTimeMSString,omitempty"`
|
|
6495
|
+
unknownFields protoimpl.UnknownFields
|
|
6496
|
+
sizeCache protoimpl.SizeCache
|
|
6497
|
+
}
|
|
6498
|
+
|
|
6499
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) Reset() {
|
|
6500
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData{}
|
|
6501
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[60]
|
|
6502
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6503
|
+
ms.StoreMessageInfo(mi)
|
|
6504
|
+
}
|
|
6505
|
+
|
|
6506
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) String() string {
|
|
6507
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6508
|
+
}
|
|
6509
|
+
|
|
6510
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) ProtoMessage() {
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) ProtoReflect() protoreflect.Message {
|
|
6514
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[60]
|
|
6515
|
+
if x != nil {
|
|
6516
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6517
|
+
if ms.LoadMessageInfo() == nil {
|
|
6518
|
+
ms.StoreMessageInfo(mi)
|
|
6519
|
+
}
|
|
6520
|
+
return ms
|
|
6521
|
+
}
|
|
6522
|
+
return mi.MessageOf(x)
|
|
6523
|
+
}
|
|
6524
|
+
|
|
6525
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData.ProtoReflect.Descriptor instead.
|
|
6526
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) Descriptor() ([]byte, []int) {
|
|
6527
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0, 0}
|
|
6528
|
+
}
|
|
6529
|
+
|
|
6530
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData) GetAbandonDwellTimeMSString() string {
|
|
6531
|
+
if x != nil && x.AbandonDwellTimeMSString != nil {
|
|
6532
|
+
return *x.AbandonDwellTimeMSString
|
|
6533
|
+
}
|
|
6534
|
+
return ""
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData struct {
|
|
6538
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6539
|
+
ResponseDwellTimeMSString *string `protobuf:"bytes,1,opt,name=responseDwellTimeMSString" json:"responseDwellTimeMSString,omitempty"`
|
|
6540
|
+
SelectedResponseID *string `protobuf:"bytes,2,opt,name=selectedResponseID" json:"selectedResponseID,omitempty"`
|
|
6541
|
+
unknownFields protoimpl.UnknownFields
|
|
6542
|
+
sizeCache protoimpl.SizeCache
|
|
6543
|
+
}
|
|
6544
|
+
|
|
6545
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) Reset() {
|
|
6546
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData{}
|
|
6547
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[61]
|
|
6548
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6549
|
+
ms.StoreMessageInfo(mi)
|
|
6550
|
+
}
|
|
6551
|
+
|
|
6552
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) String() string {
|
|
6553
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6554
|
+
}
|
|
6555
|
+
|
|
6556
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) ProtoMessage() {
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6559
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) ProtoReflect() protoreflect.Message {
|
|
6560
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[61]
|
|
6561
|
+
if x != nil {
|
|
6562
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6563
|
+
if ms.LoadMessageInfo() == nil {
|
|
6564
|
+
ms.StoreMessageInfo(mi)
|
|
6565
|
+
}
|
|
6566
|
+
return ms
|
|
6567
|
+
}
|
|
6568
|
+
return mi.MessageOf(x)
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData.ProtoReflect.Descriptor instead.
|
|
6572
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) Descriptor() ([]byte, []int) {
|
|
6573
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0, 1}
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6576
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) GetResponseDwellTimeMSString() string {
|
|
6577
|
+
if x != nil && x.ResponseDwellTimeMSString != nil {
|
|
6578
|
+
return *x.ResponseDwellTimeMSString
|
|
6579
|
+
}
|
|
6580
|
+
return ""
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData) GetSelectedResponseID() string {
|
|
6584
|
+
if x != nil && x.SelectedResponseID != nil {
|
|
6585
|
+
return *x.SelectedResponseID
|
|
6586
|
+
}
|
|
6587
|
+
return ""
|
|
6588
|
+
}
|
|
6589
|
+
|
|
6590
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData struct {
|
|
6591
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6592
|
+
unknownFields protoimpl.UnknownFields
|
|
6593
|
+
sizeCache protoimpl.SizeCache
|
|
6594
|
+
}
|
|
6595
|
+
|
|
6596
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData) Reset() {
|
|
6597
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData{}
|
|
6598
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[62]
|
|
6599
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6600
|
+
ms.StoreMessageInfo(mi)
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData) String() string {
|
|
6604
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6605
|
+
}
|
|
6606
|
+
|
|
6607
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData) ProtoMessage() {
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData) ProtoReflect() protoreflect.Message {
|
|
6611
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[62]
|
|
6612
|
+
if x != nil {
|
|
6613
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6614
|
+
if ms.LoadMessageInfo() == nil {
|
|
6615
|
+
ms.StoreMessageInfo(mi)
|
|
6616
|
+
}
|
|
6617
|
+
return ms
|
|
6618
|
+
}
|
|
6619
|
+
return mi.MessageOf(x)
|
|
6620
|
+
}
|
|
6621
|
+
|
|
6622
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData.ProtoReflect.Descriptor instead.
|
|
6623
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData) Descriptor() ([]byte, []int) {
|
|
6624
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0, 2}
|
|
6625
|
+
}
|
|
6626
|
+
|
|
6627
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData struct {
|
|
6628
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6629
|
+
IsSurveyExpired *bool `protobuf:"varint,1,opt,name=isSurveyExpired" json:"isSurveyExpired,omitempty"`
|
|
6630
|
+
ClickDwellTimeMSString *string `protobuf:"bytes,2,opt,name=clickDwellTimeMSString" json:"clickDwellTimeMSString,omitempty"`
|
|
6631
|
+
unknownFields protoimpl.UnknownFields
|
|
6632
|
+
sizeCache protoimpl.SizeCache
|
|
6633
|
+
}
|
|
6634
|
+
|
|
6635
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) Reset() {
|
|
6636
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData{}
|
|
6637
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[63]
|
|
6638
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6639
|
+
ms.StoreMessageInfo(mi)
|
|
6640
|
+
}
|
|
6641
|
+
|
|
6642
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) String() string {
|
|
6643
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6644
|
+
}
|
|
6645
|
+
|
|
6646
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) ProtoMessage() {
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6649
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) ProtoReflect() protoreflect.Message {
|
|
6650
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[63]
|
|
6651
|
+
if x != nil {
|
|
6652
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6653
|
+
if ms.LoadMessageInfo() == nil {
|
|
6654
|
+
ms.StoreMessageInfo(mi)
|
|
6655
|
+
}
|
|
6656
|
+
return ms
|
|
6657
|
+
}
|
|
6658
|
+
return mi.MessageOf(x)
|
|
6659
|
+
}
|
|
6660
|
+
|
|
6661
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData.ProtoReflect.Descriptor instead.
|
|
6662
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) Descriptor() ([]byte, []int) {
|
|
6663
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0, 3}
|
|
6664
|
+
}
|
|
6665
|
+
|
|
6666
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) GetIsSurveyExpired() bool {
|
|
6667
|
+
if x != nil && x.IsSurveyExpired != nil {
|
|
6668
|
+
return *x.IsSurveyExpired
|
|
6669
|
+
}
|
|
6670
|
+
return false
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6673
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData) GetClickDwellTimeMSString() string {
|
|
6674
|
+
if x != nil && x.ClickDwellTimeMSString != nil {
|
|
6675
|
+
return *x.ClickDwellTimeMSString
|
|
6676
|
+
}
|
|
6677
|
+
return ""
|
|
6678
|
+
}
|
|
6679
|
+
|
|
6680
|
+
type BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData struct {
|
|
6681
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6682
|
+
IsSurveyExpired *bool `protobuf:"varint,1,opt,name=isSurveyExpired" json:"isSurveyExpired,omitempty"`
|
|
6683
|
+
unknownFields protoimpl.UnknownFields
|
|
6684
|
+
sizeCache protoimpl.SizeCache
|
|
6685
|
+
}
|
|
6686
|
+
|
|
6687
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) Reset() {
|
|
6688
|
+
*x = BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData{}
|
|
6689
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[64]
|
|
6690
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6691
|
+
ms.StoreMessageInfo(mi)
|
|
6692
|
+
}
|
|
6693
|
+
|
|
6694
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) String() string {
|
|
6695
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) ProtoMessage() {
|
|
6699
|
+
}
|
|
6700
|
+
|
|
6701
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) ProtoReflect() protoreflect.Message {
|
|
6702
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[64]
|
|
6703
|
+
if x != nil {
|
|
6704
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6705
|
+
if ms.LoadMessageInfo() == nil {
|
|
6706
|
+
ms.StoreMessageInfo(mi)
|
|
6707
|
+
}
|
|
6708
|
+
return ms
|
|
6709
|
+
}
|
|
6710
|
+
return mi.MessageOf(x)
|
|
6711
|
+
}
|
|
6712
|
+
|
|
6713
|
+
// Deprecated: Use BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData.ProtoReflect.Descriptor instead.
|
|
6714
|
+
func (*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) Descriptor() ([]byte, []int) {
|
|
6715
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{16, 0, 0, 4}
|
|
6716
|
+
}
|
|
6717
|
+
|
|
6718
|
+
func (x *BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData) GetIsSurveyExpired() bool {
|
|
6719
|
+
if x != nil && x.IsSurveyExpired != nil {
|
|
6720
|
+
return *x.IsSurveyExpired
|
|
6721
|
+
}
|
|
6722
|
+
return false
|
|
6723
|
+
}
|
|
6724
|
+
|
|
6099
6725
|
type AIRichResponseCodeMetadata_AIRichResponseCodeBlock struct {
|
|
6100
6726
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6101
6727
|
HighlightType *AIRichResponseCodeMetadata_AIRichResponseCodeHighlightType `protobuf:"varint,1,opt,name=highlightType,enum=WAAICommon.AIRichResponseCodeMetadata_AIRichResponseCodeHighlightType" json:"highlightType,omitempty"`
|
|
@@ -6106,7 +6732,7 @@ type AIRichResponseCodeMetadata_AIRichResponseCodeBlock struct {
|
|
|
6106
6732
|
|
|
6107
6733
|
func (x *AIRichResponseCodeMetadata_AIRichResponseCodeBlock) Reset() {
|
|
6108
6734
|
*x = AIRichResponseCodeMetadata_AIRichResponseCodeBlock{}
|
|
6109
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6735
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[65]
|
|
6110
6736
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6111
6737
|
ms.StoreMessageInfo(mi)
|
|
6112
6738
|
}
|
|
@@ -6118,7 +6744,7 @@ func (x *AIRichResponseCodeMetadata_AIRichResponseCodeBlock) String() string {
|
|
|
6118
6744
|
func (*AIRichResponseCodeMetadata_AIRichResponseCodeBlock) ProtoMessage() {}
|
|
6119
6745
|
|
|
6120
6746
|
func (x *AIRichResponseCodeMetadata_AIRichResponseCodeBlock) ProtoReflect() protoreflect.Message {
|
|
6121
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6747
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[65]
|
|
6122
6748
|
if x != nil {
|
|
6123
6749
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6124
6750
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6160,7 +6786,7 @@ type AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata struct
|
|
|
6160
6786
|
|
|
6161
6787
|
func (x *AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata) Reset() {
|
|
6162
6788
|
*x = AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata{}
|
|
6163
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6789
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[66]
|
|
6164
6790
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6165
6791
|
ms.StoreMessageInfo(mi)
|
|
6166
6792
|
}
|
|
@@ -6172,7 +6798,7 @@ func (x *AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata) S
|
|
|
6172
6798
|
func (*AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata) ProtoMessage() {}
|
|
6173
6799
|
|
|
6174
6800
|
func (x *AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata) ProtoReflect() protoreflect.Message {
|
|
6175
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6801
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[66]
|
|
6176
6802
|
if x != nil {
|
|
6177
6803
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6178
6804
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6227,7 +6853,7 @@ type AIRichResponseContentItemsMetadata_AIRichResponseReelItem struct {
|
|
|
6227
6853
|
|
|
6228
6854
|
func (x *AIRichResponseContentItemsMetadata_AIRichResponseReelItem) Reset() {
|
|
6229
6855
|
*x = AIRichResponseContentItemsMetadata_AIRichResponseReelItem{}
|
|
6230
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6856
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[67]
|
|
6231
6857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6232
6858
|
ms.StoreMessageInfo(mi)
|
|
6233
6859
|
}
|
|
@@ -6239,7 +6865,7 @@ func (x *AIRichResponseContentItemsMetadata_AIRichResponseReelItem) String() str
|
|
|
6239
6865
|
func (*AIRichResponseContentItemsMetadata_AIRichResponseReelItem) ProtoMessage() {}
|
|
6240
6866
|
|
|
6241
6867
|
func (x *AIRichResponseContentItemsMetadata_AIRichResponseReelItem) ProtoReflect() protoreflect.Message {
|
|
6242
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
6868
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[67]
|
|
6243
6869
|
if x != nil {
|
|
6244
6870
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6245
6871
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6283,6 +6909,98 @@ func (x *AIRichResponseContentItemsMetadata_AIRichResponseReelItem) GetVideoURL(
|
|
|
6283
6909
|
return ""
|
|
6284
6910
|
}
|
|
6285
6911
|
|
|
6912
|
+
type AIHomeState_AIHomeOption struct {
|
|
6913
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6914
|
+
Type *AIHomeState_AIHomeOption_AIHomeActionType `protobuf:"varint,1,opt,name=type,enum=WAAICommon.AIHomeState_AIHomeOption_AIHomeActionType" json:"type,omitempty"`
|
|
6915
|
+
Title *string `protobuf:"bytes,2,opt,name=title" json:"title,omitempty"`
|
|
6916
|
+
PromptText *string `protobuf:"bytes,3,opt,name=promptText" json:"promptText,omitempty"`
|
|
6917
|
+
SessionID *string `protobuf:"bytes,4,opt,name=sessionID" json:"sessionID,omitempty"`
|
|
6918
|
+
ImageWdsIdentifier *string `protobuf:"bytes,5,opt,name=imageWdsIdentifier" json:"imageWdsIdentifier,omitempty"`
|
|
6919
|
+
ImageTintColor *string `protobuf:"bytes,6,opt,name=imageTintColor" json:"imageTintColor,omitempty"`
|
|
6920
|
+
ImageBackgroundColor *string `protobuf:"bytes,7,opt,name=imageBackgroundColor" json:"imageBackgroundColor,omitempty"`
|
|
6921
|
+
unknownFields protoimpl.UnknownFields
|
|
6922
|
+
sizeCache protoimpl.SizeCache
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6925
|
+
func (x *AIHomeState_AIHomeOption) Reset() {
|
|
6926
|
+
*x = AIHomeState_AIHomeOption{}
|
|
6927
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[68]
|
|
6928
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6929
|
+
ms.StoreMessageInfo(mi)
|
|
6930
|
+
}
|
|
6931
|
+
|
|
6932
|
+
func (x *AIHomeState_AIHomeOption) String() string {
|
|
6933
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6934
|
+
}
|
|
6935
|
+
|
|
6936
|
+
func (*AIHomeState_AIHomeOption) ProtoMessage() {}
|
|
6937
|
+
|
|
6938
|
+
func (x *AIHomeState_AIHomeOption) ProtoReflect() protoreflect.Message {
|
|
6939
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[68]
|
|
6940
|
+
if x != nil {
|
|
6941
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6942
|
+
if ms.LoadMessageInfo() == nil {
|
|
6943
|
+
ms.StoreMessageInfo(mi)
|
|
6944
|
+
}
|
|
6945
|
+
return ms
|
|
6946
|
+
}
|
|
6947
|
+
return mi.MessageOf(x)
|
|
6948
|
+
}
|
|
6949
|
+
|
|
6950
|
+
// Deprecated: Use AIHomeState_AIHomeOption.ProtoReflect.Descriptor instead.
|
|
6951
|
+
func (*AIHomeState_AIHomeOption) Descriptor() ([]byte, []int) {
|
|
6952
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{21, 0}
|
|
6953
|
+
}
|
|
6954
|
+
|
|
6955
|
+
func (x *AIHomeState_AIHomeOption) GetType() AIHomeState_AIHomeOption_AIHomeActionType {
|
|
6956
|
+
if x != nil && x.Type != nil {
|
|
6957
|
+
return *x.Type
|
|
6958
|
+
}
|
|
6959
|
+
return AIHomeState_AIHomeOption_PROMPT
|
|
6960
|
+
}
|
|
6961
|
+
|
|
6962
|
+
func (x *AIHomeState_AIHomeOption) GetTitle() string {
|
|
6963
|
+
if x != nil && x.Title != nil {
|
|
6964
|
+
return *x.Title
|
|
6965
|
+
}
|
|
6966
|
+
return ""
|
|
6967
|
+
}
|
|
6968
|
+
|
|
6969
|
+
func (x *AIHomeState_AIHomeOption) GetPromptText() string {
|
|
6970
|
+
if x != nil && x.PromptText != nil {
|
|
6971
|
+
return *x.PromptText
|
|
6972
|
+
}
|
|
6973
|
+
return ""
|
|
6974
|
+
}
|
|
6975
|
+
|
|
6976
|
+
func (x *AIHomeState_AIHomeOption) GetSessionID() string {
|
|
6977
|
+
if x != nil && x.SessionID != nil {
|
|
6978
|
+
return *x.SessionID
|
|
6979
|
+
}
|
|
6980
|
+
return ""
|
|
6981
|
+
}
|
|
6982
|
+
|
|
6983
|
+
func (x *AIHomeState_AIHomeOption) GetImageWdsIdentifier() string {
|
|
6984
|
+
if x != nil && x.ImageWdsIdentifier != nil {
|
|
6985
|
+
return *x.ImageWdsIdentifier
|
|
6986
|
+
}
|
|
6987
|
+
return ""
|
|
6988
|
+
}
|
|
6989
|
+
|
|
6990
|
+
func (x *AIHomeState_AIHomeOption) GetImageTintColor() string {
|
|
6991
|
+
if x != nil && x.ImageTintColor != nil {
|
|
6992
|
+
return *x.ImageTintColor
|
|
6993
|
+
}
|
|
6994
|
+
return ""
|
|
6995
|
+
}
|
|
6996
|
+
|
|
6997
|
+
func (x *AIHomeState_AIHomeOption) GetImageBackgroundColor() string {
|
|
6998
|
+
if x != nil && x.ImageBackgroundColor != nil {
|
|
6999
|
+
return *x.ImageBackgroundColor
|
|
7000
|
+
}
|
|
7001
|
+
return ""
|
|
7002
|
+
}
|
|
7003
|
+
|
|
6286
7004
|
type BotRenderingMetadata_Keyword struct {
|
|
6287
7005
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6288
7006
|
Value *string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
|
|
@@ -6293,7 +7011,7 @@ type BotRenderingMetadata_Keyword struct {
|
|
|
6293
7011
|
|
|
6294
7012
|
func (x *BotRenderingMetadata_Keyword) Reset() {
|
|
6295
7013
|
*x = BotRenderingMetadata_Keyword{}
|
|
6296
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7014
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[69]
|
|
6297
7015
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6298
7016
|
ms.StoreMessageInfo(mi)
|
|
6299
7017
|
}
|
|
@@ -6305,7 +7023,7 @@ func (x *BotRenderingMetadata_Keyword) String() string {
|
|
|
6305
7023
|
func (*BotRenderingMetadata_Keyword) ProtoMessage() {}
|
|
6306
7024
|
|
|
6307
7025
|
func (x *BotRenderingMetadata_Keyword) ProtoReflect() protoreflect.Message {
|
|
6308
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7026
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[69]
|
|
6309
7027
|
if x != nil {
|
|
6310
7028
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6311
7029
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6318,7 +7036,7 @@ func (x *BotRenderingMetadata_Keyword) ProtoReflect() protoreflect.Message {
|
|
|
6318
7036
|
|
|
6319
7037
|
// Deprecated: Use BotRenderingMetadata_Keyword.ProtoReflect.Descriptor instead.
|
|
6320
7038
|
func (*BotRenderingMetadata_Keyword) Descriptor() ([]byte, []int) {
|
|
6321
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7039
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{30, 0}
|
|
6322
7040
|
}
|
|
6323
7041
|
|
|
6324
7042
|
func (x *BotRenderingMetadata_Keyword) GetValue() string {
|
|
@@ -6345,7 +7063,7 @@ type InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart struct {
|
|
|
6345
7063
|
|
|
6346
7064
|
func (x *InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) Reset() {
|
|
6347
7065
|
*x = InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart{}
|
|
6348
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7066
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[70]
|
|
6349
7067
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6350
7068
|
ms.StoreMessageInfo(mi)
|
|
6351
7069
|
}
|
|
@@ -6357,7 +7075,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) String() str
|
|
|
6357
7075
|
func (*InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) ProtoMessage() {}
|
|
6358
7076
|
|
|
6359
7077
|
func (x *InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) ProtoReflect() protoreflect.Message {
|
|
6360
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7078
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[70]
|
|
6361
7079
|
if x != nil {
|
|
6362
7080
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6363
7081
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6370,7 +7088,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) ProtoReflect
|
|
|
6370
7088
|
|
|
6371
7089
|
// Deprecated: Use InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart.ProtoReflect.Descriptor instead.
|
|
6372
7090
|
func (*InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) Descriptor() ([]byte, []int) {
|
|
6373
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7091
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{34, 0}
|
|
6374
7092
|
}
|
|
6375
7093
|
|
|
6376
7094
|
func (x *InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart) GetText() string {
|
|
@@ -6398,7 +7116,7 @@ type InThreadSurveyMetadata_InThreadSurveyOption struct {
|
|
|
6398
7116
|
|
|
6399
7117
|
func (x *InThreadSurveyMetadata_InThreadSurveyOption) Reset() {
|
|
6400
7118
|
*x = InThreadSurveyMetadata_InThreadSurveyOption{}
|
|
6401
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7119
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[71]
|
|
6402
7120
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6403
7121
|
ms.StoreMessageInfo(mi)
|
|
6404
7122
|
}
|
|
@@ -6410,7 +7128,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyOption) String() string {
|
|
|
6410
7128
|
func (*InThreadSurveyMetadata_InThreadSurveyOption) ProtoMessage() {}
|
|
6411
7129
|
|
|
6412
7130
|
func (x *InThreadSurveyMetadata_InThreadSurveyOption) ProtoReflect() protoreflect.Message {
|
|
6413
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7131
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[71]
|
|
6414
7132
|
if x != nil {
|
|
6415
7133
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6416
7134
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6423,7 +7141,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyOption) ProtoReflect() protoreflec
|
|
|
6423
7141
|
|
|
6424
7142
|
// Deprecated: Use InThreadSurveyMetadata_InThreadSurveyOption.ProtoReflect.Descriptor instead.
|
|
6425
7143
|
func (*InThreadSurveyMetadata_InThreadSurveyOption) Descriptor() ([]byte, []int) {
|
|
6426
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7144
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{34, 1}
|
|
6427
7145
|
}
|
|
6428
7146
|
|
|
6429
7147
|
func (x *InThreadSurveyMetadata_InThreadSurveyOption) GetStringValue() string {
|
|
@@ -6458,7 +7176,7 @@ type InThreadSurveyMetadata_InThreadSurveyQuestion struct {
|
|
|
6458
7176
|
|
|
6459
7177
|
func (x *InThreadSurveyMetadata_InThreadSurveyQuestion) Reset() {
|
|
6460
7178
|
*x = InThreadSurveyMetadata_InThreadSurveyQuestion{}
|
|
6461
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7179
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[72]
|
|
6462
7180
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6463
7181
|
ms.StoreMessageInfo(mi)
|
|
6464
7182
|
}
|
|
@@ -6470,7 +7188,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyQuestion) String() string {
|
|
|
6470
7188
|
func (*InThreadSurveyMetadata_InThreadSurveyQuestion) ProtoMessage() {}
|
|
6471
7189
|
|
|
6472
7190
|
func (x *InThreadSurveyMetadata_InThreadSurveyQuestion) ProtoReflect() protoreflect.Message {
|
|
6473
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7191
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[72]
|
|
6474
7192
|
if x != nil {
|
|
6475
7193
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6476
7194
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6483,7 +7201,7 @@ func (x *InThreadSurveyMetadata_InThreadSurveyQuestion) ProtoReflect() protorefl
|
|
|
6483
7201
|
|
|
6484
7202
|
// Deprecated: Use InThreadSurveyMetadata_InThreadSurveyQuestion.ProtoReflect.Descriptor instead.
|
|
6485
7203
|
func (*InThreadSurveyMetadata_InThreadSurveyQuestion) Descriptor() ([]byte, []int) {
|
|
6486
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7204
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{34, 2}
|
|
6487
7205
|
}
|
|
6488
7206
|
|
|
6489
7207
|
func (x *InThreadSurveyMetadata_InThreadSurveyQuestion) GetQuestionText() string {
|
|
@@ -6518,7 +7236,7 @@ type BotUnifiedResponseMutation_MediaDetailsMetadata struct {
|
|
|
6518
7236
|
|
|
6519
7237
|
func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) Reset() {
|
|
6520
7238
|
*x = BotUnifiedResponseMutation_MediaDetailsMetadata{}
|
|
6521
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7239
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[73]
|
|
6522
7240
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6523
7241
|
ms.StoreMessageInfo(mi)
|
|
6524
7242
|
}
|
|
@@ -6530,7 +7248,7 @@ func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) String() string {
|
|
|
6530
7248
|
func (*BotUnifiedResponseMutation_MediaDetailsMetadata) ProtoMessage() {}
|
|
6531
7249
|
|
|
6532
7250
|
func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) ProtoReflect() protoreflect.Message {
|
|
6533
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7251
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[73]
|
|
6534
7252
|
if x != nil {
|
|
6535
7253
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6536
7254
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6543,7 +7261,7 @@ func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) ProtoReflect() protore
|
|
|
6543
7261
|
|
|
6544
7262
|
// Deprecated: Use BotUnifiedResponseMutation_MediaDetailsMetadata.ProtoReflect.Descriptor instead.
|
|
6545
7263
|
func (*BotUnifiedResponseMutation_MediaDetailsMetadata) Descriptor() ([]byte, []int) {
|
|
6546
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7264
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{36, 0}
|
|
6547
7265
|
}
|
|
6548
7266
|
|
|
6549
7267
|
func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) GetID() string {
|
|
@@ -6568,15 +7286,16 @@ func (x *BotUnifiedResponseMutation_MediaDetailsMetadata) GetPreviewMedia() *Bot
|
|
|
6568
7286
|
}
|
|
6569
7287
|
|
|
6570
7288
|
type BotUnifiedResponseMutation_SideBySideMetadata struct {
|
|
6571
|
-
state
|
|
6572
|
-
PrimaryResponseID
|
|
6573
|
-
|
|
6574
|
-
|
|
7289
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
7290
|
+
PrimaryResponseID *string `protobuf:"bytes,1,opt,name=primaryResponseID" json:"primaryResponseID,omitempty"`
|
|
7291
|
+
SurveyCtaHasRendered *bool `protobuf:"varint,2,opt,name=surveyCtaHasRendered" json:"surveyCtaHasRendered,omitempty"`
|
|
7292
|
+
unknownFields protoimpl.UnknownFields
|
|
7293
|
+
sizeCache protoimpl.SizeCache
|
|
6575
7294
|
}
|
|
6576
7295
|
|
|
6577
7296
|
func (x *BotUnifiedResponseMutation_SideBySideMetadata) Reset() {
|
|
6578
7297
|
*x = BotUnifiedResponseMutation_SideBySideMetadata{}
|
|
6579
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7298
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[74]
|
|
6580
7299
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6581
7300
|
ms.StoreMessageInfo(mi)
|
|
6582
7301
|
}
|
|
@@ -6588,7 +7307,7 @@ func (x *BotUnifiedResponseMutation_SideBySideMetadata) String() string {
|
|
|
6588
7307
|
func (*BotUnifiedResponseMutation_SideBySideMetadata) ProtoMessage() {}
|
|
6589
7308
|
|
|
6590
7309
|
func (x *BotUnifiedResponseMutation_SideBySideMetadata) ProtoReflect() protoreflect.Message {
|
|
6591
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7310
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[74]
|
|
6592
7311
|
if x != nil {
|
|
6593
7312
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6594
7313
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6601,7 +7320,7 @@ func (x *BotUnifiedResponseMutation_SideBySideMetadata) ProtoReflect() protorefl
|
|
|
6601
7320
|
|
|
6602
7321
|
// Deprecated: Use BotUnifiedResponseMutation_SideBySideMetadata.ProtoReflect.Descriptor instead.
|
|
6603
7322
|
func (*BotUnifiedResponseMutation_SideBySideMetadata) Descriptor() ([]byte, []int) {
|
|
6604
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7323
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{36, 1}
|
|
6605
7324
|
}
|
|
6606
7325
|
|
|
6607
7326
|
func (x *BotUnifiedResponseMutation_SideBySideMetadata) GetPrimaryResponseID() string {
|
|
@@ -6611,6 +7330,13 @@ func (x *BotUnifiedResponseMutation_SideBySideMetadata) GetPrimaryResponseID() s
|
|
|
6611
7330
|
return ""
|
|
6612
7331
|
}
|
|
6613
7332
|
|
|
7333
|
+
func (x *BotUnifiedResponseMutation_SideBySideMetadata) GetSurveyCtaHasRendered() bool {
|
|
7334
|
+
if x != nil && x.SurveyCtaHasRendered != nil {
|
|
7335
|
+
return *x.SurveyCtaHasRendered
|
|
7336
|
+
}
|
|
7337
|
+
return false
|
|
7338
|
+
}
|
|
7339
|
+
|
|
6614
7340
|
type AIRichResponseTableMetadata_AIRichResponseTableRow struct {
|
|
6615
7341
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
6616
7342
|
Items []string `protobuf:"bytes,1,rep,name=items" json:"items,omitempty"`
|
|
@@ -6621,7 +7347,7 @@ type AIRichResponseTableMetadata_AIRichResponseTableRow struct {
|
|
|
6621
7347
|
|
|
6622
7348
|
func (x *AIRichResponseTableMetadata_AIRichResponseTableRow) Reset() {
|
|
6623
7349
|
*x = AIRichResponseTableMetadata_AIRichResponseTableRow{}
|
|
6624
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7350
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[75]
|
|
6625
7351
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6626
7352
|
ms.StoreMessageInfo(mi)
|
|
6627
7353
|
}
|
|
@@ -6633,7 +7359,7 @@ func (x *AIRichResponseTableMetadata_AIRichResponseTableRow) String() string {
|
|
|
6633
7359
|
func (*AIRichResponseTableMetadata_AIRichResponseTableRow) ProtoMessage() {}
|
|
6634
7360
|
|
|
6635
7361
|
func (x *AIRichResponseTableMetadata_AIRichResponseTableRow) ProtoReflect() protoreflect.Message {
|
|
6636
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7362
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[75]
|
|
6637
7363
|
if x != nil {
|
|
6638
7364
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6639
7365
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6646,7 +7372,7 @@ func (x *AIRichResponseTableMetadata_AIRichResponseTableRow) ProtoReflect() prot
|
|
|
6646
7372
|
|
|
6647
7373
|
// Deprecated: Use AIRichResponseTableMetadata_AIRichResponseTableRow.ProtoReflect.Descriptor instead.
|
|
6648
7374
|
func (*AIRichResponseTableMetadata_AIRichResponseTableRow) Descriptor() ([]byte, []int) {
|
|
6649
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7375
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{42, 0}
|
|
6650
7376
|
}
|
|
6651
7377
|
|
|
6652
7378
|
func (x *AIRichResponseTableMetadata_AIRichResponseTableRow) GetItems() []string {
|
|
@@ -6680,7 +7406,7 @@ type AIRichResponseLatexMetadata_AIRichResponseLatexExpression struct {
|
|
|
6680
7406
|
|
|
6681
7407
|
func (x *AIRichResponseLatexMetadata_AIRichResponseLatexExpression) Reset() {
|
|
6682
7408
|
*x = AIRichResponseLatexMetadata_AIRichResponseLatexExpression{}
|
|
6683
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7409
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[76]
|
|
6684
7410
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6685
7411
|
ms.StoreMessageInfo(mi)
|
|
6686
7412
|
}
|
|
@@ -6692,7 +7418,7 @@ func (x *AIRichResponseLatexMetadata_AIRichResponseLatexExpression) String() str
|
|
|
6692
7418
|
func (*AIRichResponseLatexMetadata_AIRichResponseLatexExpression) ProtoMessage() {}
|
|
6693
7419
|
|
|
6694
7420
|
func (x *AIRichResponseLatexMetadata_AIRichResponseLatexExpression) ProtoReflect() protoreflect.Message {
|
|
6695
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7421
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[76]
|
|
6696
7422
|
if x != nil {
|
|
6697
7423
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6698
7424
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6705,7 +7431,7 @@ func (x *AIRichResponseLatexMetadata_AIRichResponseLatexExpression) ProtoReflect
|
|
|
6705
7431
|
|
|
6706
7432
|
// Deprecated: Use AIRichResponseLatexMetadata_AIRichResponseLatexExpression.ProtoReflect.Descriptor instead.
|
|
6707
7433
|
func (*AIRichResponseLatexMetadata_AIRichResponseLatexExpression) Descriptor() ([]byte, []int) {
|
|
6708
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7434
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{44, 0}
|
|
6709
7435
|
}
|
|
6710
7436
|
|
|
6711
7437
|
func (x *AIRichResponseLatexMetadata_AIRichResponseLatexExpression) GetLatexExpression() string {
|
|
@@ -6784,7 +7510,7 @@ type AIRichResponseMapMetadata_AIRichResponseMapAnnotation struct {
|
|
|
6784
7510
|
|
|
6785
7511
|
func (x *AIRichResponseMapMetadata_AIRichResponseMapAnnotation) Reset() {
|
|
6786
7512
|
*x = AIRichResponseMapMetadata_AIRichResponseMapAnnotation{}
|
|
6787
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7513
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[77]
|
|
6788
7514
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6789
7515
|
ms.StoreMessageInfo(mi)
|
|
6790
7516
|
}
|
|
@@ -6796,7 +7522,7 @@ func (x *AIRichResponseMapMetadata_AIRichResponseMapAnnotation) String() string
|
|
|
6796
7522
|
func (*AIRichResponseMapMetadata_AIRichResponseMapAnnotation) ProtoMessage() {}
|
|
6797
7523
|
|
|
6798
7524
|
func (x *AIRichResponseMapMetadata_AIRichResponseMapAnnotation) ProtoReflect() protoreflect.Message {
|
|
6799
|
-
mi := &file_waAICommon_WAAICommon_proto_msgTypes[
|
|
7525
|
+
mi := &file_waAICommon_WAAICommon_proto_msgTypes[77]
|
|
6800
7526
|
if x != nil {
|
|
6801
7527
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6802
7528
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6809,7 +7535,7 @@ func (x *AIRichResponseMapMetadata_AIRichResponseMapAnnotation) ProtoReflect() p
|
|
|
6809
7535
|
|
|
6810
7536
|
// Deprecated: Use AIRichResponseMapMetadata_AIRichResponseMapAnnotation.ProtoReflect.Descriptor instead.
|
|
6811
7537
|
func (*AIRichResponseMapMetadata_AIRichResponseMapAnnotation) Descriptor() ([]byte, []int) {
|
|
6812
|
-
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{
|
|
7538
|
+
return file_waAICommon_WAAICommon_proto_rawDescGZIP(), []int{45, 0}
|
|
6813
7539
|
}
|
|
6814
7540
|
|
|
6815
7541
|
func (x *AIRichResponseMapMetadata_AIRichResponseMapAnnotation) GetAnnotationNumber() uint32 {
|
|
@@ -6939,10 +7665,11 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
6939
7665
|
"\n" +
|
|
6940
7666
|
"\x06DELETE\x10\x03\x12\n" +
|
|
6941
7667
|
"\n" +
|
|
6942
|
-
"\x06UPDATE\x10\x04\"\
|
|
7668
|
+
"\x06UPDATE\x10\x04\"\xff\x02\n" +
|
|
6943
7669
|
"\x10BotModelMetadata\x12D\n" +
|
|
6944
7670
|
"\tmodelType\x18\x01 \x01(\x0e2&.WAAICommon.BotModelMetadata.ModelTypeR\tmodelType\x12_\n" +
|
|
6945
|
-
"\x12premiumModelStatus\x18\x02 \x01(\x0e2/.WAAICommon.BotModelMetadata.PremiumModelStatusR\x12premiumModelStatus\
|
|
7671
|
+
"\x12premiumModelStatus\x18\x02 \x01(\x0e2/.WAAICommon.BotModelMetadata.PremiumModelStatusR\x12premiumModelStatus\x12,\n" +
|
|
7672
|
+
"\x11modelNameOverride\x18\x03 \x01(\tR\x11modelNameOverride\"O\n" +
|
|
6946
7673
|
"\x12PremiumModelStatus\x12\x12\n" +
|
|
6947
7674
|
"\x0eUNKNOWN_STATUS\x10\x00\x12\r\n" +
|
|
6948
7675
|
"\tAVAILABLE\x10\x01\x12\x16\n" +
|
|
@@ -6996,9 +7723,9 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
6996
7723
|
"\aUNKNOWN\x10\x00\x12\v\n" +
|
|
6997
7724
|
"\aPLANNED\x10\x01\x12\r\n" +
|
|
6998
7725
|
"\tEXECUTING\x10\x02\x12\f\n" +
|
|
6999
|
-
"\bFINISHED\x10\x03\"\
|
|
7726
|
+
"\bFINISHED\x10\x03\"\xc7\r\n" +
|
|
7000
7727
|
"\x15BotCapabilityMetadata\x12W\n" +
|
|
7001
|
-
"\fcapabilities\x18\x01 \x03(\x0e23.WAAICommon.BotCapabilityMetadata.BotCapabilityTypeR\fcapabilities\"\
|
|
7728
|
+
"\fcapabilities\x18\x01 \x03(\x0e23.WAAICommon.BotCapabilityMetadata.BotCapabilityTypeR\fcapabilities\"\xd4\f\n" +
|
|
7002
7729
|
"\x11BotCapabilityType\x12\v\n" +
|
|
7003
7730
|
"\aUNKNOWN\x10\x00\x12\x16\n" +
|
|
7004
7731
|
"\x12PROGRESS_INDICATOR\x10\x01\x12\x19\n" +
|
|
@@ -7047,7 +7774,11 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7047
7774
|
"&RICH_RESPONSE_UNIFIED_DOMAIN_CITATIONS\x10*\x12)\n" +
|
|
7048
7775
|
"%RICH_RESPONSE_UR_INLINE_REELS_ENABLED\x10+\x12'\n" +
|
|
7049
7776
|
"#RICH_RESPONSE_UR_MEDIA_GRID_ENABLED\x10,\x12*\n" +
|
|
7050
|
-
"&RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER\x10-\
|
|
7777
|
+
"&RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER\x10-\x12\x1f\n" +
|
|
7778
|
+
"\x1bRICH_RESPONSE_IN_APP_SURVEY\x10.\x12\x1e\n" +
|
|
7779
|
+
"\x1aAI_RESPONSE_MODEL_BRANDING\x10/\x12'\n" +
|
|
7780
|
+
"#SESSION_TRANSPARENCY_SYSTEM_MESSAGE\x100\x12\x1e\n" +
|
|
7781
|
+
"\x1aRICH_RESPONSE_UR_REASONING\x101\"\xa7\x01\n" +
|
|
7051
7782
|
"\x18BotModeSelectionMetadata\x12M\n" +
|
|
7052
7783
|
"\x04mode\x18\x01 \x03(\x0e29.WAAICommon.BotModeSelectionMetadata.BotUserSelectionModeR\x04mode\"<\n" +
|
|
7053
7784
|
"\x14BotUserSelectionMode\x12\x10\n" +
|
|
@@ -7114,7 +7845,7 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7114
7845
|
"\aDEFAULT\x10\x01\x12\r\n" +
|
|
7115
7846
|
"\tINCOGNITO\x10\x02\x1a*\n" +
|
|
7116
7847
|
"\x12AIThreadServerInfo\x12\x14\n" +
|
|
7117
|
-
"\x05title\x18\x01 \x01(\tR\x05title\"\
|
|
7848
|
+
"\x05title\x18\x01 \x01(\tR\x05title\"\xe5\x1e\n" +
|
|
7118
7849
|
"\x12BotFeedbackMessage\x124\n" +
|
|
7119
7850
|
"\n" +
|
|
7120
7851
|
"messageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\n" +
|
|
@@ -7126,7 +7857,7 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7126
7857
|
"\n" +
|
|
7127
7858
|
"kindReport\x18\x06 \x01(\x0e2).WAAICommon.BotFeedbackMessage.ReportKindR\n" +
|
|
7128
7859
|
"kindReport\x12s\n" +
|
|
7129
|
-
"\x18sideBySideSurveyMetadata\x18\a \x01(\v27.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadataR\x18sideBySideSurveyMetadata\x1a\
|
|
7860
|
+
"\x18sideBySideSurveyMetadata\x18\a \x01(\v27.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadataR\x18sideBySideSurveyMetadata\x1a\x9c\x12\n" +
|
|
7130
7861
|
"\x18SideBySideSurveyMetadata\x12,\n" +
|
|
7131
7862
|
"\x11selectedRequestID\x18\x01 \x01(\tR\x11selectedRequestID\x12\x1a\n" +
|
|
7132
7863
|
"\bsurveyID\x18\x02 \x01(\rR\bsurveyID\x12*\n" +
|
|
@@ -7135,12 +7866,35 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7135
7866
|
"\x19responseTimestampMSString\x18\x05 \x01(\tR\x19responseTimestampMSString\x12<\n" +
|
|
7136
7867
|
"\x19isSelectedResponsePrimary\x18\x06 \x01(\bR\x19isSelectedResponsePrimary\x12(\n" +
|
|
7137
7868
|
"\x0fmessageIDToEdit\x18\a \x01(\tR\x0fmessageIDToEdit\x12{\n" +
|
|
7138
|
-
"\ranalyticsData\x18\b \x01(\v2U.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SideBySideSurveyAnalyticsDataR\ranalyticsData\
|
|
7869
|
+
"\ranalyticsData\x18\b \x01(\v2U.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SideBySideSurveyAnalyticsDataR\ranalyticsData\x12\x8d\x01\n" +
|
|
7870
|
+
"\x13metaAiAnalyticsData\x18\t \x01(\v2[.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsDataR\x13metaAiAnalyticsData\x1a\x98\f\n" +
|
|
7871
|
+
"#SidebySideSurveyMetaAiAnalyticsData\x12\x1a\n" +
|
|
7872
|
+
"\bsurveyID\x18\x01 \x01(\rR\bsurveyID\x12,\n" +
|
|
7873
|
+
"\x11primaryResponseID\x18\x02 \x01(\tR\x11primaryResponseID\x12 \n" +
|
|
7874
|
+
"\vtestArmName\x18\x03 \x01(\tR\vtestArmName\x12,\n" +
|
|
7875
|
+
"\x11timestampMSString\x18\x04 \x01(\tR\x11timestampMSString\x12\xb3\x01\n" +
|
|
7876
|
+
"\x12ctaImpressionEvent\x18\x05 \x01(\v2\x82\x01.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAImpressionEventDataR\x12ctaImpressionEvent\x12\xa3\x01\n" +
|
|
7877
|
+
"\rctaClickEvent\x18\x06 \x01(\v2}.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAClickEventDataR\rctaClickEvent\x12\xb6\x01\n" +
|
|
7878
|
+
"\x13cardImpressionEvent\x18\a \x01(\v2\x83\x01.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCardImpressionEventDataR\x13cardImpressionEvent\x12\xa3\x01\n" +
|
|
7879
|
+
"\rresponseEvent\x18\b \x01(\v2}.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyResponseEventDataR\rresponseEvent\x12\xa0\x01\n" +
|
|
7880
|
+
"\fabandonEvent\x18\t \x01(\v2|.WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyAbandonEventDataR\fabandonEvent\x1a^\n" +
|
|
7881
|
+
" SideBySideSurveyAbandonEventData\x12:\n" +
|
|
7882
|
+
"\x18abandonDwellTimeMSString\x18\x01 \x01(\tR\x18abandonDwellTimeMSString\x1a\x91\x01\n" +
|
|
7883
|
+
"!SideBySideSurveyResponseEventData\x12<\n" +
|
|
7884
|
+
"\x19responseDwellTimeMSString\x18\x01 \x01(\tR\x19responseDwellTimeMSString\x12.\n" +
|
|
7885
|
+
"\x12selectedResponseID\x18\x02 \x01(\tR\x12selectedResponseID\x1a)\n" +
|
|
7886
|
+
"'SideBySideSurveyCardImpressionEventData\x1a\x85\x01\n" +
|
|
7887
|
+
"!SideBySideSurveyCTAClickEventData\x12(\n" +
|
|
7888
|
+
"\x0fisSurveyExpired\x18\x01 \x01(\bR\x0fisSurveyExpired\x126\n" +
|
|
7889
|
+
"\x16clickDwellTimeMSString\x18\x02 \x01(\tR\x16clickDwellTimeMSString\x1aR\n" +
|
|
7890
|
+
"&SideBySideSurveyCTAImpressionEventData\x12(\n" +
|
|
7891
|
+
"\x0fisSurveyExpired\x18\x01 \x01(\bR\x0fisSurveyExpired\x1a\x97\x01\n" +
|
|
7139
7892
|
"\x1dSideBySideSurveyAnalyticsData\x12\x1e\n" +
|
|
7140
7893
|
"\n" +
|
|
7141
7894
|
"tessaEvent\x18\x01 \x01(\tR\n" +
|
|
7142
7895
|
"tessaEvent\x12*\n" +
|
|
7143
|
-
"\x10tessaSessionFbid\x18\x02 \x01(\tR\x10tessaSessionFbid\
|
|
7896
|
+
"\x10tessaSessionFbid\x18\x02 \x01(\tR\x10tessaSessionFbid\x12*\n" +
|
|
7897
|
+
"\x10simonSessionFbid\x18\x03 \x01(\tR\x10simonSessionFbid\"#\n" +
|
|
7144
7898
|
"\n" +
|
|
7145
7899
|
"ReportKind\x12\b\n" +
|
|
7146
7900
|
"\x04NONE\x10\x00\x12\v\n" +
|
|
@@ -7222,7 +7976,27 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7222
7976
|
"\bvideoURL\x18\x04 \x01(\tR\bvideoURL\"(\n" +
|
|
7223
7977
|
"\vContentType\x12\v\n" +
|
|
7224
7978
|
"\aDEFAULT\x10\x00\x12\f\n" +
|
|
7225
|
-
"\bCAROUSEL\x10\x01\"\
|
|
7979
|
+
"\bCAROUSEL\x10\x01\"\xf2\x04\n" +
|
|
7980
|
+
"\vAIHomeState\x12$\n" +
|
|
7981
|
+
"\rlastFetchTime\x18\x01 \x01(\x03R\rlastFetchTime\x12R\n" +
|
|
7982
|
+
"\x11capabilityOptions\x18\x02 \x03(\v2$.WAAICommon.AIHomeState.AIHomeOptionR\x11capabilityOptions\x12V\n" +
|
|
7983
|
+
"\x13conversationOptions\x18\x03 \x03(\v2$.WAAICommon.AIHomeState.AIHomeOptionR\x13conversationOptions\x1a\x90\x03\n" +
|
|
7984
|
+
"\fAIHomeOption\x12I\n" +
|
|
7985
|
+
"\x04type\x18\x01 \x01(\x0e25.WAAICommon.AIHomeState.AIHomeOption.AIHomeActionTypeR\x04type\x12\x14\n" +
|
|
7986
|
+
"\x05title\x18\x02 \x01(\tR\x05title\x12\x1e\n" +
|
|
7987
|
+
"\n" +
|
|
7988
|
+
"promptText\x18\x03 \x01(\tR\n" +
|
|
7989
|
+
"promptText\x12\x1c\n" +
|
|
7990
|
+
"\tsessionID\x18\x04 \x01(\tR\tsessionID\x12.\n" +
|
|
7991
|
+
"\x12imageWdsIdentifier\x18\x05 \x01(\tR\x12imageWdsIdentifier\x12&\n" +
|
|
7992
|
+
"\x0eimageTintColor\x18\x06 \x01(\tR\x0eimageTintColor\x122\n" +
|
|
7993
|
+
"\x14imageBackgroundColor\x18\a \x01(\tR\x14imageBackgroundColor\"U\n" +
|
|
7994
|
+
"\x10AIHomeActionType\x12\n" +
|
|
7995
|
+
"\n" +
|
|
7996
|
+
"\x06PROMPT\x10\x00\x12\x10\n" +
|
|
7997
|
+
"\fCREATE_IMAGE\x10\x01\x12\x11\n" +
|
|
7998
|
+
"\rANIMATE_PHOTO\x10\x02\x12\x10\n" +
|
|
7999
|
+
"\fANALYZE_FILE\x10\x03\"\xab\x01\n" +
|
|
7226
8000
|
"\x11BotAvatarMetadata\x12\x1c\n" +
|
|
7227
8001
|
"\tsentiment\x18\x01 \x01(\rR\tsentiment\x12$\n" +
|
|
7228
8002
|
"\rbehaviorGraph\x18\x02 \x01(\tR\rbehaviorGraph\x12\x16\n" +
|
|
@@ -7308,16 +8082,17 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7308
8082
|
"questionID\x12a\n" +
|
|
7309
8083
|
"\x0fquestionOptions\x18\x03 \x03(\v27.WAAICommon.InThreadSurveyMetadata.InThreadSurveyOptionR\x0fquestionOptions\"R\n" +
|
|
7310
8084
|
"\x18BotMessageOriginMetadata\x126\n" +
|
|
7311
|
-
"\aorigins\x18\x01 \x03(\v2\x1c.WAAICommon.BotMessageOriginR\aorigins\"\
|
|
8085
|
+
"\aorigins\x18\x01 \x03(\v2\x1c.WAAICommon.BotMessageOriginR\aorigins\"\x97\x04\n" +
|
|
7312
8086
|
"\x1aBotUnifiedResponseMutation\x12[\n" +
|
|
7313
8087
|
"\vsbsMetadata\x18\x01 \x01(\v29.WAAICommon.BotUnifiedResponseMutation.SideBySideMetadataR\vsbsMetadata\x12w\n" +
|
|
7314
8088
|
"\x18mediaDetailsMetadataList\x18\x02 \x03(\v2;.WAAICommon.BotUnifiedResponseMutation.MediaDetailsMetadataR\x18mediaDetailsMetadataList\x1a\xaa\x01\n" +
|
|
7315
8089
|
"\x14MediaDetailsMetadata\x12\x0e\n" +
|
|
7316
8090
|
"\x02ID\x18\x01 \x01(\tR\x02ID\x12@\n" +
|
|
7317
8091
|
"\fhighResMedia\x18\x02 \x01(\v2\x1c.WAAICommon.BotMediaMetadataR\fhighResMedia\x12@\n" +
|
|
7318
|
-
"\fpreviewMedia\x18\x03 \x01(\v2\x1c.WAAICommon.BotMediaMetadataR\fpreviewMedia\
|
|
8092
|
+
"\fpreviewMedia\x18\x03 \x01(\v2\x1c.WAAICommon.BotMediaMetadataR\fpreviewMedia\x1av\n" +
|
|
7319
8093
|
"\x12SideBySideMetadata\x12,\n" +
|
|
7320
|
-
"\x11primaryResponseID\x18\x01 \x01(\tR\x11primaryResponseID\
|
|
8094
|
+
"\x11primaryResponseID\x18\x01 \x01(\tR\x11primaryResponseID\x122\n" +
|
|
8095
|
+
"\x14surveyCtaHasRendered\x18\x02 \x01(\bR\x14surveyCtaHasRendered\"\x9f\x14\n" +
|
|
7321
8096
|
"\vBotMetadata\x12E\n" +
|
|
7322
8097
|
"\x0eavatarMetadata\x18\x01 \x01(\v2\x1d.WAAICommon.BotAvatarMetadataR\x0eavatarMetadata\x12\x1c\n" +
|
|
7323
8098
|
"\tpersonaID\x18\x02 \x01(\tR\tpersonaID\x12E\n" +
|
|
@@ -7352,7 +8127,9 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7352
8127
|
"\x17unifiedResponseMutation\x18\x1c \x01(\v2&.WAAICommon.BotUnifiedResponseMutationR\x17unifiedResponseMutation\x12`\n" +
|
|
7353
8128
|
"\x18botMessageOriginMetadata\x18\x1d \x01(\v2$.WAAICommon.BotMessageOriginMetadataR\x18botMessageOriginMetadata\x12Z\n" +
|
|
7354
8129
|
"\x16inThreadSurveyMetadata\x18\x1e \x01(\v2\".WAAICommon.InThreadSurveyMetadataR\x16inThreadSurveyMetadata\x12>\n" +
|
|
7355
|
-
"\rbotThreadInfo\x18\x1f \x01(\v2\x18.WAAICommon.AIThreadInfoR\rbotThreadInfo\
|
|
8130
|
+
"\rbotThreadInfo\x18\x1f \x01(\v2\x18.WAAICommon.AIThreadInfoR\rbotThreadInfo\x12P\n" +
|
|
8131
|
+
"\x12regenerateMetadata\x18 \x01(\v2 .WAAICommon.AIRegenerateMetadataR\x12regenerateMetadata\x12i\n" +
|
|
8132
|
+
"\x1bsessionTransparencyMetadata\x18! \x01(\v2'.WAAICommon.SessionTransparencyMetadataR\x1bsessionTransparencyMetadata\x12+\n" +
|
|
7356
8133
|
"\x10internalMetadata\x18\xe7\a \x01(\fR\x10internalMetadata\"o\n" +
|
|
7357
8134
|
"\x19ForwardedAIBotMessageInfo\x12\x18\n" +
|
|
7358
8135
|
"\abotName\x18\x01 \x01(\tR\abotName\x12\x16\n" +
|
|
@@ -7415,7 +8192,15 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7415
8192
|
"\rlatexMetadata\x18\b \x01(\v2'.WAAICommon.AIRichResponseLatexMetadataR\rlatexMetadata\x12G\n" +
|
|
7416
8193
|
"\vmapMetadata\x18\t \x01(\v2%.WAAICommon.AIRichResponseMapMetadataR\vmapMetadata\x12b\n" +
|
|
7417
8194
|
"\x14contentItemsMetadata\x18\n" +
|
|
7418
|
-
" \x01(\v2..WAAICommon.AIRichResponseContentItemsMetadataR\x14contentItemsMetadata
|
|
8195
|
+
" \x01(\v2..WAAICommon.AIRichResponseContentItemsMetadataR\x14contentItemsMetadata\"~\n" +
|
|
8196
|
+
"\x14AIRegenerateMetadata\x124\n" +
|
|
8197
|
+
"\n" +
|
|
8198
|
+
"messageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\n" +
|
|
8199
|
+
"messageKey\x120\n" +
|
|
8200
|
+
"\x13responseTimestampMS\x18\x02 \x01(\x03R\x13responseTimestampMS\"[\n" +
|
|
8201
|
+
"\x1bSessionTransparencyMetadata\x12&\n" +
|
|
8202
|
+
"\x0edisclaimerText\x18\x01 \x01(\tR\x0edisclaimerText\x12\x14\n" +
|
|
8203
|
+
"\x05hcaID\x18\x02 \x01(\tR\x05hcaID*\xb3\b\n" +
|
|
7419
8204
|
"\x14BotMetricsEntryPoint\x12\x19\n" +
|
|
7420
8205
|
"\x15UNDEFINED_ENTRY_POINT\x10\x00\x12\v\n" +
|
|
7421
8206
|
"\aFAVICON\x10\x01\x12\f\n" +
|
|
@@ -7455,7 +8240,9 @@ const file_waAICommon_WAAICommon_proto_rawDesc = "" +
|
|
|
7455
8240
|
" MESSAGE_QUICK_ACTION_1_ON_1_CHAT\x10!\x12#\n" +
|
|
7456
8241
|
"\x1fMESSAGE_QUICK_ACTION_GROUP_CHAT\x10\"\x12\x1f\n" +
|
|
7457
8242
|
"\x1bATTACHMENT_TRAY_1_ON_1_CHAT\x10#\x12\x1e\n" +
|
|
7458
|
-
"\x1aATTACHMENT_TRAY_GROUP_CHAT\x10
|
|
8243
|
+
"\x1aATTACHMENT_TRAY_GROUP_CHAT\x10$\x12!\n" +
|
|
8244
|
+
"\x1dASK_META_AI_MEDIA_VIEWER_1ON1\x10%\x12\"\n" +
|
|
8245
|
+
"\x1eASK_META_AI_MEDIA_VIEWER_GROUP\x10&*\xa2\x01\n" +
|
|
7459
8246
|
"\x1aBotMetricsThreadEntryPoint\x12\x11\n" +
|
|
7460
8247
|
"\rAI_TAB_THREAD\x10\x01\x12\x12\n" +
|
|
7461
8248
|
"\x0eAI_HOME_THREAD\x10\x02\x12 \n" +
|
|
@@ -7499,8 +8286,8 @@ func file_waAICommon_WAAICommon_proto_rawDescGZIP() []byte {
|
|
|
7499
8286
|
return file_waAICommon_WAAICommon_proto_rawDescData
|
|
7500
8287
|
}
|
|
7501
8288
|
|
|
7502
|
-
var file_waAICommon_WAAICommon_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
7503
|
-
var file_waAICommon_WAAICommon_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
8289
|
+
var file_waAICommon_WAAICommon_proto_enumTypes = make([]protoimpl.EnumInfo, 35)
|
|
8290
|
+
var file_waAICommon_WAAICommon_proto_msgTypes = make([]protoimpl.MessageInfo, 78)
|
|
7504
8291
|
var file_waAICommon_WAAICommon_proto_goTypes = []any{
|
|
7505
8292
|
(BotMetricsEntryPoint)(0), // 0: WAAICommon.BotMetricsEntryPoint
|
|
7506
8293
|
(BotMetricsThreadEntryPoint)(0), // 1: WAAICommon.BotMetricsThreadEntryPoint
|
|
@@ -7536,186 +8323,209 @@ var file_waAICommon_WAAICommon_proto_goTypes = []any{
|
|
|
7536
8323
|
(AIRichResponseCodeMetadata_AIRichResponseCodeHighlightType)(0), // 31: WAAICommon.AIRichResponseCodeMetadata.AIRichResponseCodeHighlightType
|
|
7537
8324
|
(AIRichResponseDynamicMetadata_AIRichResponseDynamicMetadataType)(0), // 32: WAAICommon.AIRichResponseDynamicMetadata.AIRichResponseDynamicMetadataType
|
|
7538
8325
|
(AIRichResponseContentItemsMetadata_ContentType)(0), // 33: WAAICommon.AIRichResponseContentItemsMetadata.ContentType
|
|
7539
|
-
(
|
|
7540
|
-
(*
|
|
7541
|
-
(*
|
|
7542
|
-
(*
|
|
7543
|
-
(*
|
|
7544
|
-
(*
|
|
7545
|
-
(*
|
|
7546
|
-
(*
|
|
7547
|
-
(*
|
|
7548
|
-
(*
|
|
7549
|
-
(*
|
|
7550
|
-
(*
|
|
7551
|
-
(*
|
|
7552
|
-
(*
|
|
7553
|
-
(*
|
|
7554
|
-
(*
|
|
7555
|
-
(*
|
|
7556
|
-
(*
|
|
7557
|
-
(*
|
|
7558
|
-
(*
|
|
7559
|
-
(*
|
|
7560
|
-
(*
|
|
7561
|
-
(*
|
|
7562
|
-
(*
|
|
7563
|
-
(*
|
|
7564
|
-
(*
|
|
7565
|
-
(*
|
|
7566
|
-
(*
|
|
7567
|
-
(*
|
|
7568
|
-
(*
|
|
7569
|
-
(*
|
|
7570
|
-
(*
|
|
7571
|
-
(*
|
|
7572
|
-
(*
|
|
7573
|
-
(*
|
|
7574
|
-
(*
|
|
7575
|
-
(*
|
|
7576
|
-
(*
|
|
7577
|
-
(*
|
|
7578
|
-
(*
|
|
7579
|
-
(*
|
|
7580
|
-
(*
|
|
7581
|
-
(*
|
|
7582
|
-
(*
|
|
7583
|
-
(*
|
|
7584
|
-
(*
|
|
7585
|
-
(*
|
|
7586
|
-
(*
|
|
7587
|
-
(*
|
|
7588
|
-
(*
|
|
7589
|
-
(*
|
|
7590
|
-
(*
|
|
7591
|
-
(*
|
|
7592
|
-
(*
|
|
7593
|
-
(*
|
|
7594
|
-
(*
|
|
7595
|
-
(*
|
|
7596
|
-
(*
|
|
7597
|
-
(*
|
|
7598
|
-
(*
|
|
7599
|
-
(*
|
|
7600
|
-
(*
|
|
7601
|
-
(*
|
|
7602
|
-
(*
|
|
7603
|
-
(*
|
|
7604
|
-
(*
|
|
7605
|
-
(*
|
|
7606
|
-
(*
|
|
7607
|
-
(*
|
|
8326
|
+
(AIHomeState_AIHomeOption_AIHomeActionType)(0), // 34: WAAICommon.AIHomeState.AIHomeOption.AIHomeActionType
|
|
8327
|
+
(*BotPluginMetadata)(nil), // 35: WAAICommon.BotPluginMetadata
|
|
8328
|
+
(*BotLinkedAccount)(nil), // 36: WAAICommon.BotLinkedAccount
|
|
8329
|
+
(*BotSignatureVerificationUseCaseProof)(nil), // 37: WAAICommon.BotSignatureVerificationUseCaseProof
|
|
8330
|
+
(*BotPromotionMessageMetadata)(nil), // 38: WAAICommon.BotPromotionMessageMetadata
|
|
8331
|
+
(*BotMediaMetadata)(nil), // 39: WAAICommon.BotMediaMetadata
|
|
8332
|
+
(*BotReminderMetadata)(nil), // 40: WAAICommon.BotReminderMetadata
|
|
8333
|
+
(*BotModelMetadata)(nil), // 41: WAAICommon.BotModelMetadata
|
|
8334
|
+
(*BotProgressIndicatorMetadata)(nil), // 42: WAAICommon.BotProgressIndicatorMetadata
|
|
8335
|
+
(*BotCapabilityMetadata)(nil), // 43: WAAICommon.BotCapabilityMetadata
|
|
8336
|
+
(*BotModeSelectionMetadata)(nil), // 44: WAAICommon.BotModeSelectionMetadata
|
|
8337
|
+
(*BotQuotaMetadata)(nil), // 45: WAAICommon.BotQuotaMetadata
|
|
8338
|
+
(*BotImagineMetadata)(nil), // 46: WAAICommon.BotImagineMetadata
|
|
8339
|
+
(*BotAgeCollectionMetadata)(nil), // 47: WAAICommon.BotAgeCollectionMetadata
|
|
8340
|
+
(*BotSourcesMetadata)(nil), // 48: WAAICommon.BotSourcesMetadata
|
|
8341
|
+
(*BotMessageOrigin)(nil), // 49: WAAICommon.BotMessageOrigin
|
|
8342
|
+
(*AIThreadInfo)(nil), // 50: WAAICommon.AIThreadInfo
|
|
8343
|
+
(*BotFeedbackMessage)(nil), // 51: WAAICommon.BotFeedbackMessage
|
|
8344
|
+
(*AIRichResponseInlineImageMetadata)(nil), // 52: WAAICommon.AIRichResponseInlineImageMetadata
|
|
8345
|
+
(*AIRichResponseCodeMetadata)(nil), // 53: WAAICommon.AIRichResponseCodeMetadata
|
|
8346
|
+
(*AIRichResponseDynamicMetadata)(nil), // 54: WAAICommon.AIRichResponseDynamicMetadata
|
|
8347
|
+
(*AIRichResponseContentItemsMetadata)(nil), // 55: WAAICommon.AIRichResponseContentItemsMetadata
|
|
8348
|
+
(*AIHomeState)(nil), // 56: WAAICommon.AIHomeState
|
|
8349
|
+
(*BotAvatarMetadata)(nil), // 57: WAAICommon.BotAvatarMetadata
|
|
8350
|
+
(*BotSuggestedPromptMetadata)(nil), // 58: WAAICommon.BotSuggestedPromptMetadata
|
|
8351
|
+
(*BotPromptSuggestions)(nil), // 59: WAAICommon.BotPromptSuggestions
|
|
8352
|
+
(*BotPromptSuggestion)(nil), // 60: WAAICommon.BotPromptSuggestion
|
|
8353
|
+
(*BotLinkedAccountsMetadata)(nil), // 61: WAAICommon.BotLinkedAccountsMetadata
|
|
8354
|
+
(*BotMemoryMetadata)(nil), // 62: WAAICommon.BotMemoryMetadata
|
|
8355
|
+
(*BotMemoryFact)(nil), // 63: WAAICommon.BotMemoryFact
|
|
8356
|
+
(*BotSignatureVerificationMetadata)(nil), // 64: WAAICommon.BotSignatureVerificationMetadata
|
|
8357
|
+
(*BotRenderingMetadata)(nil), // 65: WAAICommon.BotRenderingMetadata
|
|
8358
|
+
(*BotMetricsMetadata)(nil), // 66: WAAICommon.BotMetricsMetadata
|
|
8359
|
+
(*BotSessionMetadata)(nil), // 67: WAAICommon.BotSessionMetadata
|
|
8360
|
+
(*BotMemuMetadata)(nil), // 68: WAAICommon.BotMemuMetadata
|
|
8361
|
+
(*InThreadSurveyMetadata)(nil), // 69: WAAICommon.InThreadSurveyMetadata
|
|
8362
|
+
(*BotMessageOriginMetadata)(nil), // 70: WAAICommon.BotMessageOriginMetadata
|
|
8363
|
+
(*BotUnifiedResponseMutation)(nil), // 71: WAAICommon.BotUnifiedResponseMutation
|
|
8364
|
+
(*BotMetadata)(nil), // 72: WAAICommon.BotMetadata
|
|
8365
|
+
(*ForwardedAIBotMessageInfo)(nil), // 73: WAAICommon.ForwardedAIBotMessageInfo
|
|
8366
|
+
(*BotMessageSharingInfo)(nil), // 74: WAAICommon.BotMessageSharingInfo
|
|
8367
|
+
(*AIRichResponseImageURL)(nil), // 75: WAAICommon.AIRichResponseImageURL
|
|
8368
|
+
(*AIRichResponseGridImageMetadata)(nil), // 76: WAAICommon.AIRichResponseGridImageMetadata
|
|
8369
|
+
(*AIRichResponseTableMetadata)(nil), // 77: WAAICommon.AIRichResponseTableMetadata
|
|
8370
|
+
(*AIRichResponseUnifiedResponse)(nil), // 78: WAAICommon.AIRichResponseUnifiedResponse
|
|
8371
|
+
(*AIRichResponseLatexMetadata)(nil), // 79: WAAICommon.AIRichResponseLatexMetadata
|
|
8372
|
+
(*AIRichResponseMapMetadata)(nil), // 80: WAAICommon.AIRichResponseMapMetadata
|
|
8373
|
+
(*AIRichResponseSubMessage)(nil), // 81: WAAICommon.AIRichResponseSubMessage
|
|
8374
|
+
(*AIRegenerateMetadata)(nil), // 82: WAAICommon.AIRegenerateMetadata
|
|
8375
|
+
(*SessionTransparencyMetadata)(nil), // 83: WAAICommon.SessionTransparencyMetadata
|
|
8376
|
+
(*BotProgressIndicatorMetadata_BotPlanningStepMetadata)(nil), // 84: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata
|
|
8377
|
+
(*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourcesMetadata)(nil), // 85: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata
|
|
8378
|
+
(*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningStepSectionMetadata)(nil), // 86: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningStepSectionMetadata
|
|
8379
|
+
(*BotProgressIndicatorMetadata_BotPlanningStepMetadata_BotPlanningSearchSourceMetadata)(nil), // 87: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourceMetadata
|
|
8380
|
+
(*BotQuotaMetadata_BotFeatureQuotaMetadata)(nil), // 88: WAAICommon.BotQuotaMetadata.BotFeatureQuotaMetadata
|
|
8381
|
+
(*BotSourcesMetadata_BotSourceItem)(nil), // 89: WAAICommon.BotSourcesMetadata.BotSourceItem
|
|
8382
|
+
(*AIThreadInfo_AIThreadClientInfo)(nil), // 90: WAAICommon.AIThreadInfo.AIThreadClientInfo
|
|
8383
|
+
(*AIThreadInfo_AIThreadServerInfo)(nil), // 91: WAAICommon.AIThreadInfo.AIThreadServerInfo
|
|
8384
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata)(nil), // 92: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata
|
|
8385
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData)(nil), // 93: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData
|
|
8386
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SideBySideSurveyAnalyticsData)(nil), // 94: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SideBySideSurveyAnalyticsData
|
|
8387
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyAbandonEventData)(nil), // 95: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyAbandonEventData
|
|
8388
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyResponseEventData)(nil), // 96: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyResponseEventData
|
|
8389
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCardImpressionEventData)(nil), // 97: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCardImpressionEventData
|
|
8390
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAClickEventData)(nil), // 98: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAClickEventData
|
|
8391
|
+
(*BotFeedbackMessage_SideBySideSurveyMetadata_SidebySideSurveyMetaAiAnalyticsData_SideBySideSurveyCTAImpressionEventData)(nil), // 99: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAImpressionEventData
|
|
8392
|
+
(*AIRichResponseCodeMetadata_AIRichResponseCodeBlock)(nil), // 100: WAAICommon.AIRichResponseCodeMetadata.AIRichResponseCodeBlock
|
|
8393
|
+
(*AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata)(nil), // 101: WAAICommon.AIRichResponseContentItemsMetadata.AIRichResponseContentItemMetadata
|
|
8394
|
+
(*AIRichResponseContentItemsMetadata_AIRichResponseReelItem)(nil), // 102: WAAICommon.AIRichResponseContentItemsMetadata.AIRichResponseReelItem
|
|
8395
|
+
(*AIHomeState_AIHomeOption)(nil), // 103: WAAICommon.AIHomeState.AIHomeOption
|
|
8396
|
+
(*BotRenderingMetadata_Keyword)(nil), // 104: WAAICommon.BotRenderingMetadata.Keyword
|
|
8397
|
+
(*InThreadSurveyMetadata_InThreadSurveyPrivacyStatementPart)(nil), // 105: WAAICommon.InThreadSurveyMetadata.InThreadSurveyPrivacyStatementPart
|
|
8398
|
+
(*InThreadSurveyMetadata_InThreadSurveyOption)(nil), // 106: WAAICommon.InThreadSurveyMetadata.InThreadSurveyOption
|
|
8399
|
+
(*InThreadSurveyMetadata_InThreadSurveyQuestion)(nil), // 107: WAAICommon.InThreadSurveyMetadata.InThreadSurveyQuestion
|
|
8400
|
+
(*BotUnifiedResponseMutation_MediaDetailsMetadata)(nil), // 108: WAAICommon.BotUnifiedResponseMutation.MediaDetailsMetadata
|
|
8401
|
+
(*BotUnifiedResponseMutation_SideBySideMetadata)(nil), // 109: WAAICommon.BotUnifiedResponseMutation.SideBySideMetadata
|
|
8402
|
+
(*AIRichResponseTableMetadata_AIRichResponseTableRow)(nil), // 110: WAAICommon.AIRichResponseTableMetadata.AIRichResponseTableRow
|
|
8403
|
+
(*AIRichResponseLatexMetadata_AIRichResponseLatexExpression)(nil), // 111: WAAICommon.AIRichResponseLatexMetadata.AIRichResponseLatexExpression
|
|
8404
|
+
(*AIRichResponseMapMetadata_AIRichResponseMapAnnotation)(nil), // 112: WAAICommon.AIRichResponseMapMetadata.AIRichResponseMapAnnotation
|
|
8405
|
+
(*waCommon.MessageKey)(nil), // 113: WACommon.MessageKey
|
|
7608
8406
|
}
|
|
7609
8407
|
var file_waAICommon_WAAICommon_proto_depIdxs = []int32{
|
|
7610
8408
|
6, // 0: WAAICommon.BotPluginMetadata.provider:type_name -> WAAICommon.BotPluginMetadata.SearchProvider
|
|
7611
8409
|
5, // 1: WAAICommon.BotPluginMetadata.pluginType:type_name -> WAAICommon.BotPluginMetadata.PluginType
|
|
7612
|
-
|
|
8410
|
+
113, // 2: WAAICommon.BotPluginMetadata.parentPluginMessageKey:type_name -> WACommon.MessageKey
|
|
7613
8411
|
5, // 3: WAAICommon.BotPluginMetadata.deprecatedField:type_name -> WAAICommon.BotPluginMetadata.PluginType
|
|
7614
8412
|
5, // 4: WAAICommon.BotPluginMetadata.parentPluginType:type_name -> WAAICommon.BotPluginMetadata.PluginType
|
|
7615
8413
|
7, // 5: WAAICommon.BotLinkedAccount.type:type_name -> WAAICommon.BotLinkedAccount.BotLinkedAccountType
|
|
7616
8414
|
8, // 6: WAAICommon.BotSignatureVerificationUseCaseProof.useCase:type_name -> WAAICommon.BotSignatureVerificationUseCaseProof.BotSignatureUseCase
|
|
7617
8415
|
9, // 7: WAAICommon.BotPromotionMessageMetadata.promotionType:type_name -> WAAICommon.BotPromotionMessageMetadata.BotPromotionType
|
|
7618
8416
|
10, // 8: WAAICommon.BotMediaMetadata.orientationType:type_name -> WAAICommon.BotMediaMetadata.OrientationType
|
|
7619
|
-
|
|
8417
|
+
113, // 9: WAAICommon.BotReminderMetadata.requestMessageKey:type_name -> WACommon.MessageKey
|
|
7620
8418
|
12, // 10: WAAICommon.BotReminderMetadata.action:type_name -> WAAICommon.BotReminderMetadata.ReminderAction
|
|
7621
8419
|
11, // 11: WAAICommon.BotReminderMetadata.frequency:type_name -> WAAICommon.BotReminderMetadata.ReminderFrequency
|
|
7622
8420
|
14, // 12: WAAICommon.BotModelMetadata.modelType:type_name -> WAAICommon.BotModelMetadata.ModelType
|
|
7623
8421
|
13, // 13: WAAICommon.BotModelMetadata.premiumModelStatus:type_name -> WAAICommon.BotModelMetadata.PremiumModelStatus
|
|
7624
|
-
|
|
8422
|
+
84, // 14: WAAICommon.BotProgressIndicatorMetadata.stepsMetadata:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata
|
|
7625
8423
|
18, // 15: WAAICommon.BotCapabilityMetadata.capabilities:type_name -> WAAICommon.BotCapabilityMetadata.BotCapabilityType
|
|
7626
8424
|
19, // 16: WAAICommon.BotModeSelectionMetadata.mode:type_name -> WAAICommon.BotModeSelectionMetadata.BotUserSelectionMode
|
|
7627
|
-
|
|
8425
|
+
88, // 17: WAAICommon.BotQuotaMetadata.botFeatureQuotaMetadata:type_name -> WAAICommon.BotQuotaMetadata.BotFeatureQuotaMetadata
|
|
7628
8426
|
21, // 18: WAAICommon.BotImagineMetadata.imagineType:type_name -> WAAICommon.BotImagineMetadata.ImagineType
|
|
7629
8427
|
22, // 19: WAAICommon.BotAgeCollectionMetadata.ageCollectionType:type_name -> WAAICommon.BotAgeCollectionMetadata.AgeCollectionType
|
|
7630
|
-
|
|
8428
|
+
89, // 20: WAAICommon.BotSourcesMetadata.sources:type_name -> WAAICommon.BotSourcesMetadata.BotSourceItem
|
|
7631
8429
|
24, // 21: WAAICommon.BotMessageOrigin.type:type_name -> WAAICommon.BotMessageOrigin.BotMessageOriginType
|
|
7632
|
-
|
|
7633
|
-
|
|
7634
|
-
|
|
8430
|
+
91, // 22: WAAICommon.AIThreadInfo.serverInfo:type_name -> WAAICommon.AIThreadInfo.AIThreadServerInfo
|
|
8431
|
+
90, // 23: WAAICommon.AIThreadInfo.clientInfo:type_name -> WAAICommon.AIThreadInfo.AIThreadClientInfo
|
|
8432
|
+
113, // 24: WAAICommon.BotFeedbackMessage.messageKey:type_name -> WACommon.MessageKey
|
|
7635
8433
|
29, // 25: WAAICommon.BotFeedbackMessage.kind:type_name -> WAAICommon.BotFeedbackMessage.BotFeedbackKind
|
|
7636
8434
|
26, // 26: WAAICommon.BotFeedbackMessage.kindReport:type_name -> WAAICommon.BotFeedbackMessage.ReportKind
|
|
7637
|
-
|
|
7638
|
-
|
|
8435
|
+
92, // 27: WAAICommon.BotFeedbackMessage.sideBySideSurveyMetadata:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata
|
|
8436
|
+
75, // 28: WAAICommon.AIRichResponseInlineImageMetadata.imageURL:type_name -> WAAICommon.AIRichResponseImageURL
|
|
7639
8437
|
30, // 29: WAAICommon.AIRichResponseInlineImageMetadata.alignment:type_name -> WAAICommon.AIRichResponseInlineImageMetadata.AIRichResponseImageAlignment
|
|
7640
|
-
|
|
8438
|
+
100, // 30: WAAICommon.AIRichResponseCodeMetadata.codeBlocks:type_name -> WAAICommon.AIRichResponseCodeMetadata.AIRichResponseCodeBlock
|
|
7641
8439
|
32, // 31: WAAICommon.AIRichResponseDynamicMetadata.type:type_name -> WAAICommon.AIRichResponseDynamicMetadata.AIRichResponseDynamicMetadataType
|
|
7642
|
-
|
|
8440
|
+
101, // 32: WAAICommon.AIRichResponseContentItemsMetadata.itemsMetadata:type_name -> WAAICommon.AIRichResponseContentItemsMetadata.AIRichResponseContentItemMetadata
|
|
7643
8441
|
33, // 33: WAAICommon.AIRichResponseContentItemsMetadata.contentType:type_name -> WAAICommon.AIRichResponseContentItemsMetadata.ContentType
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
|
|
7648
|
-
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
|
|
7662
|
-
|
|
7663
|
-
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7682
|
-
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
|
|
7697
|
-
|
|
7698
|
-
|
|
7699
|
-
|
|
7700
|
-
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
8442
|
+
103, // 34: WAAICommon.AIHomeState.capabilityOptions:type_name -> WAAICommon.AIHomeState.AIHomeOption
|
|
8443
|
+
103, // 35: WAAICommon.AIHomeState.conversationOptions:type_name -> WAAICommon.AIHomeState.AIHomeOption
|
|
8444
|
+
59, // 36: WAAICommon.BotSuggestedPromptMetadata.promptSuggestions:type_name -> WAAICommon.BotPromptSuggestions
|
|
8445
|
+
60, // 37: WAAICommon.BotPromptSuggestions.suggestions:type_name -> WAAICommon.BotPromptSuggestion
|
|
8446
|
+
36, // 38: WAAICommon.BotLinkedAccountsMetadata.accounts:type_name -> WAAICommon.BotLinkedAccount
|
|
8447
|
+
63, // 39: WAAICommon.BotMemoryMetadata.addedFacts:type_name -> WAAICommon.BotMemoryFact
|
|
8448
|
+
63, // 40: WAAICommon.BotMemoryMetadata.removedFacts:type_name -> WAAICommon.BotMemoryFact
|
|
8449
|
+
37, // 41: WAAICommon.BotSignatureVerificationMetadata.proofs:type_name -> WAAICommon.BotSignatureVerificationUseCaseProof
|
|
8450
|
+
104, // 42: WAAICommon.BotRenderingMetadata.keywords:type_name -> WAAICommon.BotRenderingMetadata.Keyword
|
|
8451
|
+
0, // 43: WAAICommon.BotMetricsMetadata.destinationEntryPoint:type_name -> WAAICommon.BotMetricsEntryPoint
|
|
8452
|
+
1, // 44: WAAICommon.BotMetricsMetadata.threadOrigin:type_name -> WAAICommon.BotMetricsThreadEntryPoint
|
|
8453
|
+
2, // 45: WAAICommon.BotSessionMetadata.sessionSource:type_name -> WAAICommon.BotSessionSource
|
|
8454
|
+
39, // 46: WAAICommon.BotMemuMetadata.faceImages:type_name -> WAAICommon.BotMediaMetadata
|
|
8455
|
+
107, // 47: WAAICommon.InThreadSurveyMetadata.questions:type_name -> WAAICommon.InThreadSurveyMetadata.InThreadSurveyQuestion
|
|
8456
|
+
105, // 48: WAAICommon.InThreadSurveyMetadata.privacyStatementParts:type_name -> WAAICommon.InThreadSurveyMetadata.InThreadSurveyPrivacyStatementPart
|
|
8457
|
+
49, // 49: WAAICommon.BotMessageOriginMetadata.origins:type_name -> WAAICommon.BotMessageOrigin
|
|
8458
|
+
109, // 50: WAAICommon.BotUnifiedResponseMutation.sbsMetadata:type_name -> WAAICommon.BotUnifiedResponseMutation.SideBySideMetadata
|
|
8459
|
+
108, // 51: WAAICommon.BotUnifiedResponseMutation.mediaDetailsMetadataList:type_name -> WAAICommon.BotUnifiedResponseMutation.MediaDetailsMetadata
|
|
8460
|
+
57, // 52: WAAICommon.BotMetadata.avatarMetadata:type_name -> WAAICommon.BotAvatarMetadata
|
|
8461
|
+
35, // 53: WAAICommon.BotMetadata.pluginMetadata:type_name -> WAAICommon.BotPluginMetadata
|
|
8462
|
+
58, // 54: WAAICommon.BotMetadata.suggestedPromptMetadata:type_name -> WAAICommon.BotSuggestedPromptMetadata
|
|
8463
|
+
67, // 55: WAAICommon.BotMetadata.sessionMetadata:type_name -> WAAICommon.BotSessionMetadata
|
|
8464
|
+
68, // 56: WAAICommon.BotMetadata.memuMetadata:type_name -> WAAICommon.BotMemuMetadata
|
|
8465
|
+
40, // 57: WAAICommon.BotMetadata.reminderMetadata:type_name -> WAAICommon.BotReminderMetadata
|
|
8466
|
+
41, // 58: WAAICommon.BotMetadata.modelMetadata:type_name -> WAAICommon.BotModelMetadata
|
|
8467
|
+
42, // 59: WAAICommon.BotMetadata.progressIndicatorMetadata:type_name -> WAAICommon.BotProgressIndicatorMetadata
|
|
8468
|
+
43, // 60: WAAICommon.BotMetadata.capabilityMetadata:type_name -> WAAICommon.BotCapabilityMetadata
|
|
8469
|
+
46, // 61: WAAICommon.BotMetadata.imagineMetadata:type_name -> WAAICommon.BotImagineMetadata
|
|
8470
|
+
62, // 62: WAAICommon.BotMetadata.memoryMetadata:type_name -> WAAICommon.BotMemoryMetadata
|
|
8471
|
+
65, // 63: WAAICommon.BotMetadata.renderingMetadata:type_name -> WAAICommon.BotRenderingMetadata
|
|
8472
|
+
66, // 64: WAAICommon.BotMetadata.botMetricsMetadata:type_name -> WAAICommon.BotMetricsMetadata
|
|
8473
|
+
61, // 65: WAAICommon.BotMetadata.botLinkedAccountsMetadata:type_name -> WAAICommon.BotLinkedAccountsMetadata
|
|
8474
|
+
48, // 66: WAAICommon.BotMetadata.richResponseSourcesMetadata:type_name -> WAAICommon.BotSourcesMetadata
|
|
8475
|
+
38, // 67: WAAICommon.BotMetadata.botPromotionMessageMetadata:type_name -> WAAICommon.BotPromotionMessageMetadata
|
|
8476
|
+
44, // 68: WAAICommon.BotMetadata.botModeSelectionMetadata:type_name -> WAAICommon.BotModeSelectionMetadata
|
|
8477
|
+
45, // 69: WAAICommon.BotMetadata.botQuotaMetadata:type_name -> WAAICommon.BotQuotaMetadata
|
|
8478
|
+
47, // 70: WAAICommon.BotMetadata.botAgeCollectionMetadata:type_name -> WAAICommon.BotAgeCollectionMetadata
|
|
8479
|
+
64, // 71: WAAICommon.BotMetadata.verificationMetadata:type_name -> WAAICommon.BotSignatureVerificationMetadata
|
|
8480
|
+
71, // 72: WAAICommon.BotMetadata.unifiedResponseMutation:type_name -> WAAICommon.BotUnifiedResponseMutation
|
|
8481
|
+
70, // 73: WAAICommon.BotMetadata.botMessageOriginMetadata:type_name -> WAAICommon.BotMessageOriginMetadata
|
|
8482
|
+
69, // 74: WAAICommon.BotMetadata.inThreadSurveyMetadata:type_name -> WAAICommon.InThreadSurveyMetadata
|
|
8483
|
+
50, // 75: WAAICommon.BotMetadata.botThreadInfo:type_name -> WAAICommon.AIThreadInfo
|
|
8484
|
+
82, // 76: WAAICommon.BotMetadata.regenerateMetadata:type_name -> WAAICommon.AIRegenerateMetadata
|
|
8485
|
+
83, // 77: WAAICommon.BotMetadata.sessionTransparencyMetadata:type_name -> WAAICommon.SessionTransparencyMetadata
|
|
8486
|
+
0, // 78: WAAICommon.BotMessageSharingInfo.botEntryPointOrigin:type_name -> WAAICommon.BotMetricsEntryPoint
|
|
8487
|
+
75, // 79: WAAICommon.AIRichResponseGridImageMetadata.gridImageURL:type_name -> WAAICommon.AIRichResponseImageURL
|
|
8488
|
+
75, // 80: WAAICommon.AIRichResponseGridImageMetadata.imageURLs:type_name -> WAAICommon.AIRichResponseImageURL
|
|
8489
|
+
110, // 81: WAAICommon.AIRichResponseTableMetadata.rows:type_name -> WAAICommon.AIRichResponseTableMetadata.AIRichResponseTableRow
|
|
8490
|
+
111, // 82: WAAICommon.AIRichResponseLatexMetadata.expressions:type_name -> WAAICommon.AIRichResponseLatexMetadata.AIRichResponseLatexExpression
|
|
8491
|
+
112, // 83: WAAICommon.AIRichResponseMapMetadata.annotations:type_name -> WAAICommon.AIRichResponseMapMetadata.AIRichResponseMapAnnotation
|
|
8492
|
+
4, // 84: WAAICommon.AIRichResponseSubMessage.messageType:type_name -> WAAICommon.AIRichResponseSubMessageType
|
|
8493
|
+
76, // 85: WAAICommon.AIRichResponseSubMessage.gridImageMetadata:type_name -> WAAICommon.AIRichResponseGridImageMetadata
|
|
8494
|
+
52, // 86: WAAICommon.AIRichResponseSubMessage.imageMetadata:type_name -> WAAICommon.AIRichResponseInlineImageMetadata
|
|
8495
|
+
53, // 87: WAAICommon.AIRichResponseSubMessage.codeMetadata:type_name -> WAAICommon.AIRichResponseCodeMetadata
|
|
8496
|
+
77, // 88: WAAICommon.AIRichResponseSubMessage.tableMetadata:type_name -> WAAICommon.AIRichResponseTableMetadata
|
|
8497
|
+
54, // 89: WAAICommon.AIRichResponseSubMessage.dynamicMetadata:type_name -> WAAICommon.AIRichResponseDynamicMetadata
|
|
8498
|
+
79, // 90: WAAICommon.AIRichResponseSubMessage.latexMetadata:type_name -> WAAICommon.AIRichResponseLatexMetadata
|
|
8499
|
+
80, // 91: WAAICommon.AIRichResponseSubMessage.mapMetadata:type_name -> WAAICommon.AIRichResponseMapMetadata
|
|
8500
|
+
55, // 92: WAAICommon.AIRichResponseSubMessage.contentItemsMetadata:type_name -> WAAICommon.AIRichResponseContentItemsMetadata
|
|
8501
|
+
113, // 93: WAAICommon.AIRegenerateMetadata.messageKey:type_name -> WACommon.MessageKey
|
|
8502
|
+
85, // 94: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.sourcesMetadata:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata
|
|
8503
|
+
16, // 95: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.status:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.PlanningStepStatus
|
|
8504
|
+
86, // 96: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.sections:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningStepSectionMetadata
|
|
8505
|
+
17, // 97: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.provider:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourcesMetadata.BotPlanningSearchSourceProvider
|
|
8506
|
+
87, // 98: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningStepSectionMetadata.sourcesMetadata:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourceMetadata
|
|
8507
|
+
15, // 99: WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotPlanningSearchSourceMetadata.provider:type_name -> WAAICommon.BotProgressIndicatorMetadata.BotPlanningStepMetadata.BotSearchSourceProvider
|
|
8508
|
+
20, // 100: WAAICommon.BotQuotaMetadata.BotFeatureQuotaMetadata.featureType:type_name -> WAAICommon.BotQuotaMetadata.BotFeatureQuotaMetadata.BotFeatureType
|
|
8509
|
+
23, // 101: WAAICommon.BotSourcesMetadata.BotSourceItem.provider:type_name -> WAAICommon.BotSourcesMetadata.BotSourceItem.SourceProvider
|
|
8510
|
+
25, // 102: WAAICommon.AIThreadInfo.AIThreadClientInfo.type:type_name -> WAAICommon.AIThreadInfo.AIThreadClientInfo.AIThreadType
|
|
8511
|
+
94, // 103: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.analyticsData:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SideBySideSurveyAnalyticsData
|
|
8512
|
+
93, // 104: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.metaAiAnalyticsData:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData
|
|
8513
|
+
99, // 105: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.ctaImpressionEvent:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAImpressionEventData
|
|
8514
|
+
98, // 106: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.ctaClickEvent:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCTAClickEventData
|
|
8515
|
+
97, // 107: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.cardImpressionEvent:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyCardImpressionEventData
|
|
8516
|
+
96, // 108: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.responseEvent:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyResponseEventData
|
|
8517
|
+
95, // 109: WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.abandonEvent:type_name -> WAAICommon.BotFeedbackMessage.SideBySideSurveyMetadata.SidebySideSurveyMetaAiAnalyticsData.SideBySideSurveyAbandonEventData
|
|
8518
|
+
31, // 110: WAAICommon.AIRichResponseCodeMetadata.AIRichResponseCodeBlock.highlightType:type_name -> WAAICommon.AIRichResponseCodeMetadata.AIRichResponseCodeHighlightType
|
|
8519
|
+
102, // 111: WAAICommon.AIRichResponseContentItemsMetadata.AIRichResponseContentItemMetadata.reelItem:type_name -> WAAICommon.AIRichResponseContentItemsMetadata.AIRichResponseReelItem
|
|
8520
|
+
34, // 112: WAAICommon.AIHomeState.AIHomeOption.type:type_name -> WAAICommon.AIHomeState.AIHomeOption.AIHomeActionType
|
|
8521
|
+
106, // 113: WAAICommon.InThreadSurveyMetadata.InThreadSurveyQuestion.questionOptions:type_name -> WAAICommon.InThreadSurveyMetadata.InThreadSurveyOption
|
|
8522
|
+
39, // 114: WAAICommon.BotUnifiedResponseMutation.MediaDetailsMetadata.highResMedia:type_name -> WAAICommon.BotMediaMetadata
|
|
8523
|
+
39, // 115: WAAICommon.BotUnifiedResponseMutation.MediaDetailsMetadata.previewMedia:type_name -> WAAICommon.BotMediaMetadata
|
|
8524
|
+
116, // [116:116] is the sub-list for method output_type
|
|
8525
|
+
116, // [116:116] is the sub-list for method input_type
|
|
8526
|
+
116, // [116:116] is the sub-list for extension type_name
|
|
8527
|
+
116, // [116:116] is the sub-list for extension extendee
|
|
8528
|
+
0, // [0:116] is the sub-list for field type_name
|
|
7719
8529
|
}
|
|
7720
8530
|
|
|
7721
8531
|
func init() { file_waAICommon_WAAICommon_proto_init() }
|
|
@@ -7723,7 +8533,7 @@ func file_waAICommon_WAAICommon_proto_init() {
|
|
|
7723
8533
|
if File_waAICommon_WAAICommon_proto != nil {
|
|
7724
8534
|
return
|
|
7725
8535
|
}
|
|
7726
|
-
file_waAICommon_WAAICommon_proto_msgTypes[
|
|
8536
|
+
file_waAICommon_WAAICommon_proto_msgTypes[66].OneofWrappers = []any{
|
|
7727
8537
|
(*AIRichResponseContentItemsMetadata_AIRichResponseContentItemMetadata_ReelItem)(nil),
|
|
7728
8538
|
}
|
|
7729
8539
|
type x struct{}
|
|
@@ -7731,8 +8541,8 @@ func file_waAICommon_WAAICommon_proto_init() {
|
|
|
7731
8541
|
File: protoimpl.DescBuilder{
|
|
7732
8542
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
7733
8543
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waAICommon_WAAICommon_proto_rawDesc), len(file_waAICommon_WAAICommon_proto_rawDesc)),
|
|
7734
|
-
NumEnums:
|
|
7735
|
-
NumMessages:
|
|
8544
|
+
NumEnums: 35,
|
|
8545
|
+
NumMessages: 78,
|
|
7736
8546
|
NumExtensions: 0,
|
|
7737
8547
|
NumServices: 0,
|
|
7738
8548
|
},
|