@devvit/protos 0.11.1-next-2024-10-16-f01281d9b.0 → 0.11.1-next-2024-10-16-0a8700277.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/protos",
3
- "version": "0.11.1-next-2024-10-16-f01281d9b.0",
3
+ "version": "0.11.1-next-2024-10-16-0a8700277.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-16-f01281d9b.0",
49
- "@devvit/tsconfig": "0.11.1-next-2024-10-16-f01281d9b.0",
48
+ "@devvit/repo-tools": "0.11.1-next-2024-10-16-0a8700277.0",
49
+ "@devvit/tsconfig": "0.11.1-next-2024-10-16-0a8700277.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": "6c247fa8305f92fc4a0e344df08f7f41c8f96245"
83
+ "gitHead": "eb6921dce942948666a36870eadc41981e8c3899"
84
84
  }
@@ -41,6 +41,12 @@ 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 hide prerelease versions?
49
+ optional bool hide_prerelease_versions = 4;
44
50
  }
45
51
 
46
52
  message GetAllWithOwnerRequest {