@forge/cli-shared 8.8.0-next.5 → 8.8.0-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 +17 -0
- package/out/graphql/graphql-types.d.ts +148 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +19 -9
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/tunnel/tunnel-options.d.ts +2 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +15 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +18 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.8.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a1c8e19:
|
|
8
|
+
|
|
9
|
+
## 8.8.0-next.6
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 4947176: Adding self managed tunnel support
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [ec8000d]
|
|
18
|
+
- @forge/manifest@10.7.0-next.4
|
|
19
|
+
|
|
3
20
|
## 8.8.0-next.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -613,6 +613,12 @@ export declare type AvpEnvVarWithChart = {
|
|
|
613
613
|
name?: Maybe<Scalars['String']['output']>;
|
|
614
614
|
operator?: Maybe<Scalars['String']['output']>;
|
|
615
615
|
};
|
|
616
|
+
export declare type AvpFilterEnvVarInput = {
|
|
617
|
+
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
618
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
619
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
620
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
+
};
|
|
616
622
|
export declare type AvpFilterResponse = {
|
|
617
623
|
__typename?: 'AVPFilterResponse';
|
|
618
624
|
chart?: Maybe<AvpChart>;
|
|
@@ -764,6 +770,16 @@ export declare type AvpUpdateChartPayload = Payload & {
|
|
|
764
770
|
errors?: Maybe<Array<MutationError>>;
|
|
765
771
|
success: Scalars['Boolean']['output'];
|
|
766
772
|
};
|
|
773
|
+
export declare type AvpUpdateDashboardFilterInput = {
|
|
774
|
+
dashboardAri: Scalars['ID']['input'];
|
|
775
|
+
envVar: AvpFilterEnvVarInput;
|
|
776
|
+
};
|
|
777
|
+
export declare type AvpUpdateDashboardFilterPayload = Payload & {
|
|
778
|
+
__typename?: 'AVPUpdateDashboardFilterPayload';
|
|
779
|
+
errors?: Maybe<Array<MutationError>>;
|
|
780
|
+
filter?: Maybe<AvpCreateDashboardFilterResponse>;
|
|
781
|
+
success: Scalars['Boolean']['output'];
|
|
782
|
+
};
|
|
767
783
|
export declare type AvpUpdateDashboardInput = {
|
|
768
784
|
dashboard: AvpDashboardInput;
|
|
769
785
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -2462,6 +2478,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2462
2478
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2463
2479
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2464
2480
|
name: Scalars['String']['output'];
|
|
2481
|
+
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2465
2482
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2466
2483
|
};
|
|
2467
2484
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
@@ -2599,6 +2616,7 @@ export declare type AgentStudioCreateScenarioInput = {
|
|
|
2599
2616
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2600
2617
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2601
2618
|
name: Scalars['String']['input'];
|
|
2619
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
2602
2620
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2603
2621
|
};
|
|
2604
2622
|
export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
@@ -2798,6 +2816,7 @@ export declare type AgentStudioScenario = {
|
|
|
2798
2816
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2799
2817
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2800
2818
|
name: Scalars['String']['output'];
|
|
2819
|
+
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2801
2820
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2802
2821
|
};
|
|
2803
2822
|
export declare type AgentStudioScenarioInput = {
|
|
@@ -2808,6 +2827,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2808
2827
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2809
2828
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2810
2829
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2830
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
2811
2831
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2812
2832
|
};
|
|
2813
2833
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
@@ -3047,6 +3067,7 @@ export declare type AgentStudioUpdateScenarioInput = {
|
|
|
3047
3067
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3048
3068
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
3049
3069
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
3070
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
3050
3071
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
3051
3072
|
};
|
|
3052
3073
|
export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
@@ -6123,6 +6144,13 @@ export declare type BitbucketRepositoryIdEdge = {
|
|
|
6123
6144
|
cursor: Scalars['String']['output'];
|
|
6124
6145
|
node?: Maybe<BitbucketRepository>;
|
|
6125
6146
|
};
|
|
6147
|
+
export declare type BitbucketSubscription = {
|
|
6148
|
+
__typename?: 'BitbucketSubscription';
|
|
6149
|
+
onPullRequestSourceBranchUpdated?: Maybe<BitbucketPullRequest>;
|
|
6150
|
+
};
|
|
6151
|
+
export declare type BitbucketSubscriptionOnPullRequestSourceBranchUpdatedArgs = {
|
|
6152
|
+
id: Scalars['ID']['input'];
|
|
6153
|
+
};
|
|
6126
6154
|
export declare type BitbucketWorkspace = Node & {
|
|
6127
6155
|
__typename?: 'BitbucketWorkspace';
|
|
6128
6156
|
id: Scalars['ID']['output'];
|
|
@@ -21608,6 +21636,7 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
21608
21636
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
21609
21637
|
id: Scalars['ID']['output'];
|
|
21610
21638
|
name: Scalars['String']['output'];
|
|
21639
|
+
spaceDetails?: Maybe<Space>;
|
|
21611
21640
|
};
|
|
21612
21641
|
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
21613
21642
|
__typename?: 'ConvoAiEmptyConversation';
|
|
@@ -43430,7 +43459,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
43430
43459
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
43431
43460
|
id: Scalars['ID']['output'];
|
|
43432
43461
|
};
|
|
43433
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43462
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43434
43463
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
43435
43464
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
43436
43465
|
value: Scalars['String']['output'];
|
|
@@ -43440,13 +43469,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
43440
43469
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
43441
43470
|
id: Scalars['ID']['output'];
|
|
43442
43471
|
};
|
|
43443
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43472
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43444
43473
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
43445
43474
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
43446
43475
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
43447
43476
|
id: Scalars['ID']['output'];
|
|
43448
43477
|
};
|
|
43449
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43478
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43450
43479
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
43451
43480
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
43452
43481
|
value: Scalars['Boolean']['output'];
|
|
@@ -43547,7 +43576,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
43547
43576
|
V2 = "V2",
|
|
43548
43577
|
V3 = "V3"
|
|
43549
43578
|
}
|
|
43550
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43579
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43551
43580
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
43552
43581
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
43553
43582
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -65018,6 +65047,7 @@ export declare enum JiraColorSchemeThemeSetting {
|
|
|
65018
65047
|
export declare type JiraComment = {
|
|
65019
65048
|
author?: Maybe<User>;
|
|
65020
65049
|
childComments?: Maybe<JiraCommentConnection>;
|
|
65050
|
+
commentAri?: Maybe<Scalars['ID']['output']>;
|
|
65021
65051
|
commentId: Scalars['ID']['output'];
|
|
65022
65052
|
created: Scalars['DateTime']['output'];
|
|
65023
65053
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67315,7 +67345,6 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
67315
67345
|
export declare type JiraFieldScheme = Node & {
|
|
67316
67346
|
__typename?: 'JiraFieldScheme';
|
|
67317
67347
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
67318
|
-
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
67319
67348
|
availableProjects?: Maybe<JiraProjectConnection>;
|
|
67320
67349
|
description?: Maybe<Scalars['String']['output']>;
|
|
67321
67350
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -68194,6 +68223,17 @@ export declare type JiraFormulaFieldPreview = {
|
|
|
68194
68223
|
export declare type JiraFormulaFieldPreviewIssuePreviewArgs = {
|
|
68195
68224
|
issueKey: Scalars['String']['input'];
|
|
68196
68225
|
};
|
|
68226
|
+
export declare type JiraFormulaFieldSuggestedExpressionResult = {
|
|
68227
|
+
__typename?: 'JiraFormulaFieldSuggestedExpressionResult';
|
|
68228
|
+
expression?: Maybe<Scalars['String']['output']>;
|
|
68229
|
+
};
|
|
68230
|
+
export declare type JiraFormulaFieldSuggestionContext = {
|
|
68231
|
+
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
68232
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
68233
|
+
naturalLanguagePrompt: Scalars['String']['input'];
|
|
68234
|
+
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
68235
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
68236
|
+
};
|
|
68197
68237
|
export declare type JiraFormulaFieldTextValue = {
|
|
68198
68238
|
__typename?: 'JiraFormulaFieldTextValue';
|
|
68199
68239
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -74296,6 +74336,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
74296
74336
|
__typename?: 'JiraPlatformComment';
|
|
74297
74337
|
author?: Maybe<User>;
|
|
74298
74338
|
childComments?: Maybe<JiraCommentConnection>;
|
|
74339
|
+
commentAri?: Maybe<Scalars['ID']['output']>;
|
|
74299
74340
|
commentId: Scalars['ID']['output'];
|
|
74300
74341
|
created: Scalars['DateTime']['output'];
|
|
74301
74342
|
id: Scalars['ID']['output'];
|
|
@@ -75899,6 +75940,7 @@ export declare type JiraQuery = {
|
|
|
75899
75940
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
75900
75941
|
startDateField?: Maybe<JiraJqlField>;
|
|
75901
75942
|
stringUserProperty?: Maybe<JiraEntityPropertyString>;
|
|
75943
|
+
suggestedFormulaFieldExpression?: Maybe<JiraFormulaFieldSuggestedExpressionResult>;
|
|
75902
75944
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
75903
75945
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
75904
75946
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
@@ -76912,6 +76954,10 @@ export declare type JiraQueryStringUserPropertyArgs = {
|
|
|
76912
76954
|
cloudId: Scalars['ID']['input'];
|
|
76913
76955
|
propertyKey: Scalars['String']['input'];
|
|
76914
76956
|
};
|
|
76957
|
+
export declare type JiraQuerySuggestedFormulaFieldExpressionArgs = {
|
|
76958
|
+
cloudId: Scalars['ID']['input'];
|
|
76959
|
+
suggestionContext: JiraFormulaFieldSuggestionContext;
|
|
76960
|
+
};
|
|
76915
76961
|
export declare type JiraQuerySystemFiltersArgs = {
|
|
76916
76962
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
76917
76963
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77364,6 +77410,7 @@ export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
|
77364
77410
|
export declare type JiraRenameBoardViewStatusColumnPayload = Payload & {
|
|
77365
77411
|
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
77366
77412
|
boardView?: Maybe<JiraBoardView>;
|
|
77413
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
77367
77414
|
errors?: Maybe<Array<MutationError>>;
|
|
77368
77415
|
success: Scalars['Boolean']['output'];
|
|
77369
77416
|
};
|
|
@@ -78261,6 +78308,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
78261
78308
|
author?: Maybe<User>;
|
|
78262
78309
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
78263
78310
|
childComments?: Maybe<JiraCommentConnection>;
|
|
78311
|
+
commentAri?: Maybe<Scalars['ID']['output']>;
|
|
78264
78312
|
commentId: Scalars['ID']['output'];
|
|
78265
78313
|
created: Scalars['DateTime']['output'];
|
|
78266
78314
|
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -79231,6 +79279,7 @@ export declare type JiraSetBoardViewColumnStateInput = {
|
|
|
79231
79279
|
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
79232
79280
|
__typename?: 'JiraSetBoardViewColumnStatePayload';
|
|
79233
79281
|
boardView?: Maybe<JiraBoardView>;
|
|
79282
|
+
column?: Maybe<JiraBoardViewColumn>;
|
|
79234
79283
|
errors?: Maybe<Array<MutationError>>;
|
|
79235
79284
|
success: Scalars['Boolean']['output'];
|
|
79236
79285
|
};
|
|
@@ -88923,6 +88972,41 @@ export declare type MercuryCommentEdge = {
|
|
|
88923
88972
|
cursor: Scalars['String']['output'];
|
|
88924
88973
|
node?: Maybe<MercuryComment>;
|
|
88925
88974
|
};
|
|
88975
|
+
export declare type MercuryCostSubtype = Node & {
|
|
88976
|
+
__typename?: 'MercuryCostSubtype';
|
|
88977
|
+
costType: MercuryCostType;
|
|
88978
|
+
createdBy?: Maybe<User>;
|
|
88979
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
88980
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
88981
|
+
id: Scalars['ID']['output'];
|
|
88982
|
+
key: Scalars['String']['output'];
|
|
88983
|
+
name: Scalars['String']['output'];
|
|
88984
|
+
updatedBy?: Maybe<User>;
|
|
88985
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
88986
|
+
};
|
|
88987
|
+
export declare type MercuryCostSubtypeConnection = {
|
|
88988
|
+
__typename?: 'MercuryCostSubtypeConnection';
|
|
88989
|
+
edges?: Maybe<Array<MercuryCostSubtypeEdge>>;
|
|
88990
|
+
pageInfo: PageInfo;
|
|
88991
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
88992
|
+
};
|
|
88993
|
+
export declare type MercuryCostSubtypeEdge = {
|
|
88994
|
+
__typename?: 'MercuryCostSubtypeEdge';
|
|
88995
|
+
cursor: Scalars['String']['output'];
|
|
88996
|
+
node?: Maybe<MercuryCostSubtype>;
|
|
88997
|
+
};
|
|
88998
|
+
export declare type MercuryCostSubtypeSort = {
|
|
88999
|
+
field: MercuryCostSubtypeSortField;
|
|
89000
|
+
order: SortOrder;
|
|
89001
|
+
};
|
|
89002
|
+
export declare enum MercuryCostSubtypeSortField {
|
|
89003
|
+
Key = "KEY",
|
|
89004
|
+
Name = "NAME"
|
|
89005
|
+
}
|
|
89006
|
+
export declare enum MercuryCostType {
|
|
89007
|
+
Labor = "LABOR",
|
|
89008
|
+
NonLabor = "NON_LABOR"
|
|
89009
|
+
}
|
|
88926
89010
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
88927
89011
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88928
89012
|
content: Scalars['String']['input'];
|
|
@@ -88973,6 +89057,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
88973
89057
|
errors?: Maybe<Array<MutationError>>;
|
|
88974
89058
|
success: Scalars['Boolean']['output'];
|
|
88975
89059
|
};
|
|
89060
|
+
export declare type MercuryCreateCostSubtypeInput = {
|
|
89061
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89062
|
+
costType: MercuryCostType;
|
|
89063
|
+
description: Scalars['String']['input'];
|
|
89064
|
+
key: Scalars['String']['input'];
|
|
89065
|
+
name: Scalars['String']['input'];
|
|
89066
|
+
};
|
|
89067
|
+
export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
89068
|
+
__typename?: 'MercuryCreateCostSubtypePayload';
|
|
89069
|
+
createdCostSubtype?: Maybe<MercuryCostSubtype>;
|
|
89070
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89071
|
+
success: Scalars['Boolean']['output'];
|
|
89072
|
+
};
|
|
88976
89073
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
88977
89074
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
88978
89075
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -89594,6 +89691,27 @@ export declare type MercuryFundingDeltaByStatus = {
|
|
|
89594
89691
|
amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
|
|
89595
89692
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
89596
89693
|
};
|
|
89694
|
+
export declare type MercuryFundsMutationApi = {
|
|
89695
|
+
__typename?: 'MercuryFundsMutationApi';
|
|
89696
|
+
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
89697
|
+
};
|
|
89698
|
+
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
89699
|
+
input: MercuryCreateCostSubtypeInput;
|
|
89700
|
+
};
|
|
89701
|
+
export declare type MercuryFundsQueryApi = {
|
|
89702
|
+
__typename?: 'MercuryFundsQueryApi';
|
|
89703
|
+
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
89704
|
+
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
89705
|
+
};
|
|
89706
|
+
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
89707
|
+
ids: Array<Scalars['ID']['input']>;
|
|
89708
|
+
};
|
|
89709
|
+
export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
89710
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89711
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89712
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89713
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
89714
|
+
};
|
|
89597
89715
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
89598
89716
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
89599
89717
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -91558,6 +91676,7 @@ export declare type Mutation = {
|
|
|
91558
91676
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
91559
91677
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
91560
91678
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
91679
|
+
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
91561
91680
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
91562
91681
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
91563
91682
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
@@ -91956,6 +92075,7 @@ export declare type Mutation = {
|
|
|
91956
92075
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
91957
92076
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
91958
92077
|
mercury?: Maybe<MercuryMutationApi>;
|
|
92078
|
+
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
91959
92079
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
91960
92080
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
91961
92081
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
@@ -92579,6 +92699,9 @@ export declare type MutationAvp_UpdateChartArgs = {
|
|
|
92579
92699
|
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
92580
92700
|
input: AvpUpdateDashboardInput;
|
|
92581
92701
|
};
|
|
92702
|
+
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
92703
|
+
input: AvpUpdateDashboardFilterInput;
|
|
92704
|
+
};
|
|
92582
92705
|
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
92583
92706
|
input: AvpUpdateDashboardRowHeightInput;
|
|
92584
92707
|
};
|
|
@@ -98105,6 +98228,7 @@ export declare type Query = {
|
|
|
98105
98228
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
98106
98229
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
98107
98230
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
98231
|
+
jira_fieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
98108
98232
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
98109
98233
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
98110
98234
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
@@ -98179,6 +98303,7 @@ export declare type Query = {
|
|
|
98179
98303
|
me: AuthenticationContext;
|
|
98180
98304
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
98181
98305
|
mercury?: Maybe<MercuryQueryApi>;
|
|
98306
|
+
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
98182
98307
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
98183
98308
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
98184
98309
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -98344,6 +98469,7 @@ export declare type Query = {
|
|
|
98344
98469
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
98345
98470
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98346
98471
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
98472
|
+
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
98347
98473
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
98348
98474
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
98349
98475
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -100652,6 +100778,12 @@ export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
|
100652
100778
|
cloudId: Scalars['ID']['input'];
|
|
100653
100779
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100654
100780
|
};
|
|
100781
|
+
export declare type QueryJira_FieldConfigSchemesArgs = {
|
|
100782
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100783
|
+
cloudId: Scalars['ID']['input'];
|
|
100784
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100785
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
100786
|
+
};
|
|
100655
100787
|
export declare type QueryJira_FieldSchemeAssociatedFieldsArgs = {
|
|
100656
100788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
100657
100789
|
cloudId: Scalars['ID']['input'];
|
|
@@ -101527,6 +101659,11 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
|
101527
101659
|
export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
|
|
101528
101660
|
name: Scalars['String']['input'];
|
|
101529
101661
|
};
|
|
101662
|
+
export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
101663
|
+
externalUserContextToken?: InputMaybe<Scalars['String']['input']>;
|
|
101664
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101665
|
+
teamIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101666
|
+
};
|
|
101530
101667
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
101531
101668
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
101532
101669
|
};
|
|
@@ -125997,6 +126134,11 @@ export declare type StakeholderCommsGetIncidentInput = {
|
|
|
125997
126134
|
incidentCode?: InputMaybe<Scalars['String']['input']>;
|
|
125998
126135
|
incidentId?: InputMaybe<Scalars['String']['input']>;
|
|
125999
126136
|
};
|
|
126137
|
+
export declare type StakeholderCommsGetStakeholderListResponse = {
|
|
126138
|
+
__typename?: 'StakeholderCommsGetStakeholderListResponse';
|
|
126139
|
+
aaidList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
126140
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
126141
|
+
};
|
|
126000
126142
|
export declare type StakeholderCommsGroups = {
|
|
126001
126143
|
__typename?: 'StakeholderCommsGroups';
|
|
126002
126144
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -126752,6 +126894,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
126752
126894
|
};
|
|
126753
126895
|
export declare type Subscription = {
|
|
126754
126896
|
__typename?: 'Subscription';
|
|
126897
|
+
bitbucket?: Maybe<BitbucketSubscription>;
|
|
126755
126898
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
126756
126899
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
126757
126900
|
devOps?: Maybe<AriGraphSubscriptions>;
|