@devvit/protos 0.10.21-next-2024-05-13-0af9c0369.0 → 0.10.21-next-2024-05-13-376d4e59d.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,8 +7,9 @@
7
7
  import _m0 from 'protobufjs/minimal.js';
8
8
  import { CreateAuditLogEventRequest, CreateAuditLogEventResponse, GetAuditLogEventsByOrganizationNameRequest, GetAuditLogEventsByOrganizationNameResponse, } from './audit.js';
9
9
  import { CreateAccessTokenRequest, CreateAccessTokenResponse, GetAccessTokenByIdRequest, GetAccessTokenByIdResponse, GetAccessTokensByOrganizationNameRequest, GetAccessTokensByOrganizationNameResponse, RevokeAccessTokenByIdRequest, RevokeAccessTokenByIdResponse, } from './auth.js';
10
- import { CreateOrganizationRequest, CreateOrganizationResponse, GetOrganizationByNameRequest, GetOrganizationByNameResponse, GetOrganizationsRequest, GetOrganizationsResponse, } from './organization.js';
10
+ import { CreateOrganizationRequest, CreateOrganizationResponse, GetOrganizationByIdRequest, GetOrganizationByIdResponse, GetOrganizationByNameRequest, GetOrganizationByNameResponse, GetOrganizationsRequest, GetOrganizationsResponse, } from './organization.js';
11
11
  import { CreateSubscriptionRequest, CreateSubscriptionResponse, DeleteSubscriptionRequest, DeleteSubscriptionResponse, GetSubscriptionByIdRequest, GetSubscriptionByIdResponse, GetSubscriptionsByOrganizationNameRequest, GetSubscriptionsByOrganizationNameResponse, UpdateSubscriptionRequest, UpdateSubscriptionResponse, } from './subscription.js';
12
+ import { UIGetOrganizationsRequest, UIGetOrganizationsResponse } from './ui.js';
12
13
  export const AdminServiceName = "devvit.data.api.admin.v1alpha.Admin";
