@devvit/protos 0.11.5-next-2024-12-10-7ac47c52a.0 → 0.11.5-next-2024-12-11-feea5e44e.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devvit/protos",
3
- "version": "0.11.5-next-2024-12-10-7ac47c52a.0",
3
+ "version": "0.11.5-next-2024-12-11-feea5e44e.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.5-next-2024-12-10-7ac47c52a.0",
49
- "@devvit/tsconfig": "0.11.5-next-2024-12-10-7ac47c52a.0",
48
+ "@devvit/repo-tools": "0.11.5-next-2024-12-11-feea5e44e.0",
49
+ "@devvit/tsconfig": "0.11.5-next-2024-12-11-feea5e44e.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": "899e6b264b39b0f5d930473ded8b6013af085df5"
83
+ "gitHead": "93157a3e246f9e2a2448521690bdde582bccd689"
84
84
  }
@@ -2,6 +2,7 @@ syntax = "proto3";
2
2
 
3
3
  package devvit.dev_portal.app_version.info;
4
4
 
5
+ import "devvit/dev_portal/nutrition/nutrition.proto";
5
6
  import "google/protobuf/timestamp.proto";
6
7
  import "google/protobuf/wrappers.proto";
7
8
 
@@ -65,4 +66,7 @@ message AppVersionInfo {
65
66
  bool has_custom_settings = 13;
66
67
  ComputePool pool = 14;
67
68
  reserved 15; // removed
69
+
70
+ // Abstract plugin capabilities used by the target app version
71
+ repeated devvit.dev_portal.nutrition.NutritionCategory app_capabilities = 16;
68
72
  }
@@ -47,8 +47,8 @@ enum NutritionCategory {
47
47
  REDDIT_TRIGGERS = 7;
48
48
  // App may schedule itself for later execution.
49
49
  SCHEDULER = 8;
50
- // App may appear in subreddit, post, and comment menu entries, and custom
51
- // posts.
50
+ // App may appear in subreddit, post, and comment menu entries, and custom posts.
51
+ // Note: CUSTOM_POST is a subset of UI: if CUSTOM_POST is set then UI is set also.
52
52
  UI = 9;
53
53
  // App may appear and act as a moderator on subreddits where it's installed.
54
54
  MODERATOR = 10;
@@ -56,4 +56,7 @@ enum NutritionCategory {
56
56
  WEBVIEW = 11;
57
57
  // App may sell digital goods or services.
58
58
  PAYMENTS = 12;
59
+ // App can create a custom experience.
60
+ // Note: CUSTOM_POST is a subset of UI: if CUSTOM_POST is set then UI is set also.
61
+ CUSTOM_POST = 13;
59
62
  }