@forge/cli-shared 6.6.0-next.5 → 6.6.0-next.6
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.
package/CHANGELOG.md
CHANGED
|
@@ -1332,6 +1332,7 @@ export declare type AppInstallationSubscribeTask = AppInstallationTask & {
|
|
|
1332
1332
|
};
|
|
1333
1333
|
export declare type AppInstallationSummary = {
|
|
1334
1334
|
__typename?: 'AppInstallationSummary';
|
|
1335
|
+
id: Scalars['ID']['output'];
|
|
1335
1336
|
installationContext: Scalars['ID']['output'];
|
|
1336
1337
|
primaryInstallationContext: Scalars['ID']['output'];
|
|
1337
1338
|
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -29457,6 +29458,8 @@ export declare type GraphStore = {
|
|
|
29457
29458
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
29458
29459
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
29459
29460
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
29461
|
+
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
29462
|
+
serviceAssociatedTeamInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseConnection>;
|
|
29460
29463
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
29461
29464
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
29462
29465
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -29562,6 +29565,8 @@ export declare type GraphStore = {
|
|
|
29562
29565
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
29563
29566
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
29564
29567
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
29568
|
+
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
29569
|
+
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
29565
29570
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
29566
29571
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
29567
29572
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -31849,6 +31854,20 @@ export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
|
31849
31854
|
id: Scalars['ID']['input'];
|
|
31850
31855
|
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
31851
31856
|
};
|
|
31857
|
+
export declare type GraphStoreServiceAssociatedTeamArgs = {
|
|
31858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31859
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31861
|
+
id: Scalars['ID']['input'];
|
|
31862
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedTeamSortInput>;
|
|
31863
|
+
};
|
|
31864
|
+
export declare type GraphStoreServiceAssociatedTeamInverseArgs = {
|
|
31865
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31866
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31867
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31868
|
+
id: Scalars['ID']['input'];
|
|
31869
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedTeamSortInput>;
|
|
31870
|
+
};
|
|
31852
31871
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
31853
31872
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31854
31873
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32557,6 +32576,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
32557
32576
|
id: Scalars['ID']['input'];
|
|
32558
32577
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
32559
32578
|
};
|
|
32579
|
+
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
32580
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32581
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32582
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32583
|
+
id: Scalars['ID']['input'];
|
|
32584
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueWorklogSortInput>;
|
|
32585
|
+
};
|
|
32586
|
+
export declare type GraphStoreUserCreatedIssueWorklogInverseArgs = {
|
|
32587
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32588
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32589
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32590
|
+
id: Scalars['ID']['input'];
|
|
32591
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueWorklogSortInput>;
|
|
32592
|
+
};
|
|
32560
32593
|
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
32561
32594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32562
32595
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34587,7 +34620,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
34587
34620
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
34588
34621
|
id: Scalars['ID']['output'];
|
|
34589
34622
|
};
|
|
34590
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34623
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34591
34624
|
export declare type GraphStoreCypherQueryNode = {
|
|
34592
34625
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
34593
34626
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -34612,8 +34645,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
34612
34645
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
34613
34646
|
id: Scalars['ID']['output'];
|
|
34614
34647
|
};
|
|
34615
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34616
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34648
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34649
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34617
34650
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
34618
34651
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
34619
34652
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -39277,6 +39310,9 @@ export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
|
39277
39310
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
39278
39311
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39279
39312
|
};
|
|
39313
|
+
export declare type GraphStoreServiceAssociatedTeamSortInput = {
|
|
39314
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39315
|
+
};
|
|
39280
39316
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
39281
39317
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39282
39318
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -42136,6 +42172,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge =
|
|
|
42136
42172
|
};
|
|
42137
42173
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
42138
42174
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
42175
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamConnection = HasPageInfo & {
|
|
42176
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamConnection';
|
|
42177
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamEdge>>>;
|
|
42178
|
+
pageInfo: PageInfo;
|
|
42179
|
+
};
|
|
42180
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamEdge = {
|
|
42181
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamEdge';
|
|
42182
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42183
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42184
|
+
id: Scalars['ID']['output'];
|
|
42185
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42186
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamUnion>;
|
|
42187
|
+
};
|
|
42188
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseConnection = HasPageInfo & {
|
|
42189
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamInverseConnection';
|
|
42190
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseEdge>>>;
|
|
42191
|
+
pageInfo: PageInfo;
|
|
42192
|
+
};
|
|
42193
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseEdge = {
|
|
42194
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamInverseEdge';
|
|
42195
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42196
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42197
|
+
id: Scalars['ID']['output'];
|
|
42198
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42199
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseUnion>;
|
|
42200
|
+
};
|
|
42201
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseUnion = DevOpsService;
|
|
42202
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamUnion = OpsgenieTeam;
|
|
42139
42203
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
42140
42204
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
42141
42205
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -43230,6 +43294,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
43230
43294
|
};
|
|
43231
43295
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
43232
43296
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
43297
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
43298
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
43299
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
43300
|
+
pageInfo: PageInfo;
|
|
43301
|
+
};
|
|
43302
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogEdge = {
|
|
43303
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogEdge';
|
|
43304
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43305
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43306
|
+
id: Scalars['ID']['output'];
|
|
43307
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43308
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogUnion>;
|
|
43309
|
+
};
|
|
43310
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection = HasPageInfo & {
|
|
43311
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection';
|
|
43312
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge>>>;
|
|
43313
|
+
pageInfo: PageInfo;
|
|
43314
|
+
};
|
|
43315
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
43316
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge';
|
|
43317
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43318
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43319
|
+
id: Scalars['ID']['output'];
|
|
43320
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43321
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion>;
|
|
43322
|
+
};
|
|
43323
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43324
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
43233
43325
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
43234
43326
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
43235
43327
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -45132,6 +45224,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
45132
45224
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
45133
45225
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45134
45226
|
};
|
|
45227
|
+
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
45228
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45229
|
+
};
|
|
45135
45230
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
45136
45231
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45137
45232
|
};
|
|
@@ -84302,6 +84397,7 @@ export declare type SprintWithStatistics = BaseSprint & {
|
|
|
84302
84397
|
goal?: Maybe<Scalars['String']['output']>;
|
|
84303
84398
|
id?: Maybe<Scalars['ID']['output']>;
|
|
84304
84399
|
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
84400
|
+
lastColumnName?: Maybe<Scalars['String']['output']>;
|
|
84305
84401
|
name?: Maybe<Scalars['String']['output']>;
|
|
84306
84402
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
84307
84403
|
sprintState: SprintState;
|