@devvit/protos 0.11.20-next-2025-08-07-15-44-07-c1bac627e.0 → 0.11.20-next-2025-08-07-16-52-21-21e024157.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.
Files changed (37) hide show
  1. package/json/devvit/dev_portal/app/app.d.ts +28 -4
  2. package/json/devvit/dev_portal/app/app.d.ts.map +1 -1
  3. package/json/devvit/dev_portal/app/categories/categories.d.ts +17 -0
  4. package/json/devvit/dev_portal/app/categories/categories.d.ts.map +1 -1
  5. package/json/devvit/dev_portal/app/info/app_info.d.ts +3 -1
  6. package/json/devvit/dev_portal/app/info/app_info.d.ts.map +1 -1
  7. package/package.json +4 -4
  8. package/schema/.snootobuf/deps/devvit/dev_portal/app/app.proto +15 -6
  9. package/schema/.snootobuf/deps/devvit/dev_portal/app/categories/categories.proto +17 -0
  10. package/schema/.snootobuf/deps/devvit/dev_portal/app/info/app_info.proto +2 -1
  11. package/schema/.snootobuf/deps/devvit/dev_portal/dev_portal.proto +3 -0
  12. package/schema/devvit/dev_portal/app/app.proto +15 -6
  13. package/schema/devvit/dev_portal/app/categories/categories.proto +17 -0
  14. package/schema/devvit/dev_portal/app/info/app_info.proto +2 -1
  15. package/schema/devvit/dev_portal/dev_portal.proto +3 -0
  16. package/schema/snootobuf.lock +0 -0
  17. package/schema/snootobuf.redditapi.lock +0 -0
  18. package/types/devvit/dev_portal/admin_portal.d.ts +10 -0
  19. package/types/devvit/dev_portal/admin_portal.d.ts.map +1 -1
  20. package/types/devvit/dev_portal/app/app.d.ts +28 -4
  21. package/types/devvit/dev_portal/app/app.d.ts.map +1 -1
  22. package/types/devvit/dev_portal/app/app.js +112 -1
  23. package/types/devvit/dev_portal/app/categories/categories.d.ts +50 -0
  24. package/types/devvit/dev_portal/app/categories/categories.d.ts.map +1 -1
  25. package/types/devvit/dev_portal/app/categories/categories.js +215 -0
  26. package/types/devvit/dev_portal/app/info/app_info.d.ts +3 -1
  27. package/types/devvit/dev_portal/app/info/app_info.d.ts.map +1 -1
  28. package/types/devvit/dev_portal/app/info/app_info.js +18 -1
  29. package/types/devvit/dev_portal/dev_portal.d.ts +255 -0
  30. package/types/devvit/dev_portal/dev_portal.d.ts.map +1 -1
  31. package/types/devvit/dev_portal/dev_portal.js +16 -0
  32. package/types/devvit/dev_portal/dev_portal.twirp-client.d.ts +4 -0
  33. package/types/devvit/dev_portal/dev_portal.twirp-client.d.ts.map +1 -1
  34. package/types/devvit/dev_portal/dev_portal.twirp-client.js +13 -0
  35. package/types/devvit/dev_portal/dev_portal.twirp.d.ts +4 -1
  36. package/types/devvit/dev_portal/dev_portal.twirp.d.ts.map +1 -1
  37. package/types/devvit/dev_portal/dev_portal.twirp.js +67 -0
@@ -10,6 +10,7 @@ import { Empty } from "../../google/protobuf/empty.js";
10
10
  import { Value } from "../../google/protobuf/struct.js";
11
11
  import { UUID } from "../uuid.js";
12
12
  import { AppAccountExistsRequest, AppAccountExistsResponse, AppCreationRequest, AppExistsRequest, AppExistsResponse, AppSearchRequest, AppSearchResponse, AppUpdateRequest, CheckIfMediaExistsRequest, CheckIfMediaExistsResponse, CreateAppAccountRequest, CreateAppAccountResponse, DisableAppRequest, EnableAppRequest, FullAppInfo, GetAllWithOwnerRequest, GetAppBySlugRequest, GetPopularAppsRequest, RecoverAppAccountRequest, UnpublishAppRequest, UploadNewMediaRequest, UploadNewMediaResponse } from "./app/app.js";