13
14
  export class AdminClientImpl {
14
15
  constructor(rpc, opts) {
@@ -24,10 +25,12 @@ export class AdminClientImpl {
24
25
  this.UpdateSubscription = this.UpdateSubscription.bind(this);
25
26
  this.DeleteSubscription = this.DeleteSubscription.bind(this);
26
27
  this.CreateOrganization = this.CreateOrganization.bind(this);
28
+ this.GetOrganizationById = this.GetOrganizationById.bind(this);
27
29
  this.GetOrganizationByName = this.GetOrganizationByName.bind(this);
28
30
  this.GetOrganizations = this.GetOrganizations.bind(this);
29
31
  this.GetAuditLogEventsByOrganizationName = this.GetAuditLogEventsByOrganizationName.bind(this);
30
32
  this.CreateAuditLogEvent = this.CreateAuditLogEvent.bind(this);
33
+ this.UIGetHydratedOrganizations = this.UIGetHydratedOrganizations.bind(this);
31
34
  }
32
35
  CreateAccessToken(request, metadata) {
33
36
  const data = CreateAccessTokenRequest.encode(request).finish();
@@ -79,6 +82,11 @@ export class AdminClientImpl {
79
82
  const promise = this.rpc.request(this.service, "CreateOrganization", data, metadata);
80
83
  return promise.then((data) => CreateOrganizationResponse.decode(_m0.Reader.create(data)));
81
84
  }
85
+ GetOrganizationById(request, metadata) {
86
+ const data = GetOrganizationByIdRequest.encode(request).finish();
87
+ const promise = this.rpc.request(this.service, "GetOrganizationById", data, metadata);
88
+ return promise.then((data) => GetOrganizationByIdResponse.decode(_m0.Reader.create(data)));
89
+ }
82
90
  GetOrganizationByName(request, metadata) {
83
91
  const data = GetOrganizationByNameRequest.encode(request).finish();
84
92
  const promise = this.rpc.request(this.service, "GetOrganizationByName", data, metadata);
@@ -99,6 +107,11 @@ export class AdminClientImpl {
99
107
  const promise = this.rpc.request(this.service, "CreateAuditLogEvent", data, metadata);
100
108
  return promise.then((data) => CreateAuditLogEventResponse.decode(_m0.Reader.create(data)));
101
109
  }
110
+ UIGetHydratedOrganizations(request, metadata) {
111
+ const data = UIGetOrganizationsRequest.encode(request).finish();
112
+ const promise = this.rpc.request(this.service, "UIGetHydratedOrganizations", data, metadata);
113
+ return promise.then((data) => UIGetOrganizationsResponse.decode(_m0.Reader.create(data)));
114
+ }
102
115
  }
103
116
  export const AdminDefinition = {
104
117
  name: "Admin",
@@ -187,6 +200,14 @@ export const AdminDefinition = {
187
200
  responseStream: false,
188
201
  options: {},
189
202
  },
203
+ getOrganizationById: {
204
+ name: "GetOrganizationById",
205
+ requestType: GetOrganizationByIdRequest,
206
+ requestStream: false,
207
+ responseType: GetOrganizationByIdResponse,
208
+ responseStream: false,
209
+ options: {},
210
+ },
190
211
  getOrganizationByName: {
191
212
  name: "GetOrganizationByName",
192
213
  requestType: GetOrganizationByNameRequest,
@@ -220,5 +241,14 @@ export const AdminDefinition = {
220
241
  responseStream: false,
221
242
  options: {},
222
243
  },
244
+ /** UI Helpers */
245
+ uIGetHydratedOrganizations: {
246
+ name: "UIGetHydratedOrganizations",
247
+ requestType: UIGetOrganizationsRequest,
248
+ requestStream: false,
249
+ responseType: UIGetOrganizationsResponse,
250
+ responseStream: false,
251
+ options: {},
252
+ },
223
253
  },
224
254
  };
@@ -4,140 +4,46 @@
4
4
  * @packageDocumentation
5
5
  */
6
6
  import _m0 from 'protobufjs/minimal.js';
7
- import { Metadata } from "../../../../../../lib/Types.js";
8
- import { FirehoseEvent } from '../../../../options/options.js';
9
- import { SubredditRating } from '../../../../reddit/v2alpha/subredditv2.js';
10
- export interface GetUISubscriptionsByOrganizationNameRequest {
11
- organizationName: string;
7
+ import { AccessToken } from './auth.js';
8
+ import { Organization } from './organization.js';
9
+ import { Subscription } from './subscription.js';
10
+ export interface UIGetOrganizationsRequest {
12
11
  }
13
- export interface GetUISubscriptionsByOrganizationNameResponse {
14
- subscriptions: GetUISubscriptionsByOrganizationNameResponse_Subscription[];
12
+ export interface UIGetOrganizationsResponse {
13
+ organizations: UIGetOrganizationsResponse_HydratedOrganization[];
15
14
  }
16
- export interface GetUISubscriptionsByOrganizationNameResponse_SubredditInfo {
17
- /**
18
- * t5_ subreddit ID
19
- * @example "t5_2qh1o"
20
- */
21
- id: string;
22
- /**
23
- * Subreddit display name - not prefixed with r/
24
- * @example "aww"
25
- */
26
- name: string;
27
- /** Subreddit icon URL */
28
- icon: string;
29
- /** Whether the subreddit is NSFW */
30
- isNsfw: boolean;
15
+ export interface UIGetOrganizationsResponse_HydratedOrganization {
16
+ organization?: Organization | undefined;
17
+ subscriptions: Subscription[];
18
+ acccessTokens: AccessToken[];
31
19
  }
32
- /** Data subscription for UI consumption that includes hydrated subreddit info */
33
- export interface GetUISubscriptionsByOrganizationNameResponse_Subscription {
34
- /** Subscription ID */
35
- id: string;
36
- /** Subscription name */
37
- name: string;
38
- /** Subscription description */
39
- description: string;
40
- /** Firehose events types the subscription is subscribed to */
41
- events: FirehoseEvent[];
42
- /** Subreddits the subscription is subscribed to */
43
- subreddits: GetUISubscriptionsByOrganizationNameResponse_SubredditInfo[];
44
- /** Subreddit ratings the subscription is subscribed to */
45
- subredditRatings: SubredditRating[];
46
- }
47
- export declare const GetUISubscriptionsByOrganizationNameRequest: {
48
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameRequest";
49
- encode(message: GetUISubscriptionsByOrganizationNameRequest, writer?: _m0.Writer): _m0.Writer;
50
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameRequest;
51
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameRequest;
52
- toJSON(message: GetUISubscriptionsByOrganizationNameRequest): unknown;
53
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameRequest>): GetUISubscriptionsByOrganizationNameRequest;
54
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameRequest>): GetUISubscriptionsByOrganizationNameRequest;
55
- };
56
- export declare const GetUISubscriptionsByOrganizationNameResponse: {
57
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameResponse";
58
- encode(message: GetUISubscriptionsByOrganizationNameResponse, writer?: _m0.Writer): _m0.Writer;
59
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameResponse;
60
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameResponse;
61
- toJSON(message: GetUISubscriptionsByOrganizationNameResponse): unknown;
62
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameResponse>): GetUISubscriptionsByOrganizationNameResponse;
63
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameResponse>): GetUISubscriptionsByOrganizationNameResponse;
64
- };
65
- export declare const GetUISubscriptionsByOrganizationNameResponse_SubredditInfo: {
66
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameResponse.SubredditInfo";
67
- encode(message: GetUISubscriptionsByOrganizationNameResponse_SubredditInfo, writer?: _m0.Writer): _m0.Writer;
68
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameResponse_SubredditInfo;
69
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameResponse_SubredditInfo;
70
- toJSON(message: GetUISubscriptionsByOrganizationNameResponse_SubredditInfo): unknown;
71
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameResponse_SubredditInfo>): GetUISubscriptionsByOrganizationNameResponse_SubredditInfo;
72
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameResponse_SubredditInfo>): GetUISubscriptionsByOrganizationNameResponse_SubredditInfo;
20
+ export declare const UIGetOrganizationsRequest: {
21
+ $type: "devvit.data.api.admin.v1alpha.UIGetOrganizationsRequest";
22
+ encode(_: UIGetOrganizationsRequest, writer?: _m0.Writer): _m0.Writer;
23
+ decode(input: _m0.Reader | Uint8Array, length?: number): UIGetOrganizationsRequest;
24
+ fromJSON(_: any): UIGetOrganizationsRequest;
25
+ toJSON(_: UIGetOrganizationsRequest): unknown;
26
+ create(base?: DeepPartial<UIGetOrganizationsRequest>): UIGetOrganizationsRequest;
27
+ fromPartial(_: DeepPartial<UIGetOrganizationsRequest>): UIGetOrganizationsRequest;
73
28
  };
74
- export declare const GetUISubscriptionsByOrganizationNameResponse_Subscription: {
75
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameResponse.Subscription";
76
- encode(message: GetUISubscriptionsByOrganizationNameResponse_Subscription, writer?: _m0.Writer): _m0.Writer;
77
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameResponse_Subscription;
78
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameResponse_Subscription;
79
- toJSON(message: GetUISubscriptionsByOrganizationNameResponse_Subscription): unknown;
80
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameResponse_Subscription>): GetUISubscriptionsByOrganizationNameResponse_Subscription;
81
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameResponse_Subscription>): GetUISubscriptionsByOrganizationNameResponse_Subscription;
29
+ export declare const UIGetOrganizationsResponse: {
30
+ $type: "devvit.data.api.admin.v1alpha.UIGetOrganizationsResponse";
31
+ encode(message: UIGetOrganizationsResponse, writer?: _m0.Writer): _m0.Writer;
32
+ decode(input: _m0.Reader | Uint8Array, length?: number): UIGetOrganizationsResponse;
33
+ fromJSON(object: any): UIGetOrganizationsResponse;
34
+ toJSON(message: UIGetOrganizationsResponse): unknown;
35
+ create(base?: DeepPartial<UIGetOrganizationsResponse>): UIGetOrganizationsResponse;
36
+ fromPartial(object: DeepPartial<UIGetOrganizationsResponse>): UIGetOrganizationsResponse;
82
37
  };
