@@ -39,6 +39,7 @@ export type Account = {
3939 paymentMethods ?: Maybe < PaymentMethodConnection > ;
4040 rootUser ?: Maybe < User > ;
4141 subscription ?: Maybe < PlatformSubscription > ;
42+ trialed ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
4243 updatedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
4344 userCount ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
4445 workosConnectionId ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
@@ -1363,6 +1364,7 @@ export type IntegrationWebhookEdge = {
13631364export type Invite = {
13641365 __typename ?: 'Invite' ;
13651366 account ?: Maybe < Account > ;
1367+ admin ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
13661368 email ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
13671369 existing : Scalars [ 'Boolean' ] [ 'output' ] ;
13681370 expiresAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
@@ -1375,6 +1377,7 @@ export type Invite = {
13751377} ;
13761378
13771379export type InviteAttributes = {
1380+ admin ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
13781381 email ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
13791382 inviteGroups ?: InputMaybe < Array < InputMaybe < BindingAttributes > > > ;
13801383} ;
@@ -1621,7 +1624,8 @@ export enum NotificationType {
16211624 IncidentUpdate = 'INCIDENT_UPDATE' ,
16221625 Locked = 'LOCKED' ,
16231626 Mention = 'MENTION' ,
1624- Message = 'MESSAGE'
1627+ Message = 'MESSAGE' ,
1628+ Pending = 'PENDING'
16251629}
16261630
16271631export type OauthAttributes = {
@@ -2026,6 +2030,7 @@ export type PlatformPlan = {
20262030 lineItems ?: Maybe < Array < Maybe < PlatformPlanItem > > > ;
20272031 name : Scalars [ 'String' ] [ 'output' ] ;
20282032 period : PaymentPeriod ;
2033+ trial ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
20292034 updatedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
20302035 visible : Scalars [ 'Boolean' ] [ 'output' ] ;
20312036} ;
@@ -2043,9 +2048,12 @@ export type PlatformSubscription = {
20432048 __typename ?: 'PlatformSubscription' ;
20442049 externalId ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
20452050 id : Scalars [ 'ID' ] [ 'output' ] ;
2051+ insertedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
20462052 latestInvoice ?: Maybe < Invoice > ;
20472053 lineItems ?: Maybe < Array < Maybe < PlatformSubscriptionLineItems > > > ;
20482054 plan ?: Maybe < PlatformPlan > ;
2055+ trialUntil ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
2056+ updatedAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
20492057} ;
20502058
20512059export type PlatformSubscriptionLineItems = {
@@ -2627,6 +2635,7 @@ export type RootMutationType = {
26272635 acceptIncident ?: Maybe < Incident > ;
26282636 acceptLogin ?: Maybe < OauthResponse > ;
26292637 acquireLock ?: Maybe < ApplyLock > ;
2638+ beginTrial ?: Maybe < PlatformSubscription > ;
26302639 cancelPlatformSubscription ?: Maybe < PlatformSubscription > ;
26312640 completeIncident ?: Maybe < Incident > ;
26322641 createArtifact ?: Maybe < Artifact > ;
@@ -2729,6 +2738,7 @@ export type RootMutationType = {
27292738 realizeInvite ?: Maybe < User > ;
27302739 realizeResetToken ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
27312740 rebootShell ?: Maybe < CloudShell > ;
2741+ release ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
27322742 releaseLock ?: Maybe < ApplyLock > ;
27332743 resetInstallations ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
27342744 restartShell ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] > ;
@@ -3288,6 +3298,13 @@ export type RootMutationTypeRealizeResetTokenArgs = {
32883298} ;
32893299
32903300
3301+ export type RootMutationTypeReleaseArgs = {
3302+ repositoryId ?: InputMaybe < Scalars [ 'ID' ] [ 'input' ] > ;
3303+ repositoryName ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
3304+ tags ?: InputMaybe < Array < Scalars [ 'String' ] [ 'input' ] > > ;
3305+ } ;
3306+
3307+
32913308export type RootMutationTypeReleaseLockArgs = {
32923309 attributes : LockAttributes ;
32933310 repository : Scalars [ 'String' ] [ 'input' ] ;
0 commit comments