@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.
- package/meta.min.json +4 -4
- package/package.json +5 -5
- package/protos.min.js +1 -1
- package/protos.min.js.map +3 -3
- package/schema/devvit/ui/effects/web_view/v1alpha/post_message.proto +19 -1
- package/schema/snootobuf.devenv.lock +328 -89
- package/schema/snootobuf.lock +328 -89
- package/schema/snootobuf.redditapi.lock +328 -89
- package/schema/snootobuf.ts.lock +328 -89
- package/types/devvit/ui/effects/web_view/v1alpha/post_message.d.ts +29 -0
- 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 +108 -0
@@ -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
|
-
|
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',
|