@accrescent/console-client-sdk-angular 0.6.1 → 0.8.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 (21) hide show
  1. package/LICENSE +201 -0
  2. package/fesm2022/accrescent-console-client-sdk-angular-accrescent-console-v1alpha1.mjs +1880 -0
  3. package/fesm2022/accrescent-console-client-sdk-angular-accrescent-console-v1alpha1.mjs.map +1 -0
  4. package/fesm2022/accrescent-console-client-sdk-angular-buf-validate.mjs +364 -0
  5. package/fesm2022/accrescent-console-client-sdk-angular-buf-validate.mjs.map +1 -0
  6. package/fesm2022/accrescent-console-client-sdk-angular-google-api.mjs +584 -0
  7. package/fesm2022/accrescent-console-client-sdk-angular-google-api.mjs.map +1 -0
  8. package/fesm2022/accrescent-console-client-sdk-angular-google-longrunning.mjs +94 -0
  9. package/fesm2022/accrescent-console-client-sdk-angular-google-longrunning.mjs.map +1 -0
  10. package/fesm2022/accrescent-console-client-sdk-angular-google-rpc.mjs +32 -0
  11. package/fesm2022/accrescent-console-client-sdk-angular-google-rpc.mjs.map +1 -0
  12. package/fesm2022/accrescent-console-client-sdk-angular.mjs +3 -2282
  13. package/fesm2022/accrescent-console-client-sdk-angular.mjs.map +1 -1
  14. package/package.json +27 -10
  15. package/types/accrescent-console-client-sdk-angular-accrescent-console-v1alpha1.d.ts +3021 -0
  16. package/types/accrescent-console-client-sdk-angular-buf-validate.d.ts +4770 -0
  17. package/types/accrescent-console-client-sdk-angular-google-api.d.ts +1489 -0
  18. package/types/accrescent-console-client-sdk-angular-google-longrunning.d.ts +401 -0
  19. package/types/accrescent-console-client-sdk-angular-google-rpc.d.ts +52 -0
  20. package/types/accrescent-console-client-sdk-angular.d.ts +1 -1977
  21. package/README.md +0 -185