13
+ import { AppCategoryNodeListResponse } from "./app/categories/categories.js";
13
14
  import { AppInfo, MultipleAppInfos } from "./app/info/app_info.js";
14
15
  import { AppPRCreateRequest, AppPRFindManyRequest, AppPRGetRequest, AppPRUpdateRequest, FullPublishRequestInfo, MultiplePublishRequestInfos } from "./app_publish_request/app_publish_request.js";
15
16
  import { AppPRAddNoteRequest, AppPRUpdateNoteRequest } from "./app_publish_request/note/app_publish_request_note.js";
@@ -49,6 +50,8 @@ export interface App {
49
50
  AppAccountExists(request: AppAccountExistsRequest, metadata?: Metadata): Promise<AppAccountExistsResponse>;
50
51
  CreateAppAccount(request: CreateAppAccountRequest, metadata?: Metadata): Promise<CreateAppAccountResponse>;
51
52
  RecoverAppAccount(request: RecoverAppAccountRequest, metadata?: Metadata): Promise<AppInfo>;
53
+ /** Retrieve the full category taxonomy as a nested tree structure. */
54
+ GetAllCategories(request: Empty, metadata?: Metadata): Promise<AppCategoryNodeListResponse>;
52
55
  }
53
56
  export declare const AppServiceName = "devvit.dev_portal.App";
54
57
  export declare class AppClientImpl implements App {
@@ -75,6 +78,7 @@ export declare class AppClientImpl implements App {
75
78
  AppAccountExists(request: AppAccountExistsRequest, metadata?: Metadata): Promise<AppAccountExistsResponse>;
76
79
  CreateAppAccount(request: CreateAppAccountRequest, metadata?: Metadata): Promise<CreateAppAccountResponse>;
77
80
  RecoverAppAccount(request: RecoverAppAccountRequest, metadata?: Metadata): Promise<AppInfo>;
81
+ GetAllCategories(request: Empty, metadata?: Metadata): Promise<AppCategoryNodeListResponse>;
78
82
  }
79
83
  export type AppDefinition = typeof AppDefinition;
80
84
  export declare const AppDefinition: {
@@ -96,6 +100,7 @@ export declare const AppDefinition: {
96
100
  categories?: import("./app/categories/categories.js").Categories[];
97
101
  autogenerateName?: boolean;
98
102
  captcha?: string;
103
+ categoryIds?: number[];
99
104
  }): AppCreationRequest;
100
105
  fromPartial(object: {
101
106
  name?: string;
@@ -104,6 +109,7 @@ export declare const AppDefinition: {
104
109
  categories?: import("./app/categories/categories.js").Categories[];
105
110
  autogenerateName?: boolean;
106
111
  captcha?: string;
112
+ categoryIds?: number[];
107
113
  }): AppCreationRequest;
108
114
  };
109
115
  readonly requestStream: false;
@@ -147,6 +153,11 @@ export declare const AppDefinition: {
147
153
  defaultPlaytestSubredditId?: string;
148
154
  promoStatus?: import("../../../community.js").AppPromoStatus;
149
155
  appIconUrl?: string | undefined | undefined;
156
+ categoriesV2?: {
157
+ id?: number;
158
+ name?: string;
159
+ parentId?: number | undefined | undefined;
160
+ }[];
150
161
  }): AppInfo;
151
162
  fromPartial(object: {
152
163
  id?: string;
@@ -182,6 +193,11 @@ export declare const AppDefinition: {
182
193
  defaultPlaytestSubredditId?: string;
183
194
  promoStatus?: import("../../../community.js").AppPromoStatus;
184
195
  appIconUrl?: string | undefined | undefined;
196
+ categoriesV2?: {
197
+ id?: number;
198
+ name?: string;
199
+ parentId?: number | undefined | undefined;
200
+ }[];
185
201
  }): AppInfo;
186
202
  };
187
203
  readonly responseStream: false;
@@ -202,6 +218,7 @@ export declare const AppDefinition: {
202
218
  pageSize?: number | undefined | undefined;
203
219
  orderBy?: import("./app/app.js").OrderBy;
204
220
  isAscending?: boolean | undefined | undefined;
221
+ categoryIds?: number[];
205
222
  }): AppSearchRequest;
