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.
Files changed (164) hide show
  1. slidge_whatsapp/config.py +7 -2
  2. slidge_whatsapp/contact.py +3 -2
  3. slidge_whatsapp/event.go +14 -9
  4. slidge_whatsapp/gateway.go +7 -1
  5. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +182 -178
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +146 -142
  8. slidge_whatsapp/generated/whatsapp.c +1456 -1376
  9. slidge_whatsapp/generated/whatsapp.go +1069 -1045
  10. slidge_whatsapp/generated/whatsapp.py +1324 -1298
  11. slidge_whatsapp/generated/whatsapp_go.h +182 -178
  12. slidge_whatsapp/go.mod +6 -6
  13. slidge_whatsapp/go.sum +12 -12
  14. slidge_whatsapp/group.py +25 -0
  15. slidge_whatsapp/session.go +69 -67
  16. slidge_whatsapp/session.py +11 -1
  17. slidge_whatsapp/vendor/github.com/coder/websocket/LICENSE.txt +13 -0
  18. slidge_whatsapp/vendor/github.com/coder/websocket/Makefile +18 -0
  19. slidge_whatsapp/vendor/github.com/coder/websocket/README.md +162 -0
  20. slidge_whatsapp/vendor/github.com/coder/websocket/accept.go +378 -0
  21. slidge_whatsapp/vendor/github.com/coder/websocket/close.go +335 -0
  22. slidge_whatsapp/vendor/github.com/coder/websocket/compress.go +234 -0
  23. slidge_whatsapp/vendor/github.com/coder/websocket/conn.go +306 -0
  24. slidge_whatsapp/vendor/github.com/coder/websocket/dial.go +347 -0
  25. slidge_whatsapp/vendor/github.com/coder/websocket/doc.go +33 -0
  26. slidge_whatsapp/vendor/github.com/coder/websocket/errors.go +8 -0
  27. slidge_whatsapp/vendor/github.com/coder/websocket/frame.go +173 -0
  28. slidge_whatsapp/vendor/github.com/coder/websocket/hijack.go +33 -0
  29. slidge_whatsapp/vendor/github.com/coder/websocket/internal/bpool/bpool.go +25 -0
  30. slidge_whatsapp/vendor/github.com/coder/websocket/internal/errd/wrap.go +14 -0
  31. slidge_whatsapp/vendor/github.com/coder/websocket/internal/util/util.go +15 -0
  32. slidge_whatsapp/vendor/github.com/coder/websocket/internal/wsjs/wsjs_js.go +169 -0
  33. slidge_whatsapp/vendor/github.com/coder/websocket/mask.go +128 -0
  34. slidge_whatsapp/vendor/github.com/coder/websocket/mask_amd64.s +127 -0
  35. slidge_whatsapp/vendor/github.com/coder/websocket/mask_arm64.s +72 -0
  36. slidge_whatsapp/vendor/github.com/coder/websocket/mask_asm.go +26 -0
  37. slidge_whatsapp/vendor/github.com/coder/websocket/mask_go.go +7 -0
  38. slidge_whatsapp/vendor/github.com/coder/websocket/netconn.go +233 -0
  39. slidge_whatsapp/vendor/github.com/coder/websocket/netconn_js.go +11 -0
  40. slidge_whatsapp/vendor/github.com/coder/websocket/netconn_notjs.go +19 -0
  41. slidge_whatsapp/vendor/github.com/coder/websocket/read.go +540 -0
  42. slidge_whatsapp/vendor/github.com/coder/websocket/stringer.go +91 -0
  43. slidge_whatsapp/vendor/github.com/coder/websocket/write.go +384 -0
  44. slidge_whatsapp/vendor/github.com/coder/websocket/ws_js.go +598 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +1 -1
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +1 -1
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +3 -1
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +1 -1
  49. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +3 -0
  50. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +3 -0
  51. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +4 -3
  52. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +3 -0
  53. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +18 -4
  54. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +3 -3
  55. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -4
  56. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +90 -80
  57. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +14 -11
  58. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -1
  59. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +47 -48
  60. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +3 -2
  61. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +79 -75
  62. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +8 -6
  63. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +1 -2
  64. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -2
  65. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +42 -40
  66. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +35 -32
  67. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +2 -3
  68. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -4
  69. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +19 -19
  70. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -8
  71. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +9 -9
  72. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +4 -5
  73. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +1 -1
  74. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +1 -1
  75. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +1 -1
  76. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +1 -1
  77. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +1 -1
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1 -1
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +1 -1
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +1 -1
  81. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +1 -1
  82. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +1 -1
  83. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1 -1
  84. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +1145 -335
  85. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.proto +78 -0
  86. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +1 -1
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +1 -1
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +1 -1
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +1 -1
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +1 -1
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +1 -1
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +22 -4
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +2 -0
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +1 -1
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +104 -30
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +7 -0
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +1037 -963
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +15 -8
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +1 -1
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +1 -1
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1 -1
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +1 -1
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1 -1
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +1 -1
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +1 -1
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +1 -1
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +40 -35
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +1 -0
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +921 -653
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +44 -15
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +1 -1
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +1 -1
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +9 -5
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +1 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +193 -115
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +9 -0
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +2 -4
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +12 -12
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +25 -19
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -2
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +43 -27
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +4 -4
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +1 -1
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +43 -56
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +9 -3
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +36 -22
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +24 -4
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +12 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +2 -1
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +79 -40
  132. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +2 -0
  133. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +6 -0
  134. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +359 -0
  135. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +10 -0
  136. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +31 -0
  137. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +15 -0
  138. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +76 -0
  139. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +37 -0
  140. slidge_whatsapp/vendor/modules.txt +12 -8
  141. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/METADATA +1 -1
  142. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/RECORD +145 -136
  143. slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +0 -25
  144. slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +0 -9
  145. slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +0 -22
  146. slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +0 -33
  147. slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +0 -434
  148. slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +0 -148
  149. slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +0 -1238
  150. slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +0 -227
  151. slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +0 -42
  152. slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +0 -60
  153. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +0 -55
  154. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +0 -16
  155. slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +0 -102
  156. slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +0 -77
  157. slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +0 -365
  158. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +0 -21
  159. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +0 -21
  160. slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +0 -298
  161. slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +0 -473
  162. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/WHEEL +0 -0
  163. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/entry_points.txt +0 -0
  164. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/licenses/LICENSE +0 -0
