@forge/cli-shared 6.7.0-next.9-experimental-472292d → 6.7.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 +18 -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 +391 -90
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +45 -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 +5 -5
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -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'];
|
|
@@ -30776,8 +30801,10 @@ export declare type GraphStore = {
|
|
|
30776
30801
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30777
30802
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
30778
30803
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
30804
|
+
userCreatedVideo?: Maybe<GraphStoreSimplifiedUserCreatedVideoConnection>;
|
|
30779
30805
|
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
30780
30806
|
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
30807
|
+
userCreatedVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoInverseConnection>;
|
|
30781
30808
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
30782
30809
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
30783
30810
|
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -32144,6 +32171,7 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
32144
32171
|
export declare type GraphStoreIssueHasAutodevJobArgs = {
|
|
32145
32172
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32146
32173
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32174
|
+
filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
|
|
32147
32175
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32148
32176
|
id: Scalars['ID']['input'];
|
|
32149
32177
|
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
@@ -32151,6 +32179,7 @@ export declare type GraphStoreIssueHasAutodevJobArgs = {
|
|
|
32151
32179
|
export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
|
|
32152
32180
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32153
32181
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32182
|
+
filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
|
|
32154
32183
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32155
32184
|
id: Scalars['ID']['input'];
|
|
32156
32185
|
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
@@ -32739,6 +32768,7 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
32739
32768
|
export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
|
|
32740
32769
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32741
32770
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32771
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
|
|
32742
32772
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32743
32773
|
id: Scalars['ID']['input'];
|
|
32744
32774
|
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
@@ -32746,6 +32776,7 @@ export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
|
|
|
32746
32776
|
export declare type GraphStoreProjectAssociatedAutodevJobInverseArgs = {
|
|
32747
32777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32748
32778
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32779
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
|
|
32749
32780
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32750
32781
|
id: Scalars['ID']['input'];
|
|
32751
32782
|
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
@@ -34258,6 +34289,13 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
34258
34289
|
id: Scalars['ID']['input'];
|
|
34259
34290
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
34260
34291
|
};
|
|
34292
|
+
export declare type GraphStoreUserCreatedVideoArgs = {
|
|
34293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34294
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34296
|
+
id: Scalars['ID']['input'];
|
|
34297
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoSortInput>;
|
|
34298
|
+
};
|
|
34261
34299
|
export declare type GraphStoreUserCreatedVideoCommentArgs = {
|
|
34262
34300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34263
34301
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34272,6 +34310,13 @@ export declare type GraphStoreUserCreatedVideoCommentInverseArgs = {
|
|
|
34272
34310
|
id: Scalars['ID']['input'];
|
|
34273
34311
|
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34274
34312
|
};
|
|
34313
|
+
export declare type GraphStoreUserCreatedVideoInverseArgs = {
|
|
34314
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34315
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34316
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34317
|
+
id: Scalars['ID']['input'];
|
|
34318
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoSortInput>;
|
|
34319
|
+
};
|
|
34275
34320
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
34276
34321
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34277
34322
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36710,6 +36755,10 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
36710
36755
|
Sca = "SCA",
|
|
36711
36756
|
Unknown = "UNKNOWN"
|
|
36712
36757
|
}
|
|
36758
|
+
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
36759
|
+
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
36760
|
+
value: Scalars['Boolean']['output'];
|
|
36761
|
+
};
|
|
36713
36762
|
export declare type GraphStoreCypherQueryConnection = {
|
|
36714
36763
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
36715
36764
|
edges: Array<GraphStoreCypherQueryEdge>;
|
|
@@ -36720,12 +36769,20 @@ export declare type GraphStoreCypherQueryEdge = {
|
|
|
36720
36769
|
__typename?: 'GraphStoreCypherQueryEdge';
|
|
36721
36770
|
node: GraphStoreCypherQueryNode;
|
|
36722
36771
|
};
|
|
36772
|
+
export declare type GraphStoreCypherQueryFloatObject = {
|
|
36773
|
+
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
36774
|
+
value: Scalars['Float']['output'];
|
|
36775
|
+
};
|
|
36723
36776
|
export declare type GraphStoreCypherQueryFromNode = {
|
|
36724
36777
|
__typename?: 'GraphStoreCypherQueryFromNode';
|
|
36725
36778
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36726
36779
|
id: Scalars['ID']['output'];
|
|
36727
36780
|
};
|
|
36728
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
|
+
};
|
|
36729
36786
|
export declare type GraphStoreCypherQueryNode = {
|
|
36730
36787
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36731
36788
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36736,6 +36793,10 @@ export declare type GraphStoreCypherQueryResult = {
|
|
|
36736
36793
|
columns: Array<Scalars['String']['output']>;
|
|
36737
36794
|
rows: Array<GraphStoreCypherQueryResultRow>;
|
|
36738
36795
|
};
|
|
36796
|
+
export declare type GraphStoreCypherQueryResultNodeList = {
|
|
36797
|
+
__typename?: 'GraphStoreCypherQueryResultNodeList';
|
|
36798
|
+
nodes: Array<GraphStoreCypherQueryRowItemNode>;
|
|
36799
|
+
};
|
|
36739
36800
|
export declare type GraphStoreCypherQueryResultRow = {
|
|
36740
36801
|
__typename?: 'GraphStoreCypherQueryResultRow';
|
|
36741
36802
|
rowItems: Array<GraphStoreCypherQueryResultRowItem>;
|
|
@@ -36744,6 +36805,18 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
36744
36805
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
36745
36806
|
key: Scalars['String']['output'];
|
|
36746
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'];
|
|
36747
36820
|
};
|
|
36748
36821
|
export declare type GraphStoreCypherQueryToNode = {
|
|
36749
36822
|
__typename?: 'GraphStoreCypherQueryToNode';
|
|
@@ -40693,8 +40766,43 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
40693
40766
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
40694
40767
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40695
40768
|
};
|
|
40769
|
+
export declare enum GraphStoreIssueHasAutodevJobAutodevJobStatus {
|
|
40770
|
+
Cancelled = "CANCELLED",
|
|
40771
|
+
Completed = "COMPLETED",
|
|
40772
|
+
Failed = "FAILED",
|
|
40773
|
+
InProgress = "IN_PROGRESS",
|
|
40774
|
+
Pending = "PENDING",
|
|
40775
|
+
Unknown = "UNKNOWN"
|
|
40776
|
+
}
|
|
40777
|
+
export declare type GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput = {
|
|
40778
|
+
is?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
|
|
40779
|
+
isNot?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
|
|
40780
|
+
};
|
|
40781
|
+
export declare type GraphStoreIssueHasAutodevJobConditionalFilterInput = {
|
|
40782
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40783
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40784
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40785
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40786
|
+
to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40787
|
+
to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40788
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40789
|
+
to_status?: InputMaybe<GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput>;
|
|
40790
|
+
to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40791
|
+
};
|
|
40792
|
+
export declare type GraphStoreIssueHasAutodevJobFilterInput = {
|
|
40793
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
|
|
40794
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
|
|
40795
|
+
};
|
|
40696
40796
|
export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
40797
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40798
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40697
40799
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40800
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40801
|
+
to_agentAri?: InputMaybe<GraphStoreSortInput>;
|
|
40802
|
+
to_createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40803
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
|
|
40804
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
40805
|
+
to_updatedAt?: InputMaybe<GraphStoreSortInput>;
|
|
40698
40806
|
};
|
|
40699
40807
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
40700
40808
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41123,8 +41231,43 @@ export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
|
41123
41231
|
export declare type GraphStorePrInRepoSortInput = {
|
|
41124
41232
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41125
41233
|
};
|
|
41234
|
+
export declare enum GraphStoreProjectAssociatedAutodevJobAutodevJobStatus {
|
|
41235
|
+
Cancelled = "CANCELLED",
|
|
41236
|
+
Completed = "COMPLETED",
|
|
41237
|
+
Failed = "FAILED",
|
|
41238
|
+
InProgress = "IN_PROGRESS",
|
|
41239
|
+
Pending = "PENDING",
|
|
41240
|
+
Unknown = "UNKNOWN"
|
|
41241
|
+
}
|
|
41242
|
+
export declare type GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput = {
|
|
41243
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
|
|
41244
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
|
|
41245
|
+
};
|
|
41246
|
+
export declare type GraphStoreProjectAssociatedAutodevJobConditionalFilterInput = {
|
|
41247
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41248
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41249
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41250
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41251
|
+
to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
41252
|
+
to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
41253
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
41254
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput>;
|
|
41255
|
+
to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
|
|
41256
|
+
};
|
|
41257
|
+
export declare type GraphStoreProjectAssociatedAutodevJobFilterInput = {
|
|
41258
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
|
|
41259
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
|
|
41260
|
+
};
|
|
41126
41261
|
export declare type GraphStoreProjectAssociatedAutodevJobSortInput = {
|
|
41262
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41263
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
41127
41264
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41265
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41266
|
+
to_agentAri?: InputMaybe<GraphStoreSortInput>;
|
|
41267
|
+
to_createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41268
|
+
to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
|
|
41269
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
41270
|
+
to_updatedAt?: InputMaybe<GraphStoreSortInput>;
|
|
41128
41271
|
};
|
|
41129
41272
|
export declare type GraphStoreProjectAssociatedBranchSortInput = {
|
|
41130
41273
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43372,10 +43515,12 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
43372
43515
|
};
|
|
43373
43516
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
43374
43517
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43375
|
-
export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & {
|
|
43518
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
43376
43519
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobConnection';
|
|
43377
43520
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobEdge>>>;
|
|
43521
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43378
43522
|
pageInfo: PageInfo;
|
|
43523
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43379
43524
|
};
|
|
43380
43525
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
|
|
43381
43526
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobEdge';
|
|
@@ -43385,10 +43530,12 @@ export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
|
|
|
43385
43530
|
lastUpdated: Scalars['DateTime']['output'];
|
|
43386
43531
|
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobUnion>;
|
|
43387
43532
|
};
|
|
43388
|
-
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
|
|
43533
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & HasTotal & {
|
|
43389
43534
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
|
|
43390
43535
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
|
|
43536
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43391
43537
|
pageInfo: PageInfo;
|
|
43538
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43392
43539
|
};
|
|
43393
43540
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
|
|
43394
43541
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
|
|
@@ -44218,10 +44365,12 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
44218
44365
|
};
|
|
44219
44366
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
44220
44367
|
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
44221
|
-
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & {
|
|
44368
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
44222
44369
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobConnection';
|
|
44223
44370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobEdge>>>;
|
|
44371
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44224
44372
|
pageInfo: PageInfo;
|
|
44373
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44225
44374
|
};
|
|
44226
44375
|
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
|
|
44227
44376
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobEdge';
|
|
@@ -44231,10 +44380,12 @@ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
|
|
|
44231
44380
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44232
44381
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobUnion>;
|
|
44233
44382
|
};
|
|
44234
|
-
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & {
|
|
44383
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & HasTotal & {
|
|
44235
44384
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection';
|
|
44236
44385
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge>>>;
|
|
44386
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44237
44387
|
pageInfo: PageInfo;
|
|
44388
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44238
44389
|
};
|
|
44239
44390
|
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge = {
|
|
44240
44391
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge';
|
|
@@ -46506,6 +46657,34 @@ export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge = {
|
|
|
46506
46657
|
};
|
|
46507
46658
|
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46508
46659
|
export declare type GraphStoreSimplifiedUserCreatedVideoCommentUnion = LoomComment;
|
|
46660
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoConnection = HasPageInfo & {
|
|
46661
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoConnection';
|
|
46662
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoEdge>>>;
|
|
46663
|
+
pageInfo: PageInfo;
|
|
46664
|
+
};
|
|
46665
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoEdge = {
|
|
46666
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoEdge';
|
|
46667
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46668
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46669
|
+
id: Scalars['ID']['output'];
|
|
46670
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46671
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoUnion>;
|
|
46672
|
+
};
|
|
46673
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseConnection = HasPageInfo & {
|
|
46674
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoInverseConnection';
|
|
46675
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoInverseEdge>>>;
|
|
46676
|
+
pageInfo: PageInfo;
|
|
46677
|
+
};
|
|
46678
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseEdge = {
|
|
46679
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoInverseEdge';
|
|
46680
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46681
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46682
|
+
id: Scalars['ID']['output'];
|
|
46683
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46684
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoInverseUnion>;
|
|
46685
|
+
};
|
|
46686
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46687
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoUnion = LoomVideo;
|
|
46509
46688
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
46510
46689
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
46511
46690
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -48767,6 +48946,9 @@ export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
|
48767
48946
|
export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
48768
48947
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48769
48948
|
};
|
|
48949
|
+
export declare type GraphStoreUserCreatedVideoSortInput = {
|
|
48950
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48951
|
+
};
|
|
48770
48952
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
48771
48953
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48772
48954
|
};
|
|
@@ -51095,6 +51277,7 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
|
51095
51277
|
}
|
|
51096
51278
|
export declare enum HelpObjectStoreArticleSourceSystem {
|
|
51097
51279
|
Confluence = "CONFLUENCE",
|
|
51280
|
+
CrossSiteConfluence = "CROSS_SITE_CONFLUENCE",
|
|
51098
51281
|
External = "EXTERNAL",
|
|
51099
51282
|
GoogleDrive = "GOOGLE_DRIVE",
|
|
51100
51283
|
Sharepoint = "SHAREPOINT"
|
|
@@ -54897,6 +55080,23 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
54897
55080
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
54898
55081
|
};
|
|
54899
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
|
+
};
|
|
54900
55100
|
export declare type JiraCreateActivityConfigurationInput = {
|
|
54901
55101
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
54902
55102
|
id: Scalars['ID']['input'];
|
|
@@ -56178,6 +56378,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
56178
56378
|
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
56179
56379
|
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56180
56380
|
};
|
|
56381
|
+
export declare enum JiraFieldCategoryType {
|
|
56382
|
+
Custom = "CUSTOM",
|
|
56383
|
+
System = "SYSTEM"
|
|
56384
|
+
}
|
|
56181
56385
|
export declare type JiraFieldConfig = {
|
|
56182
56386
|
__typename?: 'JiraFieldConfig';
|
|
56183
56387
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56200,6 +56404,8 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
56200
56404
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56201
56405
|
cloudId: Scalars['ID']['input'];
|
|
56202
56406
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56407
|
+
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
56408
|
+
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
56203
56409
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
56204
56410
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56205
56411
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56302,6 +56508,10 @@ export declare type JiraFieldSetsViewPayload = Payload & {
|
|
|
56302
56508
|
success: Scalars['Boolean']['output'];
|
|
56303
56509
|
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
56304
56510
|
};
|
|
56511
|
+
export declare enum JiraFieldStatusType {
|
|
56512
|
+
Active = "ACTIVE",
|
|
56513
|
+
Trashed = "TRASHED"
|
|
56514
|
+
}
|
|
56305
56515
|
export declare type JiraFieldType = {
|
|
56306
56516
|
__typename?: 'JiraFieldType';
|
|
56307
56517
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57808,15 +58018,44 @@ export declare type JiraIssueField = {
|
|
|
57808
58018
|
};
|
|
57809
58019
|
export declare type JiraIssueFieldConfig = Node & {
|
|
57810
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']>;
|
|
57811
58027
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
58028
|
+
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
57812
58029
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
58030
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
57813
58031
|
fieldId: Scalars['String']['output'];
|
|
57814
58032
|
id: Scalars['ID']['output'];
|
|
57815
58033
|
isCustom: Scalars['Boolean']['output'];
|
|
58034
|
+
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
58035
|
+
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
57816
58036
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
58037
|
+
lastUsed?: Maybe<Scalars['DateTime']['output']>;
|
|
57817
58038
|
name: Scalars['String']['output'];
|
|
57818
58039
|
type: JiraConfigFieldType;
|
|
57819
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
|
+
};
|
|
57820
58059
|
export declare type JiraIssueFieldConfiguration = {
|
|
57821
58060
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
57822
58061
|
};
|
|
@@ -58514,18 +58753,6 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58514
58753
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58515
58754
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58516
58755
|
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
58756
|
};
|
|
58530
58757
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58531
58758
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -58764,6 +58991,21 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
|
58764
58991
|
ListView = "LIST_VIEW",
|
|
58765
58992
|
StripView = "STRIP_VIEW"
|
|
58766
58993
|
}
|
|
58994
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
58995
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
58996
|
+
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
58997
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
58998
|
+
};
|
|
58999
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection = {
|
|
59000
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection';
|
|
59001
|
+
edges?: Maybe<Array<Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge>>>;
|
|
59002
|
+
pageInfo: PageInfo;
|
|
59003
|
+
};
|
|
59004
|
+
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge = {
|
|
59005
|
+
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeEdge';
|
|
59006
|
+
cursor: Scalars['String']['output'];
|
|
59007
|
+
node?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType>;
|
|
59008
|
+
};
|
|
58767
59009
|
export declare enum JiraIssueViewTimestampDisplayMode {
|
|
58768
59010
|
Absolute = "ABSOLUTE",
|
|
58769
59011
|
Relative = "RELATIVE"
|
|
@@ -62876,6 +63118,7 @@ export declare type JiraQuery = {
|
|
|
62876
63118
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
62877
63119
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
62878
63120
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
63121
|
+
contextById?: Maybe<Array<Maybe<JiraContext>>>;
|
|
62879
63122
|
customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
|
|
62880
63123
|
defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
|
|
62881
63124
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -62886,6 +63129,7 @@ export declare type JiraQuery = {
|
|
|
62886
63129
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
62887
63130
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
62888
63131
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
63132
|
+
fieldConfigById?: Maybe<Array<Maybe<JiraIssueFieldConfig>>>;
|
|
62889
63133
|
fieldSetViewQueryByProject?: Maybe<JiraFieldSetViewResult>;
|
|
62890
63134
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62891
63135
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -63019,11 +63263,11 @@ export declare type JiraQuery = {
|
|
|
63019
63263
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
63020
63264
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
63021
63265
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
63266
|
+
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
63022
63267
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
63023
63268
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
63024
63269
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
63025
63270
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
63026
|
-
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
63027
63271
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
63028
63272
|
sprintById?: Maybe<JiraSprint>;
|
|
63029
63273
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -63159,6 +63403,9 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
63159
63403
|
export declare type JiraQueryContainerNavigationArgs = {
|
|
63160
63404
|
input: JiraContainerNavigationQueryInput;
|
|
63161
63405
|
};
|
|
63406
|
+
export declare type JiraQueryContextByIdArgs = {
|
|
63407
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63408
|
+
};
|
|
63162
63409
|
export declare type JiraQueryCustomBackgroundsArgs = {
|
|
63163
63410
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63164
63411
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63201,6 +63448,9 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
63201
63448
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63202
63449
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63203
63450
|
};
|
|
63451
|
+
export declare type JiraQueryFieldConfigByIdArgs = {
|
|
63452
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63453
|
+
};
|
|
63204
63454
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
63205
63455
|
cloudId: Scalars['ID']['input'];
|
|
63206
63456
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63858,6 +64108,9 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
63858
64108
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
63859
64109
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63860
64110
|
};
|
|
64111
|
+
export declare type JiraQueryScreenByIdArgs = {
|
|
64112
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64113
|
+
};
|
|
63861
64114
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
63862
64115
|
issueId: Scalars['ID']['input'];
|
|
63863
64116
|
};
|
|
@@ -63876,15 +64129,6 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
63876
64129
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
63877
64130
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
63878
64131
|
};
|
|
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
64132
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
63889
64133
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
63890
64134
|
cloudId: Scalars['ID']['input'];
|
|
@@ -64807,6 +65051,23 @@ export declare type JiraScmRepository = {
|
|
|
64807
65051
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
64808
65052
|
name?: Maybe<Scalars['String']['output']>;
|
|
64809
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
|
+
};
|
|
64810
65071
|
export declare type JiraScreenTabLayout = {
|
|
64811
65072
|
__typename?: 'JiraScreenTabLayout';
|
|
64812
65073
|
items?: Maybe<JiraScreenTabLayoutItemConnection>;
|
|
@@ -67969,6 +68230,7 @@ export declare type JiraUserNavigationConfigurationPayload = Payload & {
|
|
|
67969
68230
|
export declare type JiraUserPreferences = {
|
|
67970
68231
|
__typename?: 'JiraUserPreferences';
|
|
67971
68232
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
68233
|
+
dismissedAutomationDiscoverabilityTemplates?: Maybe<JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateTypeConnection>;
|
|
67972
68234
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
67973
68235
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
67974
68236
|
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67998,6 +68260,10 @@ export declare type JiraUserPreferences = {
|
|
|
67998
68260
|
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
67999
68261
|
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
68000
68262
|
};
|
|
68263
|
+
export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplatesArgs = {
|
|
68264
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68265
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68266
|
+
};
|
|
68001
68267
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
68002
68268
|
projectKey: Scalars['String']['input'];
|
|
68003
68269
|
};
|
|
@@ -70683,8 +70949,10 @@ export declare type KnowledgeDiscoverySearchUser = {
|
|
|
70683
70949
|
__typename?: 'KnowledgeDiscoverySearchUser';
|
|
70684
70950
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
70685
70951
|
id: Scalars['String']['output'];
|
|
70952
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
70686
70953
|
name: Scalars['String']['output'];
|
|
70687
70954
|
title?: Maybe<Scalars['String']['output']>;
|
|
70955
|
+
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
70688
70956
|
};
|
|
70689
70957
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
70690
70958
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -75443,6 +75711,7 @@ export declare type Mutation = {
|
|
|
75443
75711
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75444
75712
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75445
75713
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75714
|
+
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
75446
75715
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75447
75716
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75448
75717
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
@@ -75455,6 +75724,7 @@ export declare type Mutation = {
|
|
|
75455
75724
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
75456
75725
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
75457
75726
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
75727
|
+
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
75458
75728
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
75459
75729
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
75460
75730
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
@@ -75513,7 +75783,7 @@ export declare type Mutation = {
|
|
|
75513
75783
|
createSystemSpace?: Maybe<Space>;
|
|
75514
75784
|
createTemplate?: Maybe<ContentTemplate>;
|
|
75515
75785
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
75516
|
-
|
|
75786
|
+
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
75517
75787
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
75518
75788
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
75519
75789
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -76399,6 +76669,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
76399
76669
|
cloudId: Scalars['ID']['input'];
|
|
76400
76670
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
76401
76671
|
};
|
|
76672
|
+
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
76673
|
+
cloudId: Scalars['ID']['input'];
|
|
76674
|
+
input: ConfluenceCreateCustomRoleInput;
|
|
76675
|
+
};
|
|
76402
76676
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76403
76677
|
cloudId: Scalars['ID']['input'];
|
|
76404
76678
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -76447,6 +76721,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
76447
76721
|
cloudId: Scalars['ID']['input'];
|
|
76448
76722
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
76449
76723
|
};
|
|
76724
|
+
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
76725
|
+
cloudId: Scalars['ID']['input'];
|
|
76726
|
+
input: ConfluenceUpdateCustomRoleInput;
|
|
76727
|
+
};
|
|
76450
76728
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
76451
76729
|
cloudId: Scalars['ID']['input'];
|
|
76452
76730
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -76654,10 +76932,10 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
76654
76932
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76655
76933
|
input: WebTriggerUrlInput;
|
|
76656
76934
|
};
|
|
76657
|
-
export declare type
|
|
76658
|
-
|
|
76935
|
+
export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
76936
|
+
csmAgentId: Scalars['ID']['input'];
|
|
76659
76937
|
helpCenterAri: Scalars['ID']['input'];
|
|
76660
|
-
input?: InputMaybe<
|
|
76938
|
+
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
76661
76939
|
};
|
|
76662
76940
|
export declare type MutationCustomerServiceArgs = {
|
|
76663
76941
|
cloudId: Scalars['ID']['input'];
|
|
@@ -80340,6 +80618,7 @@ export declare type Query = {
|
|
|
80340
80618
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
80341
80619
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
80342
80620
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80621
|
+
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80343
80622
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
80344
80623
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
80345
80624
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
@@ -80348,6 +80627,8 @@ export declare type Query = {
|
|
|
80348
80627
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
80349
80628
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
80350
80629
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
80630
|
+
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
80631
|
+
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
80351
80632
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
80352
80633
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
80353
80634
|
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
@@ -80389,9 +80670,8 @@ export declare type Query = {
|
|
|
80389
80670
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
80390
80671
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
80391
80672
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
80673
|
+
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
80392
80674
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
80393
|
-
customerHubAgentConfiguration_configurationByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationResult>;
|
|
80394
|
-
customerHubAgentConfiguration_mappingByHelpCenterAri?: Maybe<CustomerHubAgentConfigurationIdentityMappingResult>;
|
|
80395
80675
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
80396
80676
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
80397
80677
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -81950,6 +82230,13 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
81950
82230
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
81951
82231
|
cloudId: Scalars['ID']['input'];
|
|
81952
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
|
+
};
|
|
81953
82240
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
81954
82241
|
cloudId: Scalars['ID']['input'];
|
|
81955
82242
|
spaceKey: Scalars['String']['input'];
|
|
@@ -82000,6 +82287,19 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
82000
82287
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
82001
82288
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
82002
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
|
+
};
|
|
82003
82303
|
export declare type QueryConfluence_StorageArgs = {
|
|
82004
82304
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82005
82305
|
};
|
|
@@ -82230,10 +82530,7 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
82230
82530
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
82231
82531
|
startTime: Scalars['String']['input'];
|
|
82232
82532
|
};
|
|
82233
|
-
export declare type
|
|
82234
|
-
helpCenterAri: Scalars['ID']['input'];
|
|
82235
|
-
};
|
|
82236
|
-
export declare type QueryCustomerHubAgentConfiguration_MappingByHelpCenterAriArgs = {
|
|
82533
|
+
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
82237
82534
|
helpCenterAri: Scalars['ID']['input'];
|
|
82238
82535
|
};
|
|
82239
82536
|
export declare type QueryCustomerServiceArgs = {
|
|
@@ -87629,6 +87926,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
87629
87926
|
DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
|
|
87630
87927
|
DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
|
|
87631
87928
|
EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
|
|
87929
|
+
EmailWithAutomationRemediation = "EMAIL_WITH_AUTOMATION_REMEDIATION",
|
|
87632
87930
|
ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
|
|
87633
87931
|
ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
|
|
87634
87932
|
ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
|
|
@@ -89327,6 +89625,7 @@ export declare enum SummaryType {
|
|
|
89327
89625
|
export declare type SuperAdminPayload = {
|
|
89328
89626
|
__typename?: 'SuperAdminPayload';
|
|
89329
89627
|
id?: Maybe<Scalars['ID']['output']>;
|
|
89628
|
+
user?: Maybe<AtlassianUser>;
|
|
89330
89629
|
};
|
|
89331
89630
|
export declare type SuperBatchWebResources = {
|
|
89332
89631
|
__typename?: 'SuperBatchWebResources';
|
|
@@ -91691,6 +91990,7 @@ export declare type TrelloAttachment = Node & {
|
|
|
91691
91990
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
91692
91991
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
91693
91992
|
id: Scalars['ID']['output'];
|
|
91993
|
+
isMalicious?: Maybe<Scalars['Boolean']['output']>;
|
|
91694
91994
|
isUpload?: Maybe<Scalars['Boolean']['output']>;
|
|
91695
91995
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
91696
91996
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92242,6 +92542,7 @@ export declare type TrelloCardUpdated = {
|
|
|
92242
92542
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
92243
92543
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
92244
92544
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92545
|
+
limits?: Maybe<TrelloCardLimits>;
|
|
92245
92546
|
location?: Maybe<TrelloCardLocation>;
|
|
92246
92547
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
92247
92548
|
mirrorSource?: Maybe<TrelloCard>;
|