@@ -0,0 +1,3021 @@
1
+ import { GenMessage, GenFile, GenService, GenEnum } from '@bufbuild/protobuf/codegenv2';
2
+ import { Message } from '@bufbuild/protobuf';
3
+ import { Timestamp, FieldMask } from '@bufbuild/protobuf/wkt';
4
+ import * as i0 from '@angular/core';
5
+ import { InjectionToken } from '@angular/core';
6
+ import { Observable } from 'rxjs';
7
+ import { Operation } from '@accrescent/console-client-sdk-angular/google/longrunning';
8
+
9
+ /**
10
+ * Describes the file accrescent/console/v1alpha1/app_package.proto.
11
+ */
12
+ declare const file_accrescent_console_v1alpha1_app_package: GenFile;
13
+ /**
14
+ * An app package.
15
+ *
16
+ * @generated from message accrescent.console.v1alpha1.AppPackage
17
+ */
18
+ type AppPackage = Message<"accrescent.console.v1alpha1.AppPackage"> & {
19
+ /**
20
+ * The app package's Android application ID.
21
+ *
22
+ * @generated from field: optional string app_id = 1;
23
+ */
24
+ appId?: string;
25
+ /**
26
+ * The app package's version code.
27
+ *
28
+ * @generated from field: optional uint64 version_code = 2;
29
+ */
30
+ versionCode?: bigint;
31
+ /**
32
+ * The app package's version name.
33
+ *
34
+ * @generated from field: optional string version_name = 3;
35
+ */
36
+ versionName?: string;
37
+ /**
38
+ * The app package's target SDK.
39
+ *
40
+ * @generated from field: optional uint64 target_sdk = 4;
41
+ */
42
+ targetSdk?: bigint;
43
+ };
44
+ /**
45
+ * Describes the message accrescent.console.v1alpha1.AppPackage.
46
+ * Use `create(AppPackageSchema)` to create a new message.
47
+ */
48
+ declare const AppPackageSchema: GenMessage<AppPackage>;
49
+
50
+ /**
51
+ * Describes the file accrescent/console/v1alpha1/app_draft.proto.
52
+ */
53
+ declare const file_accrescent_console_v1alpha1_app_draft: GenFile;
54
+ /**
55
+ * An app draft.
56
+ *
57
+ * @generated from message accrescent.console.v1alpha1.AppDraft
58
+ */
59
+ type AppDraft = Message<"accrescent.console.v1alpha1.AppDraft"> & {
60
+ /**
61
+ * The app draft's unique ID.
62
+ *
63
+ * @generated from field: optional string id = 1;
64
+ */
65
+ id?: string;
66
+ /**
67
+ * The timestamp at which the app draft was created.
68
+ *
69
+ * @generated from field: google.protobuf.Timestamp created_at = 2;
70
+ */
71
+ createdAt?: Timestamp;
72
+ /**
73
+ * The draft's default listing language, if set.
74
+ *
75
+ * @generated from field: optional string default_listing_language = 3;
76
+ */
77
+ defaultListingLanguage?: string;
78
+ /**
79
+ * The draft's associated package information, if available.
80
+ *
81
+ * @generated from field: accrescent.console.v1alpha1.AppPackage app_package = 4;
82
+ */
83
+ appPackage?: AppPackage;
84
+ /**
85
+ * The timestamp at which the app draft has been submitted for review, if
86
+ * applicable.
87
+ *
88
+ * @generated from field: google.protobuf.Timestamp submitted_at = 5;
89
+ */
90
+ submittedAt?: Timestamp;
91
+ /**
92
+ * The timestamp at which the app draft has been published, if applicable.
93
+ *
94
+ * @generated from field: google.protobuf.Timestamp published_at = 6;
95
+ */
96
+ publishedAt?: Timestamp;
97
+ };
98
+ /**
99
+ * Describes the message accrescent.console.v1alpha1.AppDraft.
100
+ * Use `create(AppDraftSchema)` to create a new message.
101
+ */
102
+ declare const AppDraftSchema: GenMessage<AppDraft>;
103
+
104
+ /**
105
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_request.proto.
106
+ */
107
+ declare const file_accrescent_console_v1alpha1_create_app_draft_request: GenFile;
108
+ /**
109
+ * Request defining parameters for creating an app draft.
110
+ *
111
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftRequest
112
+ */
113
+ type CreateAppDraftRequest = Message<"accrescent.console.v1alpha1.CreateAppDraftRequest"> & {
114
+ /**
115
+ * The ID of the organization to create this app draft under.
116
+ *
117
+ * @generated from field: optional string organization_id = 1;
118
+ */
119
+ organizationId?: string;
120
+ };
121
+ /**
122
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftRequest.
123
+ * Use `create(CreateAppDraftRequestSchema)` to create a new message.
124
+ */
125
+ declare const CreateAppDraftRequestSchema: GenMessage<CreateAppDraftRequest>;
126
+
127
+ /**
128
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_response.proto.
129
+ */
130
+ declare const file_accrescent_console_v1alpha1_create_app_draft_response: GenFile;
131
+ /**
132
+ * Response to creating a new app draft.
133
+ *
134
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftResponse
135
+ */
136
+ type CreateAppDraftResponse = Message<"accrescent.console.v1alpha1.CreateAppDraftResponse"> & {
137
+ /**
138
+ * The unique ID of the created app draft.
139
+ *
140
+ * @generated from field: optional string app_draft_id = 1;
141
+ */
142
+ appDraftId?: string;
143
+ };
144
+ /**
145
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftResponse.
146
+ * Use `create(CreateAppDraftResponseSchema)` to create a new message.
147
+ */
148
+ declare const CreateAppDraftResponseSchema: GenMessage<CreateAppDraftResponse>;
149
+
150
+ /**
151
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_request.proto.
152
+ */
153
+ declare const file_accrescent_console_v1alpha1_get_app_draft_request: GenFile;
154
+ /**
155
+ * Request defining parameters for getting an app draft.
156
+ *
157
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftRequest
158
+ */
159
+ type GetAppDraftRequest = Message<"accrescent.console.v1alpha1.GetAppDraftRequest"> & {
160
+ /**
161
+ * The ID of the app draft to retrieve.
162
+ *
163
+ * @generated from field: string app_draft_id = 1;
164
+ */
165
+ appDraftId: string;
166
+ };
167
+ /**
168
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftRequest.
169
+ * Use `create(GetAppDraftRequestSchema)` to create a new message.
170
+ */
171
+ declare const GetAppDraftRequestSchema: GenMessage<GetAppDraftRequest>;
172
+
173
+ /**
174
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_response.proto.
175
+ */
176
+ declare const file_accrescent_console_v1alpha1_get_app_draft_response: GenFile;
177
+ /**
178
+ * Response to getting an app draft.
179
+ *
180
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftResponse
181
+ */
182
+ type GetAppDraftResponse = Message<"accrescent.console.v1alpha1.GetAppDraftResponse"> & {
183
+ /**
184
+ * The requested app draft.
185
+ *
186
+ * @generated from field: accrescent.console.v1alpha1.AppDraft draft = 1;
187
+ */
188
+ draft?: AppDraft;
189
+ };
190
+ /**
191
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftResponse.
192
+ * Use `create(GetAppDraftResponseSchema)` to create a new message.
193
+ */
194
+ declare const GetAppDraftResponseSchema: GenMessage<GetAppDraftResponse>;
195
+
196
+ /**
197
+ * Describes the file accrescent/console/v1alpha1/list_app_drafts_request.proto.
198
+ */
199
+ declare const file_accrescent_console_v1alpha1_list_app_drafts_request: GenFile;
200
+ /**
201
+ * Request defining parameters for listing app drafts.
202
+ *
203
+ * @generated from message accrescent.console.v1alpha1.ListAppDraftsRequest
204
+ */
205
+ type ListAppDraftsRequest = Message<"accrescent.console.v1alpha1.ListAppDraftsRequest"> & {
206
+ /**
207
+ * The organization containing the drafts to list.
208
+ *
209
+ * @generated from field: optional string organization_id = 1;
210
+ */
211
+ organizationId?: string;
212
+ /**
213
+ * The maximum number of app drafts to return in the response. If unspecified,
214
+ * defaults to 50. All requests with a higher page size will be capped to 50.
215
+ *
216
+ * @generated from field: optional uint32 page_size = 2;
217
+ */
218
+ pageSize?: number;
219
+ /**
220
+ * An opaque page continuation token returned in a previous
221
+ * ListAppDraftsResponse. If unspecified, the first page is returned.
222
+ *
223
+ * @generated from field: optional string page_token = 3;
224
+ */
225
+ pageToken?: string;
226
+ };
227
+ /**
228
+ * Describes the message accrescent.console.v1alpha1.ListAppDraftsRequest.
229
+ * Use `create(ListAppDraftsRequestSchema)` to create a new message.
230
+ */
231
+ declare const ListAppDraftsRequestSchema: GenMessage<ListAppDraftsRequest>;
232
+
233
+ /**
234
+ * Describes the file accrescent/console/v1alpha1/list_app_drafts_response.proto.
235
+ */
236
+ declare const file_accrescent_console_v1alpha1_list_app_drafts_response: GenFile;
237
+ /**
238
+ * Response to listing app drafts.
239
+ *
240
+ * @generated from message accrescent.console.v1alpha1.ListAppDraftsResponse
241
+ */
242
+ type ListAppDraftsResponse = Message<"accrescent.console.v1alpha1.ListAppDraftsResponse"> & {
243
+ /**
244
+ * The app drafts matching the request parameters.
245
+ *
246
+ * @generated from field: repeated accrescent.console.v1alpha1.AppDraft app_drafts = 1;
247
+ */
248
+ appDrafts: AppDraft[];
249
+ /**
250
+ * An opaque token which, if passed to another invocation of ListAppDrafts,
251
+ * will return the next page of app drafts.
252
+ *
253
+ * @generated from field: optional string next_page_token = 2;
254
+ */
255
+ nextPageToken?: string;
256
+ };
257
+ /**
258
+ * Describes the message accrescent.console.v1alpha1.ListAppDraftsResponse.
259
+ * Use `create(ListAppDraftsResponseSchema)` to create a new message.
260
+ */
261
+ declare const ListAppDraftsResponseSchema: GenMessage<ListAppDraftsResponse>;
262
+
263
+ /**
264
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_upload_operation_request.proto.
265
+ */
266
+ declare const file_accrescent_console_v1alpha1_create_app_draft_upload_operation_request: GenFile;
267
+ /**
268
+ * Request defining parameters for creating an app draft upload operation.
269
+ *
270
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftUploadOperationRequest
271
+ */
272
+ type CreateAppDraftUploadOperationRequest = Message<"accrescent.console.v1alpha1.CreateAppDraftUploadOperationRequest"> & {
273
+ /**
274
+ * The ID of the app draft to create an upload operation for.
275
+ *
276
+ * @generated from field: string app_draft_id = 1;
277
+ */
278
+ appDraftId: string;
279
+ };
280
+ /**
281
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftUploadOperationRequest.
282
+ * Use `create(CreateAppDraftUploadOperationRequestSchema)` to create a new message.
283
+ */
284
+ declare const CreateAppDraftUploadOperationRequestSchema: GenMessage<CreateAppDraftUploadOperationRequest>;
285
+
286
+ /**
287
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_upload_operation_response.proto.
288
+ */
289
+ declare const file_accrescent_console_v1alpha1_create_app_draft_upload_operation_response: GenFile;
290
+ /**
291
+ * Response to creating an app draft upload operation.
292
+ *
293
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftUploadOperationResponse
294
+ */
295
+ type CreateAppDraftUploadOperationResponse = Message<"accrescent.console.v1alpha1.CreateAppDraftUploadOperationResponse"> & {
296
+ /**
297
+ * An HTTP or HTTPS URL at which an APK set can be submitted with an HTTP PUT
298
+ * request.
299
+ *
300
+ * @generated from field: optional string apk_set_upload_url = 1;
301
+ */
302
+ apkSetUploadUrl?: string;
303
+ /**
304
+ * The upload processing operation.
305
+ *
306
+ * The response type of this operation is UploadAppDraftResult.
307
+ *
308
+ * @generated from field: google.longrunning.Operation processing_operation = 2;
309
+ */
310
+ processingOperation?: Operation;
311
+ };
312
+ /**
313
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftUploadOperationResponse.
314
+ * Use `create(CreateAppDraftUploadOperationResponseSchema)` to create a new message.
315
+ */
316
+ declare const CreateAppDraftUploadOperationResponseSchema: GenMessage<CreateAppDraftUploadOperationResponse>;
317
+
318
+ /**
319
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_download_info_request.proto.
320
+ */
321
+ declare const file_accrescent_console_v1alpha1_get_app_draft_download_info_request: GenFile;
322
+ /**
323
+ * Request defining parameters for getting an app draft's download info.
324
+ *
325
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftDownloadInfoRequest
326
+ */
327
+ type GetAppDraftDownloadInfoRequest = Message<"accrescent.console.v1alpha1.GetAppDraftDownloadInfoRequest"> & {
328
+ /**
329
+ * The ID of the app draft to get download info for.
330
+ *
331
+ * @generated from field: string app_draft_id = 1;
332
+ */
333
+ appDraftId: string;
334
+ };
335
+ /**
336
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftDownloadInfoRequest.
337
+ * Use `create(GetAppDraftDownloadInfoRequestSchema)` to create a new message.
338
+ */
339
+ declare const GetAppDraftDownloadInfoRequestSchema: GenMessage<GetAppDraftDownloadInfoRequest>;
340
+
341
+ /**
342
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_download_info_response.proto.
343
+ */
344
+ declare const file_accrescent_console_v1alpha1_get_app_draft_download_info_response: GenFile;
345
+ /**
346
+ * Response to getting an app draft's download info.
347
+ *
348
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftDownloadInfoResponse
349
+ */
350
+ type GetAppDraftDownloadInfoResponse = Message<"accrescent.console.v1alpha1.GetAppDraftDownloadInfoResponse"> & {
351
+ /**
352
+ * The URL of the APK set which can be retrieved with a simple HTTP GET.
353
+ *
354
+ * @generated from field: optional string apk_set_url = 1;
355
+ */
356
+ apkSetUrl?: string;
357
+ };
358
+ /**
359
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftDownloadInfoResponse.
360
+ * Use `create(GetAppDraftDownloadInfoResponseSchema)` to create a new message.
361
+ */
362
+ declare const GetAppDraftDownloadInfoResponseSchema: GenMessage<GetAppDraftDownloadInfoResponse>;
363
+
364
+ /**
365
+ * Describes the file accrescent/console/v1alpha1/update_app_draft_request.proto.
366
+ */
367
+ declare const file_accrescent_console_v1alpha1_update_app_draft_request: GenFile;
368
+ /**
369
+ * Request defining parameters for updating an app draft.
370
+ *
371
+ * @generated from message accrescent.console.v1alpha1.UpdateAppDraftRequest
372
+ */
373
+ type UpdateAppDraftRequest = Message<"accrescent.console.v1alpha1.UpdateAppDraftRequest"> & {
374
+ /**
375
+ * The ID of the app draft to update.
376
+ *
377
+ * @generated from field: string app_draft_id = 1;
378
+ */
379
+ appDraftId: string;
380
+ /**
381
+ * The draft's default listing language.
382
+ *
383
+ * Required because no other fields are supported for update yet.
384
+ *
385
+ * @generated from field: optional string default_listing_language = 2;
386
+ */
387
+ defaultListingLanguage?: string;
388
+ /**
389
+ * The list of fields to update.
390
+ *
391
+ * Required to enforce forward-compatible use by clients.
392
+ *
393
+ * @generated from field: google.protobuf.FieldMask update_mask = 3;
394
+ */
395
+ updateMask?: FieldMask;
396
+ };
397
+ /**
398
+ * Describes the message accrescent.console.v1alpha1.UpdateAppDraftRequest.
399
+ * Use `create(UpdateAppDraftRequestSchema)` to create a new message.
400
+ */
401
+ declare const UpdateAppDraftRequestSchema: GenMessage<UpdateAppDraftRequest>;
402
+
403
+ /**
404
+ * Describes the file accrescent/console/v1alpha1/update_app_draft_response.proto.
405
+ */
406
+ declare const file_accrescent_console_v1alpha1_update_app_draft_response: GenFile;
407
+ /**
408
+ * Response to updating an app draft.
409
+ *
410
+ * @generated from message accrescent.console.v1alpha1.UpdateAppDraftResponse
411
+ */
412
+ type UpdateAppDraftResponse = Message<"accrescent.console.v1alpha1.UpdateAppDraftResponse"> & {};
413
+ /**
414
+ * Describes the message accrescent.console.v1alpha1.UpdateAppDraftResponse.
415
+ * Use `create(UpdateAppDraftResponseSchema)` to create a new message.
416
+ */
417
+ declare const UpdateAppDraftResponseSchema: GenMessage<UpdateAppDraftResponse>;
418
+
419
+ /**
420
+ * Describes the file accrescent/console/v1alpha1/submit_app_draft_request.proto.
421
+ */
422
+ declare const file_accrescent_console_v1alpha1_submit_app_draft_request: GenFile;
423
+ /**
424
+ * Request defining parameters for submitting an app draft.
425
+ *
426
+ * @generated from message accrescent.console.v1alpha1.SubmitAppDraftRequest
427
+ */
428
+ type SubmitAppDraftRequest = Message<"accrescent.console.v1alpha1.SubmitAppDraftRequest"> & {
429
+ /**
430
+ * The ID of the app draft to submit.
431
+ *
432
+ * @generated from field: string app_draft_id = 1;
433
+ */
434
+ appDraftId: string;
435
+ };
436
+ /**
437
+ * Describes the message accrescent.console.v1alpha1.SubmitAppDraftRequest.
438
+ * Use `create(SubmitAppDraftRequestSchema)` to create a new message.
439
+ */
440
+ declare const SubmitAppDraftRequestSchema: GenMessage<SubmitAppDraftRequest>;
441
+
442
+ /**
443
+ * Describes the file accrescent/console/v1alpha1/submit_app_draft_response.proto.
444
+ */
445
+ declare const file_accrescent_console_v1alpha1_submit_app_draft_response: GenFile;
446
+ /**
447
+ * Response to submitting an app draft.
448
+ *
449
+ * @generated from message accrescent.console.v1alpha1.SubmitAppDraftResponse
450
+ */
451
+ type SubmitAppDraftResponse = Message<"accrescent.console.v1alpha1.SubmitAppDraftResponse"> & {};
452
+ /**
453
+ * Describes the message accrescent.console.v1alpha1.SubmitAppDraftResponse.
454
+ * Use `create(SubmitAppDraftResponseSchema)` to create a new message.
455
+ */
456
+ declare const SubmitAppDraftResponseSchema: GenMessage<SubmitAppDraftResponse>;
457
+
458
+ /**
459
+ * Describes the file accrescent/console/v1alpha1/delete_app_draft_request.proto.
460
+ */
461
+ declare const file_accrescent_console_v1alpha1_delete_app_draft_request: GenFile;
462
+ /**
463
+ * Request defining parameters for deleting an app draft.
464
+ *
465
+ * @generated from message accrescent.console.v1alpha1.DeleteAppDraftRequest
466
+ */
467
+ type DeleteAppDraftRequest = Message<"accrescent.console.v1alpha1.DeleteAppDraftRequest"> & {
468
+ /**
469
+ * The ID of the app draft to delete.
470
+ *
471
+ * @generated from field: string app_draft_id = 1;
472
+ */
473
+ appDraftId: string;
474
+ };
475
+ /**
476
+ * Describes the message accrescent.console.v1alpha1.DeleteAppDraftRequest.
477
+ * Use `create(DeleteAppDraftRequestSchema)` to create a new message.
478
+ */
479
+ declare const DeleteAppDraftRequestSchema: GenMessage<DeleteAppDraftRequest>;
480
+
481
+ /**
482
+ * Describes the file accrescent/console/v1alpha1/delete_app_draft_response.proto.
483
+ */
484
+ declare const file_accrescent_console_v1alpha1_delete_app_draft_response: GenFile;
485
+ /**
486
+ * Response to deleting an app draft.
487
+ *
488
+ * @generated from message accrescent.console.v1alpha1.DeleteAppDraftResponse
489
+ */
490
+ type DeleteAppDraftResponse = Message<"accrescent.console.v1alpha1.DeleteAppDraftResponse"> & {};
491
+ /**
492
+ * Describes the message accrescent.console.v1alpha1.DeleteAppDraftResponse.
493
+ * Use `create(DeleteAppDraftResponseSchema)` to create a new message.
494
+ */
495
+ declare const DeleteAppDraftResponseSchema: GenMessage<DeleteAppDraftResponse>;
496
+
497
+ /**
498
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_listing_request.proto.
499
+ */
500
+ declare const file_accrescent_console_v1alpha1_create_app_draft_listing_request: GenFile;
501
+ /**
502
+ * Request defining parameters for creating an app listing for an app draft.
503
+ *
504
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftListingRequest
505
+ */
506
+ type CreateAppDraftListingRequest = Message<"accrescent.console.v1alpha1.CreateAppDraftListingRequest"> & {
507
+ /**
508
+ * The app draft to create the app listing for.
509
+ *
510
+ * @generated from field: string app_draft_id = 1;
511
+ */
512
+ appDraftId: string;
513
+ /**
514
+ * The language of this listing's fields as a BCP-47 tag.
515
+ *
516
+ * @generated from field: string language = 2;
517
+ */
518
+ language: string;
519
+ /**
520
+ * The proper name of the app, possibly including very short descriptive text
521
+ * (e.g. "SecureChat - Secure Texting").
522
+ *
523
+ * @generated from field: optional string name = 3;
524
+ */
525
+ name?: string;
526
+ /**
527
+ * A short description of the app to be shown in headers and small screen
528
+ * spaces.
529
+ *
530
+ * @generated from field: optional string short_description = 4;
531
+ */
532
+ shortDescription?: string;
533
+ };
534
+ /**
535
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftListingRequest.
536
+ * Use `create(CreateAppDraftListingRequestSchema)` to create a new message.
537
+ */
538
+ declare const CreateAppDraftListingRequestSchema: GenMessage<CreateAppDraftListingRequest>;
539
+
540
+ /**
541
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_listing_response.proto.
542
+ */
543
+ declare const file_accrescent_console_v1alpha1_create_app_draft_listing_response: GenFile;
544
+ /**
545
+ * Response to creating a new app listing for an app draft.
546
+ *
547
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftListingResponse
548
+ */
549
+ type CreateAppDraftListingResponse = Message<"accrescent.console.v1alpha1.CreateAppDraftListingResponse"> & {};
550
+ /**
551
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftListingResponse.
552
+ * Use `create(CreateAppDraftListingResponseSchema)` to create a new message.
553
+ */
554
+ declare const CreateAppDraftListingResponseSchema: GenMessage<CreateAppDraftListingResponse>;
555
+
556
+ /**
557
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_listing_icon_upload_operation_request.proto.
558
+ */
559
+ declare const file_accrescent_console_v1alpha1_create_app_draft_listing_icon_upload_operation_request: GenFile;
560
+ /**
561
+ * Request defining parameters for creating an app draft listing icon upload
562
+ * operation.
563
+ *
564
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationRequest
565
+ */
566
+ type CreateAppDraftListingIconUploadOperationRequest = Message<"accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationRequest"> & {
567
+ /**
568
+ * The ID of the app draft to create an icon upload operation for.
569
+ *
570
+ * @generated from field: string app_draft_id = 1;
571
+ */
572
+ appDraftId: string;
573
+ /**
574
+ * The language of the app listing to create an icon upload operation for.
575
+ *
576
+ * @generated from field: string language = 2;
577
+ */
578
+ language: string;
579
+ };
580
+ /**
581
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationRequest.
582
+ * Use `create(CreateAppDraftListingIconUploadOperationRequestSchema)` to create a new message.
583
+ */
584
+ declare const CreateAppDraftListingIconUploadOperationRequestSchema: GenMessage<CreateAppDraftListingIconUploadOperationRequest>;
585
+
586
+ /**
587
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_listing_icon_upload_operation_response.proto.
588
+ */
589
+ declare const file_accrescent_console_v1alpha1_create_app_draft_listing_icon_upload_operation_response: GenFile;
590
+ /**
591
+ * Response to creating an app draft listing icon upload operation.
592
+ *
593
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationResponse
594
+ */
595
+ type CreateAppDraftListingIconUploadOperationResponse = Message<"accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationResponse"> & {
596
+ /**
597
+ * An HTTP or HTTPS URL at which the icon can be submitted with an HTTP PUT
598
+ * request.
599
+ *
600
+ * @generated from field: optional string upload_url = 1;
601
+ */
602
+ uploadUrl?: string;
603
+ /**
604
+ * The upload processing operation.
605
+ *
606
+ * The response type of this operation is UploadAppDraftListingIconResult.
607
+ *
608
+ * @generated from field: google.longrunning.Operation processing_operation = 2;
609
+ */
610
+ processingOperation?: Operation;
611
+ };
612
+ /**
613
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftListingIconUploadOperationResponse.
614
+ * Use `create(CreateAppDraftListingIconUploadOperationResponseSchema)` to create a new message.
615
+ */
616
+ declare const CreateAppDraftListingIconUploadOperationResponseSchema: GenMessage<CreateAppDraftListingIconUploadOperationResponse>;
617
+
618
+ /**
619
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_listing_icon_download_info_request.proto.
620
+ */
621
+ declare const file_accrescent_console_v1alpha1_get_app_draft_listing_icon_download_info_request: GenFile;
622
+ /**
623
+ * Request defining parameters for getting an app draft listing icon's download
624
+ * info.
625
+ *
626
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoRequest
627
+ */
628
+ type GetAppDraftListingIconDownloadInfoRequest = Message<"accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoRequest"> & {
629
+ /**
630
+ * The ID of the app draft of the listing to get icon download info for.
631
+ *
632
+ * @generated from field: string app_draft_id = 1;
633
+ */
634
+ appDraftId: string;
635
+ /**
636
+ * The language of the listing to get icon download info for.
637
+ *
638
+ * @generated from field: string language = 2;
639
+ */
640
+ language: string;
641
+ };
642
+ /**
643
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoRequest.
644
+ * Use `create(GetAppDraftListingIconDownloadInfoRequestSchema)` to create a new message.
645
+ */
646
+ declare const GetAppDraftListingIconDownloadInfoRequestSchema: GenMessage<GetAppDraftListingIconDownloadInfoRequest>;
647
+
648
+ /**
649
+ * Describes the file accrescent/console/v1alpha1/get_app_draft_listing_icon_download_info_response.proto.
650
+ */
651
+ declare const file_accrescent_console_v1alpha1_get_app_draft_listing_icon_download_info_response: GenFile;
652
+ /**
653
+ * Response to getting an app draft listing icon's download info.
654
+ *
655
+ * @generated from message accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoResponse
656
+ */
657
+ type GetAppDraftListingIconDownloadInfoResponse = Message<"accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoResponse"> & {
658
+ /**
659
+ * The URL of the icon which can be retrieved with a simple HTTP GET.
660
+ *
661
+ * @generated from field: optional string icon_url = 1;
662
+ */
663
+ iconUrl?: string;
664
+ };
665
+ /**
666
+ * Describes the message accrescent.console.v1alpha1.GetAppDraftListingIconDownloadInfoResponse.
667
+ * Use `create(GetAppDraftListingIconDownloadInfoResponseSchema)` to create a new message.
668
+ */
669
+ declare const GetAppDraftListingIconDownloadInfoResponseSchema: GenMessage<GetAppDraftListingIconDownloadInfoResponse>;
670
+
671
+ /**
672
+ * Describes the file accrescent/console/v1alpha1/delete_app_draft_listing_request.proto.
673
+ */
674
+ declare const file_accrescent_console_v1alpha1_delete_app_draft_listing_request: GenFile;
675
+ /**
676
+ * Request defining parameters for deleting an app draft listing.
677
+ *
678
+ * @generated from message accrescent.console.v1alpha1.DeleteAppDraftListingRequest
679
+ */
680
+ type DeleteAppDraftListingRequest = Message<"accrescent.console.v1alpha1.DeleteAppDraftListingRequest"> & {
681
+ /**
682
+ * The ID of the app draft the listing is associated with.
683
+ *
684
+ * @generated from field: string app_draft_id = 1;
685
+ */
686
+ appDraftId: string;
687
+ /**
688
+ * The BCP-47 language tag of the listing to delete.
689
+ *
690
+ * @generated from field: string language = 2;
691
+ */
692
+ language: string;
693
+ };
694
+ /**
695
+ * Describes the message accrescent.console.v1alpha1.DeleteAppDraftListingRequest.
696
+ * Use `create(DeleteAppDraftListingRequestSchema)` to create a new message.
697
+ */
698
+ declare const DeleteAppDraftListingRequestSchema: GenMessage<DeleteAppDraftListingRequest>;
699
+
700
+ /**
701
+ * Describes the file accrescent/console/v1alpha1/delete_app_draft_listing_response.proto.
702
+ */
703
+ declare const file_accrescent_console_v1alpha1_delete_app_draft_listing_response: GenFile;
704
+ /**
705
+ * Response to deleting an app draft listing.
706
+ *
707
+ * @generated from message accrescent.console.v1alpha1.DeleteAppDraftListingResponse
708
+ */
709
+ type DeleteAppDraftListingResponse = Message<"accrescent.console.v1alpha1.DeleteAppDraftListingResponse"> & {};
710
+ /**
711
+ * Describes the message accrescent.console.v1alpha1.DeleteAppDraftListingResponse.
712
+ * Use `create(DeleteAppDraftListingResponseSchema)` to create a new message.
713
+ */
714
+ declare const DeleteAppDraftListingResponseSchema: GenMessage<DeleteAppDraftListingResponse>;
715
+
716
+ /**
717
+ * Describes the file accrescent/console/v1alpha1/publish_app_draft_request.proto.
718
+ */
719
+ declare const file_accrescent_console_v1alpha1_publish_app_draft_request: GenFile;
720
+ /**
721
+ * Request defining parameters for publishing an app draft.
722
+ *
723
+ * @generated from message accrescent.console.v1alpha1.PublishAppDraftRequest
724
+ */
725
+ type PublishAppDraftRequest = Message<"accrescent.console.v1alpha1.PublishAppDraftRequest"> & {
726
+ /**
727
+ * The ID of the app draft to publish.
728
+ *
729
+ * @generated from field: string app_draft_id = 1;
730
+ */
731
+ appDraftId: string;
732
+ };
733
+ /**
734
+ * Describes the message accrescent.console.v1alpha1.PublishAppDraftRequest.
735
+ * Use `create(PublishAppDraftRequestSchema)` to create a new message.
736
+ */
737
+ declare const PublishAppDraftRequestSchema: GenMessage<PublishAppDraftRequest>;
738
+
739
+ /**
740
+ * Describes the file accrescent/console/v1alpha1/publish_app_draft_response.proto.
741
+ */
742
+ declare const file_accrescent_console_v1alpha1_publish_app_draft_response: GenFile;
743
+ /**
744
+ * Response to publishing an app draft.
745
+ *
746
+ * @generated from message accrescent.console.v1alpha1.PublishAppDraftResponse
747
+ */
748
+ type PublishAppDraftResponse = Message<"accrescent.console.v1alpha1.PublishAppDraftResponse"> & {
749
+ /**
750
+ * The publishing operation.
751
+ *
752
+ * The response type of this operation is PublishAppDraftResult.
753
+ *
754
+ * @generated from field: google.longrunning.Operation operation = 1;
755
+ */
756
+ operation?: Operation;
757
+ };
758
+ /**
759
+ * Describes the message accrescent.console.v1alpha1.PublishAppDraftResponse.
760
+ * Use `create(PublishAppDraftResponseSchema)` to create a new message.
761
+ */
762
+ declare const PublishAppDraftResponseSchema: GenMessage<PublishAppDraftResponse>;
763
+
764
+ declare const NG_APP_DRAFT_SERVICE_BASE_URL: InjectionToken<string>;
765
+ /**
766
+ * Service providing RPCs for managing app drafts.
767
+ *
768
+ * @generated from service accrescent.console.v1alpha1.AppDraftService
769
+ */
770
+ declare class NgAppDraftService {
771
+ private readonly httpClient;
772
+ private readonly baseUrl;
773
+ /**
774
+ * Creates a new app draft.
775
+ *
776
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraft
777
+ */
778
+ createAppDraft(request: CreateAppDraftRequest): Observable<CreateAppDraftResponse>;
779
+ /**
780
+ * Gets an app draft.
781
+ *
782
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraft
783
+ */
784
+ getAppDraft(request: GetAppDraftRequest): Observable<GetAppDraftResponse>;
785
+ /**
786
+ * Lists app drafts.
787
+ *
788
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.ListAppDrafts
789
+ */
790
+ listAppDrafts(request: ListAppDraftsRequest): Observable<ListAppDraftsResponse>;
791
+ /**
792
+ * Creates an app draft upload operation.
793
+ *
794
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftUploadOperation
795
+ */
796
+ createAppDraftUploadOperation(request: CreateAppDraftUploadOperationRequest): Observable<CreateAppDraftUploadOperationResponse>;
797
+ /**
798
+ * Gets an app draft's download info.
799
+ *
800
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraftDownloadInfo
801
+ */
802
+ getAppDraftDownloadInfo(request: GetAppDraftDownloadInfoRequest): Observable<GetAppDraftDownloadInfoResponse>;
803
+ /**
804
+ * Updates an app draft.
805
+ *
806
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.UpdateAppDraft
807
+ */
808
+ updateAppDraft(request: UpdateAppDraftRequest): Observable<UpdateAppDraftResponse>;
809
+ /**
810
+ * Submits an app draft for review.
811
+ *
812
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.SubmitAppDraft
813
+ */
814
+ submitAppDraft(request: SubmitAppDraftRequest): Observable<SubmitAppDraftResponse>;
815
+ /**
816
+ * Deletes an existing app draft.
817
+ *
818
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.DeleteAppDraft
819
+ */
820
+ deleteAppDraft(request: DeleteAppDraftRequest): Observable<DeleteAppDraftResponse>;
821
+ /**
822
+ * Creates a new app listing for an app draft.
823
+ *
824
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftListing
825
+ */
826
+ createAppDraftListing(request: CreateAppDraftListingRequest): Observable<CreateAppDraftListingResponse>;
827
+ /**
828
+ * Creates an app draft listing icon upload operation.
829
+ *
830
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftListingIconUploadOperation
831
+ */
832
+ createAppDraftListingIconUploadOperation(request: CreateAppDraftListingIconUploadOperationRequest): Observable<CreateAppDraftListingIconUploadOperationResponse>;
833
+ /**
834
+ * Gets an app draft listing icon's download info.
835
+ *
836
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraftListingIconDownloadInfo
837
+ */
838
+ getAppDraftListingIconDownloadInfo(request: GetAppDraftListingIconDownloadInfoRequest): Observable<GetAppDraftListingIconDownloadInfoResponse>;
839
+ /**
840
+ * Deletes an existing app draft listing.
841
+ *
842
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.DeleteAppDraftListing
843
+ */
844
+ deleteAppDraftListing(request: DeleteAppDraftListingRequest): Observable<DeleteAppDraftListingResponse>;
845
+ /**
846
+ * Publishes an app draft to the app store.
847
+ *
848
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.PublishAppDraft
849
+ */
850
+ publishAppDraft(request: PublishAppDraftRequest): Observable<PublishAppDraftResponse>;
851
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgAppDraftService, never>;
852
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgAppDraftService>;
853
+ }
854
+
855
+ /**
856
+ * Describes the file accrescent/console/v1alpha1/app_draft_service.proto.
857
+ */
858
+ declare const file_accrescent_console_v1alpha1_app_draft_service: GenFile;
859
+ /**
860
+ * Service providing RPCs for managing app drafts.
861
+ *
862
+ * @generated from service accrescent.console.v1alpha1.AppDraftService
863
+ */
864
+ declare const AppDraftService: GenService<{
865
+ /**
866
+ * Creates a new app draft.
867
+ *
868
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraft
869
+ */
870
+ createAppDraft: {
871
+ methodKind: "unary";
872
+ input: typeof CreateAppDraftRequestSchema;
873
+ output: typeof CreateAppDraftResponseSchema;
874
+ };
875
+ /**
876
+ * Gets an app draft.
877
+ *
878
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraft
879
+ */
880
+ getAppDraft: {
881
+ methodKind: "unary";
882
+ input: typeof GetAppDraftRequestSchema;
883
+ output: typeof GetAppDraftResponseSchema;
884
+ };
885
+ /**
886
+ * Lists app drafts.
887
+ *
888
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.ListAppDrafts
889
+ */
890
+ listAppDrafts: {
891
+ methodKind: "unary";
892
+ input: typeof ListAppDraftsRequestSchema;
893
+ output: typeof ListAppDraftsResponseSchema;
894
+ };
895
+ /**
896
+ * Creates an app draft upload operation.
897
+ *
898
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftUploadOperation
899
+ */
900
+ createAppDraftUploadOperation: {
901
+ methodKind: "unary";
902
+ input: typeof CreateAppDraftUploadOperationRequestSchema;
903
+ output: typeof CreateAppDraftUploadOperationResponseSchema;
904
+ };
905
+ /**
906
+ * Gets an app draft's download info.
907
+ *
908
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraftDownloadInfo
909
+ */
910
+ getAppDraftDownloadInfo: {
911
+ methodKind: "unary";
912
+ input: typeof GetAppDraftDownloadInfoRequestSchema;
913
+ output: typeof GetAppDraftDownloadInfoResponseSchema;
914
+ };
915
+ /**
916
+ * Updates an app draft.
917
+ *
918
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.UpdateAppDraft
919
+ */
920
+ updateAppDraft: {
921
+ methodKind: "unary";
922
+ input: typeof UpdateAppDraftRequestSchema;
923
+ output: typeof UpdateAppDraftResponseSchema;
924
+ };
925
+ /**
926
+ * Submits an app draft for review.
927
+ *
928
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.SubmitAppDraft
929
+ */
930
+ submitAppDraft: {
931
+ methodKind: "unary";
932
+ input: typeof SubmitAppDraftRequestSchema;
933
+ output: typeof SubmitAppDraftResponseSchema;
934
+ };
935
+ /**
936
+ * Deletes an existing app draft.
937
+ *
938
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.DeleteAppDraft
939
+ */
940
+ deleteAppDraft: {
941
+ methodKind: "unary";
942
+ input: typeof DeleteAppDraftRequestSchema;
943
+ output: typeof DeleteAppDraftResponseSchema;
944
+ };
945
+ /**
946
+ * Creates a new app listing for an app draft.
947
+ *
948
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftListing
949
+ */
950
+ createAppDraftListing: {
951
+ methodKind: "unary";
952
+ input: typeof CreateAppDraftListingRequestSchema;
953
+ output: typeof CreateAppDraftListingResponseSchema;
954
+ };
955
+ /**
956
+ * Creates an app draft listing icon upload operation.
957
+ *
958
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.CreateAppDraftListingIconUploadOperation
959
+ */
960
+ createAppDraftListingIconUploadOperation: {
961
+ methodKind: "unary";
962
+ input: typeof CreateAppDraftListingIconUploadOperationRequestSchema;
963
+ output: typeof CreateAppDraftListingIconUploadOperationResponseSchema;
964
+ };
965
+ /**
966
+ * Gets an app draft listing icon's download info.
967
+ *
968
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.GetAppDraftListingIconDownloadInfo
969
+ */
970
+ getAppDraftListingIconDownloadInfo: {
971
+ methodKind: "unary";
972
+ input: typeof GetAppDraftListingIconDownloadInfoRequestSchema;
973
+ output: typeof GetAppDraftListingIconDownloadInfoResponseSchema;
974
+ };
975
+ /**
976
+ * Deletes an existing app draft listing.
977
+ *
978
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.DeleteAppDraftListing
979
+ */
980
+ deleteAppDraftListing: {
981
+ methodKind: "unary";
982
+ input: typeof DeleteAppDraftListingRequestSchema;
983
+ output: typeof DeleteAppDraftListingResponseSchema;
984
+ };
985
+ /**
986
+ * Publishes an app draft to the app store.
987
+ *
988
+ * @generated from rpc accrescent.console.v1alpha1.AppDraftService.PublishAppDraft
989
+ */
990
+ publishAppDraft: {
991
+ methodKind: "unary";
992
+ input: typeof PublishAppDraftRequestSchema;
993
+ output: typeof PublishAppDraftResponseSchema;
994
+ };
995
+ }>;
996
+
997
+ /**
998
+ * Describes the file accrescent/console/v1alpha1/app_edit.proto.
999
+ */
1000
+ declare const file_accrescent_console_v1alpha1_app_edit: GenFile;
1001
+ /**
1002
+ * An app edit.
1003
+ *
1004
+ * @generated from message accrescent.console.v1alpha1.AppEdit
1005
+ */
1006
+ type AppEdit = Message<"accrescent.console.v1alpha1.AppEdit"> & {
1007
+ /**
1008
+ * The app edit's unique ID.
1009
+ *
1010
+ * @generated from field: optional string id = 1;
1011
+ */
1012
+ id?: string;
1013
+ /**
1014
+ * The timestamp at which the app edit was created.
1015
+ *
1016
+ * @generated from field: google.protobuf.Timestamp created_at = 2;
1017
+ */
1018
+ createdAt?: Timestamp;
1019
+ /**
1020
+ * The app edit's default listing language.
1021
+ *
1022
+ * @generated from field: optional string default_listing_language = 3;
1023
+ */
1024
+ defaultListingLanguage?: string;
1025
+ /**
1026
+ * The edit's associated package information.
1027
+ *
1028
+ * @generated from field: accrescent.console.v1alpha1.AppPackage app_package = 4;
1029
+ */
1030
+ appPackage?: AppPackage;
1031
+ /**
1032
+ * The timestamp at which the app edit has been submitted, if applicable.
1033
+ *
1034
+ * @generated from field: google.protobuf.Timestamp submitted_at = 5;
1035
+ */
1036
+ submittedAt?: Timestamp;
1037
+ /**
1038
+ * The timestamp at which the app edit has been published, if applicable.
1039
+ *
1040
+ * @generated from field: google.protobuf.Timestamp published_at = 6;
1041
+ */
1042
+ publishedAt?: Timestamp;
1043
+ };
1044
+ /**
1045
+ * Describes the message accrescent.console.v1alpha1.AppEdit.
1046
+ * Use `create(AppEditSchema)` to create a new message.
1047
+ */
1048
+ declare const AppEditSchema: GenMessage<AppEdit>;
1049
+
1050
+ /**
1051
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_request.proto.
1052
+ */
1053
+ declare const file_accrescent_console_v1alpha1_create_app_edit_request: GenFile;
1054
+ /**
1055
+ * Request defining parameters for creating an app edit.
1056
+ *
1057
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditRequest
1058
+ */
1059
+ type CreateAppEditRequest = Message<"accrescent.console.v1alpha1.CreateAppEditRequest"> & {
1060
+ /**
1061
+ * The ID of the app to create an edit for.
1062
+ *
1063
+ * @generated from field: string app_id = 1;
1064
+ */
1065
+ appId: string;
1066
+ };
1067
+ /**
1068
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditRequest.
1069
+ * Use `create(CreateAppEditRequestSchema)` to create a new message.
1070
+ */
1071
+ declare const CreateAppEditRequestSchema: GenMessage<CreateAppEditRequest>;
1072
+
1073
+ /**
1074
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_response.proto.
1075
+ */
1076
+ declare const file_accrescent_console_v1alpha1_create_app_edit_response: GenFile;
1077
+ /**
1078
+ * Response to creating a new app edit.
1079
+ *
1080
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditResponse
1081
+ */
1082
+ type CreateAppEditResponse = Message<"accrescent.console.v1alpha1.CreateAppEditResponse"> & {
1083
+ /**
1084
+ * The unique ID of the created app edit.
1085
+ *
1086
+ * @generated from field: optional string app_edit_id = 1;
1087
+ */
1088
+ appEditId?: string;
1089
+ };
1090
+ /**
1091
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditResponse.
1092
+ * Use `create(CreateAppEditResponseSchema)` to create a new message.
1093
+ */
1094
+ declare const CreateAppEditResponseSchema: GenMessage<CreateAppEditResponse>;
1095
+
1096
+ /**
1097
+ * Describes the file accrescent/console/v1alpha1/get_app_edit_request.proto.
1098
+ */
1099
+ declare const file_accrescent_console_v1alpha1_get_app_edit_request: GenFile;
1100
+ /**
1101
+ * Request defining parameters for getting an app edit.
1102
+ *
1103
+ * @generated from message accrescent.console.v1alpha1.GetAppEditRequest
1104
+ */
1105
+ type GetAppEditRequest = Message<"accrescent.console.v1alpha1.GetAppEditRequest"> & {
1106
+ /**
1107
+ * The ID of the app edit to retrieve.
1108
+ *
1109
+ * @generated from field: string app_edit_id = 1;
1110
+ */
1111
+ appEditId: string;
1112
+ };
1113
+ /**
1114
+ * Describes the message accrescent.console.v1alpha1.GetAppEditRequest.
1115
+ * Use `create(GetAppEditRequestSchema)` to create a new message.
1116
+ */
1117
+ declare const GetAppEditRequestSchema: GenMessage<GetAppEditRequest>;
1118
+
1119
+ /**
1120
+ * Describes the file accrescent/console/v1alpha1/get_app_edit_response.proto.
1121
+ */
1122
+ declare const file_accrescent_console_v1alpha1_get_app_edit_response: GenFile;
1123
+ /**
1124
+ * Response to getting an app edit.
1125
+ *
1126
+ * @generated from message accrescent.console.v1alpha1.GetAppEditResponse
1127
+ */
1128
+ type GetAppEditResponse = Message<"accrescent.console.v1alpha1.GetAppEditResponse"> & {
1129
+ /**
1130
+ * The requested app edit.
1131
+ *
1132
+ * @generated from field: accrescent.console.v1alpha1.AppEdit app_edit = 1;
1133
+ */
1134
+ appEdit?: AppEdit;
1135
+ };
1136
+ /**
1137
+ * Describes the message accrescent.console.v1alpha1.GetAppEditResponse.
1138
+ * Use `create(GetAppEditResponseSchema)` to create a new message.
1139
+ */
1140
+ declare const GetAppEditResponseSchema: GenMessage<GetAppEditResponse>;
1141
+
1142
+ /**
1143
+ * Describes the file accrescent/console/v1alpha1/list_app_edits_request.proto.
1144
+ */
1145
+ declare const file_accrescent_console_v1alpha1_list_app_edits_request: GenFile;
1146
+ /**
1147
+ * Request defining parameters for listing app edits.
1148
+ *
1149
+ * @generated from message accrescent.console.v1alpha1.ListAppEditsRequest
1150
+ */
1151
+ type ListAppEditsRequest = Message<"accrescent.console.v1alpha1.ListAppEditsRequest"> & {
1152
+ /**
1153
+ * The app containing the edits to list.
1154
+ *
1155
+ * @generated from field: optional string app_id = 1;
1156
+ */
1157
+ appId?: string;
1158
+ /**
1159
+ * The maximum number of app edits to return in the response. If unspecified,
1160
+ * defaults to 50. All requests with a higher page size will be capped to 50.
1161
+ *
1162
+ * @generated from field: optional uint32 page_size = 2;
1163
+ */
1164
+ pageSize?: number;
1165
+ /**
1166
+ * An opaque page continuation token returned in a previous
1167
+ * ListAppEditsResponse. If unspecified, the first page is returned.
1168
+ *
1169
+ * @generated from field: optional string page_token = 3;
1170
+ */
1171
+ pageToken?: string;
1172
+ };
1173
+ /**
1174
+ * Describes the message accrescent.console.v1alpha1.ListAppEditsRequest.
1175
+ * Use `create(ListAppEditsRequestSchema)` to create a new message.
1176
+ */
1177
+ declare const ListAppEditsRequestSchema: GenMessage<ListAppEditsRequest>;
1178
+
1179
+ /**
1180
+ * Describes the file accrescent/console/v1alpha1/list_app_edits_response.proto.
1181
+ */
1182
+ declare const file_accrescent_console_v1alpha1_list_app_edits_response: GenFile;
1183
+ /**
1184
+ * Response to listing app edits.
1185
+ *
1186
+ * @generated from message accrescent.console.v1alpha1.ListAppEditsResponse
1187
+ */
1188
+ type ListAppEditsResponse = Message<"accrescent.console.v1alpha1.ListAppEditsResponse"> & {
1189
+ /**
1190
+ * The app drafts matching the request parameters.
1191
+ *
1192
+ * @generated from field: repeated accrescent.console.v1alpha1.AppEdit app_edits = 1;
1193
+ */
1194
+ appEdits: AppEdit[];
1195
+ /**
1196
+ * An opaque token which, if passed to another invocation of ListAppEdits,
1197
+ * will return the next page of app edits.
1198
+ *
1199
+ * @generated from field: optional string next_page_token = 2;
1200
+ */
1201
+ nextPageToken?: string;
1202
+ };
1203
+ /**
1204
+ * Describes the message accrescent.console.v1alpha1.ListAppEditsResponse.
1205
+ * Use `create(ListAppEditsResponseSchema)` to create a new message.
1206
+ */
1207
+ declare const ListAppEditsResponseSchema: GenMessage<ListAppEditsResponse>;
1208
+
1209
+ /**
1210
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_upload_operation_request.proto.
1211
+ */
1212
+ declare const file_accrescent_console_v1alpha1_create_app_edit_upload_operation_request: GenFile;
1213
+ /**
1214
+ * Request defining parameters for creating an app edit upload operation.
1215
+ *
1216
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditUploadOperationRequest
1217
+ */
1218
+ type CreateAppEditUploadOperationRequest = Message<"accrescent.console.v1alpha1.CreateAppEditUploadOperationRequest"> & {
1219
+ /**
1220
+ * The ID of the app edit to create an upload operation for.
1221
+ *
1222
+ * @generated from field: string app_edit_id = 1;
1223
+ */
1224
+ appEditId: string;
1225
+ };
1226
+ /**
1227
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditUploadOperationRequest.
1228
+ * Use `create(CreateAppEditUploadOperationRequestSchema)` to create a new message.
1229
+ */
1230
+ declare const CreateAppEditUploadOperationRequestSchema: GenMessage<CreateAppEditUploadOperationRequest>;
1231
+
1232
+ /**
1233
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_upload_operation_response.proto.
1234
+ */
1235
+ declare const file_accrescent_console_v1alpha1_create_app_edit_upload_operation_response: GenFile;
1236
+ /**
1237
+ * Response to creating an app edit upload operation.
1238
+ *
1239
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditUploadOperationResponse
1240
+ */
1241
+ type CreateAppEditUploadOperationResponse = Message<"accrescent.console.v1alpha1.CreateAppEditUploadOperationResponse"> & {
1242
+ /**
1243
+ * An HTTP or HTTPS URL at which an APK set can be submitted with an HTTP PUT
1244
+ * request.
1245
+ *
1246
+ * @generated from field: optional string apk_set_upload_url = 1;
1247
+ */
1248
+ apkSetUploadUrl?: string;
1249
+ /**
1250
+ * The upload processing operation.
1251
+ *
1252
+ * The response type of this operation is UploadAppEditResult.
1253
+ *
1254
+ * @generated from field: google.longrunning.Operation processing_operation = 2;
1255
+ */
1256
+ processingOperation?: Operation;
1257
+ };
1258
+ /**
1259
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditUploadOperationResponse.
1260
+ * Use `create(CreateAppEditUploadOperationResponseSchema)` to create a new message.
1261
+ */
1262
+ declare const CreateAppEditUploadOperationResponseSchema: GenMessage<CreateAppEditUploadOperationResponse>;
1263
+
1264
+ /**
1265
+ * Describes the file accrescent/console/v1alpha1/get_app_edit_download_info_request.proto.
1266
+ */
1267
+ declare const file_accrescent_console_v1alpha1_get_app_edit_download_info_request: GenFile;
1268
+ /**
1269
+ * Request defining parameters for getting an app edit's download info.
1270
+ *
1271
+ * @generated from message accrescent.console.v1alpha1.GetAppEditDownloadInfoRequest
1272
+ */
1273
+ type GetAppEditDownloadInfoRequest = Message<"accrescent.console.v1alpha1.GetAppEditDownloadInfoRequest"> & {
1274
+ /**
1275
+ * The ID of the app edit to get download info for.
1276
+ *
1277
+ * @generated from field: string app_edit_id = 1;
1278
+ */
1279
+ appEditId: string;
1280
+ };
1281
+ /**
1282
+ * Describes the message accrescent.console.v1alpha1.GetAppEditDownloadInfoRequest.
1283
+ * Use `create(GetAppEditDownloadInfoRequestSchema)` to create a new message.
1284
+ */
1285
+ declare const GetAppEditDownloadInfoRequestSchema: GenMessage<GetAppEditDownloadInfoRequest>;
1286
+
1287
+ /**
1288
+ * Describes the file accrescent/console/v1alpha1/get_app_edit_download_info_response.proto.
1289
+ */
1290
+ declare const file_accrescent_console_v1alpha1_get_app_edit_download_info_response: GenFile;
1291
+ /**
1292
+ * Response to getting an app edit's download info.
1293
+ *
1294
+ * @generated from message accrescent.console.v1alpha1.GetAppEditDownloadInfoResponse
1295
+ */
1296
+ type GetAppEditDownloadInfoResponse = Message<"accrescent.console.v1alpha1.GetAppEditDownloadInfoResponse"> & {
1297
+ /**
1298
+ * The URL of the APK set which can be retrieved with a simple HTTP GET.
1299
+ *
1300
+ * @generated from field: optional string apk_set_url = 1;
1301
+ */
1302
+ apkSetUrl?: string;
1303
+ };
1304
+ /**
1305
+ * Describes the message accrescent.console.v1alpha1.GetAppEditDownloadInfoResponse.
1306
+ * Use `create(GetAppEditDownloadInfoResponseSchema)` to create a new message.
1307
+ */
1308
+ declare const GetAppEditDownloadInfoResponseSchema: GenMessage<GetAppEditDownloadInfoResponse>;
1309
+
1310
+ /**
1311
+ * Describes the file accrescent/console/v1alpha1/update_app_edit_request.proto.
1312
+ */
1313
+ declare const file_accrescent_console_v1alpha1_update_app_edit_request: GenFile;
1314
+ /**
1315
+ * Request defining parameters for updating an app edit.
1316
+ *
1317
+ * @generated from message accrescent.console.v1alpha1.UpdateAppEditRequest
1318
+ */
1319
+ type UpdateAppEditRequest = Message<"accrescent.console.v1alpha1.UpdateAppEditRequest"> & {
1320
+ /**
1321
+ * The ID of the app draft to update.
1322
+ *
1323
+ * @generated from field: string app_edit_id = 1;
1324
+ */
1325
+ appEditId: string;
1326
+ /**
1327
+ * The edit's default listing language.
1328
+ *
1329
+ * Required because no other fields are supported for update yet.
1330
+ *
1331
+ * @generated from field: optional string default_listing_language = 2;
1332
+ */
1333
+ defaultListingLanguage?: string;
1334
+ /**
1335
+ * The list of fields to update.
1336
+ *
1337
+ * Required to enforce forward-compatible use by clients.
1338
+ *
1339
+ * @generated from field: google.protobuf.FieldMask update_mask = 3;
1340
+ */
1341
+ updateMask?: FieldMask;
1342
+ };
1343
+ /**
1344
+ * Describes the message accrescent.console.v1alpha1.UpdateAppEditRequest.
1345
+ * Use `create(UpdateAppEditRequestSchema)` to create a new message.
1346
+ */
1347
+ declare const UpdateAppEditRequestSchema: GenMessage<UpdateAppEditRequest>;
1348
+
1349
+ /**
1350
+ * Describes the file accrescent/console/v1alpha1/update_app_edit_response.proto.
1351
+ */
1352
+ declare const file_accrescent_console_v1alpha1_update_app_edit_response: GenFile;
1353
+ /**
1354
+ * Response to updating an app edit.
1355
+ *
1356
+ * @generated from message accrescent.console.v1alpha1.UpdateAppEditResponse
1357
+ */
1358
+ type UpdateAppEditResponse = Message<"accrescent.console.v1alpha1.UpdateAppEditResponse"> & {};
1359
+ /**
1360
+ * Describes the message accrescent.console.v1alpha1.UpdateAppEditResponse.
1361
+ * Use `create(UpdateAppEditResponseSchema)` to create a new message.
1362
+ */
1363
+ declare const UpdateAppEditResponseSchema: GenMessage<UpdateAppEditResponse>;
1364
+
1365
+ /**
1366
+ * Describes the file accrescent/console/v1alpha1/submit_app_edit_request.proto.
1367
+ */
1368
+ declare const file_accrescent_console_v1alpha1_submit_app_edit_request: GenFile;
1369
+ /**
1370
+ * Request defining parameters for submitting an app edit.
1371
+ *
1372
+ * @generated from message accrescent.console.v1alpha1.SubmitAppEditRequest
1373
+ */
1374
+ type SubmitAppEditRequest = Message<"accrescent.console.v1alpha1.SubmitAppEditRequest"> & {
1375
+ /**
1376
+ * The ID of the app edit to submit.
1377
+ *
1378
+ * @generated from field: string app_edit_id = 1;
1379
+ */
1380
+ appEditId: string;
1381
+ };
1382
+ /**
1383
+ * Describes the message accrescent.console.v1alpha1.SubmitAppEditRequest.
1384
+ * Use `create(SubmitAppEditRequestSchema)` to create a new message.
1385
+ */
1386
+ declare const SubmitAppEditRequestSchema: GenMessage<SubmitAppEditRequest>;
1387
+
1388
+ /**
1389
+ * Describes the file accrescent/console/v1alpha1/submit_app_edit_response.proto.
1390
+ */
1391
+ declare const file_accrescent_console_v1alpha1_submit_app_edit_response: GenFile;
1392
+ /**
1393
+ * Response to submitting an app edit.
1394
+ *
1395
+ * @generated from message accrescent.console.v1alpha1.SubmitAppEditResponse
1396
+ */
1397
+ type SubmitAppEditResponse = Message<"accrescent.console.v1alpha1.SubmitAppEditResponse"> & {
1398
+ /**
1399
+ * The publishing operation. Present if and only if the edit doesn't require
1400
+ * review.
1401
+ *
1402
+ * The response type of this operation is PublishAppEditResult.
1403
+ *
1404
+ * @generated from field: google.longrunning.Operation operation = 1;
1405
+ */
1406
+ operation?: Operation;
1407
+ };
1408
+ /**
1409
+ * Describes the message accrescent.console.v1alpha1.SubmitAppEditResponse.
1410
+ * Use `create(SubmitAppEditResponseSchema)` to create a new message.
1411
+ */
1412
+ declare const SubmitAppEditResponseSchema: GenMessage<SubmitAppEditResponse>;
1413
+
1414
+ /**
1415
+ * Describes the file accrescent/console/v1alpha1/delete_app_edit_request.proto.
1416
+ */
1417
+ declare const file_accrescent_console_v1alpha1_delete_app_edit_request: GenFile;
1418
+ /**
1419
+ * Request defining parameters for deleting an app edit.
1420
+ *
1421
+ * @generated from message accrescent.console.v1alpha1.DeleteAppEditRequest
1422
+ */
1423
+ type DeleteAppEditRequest = Message<"accrescent.console.v1alpha1.DeleteAppEditRequest"> & {
1424
+ /**
1425
+ * The ID of the app edit to delete.
1426
+ *
1427
+ * @generated from field: string app_edit_id = 1;
1428
+ */
1429
+ appEditId: string;
1430
+ };
1431
+ /**
1432
+ * Describes the message accrescent.console.v1alpha1.DeleteAppEditRequest.
1433
+ * Use `create(DeleteAppEditRequestSchema)` to create a new message.
1434
+ */
1435
+ declare const DeleteAppEditRequestSchema: GenMessage<DeleteAppEditRequest>;
1436
+
1437
+ /**
1438
+ * Describes the file accrescent/console/v1alpha1/delete_app_edit_response.proto.
1439
+ */
1440
+ declare const file_accrescent_console_v1alpha1_delete_app_edit_response: GenFile;
1441
+ /**
1442
+ * Response to deleting an app edit.
1443
+ *
1444
+ * @generated from message accrescent.console.v1alpha1.DeleteAppEditResponse
1445
+ */
1446
+ type DeleteAppEditResponse = Message<"accrescent.console.v1alpha1.DeleteAppEditResponse"> & {};
1447
+ /**
1448
+ * Describes the message accrescent.console.v1alpha1.DeleteAppEditResponse.
1449
+ * Use `create(DeleteAppEditResponseSchema)` to create a new message.
1450
+ */
1451
+ declare const DeleteAppEditResponseSchema: GenMessage<DeleteAppEditResponse>;
1452
+
1453
+ /**
1454
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_listing_request.proto.
1455
+ */
1456
+ declare const file_accrescent_console_v1alpha1_create_app_edit_listing_request: GenFile;
1457
+ /**
1458
+ * Request defining parameters for creating an app listing for an app edit.
1459
+ *
1460
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditListingRequest
1461
+ */
1462
+ type CreateAppEditListingRequest = Message<"accrescent.console.v1alpha1.CreateAppEditListingRequest"> & {
1463
+ /**
1464
+ * The app edit to create the app listing for.
1465
+ *
1466
+ * @generated from field: string app_edit_id = 1;
1467
+ */
1468
+ appEditId: string;
1469
+ /**
1470
+ * The language of this listing's fields as a BCP-47 tag.
1471
+ *
1472
+ * @generated from field: string language = 2;
1473
+ */
1474
+ language: string;
1475
+ /**
1476
+ * The proper name of the app, possibly including very short descriptive text
1477
+ * (e.g. "SecureChat - Secure Texting").
1478
+ *
1479
+ * @generated from field: optional string name = 3;
1480
+ */
1481
+ name?: string;
1482
+ /**
1483
+ * A short description of the app to be shown in headers and small screen
1484
+ * spaces.
1485
+ *
1486
+ * @generated from field: optional string short_description = 4;
1487
+ */
1488
+ shortDescription?: string;
1489
+ };
1490
+ /**
1491
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditListingRequest.
1492
+ * Use `create(CreateAppEditListingRequestSchema)` to create a new message.
1493
+ */
1494
+ declare const CreateAppEditListingRequestSchema: GenMessage<CreateAppEditListingRequest>;
1495
+
1496
+ /**
1497
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_listing_response.proto.
1498
+ */
1499
+ declare const file_accrescent_console_v1alpha1_create_app_edit_listing_response: GenFile;
1500
+ /**
1501
+ * Response to creating a new app listing for an app edit.
1502
+ *
1503
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditListingResponse
1504
+ */
1505
+ type CreateAppEditListingResponse = Message<"accrescent.console.v1alpha1.CreateAppEditListingResponse"> & {};
1506
+ /**
1507
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditListingResponse.
1508
+ * Use `create(CreateAppEditListingResponseSchema)` to create a new message.
1509
+ */
1510
+ declare const CreateAppEditListingResponseSchema: GenMessage<CreateAppEditListingResponse>;
1511
+
1512
+ /**
1513
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_listing_icon_upload_operation_request.proto.
1514
+ */
1515
+ declare const file_accrescent_console_v1alpha1_create_app_edit_listing_icon_upload_operation_request: GenFile;
1516
+ /**
1517
+ * Request defining parameters for creating an app edit listing icon upload
1518
+ * operation.
1519
+ *
1520
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationRequest
1521
+ */
1522
+ type CreateAppEditListingIconUploadOperationRequest = Message<"accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationRequest"> & {
1523
+ /**
1524
+ * The ID of the app edit to create an icon upload operation for.
1525
+ *
1526
+ * @generated from field: string app_edit_id = 1;
1527
+ */
1528
+ appEditId: string;
1529
+ /**
1530
+ * The language of the app listing to create an icon upload operation for.
1531
+ *
1532
+ * @generated from field: string language = 2;
1533
+ */
1534
+ language: string;
1535
+ };
1536
+ /**
1537
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationRequest.
1538
+ * Use `create(CreateAppEditListingIconUploadOperationRequestSchema)` to create a new message.
1539
+ */
1540
+ declare const CreateAppEditListingIconUploadOperationRequestSchema: GenMessage<CreateAppEditListingIconUploadOperationRequest>;
1541
+
1542
+ /**
1543
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_listing_icon_upload_operation_response.proto.
1544
+ */
1545
+ declare const file_accrescent_console_v1alpha1_create_app_edit_listing_icon_upload_operation_response: GenFile;
1546
+ /**
1547
+ * Response to creating an app edit listing icon upload operation.
1548
+ *
1549
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationResponse
1550
+ */
1551
+ type CreateAppEditListingIconUploadOperationResponse = Message<"accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationResponse"> & {
1552
+ /**
1553
+ * An HTTP or HTTPS URL at which the icon can be submitted with an HTTP PUT
1554
+ * request.
1555
+ *
1556
+ * @generated from field: optional string upload_url = 1;
1557
+ */
1558
+ uploadUrl?: string;
1559
+ /**
1560
+ * The upload processing operation.
1561
+ *
1562
+ * The response type of this operation is UploadAppEditListingIconResult.
1563
+ *
1564
+ * @generated from field: google.longrunning.Operation processing_operation = 2;
1565
+ */
1566
+ processingOperation?: Operation;
1567
+ };
1568
+ /**
1569
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditListingIconUploadOperationResponse.
1570
+ * Use `create(CreateAppEditListingIconUploadOperationResponseSchema)` to create a new message.
1571
+ */
1572
+ declare const CreateAppEditListingIconUploadOperationResponseSchema: GenMessage<CreateAppEditListingIconUploadOperationResponse>;
1573
+
1574
+ /**
1575
+ * Describes the file accrescent/console/v1alpha1/delete_app_edit_listing_request.proto.
1576
+ */
1577
+ declare const file_accrescent_console_v1alpha1_delete_app_edit_listing_request: GenFile;
1578
+ /**
1579
+ * Request defining parameters for deleting an app edit listing.
1580
+ *
1581
+ * @generated from message accrescent.console.v1alpha1.DeleteAppEditListingRequest
1582
+ */
1583
+ type DeleteAppEditListingRequest = Message<"accrescent.console.v1alpha1.DeleteAppEditListingRequest"> & {
1584
+ /**
1585
+ * The ID of the app edit the listing is associated with.
1586
+ *
1587
+ * @generated from field: string app_edit_id = 1;
1588
+ */
1589
+ appEditId: string;
1590
+ /**
1591
+ * The BCP-47 language tag of the listing to delete.
1592
+ *
1593
+ * @generated from field: string language = 2;
1594
+ */
1595
+ language: string;
1596
+ };
1597
+ /**
1598
+ * Describes the message accrescent.console.v1alpha1.DeleteAppEditListingRequest.
1599
+ * Use `create(DeleteAppEditListingRequestSchema)` to create a new message.
1600
+ */
1601
+ declare const DeleteAppEditListingRequestSchema: GenMessage<DeleteAppEditListingRequest>;
1602
+
1603
+ /**
1604
+ * Describes the file accrescent/console/v1alpha1/delete_app_edit_listing_response.proto.
1605
+ */
1606
+ declare const file_accrescent_console_v1alpha1_delete_app_edit_listing_response: GenFile;
1607
+ /**
1608
+ * Response to deleting an app edit listing.
1609
+ *
1610
+ * @generated from message accrescent.console.v1alpha1.DeleteAppEditListingResponse
1611
+ */
1612
+ type DeleteAppEditListingResponse = Message<"accrescent.console.v1alpha1.DeleteAppEditListingResponse"> & {};
1613
+ /**
1614
+ * Describes the message accrescent.console.v1alpha1.DeleteAppEditListingResponse.
1615
+ * Use `create(DeleteAppEditListingResponseSchema)` to create a new message.
1616
+ */
1617
+ declare const DeleteAppEditListingResponseSchema: GenMessage<DeleteAppEditListingResponse>;
1618
+
1619
+ declare const NG_APP_EDIT_SERVICE_BASE_URL: InjectionToken<string>;
1620
+ /**
1621
+ * Service providing RPCs for managing app edits.
1622
+ *
1623
+ * @generated from service accrescent.console.v1alpha1.AppEditService
1624
+ */
1625
+ declare class NgAppEditService {
1626
+ private readonly httpClient;
1627
+ private readonly baseUrl;
1628
+ /**
1629
+ * Creates a new app edit.
1630
+ *
1631
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEdit
1632
+ */
1633
+ createAppEdit(request: CreateAppEditRequest): Observable<CreateAppEditResponse>;
1634
+ /**
1635
+ * Gets an app edit.
1636
+ *
1637
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.GetAppEdit
1638
+ */
1639
+ getAppEdit(request: GetAppEditRequest): Observable<GetAppEditResponse>;
1640
+ /**
1641
+ * Lists app edits.
1642
+ *
1643
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.ListAppEdits
1644
+ */
1645
+ listAppEdits(request: ListAppEditsRequest): Observable<ListAppEditsResponse>;
1646
+ /**
1647
+ * Creates an app edit upload operation.
1648
+ *
1649
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditUploadOperation
1650
+ */
1651
+ createAppEditUploadOperation(request: CreateAppEditUploadOperationRequest): Observable<CreateAppEditUploadOperationResponse>;
1652
+ /**
1653
+ * Gets an app edit's download info.
1654
+ *
1655
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.GetAppEditDownloadInfo
1656
+ */
1657
+ getAppEditDownloadInfo(request: GetAppEditDownloadInfoRequest): Observable<GetAppEditDownloadInfoResponse>;
1658
+ /**
1659
+ * Updates an app edit.
1660
+ *
1661
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.UpdateAppEdit
1662
+ */
1663
+ updateAppEdit(request: UpdateAppEditRequest): Observable<UpdateAppEditResponse>;
1664
+ /**
1665
+ * Submits an app edit.
1666
+ *
1667
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.SubmitAppEdit
1668
+ */
1669
+ submitAppEdit(request: SubmitAppEditRequest): Observable<SubmitAppEditResponse>;
1670
+ /**
1671
+ * Deletes an app edit.
1672
+ *
1673
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.DeleteAppEdit
1674
+ */
1675
+ deleteAppEdit(request: DeleteAppEditRequest): Observable<DeleteAppEditResponse>;
1676
+ /**
1677
+ * Creates a new app listing for an app edit.
1678
+ *
1679
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditListing
1680
+ */
1681
+ createAppEditListing(request: CreateAppEditListingRequest): Observable<CreateAppEditListingResponse>;
1682
+ /**
1683
+ * Creates an app edit listing icon upload operation.
1684
+ *
1685
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditListingIconUploadOperation
1686
+ */
1687
+ createAppEditListingIconUploadOperation(request: CreateAppEditListingIconUploadOperationRequest): Observable<CreateAppEditListingIconUploadOperationResponse>;
1688
+ /**
1689
+ * Deletes an existing app edit listing.
1690
+ *
1691
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.DeleteAppEditListing
1692
+ */
1693
+ deleteAppEditListing(request: DeleteAppEditListingRequest): Observable<DeleteAppEditListingResponse>;
1694
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgAppEditService, never>;
1695
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgAppEditService>;
1696
+ }
1697
+
1698
+ /**
1699
+ * Describes the file accrescent/console/v1alpha1/app_edit_service.proto.
1700
+ */
1701
+ declare const file_accrescent_console_v1alpha1_app_edit_service: GenFile;
1702
+ /**
1703
+ * Service providing RPCs for managing app edits.
1704
+ *
1705
+ * @generated from service accrescent.console.v1alpha1.AppEditService
1706
+ */
1707
+ declare const AppEditService: GenService<{
1708
+ /**
1709
+ * Creates a new app edit.
1710
+ *
1711
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEdit
1712
+ */
1713
+ createAppEdit: {
1714
+ methodKind: "unary";
1715
+ input: typeof CreateAppEditRequestSchema;
1716
+ output: typeof CreateAppEditResponseSchema;
1717
+ };
1718
+ /**
1719
+ * Gets an app edit.
1720
+ *
1721
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.GetAppEdit
1722
+ */
1723
+ getAppEdit: {
1724
+ methodKind: "unary";
1725
+ input: typeof GetAppEditRequestSchema;
1726
+ output: typeof GetAppEditResponseSchema;
1727
+ };
1728
+ /**
1729
+ * Lists app edits.
1730
+ *
1731
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.ListAppEdits
1732
+ */
1733
+ listAppEdits: {
1734
+ methodKind: "unary";
1735
+ input: typeof ListAppEditsRequestSchema;
1736
+ output: typeof ListAppEditsResponseSchema;
1737
+ };
1738
+ /**
1739
+ * Creates an app edit upload operation.
1740
+ *
1741
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditUploadOperation
1742
+ */
1743
+ createAppEditUploadOperation: {
1744
+ methodKind: "unary";
1745
+ input: typeof CreateAppEditUploadOperationRequestSchema;
1746
+ output: typeof CreateAppEditUploadOperationResponseSchema;
1747
+ };
1748
+ /**
1749
+ * Gets an app edit's download info.
1750
+ *
1751
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.GetAppEditDownloadInfo
1752
+ */
1753
+ getAppEditDownloadInfo: {
1754
+ methodKind: "unary";
1755
+ input: typeof GetAppEditDownloadInfoRequestSchema;
1756
+ output: typeof GetAppEditDownloadInfoResponseSchema;
1757
+ };
1758
+ /**
1759
+ * Updates an app edit.
1760
+ *
1761
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.UpdateAppEdit
1762
+ */
1763
+ updateAppEdit: {
1764
+ methodKind: "unary";
1765
+ input: typeof UpdateAppEditRequestSchema;
1766
+ output: typeof UpdateAppEditResponseSchema;
1767
+ };
1768
+ /**
1769
+ * Submits an app edit.
1770
+ *
1771
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.SubmitAppEdit
1772
+ */
1773
+ submitAppEdit: {
1774
+ methodKind: "unary";
1775
+ input: typeof SubmitAppEditRequestSchema;
1776
+ output: typeof SubmitAppEditResponseSchema;
1777
+ };
1778
+ /**
1779
+ * Deletes an app edit.
1780
+ *
1781
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.DeleteAppEdit
1782
+ */
1783
+ deleteAppEdit: {
1784
+ methodKind: "unary";
1785
+ input: typeof DeleteAppEditRequestSchema;
1786
+ output: typeof DeleteAppEditResponseSchema;
1787
+ };
1788
+ /**
1789
+ * Creates a new app listing for an app edit.
1790
+ *
1791
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditListing
1792
+ */
1793
+ createAppEditListing: {
1794
+ methodKind: "unary";
1795
+ input: typeof CreateAppEditListingRequestSchema;
1796
+ output: typeof CreateAppEditListingResponseSchema;
1797
+ };
1798
+ /**
1799
+ * Creates an app edit listing icon upload operation.
1800
+ *
1801
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.CreateAppEditListingIconUploadOperation
1802
+ */
1803
+ createAppEditListingIconUploadOperation: {
1804
+ methodKind: "unary";
1805
+ input: typeof CreateAppEditListingIconUploadOperationRequestSchema;
1806
+ output: typeof CreateAppEditListingIconUploadOperationResponseSchema;
1807
+ };
1808
+ /**
1809
+ * Deletes an existing app edit listing.
1810
+ *
1811
+ * @generated from rpc accrescent.console.v1alpha1.AppEditService.DeleteAppEditListing
1812
+ */
1813
+ deleteAppEditListing: {
1814
+ methodKind: "unary";
1815
+ input: typeof DeleteAppEditListingRequestSchema;
1816
+ output: typeof DeleteAppEditListingResponseSchema;
1817
+ };
1818
+ }>;
1819
+
1820
+ /**
1821
+ * Describes the file accrescent/console/v1alpha1/app.proto.
1822
+ */
1823
+ declare const file_accrescent_console_v1alpha1_app: GenFile;
1824
+ /**
1825
+ * A published app.
1826
+ *
1827
+ * @generated from message accrescent.console.v1alpha1.App
1828
+ */
1829
+ type App = Message<"accrescent.console.v1alpha1.App"> & {
1830
+ /**
1831
+ * The app's unique ID.
1832
+ *
1833
+ * @generated from field: optional string id = 1;
1834
+ */
1835
+ id?: string;
1836
+ /**
1837
+ * The app's default listing language.
1838
+ *
1839
+ * @generated from field: optional string default_listing_language = 2;
1840
+ */
1841
+ defaultListingLanguage?: string;
1842
+ /**
1843
+ * Whether the app is publicly listed on the store.
1844
+ *
1845
+ * @generated from field: optional bool publicly_listed = 3;
1846
+ */
1847
+ publiclyListed?: boolean;
1848
+ };
1849
+ /**
1850
+ * Describes the message accrescent.console.v1alpha1.App.
1851
+ * Use `create(AppSchema)` to create a new message.
1852
+ */
1853
+ declare const AppSchema: GenMessage<App>;
1854
+
1855
+ /**
1856
+ * Describes the file accrescent/console/v1alpha1/get_app_request.proto.
1857
+ */
1858
+ declare const file_accrescent_console_v1alpha1_get_app_request: GenFile;
1859
+ /**
1860
+ * Request defining parameters for getting a published app.
1861
+ *
1862
+ * @generated from message accrescent.console.v1alpha1.GetAppRequest
1863
+ */
1864
+ type GetAppRequest = Message<"accrescent.console.v1alpha1.GetAppRequest"> & {
1865
+ /**
1866
+ * The ID of the app to retrieve.
1867
+ *
1868
+ * @generated from field: string app_id = 1;
1869
+ */
1870
+ appId: string;
1871
+ };
1872
+ /**
1873
+ * Describes the message accrescent.console.v1alpha1.GetAppRequest.
1874
+ * Use `create(GetAppRequestSchema)` to create a new message.
1875
+ */
1876
+ declare const GetAppRequestSchema: GenMessage<GetAppRequest>;
1877
+
1878
+ /**
1879
+ * Describes the file accrescent/console/v1alpha1/get_app_response.proto.
1880
+ */
1881
+ declare const file_accrescent_console_v1alpha1_get_app_response: GenFile;
1882
+ /**
1883
+ * Response to getting an app.
1884
+ *
1885
+ * @generated from message accrescent.console.v1alpha1.GetAppResponse
1886
+ */
1887
+ type GetAppResponse = Message<"accrescent.console.v1alpha1.GetAppResponse"> & {
1888
+ /**
1889
+ * The requested app.
1890
+ *
1891
+ * @generated from field: accrescent.console.v1alpha1.App app = 1;
1892
+ */
1893
+ app?: App;
1894
+ };
1895
+ /**
1896
+ * Describes the message accrescent.console.v1alpha1.GetAppResponse.
1897
+ * Use `create(GetAppResponseSchema)` to create a new message.
1898
+ */
1899
+ declare const GetAppResponseSchema: GenMessage<GetAppResponse>;
1900
+
1901
+ /**
1902
+ * Describes the file accrescent/console/v1alpha1/list_apps_request.proto.
1903
+ */
1904
+ declare const file_accrescent_console_v1alpha1_list_apps_request: GenFile;
1905
+ /**
1906
+ * Request defining parameters for listing published apps.
1907
+ *
1908
+ * @generated from message accrescent.console.v1alpha1.ListAppsRequest
1909
+ */
1910
+ type ListAppsRequest = Message<"accrescent.console.v1alpha1.ListAppsRequest"> & {
1911
+ /**
1912
+ * The organization containing the apps to list.
1913
+ *
1914
+ * @generated from field: optional string organization_id = 1;
1915
+ */
1916
+ organizationId?: string;
1917
+ /**
1918
+ * The maximum number of apps to return in the response. If unspecified,
1919
+ * defaults to 50. All requests with a higher page size will be capped to 50.
1920
+ *
1921
+ * @generated from field: optional uint32 page_size = 2;
1922
+ */
1923
+ pageSize?: number;
1924
+ /**
1925
+ * An opaque page continuation token returned in a previous ListAppsResponse.
1926
+ * If unspecified, the first page is returned.
1927
+ *
1928
+ * @generated from field: optional string page_token = 3;
1929
+ */
1930
+ pageToken?: string;
1931
+ };
1932
+ /**
1933
+ * Describes the message accrescent.console.v1alpha1.ListAppsRequest.
1934
+ * Use `create(ListAppsRequestSchema)` to create a new message.
1935
+ */
1936
+ declare const ListAppsRequestSchema: GenMessage<ListAppsRequest>;
1937
+
1938
+ /**
1939
+ * Describes the file accrescent/console/v1alpha1/list_apps_response.proto.
1940
+ */
1941
+ declare const file_accrescent_console_v1alpha1_list_apps_response: GenFile;
1942
+ /**
1943
+ * Response to listing published apps.
1944
+ *
1945
+ * @generated from message accrescent.console.v1alpha1.ListAppsResponse
1946
+ */
1947
+ type ListAppsResponse = Message<"accrescent.console.v1alpha1.ListAppsResponse"> & {
1948
+ /**
1949
+ * The apps matching the request parameters.
1950
+ *
1951
+ * @generated from field: repeated accrescent.console.v1alpha1.App apps = 1;
1952
+ */
1953
+ apps: App[];
1954
+ /**
1955
+ * An opaque token which, if passed to another invocation of ListApps, will
1956
+ * return the next page of organizations.
1957
+ *
1958
+ * @generated from field: optional string next_page_token = 2;
1959
+ */
1960
+ nextPageToken?: string;
1961
+ };
1962
+ /**
1963
+ * Describes the message accrescent.console.v1alpha1.ListAppsResponse.
1964
+ * Use `create(ListAppsResponseSchema)` to create a new message.
1965
+ */
1966
+ declare const ListAppsResponseSchema: GenMessage<ListAppsResponse>;
1967
+
1968
+ /**
1969
+ * Describes the file accrescent/console/v1alpha1/update_app_request.proto.
1970
+ */
1971
+ declare const file_accrescent_console_v1alpha1_update_app_request: GenFile;
1972
+ /**
1973
+ * Request defining parameters for updating a published app.
1974
+ *
1975
+ * @generated from message accrescent.console.v1alpha1.UpdateAppRequest
1976
+ */
1977
+ type UpdateAppRequest = Message<"accrescent.console.v1alpha1.UpdateAppRequest"> & {
1978
+ /**
1979
+ * The ID of the app to update.
1980
+ *
1981
+ * @generated from field: string app_id = 1;
1982
+ */
1983
+ appId: string;
1984
+ /**
1985
+ * Whether the app is publicly listed on the store.
1986
+ *
1987
+ * @generated from field: optional bool publicly_listed = 2;
1988
+ */
1989
+ publiclyListed?: boolean;
1990
+ /**
1991
+ * The list of fields to update.
1992
+ *
1993
+ * Required to enforce forward-compatible use by clients.
1994
+ *
1995
+ * @generated from field: google.protobuf.FieldMask update_mask = 3;
1996
+ */
1997
+ updateMask?: FieldMask;
1998
+ };
1999
+ /**
2000
+ * Describes the message accrescent.console.v1alpha1.UpdateAppRequest.
2001
+ * Use `create(UpdateAppRequestSchema)` to create a new message.
2002
+ */
2003
+ declare const UpdateAppRequestSchema: GenMessage<UpdateAppRequest>;
2004
+
2005
+ /**
2006
+ * Describes the file accrescent/console/v1alpha1/update_app_response.proto.
2007
+ */
2008
+ declare const file_accrescent_console_v1alpha1_update_app_response: GenFile;
2009
+ /**
2010
+ * Response to updating a published app.
2011
+ *
2012
+ * @generated from message accrescent.console.v1alpha1.UpdateAppResponse
2013
+ */
2014
+ type UpdateAppResponse = Message<"accrescent.console.v1alpha1.UpdateAppResponse"> & {};
2015
+ /**
2016
+ * Describes the message accrescent.console.v1alpha1.UpdateAppResponse.
2017
+ * Use `create(UpdateAppResponseSchema)` to create a new message.
2018
+ */
2019
+ declare const UpdateAppResponseSchema: GenMessage<UpdateAppResponse>;
2020
+
2021
+ declare const NG_APP_SERVICE_BASE_URL: InjectionToken<string>;
2022
+ /**
2023
+ * Service providing RPCs for managing published apps.
2024
+ *
2025
+ * @generated from service accrescent.console.v1alpha1.AppService
2026
+ */
2027
+ declare class NgAppService {
2028
+ private readonly httpClient;
2029
+ private readonly baseUrl;
2030
+ /**
2031
+ * Gets a published app.
2032
+ *
2033
+ * @generated from rpc accrescent.console.v1alpha1.AppService.GetApp
2034
+ */
2035
+ getApp(request: GetAppRequest): Observable<GetAppResponse>;
2036
+ /**
2037
+ * Lists published apps.
2038
+ *
2039
+ * @generated from rpc accrescent.console.v1alpha1.AppService.ListApps
2040
+ */
2041
+ listApps(request: ListAppsRequest): Observable<ListAppsResponse>;
2042
+ /**
2043
+ * Updates a published app.
2044
+ *
2045
+ * @generated from rpc accrescent.console.v1alpha1.AppService.UpdateApp
2046
+ */
2047
+ updateApp(request: UpdateAppRequest): Observable<UpdateAppResponse>;
2048
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgAppService, never>;
2049
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgAppService>;
2050
+ }
2051
+
2052
+ /**
2053
+ * Describes the file accrescent/console/v1alpha1/app_service.proto.
2054
+ */
2055
+ declare const file_accrescent_console_v1alpha1_app_service: GenFile;
2056
+ /**
2057
+ * Service providing RPCs for managing published apps.
2058
+ *
2059
+ * @generated from service accrescent.console.v1alpha1.AppService
2060
+ */
2061
+ declare const AppService: GenService<{
2062
+ /**
2063
+ * Gets a published app.
2064
+ *
2065
+ * @generated from rpc accrescent.console.v1alpha1.AppService.GetApp
2066
+ */
2067
+ getApp: {
2068
+ methodKind: "unary";
2069
+ input: typeof GetAppRequestSchema;
2070
+ output: typeof GetAppResponseSchema;
2071
+ };
2072
+ /**
2073
+ * Lists published apps.
2074
+ *
2075
+ * @generated from rpc accrescent.console.v1alpha1.AppService.ListApps
2076
+ */
2077
+ listApps: {
2078
+ methodKind: "unary";
2079
+ input: typeof ListAppsRequestSchema;
2080
+ output: typeof ListAppsResponseSchema;
2081
+ };
2082
+ /**
2083
+ * Updates a published app.
2084
+ *
2085
+ * @generated from rpc accrescent.console.v1alpha1.AppService.UpdateApp
2086
+ */
2087
+ updateApp: {
2088
+ methodKind: "unary";
2089
+ input: typeof UpdateAppRequestSchema;
2090
+ output: typeof UpdateAppResponseSchema;
2091
+ };
2092
+ }>;
2093
+
2094
+ /**
2095
+ * Describes the file accrescent/console/v1alpha1/rejection_reason.proto.
2096
+ */
2097
+ declare const file_accrescent_console_v1alpha1_rejection_reason: GenFile;
2098
+ /**
2099
+ * A reason for rejecting the item in review.
2100
+ *
2101
+ * @generated from message accrescent.console.v1alpha1.RejectionReason
2102
+ */
2103
+ type RejectionReason = Message<"accrescent.console.v1alpha1.RejectionReason"> & {
2104
+ /**
2105
+ * The English explanation of the rejection reason.
2106
+ *
2107
+ * @generated from field: optional string reason = 1;
2108
+ */
2109
+ reason?: string;
2110
+ };
2111
+ /**
2112
+ * Describes the message accrescent.console.v1alpha1.RejectionReason.
2113
+ * Use `create(RejectionReasonSchema)` to create a new message.
2114
+ */
2115
+ declare const RejectionReasonSchema: GenMessage<RejectionReason>;
2116
+
2117
+ /**
2118
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_review_request.proto.
2119
+ */
2120
+ declare const file_accrescent_console_v1alpha1_create_app_draft_review_request: GenFile;
2121
+ /**
2122
+ * Request defining parameters for creating an app draft review.
2123
+ *
2124
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftReviewRequest
2125
+ */
2126
+ type CreateAppDraftReviewRequest = Message<"accrescent.console.v1alpha1.CreateAppDraftReviewRequest"> & {
2127
+ /**
2128
+ * The ID of the app draft to create a review for.
2129
+ *
2130
+ * @generated from field: string app_draft_id = 1;
2131
+ */
2132
+ appDraftId: string;
2133
+ /**
2134
+ * Whether the app draft should be approved. If false, it is rejected.
2135
+ *
2136
+ * @generated from field: optional bool approved = 2;
2137
+ */
2138
+ approved?: boolean;
2139
+ /**
2140
+ * The list of reasons for rejection if the review is a rejection.
2141
+ *
2142
+ * @generated from field: repeated accrescent.console.v1alpha1.RejectionReason rejection_reasons = 3;
2143
+ */
2144
+ rejectionReasons: RejectionReason[];
2145
+ };
2146
+ /**
2147
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftReviewRequest.
2148
+ * Use `create(CreateAppDraftReviewRequestSchema)` to create a new message.
2149
+ */
2150
+ declare const CreateAppDraftReviewRequestSchema: GenMessage<CreateAppDraftReviewRequest>;
2151
+
2152
+ /**
2153
+ * Describes the file accrescent/console/v1alpha1/create_app_draft_review_response.proto.
2154
+ */
2155
+ declare const file_accrescent_console_v1alpha1_create_app_draft_review_response: GenFile;
2156
+ /**
2157
+ * Response to creating an app draft review.
2158
+ *
2159
+ * @generated from message accrescent.console.v1alpha1.CreateAppDraftReviewResponse
2160
+ */
2161
+ type CreateAppDraftReviewResponse = Message<"accrescent.console.v1alpha1.CreateAppDraftReviewResponse"> & {};
2162
+ /**
2163
+ * Describes the message accrescent.console.v1alpha1.CreateAppDraftReviewResponse.
2164
+ * Use `create(CreateAppDraftReviewResponseSchema)` to create a new message.
2165
+ */
2166
+ declare const CreateAppDraftReviewResponseSchema: GenMessage<CreateAppDraftReviewResponse>;
2167
+
2168
+ /**
2169
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_review_request.proto.
2170
+ */
2171
+ declare const file_accrescent_console_v1alpha1_create_app_edit_review_request: GenFile;
2172
+ /**
2173
+ * Request defining parameters for creating an app edit review.
2174
+ *
2175
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditReviewRequest
2176
+ */
2177
+ type CreateAppEditReviewRequest = Message<"accrescent.console.v1alpha1.CreateAppEditReviewRequest"> & {
2178
+ /**
2179
+ * The ID of the app edit to create a review for.
2180
+ *
2181
+ * @generated from field: string app_edit_id = 1;
2182
+ */
2183
+ appEditId: string;
2184
+ /**
2185
+ * Whether the app edit should be approved. If false, it is rejected.
2186
+ *
2187
+ * @generated from field: optional bool approved = 2;
2188
+ */
2189
+ approved?: boolean;
2190
+ /**
2191
+ * The list of reasons for rejection if the review is a rejection.
2192
+ *
2193
+ * @generated from field: repeated accrescent.console.v1alpha1.RejectionReason rejection_reasons = 3;
2194
+ */
2195
+ rejectionReasons: RejectionReason[];
2196
+ };
2197
+ /**
2198
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditReviewRequest.
2199
+ * Use `create(CreateAppEditReviewRequestSchema)` to create a new message.
2200
+ */
2201
+ declare const CreateAppEditReviewRequestSchema: GenMessage<CreateAppEditReviewRequest>;
2202
+
2203
+ /**
2204
+ * Describes the file accrescent/console/v1alpha1/create_app_edit_review_response.proto.
2205
+ */
2206
+ declare const file_accrescent_console_v1alpha1_create_app_edit_review_response: GenFile;
2207
+ /**
2208
+ * Response to creating an app edit review.
2209
+ *
2210
+ * @generated from message accrescent.console.v1alpha1.CreateAppEditReviewResponse
2211
+ */
2212
+ type CreateAppEditReviewResponse = Message<"accrescent.console.v1alpha1.CreateAppEditReviewResponse"> & {};
2213
+ /**
2214
+ * Describes the message accrescent.console.v1alpha1.CreateAppEditReviewResponse.
2215
+ * Use `create(CreateAppEditReviewResponseSchema)` to create a new message.
2216
+ */
2217
+ declare const CreateAppEditReviewResponseSchema: GenMessage<CreateAppEditReviewResponse>;
2218
+
2219
+ /**
2220
+ * Describes the file accrescent/console/v1alpha1/error_reason.proto.
2221
+ */
2222
+ declare const file_accrescent_console_v1alpha1_error_reason: GenFile;
2223
+ /**
2224
+ * The possible values for `google.rpc.ErrorInfo.reason` in the
2225
+ * "console-api.accrescent.app" error domain.
2226
+ *
2227
+ * @generated from enum accrescent.console.v1alpha1.ErrorReason
2228
+ */
2229
+ declare enum ErrorReason {
2230
+ /**
2231
+ * The unspecified value.
2232
+ *
2233
+ * @generated from enum value: ERROR_REASON_UNSPECIFIED = 0;
2234
+ */
2235
+ UNSPECIFIED = 0,
2236
+ /**
2237
+ * A resource required for the operation could not be found.
2238
+ *
2239
+ * @generated from enum value: ERROR_REASON_RESOURCE_NOT_FOUND = 1;
2240
+ */
2241
+ RESOURCE_NOT_FOUND = 1,
2242
+ /**
2243
+ * A resource limit would be exceeded by performing the operation.
2244
+ *
2245
+ * @generated from enum value: ERROR_REASON_RESOURCE_LIMIT_EXCEEDED = 2;
2246
+ */
2247
+ RESOURCE_LIMIT_EXCEEDED = 2,
2248
+ /**
2249
+ * A rate limit would be exceeded by performing the operation.
2250
+ *
2251
+ * @generated from enum value: ERROR_REASON_RATE_LIMIT_EXCEEDED = 3;
2252
+ */
2253
+ RATE_LIMIT_EXCEEDED = 3,
2254
+ /**
2255
+ * The caller does not have sufficient permission to perform the operation.
2256
+ *
2257
+ * @generated from enum value: ERROR_REASON_INSUFFICIENT_PERMISSION = 4;
2258
+ */
2259
+ INSUFFICIENT_PERMISSION = 4,
2260
+ /**
2261
+ * The provided request data is invalid.
2262
+ *
2263
+ * @generated from enum value: ERROR_REASON_INVALID_REQUEST = 5;
2264
+ */
2265
+ INVALID_REQUEST = 5,
2266
+ /**
2267
+ * The resource the operation would modify is immutable.
2268
+ *
2269
+ * @generated from enum value: ERROR_REASON_RESOURCE_IMMUTABLE = 6;
2270
+ */
2271
+ RESOURCE_IMMUTABLE = 6,
2272
+ /**
2273
+ * The operation cannot occur on the resource because the resource is
2274
+ * incomplete.
2275
+ *
2276
+ * @generated from enum value: ERROR_REASON_RESOURCE_INCOMPLETE = 7;
2277
+ */
2278
+ RESOURCE_INCOMPLETE = 7,
2279
+ /**
2280
+ * The resource to be submitted is already submitted.
2281
+ *
2282
+ * @generated from enum value: ERROR_REASON_ALREADY_SUBMITTED = 8;
2283
+ */
2284
+ ALREADY_SUBMITTED = 8,
2285
+ /**
2286
+ * The operation would cause a conflict with another resource.
2287
+ *
2288
+ * @generated from enum value: ERROR_REASON_RESOURCE_CONFLICT = 9;
2289
+ */
2290
+ RESOURCE_CONFLICT = 9,
2291
+ /**
2292
+ * There is no reviewer or publisher available to assign.
2293
+ *
2294
+ * @generated from enum value: ERROR_REASON_ASSIGNEE_UNAVAILABLE = 10;
2295
+ */
2296
+ ASSIGNEE_UNAVAILABLE = 10,
2297
+ /**
2298
+ * A resource with the requested ID already exists.
2299
+ *
2300
+ * @generated from enum value: ERROR_REASON_ALREADY_EXISTS = 11;
2301
+ */
2302
+ ALREADY_EXISTS = 11,
2303
+ /**
2304
+ * Authentication credentials were expected, but not provided.
2305
+ *
2306
+ * @generated from enum value: ERROR_REASON_NO_CREDENTIALS = 12;
2307
+ */
2308
+ NO_CREDENTIALS = 12,
2309
+ /**
2310
+ * The user has been authenticated via a third party, but has not yet
2311
+ * registered an Accrescent account.
2312
+ *
2313
+ * @generated from enum value: ERROR_REASON_NOT_REGISTERED = 13;
2314
+ */
2315
+ NOT_REGISTERED = 13,
2316
+ /**
2317
+ * The resource to be published is already published.
2318
+ *
2319
+ * @generated from enum value: ERROR_REASON_ALREADY_PUBLISHED = 14;
2320
+ */
2321
+ ALREADY_PUBLISHED = 14,
2322
+ /**
2323
+ * The operation cannot occur because the resource is publishing.
2324
+ *
2325
+ * @generated from enum value: ERROR_REASON_RESOURCE_PUBLISHING = 15;
2326
+ */
2327
+ RESOURCE_PUBLISHING = 15,
2328
+ /**
2329
+ * The operation cannot occur because the resource has been invalidated.
2330
+ *
2331
+ * @generated from enum value: ERROR_REASON_RESOURCE_INVALIDATED = 16;
2332
+ */
2333
+ RESOURCE_INVALIDATED = 16,
2334
+ /**
2335
+ * The operation would cause a data constraint violation.
2336
+ *
2337
+ * @generated from enum value: ERROR_REASON_CONSTRAINT_VIOLATION = 17;
2338
+ */
2339
+ CONSTRAINT_VIOLATION = 17,
2340
+ /**
2341
+ * The server encountered an internal error.
2342
+ *
2343
+ * @generated from enum value: ERROR_REASON_INTERNAL = 18;
2344
+ */
2345
+ INTERNAL = 18,
2346
+ /**
2347
+ * The uploaded file was not an image in the expected format.
2348
+ *
2349
+ * @generated from enum value: ERROR_REASON_INVALID_IMAGE = 19;
2350
+ */
2351
+ INVALID_IMAGE = 19,
2352
+ /**
2353
+ * The uploaded image's dimensions do not meet policy requirements.
2354
+ *
2355
+ * @generated from enum value: ERROR_REASON_INCORRECT_IMAGE_DIMENSIONS = 20;
2356
+ */
2357
+ INCORRECT_IMAGE_DIMENSIONS = 20,
2358
+ /**
2359
+ * The uploaded package file is invalid.
2360
+ *
2361
+ * @generated from enum value: ERROR_REASON_INVALID_PACKAGE = 21;
2362
+ */
2363
+ INVALID_PACKAGE = 21,
2364
+ /**
2365
+ * The uploaded package is debuggable.
2366
+ *
2367
+ * @generated from enum value: ERROR_REASON_PACKAGE_DEBUGGABLE = 22;
2368
+ */
2369
+ PACKAGE_DEBUGGABLE = 22,
2370
+ /**
2371
+ * The uploaded package's target SDK does not meet the minimum policy
2372
+ * requirements.
2373
+ *
2374
+ * @generated from enum value: ERROR_REASON_LOW_TARGET_SDK = 23;
2375
+ */
2376
+ LOW_TARGET_SDK = 23,
2377
+ /**
2378
+ * The uploaded package has 32-bit code but is missing corresponding 64-bit
2379
+ * code.
2380
+ *
2381
+ * @generated from enum value: ERROR_REASON_MISSING_64_BIT_CODE = 24;
2382
+ */
2383
+ MISSING_64_BIT_CODE = 24,
2384
+ /**
2385
+ * The uploaded package has not been signed with a modern signature scheme.
2386
+ *
2387
+ * @generated from enum value: ERROR_REASON_NO_MODERN_SIGNATURE = 25;
2388
+ */
2389
+ NO_MODERN_SIGNATURE = 25,
2390
+ /**
2391
+ * The uploaded package was signed with the debug signer.
2392
+ *
2393
+ * @generated from enum value: ERROR_REASON_DEBUG_SIGNER = 26;
2394
+ */
2395
+ DEBUG_SIGNER = 26,
2396
+ /**
2397
+ * The uploaded package was signed with multiple signers.
2398
+ *
2399
+ * @generated from enum value: ERROR_REASON_MULTIPLE_SIGNERS = 27;
2400
+ */
2401
+ MULTIPLE_SIGNERS = 27,
2402
+ /**
2403
+ * The uploaded package is test-only.
2404
+ *
2405
+ * @generated from enum value: ERROR_REASON_TEST_ONLY = 28;
2406
+ */
2407
+ TEST_ONLY = 28,
2408
+ /**
2409
+ * The uploaded edit's app ID does not match the app ID of its corresponding
2410
+ * published app.
2411
+ *
2412
+ * @generated from enum value: ERROR_REASON_APP_ID_MISMATCH = 29;
2413
+ */
2414
+ APP_ID_MISMATCH = 29,
2415
+ /**
2416
+ * The uploaded edit's version code is not more than the version code of its
2417
+ * corresponding published app.
2418
+ *
2419
+ * @generated from enum value: ERROR_REASON_NOT_AN_UPGRADE = 30;
2420
+ */
2421
+ NOT_AN_UPGRADE = 30,
2422
+ /**
2423
+ * The uploaded edit's signing certificate does not match that of its
2424
+ * corresponding published app.
2425
+ *
2426
+ * @generated from enum value: ERROR_REASON_SIGNING_CERT_MISMATCH = 31;
2427
+ */
2428
+ SIGNING_CERT_MISMATCH = 31
2429
+ }
2430
+ /**
2431
+ * Describes the enum accrescent.console.v1alpha1.ErrorReason.
2432
+ */
2433
+ declare const ErrorReasonSchema: GenEnum<ErrorReason>;
2434
+
2435
+ /**
2436
+ * Describes the file accrescent/console/v1alpha1/get_organization_request.proto.
2437
+ */
2438
+ declare const file_accrescent_console_v1alpha1_get_organization_request: GenFile;
2439
+ /**
2440
+ * Request defining parameters for getting an organization.
2441
+ *
2442
+ * @generated from message accrescent.console.v1alpha1.GetOrganizationRequest
2443
+ */
2444
+ type GetOrganizationRequest = Message<"accrescent.console.v1alpha1.GetOrganizationRequest"> & {
2445
+ /**
2446
+ * The ID of the organization to retrieve.
2447
+ *
2448
+ * @generated from field: string organization_id = 1;
2449
+ */
2450
+ organizationId: string;
2451
+ };
2452
+ /**
2453
+ * Describes the message accrescent.console.v1alpha1.GetOrganizationRequest.
2454
+ * Use `create(GetOrganizationRequestSchema)` to create a new message.
2455
+ */
2456
+ declare const GetOrganizationRequestSchema: GenMessage<GetOrganizationRequest>;
2457
+
2458
+ /**
2459
+ * Describes the file accrescent/console/v1alpha1/organization.proto.
2460
+ */
2461
+ declare const file_accrescent_console_v1alpha1_organization: GenFile;
2462
+ /**
2463
+ * An organization of users.
2464
+ *
2465
+ * @generated from message accrescent.console.v1alpha1.Organization
2466
+ */
2467
+ type Organization = Message<"accrescent.console.v1alpha1.Organization"> & {
2468
+ /**
2469
+ * The organization's unique ID.
2470
+ *
2471
+ * @generated from field: optional string id = 1;
2472
+ */
2473
+ id?: string;
2474
+ /**
2475
+ * The maximum number of published apps allowed to exist under this organization.
2476
+ *
2477
+ * @generated from field: optional uint32 published_app_limit = 2;
2478
+ */
2479
+ publishedAppLimit?: number;
2480
+ /**
2481
+ * The current number of published apps in this organization.
2482
+ *
2483
+ * @generated from field: optional uint32 published_app_count = 3;
2484
+ */
2485
+ publishedAppCount?: number;
2486
+ /**
2487
+ * The maximum number of active app drafts allowed to exist under this organization.
2488
+ *
2489
+ * @generated from field: optional uint32 active_app_draft_limit = 4;
2490
+ */
2491
+ activeAppDraftLimit?: number;
2492
+ /**
2493
+ * The current number of active app drafts in this organization.
2494
+ *
2495
+ * @generated from field: optional uint32 active_app_draft_count = 5;
2496
+ */
2497
+ activeAppDraftCount?: number;
2498
+ };
2499
+ /**
2500
+ * Describes the message accrescent.console.v1alpha1.Organization.
2501
+ * Use `create(OrganizationSchema)` to create a new message.
2502
+ */
2503
+ declare const OrganizationSchema: GenMessage<Organization>;
2504
+
2505
+ /**
2506
+ * Describes the file accrescent/console/v1alpha1/get_organization_response.proto.
2507
+ */
2508
+ declare const file_accrescent_console_v1alpha1_get_organization_response: GenFile;
2509
+ /**
2510
+ * Response to getting an organization.
2511
+ *
2512
+ * @generated from message accrescent.console.v1alpha1.GetOrganizationResponse
2513
+ */
2514
+ type GetOrganizationResponse = Message<"accrescent.console.v1alpha1.GetOrganizationResponse"> & {
2515
+ /**
2516
+ * The requested organization.
2517
+ *
2518
+ * @generated from field: accrescent.console.v1alpha1.Organization organization = 1;
2519
+ */
2520
+ organization?: Organization;
2521
+ };
2522
+ /**
2523
+ * Describes the message accrescent.console.v1alpha1.GetOrganizationResponse.
2524
+ * Use `create(GetOrganizationResponseSchema)` to create a new message.
2525
+ */
2526
+ declare const GetOrganizationResponseSchema: GenMessage<GetOrganizationResponse>;
2527
+
2528
+ /**
2529
+ * Describes the file accrescent/console/v1alpha1/get_self_request.proto.
2530
+ */
2531
+ declare const file_accrescent_console_v1alpha1_get_self_request: GenFile;
2532
+ /**
2533
+ * Request defining parameters for getting the currently authenticated user.
2534
+ *
2535
+ * @generated from message accrescent.console.v1alpha1.GetSelfRequest
2536
+ */
2537
+ type GetSelfRequest = Message<"accrescent.console.v1alpha1.GetSelfRequest"> & {};
2538
+ /**
2539
+ * Describes the message accrescent.console.v1alpha1.GetSelfRequest.
2540
+ * Use `create(GetSelfRequestSchema)` to create a new message.
2541
+ */
2542
+ declare const GetSelfRequestSchema: GenMessage<GetSelfRequest>;
2543
+
2544
+ /**
2545
+ * Describes the file accrescent/console/v1alpha1/user_role.proto.
2546
+ */
2547
+ declare const file_accrescent_console_v1alpha1_user_role: GenFile;
2548
+ /**
2549
+ * A user authorization role.
2550
+ *
2551
+ * @generated from enum accrescent.console.v1alpha1.UserRole
2552
+ */
2553
+ declare enum UserRole {
2554
+ /**
2555
+ * The unspecified value.
2556
+ *
2557
+ * @generated from enum value: USER_ROLE_UNSPECIFIED = 0;
2558
+ */
2559
+ UNSPECIFIED = 0,
2560
+ /**
2561
+ * An app reviewer.
2562
+ *
2563
+ * @generated from enum value: USER_ROLE_REVIEWER = 1;
2564
+ */
2565
+ REVIEWER = 1,
2566
+ /**
2567
+ * An app publisher.
2568
+ *
2569
+ * @generated from enum value: USER_ROLE_PUBLISHER = 2;
2570
+ */
2571
+ PUBLISHER = 2
2572
+ }
2573
+ /**
2574
+ * Describes the enum accrescent.console.v1alpha1.UserRole.
2575
+ */
2576
+ declare const UserRoleSchema: GenEnum<UserRole>;
2577
+
2578
+ /**
2579
+ * Describes the file accrescent/console/v1alpha1/user.proto.
2580
+ */
2581
+ declare const file_accrescent_console_v1alpha1_user: GenFile;
2582
+ /**
2583
+ * A console user.
2584
+ *
2585
+ * @generated from message accrescent.console.v1alpha1.User
2586
+ */
2587
+ type User = Message<"accrescent.console.v1alpha1.User"> & {
2588
+ /**
2589
+ * The user's unique ID.
2590
+ *
2591
+ * @generated from field: optional string id = 1;
2592
+ */
2593
+ id?: string;
2594
+ /**
2595
+ * The user's email.
2596
+ *
2597
+ * @generated from field: optional string email = 2;
2598
+ */
2599
+ email?: string;
2600
+ /**
2601
+ * The user's roles.
2602
+ *
2603
+ * @generated from field: repeated accrescent.console.v1alpha1.UserRole roles = 3;
2604
+ */
2605
+ roles: UserRole[];
2606
+ };
2607
+ /**
2608
+ * Describes the message accrescent.console.v1alpha1.User.
2609
+ * Use `create(UserSchema)` to create a new message.
2610
+ */
2611
+ declare const UserSchema: GenMessage<User>;
2612
+
2613
+ /**
2614
+ * Describes the file accrescent/console/v1alpha1/get_self_response.proto.
2615
+ */
2616
+ declare const file_accrescent_console_v1alpha1_get_self_response: GenFile;
2617
+ /**
2618
+ * Response to getting the currently authenticated user.
2619
+ *
2620
+ * @generated from message accrescent.console.v1alpha1.GetSelfResponse
2621
+ */
2622
+ type GetSelfResponse = Message<"accrescent.console.v1alpha1.GetSelfResponse"> & {
2623
+ /**
2624
+ * The currently authenticated user.
2625
+ *
2626
+ * @generated from field: accrescent.console.v1alpha1.User user = 1;
2627
+ */
2628
+ user?: User;
2629
+ };
2630
+ /**
2631
+ * Describes the message accrescent.console.v1alpha1.GetSelfResponse.
2632
+ * Use `create(GetSelfResponseSchema)` to create a new message.
2633
+ */
2634
+ declare const GetSelfResponseSchema: GenMessage<GetSelfResponse>;
2635
+
2636
+ /**
2637
+ * Describes the file accrescent/console/v1alpha1/list_organizations_request.proto.
2638
+ */
2639
+ declare const file_accrescent_console_v1alpha1_list_organizations_request: GenFile;
2640
+ /**
2641
+ * Request defining parameters for listing organizations.
2642
+ *
2643
+ * @generated from message accrescent.console.v1alpha1.ListOrganizationsRequest
2644
+ */
2645
+ type ListOrganizationsRequest = Message<"accrescent.console.v1alpha1.ListOrganizationsRequest"> & {
2646
+ /**
2647
+ * The maximum number of organizations to return in the response. If
2648
+ * unspecified, defaults to 50. All requests with a higher page size will be
2649
+ * capped to 50.
2650
+ *
2651
+ * @generated from field: optional uint32 page_size = 1;
2652
+ */
2653
+ pageSize?: number;
2654
+ /**
2655
+ * An opaque page continuation token returned in a previous
2656
+ * ListOrganizationsResponse. If unspecified, the first page is returned.
2657
+ *
2658
+ * @generated from field: optional string page_token = 2;
2659
+ */
2660
+ pageToken?: string;
2661
+ };
2662
+ /**
2663
+ * Describes the message accrescent.console.v1alpha1.ListOrganizationsRequest.
2664
+ * Use `create(ListOrganizationsRequestSchema)` to create a new message.
2665
+ */
2666
+ declare const ListOrganizationsRequestSchema: GenMessage<ListOrganizationsRequest>;
2667
+
2668
+ /**
2669
+ * Describes the file accrescent/console/v1alpha1/list_organizations_response.proto.
2670
+ */
2671
+ declare const file_accrescent_console_v1alpha1_list_organizations_response: GenFile;
2672
+ /**
2673
+ * Response to listing organizations.
2674
+ *
2675
+ * @generated from message accrescent.console.v1alpha1.ListOrganizationsResponse
2676
+ */
2677
+ type ListOrganizationsResponse = Message<"accrescent.console.v1alpha1.ListOrganizationsResponse"> & {
2678
+ /**
2679
+ * The organizations matching the request parameters.
2680
+ *
2681
+ * @generated from field: repeated accrescent.console.v1alpha1.Organization organizations = 1;
2682
+ */
2683
+ organizations: Organization[];
2684
+ /**
2685
+ * An opaque token which, if passed to another invocation of
2686
+ * ListOrganizations, will return the next page of organizations.
2687
+ *
2688
+ * @generated from field: optional string next_page_token = 2;
2689
+ */
2690
+ nextPageToken?: string;
2691
+ };
2692
+ /**
2693
+ * Describes the message accrescent.console.v1alpha1.ListOrganizationsResponse.
2694
+ * Use `create(ListOrganizationsResponseSchema)` to create a new message.
2695
+ */
2696
+ declare const ListOrganizationsResponseSchema: GenMessage<ListOrganizationsResponse>;
2697
+
2698
+ declare const NG_ORGANIZATION_SERVICE_BASE_URL: InjectionToken<string>;
2699
+ /**
2700
+ * Service providing RPCs for managing organizations.
2701
+ *
2702
+ * @generated from service accrescent.console.v1alpha1.OrganizationService
2703
+ */
2704
+ declare class NgOrganizationService {
2705
+ private readonly httpClient;
2706
+ private readonly baseUrl;
2707
+ /**
2708
+ * Gets an organization.
2709
+ *
2710
+ * @generated from rpc accrescent.console.v1alpha1.OrganizationService.GetOrganization
2711
+ */
2712
+ getOrganization(request: GetOrganizationRequest): Observable<GetOrganizationResponse>;
2713
+ /**
2714
+ * Lists organizations.
2715
+ *
2716
+ * @generated from rpc accrescent.console.v1alpha1.OrganizationService.ListOrganizations
2717
+ */
2718
+ listOrganizations(request: ListOrganizationsRequest): Observable<ListOrganizationsResponse>;
2719
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgOrganizationService, never>;
2720
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgOrganizationService>;
2721
+ }
2722
+
2723
+ /**
2724
+ * Describes the file accrescent/console/v1alpha1/organization_service.proto.
2725
+ */
2726
+ declare const file_accrescent_console_v1alpha1_organization_service: GenFile;
2727
+ /**
2728
+ * Service providing RPCs for managing organizations.
2729
+ *
2730
+ * @generated from service accrescent.console.v1alpha1.OrganizationService
2731
+ */
2732
+ declare const OrganizationService: GenService<{
2733
+ /**
2734
+ * Gets an organization.
2735
+ *
2736
+ * @generated from rpc accrescent.console.v1alpha1.OrganizationService.GetOrganization
2737
+ */
2738
+ getOrganization: {
2739
+ methodKind: "unary";
2740
+ input: typeof GetOrganizationRequestSchema;
2741
+ output: typeof GetOrganizationResponseSchema;
2742
+ };
2743
+ /**
2744
+ * Lists organizations.
2745
+ *
2746
+ * @generated from rpc accrescent.console.v1alpha1.OrganizationService.ListOrganizations
2747
+ */
2748
+ listOrganizations: {
2749
+ methodKind: "unary";
2750
+ input: typeof ListOrganizationsRequestSchema;
2751
+ output: typeof ListOrganizationsResponseSchema;
2752
+ };
2753
+ }>;
2754
+
2755
+ /**
2756
+ * Describes the file accrescent/console/v1alpha1/publish_app_draft_result.proto.
2757
+ */
2758
+ declare const file_accrescent_console_v1alpha1_publish_app_draft_result: GenFile;
2759
+ /**
2760
+ * Result of an app draft publishing operation.
2761
+ *
2762
+ * @generated from message accrescent.console.v1alpha1.PublishAppDraftResult
2763
+ */
2764
+ type PublishAppDraftResult = Message<"accrescent.console.v1alpha1.PublishAppDraftResult"> & {};
2765
+ /**
2766
+ * Describes the message accrescent.console.v1alpha1.PublishAppDraftResult.
2767
+ * Use `create(PublishAppDraftResultSchema)` to create a new message.
2768
+ */
2769
+ declare const PublishAppDraftResultSchema: GenMessage<PublishAppDraftResult>;
2770
+
2771
+ /**
2772
+ * Describes the file accrescent/console/v1alpha1/publish_app_edit_result.proto.
2773
+ */
2774
+ declare const file_accrescent_console_v1alpha1_publish_app_edit_result: GenFile;
2775
+ /**
2776
+ * Result of an app edit publishing operation.
2777
+ *
2778
+ * @generated from message accrescent.console.v1alpha1.PublishAppEditResult
2779
+ */
2780
+ type PublishAppEditResult = Message<"accrescent.console.v1alpha1.PublishAppEditResult"> & {};
2781
+ /**
2782
+ * Describes the message accrescent.console.v1alpha1.PublishAppEditResult.
2783
+ * Use `create(PublishAppEditResultSchema)` to create a new message.
2784
+ */
2785
+ declare const PublishAppEditResultSchema: GenMessage<PublishAppEditResult>;
2786
+
2787
+ declare const NG_REVIEW_SERVICE_BASE_URL: InjectionToken<string>;
2788
+ /**
2789
+ * Service providing RPCs for managing reviews on items submitted to the app
2790
+ * store
2791
+ *
2792
+ * @generated from service accrescent.console.v1alpha1.ReviewService
2793
+ */
2794
+ declare class NgReviewService {
2795
+ private readonly httpClient;
2796
+ private readonly baseUrl;
2797
+ /**
2798
+ * Reviews an app draft.
2799
+ *
2800
+ * @generated from rpc accrescent.console.v1alpha1.ReviewService.CreateAppDraftReview
2801
+ */
2802
+ createAppDraftReview(request: CreateAppDraftReviewRequest): Observable<CreateAppDraftReviewResponse>;
2803
+ /**
2804
+ * Reviews an app edit.
2805
+ *
2806
+ * @generated from rpc accrescent.console.v1alpha1.ReviewService.CreateAppEditReview
2807
+ */
2808
+ createAppEditReview(request: CreateAppEditReviewRequest): Observable<CreateAppEditReviewResponse>;
2809
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgReviewService, never>;
2810
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgReviewService>;
2811
+ }
2812
+
2813
+ /**
2814
+ * Describes the file accrescent/console/v1alpha1/review_service.proto.
2815
+ */
2816
+ declare const file_accrescent_console_v1alpha1_review_service: GenFile;
2817
+ /**
2818
+ * Service providing RPCs for managing reviews on items submitted to the app
2819
+ * store
2820
+ *
2821
+ * @generated from service accrescent.console.v1alpha1.ReviewService
2822
+ */
2823
+ declare const ReviewService: GenService<{
2824
+ /**
2825
+ * Reviews an app draft.
2826
+ *
2827
+ * @generated from rpc accrescent.console.v1alpha1.ReviewService.CreateAppDraftReview
2828
+ */
2829
+ createAppDraftReview: {
2830
+ methodKind: "unary";
2831
+ input: typeof CreateAppDraftReviewRequestSchema;
2832
+ output: typeof CreateAppDraftReviewResponseSchema;
2833
+ };
2834
+ /**
2835
+ * Reviews an app edit.
2836
+ *
2837
+ * @generated from rpc accrescent.console.v1alpha1.ReviewService.CreateAppEditReview
2838
+ */
2839
+ createAppEditReview: {
2840
+ methodKind: "unary";
2841
+ input: typeof CreateAppEditReviewRequestSchema;
2842
+ output: typeof CreateAppEditReviewResponseSchema;
2843
+ };
2844
+ }>;
2845
+
2846
+ /**
2847
+ * Describes the file accrescent/console/v1alpha1/update_user_request.proto.
2848
+ */
2849
+ declare const file_accrescent_console_v1alpha1_update_user_request: GenFile;
2850
+ /**
2851
+ * Request defining parameters for updating a user.
2852
+ *
2853
+ * @generated from message accrescent.console.v1alpha1.UpdateUserRequest
2854
+ */
2855
+ type UpdateUserRequest = Message<"accrescent.console.v1alpha1.UpdateUserRequest"> & {
2856
+ /**
2857
+ * The ID of the user to update.
2858
+ *
2859
+ * @generated from field: string user_id = 1;
2860
+ */
2861
+ userId: string;
2862
+ /**
2863
+ * The user's roles.
2864
+ *
2865
+ * @generated from field: repeated accrescent.console.v1alpha1.UserRole roles = 2;
2866
+ */
2867
+ roles: UserRole[];
2868
+ /**
2869
+ * The list of fields to update.
2870
+ *
2871
+ * Required to enforce forward-compatible use by clients.
2872
+ *
2873
+ * @generated from field: google.protobuf.FieldMask update_mask = 3;
2874
+ */
2875
+ updateMask?: FieldMask;
2876
+ };
2877
+ /**
2878
+ * Describes the message accrescent.console.v1alpha1.UpdateUserRequest.
2879
+ * Use `create(UpdateUserRequestSchema)` to create a new message.
2880
+ */
2881
+ declare const UpdateUserRequestSchema: GenMessage<UpdateUserRequest>;
2882
+
2883
+ /**
2884
+ * Describes the file accrescent/console/v1alpha1/update_user_response.proto.
2885
+ */
2886
+ declare const file_accrescent_console_v1alpha1_update_user_response: GenFile;
2887
+ /**
2888
+ * Response to updating a user.
2889
+ *
2890
+ * @generated from message accrescent.console.v1alpha1.UpdateUserResponse
2891
+ */
2892
+ type UpdateUserResponse = Message<"accrescent.console.v1alpha1.UpdateUserResponse"> & {};
2893
+ /**
2894
+ * Describes the message accrescent.console.v1alpha1.UpdateUserResponse.
2895
+ * Use `create(UpdateUserResponseSchema)` to create a new message.
2896
+ */
2897
+ declare const UpdateUserResponseSchema: GenMessage<UpdateUserResponse>;
2898
+
2899
+ /**
2900
+ * Describes the file accrescent/console/v1alpha1/upload_app_draft_listing_icon_result.proto.
2901
+ */
2902
+ declare const file_accrescent_console_v1alpha1_upload_app_draft_listing_icon_result: GenFile;
2903
+ /**
2904
+ * Result of an app draft listing icon upload operation.
2905
+ *
2906
+ * @generated from message accrescent.console.v1alpha1.UploadAppDraftListingIconResult
2907
+ */
2908
+ type UploadAppDraftListingIconResult = Message<"accrescent.console.v1alpha1.UploadAppDraftListingIconResult"> & {};
2909
+ /**
2910
+ * Describes the message accrescent.console.v1alpha1.UploadAppDraftListingIconResult.
2911
+ * Use `create(UploadAppDraftListingIconResultSchema)` to create a new message.
2912
+ */
2913
+ declare const UploadAppDraftListingIconResultSchema: GenMessage<UploadAppDraftListingIconResult>;
2914
+
2915
+ /**
2916
+ * Describes the file accrescent/console/v1alpha1/upload_app_draft_result.proto.
2917
+ */
2918
+ declare const file_accrescent_console_v1alpha1_upload_app_draft_result: GenFile;
2919
+ /**
2920
+ * Result of an app draft upload operation.
2921
+ *
2922
+ * @generated from message accrescent.console.v1alpha1.UploadAppDraftResult
2923
+ */
2924
+ type UploadAppDraftResult = Message<"accrescent.console.v1alpha1.UploadAppDraftResult"> & {};
2925
+ /**
2926
+ * Describes the message accrescent.console.v1alpha1.UploadAppDraftResult.
2927
+ * Use `create(UploadAppDraftResultSchema)` to create a new message.
2928
+ */
2929
+ declare const UploadAppDraftResultSchema: GenMessage<UploadAppDraftResult>;
2930
+
2931
+ /**
2932
+ * Describes the file accrescent/console/v1alpha1/upload_app_edit_listing_icon_result.proto.
2933
+ */
2934
+ declare const file_accrescent_console_v1alpha1_upload_app_edit_listing_icon_result: GenFile;
2935
+ /**
2936
+ * Result of an app edit listing icon upload operation.
2937
+ *
2938
+ * @generated from message accrescent.console.v1alpha1.UploadAppEditListingIconResult
2939
+ */
2940
+ type UploadAppEditListingIconResult = Message<"accrescent.console.v1alpha1.UploadAppEditListingIconResult"> & {};
2941
+ /**
2942
+ * Describes the message accrescent.console.v1alpha1.UploadAppEditListingIconResult.
2943
+ * Use `create(UploadAppEditListingIconResultSchema)` to create a new message.
2944
+ */
2945
+ declare const UploadAppEditListingIconResultSchema: GenMessage<UploadAppEditListingIconResult>;
2946
+
2947
+ /**
2948
+ * Describes the file accrescent/console/v1alpha1/upload_app_edit_result.proto.
2949
+ */
2950
+ declare const file_accrescent_console_v1alpha1_upload_app_edit_result: GenFile;
2951
+ /**
2952
+ * Result of an app edit upload operation.
2953
+ *
2954
+ * @generated from message accrescent.console.v1alpha1.UploadAppEditResult
2955
+ */
2956
+ type UploadAppEditResult = Message<"accrescent.console.v1alpha1.UploadAppEditResult"> & {};
2957
+ /**
2958
+ * Describes the message accrescent.console.v1alpha1.UploadAppEditResult.
2959
+ * Use `create(UploadAppEditResultSchema)` to create a new message.
2960
+ */
2961
+ declare const UploadAppEditResultSchema: GenMessage<UploadAppEditResult>;
2962
+
2963
+ declare const NG_USER_SERVICE_BASE_URL: InjectionToken<string>;
2964
+ /**
2965
+ * Service providing RPCs for managing users.
2966
+ *
2967
+ * @generated from service accrescent.console.v1alpha1.UserService
2968
+ */
2969
+ declare class NgUserService {
2970
+ private readonly httpClient;
2971
+ private readonly baseUrl;
2972
+ /**
2973
+ * Gets the user info for the currently authenticated user.
2974
+ *
2975
+ * @generated from rpc accrescent.console.v1alpha1.UserService.GetSelf
2976
+ */
2977
+ getSelf(request: GetSelfRequest): Observable<GetSelfResponse>;
2978
+ /**
2979
+ * Updates a user.
2980
+ *
2981
+ * @generated from rpc accrescent.console.v1alpha1.UserService.UpdateUser
2982
+ */
2983
+ updateUser(request: UpdateUserRequest): Observable<UpdateUserResponse>;
2984
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgUserService, never>;
2985
+ static ɵprov: i0.ɵɵInjectableDeclaration<NgUserService>;
2986
+ }
2987
+
2988
+ /**
2989
+ * Describes the file accrescent/console/v1alpha1/user_service.proto.
2990
+ */
2991
+ declare const file_accrescent_console_v1alpha1_user_service: GenFile;
2992
+ /**
2993
+ * Service providing RPCs for managing users.
2994
+ *
2995
+ * @generated from service accrescent.console.v1alpha1.UserService
2996
+ */
2997
+ declare const UserService: GenService<{
2998
+ /**
2999
+ * Gets the user info for the currently authenticated user.
3000
+ *
3001
+ * @generated from rpc accrescent.console.v1alpha1.UserService.GetSelf
3002
+ */
3003
+ getSelf: {
3004
+ methodKind: "unary";
3005
+ input: typeof GetSelfRequestSchema;
3006
+ output: typeof GetSelfResponseSchema;
3007
+ };
3008
+ /**
3009
+ * Updates a user.
3010
+ *
3011
+ * @generated from rpc accrescent.console.v1alpha1.UserService.UpdateUser
3012
+ */
3013
+ updateUser: {
3014
+ methodKind: "unary";
3015
+ input: typeof UpdateUserRequestSchema;
3016
+ output: typeof UpdateUserResponseSchema;
3017
+ };
3018
+ }>;
3019
+
3020
+ export { AppDraftSchema, AppDraftService, AppEditSchema, AppEditService, AppPackageSchema, AppSchema, AppService, CreateAppDraftListingIconUploadOperationRequestSchema, CreateAppDraftListingIconUploadOperationResponseSchema, CreateAppDraftListingRequestSchema, CreateAppDraftListingResponseSchema, CreateAppDraftRequestSchema, CreateAppDraftResponseSchema, CreateAppDraftReviewRequestSchema, CreateAppDraftReviewResponseSchema, CreateAppDraftUploadOperationRequestSchema, CreateAppDraftUploadOperationResponseSchema, CreateAppEditListingIconUploadOperationRequestSchema, CreateAppEditListingIconUploadOperationResponseSchema, CreateAppEditListingRequestSchema, CreateAppEditListingResponseSchema, CreateAppEditRequestSchema, CreateAppEditResponseSchema, CreateAppEditReviewRequestSchema, CreateAppEditReviewResponseSchema, CreateAppEditUploadOperationRequestSchema, CreateAppEditUploadOperationResponseSchema, DeleteAppDraftListingRequestSchema, DeleteAppDraftListingResponseSchema, DeleteAppDraftRequestSchema, DeleteAppDraftResponseSchema, DeleteAppEditListingRequestSchema, DeleteAppEditListingResponseSchema, DeleteAppEditRequestSchema, DeleteAppEditResponseSchema, ErrorReason, ErrorReasonSchema, GetAppDraftDownloadInfoRequestSchema, GetAppDraftDownloadInfoResponseSchema, GetAppDraftListingIconDownloadInfoRequestSchema, GetAppDraftListingIconDownloadInfoResponseSchema, GetAppDraftRequestSchema, GetAppDraftResponseSchema, GetAppEditDownloadInfoRequestSchema, GetAppEditDownloadInfoResponseSchema, GetAppEditRequestSchema, GetAppEditResponseSchema, GetAppRequestSchema, GetAppResponseSchema, GetOrganizationRequestSchema, GetOrganizationResponseSchema, GetSelfRequestSchema, GetSelfResponseSchema, ListAppDraftsRequestSchema, ListAppDraftsResponseSchema, ListAppEditsRequestSchema, ListAppEditsResponseSchema, ListAppsRequestSchema, ListAppsResponseSchema, ListOrganizationsRequestSchema, ListOrganizationsResponseSchema, NG_APP_DRAFT_SERVICE_BASE_URL, NG_APP_EDIT_SERVICE_BASE_URL, NG_APP_SERVICE_BASE_URL, NG_ORGANIZATION_SERVICE_BASE_URL, NG_REVIEW_SERVICE_BASE_URL, NG_USER_SERVICE_BASE_URL, NgAppDraftService, NgAppEditService, NgAppService, NgOrganizationService, NgReviewService, NgUserService, OrganizationSchema, OrganizationService, PublishAppDraftRequestSchema, PublishAppDraftResponseSchema, PublishAppDraftResultSchema, PublishAppEditResultSchema, RejectionReasonSchema, ReviewService, SubmitAppDraftRequestSchema, SubmitAppDraftResponseSchema, SubmitAppEditRequestSchema, SubmitAppEditResponseSchema, UpdateAppDraftRequestSchema, UpdateAppDraftResponseSchema, UpdateAppEditRequestSchema, UpdateAppEditResponseSchema, UpdateAppRequestSchema, UpdateAppResponseSchema, UpdateUserRequestSchema, UpdateUserResponseSchema, UploadAppDraftListingIconResultSchema, UploadAppDraftResultSchema, UploadAppEditListingIconResultSchema, UploadAppEditResultSchema, UserRole, UserRoleSchema, UserSchema, UserService, file_accrescent_console_v1alpha1_app, file_accrescent_console_v1alpha1_app_draft, file_accrescent_console_v1alpha1_app_draft_service, file_accrescent_console_v1alpha1_app_edit, file_accrescent_console_v1alpha1_app_edit_service, file_accrescent_console_v1alpha1_app_package, file_accrescent_console_v1alpha1_app_service, file_accrescent_console_v1alpha1_create_app_draft_listing_icon_upload_operation_request, file_accrescent_console_v1alpha1_create_app_draft_listing_icon_upload_operation_response, file_accrescent_console_v1alpha1_create_app_draft_listing_request, file_accrescent_console_v1alpha1_create_app_draft_listing_response, file_accrescent_console_v1alpha1_create_app_draft_request, file_accrescent_console_v1alpha1_create_app_draft_response, file_accrescent_console_v1alpha1_create_app_draft_review_request, file_accrescent_console_v1alpha1_create_app_draft_review_response, file_accrescent_console_v1alpha1_create_app_draft_upload_operation_request, file_accrescent_console_v1alpha1_create_app_draft_upload_operation_response, file_accrescent_console_v1alpha1_create_app_edit_listing_icon_upload_operation_request, file_accrescent_console_v1alpha1_create_app_edit_listing_icon_upload_operation_response, file_accrescent_console_v1alpha1_create_app_edit_listing_request, file_accrescent_console_v1alpha1_create_app_edit_listing_response, file_accrescent_console_v1alpha1_create_app_edit_request, file_accrescent_console_v1alpha1_create_app_edit_response, file_accrescent_console_v1alpha1_create_app_edit_review_request, file_accrescent_console_v1alpha1_create_app_edit_review_response, file_accrescent_console_v1alpha1_create_app_edit_upload_operation_request, file_accrescent_console_v1alpha1_create_app_edit_upload_operation_response, file_accrescent_console_v1alpha1_delete_app_draft_listing_request, file_accrescent_console_v1alpha1_delete_app_draft_listing_response, file_accrescent_console_v1alpha1_delete_app_draft_request, file_accrescent_console_v1alpha1_delete_app_draft_response, file_accrescent_console_v1alpha1_delete_app_edit_listing_request, file_accrescent_console_v1alpha1_delete_app_edit_listing_response, file_accrescent_console_v1alpha1_delete_app_edit_request, file_accrescent_console_v1alpha1_delete_app_edit_response, file_accrescent_console_v1alpha1_error_reason, file_accrescent_console_v1alpha1_get_app_draft_download_info_request, file_accrescent_console_v1alpha1_get_app_draft_download_info_response, file_accrescent_console_v1alpha1_get_app_draft_listing_icon_download_info_request, file_accrescent_console_v1alpha1_get_app_draft_listing_icon_download_info_response, file_accrescent_console_v1alpha1_get_app_draft_request, file_accrescent_console_v1alpha1_get_app_draft_response, file_accrescent_console_v1alpha1_get_app_edit_download_info_request, file_accrescent_console_v1alpha1_get_app_edit_download_info_response, file_accrescent_console_v1alpha1_get_app_edit_request, file_accrescent_console_v1alpha1_get_app_edit_response, file_accrescent_console_v1alpha1_get_app_request, file_accrescent_console_v1alpha1_get_app_response, file_accrescent_console_v1alpha1_get_organization_request, file_accrescent_console_v1alpha1_get_organization_response, file_accrescent_console_v1alpha1_get_self_request, file_accrescent_console_v1alpha1_get_self_response, file_accrescent_console_v1alpha1_list_app_drafts_request, file_accrescent_console_v1alpha1_list_app_drafts_response, file_accrescent_console_v1alpha1_list_app_edits_request, file_accrescent_console_v1alpha1_list_app_edits_response, file_accrescent_console_v1alpha1_list_apps_request, file_accrescent_console_v1alpha1_list_apps_response, file_accrescent_console_v1alpha1_list_organizations_request, file_accrescent_console_v1alpha1_list_organizations_response, file_accrescent_console_v1alpha1_organization, file_accrescent_console_v1alpha1_organization_service, file_accrescent_console_v1alpha1_publish_app_draft_request, file_accrescent_console_v1alpha1_publish_app_draft_response, file_accrescent_console_v1alpha1_publish_app_draft_result, file_accrescent_console_v1alpha1_publish_app_edit_result, file_accrescent_console_v1alpha1_rejection_reason, file_accrescent_console_v1alpha1_review_service, file_accrescent_console_v1alpha1_submit_app_draft_request, file_accrescent_console_v1alpha1_submit_app_draft_response, file_accrescent_console_v1alpha1_submit_app_edit_request, file_accrescent_console_v1alpha1_submit_app_edit_response, file_accrescent_console_v1alpha1_update_app_draft_request, file_accrescent_console_v1alpha1_update_app_draft_response, file_accrescent_console_v1alpha1_update_app_edit_request, file_accrescent_console_v1alpha1_update_app_edit_response, file_accrescent_console_v1alpha1_update_app_request, file_accrescent_console_v1alpha1_update_app_response, file_accrescent_console_v1alpha1_update_user_request, file_accrescent_console_v1alpha1_update_user_response, file_accrescent_console_v1alpha1_upload_app_draft_listing_icon_result, file_accrescent_console_v1alpha1_upload_app_draft_result, file_accrescent_console_v1alpha1_upload_app_edit_listing_icon_result, file_accrescent_console_v1alpha1_upload_app_edit_result, file_accrescent_console_v1alpha1_user, file_accrescent_console_v1alpha1_user_role, file_accrescent_console_v1alpha1_user_service };
3021
+ export type { App, AppDraft, AppEdit, AppPackage, CreateAppDraftListingIconUploadOperationRequest, CreateAppDraftListingIconUploadOperationResponse, CreateAppDraftListingRequest, CreateAppDraftListingResponse, CreateAppDraftRequest, CreateAppDraftResponse, CreateAppDraftReviewRequest, CreateAppDraftReviewResponse, CreateAppDraftUploadOperationRequest, CreateAppDraftUploadOperationResponse, CreateAppEditListingIconUploadOperationRequest, CreateAppEditListingIconUploadOperationResponse, CreateAppEditListingRequest, CreateAppEditListingResponse, CreateAppEditRequest, CreateAppEditResponse, CreateAppEditReviewRequest, CreateAppEditReviewResponse, CreateAppEditUploadOperationRequest, CreateAppEditUploadOperationResponse, DeleteAppDraftListingRequest, DeleteAppDraftListingResponse, DeleteAppDraftRequest, DeleteAppDraftResponse, DeleteAppEditListingRequest, DeleteAppEditListingResponse, DeleteAppEditRequest, DeleteAppEditResponse, GetAppDraftDownloadInfoRequest, GetAppDraftDownloadInfoResponse, GetAppDraftListingIconDownloadInfoRequest, GetAppDraftListingIconDownloadInfoResponse, GetAppDraftRequest, GetAppDraftResponse, GetAppEditDownloadInfoRequest, GetAppEditDownloadInfoResponse, GetAppEditRequest, GetAppEditResponse, GetAppRequest, GetAppResponse, GetOrganizationRequest, GetOrganizationResponse, GetSelfRequest, GetSelfResponse, ListAppDraftsRequest, ListAppDraftsResponse, ListAppEditsRequest, ListAppEditsResponse, ListAppsRequest, ListAppsResponse, ListOrganizationsRequest, ListOrganizationsResponse, Organization, PublishAppDraftRequest, PublishAppDraftResponse, PublishAppDraftResult, PublishAppEditResult, RejectionReason, SubmitAppDraftRequest, SubmitAppDraftResponse, SubmitAppEditRequest, SubmitAppEditResponse, UpdateAppDraftRequest, UpdateAppDraftResponse, UpdateAppEditRequest, UpdateAppEditResponse, UpdateAppRequest, UpdateAppResponse, UpdateUserRequest, UpdateUserResponse, UploadAppDraftListingIconResult, UploadAppDraftResult, UploadAppEditListingIconResult, UploadAppEditResult, User };