@@ -357,6 +357,11 @@ enum AddOnType {
357
357
"""
358
358
enveloop
359
359
360
+ """
361
+ A MySQL database
362
+ """
363
+ fly_mysql
364
+
360
365
"""
361
366
A Kubernetes cluster
362
367
"""
@@ -3282,6 +3287,7 @@ input CreateOrganizationInput {
3282
3287
Whether or not new apps in this org use Apps V2 by default
3283
3288
"""
3284
3289
appsV2DefaultOn : Boolean
3290
+ billingParentOrganizationId : ID
3285
3291
3286
3292
"""
3287
3293
A unique identifier for the client performing the mutation.
@@ -5071,6 +5077,44 @@ type EnablePostgresConsulPayload {
5071
5077
consulUrl : String !
5072
5078
}
5073
5079
5080
+ """
5081
+ Autogenerated input type of EnsureDepotRemoteBuilder
5082
+ """
5083
+ input EnsureDepotRemoteBuilderInput {
5084
+ """
5085
+ The unique application name
5086
+ """
5087
+ appName : String
5088
+
5089
+ """
5090
+ A unique identifier for the client performing the mutation.
5091
+ """
5092
+ clientMutationId : String
5093
+
5094
+ """
5095
+ The node ID of the organization
5096
+ """
5097
+ organizationId : ID
5098
+
5099
+ """
5100
+ Desired region for the remote builder
5101
+ """
5102
+ region : String
5103
+ }
5104
+
5105
+ """
5106
+ Autogenerated return type of EnsureDepotRemoteBuilder.
5107
+ """
5108
+ type EnsureDepotRemoteBuilderPayload {
5109
+ buildId : String !
5110
+ buildToken : String !
5111
+
5112
+ """
5113
+ A unique identifier for the client performing the mutation.
5114
+ """
5115
+ clientMutationId : String
5116
+ }
5117
+
5074
5118
"""
5075
5119
Autogenerated input type of EnsureFlyctlMachineHost
5076
5120
"""
@@ -7000,6 +7044,12 @@ type Mutations {
7000
7044
"""
7001
7045
input : EnablePostgresConsulInput !
7002
7046
): EnablePostgresConsulPayload
7047
+ ensureDepotRemoteBuilder (
7048
+ """
7049
+ Parameters for EnsureDepotRemoteBuilder
7050
+ """
7051
+ input : EnsureDepotRemoteBuilderInput !
7052
+ ): EnsureDepotRemoteBuilderPayload
7003
7053
ensureFlyctlMachineHost (
7004
7054
"""
7005
7055
Parameters for EnsureFlyctlMachineHost
@@ -8555,6 +8605,11 @@ type Queries {
8555
8605
Find a domain by name
8556
8606
"""
8557
8607
domain (name : String ! ): Domain
8608
+
8609
+ """
8610
+ internal field for inter-service authz check
8611
+ """
8612
+ flapsAuthzCheck : Boolean !
8558
8613
githubIntegration : GithubIntegration ! @deprecated (reason : " deprecated" )
8559
8614
herokuIntegration : HerokuIntegration !
8560
8615
@@ -8973,6 +9028,7 @@ type Release implements Node {
8973
9028
"""
8974
9029
imageRef : String
8975
9030
inProgress : Boolean ! @deprecated (reason : " use deployment.inProgress" )
9031
+ metadata : JSON
8976
9032
8977
9033
"""
8978
9034
The reason for the release
@@ -10850,6 +10906,11 @@ input UpdateReleaseInput {
10850
10906
"""
10851
10907
clientMutationId : String
10852
10908
10909
+ """
10910
+ The metadata for the release
10911
+ """
10912
+ metadata : JSON
10913
+
10853
10914
"""
10854
10915
The ID of the release
10855
10916
"""
@@ -10858,7 +10919,7 @@ input UpdateReleaseInput {
10858
10919
"""
10859
10920
The new status for the release
10860
10921
"""
10861
- status : String !
10922
+ status : String
10862
10923
}
10863
10924
10864
10925
"""
0 commit comments