206
223
  fromPartial(object: {
207
224
  searchTerm?: string | undefined | undefined;
@@ -210,6 +227,7 @@ export declare const AppDefinition: {
210
227
  pageSize?: number | undefined | undefined;
211
228
  orderBy?: import("./app/app.js").OrderBy;
212
229
  isAscending?: boolean | undefined | undefined;
230
+ categoryIds?: number[];
213
231
  }): AppSearchRequest;
214
232
  };
215
233
  readonly requestStream: false;
@@ -254,6 +272,11 @@ export declare const AppDefinition: {
254
272
  defaultPlaytestSubredditId?: string;
255
273
  promoStatus?: import("../../../community.js").AppPromoStatus;
256
274
  appIconUrl?: string | undefined | undefined;
275
+ categoriesV2?: {
276
+ id?: number;
277
+ name?: string;
278
+ parentId?: number | undefined | undefined;
279
+ }[];
257
280
  }[];
258
281
  totalResults?: number;
259
282
  pageNumber?: number;
@@ -294,6 +317,11 @@ export declare const AppDefinition: {
294
317
  defaultPlaytestSubredditId?: string;
295
318
  promoStatus?: import("../../../community.js").AppPromoStatus;
296
319
  appIconUrl?: string | undefined | undefined;
320
+ categoriesV2?: {
321
+ id?: number;
322
+ name?: string;
323
+ parentId?: number | undefined | undefined;
324
+ }[];
297
325
  }[];
298
326
  totalResults?: number;
299
327
  pageNumber?: number;
@@ -366,6 +394,11 @@ export declare const AppDefinition: {
366
394
  defaultPlaytestSubredditId?: string;
367
395
  promoStatus?: import("../../../community.js").AppPromoStatus;
368
396
  appIconUrl?: string | undefined | undefined;
397
+ categoriesV2?: {
398
+ id?: number;
399
+ name?: string;
400
+ parentId?: number | undefined | undefined;
401
+ }[];
369
402
  } | undefined;
370
403
  versions?: {
371
404
  id?: string;
@@ -444,6 +477,11 @@ export declare const AppDefinition: {
444
477
  defaultPlaytestSubredditId?: string;
445
478
  promoStatus?: import("../../../community.js").AppPromoStatus;
446
479
  appIconUrl?: string | undefined | undefined;
480
+ categoriesV2?: {
481
+ id?: number;
482
+ name?: string;
483
+ parentId?: number | undefined | undefined;
484
+ }[];
447
485
  } | undefined;
448
486
  versions?: {
449
487
  id?: string;
@@ -548,6 +586,11 @@ export declare const AppDefinition: {
548
586
  defaultPlaytestSubredditId?: string;
549
587
  promoStatus?: import("../../../community.js").AppPromoStatus;
550
588
  appIconUrl?: string | undefined | undefined;
589
+ categoriesV2?: {
590
+ id?: number;
591
+ name?: string;
592
+ parentId?: number | undefined | undefined;
593
+ }[];
551
594
  } | undefined;
552
595
  versions?: {
553
596
  id?: string;
@@ -626,6 +669,11 @@ export declare const AppDefinition: {
626
669
  defaultPlaytestSubredditId?: string;
627
670
  promoStatus?: import("../../../community.js").AppPromoStatus;
628
671
  appIconUrl?: string | undefined | undefined;
672
+ categoriesV2?: {
673
+ id?: number;
674
+ name?: string;
675
+ parentId?: number | undefined | undefined;
676
+ }[];
629
677
  } | undefined;
630
678
  versions?: {
631
679
  id?: string;
@@ -732,6 +780,11 @@ export declare const AppDefinition: {
732
780
  defaultPlaytestSubredditId?: string;
733
781
  promoStatus?: import("../../../community.js").AppPromoStatus;
734
782
  appIconUrl?: string | undefined | undefined;
783
+ categoriesV2?: {
784
+ id?: number;
785
+ name?: string;
786
+ parentId?: number | undefined | undefined;
787
+ }[];
735
788
  }[];
736
789
  }): MultipleAppInfos;
737
790
  fromPartial(object: {
@@ -769,6 +822,11 @@ export declare const AppDefinition: {
769
822
  defaultPlaytestSubredditId?: string;
770
823
  promoStatus?: import("../../../community.js").AppPromoStatus;
771
824
  appIconUrl?: string | undefined | undefined;
825
+ categoriesV2?: {
826
+ id?: number;
827
+ name?: string;
828
+ parentId?: number | undefined | undefined;
829
+ }[];
772
830
  }[];
773
831
  }): MultipleAppInfos;
774
832
  };
@@ -832,6 +890,11 @@ export declare const AppDefinition: {
832
890
  defaultPlaytestSubredditId?: string;
833
891
  promoStatus?: import("../../../community.js").AppPromoStatus;
834
892
  appIconUrl?: string | undefined | undefined;
893
+ categoriesV2?: {
894
+ id?: number;
895
+ name?: string;
896
+ parentId?: number | undefined | undefined;
897
+ }[];
835
898
  }[];
836
899
  }): MultipleAppInfos;
