@forge/cli-shared 6.7.0-next.11-experimental-ebf5733 → 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 +2 -2
- package/out/graphql/graphql-types.d.ts +228 -86
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -11
- package/package.json +2 -2
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';
|
|
@@ -55031,6 +55080,23 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
55031
55080
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55032
55081
|
};
|
|
55033
55082
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
55083
|
+
export declare type JiraContext = Node & {
|
|
55084
|
+
__typename?: 'JiraContext';
|
|
55085
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
55086
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55087
|
+
id: Scalars['ID']['output'];
|
|
55088
|
+
name: Scalars['String']['output'];
|
|
55089
|
+
};
|
|
55090
|
+
export declare type JiraContextConnection = {
|
|
55091
|
+
__typename?: 'JiraContextConnection';
|
|
55092
|
+
edges?: Maybe<Array<JiraContextEdge>>;
|
|
55093
|
+
pageInfo?: Maybe<PageInfo>;
|
|
55094
|
+
};
|
|
55095
|
+
export declare type JiraContextEdge = {
|
|
55096
|
+
__typename?: 'JiraContextEdge';
|
|
55097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55098
|
+
node?: Maybe<JiraContext>;
|
|
55099
|
+
};
|
|
55034
55100
|
export declare type JiraCreateActivityConfigurationInput = {
|
|
55035
55101
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
55036
55102
|
id: Scalars['ID']['input'];
|
|
@@ -56312,6 +56378,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
56312
56378
|
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
56313
56379
|
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56314
56380
|
};
|
|
56381
|
+
export declare enum JiraFieldCategoryType {
|
|
56382
|
+
Custom = "CUSTOM",
|
|
56383
|
+
System = "SYSTEM"
|
|
56384
|
+
}
|
|
56315
56385
|
export declare type JiraFieldConfig = {
|
|
56316
56386
|
__typename?: 'JiraFieldConfig';
|
|
56317
56387
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56334,6 +56404,8 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
56334
56404
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56335
56405
|
cloudId: Scalars['ID']['input'];
|
|
56336
56406
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56407
|
+
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
56408
|
+
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
56337
56409
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
56338
56410
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56339
56411
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56436,6 +56508,10 @@ export declare type JiraFieldSetsViewPayload = Payload & {
|
|
|
56436
56508
|
success: Scalars['Boolean']['output'];
|
|
56437
56509
|
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
56438
56510
|
};
|
|
56511
|
+
export declare enum JiraFieldStatusType {
|
|
56512
|
+
Active = "ACTIVE",
|
|
56513
|
+
Trashed = "TRASHED"
|
|
56514
|
+
}
|
|
56439
56515
|
export declare type JiraFieldType = {
|
|
56440
56516
|
__typename?: 'JiraFieldType';
|
|
56441
56517
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57942,15 +58018,44 @@ export declare type JiraIssueField = {
|
|
|
57942
58018
|
};
|
|
57943
58019
|
export declare type JiraIssueFieldConfig = Node & {
|
|
57944
58020
|
__typename?: 'JiraIssueFieldConfig';
|
|
58021
|
+
associatedContexts?: Maybe<JiraContextConnection>;
|
|
58022
|
+
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
58023
|
+
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
58024
|
+
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
58025
|
+
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
58026
|
+
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
57945
58027
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
58028
|
+
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
57946
58029
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
58030
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57947
58031
|
fieldId: Scalars['String']['output'];
|
|
57948
58032
|
id: Scalars['ID']['output'];
|
|
57949
58033
|
isCustom: Scalars['Boolean']['output'];
|
|
58034
|
+
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
58035
|
+
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
57950
58036
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
58037
|
+
lastUsed?: Maybe<Scalars['DateTime']['output']>;
|
|
57951
58038
|
name: Scalars['String']['output'];
|
|
57952
58039
|
type: JiraConfigFieldType;
|
|
57953
58040
|
};
|
|
58041
|
+
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
58042
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58043
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58044
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58045
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58046
|
+
};
|
|
58047
|
+
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
58048
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58049
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58050
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58051
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58052
|
+
};
|
|
58053
|
+
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
58054
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58055
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58056
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58057
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58058
|
+
};
|
|
57954
58059
|
export declare type JiraIssueFieldConfiguration = {
|
|
57955
58060
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
57956
58061
|
};
|
|
@@ -58648,18 +58753,6 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58648
58753
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58649
58754
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58650
58755
|
errors?: Maybe<Array<QueryError>>;
|
|
58651
|
-
issueId?: Maybe<Scalars['String']['output']>;
|
|
58652
|
-
};
|
|
58653
|
-
export declare type JiraIssueSearchViewContextsConnection = {
|
|
58654
|
-
__typename?: 'JiraIssueSearchViewContextsConnection';
|
|
58655
|
-
edges?: Maybe<Array<Maybe<JiraIssueSearchViewContextsEdge>>>;
|
|
58656
|
-
pageInfo: PageInfo;
|
|
58657
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58658
|
-
};
|
|
58659
|
-
export declare type JiraIssueSearchViewContextsEdge = {
|
|
58660
|
-
__typename?: 'JiraIssueSearchViewContextsEdge';
|
|
58661
|
-
cursor: Scalars['String']['output'];
|
|
58662
|
-
node?: Maybe<JiraIssueSearchViewContexts>;
|
|
58663
58756
|
};
|
|
58664
58757
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58665
58758
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -63025,6 +63118,7 @@ export declare type JiraQuery = {
|
|
|
63025
63118
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
63026
63119
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
63027
63120
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
63121
|
+
contextById?: Maybe<Array<Maybe<JiraContext>>>;
|
|
63028
63122
|
customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
|
|
63029
63123
|
defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
|
|
63030
63124
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -63035,6 +63129,7 @@ export declare type JiraQuery = {
|
|
|
63035
63129
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
63036
63130
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
63037
63131
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
63132
|
+
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
63038
63133
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
63039
63134
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
63040
63135
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -63168,11 +63263,11 @@ export declare type JiraQuery = {
|
|
|
63168
63263
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
63169
63264
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
63170
63265
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
63266
|
+
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
63171
63267
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
63172
63268
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
63173
63269
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
63174
63270
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
63175
|
-
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
63176
63271
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
63177
63272
|
sprintById?: Maybe<JiraSprint>;
|
|
63178
63273
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -63308,6 +63403,9 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
63308
63403
|
export declare type JiraQueryContainerNavigationArgs = {
|
|
63309
63404
|
input: JiraContainerNavigationQueryInput;
|
|
63310
63405
|
};
|
|
63406
|
+
export declare type JiraQueryContextByIdArgs = {
|
|
63407
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63408
|
+
};
|
|
63311
63409
|
export declare type JiraQueryCustomBackgroundsArgs = {
|
|
63312
63410
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63313
63411
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63350,6 +63448,9 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
63350
63448
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63351
63449
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63352
63450
|
};
|
|
63451
|
+
export declare type JiraQueryFieldConfigByIdArgs = {
|
|
63452
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63453
|
+
};
|
|
63353
63454
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
63354
63455
|
cloudId: Scalars['ID']['input'];
|
|
63355
63456
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64007,6 +64108,9 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
64007
64108
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
64008
64109
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64009
64110
|
};
|
|
64111
|
+
export declare type JiraQueryScreenByIdArgs = {
|
|
64112
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64113
|
+
};
|
|
64010
64114
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
64011
64115
|
issueId: Scalars['ID']['input'];
|
|
64012
64116
|
};
|
|
@@ -64025,15 +64129,6 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
64025
64129
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
64026
64130
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
64027
64131
|
};
|
|
64028
|
-
export declare type JiraQuerySearchViewContextsArgs = {
|
|
64029
|
-
cloudId: Scalars['ID']['input'];
|
|
64030
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64031
|
-
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64032
|
-
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64033
|
-
issueIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64034
|
-
issueSearchInput: JiraIssueSearchInput;
|
|
64035
|
-
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
64036
|
-
};
|
|
64037
64132
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
64038
64133
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
64039
64134
|
cloudId: Scalars['ID']['input'];
|
|
@@ -64956,6 +65051,23 @@ export declare type JiraScmRepository = {
|
|
|
64956
65051
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
64957
65052
|
name?: Maybe<Scalars['String']['output']>;
|
|
64958
65053
|
};
|
|
65054
|
+
export declare type JiraScreen = Node & {
|
|
65055
|
+
__typename?: 'JiraScreen';
|
|
65056
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65057
|
+
id: Scalars['ID']['output'];
|
|
65058
|
+
name: Scalars['String']['output'];
|
|
65059
|
+
screenId?: Maybe<Scalars['String']['output']>;
|
|
65060
|
+
};
|
|
65061
|
+
export declare type JiraScreenConnection = {
|
|
65062
|
+
__typename?: 'JiraScreenConnection';
|
|
65063
|
+
edges?: Maybe<Array<JiraScreenEdge>>;
|
|
65064
|
+
pageInfo?: Maybe<PageInfo>;
|
|
65065
|
+
};
|
|
65066
|
+
export declare type JiraScreenEdge = {
|
|
65067
|
+
__typename?: 'JiraScreenEdge';
|
|
65068
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65069
|
+
node?: Maybe<JiraScreen>;
|
|
65070
|
+
};
|
|
64959
65071
|
export declare type JiraScreenTabLayout = {
|
|
64960
65072
|
__typename?: 'JiraScreenTabLayout';
|
|
64961
65073
|
items?: Maybe<JiraScreenTabLayoutItemConnection>;
|
|
@@ -75599,6 +75711,7 @@ export declare type Mutation = {
|
|
|
75599
75711
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75600
75712
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75601
75713
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75714
|
+
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
75602
75715
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75603
75716
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75604
75717
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
@@ -75611,6 +75724,7 @@ export declare type Mutation = {
|
|
|
75611
75724
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
75612
75725
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
75613
75726
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
75727
|
+
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
75614
75728
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
75615
75729
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
75616
75730
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
@@ -75669,7 +75783,7 @@ export declare type Mutation = {
|
|
|
75669
75783
|
createSystemSpace?: Maybe<Space>;
|
|
75670
75784
|
createTemplate?: Maybe<ContentTemplate>;
|
|
75671
75785
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
75672
|
-
|
|
75786
|
+
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
75673
75787
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
75674
75788
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
75675
75789
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -76555,6 +76669,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
76555
76669
|
cloudId: Scalars['ID']['input'];
|
|
76556
76670
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
76557
76671
|
};
|
|
76672
|
+
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
76673
|
+
cloudId: Scalars['ID']['input'];
|
|
76674
|
+
input: ConfluenceCreateCustomRoleInput;
|
|
76675
|
+
};
|
|
76558
76676
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76559
76677
|
cloudId: Scalars['ID']['input'];
|
|
76560
76678
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -76603,6 +76721,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
76603
76721
|
cloudId: Scalars['ID']['input'];
|
|
76604
76722
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
76605
76723
|
};
|
|
76724
|
+
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
76725
|
+
cloudId: Scalars['ID']['input'];
|
|
76726
|
+
input: ConfluenceUpdateCustomRoleInput;
|
|
76727
|
+
};
|
|
76606
76728
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
76607
76729
|
cloudId: Scalars['ID']['input'];
|
|
76608
76730
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -76810,10 +76932,10 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
76810
76932
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76811
76933
|
input: WebTriggerUrlInput;
|
|
76812
76934
|
};
|
|
76813
|
-
export declare type
|
|
76814
|
-
|
|
76935
|
+
export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
76936
|
+
csmAgentId: Scalars['ID']['input'];
|
|
76815
76937
|
helpCenterAri: Scalars['ID']['input'];
|
|
76816
|
-
input?: InputMaybe<
|
|
76938
|
+
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
76817
76939
|
};
|
|
76818
76940
|
export declare type MutationCustomerServiceArgs = {
|
|
76819
76941
|
cloudId: Scalars['ID']['input'];
|
|
@@ -80496,6 +80618,7 @@ export declare type Query = {
|
|
|
80496
80618
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
80497
80619
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
80498
80620
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80621
|
+
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80499
80622
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
80500
80623
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
80501
80624
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
@@ -80504,6 +80627,8 @@ export declare type Query = {
|
|
|
80504
80627
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
80505
80628
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
80506
80629
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
80630
|
+
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
80631
|
+
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80507
80632
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
80508
80633
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
80509
80634
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
@@ -80545,9 +80670,8 @@ export declare type Query = {
|
|
|
80545
80670
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
80546
80671
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
80547
80672
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
80673
|
+
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
80548
80674
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
80549
|
-
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
80550
|
-
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
80551
80675
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
80552
80676
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
80553
80677
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -82106,6 +82230,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
82106
82230
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
82107
82231
|
cloudId: Scalars['ID']['input'];
|
|
82108
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
|
+
};
|
|
82109
82240
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
82110
82241
|
cloudId: Scalars['ID']['input'];
|
|
82111
82242
|
spaceKey: Scalars['String']['input'];
|
|
@@ -82156,6 +82287,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
82156
82287
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82157
82288
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
82158
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
|
+
};
|
|
82159
82303
|
export declare type QueryConfluence_StorageArgs = {
|
|
82160
82304
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82161
82305
|
};
|
|
@@ -82386,10 +82530,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
82386
82530
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
82387
82531
|
startTime: Scalars['String']['input'];
|
|
82388
82532
|
};
|
|
82389
|
-
export declare type
|
|
82390
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
82391
|
-
};
|
|
82392
|
-
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
82533
|
+
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
82393
82534
|
helpCenterAri: Scalars['ID']['input'];
|
|
82394
82535
|
};
|
|
82395
82536
|
export declare type QueryCustomerServiceArgs = {
|
|
@@ -89484,6 +89625,7 @@ export declare enum SummaryType {
|
|
|
89484
89625
|
export declare type SuperAdminPayload = {
|
|
89485
89626
|
__typename?: 'SuperAdminPayload';
|
|
89486
89627
|
id?: Maybe<Scalars['ID']['output']>;
|
|
89628
|
+
user?: Maybe<AtlassianUser>;
|
|
89487
89629
|
};
|
|
89488
89630
|
export declare type SuperBatchWebResources = {
|
|
89489
89631
|
__typename?: 'SuperBatchWebResources';
|