@devvit/protos 0.11.6-next-2025-01-23-06d296ea8.0 → 0.11.6-next-2025-01-24-8dca66b45.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/package.json +4 -4
- package/schema/devvit/plugin/buildpack/buildpack_common.proto +6 -1
- package/schema/snootobuf.devenv.lock +210 -102
- package/schema/snootobuf.lock +210 -102
- package/schema/snootobuf.redditapi.lock +210 -102
- package/schema/snootobuf.ts.lock +210 -102
- package/types/devvit/dev_portal/dev_portal.d.ts +2 -0
- package/types/devvit/dev_portal/dev_portal.d.ts.map +1 -1
- package/types/devvit/plugin/builder/builder.d.ts +4 -0
- package/types/devvit/plugin/builder/builder.d.ts.map +1 -1
- package/types/devvit/plugin/buildpack/buildpack.d.ts +8 -0
- package/types/devvit/plugin/buildpack/buildpack.d.ts.map +1 -1
- package/types/devvit/plugin/buildpack/buildpack_common.d.ts +3 -0
- package/types/devvit/plugin/buildpack/buildpack_common.d.ts.map +1 -1
- package/types/devvit/plugin/buildpack/buildpack_common.js +37 -1
- package/types/devvit/plugin/linker/linker.d.ts +2 -0
- package/types/devvit/plugin/linker/linker.d.ts.map +1 -1
- package/types/devvit/plugin/linker/resolver.d.ts +2 -0
- package/types/devvit/plugin/linker/resolver.d.ts.map +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@devvit/protos",
|
3
|
-
"version": "0.11.6-next-2025-01-
|
3
|
+
"version": "0.11.6-next-2025-01-24-8dca66b45.0",
|
4
4
|
"license": "BSD-3-Clause",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -45,8 +45,8 @@
|
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"@ampproject/filesize": "4.3.0",
|
48
|
-
"@devvit/repo-tools": "0.11.6-next-2025-01-
|
49
|
-
"@devvit/tsconfig": "0.11.6-next-2025-01-
|
48
|
+
"@devvit/repo-tools": "0.11.6-next-2025-01-24-8dca66b45.0",
|
49
|
+
"@devvit/tsconfig": "0.11.6-next-2025-01-24-8dca66b45.0",
|
50
50
|
"@protobuf-ts/plugin": "2.9.3",
|
51
51
|
"@types/long": "4.0.2",
|
52
52
|
"chokidar-cli": "3.0.0",
|
@@ -80,5 +80,5 @@
|
|
80
80
|
]
|
81
81
|
}
|
82
82
|
},
|
83
|
-
"gitHead": "
|
83
|
+
"gitHead": "66491513a72263500b05d5ec888b13a89b92fd1c"
|
84
84
|
}
|
@@ -46,7 +46,10 @@ message Bundle {
|
|
46
46
|
// This field contains configuration needed to enable the Payments capability
|
47
47
|
PaymentsConfig payments_config = 8;
|
48
48
|
|
49
|
-
//
|
49
|
+
// The metafile contains the size breakdown of the compiled bundle for analysis
|
50
|
+
optional string metafile = 9;
|
51
|
+
|
52
|
+
// next 10;
|
50
53
|
}
|
51
54
|
|
52
55
|
message PaymentsConfig {
|
@@ -93,6 +96,8 @@ message CompileParams {
|
|
93
96
|
devvit.runtime.ActorSpec info = 4;
|
94
97
|
|
95
98
|
bool include_assets = 5;
|
99
|
+
|
100
|
+
bool include_metafile = 6;
|
96
101
|
}
|
97
102
|
|
98
103
|
message CompileLog {
|