837
900
  fromPartial(object: {
@@ -869,6 +932,11 @@ export declare const AppDefinition: {
869
932
  defaultPlaytestSubredditId?: string;
870
933
  promoStatus?: import("../../../community.js").AppPromoStatus;
871
934
  appIconUrl?: string | undefined | undefined;
935
+ categoriesV2?: {
936
+ id?: number;
937
+ name?: string;
938
+ parentId?: number | undefined | undefined;
939
+ }[];
872
940
  }[];
873
941
  }): MultipleAppInfos;
874
942
  };
@@ -932,6 +1000,11 @@ export declare const AppDefinition: {
932
1000
  defaultPlaytestSubredditId?: string;
933
1001
  promoStatus?: import("../../../community.js").AppPromoStatus;
934
1002
  appIconUrl?: string | undefined | undefined;
1003
+ categoriesV2?: {
1004
+ id?: number;
1005
+ name?: string;
1006
+ parentId?: number | undefined | undefined;
1007
+ }[];
935
1008
  }[];
936
1009
  }): MultipleAppInfos;
937
1010
  fromPartial(object: {
@@ -969,6 +1042,11 @@ export declare const AppDefinition: {
969
1042
  defaultPlaytestSubredditId?: string;
970
1043
  promoStatus?: import("../../../community.js").AppPromoStatus;
971
1044
  appIconUrl?: string | undefined | undefined;
1045
+ categoriesV2?: {
1046
+ id?: number;
1047
+ name?: string;
1048
+ parentId?: number | undefined | undefined;
1049
+ }[];
972
1050
  }[];
973
1051
  }): MultipleAppInfos;
974
1052
  };
@@ -1033,6 +1111,11 @@ export declare const AppDefinition: {
1033
1111
  defaultPlaytestSubredditId?: string;
1034
1112
  promoStatus?: import("../../../community.js").AppPromoStatus;
1035
1113
  appIconUrl?: string | undefined | undefined;
1114
+ categoriesV2?: {
1115
+ id?: number;
1116
+ name?: string;
1117
+ parentId?: number | undefined | undefined;
1118
+ }[];
1036
1119
  }[];
1037
1120
  }): MultipleAppInfos;
1038
1121
  fromPartial(object: {
@@ -1070,6 +1153,11 @@ export declare const AppDefinition: {
1070
1153
  defaultPlaytestSubredditId?: string;
1071
1154
  promoStatus?: import("../../../community.js").AppPromoStatus;
1072
1155
  appIconUrl?: string | undefined | undefined;
1156
+ categoriesV2?: {
1157
+ id?: number;
1158
+ name?: string;
1159
+ parentId?: number | undefined | undefined;
1160
+ }[];
1073
1161
  }[];
1074
1162
  }): MultipleAppInfos;
1075
1163
  };
@@ -1198,6 +1286,7 @@ export declare const AppDefinition: {
1198
1286
  isWebviewEnabled?: boolean | undefined | undefined;
1199
1287
  minSubredditSizeRestrictionEnabled?: boolean | undefined | undefined;
1200
1288
  promoStatus?: import("../../../community.js").AppPromoStatus | undefined;
1289
+ categoryIds?: number[];
1201
1290
  }): AppUpdateRequest;
