@@ -84,6 +84,37 @@ enum AccessTokenType {
8484 ui
8585}
8686
87+ """
88+ Autogenerated input type of AddAllowedReplaySourceOrgs
89+ """
90+ input AddAllowedReplaySourceOrgsInput {
91+ """
92+ Slugs of orgs to add to the allowed replay sources list
93+ """
94+ allowedOrgSlugs : [String ! ]!
95+
96+ """
97+ A unique identifier for the client performing the mutation.
98+ """
99+ clientMutationId : String
100+
101+ """
102+ Slug of the org to configure (the target org)
103+ """
104+ organizationSlug : String !
105+ }
106+
107+ """
108+ Autogenerated return type of AddAllowedReplaySourceOrgs.
109+ """
110+ type AddAllowedReplaySourceOrgsPayload {
111+ """
112+ A unique identifier for the client performing the mutation.
113+ """
114+ clientMutationId : String
115+ organization : Organization !
116+ }
117+
87118"""
88119Autogenerated return type of AddCertificate.
89120"""
@@ -1256,6 +1287,11 @@ type AppCertificate implements Node {
12561287 """
12571288 last : Int
12581289 ): CertificateConnection !
1290+
1291+ """
1292+ If rate limited by the certificate provider, when the certificate can be retried
1293+ """
1294+ rateLimitedUntil : ISO8601DateTime
12591295 source : String
12601296 validationErrors : [AppCertificateValidationError ! ]!
12611297}
@@ -2099,6 +2135,11 @@ enum CertificateValidationErrorCodeEnum {
20992135 """
21002136 NO_ALLOCATED_IPS
21012137
2138+ """
2139+ Let's Encrypt rate limit exceeded. Too many certificate requests for this hostname
2140+ """
2141+ RATE_LIMITED
2142+
21022143 """
21032144 Service exposing port 443 does not have a TLS handler configured
21042145 """
@@ -4350,14 +4391,13 @@ type DummyWireGuardPeerPayload {
43504391}
43514392
43524393type EgressIPAddress implements Node {
4353- createdAt : ISO8601DateTime !
4354-
43554394 """
43564395 ID of the object.
43574396 """
43584397 id : ID !
43594398 ip : String !
43604399 region : String !
4400+ updatedAt : ISO8601DateTime !
43614401 version : Int !
43624402}
43634403
@@ -5961,6 +6001,12 @@ type MoveAppPayload {
59616001}
59626002
59636003type Mutations {
6004+ addAllowedReplaySourceOrgs (
6005+ """
6006+ Parameters for AddAllowedReplaySourceOrgs
6007+ """
6008+ input : AddAllowedReplaySourceOrgsInput !
6009+ ): AddAllowedReplaySourceOrgsPayload
59646010 addCertificate (
59656011 """
59666012 The application to attach the new hostname to
@@ -6561,6 +6607,12 @@ type Mutations {
65616607 """
65626608 input : ReleaseManagedServiceIPAddressInput !
65636609 ): ReleaseManagedServiceIPAddressPayload
6610+ removeAllowedReplaySourceOrgs (
6611+ """
6612+ Parameters for RemoveAllowedReplaySourceOrgs
6613+ """
6614+ input : RemoveAllowedReplaySourceOrgsInput !
6615+ ): RemoveAllowedReplaySourceOrgsPayload
65646616 removeMachine (
65656617 """
65666618 Parameters for RemoveMachine
@@ -6933,6 +6985,11 @@ type Organization implements Node {
69336985 Check if the organization has agreed to the extension provider terms of service
69346986 """
69356987 agreedToProviderTos (providerName : String ! ): Boolean !
6988+
6989+ """
6990+ Slugs of organizations allowed to send replays to this org
6991+ """
6992+ allowedReplaySourceOrgSlugs : [String ! ]!
69366993 apps (
69376994 """
69386995 Returns the elements in the list that come after the specified cursor.
@@ -8599,6 +8656,37 @@ type RemoteDockerBuilderAppRole implements AppRole {
85998656 name : String !
86008657}
86018658
8659+ """
8660+ Autogenerated input type of RemoveAllowedReplaySourceOrgs
8661+ """
8662+ input RemoveAllowedReplaySourceOrgsInput {
8663+ """
8664+ A unique identifier for the client performing the mutation.
8665+ """
8666+ clientMutationId : String
8667+
8668+ """
8669+ Slugs of orgs to remove from the allowed replay sources list
8670+ """
8671+ orgSlugsToRemove : [String ! ]!
8672+
8673+ """
8674+ Slug of the org to configure (the target org)
8675+ """
8676+ organizationSlug : String !
8677+ }
8678+
8679+ """
8680+ Autogenerated return type of RemoveAllowedReplaySourceOrgs.
8681+ """
8682+ type RemoveAllowedReplaySourceOrgsPayload {
8683+ """
8684+ A unique identifier for the client performing the mutation.
8685+ """
8686+ clientMutationId : String
8687+ organization : Organization !
8688+ }
8689+
86028690"""
86038691Autogenerated input type of RemoveMachine
86048692"""
0 commit comments