@forge/cli-shared 6.0.0-next.18 → 6.0.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 +48 -0
- package/out/graphql/graphql-types.d.ts +243 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -5
- package/package.json +2 -2
|
@@ -1663,6 +1663,10 @@ export declare type AriGraphSubscriptionsOnVulnerabilityCreatedOrUpdatedForProje
|
|
|
1663
1663
|
projectId: Scalars['ID']['input'];
|
|
1664
1664
|
type?: Scalars['String']['input'];
|
|
1665
1665
|
};
|
|
1666
|
+
export declare type AriRoutingFilter = {
|
|
1667
|
+
owner: Scalars['String']['input'];
|
|
1668
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1669
|
+
};
|
|
1666
1670
|
export declare type ArjConfiguration = {
|
|
1667
1671
|
__typename?: 'ArjConfiguration';
|
|
1668
1672
|
epicLinkCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -5241,6 +5245,7 @@ export declare type CompassGlobalPermissions = {
|
|
|
5241
5245
|
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
5242
5246
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
5243
5247
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
5248
|
+
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5244
5249
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
5245
5250
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
5246
5251
|
};
|
|
@@ -14509,6 +14514,7 @@ export declare type ContentPlatformFullTutorial = {
|
|
|
14509
14514
|
};
|
|
14510
14515
|
export declare type ContentPlatformHighlightedFeature = {
|
|
14511
14516
|
__typename?: 'ContentPlatformHighlightedFeature';
|
|
14517
|
+
callOut?: Maybe<Scalars['String']['output']>;
|
|
14512
14518
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14513
14519
|
highlightedFeatureDetails?: Maybe<Scalars['String']['output']>;
|
|
14514
14520
|
highlightedFeatureTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
@@ -14571,6 +14577,7 @@ export declare type ContentPlatformIpmAnchored = {
|
|
|
14571
14577
|
relativeY?: Maybe<Scalars['Int']['output']>;
|
|
14572
14578
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14573
14579
|
};
|
|
14580
|
+
export declare type ContentPlatformIpmAnchoredAndIpmPositionUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
14574
14581
|
export declare type ContentPlatformIpmCompImage = {
|
|
14575
14582
|
__typename?: 'ContentPlatformIpmCompImage';
|
|
14576
14583
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14579,6 +14586,15 @@ export declare type ContentPlatformIpmCompImage = {
|
|
|
14579
14586
|
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
14580
14587
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14581
14588
|
};
|
|
14589
|
+
export declare type ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoUnion = ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
14590
|
+
export declare type ContentPlatformIpmComponentBackButton = {
|
|
14591
|
+
__typename?: 'ContentPlatformIpmComponentBackButton';
|
|
14592
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14593
|
+
buttonText: Scalars['String']['output'];
|
|
14594
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14595
|
+
id: Scalars['String']['output'];
|
|
14596
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14597
|
+
};
|
|
14582
14598
|
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
14583
14599
|
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
14584
14600
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14611,6 +14627,14 @@ export declare type ContentPlatformIpmComponentLinkButton = {
|
|
|
14611
14627
|
id: Scalars['String']['output'];
|
|
14612
14628
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14613
14629
|
};
|
|
14630
|
+
export declare type ContentPlatformIpmComponentNextButton = {
|
|
14631
|
+
__typename?: 'ContentPlatformIpmComponentNextButton';
|
|
14632
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14633
|
+
buttonText: Scalars['String']['output'];
|
|
14634
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14635
|
+
id: Scalars['String']['output'];
|
|
14636
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14637
|
+
};
|
|
14614
14638
|
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
14615
14639
|
__typename?: 'ContentPlatformIpmComponentRemindMeLater';
|
|
14616
14640
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
@@ -14666,6 +14690,31 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14666
14690
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14667
14691
|
pageInfo: PageInfo;
|
|
14668
14692
|
};
|
|
14693
|
+
export declare type ContentPlatformIpmMultiStep = {
|
|
14694
|
+
__typename?: 'ContentPlatformIpmMultiStep';
|
|
14695
|
+
body: Scalars['JSON']['output'];
|
|
14696
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14697
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoUnion>;
|
|
14698
|
+
id: Scalars['String']['output'];
|
|
14699
|
+
ipmNumber: Scalars['String']['output'];
|
|
14700
|
+
location?: Maybe<ContentPlatformIpmAnchoredAndIpmPositionUnion>;
|
|
14701
|
+
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
14702
|
+
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
14703
|
+
steps: Array<ContentPlatformIpmSingleStep>;
|
|
14704
|
+
title: Scalars['String']['output'];
|
|
14705
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14706
|
+
variant: Scalars['String']['output'];
|
|
14707
|
+
};
|
|
14708
|
+
export declare type ContentPlatformIpmMultiStepResultEdge = {
|
|
14709
|
+
__typename?: 'ContentPlatformIpmMultiStepResultEdge';
|
|
14710
|
+
cursor: Scalars['String']['output'];
|
|
14711
|
+
node: ContentPlatformIpmMultiStep;
|
|
14712
|
+
};
|
|
14713
|
+
export declare type ContentPlatformIpmMultiStepSearchConnection = {
|
|
14714
|
+
__typename?: 'ContentPlatformIpmMultiStepSearchConnection';
|
|
14715
|
+
edges: Array<ContentPlatformIpmMultiStepResultEdge>;
|
|
14716
|
+
pageInfo: PageInfo;
|
|
14717
|
+
};
|
|
14669
14718
|
export declare type ContentPlatformIpmPosition = {
|
|
14670
14719
|
__typename?: 'ContentPlatformIpmPosition';
|
|
14671
14720
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14674,6 +14723,18 @@ export declare type ContentPlatformIpmPosition = {
|
|
|
14674
14723
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14675
14724
|
};
|
|
14676
14725
|
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
14726
|
+
export declare type ContentPlatformIpmSingleStep = {
|
|
14727
|
+
__typename?: 'ContentPlatformIpmSingleStep';
|
|
14728
|
+
anchored?: Maybe<ContentPlatformIpmAnchored>;
|
|
14729
|
+
body: Scalars['JSON']['output'];
|
|
14730
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14731
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoUnion>;
|
|
14732
|
+
id: Scalars['String']['output'];
|
|
14733
|
+
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
14734
|
+
secondaryButton?: Maybe<ContentPlatformIpmComponentBackButton>;
|
|
14735
|
+
title: Scalars['String']['output'];
|
|
14736
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14737
|
+
};
|
|
14677
14738
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14678
14739
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14679
14740
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -17243,6 +17304,10 @@ export declare type DevAiAutodevLogGroup = {
|
|
|
17243
17304
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
17244
17305
|
status?: Maybe<DevAiAutodevLogGroupStatus>;
|
|
17245
17306
|
};
|
|
17307
|
+
export declare type DevAiAutodevLogGroupLogsArgs = {
|
|
17308
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17310
|
+
};
|
|
17246
17311
|
export declare type DevAiAutodevLogGroupConnection = {
|
|
17247
17312
|
__typename?: 'DevAiAutodevLogGroupConnection';
|
|
17248
17313
|
edges?: Maybe<Array<Maybe<DevAiAutodevLogGroupEdge>>>;
|
|
@@ -24923,6 +24988,7 @@ export declare type GraphStore = {
|
|
|
24923
24988
|
contentReferencedEntityInverseBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
24924
24989
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
24925
24990
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
24991
|
+
cypherQuery: GraphStoreCypherQueryConnection;
|
|
24926
24992
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
24927
24993
|
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
24928
24994
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
@@ -25462,6 +25528,11 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
25462
25528
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25463
25529
|
id: Scalars['ID']['input'];
|
|
25464
25530
|
};
|
|
25531
|
+
export declare type GraphStoreCypherQueryArgs = {
|
|
25532
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25533
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25534
|
+
query: Scalars['String']['input'];
|
|
25535
|
+
};
|
|
25465
25536
|
export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
25466
25537
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25467
25538
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28661,6 +28732,16 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
28661
28732
|
Sca = "SCA",
|
|
28662
28733
|
Unknown = "UNKNOWN"
|
|
28663
28734
|
}
|
|
28735
|
+
export declare type GraphStoreCypherQueryConnection = {
|
|
28736
|
+
__typename?: 'GraphStoreCypherQueryConnection';
|
|
28737
|
+
edges: Array<GraphStoreCypherQueryNode>;
|
|
28738
|
+
pageInfo: PageInfo;
|
|
28739
|
+
};
|
|
28740
|
+
export declare type GraphStoreCypherQueryNode = {
|
|
28741
|
+
__typename?: 'GraphStoreCypherQueryNode';
|
|
28742
|
+
id: Scalars['ID']['output'];
|
|
28743
|
+
issues: Array<Scalars['ID']['output']>;
|
|
28744
|
+
};
|
|
28664
28745
|
export declare type GraphStoreDateFilterInput = {
|
|
28665
28746
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
28666
28747
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -36762,6 +36843,19 @@ export declare type HamsTrial = CommerceTrial & {
|
|
|
36762
36843
|
__typename?: 'HamsTrial';
|
|
36763
36844
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
36764
36845
|
};
|
|
36846
|
+
export declare type HasMercuryProjectFields = {
|
|
36847
|
+
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
36848
|
+
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
36849
|
+
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
36850
|
+
mercuryProjectOwner?: Maybe<User>;
|
|
36851
|
+
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
36852
|
+
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
36853
|
+
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
36854
|
+
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
36855
|
+
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
36856
|
+
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
36857
|
+
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
36858
|
+
};
|
|
36765
36859
|
export declare type HasPageInfo = {
|
|
36766
36860
|
pageInfo: PageInfo;
|
|
36767
36861
|
};
|
|
@@ -36784,6 +36878,7 @@ export declare type HelpCenter = Node & {
|
|
|
36784
36878
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
36785
36879
|
type?: Maybe<HelpCenterType>;
|
|
36786
36880
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
36881
|
+
virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
36787
36882
|
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36788
36883
|
};
|
|
36789
36884
|
export declare type HelpCenterPortalsArgs = {
|
|
@@ -37022,7 +37117,7 @@ export declare type HelpCenterNameInput = {
|
|
|
37022
37117
|
export declare type HelpCenterPermissions = {
|
|
37023
37118
|
__typename?: 'HelpCenterPermissions';
|
|
37024
37119
|
accessControlType: HelpCenterAccessControlType;
|
|
37025
|
-
allowedAccessGroups?: Maybe<Array<
|
|
37120
|
+
allowedAccessGroups?: Maybe<Array<CustomerServiceOrganizationQueryResult>>;
|
|
37026
37121
|
};
|
|
37027
37122
|
export declare type HelpCenterPermissionsInput = {
|
|
37028
37123
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -38717,6 +38812,7 @@ export declare type InvocationMetrics = {
|
|
|
38717
38812
|
};
|
|
38718
38813
|
export declare type InvocationResponsePayload = {
|
|
38719
38814
|
__typename?: 'InvocationResponsePayload';
|
|
38815
|
+
async: Scalars['Boolean']['output'];
|
|
38720
38816
|
body: Scalars['JSON']['output'];
|
|
38721
38817
|
};
|
|
38722
38818
|
export declare type InvokeAuxEffectsInput = {
|
|
@@ -38732,6 +38828,7 @@ export declare type InvokeAuxEffectsResponse = Payload & {
|
|
|
38732
38828
|
success: Scalars['Boolean']['output'];
|
|
38733
38829
|
};
|
|
38734
38830
|
export declare type InvokeExtensionInput = {
|
|
38831
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38735
38832
|
contextIds: Array<Scalars['ID']['input']>;
|
|
38736
38833
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
38737
38834
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -39171,12 +39268,22 @@ export declare enum JiraActionType {
|
|
|
39171
39268
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
39172
39269
|
export declare type JiraActivityConfiguration = {
|
|
39173
39270
|
__typename?: 'JiraActivityConfiguration';
|
|
39271
|
+
fieldValues?: Maybe<Array<Maybe<JiraActivityFieldValueKeyValuePair>>>;
|
|
39174
39272
|
id: Scalars['ID']['output'];
|
|
39175
39273
|
issueType?: Maybe<JiraIssueType>;
|
|
39176
39274
|
name?: Maybe<Scalars['String']['output']>;
|
|
39177
39275
|
project?: Maybe<JiraProject>;
|
|
39178
39276
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
39179
39277
|
};
|
|
39278
|
+
export declare type JiraActivityFieldValueKeyValuePair = {
|
|
39279
|
+
__typename?: 'JiraActivityFieldValueKeyValuePair';
|
|
39280
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
39281
|
+
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39282
|
+
};
|
|
39283
|
+
export declare type JiraActivityFieldValueKeyValuePairInput = {
|
|
39284
|
+
key: Scalars['String']['input'];
|
|
39285
|
+
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
39286
|
+
};
|
|
39180
39287
|
export declare type JiraAddFieldsToProjectInput = {
|
|
39181
39288
|
cloudId: Scalars['ID']['input'];
|
|
39182
39289
|
fieldIds: Array<Scalars['ID']['input']>;
|
|
@@ -41414,6 +41521,7 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
41414
41521
|
};
|
|
41415
41522
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
41416
41523
|
export declare type JiraCreateActivityConfigurationInput = {
|
|
41524
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
41417
41525
|
id: Scalars['ID']['input'];
|
|
41418
41526
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41419
41527
|
name: Scalars['String']['input'];
|
|
@@ -42410,6 +42518,7 @@ export declare type JiraFavouriteEdge = {
|
|
|
42410
42518
|
node?: Maybe<JiraFavourite>;
|
|
42411
42519
|
};
|
|
42412
42520
|
export declare type JiraFavouriteFilter = {
|
|
42521
|
+
includeArchivedProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42413
42522
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
42414
42523
|
sort?: InputMaybe<JiraFavouriteSortInput>;
|
|
42415
42524
|
type?: InputMaybe<JiraFavouriteType>;
|
|
@@ -43356,7 +43465,7 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
43356
43465
|
line?: Maybe<Scalars['Int']['output']>;
|
|
43357
43466
|
message?: Maybe<Scalars['String']['output']>;
|
|
43358
43467
|
};
|
|
43359
|
-
export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
43468
|
+
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
43360
43469
|
__typename?: 'JiraIssue';
|
|
43361
43470
|
archivedBy?: Maybe<User>;
|
|
43362
43471
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43401,6 +43510,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43401
43510
|
issueId: Scalars['String']['output'];
|
|
43402
43511
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
43403
43512
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
43513
|
+
issueTypeAvatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
43404
43514
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
43405
43515
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
43406
43516
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -43412,18 +43522,31 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43412
43522
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
43413
43523
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
43414
43524
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
43525
|
+
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
43526
|
+
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
43527
|
+
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
43528
|
+
mercuryProjectOwner?: Maybe<User>;
|
|
43529
|
+
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
43530
|
+
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
43531
|
+
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
43532
|
+
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
43533
|
+
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
43534
|
+
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
43535
|
+
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
43415
43536
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
43416
43537
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
43417
43538
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
43418
43539
|
priorityField?: Maybe<JiraPriorityField>;
|
|
43419
43540
|
projectField?: Maybe<JiraProjectField>;
|
|
43420
43541
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
43542
|
+
reporter?: Maybe<User>;
|
|
43421
43543
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
43422
43544
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
43423
43545
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
43424
43546
|
smartSummary?: Maybe<JiraAdf>;
|
|
43425
43547
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
43426
43548
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
43549
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
43427
43550
|
statusField?: Maybe<JiraStatusField>;
|
|
43428
43551
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
43429
43552
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
@@ -43431,6 +43554,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43431
43554
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
43432
43555
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
43433
43556
|
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
43557
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
43434
43558
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
43435
43559
|
timeTrackingField?: Maybe<JiraTimeTrackingField>;
|
|
43436
43560
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -44468,6 +44592,7 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
|
44468
44592
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
44469
44593
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
44470
44594
|
errors?: Maybe<Array<MutationError>>;
|
|
44595
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44471
44596
|
success: Scalars['Boolean']['output'];
|
|
44472
44597
|
};
|
|
44473
44598
|
export declare type JiraIssueSearchInput = {
|
|
@@ -46665,7 +46790,6 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
46665
46790
|
Reports = "REPORTS",
|
|
46666
46791
|
Requests = "REQUESTS",
|
|
46667
46792
|
Security = "SECURITY",
|
|
46668
|
-
Shortcut = "SHORTCUT",
|
|
46669
46793
|
Shortcuts = "SHORTCUTS",
|
|
46670
46794
|
Summary = "SUMMARY",
|
|
46671
46795
|
Timeline = "TIMELINE"
|
|
@@ -47522,6 +47646,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
47522
47646
|
export declare type JiraProject = Node & {
|
|
47523
47647
|
__typename?: 'JiraProject';
|
|
47524
47648
|
action?: Maybe<JiraProjectAction>;
|
|
47649
|
+
activeBackground?: Maybe<JiraBackground>;
|
|
47525
47650
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
47526
47651
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
47527
47652
|
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
@@ -48299,7 +48424,6 @@ export declare enum JiraPullRequestState {
|
|
|
48299
48424
|
export declare type JiraQuery = {
|
|
48300
48425
|
__typename?: 'JiraQuery';
|
|
48301
48426
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
48302
|
-
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
48303
48427
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
48304
48428
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
48305
48429
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -48425,10 +48549,6 @@ export declare type JiraQuery = {
|
|
|
48425
48549
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
48426
48550
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
48427
48551
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
48428
|
-
navigationItem?: Maybe<JiraNavigationItemResult>;
|
|
48429
|
-
navigationItemByProjectKeyAndItemId?: Maybe<JiraNavigationItemResult>;
|
|
48430
|
-
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
48431
|
-
navigationItemsByProjectKey?: Maybe<JiraNavigationItemConnection>;
|
|
48432
48552
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
48433
48553
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
48434
48554
|
notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
|
|
@@ -48482,11 +48602,6 @@ export declare type JiraQuery = {
|
|
|
48482
48602
|
export declare type JiraQueryActiveBackgroundDetailsArgs = {
|
|
48483
48603
|
entityId: Scalars['ID']['input'];
|
|
48484
48604
|
};
|
|
48485
|
-
export declare type JiraQueryAddableNavigationItemTypesArgs = {
|
|
48486
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48487
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48488
|
-
scopeId: Scalars['ID']['input'];
|
|
48489
|
-
};
|
|
48490
48605
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
48491
48606
|
cloudId: Scalars['ID']['input'];
|
|
48492
48607
|
};
|
|
@@ -49069,25 +49184,6 @@ export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
49069
49184
|
cloudId: Scalars['ID']['input'];
|
|
49070
49185
|
input: JiraNaturalLanguageToJqlInput;
|
|
49071
49186
|
};
|
|
49072
|
-
export declare type JiraQueryNavigationItemArgs = {
|
|
49073
|
-
id: Scalars['ID']['input'];
|
|
49074
|
-
};
|
|
49075
|
-
export declare type JiraQueryNavigationItemByProjectKeyAndItemIdArgs = {
|
|
49076
|
-
cloudId: Scalars['ID']['input'];
|
|
49077
|
-
itemId: Scalars['ID']['input'];
|
|
49078
|
-
projectKey: Scalars['String']['input'];
|
|
49079
|
-
};
|
|
49080
|
-
export declare type JiraQueryNavigationItemsArgs = {
|
|
49081
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
49082
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49083
|
-
scopeId: Scalars['ID']['input'];
|
|
49084
|
-
};
|
|
49085
|
-
export declare type JiraQueryNavigationItemsByProjectKeyArgs = {
|
|
49086
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
49087
|
-
cloudId: Scalars['ID']['input'];
|
|
49088
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49089
|
-
projectKey: Scalars['String']['input'];
|
|
49090
|
-
};
|
|
49091
49187
|
export declare type JiraQueryNavigationUiStateArgs = {
|
|
49092
49188
|
cloudId: Scalars['ID']['input'];
|
|
49093
49189
|
};
|
|
@@ -49400,6 +49496,7 @@ export declare type JiraRankNavigationItemPayloadNavigationItemsArgs = {
|
|
|
49400
49496
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49401
49497
|
};
|
|
49402
49498
|
export declare type JiraRecentItemsFilter = {
|
|
49499
|
+
includeArchivedProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49403
49500
|
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
49404
49501
|
types?: InputMaybe<Array<JiraSearchableEntityType>>;
|
|
49405
49502
|
};
|
|
@@ -51713,11 +51810,13 @@ export declare type JiraStatus = Node & {
|
|
|
51713
51810
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
51714
51811
|
statusId: Scalars['String']['output'];
|
|
51715
51812
|
};
|
|
51716
|
-
export declare type JiraStatusCategory = Node & {
|
|
51813
|
+
export declare type JiraStatusCategory = MercuryProjectStatus & Node & {
|
|
51717
51814
|
__typename?: 'JiraStatusCategory';
|
|
51718
51815
|
colorName?: Maybe<JiraStatusCategoryColor>;
|
|
51719
51816
|
id: Scalars['ID']['output'];
|
|
51720
51817
|
key?: Maybe<Scalars['String']['output']>;
|
|
51818
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
51819
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
51721
51820
|
name?: Maybe<Scalars['String']['output']>;
|
|
51722
51821
|
statusCategoryId: Scalars['String']['output'];
|
|
51723
51822
|
};
|
|
@@ -55960,6 +56059,12 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
55960
56059
|
logicalFileName: Scalars['String']['output'];
|
|
55961
56060
|
size: Scalars['Int']['output'];
|
|
55962
56061
|
};
|
|
56062
|
+
export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
56063
|
+
dcAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
56064
|
+
serverAppSoftwareId: Scalars['ID']['input'];
|
|
56065
|
+
userKey?: InputMaybe<Scalars['ID']['input']>;
|
|
56066
|
+
versionNumber: Scalars['ID']['input'];
|
|
56067
|
+
};
|
|
55963
56068
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
55964
56069
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
55965
56070
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -56518,6 +56623,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
56518
56623
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
56519
56624
|
appSoftwareVersionsList: MarketplaceConsoleAppVersionsList;
|
|
56520
56625
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
56626
|
+
canMakeServerVersionPublic?: Maybe<MarketplaceConsoleServerVersionPublicChecks>;
|
|
56521
56627
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
56522
56628
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
56523
56629
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -56551,6 +56657,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsListArgs = {
|
|
|
56551
56657
|
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
56552
56658
|
appId: Scalars['ID']['input'];
|
|
56553
56659
|
};
|
|
56660
|
+
export declare type MarketplaceConsoleQueryApiCanMakeServerVersionPublicArgs = {
|
|
56661
|
+
canMakeServerVersionPublicInput: MarketplaceConsoleCanMakeServerVersionPublicInput;
|
|
56662
|
+
};
|
|
56554
56663
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
56555
56664
|
partnerId: Scalars['ID']['input'];
|
|
56556
56665
|
};
|
|
@@ -56586,6 +56695,12 @@ export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
|
56586
56695
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
56587
56696
|
self: MarketplaceConsoleLink;
|
|
56588
56697
|
};
|
|
56698
|
+
export declare type MarketplaceConsoleServerVersionPublicChecks = {
|
|
56699
|
+
__typename?: 'MarketplaceConsoleServerVersionPublicChecks';
|
|
56700
|
+
publicServerVersionExists: Scalars['Boolean']['output'];
|
|
56701
|
+
serverVersionHasDCCounterpart: Scalars['Boolean']['output'];
|
|
56702
|
+
shouldStopNewPublicServerVersions: Scalars['Boolean']['output'];
|
|
56703
|
+
};
|
|
56589
56704
|
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
56590
56705
|
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
56591
56706
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
@@ -58081,6 +58196,22 @@ export declare type MercuryPreference = Node & {
|
|
|
58081
58196
|
key: Scalars['String']['output'];
|
|
58082
58197
|
value: Scalars['String']['output'];
|
|
58083
58198
|
};
|
|
58199
|
+
export declare type MercuryProjectStatus = {
|
|
58200
|
+
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
58201
|
+
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
58202
|
+
};
|
|
58203
|
+
export declare enum MercuryProjectStatusColor {
|
|
58204
|
+
Blue = "BLUE",
|
|
58205
|
+
Gray = "GRAY",
|
|
58206
|
+
Green = "GREEN",
|
|
58207
|
+
Red = "RED",
|
|
58208
|
+
Yellow = "YELLOW"
|
|
58209
|
+
}
|
|
58210
|
+
export declare enum MercuryProjectTargetDateType {
|
|
58211
|
+
Day = "DAY",
|
|
58212
|
+
Month = "MONTH",
|
|
58213
|
+
Quarter = "QUARTER"
|
|
58214
|
+
}
|
|
58084
58215
|
export declare type MercuryProvider = Node & {
|
|
58085
58216
|
__typename?: 'MercuryProvider';
|
|
58086
58217
|
configurationState: MercuryProviderConfigurationState;
|
|
@@ -61865,6 +61996,8 @@ export declare type Query = {
|
|
|
61865
61996
|
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
61866
61997
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
61867
61998
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
61999
|
+
ipmMultiStep?: Maybe<ContentPlatformIpmMultiStep>;
|
|
62000
|
+
ipmMultiSteps: ContentPlatformIpmMultiStepSearchConnection;
|
|
61868
62001
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61869
62002
|
jira?: Maybe<JiraQuery>;
|
|
61870
62003
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
@@ -63078,7 +63211,9 @@ export declare type QueryDevOpsServicesByIdArgs = {
|
|
|
63078
63211
|
ids: Array<Scalars['ID']['input']>;
|
|
63079
63212
|
};
|
|
63080
63213
|
export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
63214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63081
63215
|
cloudId: Scalars['ID']['input'];
|
|
63216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63082
63217
|
jobId: Scalars['ID']['input'];
|
|
63083
63218
|
};
|
|
63084
63219
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
@@ -63158,6 +63293,13 @@ export declare type QueryIpmImageModalArgs = {
|
|
|
63158
63293
|
export declare type QueryIpmImageModalsArgs = {
|
|
63159
63294
|
search: ContentPlatformSearchApIv2Query;
|
|
63160
63295
|
};
|
|
63296
|
+
export declare type QueryIpmMultiStepArgs = {
|
|
63297
|
+
id: Scalars['String']['input'];
|
|
63298
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63299
|
+
};
|
|
63300
|
+
export declare type QueryIpmMultiStepsArgs = {
|
|
63301
|
+
search: ContentPlatformSearchApIv2Query;
|
|
63302
|
+
};
|
|
63161
63303
|
export declare type QueryIsSainSearchEnabledArgs = {
|
|
63162
63304
|
cloudId: Scalars['String']['input'];
|
|
63163
63305
|
};
|
|
@@ -63475,6 +63617,14 @@ export declare type RadarEntity = {
|
|
|
63475
63617
|
export declare enum RadarEntityType {
|
|
63476
63618
|
Position = "POSITION"
|
|
63477
63619
|
}
|
|
63620
|
+
export declare type RadarError = {
|
|
63621
|
+
__typename?: 'RadarError';
|
|
63622
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
63623
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
63624
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
63625
|
+
stackTrace?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63626
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
63627
|
+
};
|
|
63478
63628
|
export declare type RadarFieldDefinition = Node & {
|
|
63479
63629
|
__typename?: 'RadarFieldDefinition';
|
|
63480
63630
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -63535,6 +63685,19 @@ export declare enum RadarFilterPlurality {
|
|
|
63535
63685
|
None = "NONE",
|
|
63536
63686
|
Or = "OR"
|
|
63537
63687
|
}
|
|
63688
|
+
export declare type RadarFocusAreaMappingsInput = {
|
|
63689
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
63690
|
+
positionId: Scalars['ID']['input'];
|
|
63691
|
+
};
|
|
63692
|
+
export declare type RadarMutationBaseResponse = {
|
|
63693
|
+
errors?: Maybe<Array<RadarError>>;
|
|
63694
|
+
success: Scalars['Boolean']['output'];
|
|
63695
|
+
};
|
|
63696
|
+
export declare type RadarMutationResponse = RadarMutationBaseResponse & {
|
|
63697
|
+
__typename?: 'RadarMutationResponse';
|
|
63698
|
+
errors?: Maybe<Array<RadarError>>;
|
|
63699
|
+
success: Scalars['Boolean']['output'];
|
|
63700
|
+
};
|
|
63538
63701
|
export declare type RadarNumericFieldValue = {
|
|
63539
63702
|
__typename?: 'RadarNumericFieldValue';
|
|
63540
63703
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -65935,6 +66098,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
65935
66098
|
BitbucketWorkspacePrivacy = "BITBUCKET_WORKSPACE_PRIVACY",
|
|
65936
66099
|
ClassificationLevelArchived = "CLASSIFICATION_LEVEL_ARCHIVED",
|
|
65937
66100
|
ClassificationLevelPublished = "CLASSIFICATION_LEVEL_PUBLISHED",
|
|
66101
|
+
CompromisedMobileDevice = "COMPROMISED_MOBILE_DEVICE",
|
|
65938
66102
|
ConfluenceCustomDetection = "CONFLUENCE_CUSTOM_DETECTION",
|
|
65939
66103
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
65940
66104
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
@@ -66009,6 +66173,8 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
66009
66173
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
66010
66174
|
UserRemovedFromBeacon = "USER_REMOVED_FROM_BEACON",
|
|
66011
66175
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
66176
|
+
UserTokenCreated = "USER_TOKEN_CREATED",
|
|
66177
|
+
UserTokenRevoked = "USER_TOKEN_REVOKED",
|
|
66012
66178
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
66013
66179
|
}
|
|
66014
66180
|
export declare type ShepherdAlertTitle = {
|
|
@@ -66657,7 +66823,9 @@ export declare enum ShepherdRemediationActionType {
|
|
|
66657
66823
|
ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
|
|
66658
66824
|
BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
|
|
66659
66825
|
BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
|
|
66826
|
+
CheckAutomationsRemediation = "CHECK_AUTOMATIONS_REMEDIATION",
|
|
66660
66827
|
ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
|
|
66828
|
+
CompromisedDeviceRemediation = "COMPROMISED_DEVICE_REMEDIATION",
|
|
66661
66829
|
ConfluenceAnonAccessRemediation = "CONFLUENCE_ANON_ACCESS_REMEDIATION",
|
|
66662
66830
|
DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
|
|
66663
66831
|
DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
|
|
@@ -66696,11 +66864,13 @@ export declare enum ShepherdRemediationActionType {
|
|
|
66696
66864
|
RevokeAccessRemediation = "REVOKE_ACCESS_REMEDIATION",
|
|
66697
66865
|
RevokeApiKeyRemediation = "REVOKE_API_KEY_REMEDIATION",
|
|
66698
66866
|
RevokeApiTokensRemediation = "REVOKE_API_TOKENS_REMEDIATION",
|
|
66867
|
+
RevokeUserApiTokenRemediation = "REVOKE_USER_API_TOKEN_REMEDIATION",
|
|
66699
66868
|
SpacePermissionsRemediation = "SPACE_PERMISSIONS_REMEDIATION",
|
|
66700
66869
|
SuspendActorRemediation = "SUSPEND_ACTOR_REMEDIATION",
|
|
66701
66870
|
SuspendSubjectRemediation = "SUSPEND_SUBJECT_REMEDIATION",
|
|
66702
66871
|
TurnOffJiraPermissionsRemediation = "TURN_OFF_JIRA_PERMISSIONS_REMEDIATION",
|
|
66703
66872
|
TwoStepPolicyRemediation = "TWO_STEP_POLICY_REMEDIATION",
|
|
66873
|
+
UseAuthPolicyRemediation = "USE_AUTH_POLICY_REMEDIATION",
|
|
66704
66874
|
ViewSpacePermissionsRemediation = "VIEW_SPACE_PERMISSIONS_REMEDIATION"
|
|
66705
66875
|
}
|
|
66706
66876
|
export declare type ShepherdResourceActivity = {
|
|
@@ -67393,6 +67563,7 @@ export declare type Storage = {
|
|
|
67393
67563
|
export declare type Subscription = {
|
|
67394
67564
|
__typename?: 'Subscription';
|
|
67395
67565
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
67566
|
+
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
67396
67567
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
67397
67568
|
jira?: Maybe<JiraSubscription>;
|
|
67398
67569
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
@@ -67403,6 +67574,10 @@ export declare type Subscription = {
|
|
|
67403
67574
|
testing?: Maybe<TestingSubscription>;
|
|
67404
67575
|
trello: TrelloSubscriptionApi;
|
|
67405
67576
|
};
|
|
67577
|
+
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
67578
|
+
cloudId: Scalars['ID']['input'];
|
|
67579
|
+
jobId: Scalars['ID']['input'];
|
|
67580
|
+
};
|
|
67406
67581
|
export declare type SupportInquiryEntitlement = {
|
|
67407
67582
|
__typename?: 'SupportInquiryEntitlement';
|
|
67408
67583
|
cloudURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -69261,6 +69436,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
69261
69436
|
export declare type TrelloBoardViewer = {
|
|
69262
69437
|
__typename?: 'TrelloBoardViewer';
|
|
69263
69438
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69439
|
+
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69264
69440
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
69265
69441
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
69266
69442
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -69870,6 +70046,7 @@ export declare type TrelloMutationApi = {
|
|
|
69870
70046
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
69871
70047
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
69872
70048
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
70049
|
+
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
69873
70050
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
69874
70051
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
69875
70052
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -69910,6 +70087,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
69910
70087
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
69911
70088
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
69912
70089
|
};
|
|
70090
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiSlackArgs = {
|
|
70091
|
+
input: TrelloUpdateBoardViewerAiSlackInput;
|
|
70092
|
+
};
|
|
69913
70093
|
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
69914
70094
|
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
69915
70095
|
};
|
|
@@ -69938,7 +70118,6 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
69938
70118
|
};
|
|
69939
70119
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69940
70120
|
__typename?: 'TrelloPlannerCalendar';
|
|
69941
|
-
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69942
70121
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
69943
70122
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69944
70123
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
@@ -70087,10 +70266,10 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
70087
70266
|
};
|
|
70088
70267
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
70089
70268
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70090
|
-
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70091
70269
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70092
70270
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
70093
70271
|
id: Scalars['ID']['output'];
|
|
70272
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
70094
70273
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70095
70274
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
70096
70275
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -70163,7 +70342,6 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70163
70342
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
70164
70343
|
};
|
|
70165
70344
|
export declare type TrelloProviderCalendarInterface = {
|
|
70166
|
-
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70167
70345
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
70168
70346
|
id: Scalars['ID']['output'];
|
|
70169
70347
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70176,6 +70354,7 @@ export declare type TrelloQueryApi = {
|
|
|
70176
70354
|
board?: Maybe<TrelloBoard>;
|
|
70177
70355
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
70178
70356
|
card?: Maybe<TrelloCard>;
|
|
70357
|
+
cardsForPlannerEvent?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
70179
70358
|
echo?: Maybe<Scalars['String']['output']>;
|
|
70180
70359
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
70181
70360
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -70199,6 +70378,13 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
70199
70378
|
export declare type TrelloQueryApiCardArgs = {
|
|
70200
70379
|
id: Scalars['ID']['input'];
|
|
70201
70380
|
};
|
|
70381
|
+
export declare type TrelloQueryApiCardsForPlannerEventArgs = {
|
|
70382
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70383
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70384
|
+
providerAccountId: Scalars['ID']['input'];
|
|
70385
|
+
providerEventId: Scalars['ID']['input'];
|
|
70386
|
+
workspaceId: Scalars['ID']['input'];
|
|
70387
|
+
};
|
|
70202
70388
|
export declare type TrelloQueryApiEchosArgs = {
|
|
70203
70389
|
echo: Array<Scalars['String']['input']>;
|
|
70204
70390
|
};
|
|
@@ -70206,6 +70392,7 @@ export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
|
70206
70392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70207
70393
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70208
70394
|
id: Scalars['ID']['input'];
|
|
70395
|
+
workspaceId: Scalars['ID']['input'];
|
|
70209
70396
|
};
|
|
70210
70397
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
70211
70398
|
id: Scalars['ID']['input'];
|
|
@@ -70220,11 +70407,13 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
70220
70407
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70221
70408
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70222
70409
|
id: Scalars['ID']['input'];
|
|
70410
|
+
workspaceId: Scalars['ID']['input'];
|
|
70223
70411
|
};
|
|
70224
70412
|
export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
70225
70413
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70226
70414
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70227
70415
|
id: Scalars['ID']['input'];
|
|
70416
|
+
workspaceId: Scalars['ID']['input'];
|
|
70228
70417
|
};
|
|
70229
70418
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
70230
70419
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -70398,6 +70587,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
70398
70587
|
success: Scalars['Boolean']['output'];
|
|
70399
70588
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
70400
70589
|
};
|
|
70590
|
+
export declare type TrelloUpdateBoardViewerAiSlackInput = {
|
|
70591
|
+
boardId: Scalars['ID']['input'];
|
|
70592
|
+
value: Scalars['Boolean']['input'];
|
|
70593
|
+
};
|
|
70594
|
+
export declare type TrelloUpdateBoardViewerAiSlackPayload = Payload & {
|
|
70595
|
+
__typename?: 'TrelloUpdateBoardViewerAISlackPayload';
|
|
70596
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70597
|
+
success: Scalars['Boolean']['output'];
|
|
70598
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
70599
|
+
};
|
|
70401
70600
|
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
|
|
70402
70601
|
boardId: Scalars['ID']['input'];
|
|
70403
70602
|
value: Scalars['Boolean']['input'];
|
|
@@ -72076,13 +72275,21 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
72076
72275
|
};
|
|
72077
72276
|
export declare type VirtualAgentQueryApi = {
|
|
72078
72277
|
__typename?: 'VirtualAgentQueryApi';
|
|
72278
|
+
availableToHelpCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
72079
72279
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
72280
|
+
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
72080
72281
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
72081
72282
|
};
|
|
72283
|
+
export declare type VirtualAgentQueryApiAvailableToHelpCenterArgs = {
|
|
72284
|
+
helpCenterId: Scalars['ID']['input'];
|
|
72285
|
+
};
|
|
72082
72286
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
72083
72287
|
jiraProjectId: Scalars['ID']['input'];
|
|
72084
72288
|
requestTypeId: Scalars['String']['input'];
|
|
72085
72289
|
};
|
|
72290
|
+
export declare type VirtualAgentQueryApiVirtualAgentAvailabilityArgs = {
|
|
72291
|
+
containerId: Scalars['ID']['input'];
|
|
72292
|
+
};
|
|
72086
72293
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
72087
72294
|
cloudId: Scalars['ID']['input'];
|
|
72088
72295
|
};
|