1202
1291
  fromPartial(object: {
1203
1292
  id?: string;
@@ -1213,6 +1302,7 @@ export declare const AppDefinition: {
1213
1302
  isWebviewEnabled?: boolean | undefined | undefined;
1214
1303
  minSubredditSizeRestrictionEnabled?: boolean | undefined | undefined;
1215
1304
  promoStatus?: import("../../../community.js").AppPromoStatus | undefined;
1305
+ categoryIds?: number[];
1216
1306
  }): AppUpdateRequest;
1217
1307
  };
1218
1308
  readonly requestStream: false;
@@ -1257,6 +1347,11 @@ export declare const AppDefinition: {
1257
1347
  defaultPlaytestSubredditId?: string;
1258
1348
  promoStatus?: import("../../../community.js").AppPromoStatus;
1259
1349
  appIconUrl?: string | undefined | undefined;
1350
+ categoriesV2?: {
1351
+ id?: number;
1352
+ name?: string;
1353
+ parentId?: number | undefined | undefined;
1354
+ }[];
1260
1355
  } | undefined;
1261
1356
  versions?: {
1262
1357
  id?: string;
@@ -1335,6 +1430,11 @@ export declare const AppDefinition: {
1335
1430
  defaultPlaytestSubredditId?: string;
1336
1431
  promoStatus?: import("../../../community.js").AppPromoStatus;
1337
1432
  appIconUrl?: string | undefined | undefined;
1433
+ categoriesV2?: {
1434
+ id?: number;
1435
+ name?: string;
1436
+ parentId?: number | undefined | undefined;
1437
+ }[];
1338
1438
  } | undefined;
1339
1439
  versions?: {
1340
1440
  id?: string;
@@ -1589,6 +1689,7 @@ export declare const AppDefinition: {
1589
1689
  ownerId?: string;
1590
1690
  username?: string;
1591
1691
  password?: string;
1692
+ categoryIds?: number[];
1592
1693
  }): RecoverAppAccountRequest;
1593
1694
  fromPartial(object: {
1594
1695
  name?: string;
@@ -1599,6 +1700,7 @@ export declare const AppDefinition: {
1599
1700
  ownerId?: string;
1600
1701
  username?: string;
1601
1702
  password?: string;
1703
+ categoryIds?: number[];
1602
1704
  }): RecoverAppAccountRequest;
1603
1705
  };
1604
1706
  readonly requestStream: false;
@@ -1642,6 +1744,11 @@ export declare const AppDefinition: {
1642
1744
  defaultPlaytestSubredditId?: string;
1643
1745
  promoStatus?: import("../../../community.js").AppPromoStatus;
1644
1746
  appIconUrl?: string | undefined | undefined;
1747
+ categoriesV2?: {
1748
+ id?: number;
1749
+ name?: string;
1750
+ parentId?: number | undefined | undefined;
1751
+ }[];
1645
1752
  }): AppInfo;
1646
1753
  fromPartial(object: {
1647
1754
  id?: string;
@@ -1677,11 +1784,59 @@ export declare const AppDefinition: {
1677
1784
  defaultPlaytestSubredditId?: string;
1678
1785
  promoStatus?: import("../../../community.js").AppPromoStatus;
1679
1786
  appIconUrl?: string | undefined | undefined;
1787
+ categoriesV2?: {
1788
+ id?: number;
1789
+ name?: string;
1790
+ parentId?: number | undefined | undefined;
1791
+ }[];
1680
1792
  }): AppInfo;
1681
1793
  };
1682
1794
  readonly responseStream: false;
1683
1795
  readonly options: {};
1684
1796
  };
