@devvit/protos 0.11.12-next-2025-03-26-46058270f.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.
- package/meta.min.json +6 -6
- package/package.json +5 -5
- package/protos.min.js +1 -1
- package/protos.min.js.map +2 -2
- package/schema/devvit/ui/effects/web_view/v1alpha/post_message.proto +4 -0
- package/schema/devvit/ui/events/v1alpha/web_view.proto +4 -0
- package/schema/snootobuf.devenv.lock +7653 -7386
- package/schema/snootobuf.lock +7655 -7386
- package/schema/snootobuf.redditapi.lock +7651 -7386
- package/schema/snootobuf.ts.lock +183 -76
- package/types/devvit/reddit/custom_post/v1alpha/custom_post.d.ts +12 -0
- package/types/devvit/reddit/custom_post/v1alpha/custom_post.d.ts.map +1 -1
- package/types/devvit/ui/effects/web_view/v1alpha/post_message.d.ts +6 -1
- package/types/devvit/ui/effects/web_view/v1alpha/post_message.d.ts.map +1 -1
- package/types/devvit/ui/effects/web_view/v1alpha/post_message.js +18 -2
- package/types/devvit/ui/events/v1alpha/web_view.d.ts +6 -1
- package/types/devvit/ui/events/v1alpha/web_view.d.ts.map +1 -1
- package/types/devvit/ui/events/v1alpha/web_view.js +18 -2
@@ -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
|