@devvit/protos 0.11.1-next-2024-10-15-0e3fc9f36.0 → 0.11.1-next-2024-10-16-f01281d9b.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/dev_portal/app/app.proto +0 -6
- package/schema/snootobuf.lock +365 -551
- package/schema/snootobuf.redditapi.lock +365 -551
- package/schema/snootobuf.ts.lock +365 -551
- package/schema/snootobuf.yaml +2 -3
- package/types/devvit/dev_portal/app/app.d.ts +0 -6
- package/types/devvit/dev_portal/app/app.d.ts.map +1 -1
- package/types/devvit/dev_portal/app/app.js +2 -48
- package/types/devvit/dev_portal/dev_portal.d.ts +3 -10
- package/types/devvit/dev_portal/dev_portal.d.ts.map +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@devvit/protos",
|
3
|
-
"version": "0.11.1-next-2024-10-
|
3
|
+
"version": "0.11.1-next-2024-10-16-f01281d9b.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.1-next-2024-10-
|
49
|
-
"@devvit/tsconfig": "0.11.1-next-2024-10-
|
48
|
+
"@devvit/repo-tools": "0.11.1-next-2024-10-16-f01281d9b.0",
|
49
|
+
"@devvit/tsconfig": "0.11.1-next-2024-10-16-f01281d9b.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": "6c247fa8305f92fc4a0e344df08f7f41c8f96245"
|
84
84
|
}
|
@@ -41,12 +41,6 @@ message AppSearchRequest {
|
|
41
41
|
message GetAppBySlugRequest {
|
42
42
|
// What is the slug of the app?
|
43
43
|
string slug = 1;
|
44
|
-
// How many versions of the app, at most, should we return?
|
45
|
-
optional int32 limit = 2;
|
46
|
-
// How many versions of the app should we skip? (Useful for pagination!)
|
47
|
-
optional int32 offset = 3;
|
48
|
-
// Should we include prerelease versions?
|
49
|
-
optional bool include_prerelease_versions = 4;
|
50
44
|
}
|
51
45
|
|
52
46
|
message GetAllWithOwnerRequest {
|