@@ -44,6 +44,7 @@ enum HistorySyncType {
44
44
  NON_BLOCKING_DATA = 5;
45
45
  ON_DEMAND = 6;
46
46
  NO_HISTORY = 7;
47
+ MESSAGE_ACCESS_STATUS = 8;
47
48
  }
48
49
 
49
50
  enum MediaKeyDomain {
@@ -54,6 +55,11 @@ enum MediaKeyDomain {
54
55
  BOT = 4;
55
56
  }
56
57
 
58
+ enum WebLinkRenderConfig {
59
+ WEBVIEW = 0;
60
+ SYSTEM = 1;
61
+ }
62
+
57
63
  enum KeepType {
58
64
  UNKNOWN_KEEP_TYPE = 0;
59
65
  KEEP_FOR_ALL = 1;
@@ -1342,6 +1348,7 @@ message MessageContextInfo {
1342
1348
  optional WACommon.LimitSharing limitSharing = 13;
1343
1349
  optional WACommon.LimitSharing limitSharingV2 = 14;
1344
1350
  repeated ThreadID threadID = 15;
1351
+ optional WebLinkRenderConfig weblinkRenderConfig = 16;
1345
1352
  }
1346
1353
 
1347
1354
  message InteractiveAnnotation {
@@ -1558,9 +1565,8 @@ message Message {
1558
1565
  optional StatusQuotedMessage statusQuotedMessage = 109;
1559
1566
  optional StatusStickerInteractionMessage statusStickerInteractionMessage = 110;
1560
1567
  optional PollCreationMessage pollCreationMessageV5 = 111;
1561
- optional PollResultSnapshotMessage pollResultSnapshotMessageV2 = 112;
1562
1568
  optional NewsletterFollowerInviteMessage newsletterFollowerInviteMessageV2 = 113;
1563
- optional RequestContactInfoMessage requestContactInfoMessage = 114;
1569
+ optional PollResultSnapshotMessage pollResultSnapshotMessageV3 = 114;
1564
1570
  }
1565
1571
 
1566
1572
  message AlbumMessage {
@@ -1608,6 +1614,8 @@ message EventMessage {
1608
1614
  optional int64 endTime = 8;
1609
1615
  optional bool extraGuestsAllowed = 9;
1610
1616
  optional bool isScheduleCall = 10;
1617
+ optional bool hasReminder = 11;
1618
+ optional int64 reminderOffsetSec = 12;
1611
1619
  }
1612
1620
 
1613
1621
  message CommentMessage {
@@ -1713,12 +1721,6 @@ message DeviceSentMessage {
1713
1721
  optional string phash = 3;
1714
1722
  }
1715
1723
 
1716
- message RequestContactInfoMessage {
1717
- optional string text = 1;
1718
- optional string ctaButtonText = 2;
1719
- optional ContextInfo contextInfo = 3;
1720
- }
1721
-
1722
1724
  message RequestPhoneNumberMessage {
1723
1725
  optional ContextInfo contextInfo = 1;
1724
1726
  }
@@ -1945,6 +1947,11 @@ message HistorySyncNotification {
1945
1947
  optional string peerDataRequestSessionID = 12;
1946
1948
  optional FullHistorySyncOnDemandRequestMetadata fullHistorySyncOnDemandRequestMetadata = 13;
1947
1949
  optional string encHandle = 14;
1950
+ optional HistorySyncMessageAccessStatus messageAccessStatus = 15;
1951
+ }
1952
+
1953
+ message HistorySyncMessageAccessStatus {
1954
+ optional bool completeAccessGranted = 1;
1948
1955
  }
1949
1956
 
1950
1957
  message Chat {
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waHistorySync/WAWebProtobufsHistorySync.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waMediaTransport/WAMediaTransport.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waMmsRetry/WAMmsRetry.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waMsgApplication/WAMsgApplication.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waMsgTransport/WAMsgTransport.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waMultiDevice/WAMultiDevice.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waServerSync/WAServerSync.proto
6
6
 
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waStatusAttributions/WAStatusAttributions.proto
6
6
 
@@ -220,43 +220,46 @@ func (StatusAttribution_RLAttribution_Source) EnumDescriptor() ([]byte, []int) {
220
220
  type StatusAttribution_ExternalShare_Source int32
221
221
 
222
222
  const (
223
- StatusAttribution_ExternalShare_UNKNOWN StatusAttribution_ExternalShare_Source = 0
224
- StatusAttribution_ExternalShare_INSTAGRAM StatusAttribution_ExternalShare_Source = 1
225
- StatusAttribution_ExternalShare_FACEBOOK StatusAttribution_ExternalShare_Source = 2
226
- StatusAttribution_ExternalShare_MESSENGER StatusAttribution_ExternalShare_Source = 3
227
- StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
228
- StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
229
- StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
230
- StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
231
- StatusAttribution_ExternalShare_APPLE_MUSIC StatusAttribution_ExternalShare_Source = 8
232
- StatusAttribution_ExternalShare_SHARECHAT StatusAttribution_ExternalShare_Source = 9
223
+ StatusAttribution_ExternalShare_UNKNOWN StatusAttribution_ExternalShare_Source = 0
224
+ StatusAttribution_ExternalShare_INSTAGRAM StatusAttribution_ExternalShare_Source = 1
225
+ StatusAttribution_ExternalShare_FACEBOOK StatusAttribution_ExternalShare_Source = 2
226
+ StatusAttribution_ExternalShare_MESSENGER StatusAttribution_ExternalShare_Source = 3
227
+ StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
228
+ StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
229
+ StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
230
+ StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
231
+ StatusAttribution_ExternalShare_APPLE_MUSIC StatusAttribution_ExternalShare_Source = 8
232
+ StatusAttribution_ExternalShare_SHARECHAT StatusAttribution_ExternalShare_Source = 9
233
+ StatusAttribution_ExternalShare_GOOGLE_PHOTOS StatusAttribution_ExternalShare_Source = 10
233
234
  )
234
235
 
235
236
  // Enum value maps for StatusAttribution_ExternalShare_Source.
236
237
  var (
237
238
  StatusAttribution_ExternalShare_Source_name = map[int32]string{
238
- 0: "UNKNOWN",
239
- 1: "INSTAGRAM",
240
- 2: "FACEBOOK",
241
- 3: "MESSENGER",
242
- 4: "SPOTIFY",
243
- 5: "YOUTUBE",
244
- 6: "PINTEREST",
245
- 7: "THREADS",
246
- 8: "APPLE_MUSIC",
247
- 9: "SHARECHAT",
239
+ 0: "UNKNOWN",
240
+ 1: "INSTAGRAM",
241
+ 2: "FACEBOOK",
242
+ 3: "MESSENGER",
243
+ 4: "SPOTIFY",
244
+ 5: "YOUTUBE",
245
+ 6: "PINTEREST",
246
+ 7: "THREADS",
247
+ 8: "APPLE_MUSIC",
248
+ 9: "SHARECHAT",
249
+ 10: "GOOGLE_PHOTOS",
248
250
  }
249
251
  StatusAttribution_ExternalShare_Source_value = map[string]int32{
250
- "UNKNOWN": 0,
251
- "INSTAGRAM": 1,
252
- "FACEBOOK": 2,
253
- "MESSENGER": 3,
254
- "SPOTIFY": 4,
255
- "YOUTUBE": 5,
256
- "PINTEREST": 6,
257
- "THREADS": 7,
258
- "APPLE_MUSIC": 8,
259
- "SHARECHAT": 9,
252
+ "UNKNOWN": 0,
253
+ "INSTAGRAM": 1,
254
+ "FACEBOOK": 2,
255
+ "MESSENGER": 3,
256
+ "SPOTIFY": 4,
257
+ "YOUTUBE": 5,
258
+ "PINTEREST": 6,
259
+ "THREADS": 7,
260
+ "APPLE_MUSIC": 8,
261
+ "SHARECHAT": 9,
262
+ "GOOGLE_PHOTOS": 10,
260
263
  }
261
264
  )
262
265
 
@@ -932,7 +935,7 @@ var File_waStatusAttributions_WAStatusAttributions_proto protoreflect.FileDescri
932
935
 
933
936
  const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
934
937
  "\n" +
935
- "/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\xde\x11\n" +
938
+ "/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\xf1\x11\n" +
936
939
  "\x11StatusAttribution\x12]\n" +
937
940
  "\rstatusReshare\x18\x03 \x01(\v25.WAStatusAttributions.StatusAttribution.StatusReshareH\x00R\rstatusReshare\x12]\n" +
938
941
  "\rexternalShare\x18\x04 \x01(\v25.WAStatusAttributions.StatusAttribution.ExternalShareH\x00R\rexternalShare\x12E\n" +
@@ -953,12 +956,12 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
953
956
  "\aUNKNOWN\x10\x00\x12\x18\n" +
954
957
  "\x14RAY_BAN_META_GLASSES\x10\x01\x12\x17\n" +
955
958
  "\x13OAKLEY_META_GLASSES\x10\x02\x12\x15\n" +
956
- "\x11HYPERNOVA_GLASSES\x10\x03\x1a\xe7\x02\n" +
959
+ "\x11HYPERNOVA_GLASSES\x10\x03\x1a\xfa\x02\n" +
957
960
  "\rExternalShare\x12\x1c\n" +
958
961
  "\tactionURL\x18\x01 \x01(\tR\tactionURL\x12T\n" +
959
962
  "\x06source\x18\x02 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.ExternalShare.SourceR\x06source\x12\x1a\n" +
960
963
  "\bduration\x18\x03 \x01(\x05R\bduration\x12,\n" +
961
- "\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"\x97\x01\n" +
964
+ "\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"\xaa\x01\n" +
962
965
  "\x06Source\x12\v\n" +
963
966
  "\aUNKNOWN\x10\x00\x12\r\n" +
964
967
  "\tINSTAGRAM\x10\x01\x12\f\n" +
@@ -969,7 +972,9 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
969
972
  "\tPINTEREST\x10\x06\x12\v\n" +
970
973
  "\aTHREADS\x10\a\x12\x0f\n" +
971
974
  "\vAPPLE_MUSIC\x10\b\x12\r\n" +
972
- "\tSHARECHAT\x10\t\x1a\xcc\x03\n" +
975
+ "\tSHARECHAT\x10\t\x12\x11\n" +
976
+ "\rGOOGLE_PHOTOS\x10\n" +
977
+ "\x1a\xcc\x03\n" +
973
978
  "\rStatusReshare\x12T\n" +
974
979
  "\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.StatusReshare.SourceR\x06source\x12Z\n" +
975
980
  "\bmetadata\x18\x02 \x01(\v2>.WAStatusAttributions.StatusAttribution.StatusReshare.MetadataR\bmetadata\x1a\xa4\x01\n" +
@@ -47,6 +47,7 @@ message StatusAttribution {
47
47
  THREADS = 7;
48
48
  APPLE_MUSIC = 8;
49
49
  SHARECHAT = 9;
50
+ GOOGLE_PHOTOS = 10;
50
51
  }
51
52
 
52
53
  optional string actionURL = 1;