@eide/foir-proto-ts 0.20.0 → 0.22.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.
@@ -0,0 +1,1599 @@
1
+ // @generated by protoc-gen-es v2.11.0 with parameter "import_extension=js"
2
+ // @generated from file apps/v1/apps_service.proto (package apps.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
6
+ import type { JsonObject, Message } from "@bufbuild/protobuf";
7
+ import type { AppConfig, Credentials_Strategy } from "./apps_pb.js";
8
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
9
+
10
+ /**
11
+ * Describes the file apps/v1/apps_service.proto.
12
+ */
13
+ export declare const file_apps_v1_apps_service: GenFile;
14
+
15
+ /**
16
+ * @generated from message apps.v1.App
17
+ */
18
+ export declare type App = Message<"apps.v1.App"> & {
19
+ /**
20
+ * @generated from field: string id = 1;
21
+ */
22
+ id: string;
23
+
24
+ /**
25
+ * @generated from field: string tenant_id = 2;
26
+ */
27
+ tenantId: string;
28
+
29
+ /**
30
+ * @generated from field: string project_id = 3;
31
+ */
32
+ projectId: string;
33
+
34
+ /**
35
+ * kebab-case; matches manifest.name
36
+ *
37
+ * @generated from field: string name = 4;
38
+ */
39
+ name: string;
40
+
41
+ /**
42
+ * @generated from field: string manifest_url = 5;
43
+ */
44
+ manifestUrl: string;
45
+
46
+ /**
47
+ * content hash of snapshot
48
+ *
49
+ * @generated from field: string manifest_hash = 6;
50
+ */
51
+ manifestHash: string;
52
+
53
+ /**
54
+ * decoded snapshot
55
+ *
56
+ * @generated from field: apps.v1.AppConfig manifest = 7;
57
+ */
58
+ manifest?: AppConfig;
59
+
60
+ /**
61
+ * @generated from field: google.protobuf.Struct settings = 8;
62
+ */
63
+ settings?: JsonObject;
64
+
65
+ /**
66
+ * see SourceMapping / SinkMapping
67
+ *
68
+ * @generated from field: google.protobuf.Struct mappings = 9;
69
+ */
70
+ mappings?: JsonObject;
71
+
72
+ /**
73
+ * @generated from field: bool enabled = 10;
74
+ */
75
+ enabled: boolean;
76
+
77
+ /**
78
+ * @generated from field: google.protobuf.Timestamp installed_at = 11;
79
+ */
80
+ installedAt?: Timestamp;
81
+
82
+ /**
83
+ * @generated from field: optional string installed_by = 12;
84
+ */
85
+ installedBy?: string;
86
+
87
+ /**
88
+ * @generated from field: google.protobuf.Timestamp updated_at = 13;
89
+ */
90
+ updatedAt?: Timestamp;
91
+ };
92
+
93
+ /**
94
+ * Describes the message apps.v1.App.
95
+ * Use `create(AppSchema)` to create a new message.
96
+ */
97
+ export declare const AppSchema: GenMessage<App>;
98
+
99
+ /**
100
+ * Per-source mapping chosen by the admin/CLI at install time.
101
+ *
102
+ * @generated from message apps.v1.SourceMapping
103
+ */
104
+ export declare type SourceMapping = Message<"apps.v1.SourceMapping"> & {
105
+ /**
106
+ * project model key
107
+ *
108
+ * @generated from field: string to_model = 1;
109
+ */
110
+ toModel: string;
111
+
112
+ /**
113
+ * mapped-to field on the model
114
+ *
115
+ * @generated from field: string natural_key = 2;
116
+ */
117
+ naturalKey: string;
118
+
119
+ /**
120
+ * app-field-name → model-field-key
121
+ *
122
+ * @generated from field: map<string, string> fields = 3;
123
+ */
124
+ fields: { [key: string]: string };
125
+ };
126
+
127
+ /**
128
+ * Describes the message apps.v1.SourceMapping.
129
+ * Use `create(SourceMappingSchema)` to create a new message.
130
+ */
131
+ export declare const SourceMappingSchema: GenMessage<SourceMapping>;
132
+
133
+ /**
134
+ * Per-sink mapping chosen by the admin/CLI at install time.
135
+ *
136
+ * @generated from message apps.v1.SinkMapping
137
+ */
138
+ export declare type SinkMapping = Message<"apps.v1.SinkMapping"> & {
139
+ /**
140
+ * @generated from field: string to_model = 1;
141
+ */
142
+ toModel: string;
143
+
144
+ /**
145
+ * @generated from field: string natural_key = 2;
146
+ */
147
+ naturalKey: string;
148
+
149
+ /**
150
+ * @generated from field: map<string, string> fields = 3;
151
+ */
152
+ fields: { [key: string]: string };
153
+ };
154
+
155
+ /**
156
+ * Describes the message apps.v1.SinkMapping.
157
+ * Use `create(SinkMappingSchema)` to create a new message.
158
+ */
159
+ export declare const SinkMappingSchema: GenMessage<SinkMapping>;
160
+
161
+ /**
162
+ * Per-placement mapping choice for TARGET_FIELD placements with
163
+ * field_selected_at_install=true.
164
+ *
165
+ * @generated from message apps.v1.PlacementFieldChoice
166
+ */
167
+ export declare type PlacementFieldChoice = Message<"apps.v1.PlacementFieldChoice"> & {
168
+ /**
169
+ * resolved model key (or "*")
170
+ *
171
+ * @generated from field: string model = 1;
172
+ */
173
+ model: string;
174
+
175
+ /**
176
+ * field key chosen by admin
177
+ *
178
+ * @generated from field: string field = 2;
179
+ */
180
+ field: string;
181
+ };
182
+
183
+ /**
184
+ * Describes the message apps.v1.PlacementFieldChoice.
185
+ * Use `create(PlacementFieldChoiceSchema)` to create a new message.
186
+ */
187
+ export declare const PlacementFieldChoiceSchema: GenMessage<PlacementFieldChoice>;
188
+
189
+ /**
190
+ * Install preview returned from InstallApp (phase 1). The admin UI renders
191
+ * this between the two calls; CLI submits ConfirmInstallApp back-to-back.
192
+ *
193
+ * @generated from message apps.v1.AppInstallPreview
194
+ */
195
+ export declare type AppInstallPreview = Message<"apps.v1.AppInstallPreview"> & {
196
+ /**
197
+ * @generated from field: apps.v1.AppConfig manifest = 1;
198
+ */
199
+ manifest?: AppConfig;
200
+
201
+ /**
202
+ * @generated from field: string manifest_hash = 2;
203
+ */
204
+ manifestHash: string;
205
+
206
+ /**
207
+ * namespaced keys (<appName>/<opKey>)
208
+ *
209
+ * @generated from field: repeated string operations_to_create = 3;
210
+ */
211
+ operationsToCreate: string[];
212
+
213
+ /**
214
+ * @generated from field: repeated string hooks_to_create = 4;
215
+ */
216
+ hooksToCreate: string[];
217
+
218
+ /**
219
+ * placement keys
220
+ *
221
+ * @generated from field: repeated string placements_to_create = 5;
222
+ */
223
+ placementsToCreate: string[];
224
+
225
+ /**
226
+ * @generated from field: apps.v1.Credentials.Strategy credential_strategy = 6;
227
+ */
228
+ credentialStrategy: Credentials_Strategy;
229
+
230
+ /**
231
+ * names the admin/CLI must supply mappings for
232
+ *
233
+ * @generated from field: repeated string source_types_to_map = 7;
234
+ */
235
+ sourceTypesToMap: string[];
236
+
237
+ /**
238
+ * @generated from field: repeated string sink_contracts_to_map = 8;
239
+ */
240
+ sinkContractsToMap: string[];
241
+
242
+ /**
243
+ * @generated from field: repeated string placements_requiring_field_choice = 9;
244
+ */
245
+ placementsRequiringFieldChoice: string[];
246
+
247
+ /**
248
+ * gateway route that will be registered
249
+ *
250
+ * @generated from field: string webhook_url = 10;
251
+ */
252
+ webhookUrl: string;
253
+ };
254
+
255
+ /**
256
+ * Describes the message apps.v1.AppInstallPreview.
257
+ * Use `create(AppInstallPreviewSchema)` to create a new message.
258
+ */
259
+ export declare const AppInstallPreviewSchema: GenMessage<AppInstallPreview>;
260
+
261
+ /**
262
+ * @generated from message apps.v1.ListAppsRequest
263
+ */
264
+ export declare type ListAppsRequest = Message<"apps.v1.ListAppsRequest"> & {
265
+ /**
266
+ * @generated from field: string tenant_id = 1;
267
+ */
268
+ tenantId: string;
269
+
270
+ /**
271
+ * @generated from field: string project_id = 2;
272
+ */
273
+ projectId: string;
274
+ };
275
+
276
+ /**
277
+ * Describes the message apps.v1.ListAppsRequest.
278
+ * Use `create(ListAppsRequestSchema)` to create a new message.
279
+ */
280
+ export declare const ListAppsRequestSchema: GenMessage<ListAppsRequest>;
281
+
282
+ /**
283
+ * @generated from message apps.v1.ListAppsResponse
284
+ */
285
+ export declare type ListAppsResponse = Message<"apps.v1.ListAppsResponse"> & {
286
+ /**
287
+ * @generated from field: repeated apps.v1.App apps = 1;
288
+ */
289
+ apps: App[];
290
+ };
291
+
292
+ /**
293
+ * Describes the message apps.v1.ListAppsResponse.
294
+ * Use `create(ListAppsResponseSchema)` to create a new message.
295
+ */
296
+ export declare const ListAppsResponseSchema: GenMessage<ListAppsResponse>;
297
+
298
+ /**
299
+ * @generated from message apps.v1.GetAppRequest
300
+ */
301
+ export declare type GetAppRequest = Message<"apps.v1.GetAppRequest"> & {
302
+ /**
303
+ * @generated from field: string tenant_id = 1;
304
+ */
305
+ tenantId: string;
306
+
307
+ /**
308
+ * @generated from field: string project_id = 2;
309
+ */
310
+ projectId: string;
311
+
312
+ /**
313
+ * kebab-case app name
314
+ *
315
+ * @generated from field: string name = 3;
316
+ */
317
+ name: string;
318
+ };
319
+
320
+ /**
321
+ * Describes the message apps.v1.GetAppRequest.
322
+ * Use `create(GetAppRequestSchema)` to create a new message.
323
+ */
324
+ export declare const GetAppRequestSchema: GenMessage<GetAppRequest>;
325
+
326
+ /**
327
+ * @generated from message apps.v1.GetAppResponse
328
+ */
329
+ export declare type GetAppResponse = Message<"apps.v1.GetAppResponse"> & {
330
+ /**
331
+ * @generated from field: apps.v1.App app = 1;
332
+ */
333
+ app?: App;
334
+ };
335
+
336
+ /**
337
+ * Describes the message apps.v1.GetAppResponse.
338
+ * Use `create(GetAppResponseSchema)` to create a new message.
339
+ */
340
+ export declare const GetAppResponseSchema: GenMessage<GetAppResponse>;
341
+
342
+ /**
343
+ * @generated from message apps.v1.InstallAppRequest
344
+ */
345
+ export declare type InstallAppRequest = Message<"apps.v1.InstallAppRequest"> & {
346
+ /**
347
+ * @generated from field: string tenant_id = 1;
348
+ */
349
+ tenantId: string;
350
+
351
+ /**
352
+ * @generated from field: string project_id = 2;
353
+ */
354
+ projectId: string;
355
+
356
+ /**
357
+ * @generated from field: string manifest_url = 3;
358
+ */
359
+ manifestUrl: string;
360
+ };
361
+
362
+ /**
363
+ * Describes the message apps.v1.InstallAppRequest.
364
+ * Use `create(InstallAppRequestSchema)` to create a new message.
365
+ */
366
+ export declare const InstallAppRequestSchema: GenMessage<InstallAppRequest>;
367
+
368
+ /**
369
+ * @generated from message apps.v1.InstallAppResponse
370
+ */
371
+ export declare type InstallAppResponse = Message<"apps.v1.InstallAppResponse"> & {
372
+ /**
373
+ * @generated from field: string install_ticket = 1;
374
+ */
375
+ installTicket: string;
376
+
377
+ /**
378
+ * @generated from field: apps.v1.AppInstallPreview preview = 2;
379
+ */
380
+ preview?: AppInstallPreview;
381
+
382
+ /**
383
+ * @generated from field: google.protobuf.Timestamp expires_at = 3;
384
+ */
385
+ expiresAt?: Timestamp;
386
+ };
387
+
388
+ /**
389
+ * Describes the message apps.v1.InstallAppResponse.
390
+ * Use `create(InstallAppResponseSchema)` to create a new message.
391
+ */
392
+ export declare const InstallAppResponseSchema: GenMessage<InstallAppResponse>;
393
+
394
+ /**
395
+ * @generated from message apps.v1.ConfirmInstallAppRequest
396
+ */
397
+ export declare type ConfirmInstallAppRequest = Message<"apps.v1.ConfirmInstallAppRequest"> & {
398
+ /**
399
+ * @generated from field: string install_ticket = 1;
400
+ */
401
+ installTicket: string;
402
+
403
+ /**
404
+ * REQUIRED for every source type declared in the manifest.
405
+ *
406
+ * @generated from field: map<string, apps.v1.SourceMapping> source_mappings = 2;
407
+ */
408
+ sourceMappings: { [key: string]: SourceMapping };
409
+
410
+ /**
411
+ * REQUIRED for every sink contract declared in the manifest.
412
+ *
413
+ * @generated from field: map<string, apps.v1.SinkMapping> sink_mappings = 3;
414
+ */
415
+ sinkMappings: { [key: string]: SinkMapping };
416
+
417
+ /**
418
+ * OPTIONAL. Admin-provided values for the manifest's settings_schema.
419
+ *
420
+ * @generated from field: optional google.protobuf.Struct settings = 4;
421
+ */
422
+ settings?: JsonObject;
423
+
424
+ /**
425
+ * REQUIRED for every TARGET_FIELD placement with
426
+ * field_selected_at_install=true. Keyed by placement.key.
427
+ *
428
+ * @generated from field: map<string, apps.v1.PlacementFieldChoice> placement_field_choices = 5;
429
+ */
430
+ placementFieldChoices: { [key: string]: PlacementFieldChoice };
431
+ };
432
+
433
+ /**
434
+ * Describes the message apps.v1.ConfirmInstallAppRequest.
435
+ * Use `create(ConfirmInstallAppRequestSchema)` to create a new message.
436
+ */
437
+ export declare const ConfirmInstallAppRequestSchema: GenMessage<ConfirmInstallAppRequest>;
438
+
439
+ /**
440
+ * @generated from message apps.v1.ConfirmInstallAppResponse
441
+ */
442
+ export declare type ConfirmInstallAppResponse = Message<"apps.v1.ConfirmInstallAppResponse"> & {
443
+ /**
444
+ * @generated from field: apps.v1.App app = 1;
445
+ */
446
+ app?: App;
447
+ };
448
+
449
+ /**
450
+ * Describes the message apps.v1.ConfirmInstallAppResponse.
451
+ * Use `create(ConfirmInstallAppResponseSchema)` to create a new message.
452
+ */
453
+ export declare const ConfirmInstallAppResponseSchema: GenMessage<ConfirmInstallAppResponse>;
454
+
455
+ /**
456
+ * @generated from message apps.v1.UpdateAppRequest
457
+ */
458
+ export declare type UpdateAppRequest = Message<"apps.v1.UpdateAppRequest"> & {
459
+ /**
460
+ * @generated from field: string tenant_id = 1;
461
+ */
462
+ tenantId: string;
463
+
464
+ /**
465
+ * @generated from field: string project_id = 2;
466
+ */
467
+ projectId: string;
468
+
469
+ /**
470
+ * @generated from field: string name = 3;
471
+ */
472
+ name: string;
473
+ };
474
+
475
+ /**
476
+ * Describes the message apps.v1.UpdateAppRequest.
477
+ * Use `create(UpdateAppRequestSchema)` to create a new message.
478
+ */
479
+ export declare const UpdateAppRequestSchema: GenMessage<UpdateAppRequest>;
480
+
481
+ /**
482
+ * @generated from message apps.v1.UpdateAppResponse
483
+ */
484
+ export declare type UpdateAppResponse = Message<"apps.v1.UpdateAppResponse"> & {
485
+ /**
486
+ * @generated from field: string new_manifest_hash = 1;
487
+ */
488
+ newManifestHash: string;
489
+
490
+ /**
491
+ * @generated from field: apps.v1.AppConfig new_manifest = 2;
492
+ */
493
+ newManifest?: AppConfig;
494
+
495
+ /**
496
+ * @generated from field: repeated apps.v1.ManifestChange changes = 3;
497
+ */
498
+ changes: ManifestChange[];
499
+
500
+ /**
501
+ * @generated from field: bool no_changes = 4;
502
+ */
503
+ noChanges: boolean;
504
+ };
505
+
506
+ /**
507
+ * Describes the message apps.v1.UpdateAppResponse.
508
+ * Use `create(UpdateAppResponseSchema)` to create a new message.
509
+ */
510
+ export declare const UpdateAppResponseSchema: GenMessage<UpdateAppResponse>;
511
+
512
+ /**
513
+ * @generated from message apps.v1.ManifestChange
514
+ */
515
+ export declare type ManifestChange = Message<"apps.v1.ManifestChange"> & {
516
+ /**
517
+ * @generated from field: apps.v1.ManifestChange.Class class = 1;
518
+ */
519
+ class: ManifestChange_Class;
520
+
521
+ /**
522
+ * e.g. "operations[shopify-sync].capabilities"
523
+ *
524
+ * @generated from field: string path = 2;
525
+ */
526
+ path: string;
527
+
528
+ /**
529
+ * @generated from field: string description = 3;
530
+ */
531
+ description: string;
532
+ };
533
+
534
+ /**
535
+ * Describes the message apps.v1.ManifestChange.
536
+ * Use `create(ManifestChangeSchema)` to create a new message.
537
+ */
538
+ export declare const ManifestChangeSchema: GenMessage<ManifestChange>;
539
+
540
+ /**
541
+ * @generated from enum apps.v1.ManifestChange.Class
542
+ */
543
+ export enum ManifestChange_Class {
544
+ /**
545
+ * @generated from enum value: CLASS_UNSPECIFIED = 0;
546
+ */
547
+ UNSPECIFIED = 0,
548
+
549
+ /**
550
+ * @generated from enum value: CLASS_SAFE_AUTO = 1;
551
+ */
552
+ SAFE_AUTO = 1,
553
+
554
+ /**
555
+ * @generated from enum value: CLASS_REQUIRES_CONFIRMATION = 2;
556
+ */
557
+ REQUIRES_CONFIRMATION = 2,
558
+
559
+ /**
560
+ * @generated from enum value: CLASS_REJECTED = 3;
561
+ */
562
+ REJECTED = 3,
563
+ }
564
+
565
+ /**
566
+ * Describes the enum apps.v1.ManifestChange.Class.
567
+ */
568
+ export declare const ManifestChange_ClassSchema: GenEnum<ManifestChange_Class>;
569
+
570
+ /**
571
+ * @generated from message apps.v1.ConfirmUpdateAppRequest
572
+ */
573
+ export declare type ConfirmUpdateAppRequest = Message<"apps.v1.ConfirmUpdateAppRequest"> & {
574
+ /**
575
+ * @generated from field: string tenant_id = 1;
576
+ */
577
+ tenantId: string;
578
+
579
+ /**
580
+ * @generated from field: string project_id = 2;
581
+ */
582
+ projectId: string;
583
+
584
+ /**
585
+ * @generated from field: string name = 3;
586
+ */
587
+ name: string;
588
+
589
+ /**
590
+ * must match the one returned from UpdateApp
591
+ *
592
+ * @generated from field: string new_manifest_hash = 4;
593
+ */
594
+ newManifestHash: string;
595
+ };
596
+
597
+ /**
598
+ * Describes the message apps.v1.ConfirmUpdateAppRequest.
599
+ * Use `create(ConfirmUpdateAppRequestSchema)` to create a new message.
600
+ */
601
+ export declare const ConfirmUpdateAppRequestSchema: GenMessage<ConfirmUpdateAppRequest>;
602
+
603
+ /**
604
+ * @generated from message apps.v1.ConfirmUpdateAppResponse
605
+ */
606
+ export declare type ConfirmUpdateAppResponse = Message<"apps.v1.ConfirmUpdateAppResponse"> & {
607
+ /**
608
+ * @generated from field: apps.v1.App app = 1;
609
+ */
610
+ app?: App;
611
+ };
612
+
613
+ /**
614
+ * Describes the message apps.v1.ConfirmUpdateAppResponse.
615
+ * Use `create(ConfirmUpdateAppResponseSchema)` to create a new message.
616
+ */
617
+ export declare const ConfirmUpdateAppResponseSchema: GenMessage<ConfirmUpdateAppResponse>;
618
+
619
+ /**
620
+ * @generated from message apps.v1.UninstallAppRequest
621
+ */
622
+ export declare type UninstallAppRequest = Message<"apps.v1.UninstallAppRequest"> & {
623
+ /**
624
+ * @generated from field: string tenant_id = 1;
625
+ */
626
+ tenantId: string;
627
+
628
+ /**
629
+ * @generated from field: string project_id = 2;
630
+ */
631
+ projectId: string;
632
+
633
+ /**
634
+ * @generated from field: string name = 3;
635
+ */
636
+ name: string;
637
+
638
+ /**
639
+ * skip middleware __uninstall call
640
+ *
641
+ * @generated from field: bool force = 4;
642
+ */
643
+ force: boolean;
644
+ };
645
+
646
+ /**
647
+ * Describes the message apps.v1.UninstallAppRequest.
648
+ * Use `create(UninstallAppRequestSchema)` to create a new message.
649
+ */
650
+ export declare const UninstallAppRequestSchema: GenMessage<UninstallAppRequest>;
651
+
652
+ /**
653
+ * @generated from message apps.v1.UninstallAppResponse
654
+ */
655
+ export declare type UninstallAppResponse = Message<"apps.v1.UninstallAppResponse"> & {
656
+ /**
657
+ * @generated from field: bool success = 1;
658
+ */
659
+ success: boolean;
660
+
661
+ /**
662
+ * @generated from field: bool forced = 2;
663
+ */
664
+ forced: boolean;
665
+ };
666
+
667
+ /**
668
+ * Describes the message apps.v1.UninstallAppResponse.
669
+ * Use `create(UninstallAppResponseSchema)` to create a new message.
670
+ */
671
+ export declare const UninstallAppResponseSchema: GenMessage<UninstallAppResponse>;
672
+
673
+ /**
674
+ * @generated from message apps.v1.SetAppMappingRequest
675
+ */
676
+ export declare type SetAppMappingRequest = Message<"apps.v1.SetAppMappingRequest"> & {
677
+ /**
678
+ * @generated from field: string tenant_id = 1;
679
+ */
680
+ tenantId: string;
681
+
682
+ /**
683
+ * @generated from field: string project_id = 2;
684
+ */
685
+ projectId: string;
686
+
687
+ /**
688
+ * @generated from field: string name = 3;
689
+ */
690
+ name: string;
691
+
692
+ /**
693
+ * @generated from field: map<string, apps.v1.SourceMapping> source_mappings = 4;
694
+ */
695
+ sourceMappings: { [key: string]: SourceMapping };
696
+
697
+ /**
698
+ * @generated from field: map<string, apps.v1.SinkMapping> sink_mappings = 5;
699
+ */
700
+ sinkMappings: { [key: string]: SinkMapping };
701
+
702
+ /**
703
+ * @generated from field: map<string, apps.v1.PlacementFieldChoice> placement_field_choices = 6;
704
+ */
705
+ placementFieldChoices: { [key: string]: PlacementFieldChoice };
706
+ };
707
+
708
+ /**
709
+ * Describes the message apps.v1.SetAppMappingRequest.
710
+ * Use `create(SetAppMappingRequestSchema)` to create a new message.
711
+ */
712
+ export declare const SetAppMappingRequestSchema: GenMessage<SetAppMappingRequest>;
713
+
714
+ /**
715
+ * @generated from message apps.v1.SetAppMappingResponse
716
+ */
717
+ export declare type SetAppMappingResponse = Message<"apps.v1.SetAppMappingResponse"> & {
718
+ /**
719
+ * @generated from field: apps.v1.App app = 1;
720
+ */
721
+ app?: App;
722
+ };
723
+
724
+ /**
725
+ * Describes the message apps.v1.SetAppMappingResponse.
726
+ * Use `create(SetAppMappingResponseSchema)` to create a new message.
727
+ */
728
+ export declare const SetAppMappingResponseSchema: GenMessage<SetAppMappingResponse>;
729
+
730
+ /**
731
+ * @generated from message apps.v1.ValidateManifestRequest
732
+ */
733
+ export declare type ValidateManifestRequest = Message<"apps.v1.ValidateManifestRequest"> & {
734
+ /**
735
+ * @generated from oneof apps.v1.ValidateManifestRequest.source
736
+ */
737
+ source: {
738
+ /**
739
+ * fetch + validate
740
+ *
741
+ * @generated from field: string manifest_url = 1;
742
+ */
743
+ value: string;
744
+ case: "manifestUrl";
745
+ } | {
746
+ /**
747
+ * inline (stringified JSON)
748
+ *
749
+ * @generated from field: string manifest_json = 2;
750
+ */
751
+ value: string;
752
+ case: "manifestJson";
753
+ } | { case: undefined; value?: undefined };
754
+ };
755
+
756
+ /**
757
+ * Describes the message apps.v1.ValidateManifestRequest.
758
+ * Use `create(ValidateManifestRequestSchema)` to create a new message.
759
+ */
760
+ export declare const ValidateManifestRequestSchema: GenMessage<ValidateManifestRequest>;
761
+
762
+ /**
763
+ * @generated from message apps.v1.ValidationIssue
764
+ */
765
+ export declare type ValidationIssue = Message<"apps.v1.ValidationIssue"> & {
766
+ /**
767
+ * @generated from field: apps.v1.ValidationIssue.Severity severity = 1;
768
+ */
769
+ severity: ValidationIssue_Severity;
770
+
771
+ /**
772
+ * @generated from field: string path = 2;
773
+ */
774
+ path: string;
775
+
776
+ /**
777
+ * @generated from field: string message = 3;
778
+ */
779
+ message: string;
780
+ };
781
+
782
+ /**
783
+ * Describes the message apps.v1.ValidationIssue.
784
+ * Use `create(ValidationIssueSchema)` to create a new message.
785
+ */
786
+ export declare const ValidationIssueSchema: GenMessage<ValidationIssue>;
787
+
788
+ /**
789
+ * @generated from enum apps.v1.ValidationIssue.Severity
790
+ */
791
+ export enum ValidationIssue_Severity {
792
+ /**
793
+ * @generated from enum value: SEVERITY_UNSPECIFIED = 0;
794
+ */
795
+ UNSPECIFIED = 0,
796
+
797
+ /**
798
+ * @generated from enum value: SEVERITY_ERROR = 1;
799
+ */
800
+ ERROR = 1,
801
+
802
+ /**
803
+ * @generated from enum value: SEVERITY_WARNING = 2;
804
+ */
805
+ WARNING = 2,
806
+ }
807
+
808
+ /**
809
+ * Describes the enum apps.v1.ValidationIssue.Severity.
810
+ */
811
+ export declare const ValidationIssue_SeveritySchema: GenEnum<ValidationIssue_Severity>;
812
+
813
+ /**
814
+ * @generated from message apps.v1.ValidateManifestResponse
815
+ */
816
+ export declare type ValidateManifestResponse = Message<"apps.v1.ValidateManifestResponse"> & {
817
+ /**
818
+ * @generated from field: repeated apps.v1.ValidationIssue issues = 1;
819
+ */
820
+ issues: ValidationIssue[];
821
+
822
+ /**
823
+ * @generated from field: bool ok = 2;
824
+ */
825
+ ok: boolean;
826
+ };
827
+
828
+ /**
829
+ * Describes the message apps.v1.ValidateManifestResponse.
830
+ * Use `create(ValidateManifestResponseSchema)` to create a new message.
831
+ */
832
+ export declare const ValidateManifestResponseSchema: GenMessage<ValidateManifestResponse>;
833
+
834
+ /**
835
+ * @generated from message apps.v1.TriggerOperationRequest
836
+ */
837
+ export declare type TriggerOperationRequest = Message<"apps.v1.TriggerOperationRequest"> & {
838
+ /**
839
+ * @generated from field: string tenant_id = 1;
840
+ */
841
+ tenantId: string;
842
+
843
+ /**
844
+ * @generated from field: string project_id = 2;
845
+ */
846
+ projectId: string;
847
+
848
+ /**
849
+ * Operation key in its stored form — for app-owned operations this is
850
+ * the namespaced <appName>/<opKey>; for project-written operations,
851
+ * the bare key.
852
+ *
853
+ * @generated from field: string operation_key = 3;
854
+ */
855
+ operationKey: string;
856
+
857
+ /**
858
+ * @generated from field: optional google.protobuf.Struct input = 4;
859
+ */
860
+ input?: JsonObject;
861
+ };
862
+
863
+ /**
864
+ * Describes the message apps.v1.TriggerOperationRequest.
865
+ * Use `create(TriggerOperationRequestSchema)` to create a new message.
866
+ */
867
+ export declare const TriggerOperationRequestSchema: GenMessage<TriggerOperationRequest>;
868
+
869
+ /**
870
+ * @generated from message apps.v1.TriggerOperationResponse
871
+ */
872
+ export declare type TriggerOperationResponse = Message<"apps.v1.TriggerOperationResponse"> & {
873
+ /**
874
+ * @generated from field: string execution_id = 1;
875
+ */
876
+ executionId: string;
877
+ };
878
+
879
+ /**
880
+ * Describes the message apps.v1.TriggerOperationResponse.
881
+ * Use `create(TriggerOperationResponseSchema)` to create a new message.
882
+ */
883
+ export declare const TriggerOperationResponseSchema: GenMessage<TriggerOperationResponse>;
884
+
885
+ /**
886
+ * @generated from message apps.v1.WriteAppCredentialRequest
887
+ */
888
+ export declare type WriteAppCredentialRequest = Message<"apps.v1.WriteAppCredentialRequest"> & {
889
+ /**
890
+ * @generated from field: string tenant_id = 1;
891
+ */
892
+ tenantId: string;
893
+
894
+ /**
895
+ * @generated from field: string project_id = 2;
896
+ */
897
+ projectId: string;
898
+
899
+ /**
900
+ * @generated from field: string app_name = 3;
901
+ */
902
+ appName: string;
903
+
904
+ /**
905
+ * encrypted by platform before insert
906
+ *
907
+ * @generated from field: google.protobuf.Struct values = 4;
908
+ */
909
+ values?: JsonObject;
910
+ };
911
+
912
+ /**
913
+ * Describes the message apps.v1.WriteAppCredentialRequest.
914
+ * Use `create(WriteAppCredentialRequestSchema)` to create a new message.
915
+ */
916
+ export declare const WriteAppCredentialRequestSchema: GenMessage<WriteAppCredentialRequest>;
917
+
918
+ /**
919
+ * @generated from message apps.v1.WriteAppCredentialResponse
920
+ */
921
+ export declare type WriteAppCredentialResponse = Message<"apps.v1.WriteAppCredentialResponse"> & {
922
+ /**
923
+ * @generated from field: bool success = 1;
924
+ */
925
+ success: boolean;
926
+ };
927
+
928
+ /**
929
+ * Describes the message apps.v1.WriteAppCredentialResponse.
930
+ * Use `create(WriteAppCredentialResponseSchema)` to create a new message.
931
+ */
932
+ export declare const WriteAppCredentialResponseSchema: GenMessage<WriteAppCredentialResponse>;
933
+
934
+ /**
935
+ * @generated from message apps.v1.GetAppCredentialRequest
936
+ */
937
+ export declare type GetAppCredentialRequest = Message<"apps.v1.GetAppCredentialRequest"> & {
938
+ /**
939
+ * @generated from field: string tenant_id = 1;
940
+ */
941
+ tenantId: string;
942
+
943
+ /**
944
+ * @generated from field: string project_id = 2;
945
+ */
946
+ projectId: string;
947
+
948
+ /**
949
+ * @generated from field: string app_name = 3;
950
+ */
951
+ appName: string;
952
+ };
953
+
954
+ /**
955
+ * Describes the message apps.v1.GetAppCredentialRequest.
956
+ * Use `create(GetAppCredentialRequestSchema)` to create a new message.
957
+ */
958
+ export declare const GetAppCredentialRequestSchema: GenMessage<GetAppCredentialRequest>;
959
+
960
+ /**
961
+ * @generated from message apps.v1.GetAppCredentialResponse
962
+ */
963
+ export declare type GetAppCredentialResponse = Message<"apps.v1.GetAppCredentialResponse"> & {
964
+ /**
965
+ * @generated from field: apps.v1.Credentials.Strategy strategy = 1;
966
+ */
967
+ strategy: Credentials_Strategy;
968
+
969
+ /**
970
+ * @generated from field: google.protobuf.Struct values = 2;
971
+ */
972
+ values?: JsonObject;
973
+
974
+ /**
975
+ * false if the slot exists but is empty
976
+ *
977
+ * @generated from field: bool populated = 3;
978
+ */
979
+ populated: boolean;
980
+ };
981
+
982
+ /**
983
+ * Describes the message apps.v1.GetAppCredentialResponse.
984
+ * Use `create(GetAppCredentialResponseSchema)` to create a new message.
985
+ */
986
+ export declare const GetAppCredentialResponseSchema: GenMessage<GetAppCredentialResponse>;
987
+
988
+ /**
989
+ * @generated from message apps.v1.DeleteAppCredentialRequest
990
+ */
991
+ export declare type DeleteAppCredentialRequest = Message<"apps.v1.DeleteAppCredentialRequest"> & {
992
+ /**
993
+ * @generated from field: string tenant_id = 1;
994
+ */
995
+ tenantId: string;
996
+
997
+ /**
998
+ * @generated from field: string project_id = 2;
999
+ */
1000
+ projectId: string;
1001
+
1002
+ /**
1003
+ * @generated from field: string app_name = 3;
1004
+ */
1005
+ appName: string;
1006
+ };
1007
+
1008
+ /**
1009
+ * Describes the message apps.v1.DeleteAppCredentialRequest.
1010
+ * Use `create(DeleteAppCredentialRequestSchema)` to create a new message.
1011
+ */
1012
+ export declare const DeleteAppCredentialRequestSchema: GenMessage<DeleteAppCredentialRequest>;
1013
+
1014
+ /**
1015
+ * @generated from message apps.v1.DeleteAppCredentialResponse
1016
+ */
1017
+ export declare type DeleteAppCredentialResponse = Message<"apps.v1.DeleteAppCredentialResponse"> & {
1018
+ /**
1019
+ * @generated from field: bool success = 1;
1020
+ */
1021
+ success: boolean;
1022
+ };
1023
+
1024
+ /**
1025
+ * Describes the message apps.v1.DeleteAppCredentialResponse.
1026
+ * Use `create(DeleteAppCredentialResponseSchema)` to create a new message.
1027
+ */
1028
+ export declare const DeleteAppCredentialResponseSchema: GenMessage<DeleteAppCredentialResponse>;
1029
+
1030
+ /**
1031
+ * @generated from message apps.v1.IssueExchangeTicketRequest
1032
+ */
1033
+ export declare type IssueExchangeTicketRequest = Message<"apps.v1.IssueExchangeTicketRequest"> & {
1034
+ /**
1035
+ * @generated from field: string tenant_id = 1;
1036
+ */
1037
+ tenantId: string;
1038
+
1039
+ /**
1040
+ * @generated from field: string project_id = 2;
1041
+ */
1042
+ projectId: string;
1043
+
1044
+ /**
1045
+ * @generated from field: string app_name = 3;
1046
+ */
1047
+ appName: string;
1048
+ };
1049
+
1050
+ /**
1051
+ * Describes the message apps.v1.IssueExchangeTicketRequest.
1052
+ * Use `create(IssueExchangeTicketRequestSchema)` to create a new message.
1053
+ */
1054
+ export declare const IssueExchangeTicketRequestSchema: GenMessage<IssueExchangeTicketRequest>;
1055
+
1056
+ /**
1057
+ * @generated from message apps.v1.IssueExchangeTicketResponse
1058
+ */
1059
+ export declare type IssueExchangeTicketResponse = Message<"apps.v1.IssueExchangeTicketResponse"> & {
1060
+ /**
1061
+ * @generated from field: string ticket = 1;
1062
+ */
1063
+ ticket: string;
1064
+
1065
+ /**
1066
+ * @generated from field: google.protobuf.Timestamp expires_at = 2;
1067
+ */
1068
+ expiresAt?: Timestamp;
1069
+ };
1070
+
1071
+ /**
1072
+ * Describes the message apps.v1.IssueExchangeTicketResponse.
1073
+ * Use `create(IssueExchangeTicketResponseSchema)` to create a new message.
1074
+ */
1075
+ export declare const IssueExchangeTicketResponseSchema: GenMessage<IssueExchangeTicketResponse>;
1076
+
1077
+ /**
1078
+ * @generated from message apps.v1.RedeemExchangeTicketRequest
1079
+ */
1080
+ export declare type RedeemExchangeTicketRequest = Message<"apps.v1.RedeemExchangeTicketRequest"> & {
1081
+ /**
1082
+ * @generated from field: string ticket = 1;
1083
+ */
1084
+ ticket: string;
1085
+ };
1086
+
1087
+ /**
1088
+ * Describes the message apps.v1.RedeemExchangeTicketRequest.
1089
+ * Use `create(RedeemExchangeTicketRequestSchema)` to create a new message.
1090
+ */
1091
+ export declare const RedeemExchangeTicketRequestSchema: GenMessage<RedeemExchangeTicketRequest>;
1092
+
1093
+ /**
1094
+ * @generated from message apps.v1.RedeemExchangeTicketResponse
1095
+ */
1096
+ export declare type RedeemExchangeTicketResponse = Message<"apps.v1.RedeemExchangeTicketResponse"> & {
1097
+ /**
1098
+ * @generated from field: string scoped_token = 1;
1099
+ */
1100
+ scopedToken: string;
1101
+
1102
+ /**
1103
+ * @generated from field: google.protobuf.Timestamp expires_at = 2;
1104
+ */
1105
+ expiresAt?: Timestamp;
1106
+ };
1107
+
1108
+ /**
1109
+ * Describes the message apps.v1.RedeemExchangeTicketResponse.
1110
+ * Use `create(RedeemExchangeTicketResponseSchema)` to create a new message.
1111
+ */
1112
+ export declare const RedeemExchangeTicketResponseSchema: GenMessage<RedeemExchangeTicketResponse>;
1113
+
1114
+ /**
1115
+ * @generated from message apps.v1.RefreshScopedTokenRequest
1116
+ */
1117
+ export declare type RefreshScopedTokenRequest = Message<"apps.v1.RefreshScopedTokenRequest"> & {
1118
+ /**
1119
+ * @generated from field: string current_token = 1;
1120
+ */
1121
+ currentToken: string;
1122
+ };
1123
+
1124
+ /**
1125
+ * Describes the message apps.v1.RefreshScopedTokenRequest.
1126
+ * Use `create(RefreshScopedTokenRequestSchema)` to create a new message.
1127
+ */
1128
+ export declare const RefreshScopedTokenRequestSchema: GenMessage<RefreshScopedTokenRequest>;
1129
+
1130
+ /**
1131
+ * @generated from message apps.v1.RefreshScopedTokenResponse
1132
+ */
1133
+ export declare type RefreshScopedTokenResponse = Message<"apps.v1.RefreshScopedTokenResponse"> & {
1134
+ /**
1135
+ * @generated from field: string scoped_token = 1;
1136
+ */
1137
+ scopedToken: string;
1138
+
1139
+ /**
1140
+ * @generated from field: google.protobuf.Timestamp expires_at = 2;
1141
+ */
1142
+ expiresAt?: Timestamp;
1143
+ };
1144
+
1145
+ /**
1146
+ * Describes the message apps.v1.RefreshScopedTokenResponse.
1147
+ * Use `create(RefreshScopedTokenResponseSchema)` to create a new message.
1148
+ */
1149
+ export declare const RefreshScopedTokenResponseSchema: GenMessage<RefreshScopedTokenResponse>;
1150
+
1151
+ /**
1152
+ * @generated from message apps.v1.AppStatus
1153
+ */
1154
+ export declare type AppStatus = Message<"apps.v1.AppStatus"> & {
1155
+ /**
1156
+ * @generated from field: string tenant_id = 1;
1157
+ */
1158
+ tenantId: string;
1159
+
1160
+ /**
1161
+ * @generated from field: string project_id = 2;
1162
+ */
1163
+ projectId: string;
1164
+
1165
+ /**
1166
+ * @generated from field: string app_name = 3;
1167
+ */
1168
+ appName: string;
1169
+
1170
+ /**
1171
+ * @generated from field: optional google.protobuf.Timestamp last_sync_at = 4;
1172
+ */
1173
+ lastSyncAt?: Timestamp;
1174
+
1175
+ /**
1176
+ * @generated from field: optional int64 last_sync_duration_ms = 5;
1177
+ */
1178
+ lastSyncDurationMs?: bigint;
1179
+
1180
+ /**
1181
+ * @generated from field: optional int64 last_sync_record_count = 6;
1182
+ */
1183
+ lastSyncRecordCount?: bigint;
1184
+
1185
+ /**
1186
+ * @generated from field: optional string last_error = 7;
1187
+ */
1188
+ lastError?: string;
1189
+
1190
+ /**
1191
+ * @generated from field: optional google.protobuf.Timestamp last_error_at = 8;
1192
+ */
1193
+ lastErrorAt?: Timestamp;
1194
+
1195
+ /**
1196
+ * @generated from field: string subscription_health = 9;
1197
+ */
1198
+ subscriptionHealth: string;
1199
+
1200
+ /**
1201
+ * @generated from field: string auth_status = 10;
1202
+ */
1203
+ authStatus: string;
1204
+
1205
+ /**
1206
+ * @generated from field: optional string deletion_strategy = 11;
1207
+ */
1208
+ deletionStrategy?: string;
1209
+
1210
+ /**
1211
+ * @generated from field: optional google.protobuf.Struct extra = 12;
1212
+ */
1213
+ extra?: JsonObject;
1214
+
1215
+ /**
1216
+ * @generated from field: google.protobuf.Timestamp updated_at = 13;
1217
+ */
1218
+ updatedAt?: Timestamp;
1219
+
1220
+ /**
1221
+ * @generated from field: optional string updated_by_jti = 14;
1222
+ */
1223
+ updatedByJti?: string;
1224
+ };
1225
+
1226
+ /**
1227
+ * Describes the message apps.v1.AppStatus.
1228
+ * Use `create(AppStatusSchema)` to create a new message.
1229
+ */
1230
+ export declare const AppStatusSchema: GenMessage<AppStatus>;
1231
+
1232
+ /**
1233
+ * @generated from message apps.v1.GetAppStatusRequest
1234
+ */
1235
+ export declare type GetAppStatusRequest = Message<"apps.v1.GetAppStatusRequest"> & {
1236
+ /**
1237
+ * @generated from field: string tenant_id = 1;
1238
+ */
1239
+ tenantId: string;
1240
+
1241
+ /**
1242
+ * @generated from field: string project_id = 2;
1243
+ */
1244
+ projectId: string;
1245
+
1246
+ /**
1247
+ * @generated from field: string app_name = 3;
1248
+ */
1249
+ appName: string;
1250
+ };
1251
+
1252
+ /**
1253
+ * Describes the message apps.v1.GetAppStatusRequest.
1254
+ * Use `create(GetAppStatusRequestSchema)` to create a new message.
1255
+ */
1256
+ export declare const GetAppStatusRequestSchema: GenMessage<GetAppStatusRequest>;
1257
+
1258
+ /**
1259
+ * @generated from message apps.v1.GetAppStatusResponse
1260
+ */
1261
+ export declare type GetAppStatusResponse = Message<"apps.v1.GetAppStatusResponse"> & {
1262
+ /**
1263
+ * @generated from field: apps.v1.AppStatus status = 1;
1264
+ */
1265
+ status?: AppStatus;
1266
+ };
1267
+
1268
+ /**
1269
+ * Describes the message apps.v1.GetAppStatusResponse.
1270
+ * Use `create(GetAppStatusResponseSchema)` to create a new message.
1271
+ */
1272
+ export declare const GetAppStatusResponseSchema: GenMessage<GetAppStatusResponse>;
1273
+
1274
+ /**
1275
+ * @generated from message apps.v1.UpsertAppStatusRequest
1276
+ */
1277
+ export declare type UpsertAppStatusRequest = Message<"apps.v1.UpsertAppStatusRequest"> & {
1278
+ /**
1279
+ * @generated from field: apps.v1.AppStatus status = 1;
1280
+ */
1281
+ status?: AppStatus;
1282
+ };
1283
+
1284
+ /**
1285
+ * Describes the message apps.v1.UpsertAppStatusRequest.
1286
+ * Use `create(UpsertAppStatusRequestSchema)` to create a new message.
1287
+ */
1288
+ export declare const UpsertAppStatusRequestSchema: GenMessage<UpsertAppStatusRequest>;
1289
+
1290
+ /**
1291
+ * @generated from message apps.v1.UpsertAppStatusResponse
1292
+ */
1293
+ export declare type UpsertAppStatusResponse = Message<"apps.v1.UpsertAppStatusResponse"> & {
1294
+ /**
1295
+ * @generated from field: bool success = 1;
1296
+ */
1297
+ success: boolean;
1298
+ };
1299
+
1300
+ /**
1301
+ * Describes the message apps.v1.UpsertAppStatusResponse.
1302
+ * Use `create(UpsertAppStatusResponseSchema)` to create a new message.
1303
+ */
1304
+ export declare const UpsertAppStatusResponseSchema: GenMessage<UpsertAppStatusResponse>;
1305
+
1306
+ /**
1307
+ * @generated from message apps.v1.AppEvent
1308
+ */
1309
+ export declare type AppEvent = Message<"apps.v1.AppEvent"> & {
1310
+ /**
1311
+ * @generated from field: string id = 1;
1312
+ */
1313
+ id: string;
1314
+
1315
+ /**
1316
+ * @generated from field: string tenant_id = 2;
1317
+ */
1318
+ tenantId: string;
1319
+
1320
+ /**
1321
+ * @generated from field: string project_id = 3;
1322
+ */
1323
+ projectId: string;
1324
+
1325
+ /**
1326
+ * @generated from field: string app_name = 4;
1327
+ */
1328
+ appName: string;
1329
+
1330
+ /**
1331
+ * installed | updated | uninstalled | force_uninstalled | error | credential_written | ...
1332
+ *
1333
+ * @generated from field: string event = 5;
1334
+ */
1335
+ event: string;
1336
+
1337
+ /**
1338
+ * @generated from field: optional string actor = 6;
1339
+ */
1340
+ actor?: string;
1341
+
1342
+ /**
1343
+ * @generated from field: optional google.protobuf.Struct detail = 7;
1344
+ */
1345
+ detail?: JsonObject;
1346
+
1347
+ /**
1348
+ * @generated from field: google.protobuf.Timestamp occurred_at = 8;
1349
+ */
1350
+ occurredAt?: Timestamp;
1351
+ };
1352
+
1353
+ /**
1354
+ * Describes the message apps.v1.AppEvent.
1355
+ * Use `create(AppEventSchema)` to create a new message.
1356
+ */
1357
+ export declare const AppEventSchema: GenMessage<AppEvent>;
1358
+
1359
+ /**
1360
+ * @generated from message apps.v1.ListAppEventsRequest
1361
+ */
1362
+ export declare type ListAppEventsRequest = Message<"apps.v1.ListAppEventsRequest"> & {
1363
+ /**
1364
+ * @generated from field: string tenant_id = 1;
1365
+ */
1366
+ tenantId: string;
1367
+
1368
+ /**
1369
+ * @generated from field: string project_id = 2;
1370
+ */
1371
+ projectId: string;
1372
+
1373
+ /**
1374
+ * @generated from field: string app_name = 3;
1375
+ */
1376
+ appName: string;
1377
+
1378
+ /**
1379
+ * @generated from field: int32 limit = 4;
1380
+ */
1381
+ limit: number;
1382
+ };
1383
+
1384
+ /**
1385
+ * Describes the message apps.v1.ListAppEventsRequest.
1386
+ * Use `create(ListAppEventsRequestSchema)` to create a new message.
1387
+ */
1388
+ export declare const ListAppEventsRequestSchema: GenMessage<ListAppEventsRequest>;
1389
+
1390
+ /**
1391
+ * @generated from message apps.v1.ListAppEventsResponse
1392
+ */
1393
+ export declare type ListAppEventsResponse = Message<"apps.v1.ListAppEventsResponse"> & {
1394
+ /**
1395
+ * @generated from field: repeated apps.v1.AppEvent events = 1;
1396
+ */
1397
+ events: AppEvent[];
1398
+ };
1399
+
1400
+ /**
1401
+ * Describes the message apps.v1.ListAppEventsResponse.
1402
+ * Use `create(ListAppEventsResponseSchema)` to create a new message.
1403
+ */
1404
+ export declare const ListAppEventsResponseSchema: GenMessage<ListAppEventsResponse>;
1405
+
1406
+ /**
1407
+ * @generated from service apps.v1.AppsService
1408
+ */
1409
+ export declare const AppsService: GenService<{
1410
+ /**
1411
+ * CRUD
1412
+ *
1413
+ * @generated from rpc apps.v1.AppsService.ListApps
1414
+ */
1415
+ listApps: {
1416
+ methodKind: "unary";
1417
+ input: typeof ListAppsRequestSchema;
1418
+ output: typeof ListAppsResponseSchema;
1419
+ },
1420
+ /**
1421
+ * @generated from rpc apps.v1.AppsService.GetApp
1422
+ */
1423
+ getApp: {
1424
+ methodKind: "unary";
1425
+ input: typeof GetAppRequestSchema;
1426
+ output: typeof GetAppResponseSchema;
1427
+ },
1428
+ /**
1429
+ * Install — two-call canonical path.
1430
+ * InstallApp: fetch + validate manifest, return preview + install_ticket.
1431
+ * No persistent state other than a short-TTL tickets row.
1432
+ * ConfirmInstallApp: redeem ticket with mappings + optional settings,
1433
+ * resolve placeholders, atomically provision rows.
1434
+ *
1435
+ * @generated from rpc apps.v1.AppsService.InstallApp
1436
+ */
1437
+ installApp: {
1438
+ methodKind: "unary";
1439
+ input: typeof InstallAppRequestSchema;
1440
+ output: typeof InstallAppResponseSchema;
1441
+ },
1442
+ /**
1443
+ * @generated from rpc apps.v1.AppsService.ConfirmInstallApp
1444
+ */
1445
+ confirmInstallApp: {
1446
+ methodKind: "unary";
1447
+ input: typeof ConfirmInstallAppRequestSchema;
1448
+ output: typeof ConfirmInstallAppResponseSchema;
1449
+ },
1450
+ /**
1451
+ * Update — two-phase: diff, then confirm.
1452
+ *
1453
+ * @generated from rpc apps.v1.AppsService.UpdateApp
1454
+ */
1455
+ updateApp: {
1456
+ methodKind: "unary";
1457
+ input: typeof UpdateAppRequestSchema;
1458
+ output: typeof UpdateAppResponseSchema;
1459
+ },
1460
+ /**
1461
+ * @generated from rpc apps.v1.AppsService.ConfirmUpdateApp
1462
+ */
1463
+ confirmUpdateApp: {
1464
+ methodKind: "unary";
1465
+ input: typeof ConfirmUpdateAppRequestSchema;
1466
+ output: typeof ConfirmUpdateAppResponseSchema;
1467
+ },
1468
+ /**
1469
+ * Uninstall — single-phase; optional force flag.
1470
+ *
1471
+ * @generated from rpc apps.v1.AppsService.UninstallApp
1472
+ */
1473
+ uninstallApp: {
1474
+ methodKind: "unary";
1475
+ input: typeof UninstallAppRequestSchema;
1476
+ output: typeof UninstallAppResponseSchema;
1477
+ },
1478
+ /**
1479
+ * Mapping CRUD.
1480
+ *
1481
+ * @generated from rpc apps.v1.AppsService.SetAppMapping
1482
+ */
1483
+ setAppMapping: {
1484
+ methodKind: "unary";
1485
+ input: typeof SetAppMappingRequestSchema;
1486
+ output: typeof SetAppMappingResponseSchema;
1487
+ },
1488
+ /**
1489
+ * Manual validation (dry run).
1490
+ *
1491
+ * @generated from rpc apps.v1.AppsService.ValidateManifest
1492
+ */
1493
+ validateManifest: {
1494
+ methodKind: "unary";
1495
+ input: typeof ValidateManifestRequestSchema;
1496
+ output: typeof ValidateManifestResponseSchema;
1497
+ },
1498
+ /**
1499
+ * Trigger an operation explicitly. Replaces the legacy TriggerSync RPC.
1500
+ *
1501
+ * @generated from rpc apps.v1.AppsService.TriggerOperation
1502
+ */
1503
+ triggerOperation: {
1504
+ methodKind: "unary";
1505
+ input: typeof TriggerOperationRequestSchema;
1506
+ output: typeof TriggerOperationResponseSchema;
1507
+ },
1508
+ }>;
1509
+
1510
+ /**
1511
+ * @generated from service apps.v1.AppCredentialsService
1512
+ */
1513
+ export declare const AppCredentialsService: GenService<{
1514
+ /**
1515
+ * @generated from rpc apps.v1.AppCredentialsService.WriteAppCredential
1516
+ */
1517
+ writeAppCredential: {
1518
+ methodKind: "unary";
1519
+ input: typeof WriteAppCredentialRequestSchema;
1520
+ output: typeof WriteAppCredentialResponseSchema;
1521
+ },
1522
+ /**
1523
+ * @generated from rpc apps.v1.AppCredentialsService.GetAppCredential
1524
+ */
1525
+ getAppCredential: {
1526
+ methodKind: "unary";
1527
+ input: typeof GetAppCredentialRequestSchema;
1528
+ output: typeof GetAppCredentialResponseSchema;
1529
+ },
1530
+ /**
1531
+ * @generated from rpc apps.v1.AppCredentialsService.DeleteAppCredential
1532
+ */
1533
+ deleteAppCredential: {
1534
+ methodKind: "unary";
1535
+ input: typeof DeleteAppCredentialRequestSchema;
1536
+ output: typeof DeleteAppCredentialResponseSchema;
1537
+ },
1538
+ }>;
1539
+
1540
+ /**
1541
+ * @generated from service apps.v1.AppAuthService
1542
+ */
1543
+ export declare const AppAuthService: GenService<{
1544
+ /**
1545
+ * @generated from rpc apps.v1.AppAuthService.IssueExchangeTicket
1546
+ */
1547
+ issueExchangeTicket: {
1548
+ methodKind: "unary";
1549
+ input: typeof IssueExchangeTicketRequestSchema;
1550
+ output: typeof IssueExchangeTicketResponseSchema;
1551
+ },
1552
+ /**
1553
+ * @generated from rpc apps.v1.AppAuthService.RedeemExchangeTicket
1554
+ */
1555
+ redeemExchangeTicket: {
1556
+ methodKind: "unary";
1557
+ input: typeof RedeemExchangeTicketRequestSchema;
1558
+ output: typeof RedeemExchangeTicketResponseSchema;
1559
+ },
1560
+ /**
1561
+ * @generated from rpc apps.v1.AppAuthService.RefreshScopedToken
1562
+ */
1563
+ refreshScopedToken: {
1564
+ methodKind: "unary";
1565
+ input: typeof RefreshScopedTokenRequestSchema;
1566
+ output: typeof RefreshScopedTokenResponseSchema;
1567
+ },
1568
+ }>;
1569
+
1570
+ /**
1571
+ * @generated from service apps.v1.AppStatusService
1572
+ */
1573
+ export declare const AppStatusService: GenService<{
1574
+ /**
1575
+ * @generated from rpc apps.v1.AppStatusService.GetAppStatus
1576
+ */
1577
+ getAppStatus: {
1578
+ methodKind: "unary";
1579
+ input: typeof GetAppStatusRequestSchema;
1580
+ output: typeof GetAppStatusResponseSchema;
1581
+ },
1582
+ /**
1583
+ * @generated from rpc apps.v1.AppStatusService.UpsertAppStatus
1584
+ */
1585
+ upsertAppStatus: {
1586
+ methodKind: "unary";
1587
+ input: typeof UpsertAppStatusRequestSchema;
1588
+ output: typeof UpsertAppStatusResponseSchema;
1589
+ },
1590
+ /**
1591
+ * @generated from rpc apps.v1.AppStatusService.ListAppEvents
1592
+ */
1593
+ listAppEvents: {
1594
+ methodKind: "unary";
1595
+ input: typeof ListAppEventsRequestSchema;
1596
+ output: typeof ListAppEventsResponseSchema;
1597
+ },
1598
+ }>;
1599
+