1797
+ /** Retrieve the full category taxonomy as a nested tree structure. */
1798
+ readonly getAllCategories: {
1799
+ readonly name: "GetAllCategories";
1800
+ readonly requestType: {
1801
+ $type: "google.protobuf.Empty";
1802
+ encode(_: Empty, writer?: _m0.Writer): _m0.Writer;
1803
+ decode(input: _m0.Reader | Uint8Array, length?: number): Empty;
1804
+ fromJSON(_: any): Empty;
1805
+ toJSON(_: Empty): unknown;
1806
+ create(base?: {}): Empty;
1807
+ fromPartial(_: {}): Empty;
1808
+ };
1809
+ readonly requestStream: false;
1810
+ readonly responseType: {
1811
+ $type: "devvit.dev_portal.app.categories.AppCategoryNodeListResponse";
1812
+ encode(message: AppCategoryNodeListResponse, writer?: _m0.Writer): _m0.Writer;
1813
+ decode(input: _m0.Reader | Uint8Array, length?: number): AppCategoryNodeListResponse;
1814
+ fromJSON(object: any): AppCategoryNodeListResponse;
1815
+ toJSON(message: AppCategoryNodeListResponse): unknown;
1816
+ create(base?: {
1817
+ categories?: {
1818
+ category?: {
1819
+ id?: number;
1820
+ name?: string;
1821
+ parentId?: number | undefined | undefined;
1822
+ } | undefined;
1823
+ children?: /*elided*/ any[];
1824
+ }[];
1825
+ }): AppCategoryNodeListResponse;
1826
+ fromPartial(object: {
1827
+ categories?: {
1828
+ category?: {
1829
+ id?: number;
1830
+ name?: string;
1831
+ parentId?: number | undefined | undefined;
1832
+ } | undefined;
1833
+ children?: /*elided*/ any[];
1834
+ }[];
1835
+ }): AppCategoryNodeListResponse;
1836
+ };
1837
+ readonly responseStream: false;
1838
+ readonly options: {};
1839
+ };
1685
1840
  };
1686
1841
  };
