@forge/cli-shared 6.6.1-next.6 → 6.6.1-next.7
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
|
@@ -596,7 +596,7 @@ export declare type ActivityObject = {
|
|
|
596
596
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
597
597
|
type: Scalars['String']['output'];
|
|
598
598
|
};
|
|
599
|
-
export declare type ActivityObjectData = BitbucketPullRequest | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
599
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
600
600
|
export declare enum ActivityObjectType {
|
|
601
601
|
Blogpost = "BLOGPOST",
|
|
602
602
|
Comment = "COMMENT",
|
|
@@ -775,6 +775,9 @@ export declare type AgentAiSummary = {
|
|
|
775
775
|
export declare type AgentStudioAction = {
|
|
776
776
|
__typename?: 'AgentStudioAction';
|
|
777
777
|
actionKey: Scalars['String']['output'];
|
|
778
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
780
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
778
781
|
};
|
|
779
782
|
export declare type AgentStudioActionConfiguration = {
|
|
780
783
|
__typename?: 'AgentStudioActionConfiguration';
|
|
@@ -2521,10 +2524,14 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
2521
2524
|
};
|
|
2522
2525
|
export declare type BitbucketQuery = {
|
|
2523
2526
|
__typename?: 'BitbucketQuery';
|
|
2527
|
+
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
2524
2528
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
2525
2529
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
2526
2530
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
2527
2531
|
};
|
|
2532
|
+
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
2533
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2534
|
+
};
|
|
2528
2535
|
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
2529
2536
|
ids: Array<Scalars['ID']['input']>;
|
|
2530
2537
|
};
|
|
@@ -29759,6 +29766,8 @@ export declare type GraphStore = {
|
|
|
29759
29766
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
29760
29767
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29761
29768
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
29769
|
+
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
29770
|
+
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
29762
29771
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
29763
29772
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
29764
29773
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -30187,6 +30196,8 @@ export declare type GraphStore = {
|
|
|
30187
30196
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
30188
30197
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
30189
30198
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
30199
|
+
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
30200
|
+
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
30190
30201
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30191
30202
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30192
30203
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
@@ -30539,6 +30550,20 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
30539
30550
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30540
30551
|
id: Scalars['ID']['input'];
|
|
30541
30552
|
};
|
|
30553
|
+
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
30554
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30555
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30556
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30557
|
+
id: Scalars['ID']['input'];
|
|
30558
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30559
|
+
};
|
|
30560
|
+
export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
30561
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30562
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30563
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30564
|
+
id: Scalars['ID']['input'];
|
|
30565
|
+
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
30566
|
+
};
|
|
30542
30567
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
30543
30568
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30544
30569
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33304,6 +33329,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
33304
33329
|
id: Scalars['ID']['input'];
|
|
33305
33330
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
33306
33331
|
};
|
|
33332
|
+
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
33333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33334
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33335
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33336
|
+
id: Scalars['ID']['input'];
|
|
33337
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33338
|
+
};
|
|
33339
|
+
export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
33340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33341
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33343
|
+
id: Scalars['ID']['input'];
|
|
33344
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
33345
|
+
};
|
|
33307
33346
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
33308
33347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33309
33348
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34989,6 +35028,9 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
34989
35028
|
id: Scalars['ID']['output'];
|
|
34990
35029
|
};
|
|
34991
35030
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
35031
|
+
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
35032
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35033
|
+
};
|
|
34992
35034
|
export declare type GraphStoreBooleanFilterInput = {
|
|
34993
35035
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34994
35036
|
};
|
|
@@ -35458,7 +35500,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35458
35500
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35459
35501
|
id: Scalars['ID']['output'];
|
|
35460
35502
|
};
|
|
35461
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35503
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35462
35504
|
export declare type GraphStoreCypherQueryNode = {
|
|
35463
35505
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35464
35506
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35483,8 +35525,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35483
35525
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35484
35526
|
id: Scalars['ID']['output'];
|
|
35485
35527
|
};
|
|
35486
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35487
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35528
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35529
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35488
35530
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35489
35531
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35490
35532
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -40595,6 +40637,34 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
40595
40637
|
};
|
|
40596
40638
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
40597
40639
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
40640
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
40641
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
40642
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
40643
|
+
pageInfo: PageInfo;
|
|
40644
|
+
};
|
|
40645
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectEdge = {
|
|
40646
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectEdge';
|
|
40647
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40649
|
+
id: Scalars['ID']['output'];
|
|
40650
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40651
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectUnion>;
|
|
40652
|
+
};
|
|
40653
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseConnection = HasPageInfo & {
|
|
40654
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseConnection';
|
|
40655
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseEdge>>>;
|
|
40656
|
+
pageInfo: PageInfo;
|
|
40657
|
+
};
|
|
40658
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
40659
|
+
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectInverseEdge';
|
|
40660
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40661
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40662
|
+
id: Scalars['ID']['output'];
|
|
40663
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40664
|
+
node?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseUnion>;
|
|
40665
|
+
};
|
|
40666
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
40667
|
+
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
40598
40668
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
40599
40669
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
40600
40670
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -44361,6 +44431,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
44361
44431
|
};
|
|
44362
44432
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44363
44433
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44434
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
44435
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
44436
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
44437
|
+
pageInfo: PageInfo;
|
|
44438
|
+
};
|
|
44439
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentEdge = {
|
|
44440
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentEdge';
|
|
44441
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44442
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44443
|
+
id: Scalars['ID']['output'];
|
|
44444
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44445
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentUnion>;
|
|
44446
|
+
};
|
|
44447
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection = HasPageInfo & {
|
|
44448
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection';
|
|
44449
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge>>>;
|
|
44450
|
+
pageInfo: PageInfo;
|
|
44451
|
+
};
|
|
44452
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
44453
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge';
|
|
44454
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44455
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44456
|
+
id: Scalars['ID']['output'];
|
|
44457
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44458
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion>;
|
|
44459
|
+
};
|
|
44460
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44461
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
44364
44462
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
44365
44463
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
44366
44464
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -46501,6 +46599,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
46501
46599
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
46502
46600
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46503
46601
|
};
|
|
46602
|
+
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
46603
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46604
|
+
};
|
|
46504
46605
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
46505
46606
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46506
46607
|
};
|
|
@@ -51074,6 +51175,18 @@ export declare enum JiraBoardLocationType {
|
|
|
51074
51175
|
User = "USER"
|
|
51075
51176
|
}
|
|
51076
51177
|
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
51178
|
+
export declare enum JiraBoardSwimlaneStrategy {
|
|
51179
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
51180
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
51181
|
+
Custom = "CUSTOM",
|
|
51182
|
+
Epic = "EPIC",
|
|
51183
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
51184
|
+
IssueParent = "ISSUE_PARENT",
|
|
51185
|
+
None = "NONE",
|
|
51186
|
+
ParentChild = "PARENT_CHILD",
|
|
51187
|
+
Project = "PROJECT",
|
|
51188
|
+
RequestType = "REQUEST_TYPE"
|
|
51189
|
+
}
|
|
51077
51190
|
export declare enum JiraBoardType {
|
|
51078
51191
|
Kanban = "KANBAN",
|
|
51079
51192
|
Scrum = "SCRUM"
|
|
@@ -52118,6 +52231,7 @@ export declare type JiraCommentSortInput = {
|
|
|
52118
52231
|
};
|
|
52119
52232
|
export declare type JiraCommentSummary = {
|
|
52120
52233
|
__typename?: 'JiraCommentSummary';
|
|
52234
|
+
canAddComment?: Maybe<Scalars['Boolean']['output']>;
|
|
52121
52235
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
52122
52236
|
};
|
|
52123
52237
|
export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -54799,6 +54913,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54799
54913
|
issueId: Scalars['String']['output'];
|
|
54800
54914
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
54801
54915
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
54916
|
+
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
54802
54917
|
issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
54803
54918
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
54804
54919
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -54836,6 +54951,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54836
54951
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
54837
54952
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
54838
54953
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
54954
|
+
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
54839
54955
|
smartSummary?: Maybe<JiraAdf>;
|
|
54840
54956
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
54841
54957
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -54851,6 +54967,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
54851
54967
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
54852
54968
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
54853
54969
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
54970
|
+
votesField?: Maybe<JiraVotesField>;
|
|
54971
|
+
watchesField?: Maybe<JiraWatchesField>;
|
|
54854
54972
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
54855
54973
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
54856
54974
|
};
|
|
@@ -56523,6 +56641,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
56523
56641
|
}
|
|
56524
56642
|
export declare type JiraJqlBoardInput = {
|
|
56525
56643
|
boardId: Scalars['Long']['input'];
|
|
56644
|
+
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
56526
56645
|
};
|
|
56527
56646
|
export declare type JiraJqlBuilder = {
|
|
56528
56647
|
__typename?: 'JiraJqlBuilder';
|
|
@@ -60254,10 +60373,16 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
60254
60373
|
};
|
|
60255
60374
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
60256
60375
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
60376
|
+
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60257
60377
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
60258
60378
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
60259
60379
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
60260
60380
|
};
|
|
60381
|
+
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
60382
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60383
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60384
|
+
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
60385
|
+
};
|
|
60261
60386
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
60262
60387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60263
60388
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78839,7 +78964,7 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
78839
78964
|
export declare type QueryConfluence_SearchArgs = {
|
|
78840
78965
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78841
78966
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
78842
|
-
cloudId
|
|
78967
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78843
78968
|
cql: Scalars['String']['input'];
|
|
78844
78969
|
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
78845
78970
|
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78857,14 +78982,14 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
78857
78982
|
};
|
|
78858
78983
|
export declare type QueryConfluence_SearchUserArgs = {
|
|
78859
78984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78860
|
-
cloudId
|
|
78985
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78861
78986
|
cql: Scalars['String']['input'];
|
|
78862
78987
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78863
78988
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78864
78989
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
78865
78990
|
};
|
|
78866
78991
|
export declare type QueryConfluence_StorageArgs = {
|
|
78867
|
-
cloudId
|
|
78992
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78868
78993
|
};
|
|
78869
78994
|
export declare type QueryConfluence_SubCalendarSubscribersCountArgs = {
|
|
78870
78995
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78879,11 +79004,11 @@ export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
|
78879
79004
|
spaceId: Scalars['Long']['input'];
|
|
78880
79005
|
};
|
|
78881
79006
|
export declare type QueryConfluence_TemplateArgs = {
|
|
78882
|
-
cloudId
|
|
79007
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78883
79008
|
contentTemplateId: Scalars['String']['input'];
|
|
78884
79009
|
};
|
|
78885
79010
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
78886
|
-
cloudId
|
|
79011
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78887
79012
|
};
|
|
78888
79013
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
78889
79014
|
accessType: ResourceAccessType;
|
|
@@ -82610,6 +82735,18 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
82610
82735
|
type: SearchResultType;
|
|
82611
82736
|
url: Scalars['URL']['output'];
|
|
82612
82737
|
};
|
|
82738
|
+
export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
82739
|
+
__typename?: 'SearchResultAtlasGoalUpdate';
|
|
82740
|
+
description: Scalars['String']['output'];
|
|
82741
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
82742
|
+
id: Scalars['ID']['output'];
|
|
82743
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
82744
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
82745
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
82746
|
+
title: Scalars['String']['output'];
|
|
82747
|
+
type: SearchResultType;
|
|
82748
|
+
url: Scalars['URL']['output'];
|
|
82749
|
+
};
|
|
82613
82750
|
export declare type SearchResultAtlasProject = SearchResult & {
|
|
82614
82751
|
__typename?: 'SearchResultAtlasProject';
|
|
82615
82752
|
description: Scalars['String']['output'];
|
|
@@ -82622,6 +82759,18 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
82622
82759
|
type: SearchResultType;
|
|
82623
82760
|
url: Scalars['URL']['output'];
|
|
82624
82761
|
};
|
|
82762
|
+
export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
82763
|
+
__typename?: 'SearchResultAtlasProjectUpdate';
|
|
82764
|
+
description: Scalars['String']['output'];
|
|
82765
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
82766
|
+
id: Scalars['ID']['output'];
|
|
82767
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
82768
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
82769
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
82770
|
+
title: Scalars['String']['output'];
|
|
82771
|
+
type: SearchResultType;
|
|
82772
|
+
url: Scalars['URL']['output'];
|
|
82773
|
+
};
|
|
82625
82774
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
82626
82775
|
__typename?: 'SearchResultBitbucketRepository';
|
|
82627
82776
|
description: Scalars['String']['output'];
|
|
@@ -82949,6 +83098,7 @@ export declare enum SearchResultType {
|
|
|
82949
83098
|
FocusAreaStatusUpdate = "focus_area_status_update",
|
|
82950
83099
|
Folder = "folder",
|
|
82951
83100
|
Goal = "goal",
|
|
83101
|
+
GoalUpdate = "goal_update",
|
|
82952
83102
|
Issue = "issue",
|
|
82953
83103
|
Learning = "learning",
|
|
82954
83104
|
Message = "message",
|
|
@@ -82956,6 +83106,7 @@ export declare enum SearchResultType {
|
|
|
82956
83106
|
Plan = "plan",
|
|
82957
83107
|
Presentation = "presentation",
|
|
82958
83108
|
Project = "project",
|
|
83109
|
+
ProjectUpdate = "project_update",
|
|
82959
83110
|
Question = "question",
|
|
82960
83111
|
Repository = "repository",
|
|
82961
83112
|
Space = "space",
|
|
@@ -87434,6 +87585,17 @@ export declare type TownsquareCreateGoalPayload = {
|
|
|
87434
87585
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
87435
87586
|
goal?: Maybe<TownsquareGoal>;
|
|
87436
87587
|
};
|
|
87588
|
+
export declare type TownsquareCreateGoalTypeInput = {
|
|
87589
|
+
containerId: Scalars['String']['input'];
|
|
87590
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
87591
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
87592
|
+
name: Scalars['String']['input'];
|
|
87593
|
+
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
87594
|
+
};
|
|
87595
|
+
export declare type TownsquareCreateGoalTypePayload = {
|
|
87596
|
+
__typename?: 'TownsquareCreateGoalTypePayload';
|
|
87597
|
+
goalTypeEdge?: Maybe<TownsquareGoalTypeEdge>;
|
|
87598
|
+
};
|
|
87437
87599
|
export declare type TownsquareCreateRelationshipsInput = {
|
|
87438
87600
|
relationships: Array<TownsquareRelationshipInput>;
|
|
87439
87601
|
};
|
|
@@ -87476,7 +87638,10 @@ export declare type TownsquareEditGoalPayload = {
|
|
|
87476
87638
|
goal?: Maybe<TownsquareGoal>;
|
|
87477
87639
|
};
|
|
87478
87640
|
export declare type TownsquareEditGoalTypeInput = {
|
|
87641
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
87479
87642
|
goalTypeAri: Scalars['String']['input'];
|
|
87643
|
+
iconKey?: InputMaybe<TownsquareGoalIconKey>;
|
|
87644
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
87480
87645
|
state?: InputMaybe<TownsquareGoalTypeState>;
|
|
87481
87646
|
};
|
|
87482
87647
|
export declare type TownsquareEditGoalTypePayload = {
|
|
@@ -87695,6 +87860,7 @@ export declare type TownsquareMutationApi = {
|
|
|
87695
87860
|
__typename?: 'TownsquareMutationApi';
|
|
87696
87861
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
87697
87862
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
87863
|
+
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
87698
87864
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
87699
87865
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
87700
87866
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
@@ -87709,6 +87875,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
87709
87875
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
87710
87876
|
input: TownsquareCreateGoalInput;
|
|
87711
87877
|
};
|
|
87878
|
+
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
87879
|
+
input: TownsquareCreateGoalTypeInput;
|
|
87880
|
+
};
|
|
87712
87881
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
87713
87882
|
input: TownsquareCreateRelationshipsInput;
|
|
87714
87883
|
};
|
|
@@ -87754,9 +87923,16 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
87754
87923
|
name: Scalars['String']['output'];
|
|
87755
87924
|
owner?: Maybe<User>;
|
|
87756
87925
|
state?: Maybe<TownsquareProjectState>;
|
|
87926
|
+
updates?: Maybe<TownsquareProjectUpdateConnection>;
|
|
87757
87927
|
url?: Maybe<Scalars['String']['output']>;
|
|
87758
87928
|
uuid: Scalars['String']['output'];
|
|
87759
87929
|
};
|
|
87930
|
+
export declare type TownsquareProjectUpdatesArgs = {
|
|
87931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87932
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
87933
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
87934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87935
|
+
};
|
|
87760
87936
|
export declare type TownsquareProjectConnection = {
|
|
87761
87937
|
__typename?: 'TownsquareProjectConnection';
|
|
87762
87938
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
@@ -87850,6 +88026,17 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
87850
88026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87851
88027
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87852
88028
|
};
|
|
88029
|
+
export declare type TownsquareProjectUpdateConnection = {
|
|
88030
|
+
__typename?: 'TownsquareProjectUpdateConnection';
|
|
88031
|
+
count: Scalars['Int']['output'];
|
|
88032
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectUpdateEdge>>>;
|
|
88033
|
+
pageInfo: PageInfo;
|
|
88034
|
+
};
|
|
88035
|
+
export declare type TownsquareProjectUpdateEdge = {
|
|
88036
|
+
__typename?: 'TownsquareProjectUpdateEdge';
|
|
88037
|
+
cursor: Scalars['String']['output'];
|
|
88038
|
+
node?: Maybe<TownsquareProjectUpdate>;
|
|
88039
|
+
};
|
|
87853
88040
|
export declare type TownsquareQueryApi = {
|
|
87854
88041
|
__typename?: 'TownsquareQueryApi';
|
|
87855
88042
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -90333,6 +90520,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
90333
90520
|
emailId: Scalars['String']['output'];
|
|
90334
90521
|
id: Scalars['ID']['output'];
|
|
90335
90522
|
internalId: Scalars['String']['output'];
|
|
90523
|
+
isForumsAccountBanned: Scalars['Boolean']['output'];
|
|
90336
90524
|
isForumsModerator: Scalars['Boolean']['output'];
|
|
90337
90525
|
isLinked: Scalars['Boolean']['output'];
|
|
90338
90526
|
isManaged: Scalars['Boolean']['output'];
|
|
@@ -90899,6 +91087,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
90899
91087
|
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
90900
91088
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
90901
91089
|
isPrivate: Scalars['Boolean']['output'];
|
|
91090
|
+
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
90902
91091
|
learning?: Maybe<UnifiedULearningResult>;
|
|
90903
91092
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
90904
91093
|
location?: Maybe<Scalars['String']['output']>;
|