@forge/cli-shared 6.7.0-next.11-experimental-26b1489 → 6.7.0-next.11-experimental-02bb545
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 6.7.0-next.11-experimental-
|
|
3
|
+
## 6.7.0-next.11-experimental-02bb545
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
- Updated dependencies [34db0f6]
|
|
22
22
|
- Updated dependencies [01ca857]
|
|
23
23
|
- Updated dependencies [70badb7]
|
|
24
|
-
- @forge/manifest@8.8.0-next.5-experimental-
|
|
24
|
+
- @forge/manifest@8.8.0-next.5-experimental-02bb545
|
|
25
25
|
|
|
26
26
|
## 6.7.0-next.11
|
|
27
27
|
|
|
@@ -117,6 +117,7 @@ export declare type AiConfigResponse = {
|
|
|
117
117
|
__typename?: 'AIConfigResponse';
|
|
118
118
|
isEnabled: Scalars['Boolean']['output'];
|
|
119
119
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120
|
+
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120
121
|
};
|
|
121
122
|
export declare enum AcceptableResponse {
|
|
122
123
|
False = "FALSE",
|
|
@@ -3056,6 +3057,7 @@ export declare enum BulkSetSpacePermissionSpaceType {
|
|
|
3056
3057
|
Personal = "PERSONAL"
|
|
3057
3058
|
}
|
|
3058
3059
|
export declare enum BulkSetSpacePermissionSubjectType {
|
|
3060
|
+
AccessClass = "ACCESS_CLASS",
|
|
3059
3061
|
Group = "GROUP",
|
|
3060
3062
|
User = "USER"
|
|
3061
3063
|
}
|
|
@@ -9357,6 +9359,17 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
9357
9359
|
errors?: Maybe<Array<MutationError>>;
|
|
9358
9360
|
success: Scalars['Boolean']['output'];
|
|
9359
9361
|
};
|
|
9362
|
+
export declare type ConfluenceCreateCustomRoleInput = {
|
|
9363
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9364
|
+
name: Scalars['String']['input'];
|
|
9365
|
+
permissions: Array<InputMaybe<Scalars['String']['input']>>;
|
|
9366
|
+
};
|
|
9367
|
+
export declare type ConfluenceCreateCustomRolePayload = Payload & {
|
|
9368
|
+
__typename?: 'ConfluenceCreateCustomRolePayload';
|
|
9369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9370
|
+
roleId?: Maybe<Scalars['ID']['output']>;
|
|
9371
|
+
success: Scalars['Boolean']['output'];
|
|
9372
|
+
};
|
|
9360
9373
|
export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
9361
9374
|
blogPostId: Scalars['ID']['input'];
|
|
9362
9375
|
body: ConfluenceContentBodyInput;
|
|
@@ -15753,6 +15766,7 @@ export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
|
15753
15766
|
export declare type ConfluenceRedactionMetadata = {
|
|
15754
15767
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
15755
15768
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
15769
|
+
creator?: Maybe<AtlassianUser>;
|
|
15756
15770
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
15757
15771
|
id?: Maybe<Scalars['String']['output']>;
|
|
15758
15772
|
redactionReason?: Maybe<Scalars['String']['output']>;
|
|
@@ -16043,6 +16057,18 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
16043
16057
|
page?: Maybe<ConfluencePage>;
|
|
16044
16058
|
success: Scalars['Boolean']['output'];
|
|
16045
16059
|
};
|
|
16060
|
+
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
16061
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
16062
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
16063
|
+
permissions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
16064
|
+
roleId: Scalars['ID']['input'];
|
|
16065
|
+
};
|
|
16066
|
+
export declare type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
16067
|
+
__typename?: 'ConfluenceUpdateCustomRolePayload';
|
|
16068
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16069
|
+
success: Scalars['Boolean']['output'];
|
|
16070
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16071
|
+
};
|
|
16046
16072
|
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
16047
16073
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
16048
16074
|
id: Scalars['ID']['input'];
|
|
@@ -18793,9 +18819,11 @@ export declare type ContentTemplateSpaceInput = {
|
|
|
18793
18819
|
};
|
|
18794
18820
|
export declare type ContentVersion = {
|
|
18795
18821
|
__typename?: 'ContentVersion';
|
|
18822
|
+
author?: Maybe<AtlassianUser>;
|
|
18796
18823
|
authorId?: Maybe<Scalars['ID']['output']>;
|
|
18797
18824
|
contentId: Scalars['ID']['output'];
|
|
18798
18825
|
contentProperties?: Maybe<ContentProperties>;
|
|
18826
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18799
18827
|
number: Scalars['Int']['output'];
|
|
18800
18828
|
updatedTime: Scalars['String']['output'];
|
|
18801
18829
|
};
|
|
@@ -19626,6 +19654,53 @@ export declare type CreatedSprint = {
|
|
|
19626
19654
|
sprintState?: Maybe<SprintState>;
|
|
19627
19655
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
19628
19656
|
};
|
|
19657
|
+
export declare type CsmAiAgent = {
|
|
19658
|
+
__typename?: 'CsmAiAgent';
|
|
19659
|
+
conversationStarters?: Maybe<Array<CsmAiAgentConversationStarter>>;
|
|
19660
|
+
id: Scalars['ID']['output'];
|
|
19661
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19662
|
+
purpose?: Maybe<Scalars['String']['output']>;
|
|
19663
|
+
tone?: Maybe<CsmAiAgentTone>;
|
|
19664
|
+
};
|
|
19665
|
+
export declare type CsmAiAgentConversationStarter = {
|
|
19666
|
+
__typename?: 'CsmAiAgentConversationStarter';
|
|
19667
|
+
id: Scalars['ID']['output'];
|
|
19668
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
19669
|
+
};
|
|
19670
|
+
export declare type CsmAiAgentResult = CsmAiAgent | QueryError;
|
|
19671
|
+
export declare type CsmAiAgentTone = {
|
|
19672
|
+
__typename?: 'CsmAiAgentTone';
|
|
19673
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19674
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
19675
|
+
};
|
|
19676
|
+
export declare type CsmAiAgentToneInput = {
|
|
19677
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
19678
|
+
type: Scalars['String']['input'];
|
|
19679
|
+
};
|
|
19680
|
+
export declare type CsmAiHub = {
|
|
19681
|
+
__typename?: 'CsmAiHub';
|
|
19682
|
+
agent?: Maybe<CsmAiAgentResult>;
|
|
19683
|
+
id: Scalars['ID']['output'];
|
|
19684
|
+
};
|
|
19685
|
+
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
19686
|
+
export declare type CsmAiUpdateAgentConversationStarterInput = {
|
|
19687
|
+
id: Scalars['ID']['input'];
|
|
19688
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
19689
|
+
};
|
|
19690
|
+
export declare type CsmAiUpdateAgentInput = {
|
|
19691
|
+
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19692
|
+
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19693
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
19694
|
+
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
19695
|
+
tone?: InputMaybe<CsmAiAgentToneInput>;
|
|
19696
|
+
updatedConversationStarters?: InputMaybe<Array<CsmAiUpdateAgentConversationStarterInput>>;
|
|
19697
|
+
};
|
|
19698
|
+
export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
19699
|
+
__typename?: 'CsmAiUpdateAgentPayload';
|
|
19700
|
+
agent?: Maybe<CsmAiAgent>;
|
|
19701
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19702
|
+
success: Scalars['Boolean']['output'];
|
|
19703
|
+
};
|
|
19629
19704
|
export declare type CumulativeFlowDiagram = {
|
|
19630
19705
|
__typename?: 'CumulativeFlowDiagram';
|
|
19631
19706
|
chart: CfdChartConnection;
|
|
@@ -19803,60 +19878,6 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
19803
19878
|
IsSet = "IS_SET",
|
|
19804
19879
|
NotSet = "NOT_SET"
|
|
19805
19880
|
}
|
|
19806
|
-
export declare type CustomerHubAgentConfiguration = {
|
|
19807
|
-
__typename?: 'CustomerHubAgentConfiguration';
|
|
19808
|
-
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
|
|
19809
|
-
id: Scalars['ID']['output'];
|
|
19810
|
-
};
|
|
19811
|
-
export declare type CustomerHubAgentConfigurationIdentity = {
|
|
19812
|
-
__typename?: 'CustomerHubAgentConfigurationIdentity';
|
|
19813
|
-
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19814
|
-
id: Scalars['ID']['output'];
|
|
19815
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
19816
|
-
purpose?: Maybe<Scalars['String']['output']>;
|
|
19817
|
-
tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
|
|
19818
|
-
};
|
|
19819
|
-
export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
|
|
19820
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
|
|
19821
|
-
id: Scalars['ID']['output'];
|
|
19822
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
19823
|
-
};
|
|
19824
|
-
export declare type CustomerHubAgentConfigurationIdentityMapping = {
|
|
19825
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityMapping';
|
|
19826
|
-
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19827
|
-
id: Scalars['ID']['output'];
|
|
19828
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
19829
|
-
};
|
|
19830
|
-
export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
|
|
19831
|
-
export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
|
|
19832
|
-
export declare type CustomerHubAgentConfigurationIdentityTone = {
|
|
19833
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityTone';
|
|
19834
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
19835
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
19836
|
-
};
|
|
19837
|
-
export declare type CustomerHubAgentConfigurationIdentityToneInput = {
|
|
19838
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
19839
|
-
type: Scalars['String']['input'];
|
|
19840
|
-
};
|
|
19841
|
-
export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
|
|
19842
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
|
|
19843
|
-
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19844
|
-
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19845
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
19846
|
-
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
19847
|
-
tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
|
|
19848
|
-
updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
|
|
19849
|
-
};
|
|
19850
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
|
|
19851
|
-
id: Scalars['ID']['input'];
|
|
19852
|
-
message?: InputMaybe<Scalars['String']['input']>;
|
|
19853
|
-
};
|
|
19854
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
|
|
19855
|
-
__typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
|
|
19856
|
-
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
|
|
19857
|
-
errors?: Maybe<Array<MutationError>>;
|
|
19858
|
-
success: Scalars['Boolean']['output'];
|
|
19859
|
-
};
|
|
19860
19881
|
export declare type CustomerServiceAttribute = Node & {
|
|
19861
19882
|
__typename?: 'CustomerServiceAttribute';
|
|
19862
19883
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -36734,6 +36755,10 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
36734
36755
|
Sca = "SCA",
|
|
36735
36756
|
Unknown = "UNKNOWN"
|
|
36736
36757
|
}
|
|
36758
|
+
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
36759
|
+
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
36760
|
+
value: Scalars['Boolean']['output'];
|
|
36761
|
+
};
|
|
36737
36762
|
export declare type GraphStoreCypherQueryConnection = {
|
|
36738
36763
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
36739
36764
|
edges: Array<GraphStoreCypherQueryEdge>;
|
|
@@ -36744,12 +36769,20 @@ export declare type GraphStoreCypherQueryEdge = {
|
|
|
36744
36769
|
__typename?: 'GraphStoreCypherQueryEdge';
|
|
36745
36770
|
node: GraphStoreCypherQueryNode;
|
|
36746
36771
|
};
|
|
36772
|
+
export declare type GraphStoreCypherQueryFloatObject = {
|
|
36773
|
+
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
36774
|
+
value: Scalars['Float']['output'];
|
|
36775
|
+
};
|
|
36747
36776
|
export declare type GraphStoreCypherQueryFromNode = {
|
|
36748
36777
|
__typename?: 'GraphStoreCypherQueryFromNode';
|
|
36749
36778
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36750
36779
|
id: Scalars['ID']['output'];
|
|
36751
36780
|
};
|
|
36752
36781
|
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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36782
|
+
export declare type GraphStoreCypherQueryIntObject = {
|
|
36783
|
+
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
36784
|
+
value: Scalars['Int']['output'];
|
|
36785
|
+
};
|
|
36753
36786
|
export declare type GraphStoreCypherQueryNode = {
|
|
36754
36787
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36755
36788
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36760,6 +36793,10 @@ export declare type GraphStoreCypherQueryResult = {
|
|
|
36760
36793
|
columns: Array<Scalars['String']['output']>;
|
|
36761
36794
|
rows: Array<GraphStoreCypherQueryResultRow>;
|
|
36762
36795
|
};
|
|
36796
|
+
export declare type GraphStoreCypherQueryResultNodeList = {
|
|
36797
|
+
__typename?: 'GraphStoreCypherQueryResultNodeList';
|
|
36798
|
+
nodes: Array<GraphStoreCypherQueryRowItemNode>;
|
|
36799
|
+
};
|
|
36763
36800
|
export declare type GraphStoreCypherQueryResultRow = {
|
|
36764
36801
|
__typename?: 'GraphStoreCypherQueryResultRow';
|
|
36765
36802
|
rowItems: Array<GraphStoreCypherQueryResultRowItem>;
|
|
@@ -36768,6 +36805,18 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
36768
36805
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
36769
36806
|
key: Scalars['String']['output'];
|
|
36770
36807
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
36808
|
+
valueUnion: GraphStoreCypherQueryResultRowItemValueUnion;
|
|
36809
|
+
};
|
|
36810
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
36811
|
+
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
36812
|
+
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
36813
|
+
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
36814
|
+
id: Scalars['ID']['output'];
|
|
36815
|
+
};
|
|
36816
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = 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 | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36817
|
+
export declare type GraphStoreCypherQueryStringObject = {
|
|
36818
|
+
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
36819
|
+
value: Scalars['String']['output'];
|
|
36771
36820
|
};
|
|
36772
36821
|
export declare type GraphStoreCypherQueryToNode = {
|
|
36773
36822
|
__typename?: 'GraphStoreCypherQueryToNode';
|
|
@@ -58704,18 +58753,6 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58704
58753
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58705
58754
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58706
58755
|
errors?: Maybe<Array<QueryError>>;
|
|
58707
|
-
issueId?: Maybe<Scalars['String']['output']>;
|
|
58708
|
-
};
|
|
58709
|
-
export declare type JiraIssueSearchViewContextsConnection = {
|
|
58710
|
-
__typename?: 'JiraIssueSearchViewContextsConnection';
|
|
58711
|
-
edges?: Maybe<Array<Maybe<JiraIssueSearchViewContextsEdge>>>;
|
|
58712
|
-
pageInfo: PageInfo;
|
|
58713
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58714
|
-
};
|
|
58715
|
-
export declare type JiraIssueSearchViewContextsEdge = {
|
|
58716
|
-
__typename?: 'JiraIssueSearchViewContextsEdge';
|
|
58717
|
-
cursor: Scalars['String']['output'];
|
|
58718
|
-
node?: Maybe<JiraIssueSearchViewContexts>;
|
|
58719
58756
|
};
|
|
58720
58757
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58721
58758
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -63231,7 +63268,6 @@ export declare type JiraQuery = {
|
|
|
63231
63268
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
63232
63269
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
63233
63270
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
63234
|
-
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
63235
63271
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
63236
63272
|
sprintById?: Maybe<JiraSprint>;
|
|
63237
63273
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -64093,15 +64129,6 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
64093
64129
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
64094
64130
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
64095
64131
|
};
|
|
64096
|
-
export declare type JiraQuerySearchViewContextsArgs = {
|
|
64097
|
-
cloudId: Scalars['ID']['input'];
|
|
64098
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64099
|
-
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64100
|
-
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64101
|
-
issueIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64102
|
-
issueSearchInput: JiraIssueSearchInput;
|
|
64103
|
-
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
64104
|
-
};
|
|
64105
64132
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
64106
64133
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
64107
64134
|
cloudId: Scalars['ID']['input'];
|
|
@@ -75684,6 +75711,7 @@ export declare type Mutation = {
|
|
|
75684
75711
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75685
75712
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75686
75713
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75714
|
+
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
75687
75715
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75688
75716
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75689
75717
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
@@ -75696,6 +75724,7 @@ export declare type Mutation = {
|
|
|
75696
75724
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
75697
75725
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
75698
75726
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
75727
|
+
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
75699
75728
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
75700
75729
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
75701
75730
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
@@ -75754,7 +75783,7 @@ export declare type Mutation = {
|
|
|
75754
75783
|
createSystemSpace?: Maybe<Space>;
|
|
75755
75784
|
createTemplate?: Maybe<ContentTemplate>;
|
|
75756
75785
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
75757
|
-
|
|
75786
|
+
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
75758
75787
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
75759
75788
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
75760
75789
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -76640,6 +76669,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
76640
76669
|
cloudId: Scalars['ID']['input'];
|
|
76641
76670
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
76642
76671
|
};
|
|
76672
|
+
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
76673
|
+
cloudId: Scalars['ID']['input'];
|
|
76674
|
+
input: ConfluenceCreateCustomRoleInput;
|
|
76675
|
+
};
|
|
76643
76676
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76644
76677
|
cloudId: Scalars['ID']['input'];
|
|
76645
76678
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -76688,6 +76721,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
76688
76721
|
cloudId: Scalars['ID']['input'];
|
|
76689
76722
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
76690
76723
|
};
|
|
76724
|
+
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
76725
|
+
cloudId: Scalars['ID']['input'];
|
|
76726
|
+
input: ConfluenceUpdateCustomRoleInput;
|
|
76727
|
+
};
|
|
76691
76728
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
76692
76729
|
cloudId: Scalars['ID']['input'];
|
|
76693
76730
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -76895,10 +76932,10 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
76895
76932
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76896
76933
|
input: WebTriggerUrlInput;
|
|
76897
76934
|
};
|
|
76898
|
-
export declare type
|
|
76899
|
-
|
|
76935
|
+
export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
76936
|
+
csmAgentId: Scalars['ID']['input'];
|
|
76900
76937
|
helpCenterAri: Scalars['ID']['input'];
|
|
76901
|
-
input?: InputMaybe<
|
|
76938
|
+
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
76902
76939
|
};
|
|
76903
76940
|
export declare type MutationCustomerServiceArgs = {
|
|
76904
76941
|
cloudId: Scalars['ID']['input'];
|
|
@@ -80581,6 +80618,7 @@ export declare type Query = {
|
|
|
80581
80618
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
80582
80619
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
80583
80620
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80621
|
+
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80584
80622
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
80585
80623
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
80586
80624
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
@@ -80589,6 +80627,8 @@ export declare type Query = {
|
|
|
80589
80627
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
80590
80628
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
80591
80629
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
80630
|
+
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
80631
|
+
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80592
80632
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
80593
80633
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
80594
80634
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
@@ -80630,9 +80670,8 @@ export declare type Query = {
|
|
|
80630
80670
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
80631
80671
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
80632
80672
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
80673
|
+
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
80633
80674
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
80634
|
-
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
80635
|
-
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
80636
80675
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
80637
80676
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
80638
80677
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -82191,6 +82230,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
82191
82230
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
82192
82231
|
cloudId: Scalars['ID']['input'];
|
|
82193
82232
|
};
|
|
82233
|
+
export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
82234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
82235
|
+
cloudId: Scalars['ID']['input'];
|
|
82236
|
+
contentId: Scalars['ID']['input'];
|
|
82237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
82238
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82239
|
+
};
|
|
82194
82240
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
82195
82241
|
cloudId: Scalars['ID']['input'];
|
|
82196
82242
|
spaceKey: Scalars['String']['input'];
|
|
@@ -82241,6 +82287,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
82241
82287
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82242
82288
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
82243
82289
|
};
|
|
82290
|
+
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
82291
|
+
cloudId: Scalars['ID']['input'];
|
|
82292
|
+
contentType: Scalars['String']['input'];
|
|
82293
|
+
spaceKey: Scalars['String']['input'];
|
|
82294
|
+
};
|
|
82295
|
+
export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
82296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
82297
|
+
cloudId: Scalars['ID']['input'];
|
|
82298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
82299
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82300
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
82301
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
82302
|
+
};
|
|
82244
82303
|
export declare type QueryConfluence_StorageArgs = {
|
|
82245
82304
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82246
82305
|
};
|
|
@@ -82471,10 +82530,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
82471
82530
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
82472
82531
|
startTime: Scalars['String']['input'];
|
|
82473
82532
|
};
|
|
82474
|
-
export declare type
|
|
82475
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
82476
|
-
};
|
|
82477
|
-
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
82533
|
+
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
82478
82534
|
helpCenterAri: Scalars['ID']['input'];
|
|
82479
82535
|
};
|
|
82480
82536
|
export declare type QueryCustomerServiceArgs = {
|
|
@@ -89569,6 +89625,7 @@ export declare enum SummaryType {
|
|
|
89569
89625
|
export declare type SuperAdminPayload = {
|
|
89570
89626
|
__typename?: 'SuperAdminPayload';
|
|
89571
89627
|
id?: Maybe<Scalars['ID']['output']>;
|
|
89628
|
+
user?: Maybe<AtlassianUser>;
|
|
89572
89629
|
};
|
|
89573
89630
|
export declare type SuperBatchWebResources = {
|
|
89574
89631
|
__typename?: 'SuperBatchWebResources';
|