1687
1842
  export interface AppVersion {
@@ -2066,6 +2221,11 @@ export declare const AppVersionDefinition: {
2066
2221
  defaultPlaytestSubredditId?: string;
2067
2222
  promoStatus?: import("../../../community.js").AppPromoStatus;
2068
2223
  appIconUrl?: string | undefined | undefined;
2224
+ categoriesV2?: {
2225
+ id?: number;
2226
+ name?: string;
2227
+ parentId?: number | undefined | undefined;
2228
+ }[];
2069
2229
  } | undefined;
2070
2230
  actorTypes?: {
2071
2231
  id?: string;
@@ -2147,6 +2307,11 @@ export declare const AppVersionDefinition: {
2147
2307
  defaultPlaytestSubredditId?: string;
2148
2308
  promoStatus?: import("../../../community.js").AppPromoStatus;
2149
2309
  appIconUrl?: string | undefined | undefined;
2310
+ categoriesV2?: {
2311
+ id?: number;
2312
+ name?: string;
2313
+ parentId?: number | undefined | undefined;
2314
+ }[];
2150
2315
  } | undefined;
2151
2316
  actorTypes?: {
2152
2317
  id?: string;
@@ -2256,6 +2421,11 @@ export declare const AppVersionDefinition: {
2256
2421
  defaultPlaytestSubredditId?: string;
2257
2422
  promoStatus?: import("../../../community.js").AppPromoStatus;
2258
2423
  appIconUrl?: string | undefined | undefined;
2424
+ categoriesV2?: {
2425
+ id?: number;
2426
+ name?: string;
2427
+ parentId?: number | undefined | undefined;
2428
+ }[];
2259
2429
  } | undefined;
2260
2430
  actorTypes?: {
2261
2431
  id?: string;
@@ -2337,6 +2507,11 @@ export declare const AppVersionDefinition: {
2337
2507
  defaultPlaytestSubredditId?: string;
2338
2508
  promoStatus?: import("../../../community.js").AppPromoStatus;
2339
2509
  appIconUrl?: string | undefined | undefined;
2510
+ categoriesV2?: {
2511
+ id?: number;
2512
+ name?: string;
2513
+ parentId?: number | undefined | undefined;
2514
+ }[];
2340
2515
  } | undefined;
2341
2516
  actorTypes?: {
2342
2517
  id?: string;
@@ -2456,6 +2631,11 @@ export declare const AppVersionDefinition: {
2456
2631
  defaultPlaytestSubredditId?: string;
2457
2632
  promoStatus?: import("../../../community.js").AppPromoStatus;
2458
2633
  appIconUrl?: string | undefined | undefined;
2634
+ categoriesV2?: {
2635
+ id?: number;
2636
+ name?: string;
2637
+ parentId?: number | undefined | undefined;
2638
+ }[];
2459
2639
  } | undefined;
2460
2640
  actorTypes?: {
2461
2641
  id?: string;
@@ -2537,6 +2717,11 @@ export declare const AppVersionDefinition: {
2537
2717
  defaultPlaytestSubredditId?: string;
2538
2718
  promoStatus?: import("../../../community.js").AppPromoStatus;
2539
2719
  appIconUrl?: string | undefined | undefined;
2720
+ categoriesV2?: {
2721
+ id?: number;
2722
+ name?: string;
2723
+ parentId?: number | undefined | undefined;
2724
+ }[];
2540
2725
  } | undefined;
2541
2726
  actorTypes?: {
2542
2727
  id?: string;
@@ -3050,6 +3235,11 @@ export declare const InstallationsDefinition: {
3050
3235
  defaultPlaytestSubredditId?: string;
3051
3236
  promoStatus?: import("../../../community.js").AppPromoStatus;
3052
3237
  appIconUrl?: string | undefined | undefined;
3238
+ categoriesV2?: {
3239
+ id?: number;
3240
+ name?: string;
3241
+ parentId?: number | undefined | undefined;
3242
+ }[];
3053
3243
  } | undefined;
3054
3244
  }): FullInstallationInfo;
3055
3245
  fromPartial(object: {
@@ -3126,6 +3316,11 @@ export declare const InstallationsDefinition: {
3126
3316
  defaultPlaytestSubredditId?: string;
3127
3317
  promoStatus?: import("../../../community.js").AppPromoStatus;
3128
3318
  appIconUrl?: string | undefined | undefined;
3319
+ categoriesV2?: {
3320
+ id?: number;
3321
+ name?: string;
3322
+ parentId?: number | undefined | undefined;
3323
+ }[];
3129
3324
  } | undefined;
3130
3325
  }): FullInstallationInfo;
3131
3326
  };
@@ -3228,6 +3423,11 @@ export declare const InstallationsDefinition: {
3228
3423
  defaultPlaytestSubredditId?: string;
3229
3424
  promoStatus?: import("../../../community.js").AppPromoStatus;
3230
3425
  appIconUrl?: string | undefined | undefined;
3426
+ categoriesV2?: {
3427
+ id?: number;
3428
+ name?: string;
3429
+ parentId?: number | undefined | undefined;
3430
+ }[];
3231
3431
  } | undefined;
3232
3432
  }): FullInstallationInfo;
3233
3433
  fromPartial(object: {
@@ -3304,6 +3504,11 @@ export declare const InstallationsDefinition: {
3304
3504
  defaultPlaytestSubredditId?: string;
3305
3505
  promoStatus?: import("../../../community.js").AppPromoStatus;
3306
3506
  appIconUrl?: string | undefined | undefined;
3507
+ categoriesV2?: {
3508
+ id?: number;
3509
+ name?: string;
3510
+ parentId?: number | undefined | undefined;
3511
+ }[];
3307
3512
  } | undefined;
3308
3513
  }): FullInstallationInfo;
3309
3514
  };
@@ -3410,6 +3615,11 @@ export declare const InstallationsDefinition: {
3410
3615
  defaultPlaytestSubredditId?: string;
3411
3616
  promoStatus?: import("../../../community.js").AppPromoStatus;
3412
3617
  appIconUrl?: string | undefined | undefined;
3618
+ categoriesV2?: {
3619
+ id?: number;
3620
+ name?: string;
3621
+ parentId?: number | undefined | undefined;
3622
+ }[];
3413
3623
  } | undefined;
3414
3624
  }): FullInstallationInfo;
3415
3625
  fromPartial(object: {
@@ -3486,6 +3696,11 @@ export declare const InstallationsDefinition: {
3486
3696
  defaultPlaytestSubredditId?: string;
3487
3697
  promoStatus?: import("../../../community.js").AppPromoStatus;
3488
3698
  appIconUrl?: string | undefined | undefined;
3699
+ categoriesV2?: {
3700
+ id?: number;
3701
+ name?: string;
3702
+ parentId?: number | undefined | undefined;
3703
+ }[];
3489
3704
  } | undefined;
3490
3705
  }): FullInstallationInfo;
3491
3706
  };
@@ -3966,6 +4181,11 @@ export declare const InstallationsDefinition: {
3966
4181
  defaultPlaytestSubredditId?: string;
3967
4182
  promoStatus?: import("../../../community.js").AppPromoStatus;
3968
4183
  appIconUrl?: string | undefined | undefined;
4184
+ categoriesV2?: {
4185
+ id?: number;
4186
+ name?: string;
4187
+ parentId?: number | undefined | undefined;
4188
+ }[];
3969
4189
  } | undefined;