83
- /**
84
- * This service augments the core Admin Service and exists to accomodate the
85
- * more frequently changing UI requirements. Endpoints in this service should
86
- * attempt to return appropriately hydrated items in order to minmize the the
87
- * number of server calls needed to render a view (on initial load, at least)
88
- */
89
- export interface ROAdminUI {
90
- GetSubscriptionsByOrganizationName(request: GetUISubscriptionsByOrganizationNameRequest, metadata?: Metadata): Promise<GetUISubscriptionsByOrganizationNameResponse>;
91
- }
92
- export declare const ROAdminUIServiceName = "devvit.data.api.admin.v1alpha.ROAdminUI";
93
- export declare class ROAdminUIClientImpl implements ROAdminUI {
94
- private readonly rpc;
95
- private readonly service;
96
- constructor(rpc: Rpc, opts?: {
97
- service?: string;
98
- });
99
- GetSubscriptionsByOrganizationName(request: GetUISubscriptionsByOrganizationNameRequest, metadata?: Metadata): Promise<GetUISubscriptionsByOrganizationNameResponse>;
100
- }
101
- /**
102
- * This service augments the core Admin Service and exists to accomodate the
103
- * more frequently changing UI requirements. Endpoints in this service should
104
- * attempt to return appropriately hydrated items in order to minmize the the
105
- * number of server calls needed to render a view (on initial load, at least)
106
- */
107
- export type ROAdminUIDefinition = typeof ROAdminUIDefinition;
108
- export declare const ROAdminUIDefinition: {
109
- readonly name: "ROAdminUI";
110
- readonly fullName: "devvit.data.api.admin.v1alpha.ROAdminUI";
111
- readonly methods: {
112
- readonly getSubscriptionsByOrganizationName: {
113
- readonly name: "GetSubscriptionsByOrganizationName";
114
- readonly requestType: {
115
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameRequest";
116
- encode(message: GetUISubscriptionsByOrganizationNameRequest, writer?: _m0.Writer): _m0.Writer;
117
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameRequest;
118
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameRequest;
119
- toJSON(message: GetUISubscriptionsByOrganizationNameRequest): unknown;
120
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameRequest>): GetUISubscriptionsByOrganizationNameRequest;
121
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameRequest>): GetUISubscriptionsByOrganizationNameRequest;
122
- };
123
- readonly requestStream: false;
124
- readonly responseType: {
125
- $type: "devvit.data.api.admin.v1alpha.GetUISubscriptionsByOrganizationNameResponse";
126
- encode(message: GetUISubscriptionsByOrganizationNameResponse, writer?: _m0.Writer): _m0.Writer;
127
- decode(input: _m0.Reader | Uint8Array, length?: number): GetUISubscriptionsByOrganizationNameResponse;
128
- fromJSON(object: any): GetUISubscriptionsByOrganizationNameResponse;
129
- toJSON(message: GetUISubscriptionsByOrganizationNameResponse): unknown;
130
- create(base?: DeepPartial<GetUISubscriptionsByOrganizationNameResponse>): GetUISubscriptionsByOrganizationNameResponse;
131
- fromPartial(object: DeepPartial<GetUISubscriptionsByOrganizationNameResponse>): GetUISubscriptionsByOrganizationNameResponse;
132
- };
133
- readonly responseStream: false;
134
- readonly options: {};
135
- };
136
- };
38
+ export declare const UIGetOrganizationsResponse_HydratedOrganization: {
39
+ $type: "devvit.data.api.admin.v1alpha.UIGetOrganizationsResponse.HydratedOrganization";
40
+ encode(message: UIGetOrganizationsResponse_HydratedOrganization, writer?: _m0.Writer): _m0.Writer;
41
+ decode(input: _m0.Reader | Uint8Array, length?: number): UIGetOrganizationsResponse_HydratedOrganization;
42
+ fromJSON(object: any): UIGetOrganizationsResponse_HydratedOrganization;
43
+ toJSON(message: UIGetOrganizationsResponse_HydratedOrganization): unknown;
44
+ create(base?: DeepPartial<UIGetOrganizationsResponse_HydratedOrganization>): UIGetOrganizationsResponse_HydratedOrganization;
45
+ fromPartial(object: DeepPartial<UIGetOrganizationsResponse_HydratedOrganization>): UIGetOrganizationsResponse_HydratedOrganization;
137
46
  };
