@eide/foir-proto-ts 0.94.0 → 0.95.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,2307 @@
1
+ // @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
2
+ // @generated from file deploy/v1/deploy.proto (package deploy.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
6
+ import type { JsonObject, Message } from "@bufbuild/protobuf";
7
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
8
+ import type { PageInfo } from "../../common/v1/pagination_pb.js";
9
+
10
+ /**
11
+ * Describes the file deploy/v1/deploy.proto.
12
+ */
13
+ export declare const file_deploy_v1_deploy: GenFile;
14
+
15
+ /**
16
+ * Reconcile status block (§7.3).
17
+ *
18
+ * @generated from message deploy.v1.ReconcileStatus
19
+ */
20
+ export declare type ReconcileStatus = Message<"deploy.v1.ReconcileStatus"> & {
21
+ /**
22
+ * @generated from field: int64 generation = 1;
23
+ */
24
+ generation: bigint;
25
+
26
+ /**
27
+ * @generated from field: int64 observed_generation = 2;
28
+ */
29
+ observedGeneration: bigint;
30
+
31
+ /**
32
+ * pending | reconciling | synced | drifting | error
33
+ *
34
+ * @generated from field: string status = 3;
35
+ */
36
+ status: string;
37
+
38
+ /**
39
+ * @generated from field: optional google.protobuf.Timestamp last_reconciled_at = 4;
40
+ */
41
+ lastReconciledAt?: Timestamp | undefined;
42
+
43
+ /**
44
+ * @generated from field: optional string last_error = 5;
45
+ */
46
+ lastError?: string | undefined;
47
+
48
+ /**
49
+ * @generated from field: repeated string finalizers = 6;
50
+ */
51
+ finalizers: string[];
52
+ };
53
+
54
+ /**
55
+ * Describes the message deploy.v1.ReconcileStatus.
56
+ * Use `create(ReconcileStatusSchema)` to create a new message.
57
+ */
58
+ export declare const ReconcileStatusSchema: GenMessage<ReconcileStatus>;
59
+
60
+ /**
61
+ * @generated from message deploy.v1.ProviderAccount
62
+ */
63
+ export declare type ProviderAccount = Message<"deploy.v1.ProviderAccount"> & {
64
+ /**
65
+ * @generated from field: string id = 1;
66
+ */
67
+ id: string;
68
+
69
+ /**
70
+ * @generated from field: string tenant_id = 2;
71
+ */
72
+ tenantId: string;
73
+
74
+ /**
75
+ * @generated from field: string project_id = 3;
76
+ */
77
+ projectId: string;
78
+
79
+ /**
80
+ * cloudflare (only provider in v1)
81
+ *
82
+ * @generated from field: string provider = 4;
83
+ */
84
+ provider: string;
85
+
86
+ /**
87
+ * @generated from field: string cf_account_id = 5;
88
+ */
89
+ cfAccountId: string;
90
+
91
+ /**
92
+ * @generated from field: optional string github_app_installation_id = 6;
93
+ */
94
+ githubAppInstallationId?: string | undefined;
95
+
96
+ /**
97
+ * @generated from field: optional string default_zone_id = 7;
98
+ */
99
+ defaultZoneId?: string | undefined;
100
+
101
+ /**
102
+ * @generated from field: optional string dispatch_namespace = 8;
103
+ */
104
+ dispatchNamespace?: string | undefined;
105
+
106
+ /**
107
+ * vault ref to a USER-OWNED Cloudflare API token (never the token itself)
108
+ *
109
+ * @generated from field: string api_token_ref = 9;
110
+ */
111
+ apiTokenRef: string;
112
+
113
+ /**
114
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
115
+ */
116
+ createdAt?: Timestamp | undefined;
117
+
118
+ /**
119
+ * @generated from field: google.protobuf.Timestamp updated_at = 51;
120
+ */
121
+ updatedAt?: Timestamp | undefined;
122
+
123
+ /**
124
+ * @generated from field: optional string created_by = 52;
125
+ */
126
+ createdBy?: string | undefined;
127
+
128
+ /**
129
+ * @generated from field: optional string updated_by = 53;
130
+ */
131
+ updatedBy?: string | undefined;
132
+ };
133
+
134
+ /**
135
+ * Describes the message deploy.v1.ProviderAccount.
136
+ * Use `create(ProviderAccountSchema)` to create a new message.
137
+ */
138
+ export declare const ProviderAccountSchema: GenMessage<ProviderAccount>;
139
+
140
+ /**
141
+ * @generated from message deploy.v1.App
142
+ */
143
+ export declare type App = Message<"deploy.v1.App"> & {
144
+ /**
145
+ * @generated from field: string id = 1;
146
+ */
147
+ id: string;
148
+
149
+ /**
150
+ * @generated from field: string tenant_id = 2;
151
+ */
152
+ tenantId: string;
153
+
154
+ /**
155
+ * @generated from field: string project_id = 3;
156
+ */
157
+ projectId: string;
158
+
159
+ /**
160
+ * @generated from field: string provider_account_id = 4;
161
+ */
162
+ providerAccountId: string;
163
+
164
+ /**
165
+ * @generated from field: string name = 5;
166
+ */
167
+ name: string;
168
+
169
+ /**
170
+ * the `client` segment in client--env.foir.build
171
+ *
172
+ * @generated from field: string slug = 6;
173
+ */
174
+ slug: string;
175
+
176
+ /**
177
+ * @generated from field: string repo_owner = 7;
178
+ */
179
+ repoOwner: string;
180
+
181
+ /**
182
+ * @generated from field: string repo_name = 8;
183
+ */
184
+ repoName: string;
185
+
186
+ /**
187
+ * @generated from field: string repo_default_branch = 9;
188
+ */
189
+ repoDefaultBranch: string;
190
+
191
+ /**
192
+ * @generated from field: optional string root_directory = 10;
193
+ */
194
+ rootDirectory?: string | undefined;
195
+
196
+ /**
197
+ * @generated from field: repeated string watch_paths = 11;
198
+ */
199
+ watchPaths: string[];
200
+
201
+ /**
202
+ * @generated from field: optional string framework = 12;
203
+ */
204
+ framework?: string | undefined;
205
+
206
+ /**
207
+ * GitHub connection identifiers (from the App installation's repo listing)
208
+ *
209
+ * @generated from field: optional string github_repo_id = 13;
210
+ */
211
+ githubRepoId?: string | undefined;
212
+
213
+ /**
214
+ * @generated from field: optional string github_account_id = 14;
215
+ */
216
+ githubAccountId?: string | undefined;
217
+
218
+ /**
219
+ * @generated from field: optional string github_account_name = 15;
220
+ */
221
+ githubAccountName?: string | undefined;
222
+
223
+ /**
224
+ * @generated from field: deploy.v1.ReconcileStatus reconcile = 16;
225
+ */
226
+ reconcile?: ReconcileStatus | undefined;
227
+
228
+ /**
229
+ * @generated from field: optional google.protobuf.Timestamp deleted_at = 17;
230
+ */
231
+ deletedAt?: Timestamp | undefined;
232
+
233
+ /**
234
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
235
+ */
236
+ createdAt?: Timestamp | undefined;
237
+
238
+ /**
239
+ * @generated from field: google.protobuf.Timestamp updated_at = 51;
240
+ */
241
+ updatedAt?: Timestamp | undefined;
242
+
243
+ /**
244
+ * @generated from field: optional string created_by = 52;
245
+ */
246
+ createdBy?: string | undefined;
247
+
248
+ /**
249
+ * @generated from field: optional string updated_by = 53;
250
+ */
251
+ updatedBy?: string | undefined;
252
+ };
253
+
254
+ /**
255
+ * Describes the message deploy.v1.App.
256
+ * Use `create(AppSchema)` to create a new message.
257
+ */
258
+ export declare const AppSchema: GenMessage<App>;
259
+
260
+ /**
261
+ * @generated from message deploy.v1.Environment
262
+ */
263
+ export declare type Environment = Message<"deploy.v1.Environment"> & {
264
+ /**
265
+ * @generated from field: string id = 1;
266
+ */
267
+ id: string;
268
+
269
+ /**
270
+ * @generated from field: string tenant_id = 2;
271
+ */
272
+ tenantId: string;
273
+
274
+ /**
275
+ * @generated from field: string project_id = 3;
276
+ */
277
+ projectId: string;
278
+
279
+ /**
280
+ * @generated from field: string app_id = 4;
281
+ */
282
+ appId: string;
283
+
284
+ /**
285
+ * production | preview | custom
286
+ *
287
+ * @generated from field: string role = 5;
288
+ */
289
+ role: string;
290
+
291
+ /**
292
+ * @generated from field: string name = 6;
293
+ */
294
+ name: string;
295
+
296
+ /**
297
+ * @generated from field: string cf_worker_name = 7;
298
+ */
299
+ cfWorkerName: string;
300
+
301
+ /**
302
+ * @generated from field: optional string wrangler_env = 8;
303
+ */
304
+ wranglerEnv?: string | undefined;
305
+
306
+ /**
307
+ * per-Worker branch include/exclude (§9.2)
308
+ *
309
+ * @generated from field: optional string match_branches = 9;
310
+ */
311
+ matchBranches?: string | undefined;
312
+
313
+ /**
314
+ * @generated from field: optional string build_command = 10;
315
+ */
316
+ buildCommand?: string | undefined;
317
+
318
+ /**
319
+ * @generated from field: optional string deploy_command = 11;
320
+ */
321
+ deployCommand?: string | undefined;
322
+
323
+ /**
324
+ * @generated from field: bool build_enabled = 12;
325
+ */
326
+ buildEnabled: boolean;
327
+
328
+ /**
329
+ * pending | reconciling | synced | drifting | error
330
+ *
331
+ * @generated from field: string reconcile_status = 13;
332
+ */
333
+ reconcileStatus: string;
334
+
335
+ /**
336
+ * @generated from field: optional string last_error = 14;
337
+ */
338
+ lastError?: string | undefined;
339
+
340
+ /**
341
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
342
+ */
343
+ createdAt?: Timestamp | undefined;
344
+
345
+ /**
346
+ * @generated from field: google.protobuf.Timestamp updated_at = 51;
347
+ */
348
+ updatedAt?: Timestamp | undefined;
349
+ };
350
+
351
+ /**
352
+ * Describes the message deploy.v1.Environment.
353
+ * Use `create(EnvironmentSchema)` to create a new message.
354
+ */
355
+ export declare const EnvironmentSchema: GenMessage<Environment>;
356
+
357
+ /**
358
+ * @generated from message deploy.v1.SecretBinding
359
+ */
360
+ export declare type SecretBinding = Message<"deploy.v1.SecretBinding"> & {
361
+ /**
362
+ * @generated from field: string id = 1;
363
+ */
364
+ id: string;
365
+
366
+ /**
367
+ * @generated from field: string tenant_id = 2;
368
+ */
369
+ tenantId: string;
370
+
371
+ /**
372
+ * @generated from field: string project_id = 3;
373
+ */
374
+ projectId: string;
375
+
376
+ /**
377
+ * @generated from field: string environment_id = 4;
378
+ */
379
+ environmentId: string;
380
+
381
+ /**
382
+ * secret | var
383
+ *
384
+ * @generated from field: string kind = 5;
385
+ */
386
+ kind: string;
387
+
388
+ /**
389
+ * @generated from field: string worker_secret_name = 6;
390
+ */
391
+ workerSecretName: string;
392
+
393
+ /**
394
+ * pointer into the foir vault (for kind=secret); secret values never returned
395
+ *
396
+ * @generated from field: optional string vault_ref = 7;
397
+ */
398
+ vaultRef?: string | undefined;
399
+
400
+ /**
401
+ * only for kind=var
402
+ *
403
+ * @generated from field: optional string plain_value = 8;
404
+ */
405
+ plainValue?: string | undefined;
406
+
407
+ /**
408
+ * @generated from field: optional google.protobuf.Timestamp last_synced_at = 9;
409
+ */
410
+ lastSyncedAt?: Timestamp | undefined;
411
+
412
+ /**
413
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
414
+ */
415
+ createdAt?: Timestamp | undefined;
416
+
417
+ /**
418
+ * @generated from field: google.protobuf.Timestamp updated_at = 51;
419
+ */
420
+ updatedAt?: Timestamp | undefined;
421
+ };
422
+
423
+ /**
424
+ * Describes the message deploy.v1.SecretBinding.
425
+ * Use `create(SecretBindingSchema)` to create a new message.
426
+ */
427
+ export declare const SecretBindingSchema: GenMessage<SecretBinding>;
428
+
429
+ /**
430
+ * @generated from message deploy.v1.Domain
431
+ */
432
+ export declare type Domain = Message<"deploy.v1.Domain"> & {
433
+ /**
434
+ * @generated from field: string id = 1;
435
+ */
436
+ id: string;
437
+
438
+ /**
439
+ * @generated from field: string tenant_id = 2;
440
+ */
441
+ tenantId: string;
442
+
443
+ /**
444
+ * @generated from field: string project_id = 3;
445
+ */
446
+ projectId: string;
447
+
448
+ /**
449
+ * @generated from field: string environment_id = 4;
450
+ */
451
+ environmentId: string;
452
+
453
+ /**
454
+ * @generated from field: string hostname = 5;
455
+ */
456
+ hostname: string;
457
+
458
+ /**
459
+ * platform | owned_zone | saas_hostname
460
+ *
461
+ * @generated from field: string mode = 6;
462
+ */
463
+ mode: string;
464
+
465
+ /**
466
+ * @generated from field: optional string zone_id = 7;
467
+ */
468
+ zoneId?: string | undefined;
469
+
470
+ /**
471
+ * @generated from field: optional string cf_custom_hostname_id = 8;
472
+ */
473
+ cfCustomHostnameId?: string | undefined;
474
+
475
+ /**
476
+ * pending | active | error
477
+ *
478
+ * @generated from field: string cert_status = 9;
479
+ */
480
+ certStatus: string;
481
+
482
+ /**
483
+ * @generated from field: bool is_primary = 10;
484
+ */
485
+ isPrimary: boolean;
486
+
487
+ /**
488
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
489
+ */
490
+ createdAt?: Timestamp | undefined;
491
+
492
+ /**
493
+ * @generated from field: google.protobuf.Timestamp updated_at = 51;
494
+ */
495
+ updatedAt?: Timestamp | undefined;
496
+ };
497
+
498
+ /**
499
+ * Describes the message deploy.v1.Domain.
500
+ * Use `create(DomainSchema)` to create a new message.
501
+ */
502
+ export declare const DomainSchema: GenMessage<Domain>;
503
+
504
+ /**
505
+ * @generated from message deploy.v1.Deployment
506
+ */
507
+ export declare type Deployment = Message<"deploy.v1.Deployment"> & {
508
+ /**
509
+ * @generated from field: string id = 1;
510
+ */
511
+ id: string;
512
+
513
+ /**
514
+ * @generated from field: string tenant_id = 2;
515
+ */
516
+ tenantId: string;
517
+
518
+ /**
519
+ * @generated from field: string project_id = 3;
520
+ */
521
+ projectId: string;
522
+
523
+ /**
524
+ * @generated from field: string environment_id = 4;
525
+ */
526
+ environmentId: string;
527
+
528
+ /**
529
+ * @generated from field: optional string git_sha = 5;
530
+ */
531
+ gitSha?: string | undefined;
532
+
533
+ /**
534
+ * @generated from field: optional string git_branch = 6;
535
+ */
536
+ gitBranch?: string | undefined;
537
+
538
+ /**
539
+ * push | manual | reconcile
540
+ *
541
+ * @generated from field: string trigger = 7;
542
+ */
543
+ trigger: string;
544
+
545
+ /**
546
+ * @generated from field: optional string cf_build_id = 8;
547
+ */
548
+ cfBuildId?: string | undefined;
549
+
550
+ /**
551
+ * @generated from field: optional string cf_version_id = 9;
552
+ */
553
+ cfVersionId?: string | undefined;
554
+
555
+ /**
556
+ * queued | building | deploying | success | failed | canceled
557
+ *
558
+ * @generated from field: string status = 10;
559
+ */
560
+ status: string;
561
+
562
+ /**
563
+ * @generated from field: optional string preview_url = 11;
564
+ */
565
+ previewUrl?: string | undefined;
566
+
567
+ /**
568
+ * @generated from field: optional string logs_url = 12;
569
+ */
570
+ logsUrl?: string | undefined;
571
+
572
+ /**
573
+ * @generated from field: optional google.protobuf.Timestamp started_at = 13;
574
+ */
575
+ startedAt?: Timestamp | undefined;
576
+
577
+ /**
578
+ * @generated from field: optional google.protobuf.Timestamp finished_at = 14;
579
+ */
580
+ finishedAt?: Timestamp | undefined;
581
+
582
+ /**
583
+ * @generated from field: google.protobuf.Timestamp created_at = 50;
584
+ */
585
+ createdAt?: Timestamp | undefined;
586
+ };
587
+
588
+ /**
589
+ * Describes the message deploy.v1.Deployment.
590
+ * Use `create(DeploymentSchema)` to create a new message.
591
+ */
592
+ export declare const DeploymentSchema: GenMessage<Deployment>;
593
+
594
+ /**
595
+ * @generated from message deploy.v1.ListProviderAccountsRequest
596
+ */
597
+ export declare type ListProviderAccountsRequest = Message<"deploy.v1.ListProviderAccountsRequest"> & {
598
+ /**
599
+ * @generated from field: optional google.protobuf.Struct where = 1;
600
+ */
601
+ where?: JsonObject | undefined;
602
+
603
+ /**
604
+ * @generated from field: optional string after = 2;
605
+ */
606
+ after?: string | undefined;
607
+
608
+ /**
609
+ * @generated from field: optional string before = 3;
610
+ */
611
+ before?: string | undefined;
612
+
613
+ /**
614
+ * @generated from field: optional int32 first = 4;
615
+ */
616
+ first?: number | undefined;
617
+
618
+ /**
619
+ * @generated from field: optional int32 last = 5;
620
+ */
621
+ last?: number | undefined;
622
+ };
623
+
624
+ /**
625
+ * Describes the message deploy.v1.ListProviderAccountsRequest.
626
+ * Use `create(ListProviderAccountsRequestSchema)` to create a new message.
627
+ */
628
+ export declare const ListProviderAccountsRequestSchema: GenMessage<ListProviderAccountsRequest>;
629
+
630
+ /**
631
+ * @generated from message deploy.v1.ListProviderAccountsResponse
632
+ */
633
+ export declare type ListProviderAccountsResponse = Message<"deploy.v1.ListProviderAccountsResponse"> & {
634
+ /**
635
+ * @generated from field: repeated deploy.v1.ProviderAccount items = 1;
636
+ */
637
+ items: ProviderAccount[];
638
+
639
+ /**
640
+ * @generated from field: int32 total = 2;
641
+ */
642
+ total: number;
643
+
644
+ /**
645
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
646
+ */
647
+ pageInfo?: PageInfo | undefined;
648
+
649
+ /**
650
+ * @generated from field: repeated string cursors = 4;
651
+ */
652
+ cursors: string[];
653
+ };
654
+
655
+ /**
656
+ * Describes the message deploy.v1.ListProviderAccountsResponse.
657
+ * Use `create(ListProviderAccountsResponseSchema)` to create a new message.
658
+ */
659
+ export declare const ListProviderAccountsResponseSchema: GenMessage<ListProviderAccountsResponse>;
660
+
661
+ /**
662
+ * @generated from message deploy.v1.GetProviderAccountRequest
663
+ */
664
+ export declare type GetProviderAccountRequest = Message<"deploy.v1.GetProviderAccountRequest"> & {
665
+ /**
666
+ * @generated from field: string id = 1;
667
+ */
668
+ id: string;
669
+ };
670
+
671
+ /**
672
+ * Describes the message deploy.v1.GetProviderAccountRequest.
673
+ * Use `create(GetProviderAccountRequestSchema)` to create a new message.
674
+ */
675
+ export declare const GetProviderAccountRequestSchema: GenMessage<GetProviderAccountRequest>;
676
+
677
+ /**
678
+ * @generated from message deploy.v1.GetProviderAccountResponse
679
+ */
680
+ export declare type GetProviderAccountResponse = Message<"deploy.v1.GetProviderAccountResponse"> & {
681
+ /**
682
+ * @generated from field: deploy.v1.ProviderAccount provider_account = 1;
683
+ */
684
+ providerAccount?: ProviderAccount | undefined;
685
+ };
686
+
687
+ /**
688
+ * Describes the message deploy.v1.GetProviderAccountResponse.
689
+ * Use `create(GetProviderAccountResponseSchema)` to create a new message.
690
+ */
691
+ export declare const GetProviderAccountResponseSchema: GenMessage<GetProviderAccountResponse>;
692
+
693
+ /**
694
+ * @generated from message deploy.v1.CreateProviderAccountRequest
695
+ */
696
+ export declare type CreateProviderAccountRequest = Message<"deploy.v1.CreateProviderAccountRequest"> & {
697
+ /**
698
+ * @generated from field: optional string provider = 1;
699
+ */
700
+ provider?: string | undefined;
701
+
702
+ /**
703
+ * @generated from field: string cf_account_id = 2;
704
+ */
705
+ cfAccountId: string;
706
+
707
+ /**
708
+ * @generated from field: optional string github_app_installation_id = 3;
709
+ */
710
+ githubAppInstallationId?: string | undefined;
711
+
712
+ /**
713
+ * @generated from field: optional string default_zone_id = 4;
714
+ */
715
+ defaultZoneId?: string | undefined;
716
+
717
+ /**
718
+ * @generated from field: optional string dispatch_namespace = 5;
719
+ */
720
+ dispatchNamespace?: string | undefined;
721
+
722
+ /**
723
+ * @generated from field: string api_token_ref = 6;
724
+ */
725
+ apiTokenRef: string;
726
+ };
727
+
728
+ /**
729
+ * Describes the message deploy.v1.CreateProviderAccountRequest.
730
+ * Use `create(CreateProviderAccountRequestSchema)` to create a new message.
731
+ */
732
+ export declare const CreateProviderAccountRequestSchema: GenMessage<CreateProviderAccountRequest>;
733
+
734
+ /**
735
+ * @generated from message deploy.v1.CreateProviderAccountResponse
736
+ */
737
+ export declare type CreateProviderAccountResponse = Message<"deploy.v1.CreateProviderAccountResponse"> & {
738
+ /**
739
+ * @generated from field: deploy.v1.ProviderAccount provider_account = 1;
740
+ */
741
+ providerAccount?: ProviderAccount | undefined;
742
+ };
743
+
744
+ /**
745
+ * Describes the message deploy.v1.CreateProviderAccountResponse.
746
+ * Use `create(CreateProviderAccountResponseSchema)` to create a new message.
747
+ */
748
+ export declare const CreateProviderAccountResponseSchema: GenMessage<CreateProviderAccountResponse>;
749
+
750
+ /**
751
+ * @generated from message deploy.v1.UpdateProviderAccountRequest
752
+ */
753
+ export declare type UpdateProviderAccountRequest = Message<"deploy.v1.UpdateProviderAccountRequest"> & {
754
+ /**
755
+ * @generated from field: string id = 1;
756
+ */
757
+ id: string;
758
+
759
+ /**
760
+ * @generated from field: string cf_account_id = 2;
761
+ */
762
+ cfAccountId: string;
763
+
764
+ /**
765
+ * @generated from field: optional string github_app_installation_id = 3;
766
+ */
767
+ githubAppInstallationId?: string | undefined;
768
+
769
+ /**
770
+ * @generated from field: optional string default_zone_id = 4;
771
+ */
772
+ defaultZoneId?: string | undefined;
773
+
774
+ /**
775
+ * @generated from field: optional string dispatch_namespace = 5;
776
+ */
777
+ dispatchNamespace?: string | undefined;
778
+
779
+ /**
780
+ * @generated from field: string api_token_ref = 6;
781
+ */
782
+ apiTokenRef: string;
783
+ };
784
+
785
+ /**
786
+ * Describes the message deploy.v1.UpdateProviderAccountRequest.
787
+ * Use `create(UpdateProviderAccountRequestSchema)` to create a new message.
788
+ */
789
+ export declare const UpdateProviderAccountRequestSchema: GenMessage<UpdateProviderAccountRequest>;
790
+
791
+ /**
792
+ * @generated from message deploy.v1.UpdateProviderAccountResponse
793
+ */
794
+ export declare type UpdateProviderAccountResponse = Message<"deploy.v1.UpdateProviderAccountResponse"> & {
795
+ /**
796
+ * @generated from field: deploy.v1.ProviderAccount provider_account = 1;
797
+ */
798
+ providerAccount?: ProviderAccount | undefined;
799
+ };
800
+
801
+ /**
802
+ * Describes the message deploy.v1.UpdateProviderAccountResponse.
803
+ * Use `create(UpdateProviderAccountResponseSchema)` to create a new message.
804
+ */
805
+ export declare const UpdateProviderAccountResponseSchema: GenMessage<UpdateProviderAccountResponse>;
806
+
807
+ /**
808
+ * @generated from message deploy.v1.DeleteProviderAccountRequest
809
+ */
810
+ export declare type DeleteProviderAccountRequest = Message<"deploy.v1.DeleteProviderAccountRequest"> & {
811
+ /**
812
+ * @generated from field: string id = 1;
813
+ */
814
+ id: string;
815
+ };
816
+
817
+ /**
818
+ * Describes the message deploy.v1.DeleteProviderAccountRequest.
819
+ * Use `create(DeleteProviderAccountRequestSchema)` to create a new message.
820
+ */
821
+ export declare const DeleteProviderAccountRequestSchema: GenMessage<DeleteProviderAccountRequest>;
822
+
823
+ /**
824
+ * @generated from message deploy.v1.DeleteProviderAccountResponse
825
+ */
826
+ export declare type DeleteProviderAccountResponse = Message<"deploy.v1.DeleteProviderAccountResponse"> & {
827
+ /**
828
+ * @generated from field: bool success = 1;
829
+ */
830
+ success: boolean;
831
+ };
832
+
833
+ /**
834
+ * Describes the message deploy.v1.DeleteProviderAccountResponse.
835
+ * Use `create(DeleteProviderAccountResponseSchema)` to create a new message.
836
+ */
837
+ export declare const DeleteProviderAccountResponseSchema: GenMessage<DeleteProviderAccountResponse>;
838
+
839
+ /**
840
+ * @generated from message deploy.v1.ListAppsRequest
841
+ */
842
+ export declare type ListAppsRequest = Message<"deploy.v1.ListAppsRequest"> & {
843
+ /**
844
+ * @generated from field: optional google.protobuf.Struct where = 1;
845
+ */
846
+ where?: JsonObject | undefined;
847
+
848
+ /**
849
+ * @generated from field: optional string after = 2;
850
+ */
851
+ after?: string | undefined;
852
+
853
+ /**
854
+ * @generated from field: optional string before = 3;
855
+ */
856
+ before?: string | undefined;
857
+
858
+ /**
859
+ * @generated from field: optional int32 first = 4;
860
+ */
861
+ first?: number | undefined;
862
+
863
+ /**
864
+ * @generated from field: optional int32 last = 5;
865
+ */
866
+ last?: number | undefined;
867
+ };
868
+
869
+ /**
870
+ * Describes the message deploy.v1.ListAppsRequest.
871
+ * Use `create(ListAppsRequestSchema)` to create a new message.
872
+ */
873
+ export declare const ListAppsRequestSchema: GenMessage<ListAppsRequest>;
874
+
875
+ /**
876
+ * @generated from message deploy.v1.ListAppsResponse
877
+ */
878
+ export declare type ListAppsResponse = Message<"deploy.v1.ListAppsResponse"> & {
879
+ /**
880
+ * @generated from field: repeated deploy.v1.App items = 1;
881
+ */
882
+ items: App[];
883
+
884
+ /**
885
+ * @generated from field: int32 total = 2;
886
+ */
887
+ total: number;
888
+
889
+ /**
890
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
891
+ */
892
+ pageInfo?: PageInfo | undefined;
893
+
894
+ /**
895
+ * @generated from field: repeated string cursors = 4;
896
+ */
897
+ cursors: string[];
898
+ };
899
+
900
+ /**
901
+ * Describes the message deploy.v1.ListAppsResponse.
902
+ * Use `create(ListAppsResponseSchema)` to create a new message.
903
+ */
904
+ export declare const ListAppsResponseSchema: GenMessage<ListAppsResponse>;
905
+
906
+ /**
907
+ * @generated from message deploy.v1.GetAppRequest
908
+ */
909
+ export declare type GetAppRequest = Message<"deploy.v1.GetAppRequest"> & {
910
+ /**
911
+ * @generated from field: string id = 1;
912
+ */
913
+ id: string;
914
+ };
915
+
916
+ /**
917
+ * Describes the message deploy.v1.GetAppRequest.
918
+ * Use `create(GetAppRequestSchema)` to create a new message.
919
+ */
920
+ export declare const GetAppRequestSchema: GenMessage<GetAppRequest>;
921
+
922
+ /**
923
+ * Desired + status: the app plus its full child set in one call.
924
+ *
925
+ * @generated from message deploy.v1.GetAppResponse
926
+ */
927
+ export declare type GetAppResponse = Message<"deploy.v1.GetAppResponse"> & {
928
+ /**
929
+ * @generated from field: deploy.v1.App app = 1;
930
+ */
931
+ app?: App | undefined;
932
+
933
+ /**
934
+ * @generated from field: repeated deploy.v1.Environment environments = 2;
935
+ */
936
+ environments: Environment[];
937
+
938
+ /**
939
+ * @generated from field: repeated deploy.v1.Domain domains = 3;
940
+ */
941
+ domains: Domain[];
942
+
943
+ /**
944
+ * @generated from field: repeated deploy.v1.SecretBinding secret_bindings = 4;
945
+ */
946
+ secretBindings: SecretBinding[];
947
+ };
948
+
949
+ /**
950
+ * Describes the message deploy.v1.GetAppResponse.
951
+ * Use `create(GetAppResponseSchema)` to create a new message.
952
+ */
953
+ export declare const GetAppResponseSchema: GenMessage<GetAppResponse>;
954
+
955
+ /**
956
+ * @generated from message deploy.v1.CreateAppRequest
957
+ */
958
+ export declare type CreateAppRequest = Message<"deploy.v1.CreateAppRequest"> & {
959
+ /**
960
+ * @generated from field: string provider_account_id = 1;
961
+ */
962
+ providerAccountId: string;
963
+
964
+ /**
965
+ * @generated from field: string name = 2;
966
+ */
967
+ name: string;
968
+
969
+ /**
970
+ * @generated from field: string slug = 3;
971
+ */
972
+ slug: string;
973
+
974
+ /**
975
+ * @generated from field: string repo_owner = 4;
976
+ */
977
+ repoOwner: string;
978
+
979
+ /**
980
+ * @generated from field: string repo_name = 5;
981
+ */
982
+ repoName: string;
983
+
984
+ /**
985
+ * @generated from field: optional string repo_default_branch = 6;
986
+ */
987
+ repoDefaultBranch?: string | undefined;
988
+
989
+ /**
990
+ * @generated from field: optional string root_directory = 7;
991
+ */
992
+ rootDirectory?: string | undefined;
993
+
994
+ /**
995
+ * @generated from field: repeated string watch_paths = 8;
996
+ */
997
+ watchPaths: string[];
998
+
999
+ /**
1000
+ * @generated from field: optional string framework = 9;
1001
+ */
1002
+ framework?: string | undefined;
1003
+
1004
+ /**
1005
+ * @generated from field: optional string github_repo_id = 10;
1006
+ */
1007
+ githubRepoId?: string | undefined;
1008
+
1009
+ /**
1010
+ * @generated from field: optional string github_account_id = 11;
1011
+ */
1012
+ githubAccountId?: string | undefined;
1013
+
1014
+ /**
1015
+ * @generated from field: optional string github_account_name = 12;
1016
+ */
1017
+ githubAccountName?: string | undefined;
1018
+ };
1019
+
1020
+ /**
1021
+ * Describes the message deploy.v1.CreateAppRequest.
1022
+ * Use `create(CreateAppRequestSchema)` to create a new message.
1023
+ */
1024
+ export declare const CreateAppRequestSchema: GenMessage<CreateAppRequest>;
1025
+
1026
+ /**
1027
+ * @generated from message deploy.v1.CreateAppResponse
1028
+ */
1029
+ export declare type CreateAppResponse = Message<"deploy.v1.CreateAppResponse"> & {
1030
+ /**
1031
+ * @generated from field: deploy.v1.App app = 1;
1032
+ */
1033
+ app?: App | undefined;
1034
+ };
1035
+
1036
+ /**
1037
+ * Describes the message deploy.v1.CreateAppResponse.
1038
+ * Use `create(CreateAppResponseSchema)` to create a new message.
1039
+ */
1040
+ export declare const CreateAppResponseSchema: GenMessage<CreateAppResponse>;
1041
+
1042
+ /**
1043
+ * @generated from message deploy.v1.UpdateAppRequest
1044
+ */
1045
+ export declare type UpdateAppRequest = Message<"deploy.v1.UpdateAppRequest"> & {
1046
+ /**
1047
+ * @generated from field: string id = 1;
1048
+ */
1049
+ id: string;
1050
+
1051
+ /**
1052
+ * @generated from field: string name = 2;
1053
+ */
1054
+ name: string;
1055
+
1056
+ /**
1057
+ * @generated from field: string slug = 3;
1058
+ */
1059
+ slug: string;
1060
+
1061
+ /**
1062
+ * @generated from field: string repo_owner = 4;
1063
+ */
1064
+ repoOwner: string;
1065
+
1066
+ /**
1067
+ * @generated from field: string repo_name = 5;
1068
+ */
1069
+ repoName: string;
1070
+
1071
+ /**
1072
+ * @generated from field: string repo_default_branch = 6;
1073
+ */
1074
+ repoDefaultBranch: string;
1075
+
1076
+ /**
1077
+ * @generated from field: optional string root_directory = 7;
1078
+ */
1079
+ rootDirectory?: string | undefined;
1080
+
1081
+ /**
1082
+ * @generated from field: repeated string watch_paths = 8;
1083
+ */
1084
+ watchPaths: string[];
1085
+
1086
+ /**
1087
+ * @generated from field: optional string framework = 9;
1088
+ */
1089
+ framework?: string | undefined;
1090
+
1091
+ /**
1092
+ * @generated from field: optional string github_repo_id = 10;
1093
+ */
1094
+ githubRepoId?: string | undefined;
1095
+
1096
+ /**
1097
+ * @generated from field: optional string github_account_id = 11;
1098
+ */
1099
+ githubAccountId?: string | undefined;
1100
+
1101
+ /**
1102
+ * @generated from field: optional string github_account_name = 12;
1103
+ */
1104
+ githubAccountName?: string | undefined;
1105
+ };
1106
+
1107
+ /**
1108
+ * Describes the message deploy.v1.UpdateAppRequest.
1109
+ * Use `create(UpdateAppRequestSchema)` to create a new message.
1110
+ */
1111
+ export declare const UpdateAppRequestSchema: GenMessage<UpdateAppRequest>;
1112
+
1113
+ /**
1114
+ * @generated from message deploy.v1.UpdateAppResponse
1115
+ */
1116
+ export declare type UpdateAppResponse = Message<"deploy.v1.UpdateAppResponse"> & {
1117
+ /**
1118
+ * @generated from field: deploy.v1.App app = 1;
1119
+ */
1120
+ app?: App | undefined;
1121
+ };
1122
+
1123
+ /**
1124
+ * Describes the message deploy.v1.UpdateAppResponse.
1125
+ * Use `create(UpdateAppResponseSchema)` to create a new message.
1126
+ */
1127
+ export declare const UpdateAppResponseSchema: GenMessage<UpdateAppResponse>;
1128
+
1129
+ /**
1130
+ * @generated from message deploy.v1.DeleteAppRequest
1131
+ */
1132
+ export declare type DeleteAppRequest = Message<"deploy.v1.DeleteAppRequest"> & {
1133
+ /**
1134
+ * @generated from field: string id = 1;
1135
+ */
1136
+ id: string;
1137
+ };
1138
+
1139
+ /**
1140
+ * Describes the message deploy.v1.DeleteAppRequest.
1141
+ * Use `create(DeleteAppRequestSchema)` to create a new message.
1142
+ */
1143
+ export declare const DeleteAppRequestSchema: GenMessage<DeleteAppRequest>;
1144
+
1145
+ /**
1146
+ * @generated from message deploy.v1.DeleteAppResponse
1147
+ */
1148
+ export declare type DeleteAppResponse = Message<"deploy.v1.DeleteAppResponse"> & {
1149
+ /**
1150
+ * @generated from field: bool success = 1;
1151
+ */
1152
+ success: boolean;
1153
+ };
1154
+
1155
+ /**
1156
+ * Describes the message deploy.v1.DeleteAppResponse.
1157
+ * Use `create(DeleteAppResponseSchema)` to create a new message.
1158
+ */
1159
+ export declare const DeleteAppResponseSchema: GenMessage<DeleteAppResponse>;
1160
+
1161
+ /**
1162
+ * @generated from message deploy.v1.ListEnvironmentsRequest
1163
+ */
1164
+ export declare type ListEnvironmentsRequest = Message<"deploy.v1.ListEnvironmentsRequest"> & {
1165
+ /**
1166
+ * @generated from field: optional google.protobuf.Struct where = 1;
1167
+ */
1168
+ where?: JsonObject | undefined;
1169
+
1170
+ /**
1171
+ * @generated from field: optional string after = 2;
1172
+ */
1173
+ after?: string | undefined;
1174
+
1175
+ /**
1176
+ * @generated from field: optional string before = 3;
1177
+ */
1178
+ before?: string | undefined;
1179
+
1180
+ /**
1181
+ * @generated from field: optional int32 first = 4;
1182
+ */
1183
+ first?: number | undefined;
1184
+
1185
+ /**
1186
+ * @generated from field: optional int32 last = 5;
1187
+ */
1188
+ last?: number | undefined;
1189
+ };
1190
+
1191
+ /**
1192
+ * Describes the message deploy.v1.ListEnvironmentsRequest.
1193
+ * Use `create(ListEnvironmentsRequestSchema)` to create a new message.
1194
+ */
1195
+ export declare const ListEnvironmentsRequestSchema: GenMessage<ListEnvironmentsRequest>;
1196
+
1197
+ /**
1198
+ * @generated from message deploy.v1.ListEnvironmentsResponse
1199
+ */
1200
+ export declare type ListEnvironmentsResponse = Message<"deploy.v1.ListEnvironmentsResponse"> & {
1201
+ /**
1202
+ * @generated from field: repeated deploy.v1.Environment items = 1;
1203
+ */
1204
+ items: Environment[];
1205
+
1206
+ /**
1207
+ * @generated from field: int32 total = 2;
1208
+ */
1209
+ total: number;
1210
+
1211
+ /**
1212
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
1213
+ */
1214
+ pageInfo?: PageInfo | undefined;
1215
+
1216
+ /**
1217
+ * @generated from field: repeated string cursors = 4;
1218
+ */
1219
+ cursors: string[];
1220
+ };
1221
+
1222
+ /**
1223
+ * Describes the message deploy.v1.ListEnvironmentsResponse.
1224
+ * Use `create(ListEnvironmentsResponseSchema)` to create a new message.
1225
+ */
1226
+ export declare const ListEnvironmentsResponseSchema: GenMessage<ListEnvironmentsResponse>;
1227
+
1228
+ /**
1229
+ * @generated from message deploy.v1.GetEnvironmentRequest
1230
+ */
1231
+ export declare type GetEnvironmentRequest = Message<"deploy.v1.GetEnvironmentRequest"> & {
1232
+ /**
1233
+ * @generated from field: string id = 1;
1234
+ */
1235
+ id: string;
1236
+ };
1237
+
1238
+ /**
1239
+ * Describes the message deploy.v1.GetEnvironmentRequest.
1240
+ * Use `create(GetEnvironmentRequestSchema)` to create a new message.
1241
+ */
1242
+ export declare const GetEnvironmentRequestSchema: GenMessage<GetEnvironmentRequest>;
1243
+
1244
+ /**
1245
+ * @generated from message deploy.v1.GetEnvironmentResponse
1246
+ */
1247
+ export declare type GetEnvironmentResponse = Message<"deploy.v1.GetEnvironmentResponse"> & {
1248
+ /**
1249
+ * @generated from field: deploy.v1.Environment environment = 1;
1250
+ */
1251
+ environment?: Environment | undefined;
1252
+ };
1253
+
1254
+ /**
1255
+ * Describes the message deploy.v1.GetEnvironmentResponse.
1256
+ * Use `create(GetEnvironmentResponseSchema)` to create a new message.
1257
+ */
1258
+ export declare const GetEnvironmentResponseSchema: GenMessage<GetEnvironmentResponse>;
1259
+
1260
+ /**
1261
+ * @generated from message deploy.v1.CreateEnvironmentRequest
1262
+ */
1263
+ export declare type CreateEnvironmentRequest = Message<"deploy.v1.CreateEnvironmentRequest"> & {
1264
+ /**
1265
+ * @generated from field: string app_id = 1;
1266
+ */
1267
+ appId: string;
1268
+
1269
+ /**
1270
+ * @generated from field: string role = 2;
1271
+ */
1272
+ role: string;
1273
+
1274
+ /**
1275
+ * @generated from field: string name = 3;
1276
+ */
1277
+ name: string;
1278
+
1279
+ /**
1280
+ * @generated from field: string cf_worker_name = 4;
1281
+ */
1282
+ cfWorkerName: string;
1283
+
1284
+ /**
1285
+ * @generated from field: optional string wrangler_env = 5;
1286
+ */
1287
+ wranglerEnv?: string | undefined;
1288
+
1289
+ /**
1290
+ * @generated from field: optional string match_branches = 6;
1291
+ */
1292
+ matchBranches?: string | undefined;
1293
+
1294
+ /**
1295
+ * @generated from field: optional string build_command = 7;
1296
+ */
1297
+ buildCommand?: string | undefined;
1298
+
1299
+ /**
1300
+ * @generated from field: optional string deploy_command = 8;
1301
+ */
1302
+ deployCommand?: string | undefined;
1303
+
1304
+ /**
1305
+ * @generated from field: optional bool build_enabled = 9;
1306
+ */
1307
+ buildEnabled?: boolean | undefined;
1308
+ };
1309
+
1310
+ /**
1311
+ * Describes the message deploy.v1.CreateEnvironmentRequest.
1312
+ * Use `create(CreateEnvironmentRequestSchema)` to create a new message.
1313
+ */
1314
+ export declare const CreateEnvironmentRequestSchema: GenMessage<CreateEnvironmentRequest>;
1315
+
1316
+ /**
1317
+ * @generated from message deploy.v1.CreateEnvironmentResponse
1318
+ */
1319
+ export declare type CreateEnvironmentResponse = Message<"deploy.v1.CreateEnvironmentResponse"> & {
1320
+ /**
1321
+ * @generated from field: deploy.v1.Environment environment = 1;
1322
+ */
1323
+ environment?: Environment | undefined;
1324
+ };
1325
+
1326
+ /**
1327
+ * Describes the message deploy.v1.CreateEnvironmentResponse.
1328
+ * Use `create(CreateEnvironmentResponseSchema)` to create a new message.
1329
+ */
1330
+ export declare const CreateEnvironmentResponseSchema: GenMessage<CreateEnvironmentResponse>;
1331
+
1332
+ /**
1333
+ * @generated from message deploy.v1.UpdateEnvironmentRequest
1334
+ */
1335
+ export declare type UpdateEnvironmentRequest = Message<"deploy.v1.UpdateEnvironmentRequest"> & {
1336
+ /**
1337
+ * @generated from field: string id = 1;
1338
+ */
1339
+ id: string;
1340
+
1341
+ /**
1342
+ * @generated from field: string name = 2;
1343
+ */
1344
+ name: string;
1345
+
1346
+ /**
1347
+ * @generated from field: string cf_worker_name = 3;
1348
+ */
1349
+ cfWorkerName: string;
1350
+
1351
+ /**
1352
+ * @generated from field: optional string wrangler_env = 4;
1353
+ */
1354
+ wranglerEnv?: string | undefined;
1355
+
1356
+ /**
1357
+ * @generated from field: optional string match_branches = 5;
1358
+ */
1359
+ matchBranches?: string | undefined;
1360
+
1361
+ /**
1362
+ * @generated from field: optional string build_command = 6;
1363
+ */
1364
+ buildCommand?: string | undefined;
1365
+
1366
+ /**
1367
+ * @generated from field: optional string deploy_command = 7;
1368
+ */
1369
+ deployCommand?: string | undefined;
1370
+
1371
+ /**
1372
+ * @generated from field: optional bool build_enabled = 8;
1373
+ */
1374
+ buildEnabled?: boolean | undefined;
1375
+ };
1376
+
1377
+ /**
1378
+ * Describes the message deploy.v1.UpdateEnvironmentRequest.
1379
+ * Use `create(UpdateEnvironmentRequestSchema)` to create a new message.
1380
+ */
1381
+ export declare const UpdateEnvironmentRequestSchema: GenMessage<UpdateEnvironmentRequest>;
1382
+
1383
+ /**
1384
+ * @generated from message deploy.v1.UpdateEnvironmentResponse
1385
+ */
1386
+ export declare type UpdateEnvironmentResponse = Message<"deploy.v1.UpdateEnvironmentResponse"> & {
1387
+ /**
1388
+ * @generated from field: deploy.v1.Environment environment = 1;
1389
+ */
1390
+ environment?: Environment | undefined;
1391
+ };
1392
+
1393
+ /**
1394
+ * Describes the message deploy.v1.UpdateEnvironmentResponse.
1395
+ * Use `create(UpdateEnvironmentResponseSchema)` to create a new message.
1396
+ */
1397
+ export declare const UpdateEnvironmentResponseSchema: GenMessage<UpdateEnvironmentResponse>;
1398
+
1399
+ /**
1400
+ * @generated from message deploy.v1.DeleteEnvironmentRequest
1401
+ */
1402
+ export declare type DeleteEnvironmentRequest = Message<"deploy.v1.DeleteEnvironmentRequest"> & {
1403
+ /**
1404
+ * @generated from field: string id = 1;
1405
+ */
1406
+ id: string;
1407
+ };
1408
+
1409
+ /**
1410
+ * Describes the message deploy.v1.DeleteEnvironmentRequest.
1411
+ * Use `create(DeleteEnvironmentRequestSchema)` to create a new message.
1412
+ */
1413
+ export declare const DeleteEnvironmentRequestSchema: GenMessage<DeleteEnvironmentRequest>;
1414
+
1415
+ /**
1416
+ * @generated from message deploy.v1.DeleteEnvironmentResponse
1417
+ */
1418
+ export declare type DeleteEnvironmentResponse = Message<"deploy.v1.DeleteEnvironmentResponse"> & {
1419
+ /**
1420
+ * @generated from field: bool success = 1;
1421
+ */
1422
+ success: boolean;
1423
+ };
1424
+
1425
+ /**
1426
+ * Describes the message deploy.v1.DeleteEnvironmentResponse.
1427
+ * Use `create(DeleteEnvironmentResponseSchema)` to create a new message.
1428
+ */
1429
+ export declare const DeleteEnvironmentResponseSchema: GenMessage<DeleteEnvironmentResponse>;
1430
+
1431
+ /**
1432
+ * @generated from message deploy.v1.ListSecretBindingsRequest
1433
+ */
1434
+ export declare type ListSecretBindingsRequest = Message<"deploy.v1.ListSecretBindingsRequest"> & {
1435
+ /**
1436
+ * @generated from field: optional google.protobuf.Struct where = 1;
1437
+ */
1438
+ where?: JsonObject | undefined;
1439
+
1440
+ /**
1441
+ * @generated from field: optional string after = 2;
1442
+ */
1443
+ after?: string | undefined;
1444
+
1445
+ /**
1446
+ * @generated from field: optional string before = 3;
1447
+ */
1448
+ before?: string | undefined;
1449
+
1450
+ /**
1451
+ * @generated from field: optional int32 first = 4;
1452
+ */
1453
+ first?: number | undefined;
1454
+
1455
+ /**
1456
+ * @generated from field: optional int32 last = 5;
1457
+ */
1458
+ last?: number | undefined;
1459
+ };
1460
+
1461
+ /**
1462
+ * Describes the message deploy.v1.ListSecretBindingsRequest.
1463
+ * Use `create(ListSecretBindingsRequestSchema)` to create a new message.
1464
+ */
1465
+ export declare const ListSecretBindingsRequestSchema: GenMessage<ListSecretBindingsRequest>;
1466
+
1467
+ /**
1468
+ * @generated from message deploy.v1.ListSecretBindingsResponse
1469
+ */
1470
+ export declare type ListSecretBindingsResponse = Message<"deploy.v1.ListSecretBindingsResponse"> & {
1471
+ /**
1472
+ * @generated from field: repeated deploy.v1.SecretBinding items = 1;
1473
+ */
1474
+ items: SecretBinding[];
1475
+
1476
+ /**
1477
+ * @generated from field: int32 total = 2;
1478
+ */
1479
+ total: number;
1480
+
1481
+ /**
1482
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
1483
+ */
1484
+ pageInfo?: PageInfo | undefined;
1485
+
1486
+ /**
1487
+ * @generated from field: repeated string cursors = 4;
1488
+ */
1489
+ cursors: string[];
1490
+ };
1491
+
1492
+ /**
1493
+ * Describes the message deploy.v1.ListSecretBindingsResponse.
1494
+ * Use `create(ListSecretBindingsResponseSchema)` to create a new message.
1495
+ */
1496
+ export declare const ListSecretBindingsResponseSchema: GenMessage<ListSecretBindingsResponse>;
1497
+
1498
+ /**
1499
+ * @generated from message deploy.v1.GetSecretBindingRequest
1500
+ */
1501
+ export declare type GetSecretBindingRequest = Message<"deploy.v1.GetSecretBindingRequest"> & {
1502
+ /**
1503
+ * @generated from field: string id = 1;
1504
+ */
1505
+ id: string;
1506
+ };
1507
+
1508
+ /**
1509
+ * Describes the message deploy.v1.GetSecretBindingRequest.
1510
+ * Use `create(GetSecretBindingRequestSchema)` to create a new message.
1511
+ */
1512
+ export declare const GetSecretBindingRequestSchema: GenMessage<GetSecretBindingRequest>;
1513
+
1514
+ /**
1515
+ * @generated from message deploy.v1.GetSecretBindingResponse
1516
+ */
1517
+ export declare type GetSecretBindingResponse = Message<"deploy.v1.GetSecretBindingResponse"> & {
1518
+ /**
1519
+ * @generated from field: deploy.v1.SecretBinding secret_binding = 1;
1520
+ */
1521
+ secretBinding?: SecretBinding | undefined;
1522
+ };
1523
+
1524
+ /**
1525
+ * Describes the message deploy.v1.GetSecretBindingResponse.
1526
+ * Use `create(GetSecretBindingResponseSchema)` to create a new message.
1527
+ */
1528
+ export declare const GetSecretBindingResponseSchema: GenMessage<GetSecretBindingResponse>;
1529
+
1530
+ /**
1531
+ * @generated from message deploy.v1.CreateSecretBindingRequest
1532
+ */
1533
+ export declare type CreateSecretBindingRequest = Message<"deploy.v1.CreateSecretBindingRequest"> & {
1534
+ /**
1535
+ * @generated from field: string environment_id = 1;
1536
+ */
1537
+ environmentId: string;
1538
+
1539
+ /**
1540
+ * @generated from field: string kind = 2;
1541
+ */
1542
+ kind: string;
1543
+
1544
+ /**
1545
+ * @generated from field: string worker_secret_name = 3;
1546
+ */
1547
+ workerSecretName: string;
1548
+
1549
+ /**
1550
+ * @generated from field: optional string vault_ref = 4;
1551
+ */
1552
+ vaultRef?: string | undefined;
1553
+
1554
+ /**
1555
+ * @generated from field: optional string plain_value = 5;
1556
+ */
1557
+ plainValue?: string | undefined;
1558
+ };
1559
+
1560
+ /**
1561
+ * Describes the message deploy.v1.CreateSecretBindingRequest.
1562
+ * Use `create(CreateSecretBindingRequestSchema)` to create a new message.
1563
+ */
1564
+ export declare const CreateSecretBindingRequestSchema: GenMessage<CreateSecretBindingRequest>;
1565
+
1566
+ /**
1567
+ * @generated from message deploy.v1.CreateSecretBindingResponse
1568
+ */
1569
+ export declare type CreateSecretBindingResponse = Message<"deploy.v1.CreateSecretBindingResponse"> & {
1570
+ /**
1571
+ * @generated from field: deploy.v1.SecretBinding secret_binding = 1;
1572
+ */
1573
+ secretBinding?: SecretBinding | undefined;
1574
+ };
1575
+
1576
+ /**
1577
+ * Describes the message deploy.v1.CreateSecretBindingResponse.
1578
+ * Use `create(CreateSecretBindingResponseSchema)` to create a new message.
1579
+ */
1580
+ export declare const CreateSecretBindingResponseSchema: GenMessage<CreateSecretBindingResponse>;
1581
+
1582
+ /**
1583
+ * @generated from message deploy.v1.UpdateSecretBindingRequest
1584
+ */
1585
+ export declare type UpdateSecretBindingRequest = Message<"deploy.v1.UpdateSecretBindingRequest"> & {
1586
+ /**
1587
+ * @generated from field: string id = 1;
1588
+ */
1589
+ id: string;
1590
+
1591
+ /**
1592
+ * @generated from field: string kind = 2;
1593
+ */
1594
+ kind: string;
1595
+
1596
+ /**
1597
+ * @generated from field: string worker_secret_name = 3;
1598
+ */
1599
+ workerSecretName: string;
1600
+
1601
+ /**
1602
+ * @generated from field: optional string vault_ref = 4;
1603
+ */
1604
+ vaultRef?: string | undefined;
1605
+
1606
+ /**
1607
+ * @generated from field: optional string plain_value = 5;
1608
+ */
1609
+ plainValue?: string | undefined;
1610
+ };
1611
+
1612
+ /**
1613
+ * Describes the message deploy.v1.UpdateSecretBindingRequest.
1614
+ * Use `create(UpdateSecretBindingRequestSchema)` to create a new message.
1615
+ */
1616
+ export declare const UpdateSecretBindingRequestSchema: GenMessage<UpdateSecretBindingRequest>;
1617
+
1618
+ /**
1619
+ * @generated from message deploy.v1.UpdateSecretBindingResponse
1620
+ */
1621
+ export declare type UpdateSecretBindingResponse = Message<"deploy.v1.UpdateSecretBindingResponse"> & {
1622
+ /**
1623
+ * @generated from field: deploy.v1.SecretBinding secret_binding = 1;
1624
+ */
1625
+ secretBinding?: SecretBinding | undefined;
1626
+ };
1627
+
1628
+ /**
1629
+ * Describes the message deploy.v1.UpdateSecretBindingResponse.
1630
+ * Use `create(UpdateSecretBindingResponseSchema)` to create a new message.
1631
+ */
1632
+ export declare const UpdateSecretBindingResponseSchema: GenMessage<UpdateSecretBindingResponse>;
1633
+
1634
+ /**
1635
+ * @generated from message deploy.v1.DeleteSecretBindingRequest
1636
+ */
1637
+ export declare type DeleteSecretBindingRequest = Message<"deploy.v1.DeleteSecretBindingRequest"> & {
1638
+ /**
1639
+ * @generated from field: string id = 1;
1640
+ */
1641
+ id: string;
1642
+ };
1643
+
1644
+ /**
1645
+ * Describes the message deploy.v1.DeleteSecretBindingRequest.
1646
+ * Use `create(DeleteSecretBindingRequestSchema)` to create a new message.
1647
+ */
1648
+ export declare const DeleteSecretBindingRequestSchema: GenMessage<DeleteSecretBindingRequest>;
1649
+
1650
+ /**
1651
+ * @generated from message deploy.v1.DeleteSecretBindingResponse
1652
+ */
1653
+ export declare type DeleteSecretBindingResponse = Message<"deploy.v1.DeleteSecretBindingResponse"> & {
1654
+ /**
1655
+ * @generated from field: bool success = 1;
1656
+ */
1657
+ success: boolean;
1658
+ };
1659
+
1660
+ /**
1661
+ * Describes the message deploy.v1.DeleteSecretBindingResponse.
1662
+ * Use `create(DeleteSecretBindingResponseSchema)` to create a new message.
1663
+ */
1664
+ export declare const DeleteSecretBindingResponseSchema: GenMessage<DeleteSecretBindingResponse>;
1665
+
1666
+ /**
1667
+ * @generated from message deploy.v1.ListDomainsRequest
1668
+ */
1669
+ export declare type ListDomainsRequest = Message<"deploy.v1.ListDomainsRequest"> & {
1670
+ /**
1671
+ * @generated from field: optional google.protobuf.Struct where = 1;
1672
+ */
1673
+ where?: JsonObject | undefined;
1674
+
1675
+ /**
1676
+ * @generated from field: optional string after = 2;
1677
+ */
1678
+ after?: string | undefined;
1679
+
1680
+ /**
1681
+ * @generated from field: optional string before = 3;
1682
+ */
1683
+ before?: string | undefined;
1684
+
1685
+ /**
1686
+ * @generated from field: optional int32 first = 4;
1687
+ */
1688
+ first?: number | undefined;
1689
+
1690
+ /**
1691
+ * @generated from field: optional int32 last = 5;
1692
+ */
1693
+ last?: number | undefined;
1694
+ };
1695
+
1696
+ /**
1697
+ * Describes the message deploy.v1.ListDomainsRequest.
1698
+ * Use `create(ListDomainsRequestSchema)` to create a new message.
1699
+ */
1700
+ export declare const ListDomainsRequestSchema: GenMessage<ListDomainsRequest>;
1701
+
1702
+ /**
1703
+ * @generated from message deploy.v1.ListDomainsResponse
1704
+ */
1705
+ export declare type ListDomainsResponse = Message<"deploy.v1.ListDomainsResponse"> & {
1706
+ /**
1707
+ * @generated from field: repeated deploy.v1.Domain items = 1;
1708
+ */
1709
+ items: Domain[];
1710
+
1711
+ /**
1712
+ * @generated from field: int32 total = 2;
1713
+ */
1714
+ total: number;
1715
+
1716
+ /**
1717
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
1718
+ */
1719
+ pageInfo?: PageInfo | undefined;
1720
+
1721
+ /**
1722
+ * @generated from field: repeated string cursors = 4;
1723
+ */
1724
+ cursors: string[];
1725
+ };
1726
+
1727
+ /**
1728
+ * Describes the message deploy.v1.ListDomainsResponse.
1729
+ * Use `create(ListDomainsResponseSchema)` to create a new message.
1730
+ */
1731
+ export declare const ListDomainsResponseSchema: GenMessage<ListDomainsResponse>;
1732
+
1733
+ /**
1734
+ * @generated from message deploy.v1.GetDomainRequest
1735
+ */
1736
+ export declare type GetDomainRequest = Message<"deploy.v1.GetDomainRequest"> & {
1737
+ /**
1738
+ * @generated from field: string id = 1;
1739
+ */
1740
+ id: string;
1741
+ };
1742
+
1743
+ /**
1744
+ * Describes the message deploy.v1.GetDomainRequest.
1745
+ * Use `create(GetDomainRequestSchema)` to create a new message.
1746
+ */
1747
+ export declare const GetDomainRequestSchema: GenMessage<GetDomainRequest>;
1748
+
1749
+ /**
1750
+ * @generated from message deploy.v1.GetDomainResponse
1751
+ */
1752
+ export declare type GetDomainResponse = Message<"deploy.v1.GetDomainResponse"> & {
1753
+ /**
1754
+ * @generated from field: deploy.v1.Domain domain = 1;
1755
+ */
1756
+ domain?: Domain | undefined;
1757
+ };
1758
+
1759
+ /**
1760
+ * Describes the message deploy.v1.GetDomainResponse.
1761
+ * Use `create(GetDomainResponseSchema)` to create a new message.
1762
+ */
1763
+ export declare const GetDomainResponseSchema: GenMessage<GetDomainResponse>;
1764
+
1765
+ /**
1766
+ * @generated from message deploy.v1.CreateDomainRequest
1767
+ */
1768
+ export declare type CreateDomainRequest = Message<"deploy.v1.CreateDomainRequest"> & {
1769
+ /**
1770
+ * @generated from field: string environment_id = 1;
1771
+ */
1772
+ environmentId: string;
1773
+
1774
+ /**
1775
+ * @generated from field: string hostname = 2;
1776
+ */
1777
+ hostname: string;
1778
+
1779
+ /**
1780
+ * @generated from field: string mode = 3;
1781
+ */
1782
+ mode: string;
1783
+
1784
+ /**
1785
+ * @generated from field: optional string zone_id = 4;
1786
+ */
1787
+ zoneId?: string | undefined;
1788
+
1789
+ /**
1790
+ * @generated from field: optional bool is_primary = 5;
1791
+ */
1792
+ isPrimary?: boolean | undefined;
1793
+ };
1794
+
1795
+ /**
1796
+ * Describes the message deploy.v1.CreateDomainRequest.
1797
+ * Use `create(CreateDomainRequestSchema)` to create a new message.
1798
+ */
1799
+ export declare const CreateDomainRequestSchema: GenMessage<CreateDomainRequest>;
1800
+
1801
+ /**
1802
+ * @generated from message deploy.v1.CreateDomainResponse
1803
+ */
1804
+ export declare type CreateDomainResponse = Message<"deploy.v1.CreateDomainResponse"> & {
1805
+ /**
1806
+ * @generated from field: deploy.v1.Domain domain = 1;
1807
+ */
1808
+ domain?: Domain | undefined;
1809
+ };
1810
+
1811
+ /**
1812
+ * Describes the message deploy.v1.CreateDomainResponse.
1813
+ * Use `create(CreateDomainResponseSchema)` to create a new message.
1814
+ */
1815
+ export declare const CreateDomainResponseSchema: GenMessage<CreateDomainResponse>;
1816
+
1817
+ /**
1818
+ * @generated from message deploy.v1.DeleteDomainRequest
1819
+ */
1820
+ export declare type DeleteDomainRequest = Message<"deploy.v1.DeleteDomainRequest"> & {
1821
+ /**
1822
+ * @generated from field: string id = 1;
1823
+ */
1824
+ id: string;
1825
+ };
1826
+
1827
+ /**
1828
+ * Describes the message deploy.v1.DeleteDomainRequest.
1829
+ * Use `create(DeleteDomainRequestSchema)` to create a new message.
1830
+ */
1831
+ export declare const DeleteDomainRequestSchema: GenMessage<DeleteDomainRequest>;
1832
+
1833
+ /**
1834
+ * @generated from message deploy.v1.DeleteDomainResponse
1835
+ */
1836
+ export declare type DeleteDomainResponse = Message<"deploy.v1.DeleteDomainResponse"> & {
1837
+ /**
1838
+ * @generated from field: bool success = 1;
1839
+ */
1840
+ success: boolean;
1841
+ };
1842
+
1843
+ /**
1844
+ * Describes the message deploy.v1.DeleteDomainResponse.
1845
+ * Use `create(DeleteDomainResponseSchema)` to create a new message.
1846
+ */
1847
+ export declare const DeleteDomainResponseSchema: GenMessage<DeleteDomainResponse>;
1848
+
1849
+ /**
1850
+ * @generated from message deploy.v1.ListDeploymentsRequest
1851
+ */
1852
+ export declare type ListDeploymentsRequest = Message<"deploy.v1.ListDeploymentsRequest"> & {
1853
+ /**
1854
+ * @generated from field: optional google.protobuf.Struct where = 1;
1855
+ */
1856
+ where?: JsonObject | undefined;
1857
+
1858
+ /**
1859
+ * @generated from field: optional string after = 2;
1860
+ */
1861
+ after?: string | undefined;
1862
+
1863
+ /**
1864
+ * @generated from field: optional string before = 3;
1865
+ */
1866
+ before?: string | undefined;
1867
+
1868
+ /**
1869
+ * @generated from field: optional int32 first = 4;
1870
+ */
1871
+ first?: number | undefined;
1872
+
1873
+ /**
1874
+ * @generated from field: optional int32 last = 5;
1875
+ */
1876
+ last?: number | undefined;
1877
+ };
1878
+
1879
+ /**
1880
+ * Describes the message deploy.v1.ListDeploymentsRequest.
1881
+ * Use `create(ListDeploymentsRequestSchema)` to create a new message.
1882
+ */
1883
+ export declare const ListDeploymentsRequestSchema: GenMessage<ListDeploymentsRequest>;
1884
+
1885
+ /**
1886
+ * @generated from message deploy.v1.ListDeploymentsResponse
1887
+ */
1888
+ export declare type ListDeploymentsResponse = Message<"deploy.v1.ListDeploymentsResponse"> & {
1889
+ /**
1890
+ * @generated from field: repeated deploy.v1.Deployment items = 1;
1891
+ */
1892
+ items: Deployment[];
1893
+
1894
+ /**
1895
+ * @generated from field: int32 total = 2;
1896
+ */
1897
+ total: number;
1898
+
1899
+ /**
1900
+ * @generated from field: optional common.v1.PageInfo page_info = 3;
1901
+ */
1902
+ pageInfo?: PageInfo | undefined;
1903
+
1904
+ /**
1905
+ * @generated from field: repeated string cursors = 4;
1906
+ */
1907
+ cursors: string[];
1908
+ };
1909
+
1910
+ /**
1911
+ * Describes the message deploy.v1.ListDeploymentsResponse.
1912
+ * Use `create(ListDeploymentsResponseSchema)` to create a new message.
1913
+ */
1914
+ export declare const ListDeploymentsResponseSchema: GenMessage<ListDeploymentsResponse>;
1915
+
1916
+ /**
1917
+ * @generated from message deploy.v1.GetDeploymentRequest
1918
+ */
1919
+ export declare type GetDeploymentRequest = Message<"deploy.v1.GetDeploymentRequest"> & {
1920
+ /**
1921
+ * @generated from field: string id = 1;
1922
+ */
1923
+ id: string;
1924
+ };
1925
+
1926
+ /**
1927
+ * Describes the message deploy.v1.GetDeploymentRequest.
1928
+ * Use `create(GetDeploymentRequestSchema)` to create a new message.
1929
+ */
1930
+ export declare const GetDeploymentRequestSchema: GenMessage<GetDeploymentRequest>;
1931
+
1932
+ /**
1933
+ * @generated from message deploy.v1.GetDeploymentResponse
1934
+ */
1935
+ export declare type GetDeploymentResponse = Message<"deploy.v1.GetDeploymentResponse"> & {
1936
+ /**
1937
+ * @generated from field: deploy.v1.Deployment deployment = 1;
1938
+ */
1939
+ deployment?: Deployment | undefined;
1940
+ };
1941
+
1942
+ /**
1943
+ * Describes the message deploy.v1.GetDeploymentResponse.
1944
+ * Use `create(GetDeploymentResponseSchema)` to create a new message.
1945
+ */
1946
+ export declare const GetDeploymentResponseSchema: GenMessage<GetDeploymentResponse>;
1947
+
1948
+ /**
1949
+ * @generated from message deploy.v1.TriggerReconcileRequest
1950
+ */
1951
+ export declare type TriggerReconcileRequest = Message<"deploy.v1.TriggerReconcileRequest"> & {
1952
+ /**
1953
+ * @generated from field: string app_id = 1;
1954
+ */
1955
+ appId: string;
1956
+ };
1957
+
1958
+ /**
1959
+ * Describes the message deploy.v1.TriggerReconcileRequest.
1960
+ * Use `create(TriggerReconcileRequestSchema)` to create a new message.
1961
+ */
1962
+ export declare const TriggerReconcileRequestSchema: GenMessage<TriggerReconcileRequest>;
1963
+
1964
+ /**
1965
+ * @generated from message deploy.v1.TriggerReconcileResponse
1966
+ */
1967
+ export declare type TriggerReconcileResponse = Message<"deploy.v1.TriggerReconcileResponse"> & {
1968
+ /**
1969
+ * @generated from field: deploy.v1.App app = 1;
1970
+ */
1971
+ app?: App | undefined;
1972
+ };
1973
+
1974
+ /**
1975
+ * Describes the message deploy.v1.TriggerReconcileResponse.
1976
+ * Use `create(TriggerReconcileResponseSchema)` to create a new message.
1977
+ */
1978
+ export declare const TriggerReconcileResponseSchema: GenMessage<TriggerReconcileResponse>;
1979
+
1980
+ /**
1981
+ * @generated from message deploy.v1.TriggerDeployRequest
1982
+ */
1983
+ export declare type TriggerDeployRequest = Message<"deploy.v1.TriggerDeployRequest"> & {
1984
+ /**
1985
+ * @generated from field: string environment_id = 1;
1986
+ */
1987
+ environmentId: string;
1988
+
1989
+ /**
1990
+ * @generated from field: optional string git_branch = 2;
1991
+ */
1992
+ gitBranch?: string | undefined;
1993
+ };
1994
+
1995
+ /**
1996
+ * Describes the message deploy.v1.TriggerDeployRequest.
1997
+ * Use `create(TriggerDeployRequestSchema)` to create a new message.
1998
+ */
1999
+ export declare const TriggerDeployRequestSchema: GenMessage<TriggerDeployRequest>;
2000
+
2001
+ /**
2002
+ * @generated from message deploy.v1.TriggerDeployResponse
2003
+ */
2004
+ export declare type TriggerDeployResponse = Message<"deploy.v1.TriggerDeployResponse"> & {
2005
+ /**
2006
+ * @generated from field: deploy.v1.Deployment deployment = 1;
2007
+ */
2008
+ deployment?: Deployment | undefined;
2009
+ };
2010
+
2011
+ /**
2012
+ * Describes the message deploy.v1.TriggerDeployResponse.
2013
+ * Use `create(TriggerDeployResponseSchema)` to create a new message.
2014
+ */
2015
+ export declare const TriggerDeployResponseSchema: GenMessage<TriggerDeployResponse>;
2016
+
2017
+ /**
2018
+ * @generated from message deploy.v1.GetReconcileStatusRequest
2019
+ */
2020
+ export declare type GetReconcileStatusRequest = Message<"deploy.v1.GetReconcileStatusRequest"> & {
2021
+ /**
2022
+ * @generated from field: string app_id = 1;
2023
+ */
2024
+ appId: string;
2025
+ };
2026
+
2027
+ /**
2028
+ * Describes the message deploy.v1.GetReconcileStatusRequest.
2029
+ * Use `create(GetReconcileStatusRequestSchema)` to create a new message.
2030
+ */
2031
+ export declare const GetReconcileStatusRequestSchema: GenMessage<GetReconcileStatusRequest>;
2032
+
2033
+ /**
2034
+ * @generated from message deploy.v1.GetReconcileStatusResponse
2035
+ */
2036
+ export declare type GetReconcileStatusResponse = Message<"deploy.v1.GetReconcileStatusResponse"> & {
2037
+ /**
2038
+ * @generated from field: deploy.v1.ReconcileStatus reconcile = 1;
2039
+ */
2040
+ reconcile?: ReconcileStatus | undefined;
2041
+
2042
+ /**
2043
+ * per-child status mirror
2044
+ *
2045
+ * @generated from field: repeated deploy.v1.Environment environments = 2;
2046
+ */
2047
+ environments: Environment[];
2048
+ };
2049
+
2050
+ /**
2051
+ * Describes the message deploy.v1.GetReconcileStatusResponse.
2052
+ * Use `create(GetReconcileStatusResponseSchema)` to create a new message.
2053
+ */
2054
+ export declare const GetReconcileStatusResponseSchema: GenMessage<GetReconcileStatusResponse>;
2055
+
2056
+ /**
2057
+ * @generated from service deploy.v1.DeployService
2058
+ */
2059
+ export declare const DeployService: GenService<{
2060
+ /**
2061
+ * ── Provider accounts ──
2062
+ *
2063
+ * @generated from rpc deploy.v1.DeployService.ListProviderAccounts
2064
+ */
2065
+ listProviderAccounts: {
2066
+ methodKind: "unary";
2067
+ input: typeof ListProviderAccountsRequestSchema;
2068
+ output: typeof ListProviderAccountsResponseSchema;
2069
+ },
2070
+ /**
2071
+ * @generated from rpc deploy.v1.DeployService.GetProviderAccount
2072
+ */
2073
+ getProviderAccount: {
2074
+ methodKind: "unary";
2075
+ input: typeof GetProviderAccountRequestSchema;
2076
+ output: typeof GetProviderAccountResponseSchema;
2077
+ },
2078
+ /**
2079
+ * @generated from rpc deploy.v1.DeployService.CreateProviderAccount
2080
+ */
2081
+ createProviderAccount: {
2082
+ methodKind: "unary";
2083
+ input: typeof CreateProviderAccountRequestSchema;
2084
+ output: typeof CreateProviderAccountResponseSchema;
2085
+ },
2086
+ /**
2087
+ * @generated from rpc deploy.v1.DeployService.UpdateProviderAccount
2088
+ */
2089
+ updateProviderAccount: {
2090
+ methodKind: "unary";
2091
+ input: typeof UpdateProviderAccountRequestSchema;
2092
+ output: typeof UpdateProviderAccountResponseSchema;
2093
+ },
2094
+ /**
2095
+ * @generated from rpc deploy.v1.DeployService.DeleteProviderAccount
2096
+ */
2097
+ deleteProviderAccount: {
2098
+ methodKind: "unary";
2099
+ input: typeof DeleteProviderAccountRequestSchema;
2100
+ output: typeof DeleteProviderAccountResponseSchema;
2101
+ },
2102
+ /**
2103
+ * ── Apps ──
2104
+ *
2105
+ * @generated from rpc deploy.v1.DeployService.ListApps
2106
+ */
2107
+ listApps: {
2108
+ methodKind: "unary";
2109
+ input: typeof ListAppsRequestSchema;
2110
+ output: typeof ListAppsResponseSchema;
2111
+ },
2112
+ /**
2113
+ * @generated from rpc deploy.v1.DeployService.GetApp
2114
+ */
2115
+ getApp: {
2116
+ methodKind: "unary";
2117
+ input: typeof GetAppRequestSchema;
2118
+ output: typeof GetAppResponseSchema;
2119
+ },
2120
+ /**
2121
+ * @generated from rpc deploy.v1.DeployService.CreateApp
2122
+ */
2123
+ createApp: {
2124
+ methodKind: "unary";
2125
+ input: typeof CreateAppRequestSchema;
2126
+ output: typeof CreateAppResponseSchema;
2127
+ },
2128
+ /**
2129
+ * @generated from rpc deploy.v1.DeployService.UpdateApp
2130
+ */
2131
+ updateApp: {
2132
+ methodKind: "unary";
2133
+ input: typeof UpdateAppRequestSchema;
2134
+ output: typeof UpdateAppResponseSchema;
2135
+ },
2136
+ /**
2137
+ * @generated from rpc deploy.v1.DeployService.DeleteApp
2138
+ */
2139
+ deleteApp: {
2140
+ methodKind: "unary";
2141
+ input: typeof DeleteAppRequestSchema;
2142
+ output: typeof DeleteAppResponseSchema;
2143
+ },
2144
+ /**
2145
+ * ── Environments ──
2146
+ *
2147
+ * @generated from rpc deploy.v1.DeployService.ListEnvironments
2148
+ */
2149
+ listEnvironments: {
2150
+ methodKind: "unary";
2151
+ input: typeof ListEnvironmentsRequestSchema;
2152
+ output: typeof ListEnvironmentsResponseSchema;
2153
+ },
2154
+ /**
2155
+ * @generated from rpc deploy.v1.DeployService.GetEnvironment
2156
+ */
2157
+ getEnvironment: {
2158
+ methodKind: "unary";
2159
+ input: typeof GetEnvironmentRequestSchema;
2160
+ output: typeof GetEnvironmentResponseSchema;
2161
+ },
2162
+ /**
2163
+ * @generated from rpc deploy.v1.DeployService.CreateEnvironment
2164
+ */
2165
+ createEnvironment: {
2166
+ methodKind: "unary";
2167
+ input: typeof CreateEnvironmentRequestSchema;
2168
+ output: typeof CreateEnvironmentResponseSchema;
2169
+ },
2170
+ /**
2171
+ * @generated from rpc deploy.v1.DeployService.UpdateEnvironment
2172
+ */
2173
+ updateEnvironment: {
2174
+ methodKind: "unary";
2175
+ input: typeof UpdateEnvironmentRequestSchema;
2176
+ output: typeof UpdateEnvironmentResponseSchema;
2177
+ },
2178
+ /**
2179
+ * @generated from rpc deploy.v1.DeployService.DeleteEnvironment
2180
+ */
2181
+ deleteEnvironment: {
2182
+ methodKind: "unary";
2183
+ input: typeof DeleteEnvironmentRequestSchema;
2184
+ output: typeof DeleteEnvironmentResponseSchema;
2185
+ },
2186
+ /**
2187
+ * ── Secret bindings ──
2188
+ *
2189
+ * @generated from rpc deploy.v1.DeployService.ListSecretBindings
2190
+ */
2191
+ listSecretBindings: {
2192
+ methodKind: "unary";
2193
+ input: typeof ListSecretBindingsRequestSchema;
2194
+ output: typeof ListSecretBindingsResponseSchema;
2195
+ },
2196
+ /**
2197
+ * @generated from rpc deploy.v1.DeployService.GetSecretBinding
2198
+ */
2199
+ getSecretBinding: {
2200
+ methodKind: "unary";
2201
+ input: typeof GetSecretBindingRequestSchema;
2202
+ output: typeof GetSecretBindingResponseSchema;
2203
+ },
2204
+ /**
2205
+ * @generated from rpc deploy.v1.DeployService.CreateSecretBinding
2206
+ */
2207
+ createSecretBinding: {
2208
+ methodKind: "unary";
2209
+ input: typeof CreateSecretBindingRequestSchema;
2210
+ output: typeof CreateSecretBindingResponseSchema;
2211
+ },
2212
+ /**
2213
+ * @generated from rpc deploy.v1.DeployService.UpdateSecretBinding
2214
+ */
2215
+ updateSecretBinding: {
2216
+ methodKind: "unary";
2217
+ input: typeof UpdateSecretBindingRequestSchema;
2218
+ output: typeof UpdateSecretBindingResponseSchema;
2219
+ },
2220
+ /**
2221
+ * @generated from rpc deploy.v1.DeployService.DeleteSecretBinding
2222
+ */
2223
+ deleteSecretBinding: {
2224
+ methodKind: "unary";
2225
+ input: typeof DeleteSecretBindingRequestSchema;
2226
+ output: typeof DeleteSecretBindingResponseSchema;
2227
+ },
2228
+ /**
2229
+ * ── Domains ──
2230
+ *
2231
+ * @generated from rpc deploy.v1.DeployService.ListDomains
2232
+ */
2233
+ listDomains: {
2234
+ methodKind: "unary";
2235
+ input: typeof ListDomainsRequestSchema;
2236
+ output: typeof ListDomainsResponseSchema;
2237
+ },
2238
+ /**
2239
+ * @generated from rpc deploy.v1.DeployService.GetDomain
2240
+ */
2241
+ getDomain: {
2242
+ methodKind: "unary";
2243
+ input: typeof GetDomainRequestSchema;
2244
+ output: typeof GetDomainResponseSchema;
2245
+ },
2246
+ /**
2247
+ * @generated from rpc deploy.v1.DeployService.CreateDomain
2248
+ */
2249
+ createDomain: {
2250
+ methodKind: "unary";
2251
+ input: typeof CreateDomainRequestSchema;
2252
+ output: typeof CreateDomainResponseSchema;
2253
+ },
2254
+ /**
2255
+ * @generated from rpc deploy.v1.DeployService.DeleteDomain
2256
+ */
2257
+ deleteDomain: {
2258
+ methodKind: "unary";
2259
+ input: typeof DeleteDomainRequestSchema;
2260
+ output: typeof DeleteDomainResponseSchema;
2261
+ },
2262
+ /**
2263
+ * ── Deployments (read-only; created by triggers / git push) ──
2264
+ *
2265
+ * @generated from rpc deploy.v1.DeployService.ListDeployments
2266
+ */
2267
+ listDeployments: {
2268
+ methodKind: "unary";
2269
+ input: typeof ListDeploymentsRequestSchema;
2270
+ output: typeof ListDeploymentsResponseSchema;
2271
+ },
2272
+ /**
2273
+ * @generated from rpc deploy.v1.DeployService.GetDeployment
2274
+ */
2275
+ getDeployment: {
2276
+ methodKind: "unary";
2277
+ input: typeof GetDeploymentRequestSchema;
2278
+ output: typeof GetDeploymentResponseSchema;
2279
+ },
2280
+ /**
2281
+ * ── Reconcile / deploy ──
2282
+ *
2283
+ * @generated from rpc deploy.v1.DeployService.TriggerReconcile
2284
+ */
2285
+ triggerReconcile: {
2286
+ methodKind: "unary";
2287
+ input: typeof TriggerReconcileRequestSchema;
2288
+ output: typeof TriggerReconcileResponseSchema;
2289
+ },
2290
+ /**
2291
+ * @generated from rpc deploy.v1.DeployService.TriggerDeploy
2292
+ */
2293
+ triggerDeploy: {
2294
+ methodKind: "unary";
2295
+ input: typeof TriggerDeployRequestSchema;
2296
+ output: typeof TriggerDeployResponseSchema;
2297
+ },
2298
+ /**
2299
+ * @generated from rpc deploy.v1.DeployService.GetReconcileStatus
2300
+ */
2301
+ getReconcileStatus: {
2302
+ methodKind: "unary";
2303
+ input: typeof GetReconcileStatusRequestSchema;
2304
+ output: typeof GetReconcileStatusResponseSchema;
2305
+ },
2306
+ }>;
2307
+