@devvit/protos 0.11.12-next-2025-03-31-45fee5c0a.0 → 0.11.12-next-2025-03-31-566c67869.0

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.
@@ -7,7 +7,25 @@ import "google/protobuf/struct.proto";
7
7
  option go_package = "github.snooguts.net/reddit/reddit-devplatform-monorepo/go-common/generated/protos/types/devvit/ui/effects/web_view/v1alpha";
8
8
  option java_package = "com.reddit.devvit.ui.effects.web_view.v1alpha";
9
9
 
10
- // Each message described here will be converted to a Struct and sent to a WebView wrapped in a WebViewPostMessage:
10
+ enum WebViewInternalMessageScope {
11
+ // Message is intended for the client only
12
+ CLIENT = 0;
13
+ }
14
+
15
+ // Internal message, sent by web-view-scripts via postMessage
16
+ // type: devvit-internal
17
+ message WebViewInternalMessage {
18
+ string type = 1;
19
+ // Scope of the message, used to determine where the message should be sent
20
+ WebViewInternalMessageScope scope = 2;
21
+
22
+ oneof options {
23
+ // Origin: devvit-analytics
24
+ google.protobuf.Struct analytics = 3;
25
+ }
26
+ }
27
+
28
+ // Each message described below here will be converted to a Struct and sent to a WebView wrapped in a WebViewPostMessage:
11
29
  // Example, sending WebViewAppMessage:
12
30
  // {
13
31
  // type: 'devvit-message',