@devvit/protos 0.11.12-next-2025-03-26-76fc1f81e.0 → 0.11.12-next-2025-03-26-b56e4b84d.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.
@@ -28,7 +28,11 @@ message WebViewPostMessage {
28
28
  // type: devvit-message
29
29
  message WebViewAppMessage {
30
30
  // Any serializable value given to postMessage in a WebView
31
+ // @deprecated Use json_string instead
31
32
  google.protobuf.Value message = 1;
33
+
34
+ // JSON string payload
35
+ optional string json_string = 2;
32
36
  }
33
37
 
34
38
  // Used to pass stateful data into a WebView
@@ -15,7 +15,11 @@ enum WebViewVisibility {
15
15
  // Fired when the content of a WebView calls window.parent.postMessage()
16
16
  message WebViewPostMessageEvent {
17
17
  // Can be a Struct or a scalar value since postMessage doesn't restrict the type of 'message'.
18
+ // @deprecated Use json_string instead
18
19
  google.protobuf.Value message = 1;
20
+
21
+ // JSON string payload
22
+ string json_string = 2;
19
23
  }
20
24
 
21
25
  // Fired when the visibility of a fullscreen WebView changes