138
- interface Rpc {
139
- request(service: string, method: string, data: Uint8Array, metadata?: Metadata): Promise<Uint8Array>;
140
- }
141
47
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
142
48
  type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
143
49
  [K in keyof T]?: DeepPartial<T[K]>;
@@ -1 +1 @@
1
- {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/devvit/data/api/admin/v1alpha/ui.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/devvit/data/api/admin/v1alpha/ui.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,GAAG,MAAM,uBAAuB,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,MAAM,WAAW,yBAAyB;CACzC;AAED,MAAM,WAAW,0BAA0B;IACzC,aAAa,EAAE,+CAA+C,EAAE,CAAC;CAClE;AAED,MAAM,WAAW,+CAA+C;IAC9D,YAAY,CAAC,EAAE,YAAY,GAAG,SAAS,CAAC;IACxC,aAAa,EAAE,YAAY,EAAE,CAAC;IAC9B,aAAa,EAAE,WAAW,EAAE,CAAC;CAC9B;AAMD,eAAO,MAAM,yBAAyB;;cAG1B,yBAAyB,WAAU,IAAI,MAAM,GAAyB,IAAI,MAAM;kBAI5E,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,yBAAyB;gBAgBtE,GAAG,GAAG,yBAAyB;cAIjC,yBAAyB,GAAG,OAAO;kBAK/B,YAAY,yBAAyB,CAAC,GAAG,yBAAyB;mBAGjE,YAAY,yBAAyB,CAAC,GAAG,yBAAyB;CAIlF,CAAC;AAQF,eAAO,MAAM,0BAA0B;;oBAGrB,0BAA0B,WAAU,IAAI,MAAM,GAAyB,IAAI,MAAM;kBAOnF,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,0BAA0B;qBAuBlE,GAAG,GAAG,0BAA0B;oBAQjC,0BAA0B,GAAG,OAAO;kBAQtC,YAAY,0BAA0B,CAAC,GAAG,0BAA0B;wBAG9D,YAAY,0BAA0B,CAAC,GAAG,0BAA0B;CAMzF,CAAC;AAQF,eAAO,MAAM,+CAA+C;;oBAI/C,+CAA+C,WAChD,IAAI,MAAM,GACjB,IAAI,MAAM;kBAaC,IAAI,MAAM,GAAG,UAAU,WAAW,MAAM,GAAG,+CAA+C;qBAqCvF,GAAG,GAAG,+CAA+C;oBAYtD,+CAA+C,GAAG,OAAO;kBAehE,YAAY,+CAA+C,CAAC,GAClE,+CAA+C;wBAIxC,YAAY,+CAA+C,CAAC,GACnE,+CAA+C;CASnD,CAAC;AAOF,KAAK,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;AAEpF,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,GAAG,CAAC,GACvC,CAAC,SAAS,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,GAAG,UAAU,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GACtE,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,GAChE,CAAC,SAAS,EAAE,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACrD,OAAO,CAAC,CAAC,CAAC,CAAC"}