3970
4190
  }): FullInstallationInfo;
3971
4191
  fromPartial(object: {
@@ -4042,6 +4262,11 @@ export declare const InstallationsDefinition: {
4042
4262
  defaultPlaytestSubredditId?: string;
4043
4263
  promoStatus?: import("../../../community.js").AppPromoStatus;
4044
4264
  appIconUrl?: string | undefined | undefined;
4265
+ categoriesV2?: {
4266
+ id?: number;
4267
+ name?: string;
4268
+ parentId?: number | undefined | undefined;
4269
+ }[];
4045
4270
  } | undefined;
4046
4271
  }): FullInstallationInfo;
4047
4272
  };
@@ -4202,6 +4427,11 @@ export declare const InstallationsDefinition: {
4202
4427
  defaultPlaytestSubredditId?: string;
4203
4428
  promoStatus?: import("../../../community.js").AppPromoStatus;
4204
4429
  appIconUrl?: string | undefined | undefined;
4430
+ categoriesV2?: {
4431
+ id?: number;
4432
+ name?: string;
4433
+ parentId?: number | undefined | undefined;
4434
+ }[];
4205
4435
  } | undefined;
4206
4436
  }): FullInstallationInfo;
4207
4437
  fromPartial(object: {
@@ -4278,6 +4508,11 @@ export declare const InstallationsDefinition: {
4278
4508
  defaultPlaytestSubredditId?: string;
4279
4509
  promoStatus?: import("../../../community.js").AppPromoStatus;
4280
4510
  appIconUrl?: string | undefined | undefined;
4511
+ categoriesV2?: {
4512
+ id?: number;
4513
+ name?: string;
4514
+ parentId?: number | undefined | undefined;
4515
+ }[];
4281
4516
  } | undefined;
4282
4517
  }): FullInstallationInfo;
4283
4518
  };
@@ -6464,6 +6699,11 @@ export declare const DevPortalAppPublishRequestDefinition: {
6464
6699
  defaultPlaytestSubredditId?: string;
6465
6700
  promoStatus?: import("../../../community.js").AppPromoStatus;
6466
6701
  appIconUrl?: string | undefined | undefined;
6702
+ categoriesV2?: {
6703
+ id?: number;
6704
+ name?: string;
6705
+ parentId?: number | undefined | undefined;
6706
+ }[];
6467
6707
  } | undefined;
6468
6708
  reviews?: {
6469
6709
  id?: string;
@@ -6554,6 +6794,11 @@ export declare const DevPortalAppPublishRequestDefinition: {
6554
6794
  defaultPlaytestSubredditId?: string;
6555
6795
  promoStatus?: import("../../../community.js").AppPromoStatus;
6556
6796
  appIconUrl?: string | undefined | undefined;
6797
+ categoriesV2?: {
6798
+ id?: number;
6799
+ name?: string;
6800
+ parentId?: number | undefined | undefined;
6801
+ }[];
6557
6802
  } | undefined;
6558
6803
  reviews?: {
6559
6804
  id?: string;
@@ -6695,6 +6940,11 @@ export declare const DevPortalAppPublishRequestDefinition: {
6695
6940
  defaultPlaytestSubredditId?: string;
6696
6941
  promoStatus?: import("../../../community.js").AppPromoStatus;
6697
6942
  appIconUrl?: string | undefined | undefined;
6943
+ categoriesV2?: {
6944
+ id?: number;
6945
+ name?: string;
6946
+ parentId?: number | undefined | undefined;
6947
+ }[];
6698
6948
  } | undefined;
6699
6949
  reviews?: {
6700
6950
  id?: string;
@@ -6792,6 +7042,11 @@ export declare const DevPortalAppPublishRequestDefinition: {
6792
7042
  defaultPlaytestSubredditId?: string;
6793
7043
  promoStatus?: import("../../../community.js").AppPromoStatus;
6794
7044
  appIconUrl?: string | undefined | undefined;
7045
+ categoriesV2?: {
7046
+ id?: number;
7047
+ name?: string;
7048
+ parentId?: number | undefined | undefined;
7049
+ }[];
6795
7050
  } | undefined;
6796
7051
  reviews?: {
6797
7052
  id?: string;