@forge/cli-shared 6.7.0-next.9-experimental-4c15b3a → 6.7.1-next.0
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 +24 -3
- package/out/apps/app-config.d.ts +1 -1
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +6 -3
- package/out/config/config-file-section-reader.d.ts +0 -2
- package/out/config/config-file-section-reader.d.ts.map +1 -1
- package/out/config/config-file-section-reader.js +0 -6
- package/out/config/config-file.d.ts +0 -10
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +1 -29
- package/out/config/config-section.d.ts +0 -4
- package/out/config/config-section.d.ts.map +1 -1
- package/out/config/config-section.js +0 -6
- package/out/config/config.d.ts +1 -5
- package/out/config/config.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +412 -137
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +51 -14
- package/out/service/statsig-service.d.ts +4 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -2
- package/out/service/supported-products-service.js +1 -1
- package/out/ui/text.d.ts +6 -5
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +9 -6
- package/package.json +2 -2
|
@@ -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",
|
|
@@ -2413,6 +2414,7 @@ export declare enum AtlassianProductHostingType {
|
|
|
2413
2414
|
export declare type AtlassianStudioUserProductPermissions = {
|
|
2414
2415
|
__typename?: 'AtlassianStudioUserProductPermissions';
|
|
2415
2416
|
isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2417
|
+
isHelpCenterAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2416
2418
|
isJiraGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2417
2419
|
};
|
|
2418
2420
|
export declare type AtlassianStudioUserSiteContextOutput = {
|
|
@@ -2422,7 +2424,9 @@ export declare type AtlassianStudioUserSiteContextOutput = {
|
|
|
2422
2424
|
isCompanyHubAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2423
2425
|
isConfluenceAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2424
2426
|
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2427
|
+
isHelpCenterEditLayoutPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
2425
2428
|
isJSMAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2429
|
+
isJSMEditionPremiumOrEnterprise?: Maybe<Scalars['Boolean']['output']>;
|
|
2426
2430
|
isJiraAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2427
2431
|
isVirtualAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2428
2432
|
userPermissions?: Maybe<AtlassianStudioUserProductPermissions>;
|
|
@@ -3053,6 +3057,7 @@ export declare enum BulkSetSpacePermissionSpaceType {
|
|
|
3053
3057
|
Personal = "PERSONAL"
|
|
3054
3058
|
}
|
|
3055
3059
|
export declare enum BulkSetSpacePermissionSubjectType {
|
|
3060
|
+
AccessClass = "ACCESS_CLASS",
|
|
3056
3061
|
Group = "GROUP",
|
|
3057
3062
|
User = "USER"
|
|
3058
3063
|
}
|
|
@@ -9354,6 +9359,17 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
9354
9359
|
errors?: Maybe<Array<MutationError>>;
|
|
9355
9360
|
success: Scalars['Boolean']['output'];
|
|
9356
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
|
+
};
|
|
9357
9373
|
export declare type ConfluenceCreateFooterCommentOnBlogPostInput = {
|
|
9358
9374
|
blogPostId: Scalars['ID']['input'];
|
|
9359
9375
|
body: ConfluenceContentBodyInput;
|
|
@@ -15750,6 +15766,7 @@ export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
|
15750
15766
|
export declare type ConfluenceRedactionMetadata = {
|
|
15751
15767
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
15752
15768
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
15769
|
+
creator?: Maybe<AtlassianUser>;
|
|
15753
15770
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
15754
15771
|
id?: Maybe<Scalars['String']['output']>;
|
|
15755
15772
|
redactionReason?: Maybe<Scalars['String']['output']>;
|
|
@@ -16040,6 +16057,18 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
16040
16057
|
page?: Maybe<ConfluencePage>;
|
|
16041
16058
|
success: Scalars['Boolean']['output'];
|
|
16042
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
|
+
};
|
|
16043
16072
|
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
16044
16073
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
16045
16074
|
id: Scalars['ID']['input'];
|
|
@@ -18790,9 +18819,11 @@ export declare type ContentTemplateSpaceInput = {
|
|
|
18790
18819
|
};
|
|
18791
18820
|
export declare type ContentVersion = {
|
|
18792
18821
|
__typename?: 'ContentVersion';
|
|
18822
|
+
author?: Maybe<AtlassianUser>;
|
|
18793
18823
|
authorId?: Maybe<Scalars['ID']['output']>;
|
|
18794
18824
|
contentId: Scalars['ID']['output'];
|
|
18795
18825
|
contentProperties?: Maybe<ContentProperties>;
|
|
18826
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18796
18827
|
number: Scalars['Int']['output'];
|
|
18797
18828
|
updatedTime: Scalars['String']['output'];
|
|
18798
18829
|
};
|
|
@@ -19623,6 +19654,53 @@ export declare type CreatedSprint = {
|
|
|
19623
19654
|
sprintState?: Maybe<SprintState>;
|
|
19624
19655
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
19625
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
|
+
};
|
|
19626
19704
|
export declare type CumulativeFlowDiagram = {
|
|
19627
19705
|
__typename?: 'CumulativeFlowDiagram';
|
|
19628
19706
|
chart: CfdChartConnection;
|
|
@@ -19800,60 +19878,6 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
19800
19878
|
IsSet = "IS_SET",
|
|
19801
19879
|
NotSet = "NOT_SET"
|
|
19802
19880
|
}
|
|
19803
|
-
export declare type CustomerHubAgentConfiguration = {
|
|
19804
|
-
__typename?: 'CustomerHubAgentConfiguration';
|
|
19805
|
-
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentityResult>;
|
|
19806
|
-
id: Scalars['ID']['output'];
|
|
19807
|
-
};
|
|
19808
|
-
export declare type CustomerHubAgentConfigurationIdentity = {
|
|
19809
|
-
__typename?: 'CustomerHubAgentConfigurationIdentity';
|
|
19810
|
-
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19811
|
-
id: Scalars['ID']['output'];
|
|
19812
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
19813
|
-
purpose?: Maybe<Scalars['String']['output']>;
|
|
19814
|
-
tone?: Maybe<CustomerHubAgentConfigurationIdentityTone>;
|
|
19815
|
-
};
|
|
19816
|
-
export declare type CustomerHubAgentConfigurationIdentityConversationStarter = {
|
|
19817
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityConversationStarter';
|
|
19818
|
-
id: Scalars['ID']['output'];
|
|
19819
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
19820
|
-
};
|
|
19821
|
-
export declare type CustomerHubAgentConfigurationIdentityMapping = {
|
|
19822
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityMapping';
|
|
19823
|
-
conversationStarters?: Maybe<Array<CustomerHubAgentConfigurationIdentityConversationStarter>>;
|
|
19824
|
-
id: Scalars['ID']['output'];
|
|
19825
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
19826
|
-
};
|
|
19827
|
-
export declare type CustomerHubAgentConfigurationIdentityMappingResult = CustomerHubAgentConfigurationIdentityMapping | QueryError;
|
|
19828
|
-
export declare type CustomerHubAgentConfigurationIdentityResult = CustomerHubAgentConfigurationIdentity | QueryError;
|
|
19829
|
-
export declare type CustomerHubAgentConfigurationIdentityTone = {
|
|
19830
|
-
__typename?: 'CustomerHubAgentConfigurationIdentityTone';
|
|
19831
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
19832
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
19833
|
-
};
|
|
19834
|
-
export declare type CustomerHubAgentConfigurationIdentityToneInput = {
|
|
19835
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
19836
|
-
type: Scalars['String']['input'];
|
|
19837
|
-
};
|
|
19838
|
-
export declare type CustomerHubAgentConfigurationResult = CustomerHubAgentConfiguration | QueryError;
|
|
19839
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityConfigurationInput = {
|
|
19840
|
-
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19841
|
-
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19842
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
19843
|
-
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
19844
|
-
tone?: InputMaybe<CustomerHubAgentConfigurationIdentityToneInput>;
|
|
19845
|
-
updatedConversationStarters?: InputMaybe<Array<CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput>>;
|
|
19846
|
-
};
|
|
19847
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityConversationStarterInput = {
|
|
19848
|
-
id: Scalars['ID']['input'];
|
|
19849
|
-
message?: InputMaybe<Scalars['String']['input']>;
|
|
19850
|
-
};
|
|
19851
|
-
export declare type CustomerHubAgentConfigurationUpdateIdentityPayload = Payload & {
|
|
19852
|
-
__typename?: 'CustomerHubAgentConfigurationUpdateIdentityPayload';
|
|
19853
|
-
agentIdentity?: Maybe<CustomerHubAgentConfigurationIdentity>;
|
|
19854
|
-
errors?: Maybe<Array<MutationError>>;
|
|
19855
|
-
success: Scalars['Boolean']['output'];
|
|
19856
|
-
};
|
|
19857
19881
|
export declare type CustomerServiceAttribute = Node & {
|
|
19858
19882
|
__typename?: 'CustomerServiceAttribute';
|
|
19859
19883
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -23659,6 +23683,7 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23659
23683
|
buildNumber: Scalars['Float']['output'];
|
|
23660
23684
|
deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
|
|
23661
23685
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
23686
|
+
endUserLicenseAgreementUrl?: Maybe<Scalars['String']['output']>;
|
|
23662
23687
|
isSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
23663
23688
|
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23664
23689
|
version: Scalars['String']['output'];
|
|
@@ -30766,8 +30791,6 @@ export declare type GraphStore = {
|
|
|
30766
30791
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
30767
30792
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30768
30793
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30769
|
-
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30770
|
-
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30771
30794
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30772
30795
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
30773
30796
|
userCreatedRelease?: Maybe<GraphStoreSimplifiedUserCreatedReleaseConnection>;
|
|
@@ -30776,8 +30799,10 @@ export declare type GraphStore = {
|
|
|
30776
30799
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30777
30800
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
30778
30801
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
30802
|
+
userCreatedVideo?: Maybe<GraphStoreSimplifiedUserCreatedVideoConnection>;
|
|
30779
30803
|
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
30780
30804
|
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
30805
|
+
userCreatedVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoInverseConnection>;
|
|
30781
30806
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
30782
30807
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
30783
30808
|
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -32144,6 +32169,7 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
32144
32169
|
export declare type GraphStoreIssueHasAutodevJobArgs = {
|
|
32145
32170
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32146
32171
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32172
|
+
filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
|
|
32147
32173
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32148
32174
|
id: Scalars['ID']['input'];
|
|
32149
32175
|
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
@@ -32151,6 +32177,7 @@ export declare type GraphStoreIssueHasAutodevJobArgs = {
|
|
|
32151
32177
|
export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
|
|
32152
32178
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32153
32179
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32180
|
+
filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
|
|
32154
32181
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32155
32182
|
id: Scalars['ID']['input'];
|
|
32156
32183
|
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
@@ -32739,6 +32766,7 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
32739
32766
|
export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
|
|
32740
32767
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32741
32768
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32769
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
|
|
32742
32770
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32743
32771
|
id: Scalars['ID']['input'];
|
|
32744
32772
|
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
@@ -32746,6 +32774,7 @@ export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
|
|
|
32746
32774
|
export declare type GraphStoreProjectAssociatedAutodevJobInverseArgs = {
|
|
32747
32775
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32748
32776
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32777
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
|
|
32749
32778
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32750
32779
|
id: Scalars['ID']['input'];
|
|
32751
32780
|
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
@@ -34188,20 +34217,6 @@ export declare type GraphStoreUserCreatedIssueWorklogInverseArgs = {
|
|
|
34188
34217
|
id: Scalars['ID']['input'];
|
|
34189
34218
|
sort?: InputMaybe<GraphStoreUserCreatedIssueWorklogSortInput>;
|
|
34190
34219
|
};
|
|
34191
|
-
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
34192
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34193
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34194
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34195
|
-
id: Scalars['ID']['input'];
|
|
34196
|
-
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
34197
|
-
};
|
|
34198
|
-
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
34199
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34200
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34201
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34202
|
-
id: Scalars['ID']['input'];
|
|
34203
|
-
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
34204
|
-
};
|
|
34205
34220
|
export declare type GraphStoreUserCreatedMessageArgs = {
|
|
34206
34221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34207
34222
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34258,6 +34273,13 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
34258
34273
|
id: Scalars['ID']['input'];
|
|
34259
34274
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
34260
34275
|
};
|
|
34276
|
+
export declare type GraphStoreUserCreatedVideoArgs = {
|
|
34277
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34278
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34279
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34280
|
+
id: Scalars['ID']['input'];
|
|
34281
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoSortInput>;
|
|
34282
|
+
};
|
|
34261
34283
|
export declare type GraphStoreUserCreatedVideoCommentArgs = {
|
|
34262
34284
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34263
34285
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34272,6 +34294,13 @@ export declare type GraphStoreUserCreatedVideoCommentInverseArgs = {
|
|
|
34272
34294
|
id: Scalars['ID']['input'];
|
|
34273
34295
|
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34274
34296
|
};
|
|
34297
|
+
export declare type GraphStoreUserCreatedVideoInverseArgs = {
|
|
34298
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34299
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34300
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34301
|
+
id: Scalars['ID']['input'];
|
|
34302
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoSortInput>;
|
|
34303
|
+
};
|
|
34275
34304
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
34276
34305
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34277
34306
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36710,6 +36739,10 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
36710
36739
|
Sca = "SCA",
|
|
36711
36740
|
Unknown = "UNKNOWN"
|
|
36712
36741
|
}
|
|
36742
|
+
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
36743
|
+
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
36744
|
+
value: Scalars['Boolean']['output'];
|
|
36745
|
+
};
|
|
36713
36746
|
export declare type GraphStoreCypherQueryConnection = {
|
|
36714
36747
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
36715
36748
|
edges: Array<GraphStoreCypherQueryEdge>;
|
|
@@ -36720,12 +36753,20 @@ export declare type GraphStoreCypherQueryEdge = {
|
|
|
36720
36753
|
__typename?: 'GraphStoreCypherQueryEdge';
|
|
36721
36754
|
node: GraphStoreCypherQueryNode;
|
|
36722
36755
|
};
|
|
36756
|
+
export declare type GraphStoreCypherQueryFloatObject = {
|
|
36757
|
+
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
36758
|
+
value: Scalars['Float']['output'];
|
|
36759
|
+
};
|
|
36723
36760
|
export declare type GraphStoreCypherQueryFromNode = {
|
|
36724
36761
|
__typename?: 'GraphStoreCypherQueryFromNode';
|
|
36725
36762
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36726
36763
|
id: Scalars['ID']['output'];
|
|
36727
36764
|
};
|
|
36728
36765
|
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;
|
|
36766
|
+
export declare type GraphStoreCypherQueryIntObject = {
|
|
36767
|
+
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
36768
|
+
value: Scalars['Int']['output'];
|
|
36769
|
+
};
|
|
36729
36770
|
export declare type GraphStoreCypherQueryNode = {
|
|
36730
36771
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36731
36772
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36736,6 +36777,10 @@ export declare type GraphStoreCypherQueryResult = {
|
|
|
36736
36777
|
columns: Array<Scalars['String']['output']>;
|
|
36737
36778
|
rows: Array<GraphStoreCypherQueryResultRow>;
|
|
36738
36779
|
};
|
|
36780
|
+
export declare type GraphStoreCypherQueryResultNodeList = {
|
|
36781
|
+
__typename?: 'GraphStoreCypherQueryResultNodeList';
|
|
36782
|
+
nodes: Array<GraphStoreCypherQueryRowItemNode>;
|
|
36783
|
+
};
|
|
36739
36784
|
export declare type GraphStoreCypherQueryResultRow = {
|
|
36740
36785
|
__typename?: 'GraphStoreCypherQueryResultRow';
|
|
36741
36786
|
rowItems: Array<GraphStoreCypherQueryResultRowItem>;
|
|
@@ -36744,6 +36789,18 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
36744
36789
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
36745
36790
|
key: Scalars['String']['output'];
|
|
36746
36791
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
36792
|
+
valueUnion: GraphStoreCypherQueryResultRowItemValueUnion;
|
|
36793
|
+
};
|
|
36794
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
36795
|
+
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
36796
|
+
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
36797
|
+
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
36798
|
+
id: Scalars['ID']['output'];
|
|
36799
|
+
};
|
|
36800
|
+
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;
|
|
36801
|
+
export declare type GraphStoreCypherQueryStringObject = {
|
|
36802
|
+
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
36803
|
+
value: Scalars['String']['output'];
|
|
36747
36804
|
};
|
|
36748
36805
|
export declare type GraphStoreCypherQueryToNode = {
|
|
36749
36806
|
__typename?: 'GraphStoreCypherQueryToNode';
|
|
@@ -40693,8 +40750,43 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
40693
40750
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
40694
40751
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40695
40752
|
};
|
|
40753
|
+
export declare enum GraphStoreIssueHasAutodevJobAutodevJobStatus {
|
|
40754
|
+
Cancelled = "CANCELLED",
|
|
40755
|
+
Completed = "COMPLETED",
|
|
40756
|
+
Failed = "FAILED",
|
|
40757
|
+
InProgress = "IN_PROGRESS",
|
|
40758
|
+
Pending = "PENDING",
|
|
40759
|
+
Unknown = "UNKNOWN"
|
|
40760
|
+
}
|
|
40761
|
+
export declare type GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput = {
|
|
40762
|
+
is?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
|
|
40763
|
+
isNot?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
|
|
40764
|
+
};
|
|
40765
|
+
export declare type GraphStoreIssueHasAutodevJobConditionalFilterInput = {
|
|
40766
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40767
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40768
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40769
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40770
|
+
to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40771
|
+
to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40772
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40773
|
+
to_status?: InputMaybe<GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput>;
|
|
40774
|
+
to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40775
|
+
};
|
|
40776
|
+
export declare type GraphStoreIssueHasAutodevJobFilterInput = {
|
|
40777
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
|
|
40778
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
|
|
40779
|
+
};
|
|
40696
40780
|
export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
40781
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40782
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40697
40783
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40784
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40785
|
+
to_agentAri?: InputMaybe<GraphStoreSortInput>;
|
|
40786
|
+
to_createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40787
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
|
|
40788
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
40789
|
+
to_updatedAt?: InputMaybe<GraphStoreSortInput>;
|
|
40698
40790
|
};
|
|
40699
40791
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
40700
40792
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41123,8 +41215,43 @@ export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
|
41123
41215
|
export declare type GraphStorePrInRepoSortInput = {
|
|
41124
41216
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41125
41217
|
};
|
|
41218
|
+
export declare enum GraphStoreProjectAssociatedAutodevJobAutodevJobStatus {
|
|
41219
|
+
Cancelled = "CANCELLED",
|
|
41220
|
+
Completed = "COMPLETED",
|
|
41221
|
+
Failed = "FAILED",
|
|
41222
|
+
InProgress = "IN_PROGRESS",
|
|
41223
|
+
Pending = "PENDING",
|
|
41224
|
+
Unknown = "UNKNOWN"
|
|
41225
|
+
}
|
|
41226
|
+
export declare type GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput = {
|
|
41227
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
|
|
41228
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
|
|
41229
|
+
};
|
|
41230
|
+
export declare type GraphStoreProjectAssociatedAutodevJobConditionalFilterInput = {
|
|
41231
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41232
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41233
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41234
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41235
|
+
to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
41236
|
+
to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
41237
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
41238
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput>;
|
|
41239
|
+
to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
41240
|
+
};
|
|
41241
|
+
export declare type GraphStoreProjectAssociatedAutodevJobFilterInput = {
|
|
41242
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
|
|
41243
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
|
|
41244
|
+
};
|
|
41126
41245
|
export declare type GraphStoreProjectAssociatedAutodevJobSortInput = {
|
|
41246
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41247
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
41127
41248
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41249
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41250
|
+
to_agentAri?: InputMaybe<GraphStoreSortInput>;
|
|
41251
|
+
to_createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41252
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
|
|
41253
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
41254
|
+
to_updatedAt?: InputMaybe<GraphStoreSortInput>;
|
|
41128
41255
|
};
|
|
41129
41256
|
export declare type GraphStoreProjectAssociatedBranchSortInput = {
|
|
41130
41257
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43372,10 +43499,12 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
43372
43499
|
};
|
|
43373
43500
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
43374
43501
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43375
|
-
export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & {
|
|
43502
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
43376
43503
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobConnection';
|
|
43377
43504
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobEdge>>>;
|
|
43505
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43378
43506
|
pageInfo: PageInfo;
|
|
43507
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43379
43508
|
};
|
|
43380
43509
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
|
|
43381
43510
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobEdge';
|
|
@@ -43385,10 +43514,12 @@ export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
|
|
|
43385
43514
|
lastUpdated: Scalars['DateTime']['output'];
|
|
43386
43515
|
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobUnion>;
|
|
43387
43516
|
};
|
|
43388
|
-
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
|
|
43517
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & HasTotal & {
|
|
43389
43518
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
|
|
43390
43519
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
|
|
43520
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43391
43521
|
pageInfo: PageInfo;
|
|
43522
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43392
43523
|
};
|
|
43393
43524
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
|
|
43394
43525
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
|
|
@@ -44218,10 +44349,12 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
44218
44349
|
};
|
|
44219
44350
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
44220
44351
|
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
44221
|
-
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & {
|
|
44352
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
44222
44353
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobConnection';
|
|
44223
44354
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobEdge>>>;
|
|
44355
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44224
44356
|
pageInfo: PageInfo;
|
|
44357
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44225
44358
|
};
|
|
44226
44359
|
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
|
|
44227
44360
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobEdge';
|
|
@@ -44231,10 +44364,12 @@ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
|
|
|
44231
44364
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44232
44365
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobUnion>;
|
|
44233
44366
|
};
|
|
44234
|
-
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & {
|
|
44367
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & HasTotal & {
|
|
44235
44368
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection';
|
|
44236
44369
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge>>>;
|
|
44370
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44237
44371
|
pageInfo: PageInfo;
|
|
44372
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44238
44373
|
};
|
|
44239
44374
|
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge = {
|
|
44240
44375
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge';
|
|
@@ -46338,34 +46473,6 @@ export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
|
46338
46473
|
};
|
|
46339
46474
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46340
46475
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
46341
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
46342
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
46343
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
46344
|
-
pageInfo: PageInfo;
|
|
46345
|
-
};
|
|
46346
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoEdge = {
|
|
46347
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoEdge';
|
|
46348
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46349
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46350
|
-
id: Scalars['ID']['output'];
|
|
46351
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46352
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoUnion>;
|
|
46353
|
-
};
|
|
46354
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection = HasPageInfo & {
|
|
46355
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection';
|
|
46356
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge>>>;
|
|
46357
|
-
pageInfo: PageInfo;
|
|
46358
|
-
};
|
|
46359
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge = {
|
|
46360
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge';
|
|
46361
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46362
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46363
|
-
id: Scalars['ID']['output'];
|
|
46364
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46365
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion>;
|
|
46366
|
-
};
|
|
46367
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46368
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoUnion = ExternalVideo;
|
|
46369
46476
|
export declare type GraphStoreSimplifiedUserCreatedMessageConnection = HasPageInfo & {
|
|
46370
46477
|
__typename?: 'GraphStoreSimplifiedUserCreatedMessageConnection';
|
|
46371
46478
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedMessageEdge>>>;
|
|
@@ -46506,6 +46613,34 @@ export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge = {
|
|
|
46506
46613
|
};
|
|
46507
46614
|
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46508
46615
|
export declare type GraphStoreSimplifiedUserCreatedVideoCommentUnion = LoomComment;
|
|
46616
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoConnection = HasPageInfo & {
|
|
46617
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoConnection';
|
|
46618
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoEdge>>>;
|
|
46619
|
+
pageInfo: PageInfo;
|
|
46620
|
+
};
|
|
46621
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoEdge = {
|
|
46622
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoEdge';
|
|
46623
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46624
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46625
|
+
id: Scalars['ID']['output'];
|
|
46626
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46627
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoUnion>;
|
|
46628
|
+
};
|
|
46629
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseConnection = HasPageInfo & {
|
|
46630
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoInverseConnection';
|
|
46631
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoInverseEdge>>>;
|
|
46632
|
+
pageInfo: PageInfo;
|
|
46633
|
+
};
|
|
46634
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseEdge = {
|
|
46635
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoInverseEdge';
|
|
46636
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46637
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46638
|
+
id: Scalars['ID']['output'];
|
|
46639
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46640
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoInverseUnion>;
|
|
46641
|
+
};
|
|
46642
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46643
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoUnion = LoomVideo;
|
|
46509
46644
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
46510
46645
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
46511
46646
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -48749,9 +48884,6 @@ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
|
48749
48884
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
48750
48885
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48751
48886
|
};
|
|
48752
|
-
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
48753
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48754
|
-
};
|
|
48755
48887
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
48756
48888
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48757
48889
|
};
|
|
@@ -48767,6 +48899,9 @@ export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
|
48767
48899
|
export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
48768
48900
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48769
48901
|
};
|
|
48902
|
+
export declare type GraphStoreUserCreatedVideoSortInput = {
|
|
48903
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48904
|
+
};
|
|
48770
48905
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
48771
48906
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48772
48907
|
};
|
|
@@ -51095,6 +51230,7 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
|
51095
51230
|
}
|
|
51096
51231
|
export declare enum HelpObjectStoreArticleSourceSystem {
|
|
51097
51232
|
Confluence = "CONFLUENCE",
|
|
51233
|
+
CrossSiteConfluence = "CROSS_SITE_CONFLUENCE",
|
|
51098
51234
|
External = "EXTERNAL",
|
|
51099
51235
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51100
51236
|
Sharepoint = "SHAREPOINT"
|
|
@@ -52664,6 +52800,7 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
52664
52800
|
success: Scalars['Boolean']['output'];
|
|
52665
52801
|
};
|
|
52666
52802
|
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
52803
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
52667
52804
|
id: Scalars['ID']['input'];
|
|
52668
52805
|
version: Scalars['Long']['input'];
|
|
52669
52806
|
};
|
|
@@ -54897,6 +55034,23 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
54897
55034
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
54898
55035
|
};
|
|
54899
55036
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
55037
|
+
export declare type JiraContext = Node & {
|
|
55038
|
+
__typename?: 'JiraContext';
|
|
55039
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
55040
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55041
|
+
id: Scalars['ID']['output'];
|
|
55042
|
+
name: Scalars['String']['output'];
|
|
55043
|
+
};
|
|
55044
|
+
export declare type JiraContextConnection = {
|
|
55045
|
+
__typename?: 'JiraContextConnection';
|
|
55046
|
+
edges?: Maybe<Array<JiraContextEdge>>;
|
|
55047
|
+
pageInfo?: Maybe<PageInfo>;
|
|
55048
|
+
};
|
|
55049
|
+
export declare type JiraContextEdge = {
|
|
55050
|
+
__typename?: 'JiraContextEdge';
|
|
55051
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55052
|
+
node?: Maybe<JiraContext>;
|
|
55053
|
+
};
|
|
54900
55054
|
export declare type JiraCreateActivityConfigurationInput = {
|
|
54901
55055
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
54902
55056
|
id: Scalars['ID']['input'];
|
|
@@ -55034,6 +55188,7 @@ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
|
|
|
55034
55188
|
};
|
|
55035
55189
|
export declare type JiraCreateJourneyItemInput = {
|
|
55036
55190
|
configuration?: InputMaybe<JiraJourneyItemConfigurationInput>;
|
|
55191
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
55037
55192
|
insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55038
55193
|
journeyId: Scalars['ID']['input'];
|
|
55039
55194
|
journeyVersion: Scalars['Long']['input'];
|
|
@@ -55465,6 +55620,7 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
55465
55620
|
success: Scalars['Boolean']['output'];
|
|
55466
55621
|
};
|
|
55467
55622
|
export declare type JiraDeleteJourneyItemInput = {
|
|
55623
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
55468
55624
|
itemId: Scalars['ID']['input'];
|
|
55469
55625
|
journeyId: Scalars['ID']['input'];
|
|
55470
55626
|
journeyVersion: Scalars['Long']['input'];
|
|
@@ -55861,6 +56017,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
55861
56017
|
type: Scalars['String']['output'];
|
|
55862
56018
|
};
|
|
55863
56019
|
export declare type JiraDisableJourneyConfigurationInput = {
|
|
56020
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
55864
56021
|
id: Scalars['ID']['input'];
|
|
55865
56022
|
version: Scalars['Long']['input'];
|
|
55866
56023
|
};
|
|
@@ -56178,6 +56335,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
56178
56335
|
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
56179
56336
|
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56180
56337
|
};
|
|
56338
|
+
export declare enum JiraFieldCategoryType {
|
|
56339
|
+
Custom = "CUSTOM",
|
|
56340
|
+
System = "SYSTEM"
|
|
56341
|
+
}
|
|
56181
56342
|
export declare type JiraFieldConfig = {
|
|
56182
56343
|
__typename?: 'JiraFieldConfig';
|
|
56183
56344
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56200,6 +56361,8 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
56200
56361
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56201
56362
|
cloudId: Scalars['ID']['input'];
|
|
56202
56363
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56364
|
+
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
56365
|
+
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
56203
56366
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
56204
56367
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56205
56368
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56302,6 +56465,10 @@ export declare type JiraFieldSetsViewPayload = Payload & {
|
|
|
56302
56465
|
success: Scalars['Boolean']['output'];
|
|
56303
56466
|
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
56304
56467
|
};
|
|
56468
|
+
export declare enum JiraFieldStatusType {
|
|
56469
|
+
Active = "ACTIVE",
|
|
56470
|
+
Trashed = "TRASHED"
|
|
56471
|
+
}
|
|
56305
56472
|
export declare type JiraFieldType = {
|
|
56306
56473
|
__typename?: 'JiraFieldType';
|
|
56307
56474
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57808,15 +57975,44 @@ export declare type JiraIssueField = {
|
|
|
57808
57975
|
};
|
|
57809
57976
|
export declare type JiraIssueFieldConfig = Node & {
|
|
57810
57977
|
__typename?: 'JiraIssueFieldConfig';
|
|
57978
|
+
associatedContexts?: Maybe<JiraContextConnection>;
|
|
57979
|
+
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
57980
|
+
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
57981
|
+
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
57982
|
+
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
57983
|
+
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
57811
57984
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
57985
|
+
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
57812
57986
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
57987
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57813
57988
|
fieldId: Scalars['String']['output'];
|
|
57814
57989
|
id: Scalars['ID']['output'];
|
|
57815
57990
|
isCustom: Scalars['Boolean']['output'];
|
|
57991
|
+
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
57992
|
+
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
57816
57993
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
57994
|
+
lastUsed?: Maybe<Scalars['DateTime']['output']>;
|
|
57817
57995
|
name: Scalars['String']['output'];
|
|
57818
57996
|
type: JiraConfigFieldType;
|
|
57819
57997
|
};
|
|
57998
|
+
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
57999
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58000
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58001
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58002
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58003
|
+
};
|
|
58004
|
+
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
58005
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58006
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58008
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58009
|
+
};
|
|
58010
|
+
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
58011
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
58012
|
+
before?: InputMaybe<Scalars['Int']['input']>;
|
|
58013
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58014
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58015
|
+
};
|
|
57820
58016
|
export declare type JiraIssueFieldConfiguration = {
|
|
57821
58017
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
57822
58018
|
};
|
|
@@ -58514,18 +58710,6 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58514
58710
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58515
58711
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58516
58712
|
errors?: Maybe<Array<QueryError>>;
|
|
58517
|
-
issueId?: Maybe<Scalars['String']['output']>;
|
|
58518
|
-
};
|
|
58519
|
-
export declare type JiraIssueSearchViewContextsConnection = {
|
|
58520
|
-
__typename?: 'JiraIssueSearchViewContextsConnection';
|
|
58521
|
-
edges?: Maybe<Array<Maybe<JiraIssueSearchViewContextsEdge>>>;
|
|
58522
|
-
pageInfo: PageInfo;
|
|
58523
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58524
|
-
};
|
|
58525
|
-
export declare type JiraIssueSearchViewContextsEdge = {
|
|
58526
|
-
__typename?: 'JiraIssueSearchViewContextsEdge';
|
|
58527
|
-
cursor: Scalars['String']['output'];
|
|
58528
|
-
node?: Maybe<JiraIssueSearchViewContexts>;
|
|
58529
58713
|
};
|
|
58530
58714
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58531
58715
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -58764,6 +58948,21 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
|
58764
58948
|
ListView = "LIST_VIEW",
|
|
58765
58949
|
StripView = "STRIP_VIEW"
|
|
58766
58950
|
}
|
|
58951
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
58952
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
58953
|
+
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
58954
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
58955
|
+
};
|
|
58956
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection = {
|
|
58957
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection';
|
|
58958
|
+
edges?: Maybe<Array<Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge>>>;
|
|
58959
|
+
pageInfo: PageInfo;
|
|
58960
|
+
};
|
|
58961
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge = {
|
|
58962
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge';
|
|
58963
|
+
cursor: Scalars['String']['output'];
|
|
58964
|
+
node?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType>;
|
|
58965
|
+
};
|
|
58767
58966
|
export declare enum JiraIssueViewTimestampDisplayMode {
|
|
58768
58967
|
Absolute = "ABSOLUTE",
|
|
58769
58968
|
Relative = "RELATIVE"
|
|
@@ -58820,6 +59019,11 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
58820
59019
|
__typename?: 'JiraJQLHistoryEdge';
|
|
58821
59020
|
node?: Maybe<JiraJqlHistory>;
|
|
58822
59021
|
};
|
|
59022
|
+
export declare enum JiraJourneyActiveState {
|
|
59023
|
+
Active = "ACTIVE",
|
|
59024
|
+
Inactive = "INACTIVE",
|
|
59025
|
+
None = "NONE"
|
|
59026
|
+
}
|
|
58823
59027
|
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
58824
59028
|
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
58825
59029
|
id: Scalars['ID']['output'];
|
|
@@ -58829,6 +59033,8 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
58829
59033
|
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
58830
59034
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
58831
59035
|
createdBy?: Maybe<User>;
|
|
59036
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
59037
|
+
hasUnpublishedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
58832
59038
|
id: Scalars['ID']['output'];
|
|
58833
59039
|
journeyItems?: Maybe<Array<JiraJourneyItem>>;
|
|
58834
59040
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -62834,6 +63040,7 @@ export declare type JiraPublishBoardViewConfigPayload = Payload & {
|
|
|
62834
63040
|
success: Scalars['Boolean']['output'];
|
|
62835
63041
|
};
|
|
62836
63042
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
63043
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
62837
63044
|
id: Scalars['ID']['input'];
|
|
62838
63045
|
version: Scalars['Long']['input'];
|
|
62839
63046
|
};
|
|
@@ -62876,6 +63083,7 @@ export declare type JiraQuery = {
|
|
|
62876
63083
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
62877
63084
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
62878
63085
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
63086
|
+
contextById?: Maybe<Array<Maybe<JiraContext>>>;
|
|
62879
63087
|
customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
|
|
62880
63088
|
defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
|
|
62881
63089
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -62886,6 +63094,7 @@ export declare type JiraQuery = {
|
|
|
62886
63094
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
62887
63095
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
62888
63096
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
63097
|
+
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
62889
63098
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
62890
63099
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62891
63100
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -63019,11 +63228,11 @@ export declare type JiraQuery = {
|
|
|
63019
63228
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
63020
63229
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
63021
63230
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
63231
|
+
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
63022
63232
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
63023
63233
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
63024
63234
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
63025
63235
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
63026
|
-
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
63027
63236
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
63028
63237
|
sprintById?: Maybe<JiraSprint>;
|
|
63029
63238
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -63054,6 +63263,8 @@ export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
|
63054
63263
|
cloudId: Scalars['ID']['input'];
|
|
63055
63264
|
};
|
|
63056
63265
|
export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
|
|
63266
|
+
activeState?: InputMaybe<JiraJourneyActiveState>;
|
|
63267
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63057
63268
|
cloudId: Scalars['ID']['input'];
|
|
63058
63269
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63059
63270
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63159,6 +63370,9 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
63159
63370
|
export declare type JiraQueryContainerNavigationArgs = {
|
|
63160
63371
|
input: JiraContainerNavigationQueryInput;
|
|
63161
63372
|
};
|
|
63373
|
+
export declare type JiraQueryContextByIdArgs = {
|
|
63374
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63375
|
+
};
|
|
63162
63376
|
export declare type JiraQueryCustomBackgroundsArgs = {
|
|
63163
63377
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63164
63378
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63201,6 +63415,9 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
63201
63415
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63202
63416
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63203
63417
|
};
|
|
63418
|
+
export declare type JiraQueryFieldConfigByIdArgs = {
|
|
63419
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63420
|
+
};
|
|
63204
63421
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
63205
63422
|
cloudId: Scalars['ID']['input'];
|
|
63206
63423
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63509,10 +63726,12 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
63509
63726
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
63510
63727
|
cloudId: Scalars['ID']['input'];
|
|
63511
63728
|
id: Scalars['ID']['input'];
|
|
63729
|
+
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63512
63730
|
};
|
|
63513
63731
|
export declare type JiraQueryJiraJourneyItemArgs = {
|
|
63514
63732
|
cloudId: Scalars['ID']['input'];
|
|
63515
63733
|
id: Scalars['ID']['input'];
|
|
63734
|
+
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63516
63735
|
journeyId: Scalars['ID']['input'];
|
|
63517
63736
|
};
|
|
63518
63737
|
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
@@ -63858,6 +64077,9 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
63858
64077
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
63859
64078
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63860
64079
|
};
|
|
64080
|
+
export declare type JiraQueryScreenByIdArgs = {
|
|
64081
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64082
|
+
};
|
|
63861
64083
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
63862
64084
|
issueId: Scalars['ID']['input'];
|
|
63863
64085
|
};
|
|
@@ -63876,15 +64098,6 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
63876
64098
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
63877
64099
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
63878
64100
|
};
|
|
63879
|
-
export declare type JiraQuerySearchViewContextsArgs = {
|
|
63880
|
-
cloudId: Scalars['ID']['input'];
|
|
63881
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63882
|
-
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63883
|
-
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63884
|
-
issueIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63885
|
-
issueSearchInput: JiraIssueSearchInput;
|
|
63886
|
-
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
63887
|
-
};
|
|
63888
64101
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
63889
64102
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
63890
64103
|
cloudId: Scalars['ID']['input'];
|
|
@@ -64807,6 +65020,23 @@ export declare type JiraScmRepository = {
|
|
|
64807
65020
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
64808
65021
|
name?: Maybe<Scalars['String']['output']>;
|
|
64809
65022
|
};
|
|
65023
|
+
export declare type JiraScreen = Node & {
|
|
65024
|
+
__typename?: 'JiraScreen';
|
|
65025
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65026
|
+
id: Scalars['ID']['output'];
|
|
65027
|
+
name: Scalars['String']['output'];
|
|
65028
|
+
screenId?: Maybe<Scalars['String']['output']>;
|
|
65029
|
+
};
|
|
65030
|
+
export declare type JiraScreenConnection = {
|
|
65031
|
+
__typename?: 'JiraScreenConnection';
|
|
65032
|
+
edges?: Maybe<Array<JiraScreenEdge>>;
|
|
65033
|
+
pageInfo?: Maybe<PageInfo>;
|
|
65034
|
+
};
|
|
65035
|
+
export declare type JiraScreenEdge = {
|
|
65036
|
+
__typename?: 'JiraScreenEdge';
|
|
65037
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65038
|
+
node?: Maybe<JiraScreen>;
|
|
65039
|
+
};
|
|
64810
65040
|
export declare type JiraScreenTabLayout = {
|
|
64811
65041
|
__typename?: 'JiraScreenTabLayout';
|
|
64812
65042
|
items?: Maybe<JiraScreenTabLayoutItemConnection>;
|
|
@@ -67553,27 +67783,32 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
67553
67783
|
};
|
|
67554
67784
|
export declare type JiraUpdateJourneyItemInput = {
|
|
67555
67785
|
configuration: JiraJourneyItemConfigurationInput;
|
|
67786
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
67556
67787
|
itemId: Scalars['ID']['input'];
|
|
67557
67788
|
journeyId: Scalars['ID']['input'];
|
|
67558
67789
|
journeyVersion: Scalars['Long']['input'];
|
|
67559
67790
|
};
|
|
67560
67791
|
export declare type JiraUpdateJourneyNameInput = {
|
|
67792
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
67561
67793
|
id: Scalars['ID']['input'];
|
|
67562
67794
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67563
67795
|
version: Scalars['Long']['input'];
|
|
67564
67796
|
};
|
|
67565
67797
|
export declare type JiraUpdateJourneyParentIssueConfigurationInput = {
|
|
67798
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
67566
67799
|
id: Scalars['ID']['input'];
|
|
67567
67800
|
parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
|
|
67568
67801
|
version: Scalars['Long']['input'];
|
|
67569
67802
|
};
|
|
67570
67803
|
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
67804
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
67571
67805
|
id: Scalars['ID']['input'];
|
|
67572
67806
|
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
67573
67807
|
version: Scalars['Long']['input'];
|
|
67574
67808
|
};
|
|
67575
67809
|
export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
|
|
67576
67810
|
associatedRuleId: Scalars['ID']['input'];
|
|
67811
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
67577
67812
|
journeyId: Scalars['ID']['input'];
|
|
67578
67813
|
journeyItemId: Scalars['ID']['input'];
|
|
67579
67814
|
journeyVersion: Scalars['Long']['input'];
|
|
@@ -67969,6 +68204,7 @@ export declare type JiraUserNavigationConfigurationPayload = Payload & {
|
|
|
67969
68204
|
export declare type JiraUserPreferences = {
|
|
67970
68205
|
__typename?: 'JiraUserPreferences';
|
|
67971
68206
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
68207
|
+
dismissedAutomationDiscoverabilityTemplates?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection>;
|
|
67972
68208
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
67973
68209
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
67974
68210
|
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67998,6 +68234,10 @@ export declare type JiraUserPreferences = {
|
|
|
67998
68234
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
67999
68235
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
68000
68236
|
};
|
|
68237
|
+
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
68238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68239
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68240
|
+
};
|
|
68001
68241
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
68002
68242
|
projectKey: Scalars['String']['input'];
|
|
68003
68243
|
};
|
|
@@ -70683,8 +70923,10 @@ export declare type KnowledgeDiscoverySearchUser = {
|
|
|
70683
70923
|
__typename?: 'KnowledgeDiscoverySearchUser';
|
|
70684
70924
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
70685
70925
|
id: Scalars['String']['output'];
|
|
70926
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
70686
70927
|
name: Scalars['String']['output'];
|
|
70687
70928
|
title?: Maybe<Scalars['String']['output']>;
|
|
70929
|
+
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
70688
70930
|
};
|
|
70689
70931
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
70690
70932
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -75443,6 +75685,7 @@ export declare type Mutation = {
|
|
|
75443
75685
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75444
75686
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75445
75687
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75688
|
+
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
75446
75689
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75447
75690
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75448
75691
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
@@ -75455,6 +75698,7 @@ export declare type Mutation = {
|
|
|
75455
75698
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
75456
75699
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
75457
75700
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
75701
|
+
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
75458
75702
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
75459
75703
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
75460
75704
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
@@ -75513,7 +75757,7 @@ export declare type Mutation = {
|
|
|
75513
75757
|
createSystemSpace?: Maybe<Space>;
|
|
75514
75758
|
createTemplate?: Maybe<ContentTemplate>;
|
|
75515
75759
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
75516
|
-
|
|
75760
|
+
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
75517
75761
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
75518
75762
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
75519
75763
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -76399,6 +76643,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
76399
76643
|
cloudId: Scalars['ID']['input'];
|
|
76400
76644
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
76401
76645
|
};
|
|
76646
|
+
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
76647
|
+
cloudId: Scalars['ID']['input'];
|
|
76648
|
+
input: ConfluenceCreateCustomRoleInput;
|
|
76649
|
+
};
|
|
76402
76650
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76403
76651
|
cloudId: Scalars['ID']['input'];
|
|
76404
76652
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -76447,6 +76695,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
76447
76695
|
cloudId: Scalars['ID']['input'];
|
|
76448
76696
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
76449
76697
|
};
|
|
76698
|
+
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
76699
|
+
cloudId: Scalars['ID']['input'];
|
|
76700
|
+
input: ConfluenceUpdateCustomRoleInput;
|
|
76701
|
+
};
|
|
76450
76702
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
76451
76703
|
cloudId: Scalars['ID']['input'];
|
|
76452
76704
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -76654,10 +76906,10 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
76654
76906
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76655
76907
|
input: WebTriggerUrlInput;
|
|
76656
76908
|
};
|
|
76657
|
-
export declare type
|
|
76658
|
-
|
|
76909
|
+
export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
76910
|
+
csmAgentId: Scalars['ID']['input'];
|
|
76659
76911
|
helpCenterAri: Scalars['ID']['input'];
|
|
76660
|
-
input?: InputMaybe<
|
|
76912
|
+
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
76661
76913
|
};
|
|
76662
76914
|
export declare type MutationCustomerServiceArgs = {
|
|
76663
76915
|
cloudId: Scalars['ID']['input'];
|
|
@@ -80340,6 +80592,7 @@ export declare type Query = {
|
|
|
80340
80592
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
80341
80593
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
80342
80594
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80595
|
+
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80343
80596
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
80344
80597
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
80345
80598
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
@@ -80348,6 +80601,8 @@ export declare type Query = {
|
|
|
80348
80601
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
80349
80602
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
80350
80603
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
80604
|
+
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
80605
|
+
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80351
80606
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
80352
80607
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
80353
80608
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
@@ -80389,9 +80644,8 @@ export declare type Query = {
|
|
|
80389
80644
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
80390
80645
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
80391
80646
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
80647
|
+
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
80392
80648
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
80393
|
-
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
80394
|
-
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
80395
80649
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
80396
80650
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
80397
80651
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -81950,6 +82204,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
81950
82204
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
81951
82205
|
cloudId: Scalars['ID']['input'];
|
|
81952
82206
|
};
|
|
82207
|
+
export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
82208
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
82209
|
+
cloudId: Scalars['ID']['input'];
|
|
82210
|
+
contentId: Scalars['ID']['input'];
|
|
82211
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
82212
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82213
|
+
};
|
|
81953
82214
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
81954
82215
|
cloudId: Scalars['ID']['input'];
|
|
81955
82216
|
spaceKey: Scalars['String']['input'];
|
|
@@ -82000,6 +82261,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
82000
82261
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82001
82262
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
82002
82263
|
};
|
|
82264
|
+
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
82265
|
+
cloudId: Scalars['ID']['input'];
|
|
82266
|
+
contentType: Scalars['String']['input'];
|
|
82267
|
+
spaceKey: Scalars['String']['input'];
|
|
82268
|
+
};
|
|
82269
|
+
export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
82270
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
82271
|
+
cloudId: Scalars['ID']['input'];
|
|
82272
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
82273
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82274
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
82275
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
82276
|
+
};
|
|
82003
82277
|
export declare type QueryConfluence_StorageArgs = {
|
|
82004
82278
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82005
82279
|
};
|
|
@@ -82230,10 +82504,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
82230
82504
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
82231
82505
|
startTime: Scalars['String']['input'];
|
|
82232
82506
|
};
|
|
82233
|
-
export declare type
|
|
82234
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
82235
|
-
};
|
|
82236
|
-
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
82507
|
+
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
82237
82508
|
helpCenterAri: Scalars['ID']['input'];
|
|
82238
82509
|
};
|
|
82239
82510
|
export declare type QueryCustomerServiceArgs = {
|
|
@@ -87629,6 +87900,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
87629
87900
|
DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
|
|
87630
87901
|
DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
|
|
87631
87902
|
EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
|
|
87903
|
+
EmailWithAutomationRemediation = "EMAIL_WITH_AUTOMATION_REMEDIATION",
|
|
87632
87904
|
ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
|
|
87633
87905
|
ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
|
|
87634
87906
|
ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
|
|
@@ -89327,6 +89599,7 @@ export declare enum SummaryType {
|
|
|
89327
89599
|
export declare type SuperAdminPayload = {
|
|
89328
89600
|
__typename?: 'SuperAdminPayload';
|
|
89329
89601
|
id?: Maybe<Scalars['ID']['output']>;
|
|
89602
|
+
user?: Maybe<AtlassianUser>;
|
|
89330
89603
|
};
|
|
89331
89604
|
export declare type SuperBatchWebResources = {
|
|
89332
89605
|
__typename?: 'SuperBatchWebResources';
|
|
@@ -91691,6 +91964,7 @@ export declare type TrelloAttachment = Node & {
|
|
|
91691
91964
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
91692
91965
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
91693
91966
|
id: Scalars['ID']['output'];
|
|
91967
|
+
isMalicious?: Maybe<Scalars['Boolean']['output']>;
|
|
91694
91968
|
isUpload?: Maybe<Scalars['Boolean']['output']>;
|
|
91695
91969
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
91696
91970
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92242,6 +92516,7 @@ export declare type TrelloCardUpdated = {
|
|
|
92242
92516
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
92243
92517
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
92244
92518
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92519
|
+
limits?: Maybe<TrelloCardLimits>;
|
|
92245
92520
|
location?: Maybe<TrelloCardLocation>;
|
|
92246
92521
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
92247
92522
|
mirrorSource?: Maybe<TrelloCard>;
|