@forge/cli-shared 9.4.0-next.11 → 9.4.0-next.12
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 +8 -0
- package/out/graphql/graphql-types.d.ts +418 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +80 -50
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -2
|
@@ -2732,7 +2732,8 @@ export declare enum AvpPermissionsCapabilityFailureType {
|
|
|
2732
2732
|
None = "NONE",
|
|
2733
2733
|
PerimeterDenied = "PERIMETER_DENIED",
|
|
2734
2734
|
PermissionDenied = "PERMISSION_DENIED",
|
|
2735
|
-
ProductRequired = "PRODUCT_REQUIRED"
|
|
2735
|
+
ProductRequired = "PRODUCT_REQUIRED",
|
|
2736
|
+
UserRequired = "USER_REQUIRED"
|
|
2736
2737
|
}
|
|
2737
2738
|
export type AvpPermissionsCapabilityResult = {
|
|
2738
2739
|
__typename?: 'AVPPermissionsCapabilityResult';
|
|
@@ -12299,16 +12300,26 @@ export type Artifact = {
|
|
|
12299
12300
|
id: Scalars['ID']['output'];
|
|
12300
12301
|
name: Scalars['String']['output'];
|
|
12301
12302
|
type: Scalars['String']['output'];
|
|
12302
|
-
url
|
|
12303
|
+
url: Scalars['URL']['output'];
|
|
12304
|
+
};
|
|
12305
|
+
export declare enum ArtifactChecksumType {
|
|
12306
|
+
Sha256 = "SHA256"
|
|
12307
|
+
}
|
|
12308
|
+
export type ArtifactCreateContentInput = {
|
|
12309
|
+
checksum: Scalars['String']['input'];
|
|
12310
|
+
checksumType: ArtifactChecksumType;
|
|
12311
|
+
contextId: Scalars['ID']['input'];
|
|
12312
|
+
length: Scalars['Int']['input'];
|
|
12303
12313
|
};
|
|
12304
|
-
export type ArtifactCreateContentPayload = {
|
|
12314
|
+
export type ArtifactCreateContentPayload = Payload & {
|
|
12305
12315
|
__typename?: 'ArtifactCreateContentPayload';
|
|
12306
12316
|
errors?: Maybe<Array<MutationError>>;
|
|
12307
|
-
success
|
|
12317
|
+
success: Scalars['Boolean']['output'];
|
|
12308
12318
|
upload?: Maybe<ArtifactUploadTarget>;
|
|
12309
12319
|
};
|
|
12310
12320
|
export type ArtifactCreateInput = {
|
|
12311
12321
|
contentId: Scalars['ID']['input'];
|
|
12322
|
+
contextId: Scalars['ID']['input'];
|
|
12312
12323
|
name: Scalars['String']['input'];
|
|
12313
12324
|
type: Scalars['String']['input'];
|
|
12314
12325
|
};
|
|
@@ -12318,6 +12329,10 @@ export type ArtifactCreatePayload = Payload & {
|
|
|
12318
12329
|
errors?: Maybe<Array<MutationError>>;
|
|
12319
12330
|
success: Scalars['Boolean']['output'];
|
|
12320
12331
|
};
|
|
12332
|
+
export type ArtifactGetInput = {
|
|
12333
|
+
contextId: Scalars['ID']['input'];
|
|
12334
|
+
id: Scalars['ID']['input'];
|
|
12335
|
+
};
|
|
12321
12336
|
export type ArtifactUploadTarget = {
|
|
12322
12337
|
__typename?: 'ArtifactUploadTarget';
|
|
12323
12338
|
contentId: Scalars['ID']['output'];
|
|
@@ -23615,11 +23630,15 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
23615
23630
|
}
|
|
23616
23631
|
export type CommerceExpEntitlementProvisioning = {
|
|
23617
23632
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
23633
|
+
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
23634
|
+
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
23618
23635
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
23619
23636
|
level?: Maybe<CommerceExpEntitlementLevel>;
|
|
23620
23637
|
lifecycleState?: Maybe<Scalars['String']['output']>;
|
|
23621
23638
|
organisation?: Maybe<CommerceExpOrganisation>;
|
|
23622
23639
|
resourceAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
23640
|
+
site?: Maybe<TenantContext>;
|
|
23641
|
+
siteResourceId?: Maybe<Scalars['String']['output']>;
|
|
23623
23642
|
sourceEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
23624
23643
|
status?: Maybe<CommerceExpEntitlementProvisioningStatus>;
|
|
23625
23644
|
suspensionReasons?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -30959,8 +30978,8 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30959
30978
|
};
|
|
30960
30979
|
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
30961
30980
|
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
30981
|
+
action: ConfluenceShareableLinkSpaceStatus;
|
|
30962
30982
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
30963
|
-
status: ConfluenceShareableLinkSpaceStatus;
|
|
30964
30983
|
};
|
|
30965
30984
|
export type ConfluenceAccessLinkSpacesActionPayload = Payload & {
|
|
30966
30985
|
__typename?: 'ConfluenceAccessLinkSpacesActionPayload';
|
|
@@ -45820,6 +45839,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
45820
45839
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
45821
45840
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
45822
45841
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
45842
|
+
prNursingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45823
45843
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
45824
45844
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
45825
45845
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
@@ -45841,6 +45861,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
45841
45861
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
45842
45862
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
45843
45863
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
45864
|
+
prNursingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45844
45865
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
45845
45866
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
45846
45867
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
@@ -53821,6 +53842,7 @@ export type GeneratedPlaybook = {
|
|
|
53821
53842
|
};
|
|
53822
53843
|
export type GeneratedStep = {
|
|
53823
53844
|
__typename?: 'GeneratedStep';
|
|
53845
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
53824
53846
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
53825
53847
|
name: Scalars['String']['output'];
|
|
53826
53848
|
type: JiraPlaybookStepType;
|
|
@@ -59465,6 +59487,8 @@ export type GraphStore = {
|
|
|
59465
59487
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
59466
59488
|
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
59467
59489
|
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
59490
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
59491
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
59468
59492
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59469
59493
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59470
59494
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -61457,6 +61481,22 @@ export type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
61457
61481
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61458
61482
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
61459
61483
|
};
|
|
61484
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
61485
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61486
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61487
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61488
|
+
id: Scalars['ID']['input'];
|
|
61489
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61490
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61491
|
+
};
|
|
61492
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
61493
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61494
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61495
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61496
|
+
id: Scalars['ID']['input'];
|
|
61497
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61498
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61499
|
+
};
|
|
61460
61500
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
61461
61501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61462
61502
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70449,6 +70489,9 @@ export type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortIn
|
|
|
70449
70489
|
export type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
70450
70490
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70451
70491
|
};
|
|
70492
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
70493
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70494
|
+
};
|
|
70452
70495
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
70453
70496
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70454
70497
|
};
|
|
@@ -80725,6 +80768,34 @@ export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge
|
|
|
80725
80768
|
};
|
|
80726
80769
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80727
80770
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
80771
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
80772
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
80773
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
80774
|
+
pageInfo: PageInfo;
|
|
80775
|
+
};
|
|
80776
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
80777
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
80778
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80779
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80780
|
+
id: Scalars['ID']['output'];
|
|
80781
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80782
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
80783
|
+
};
|
|
80784
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
80785
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
80786
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
80787
|
+
pageInfo: PageInfo;
|
|
80788
|
+
};
|
|
80789
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
80790
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
80791
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80792
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80793
|
+
id: Scalars['ID']['output'];
|
|
80794
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80795
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
80796
|
+
};
|
|
80797
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80798
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
80728
80799
|
export type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
80729
80800
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
80730
80801
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -94419,6 +94490,8 @@ export type GraphStoreV2 = {
|
|
|
94419
94490
|
atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
94420
94491
|
atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
94421
94492
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
94493
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
94494
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
94422
94495
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
94423
94496
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
94424
94497
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -96304,6 +96377,20 @@ export type GraphStoreV2AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
96304
96377
|
id: Scalars['ID']['input'];
|
|
96305
96378
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
96306
96379
|
};
|
|
96380
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
96381
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96382
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96383
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96384
|
+
id: Scalars['ID']['input'];
|
|
96385
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96386
|
+
};
|
|
96387
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
96388
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96389
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96390
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96391
|
+
id: Scalars['ID']['input'];
|
|
96392
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96393
|
+
};
|
|
96307
96394
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
96308
96395
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96309
96396
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101864,6 +101951,9 @@ export type GraphStoreV2AtlassianUserHasExternalPositionSortInput = {
|
|
|
101864
101951
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101865
101952
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
101866
101953
|
};
|
|
101954
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
101955
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101956
|
+
};
|
|
101867
101957
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
101868
101958
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
101869
101959
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107893,6 +107983,34 @@ export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseEdge =
|
|
|
107893
107983
|
};
|
|
107894
107984
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
107895
107985
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionUnion = ExternalPosition;
|
|
107986
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
107987
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
107988
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
107989
|
+
pageInfo: PageInfo;
|
|
107990
|
+
};
|
|
107991
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
107992
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
107993
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107994
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107995
|
+
id: Scalars['ID']['output'];
|
|
107996
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107997
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
107998
|
+
};
|
|
107999
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
108000
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
108001
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
108002
|
+
pageInfo: PageInfo;
|
|
108003
|
+
};
|
|
108004
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
108005
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
108006
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108007
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108008
|
+
id: Scalars['ID']['output'];
|
|
108009
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108010
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
108011
|
+
};
|
|
108012
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
108013
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
107896
108014
|
export type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
107897
108015
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection';
|
|
107898
108016
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceEdge>>>;
|
|
@@ -142987,6 +143105,7 @@ export type JiraProjectsSidebarMenu = {
|
|
|
142987
143105
|
__typename?: 'JiraProjectsSidebarMenu';
|
|
142988
143106
|
current?: Maybe<JiraProject>;
|
|
142989
143107
|
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
143108
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142990
143109
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
142991
143110
|
favourites?: Maybe<JiraProjectConnection>;
|
|
142992
143111
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149621,7 +149740,6 @@ export declare enum JiraStartAgentSessionResult {
|
|
|
149621
149740
|
AlreadyStarted = "ALREADY_STARTED",
|
|
149622
149741
|
Failed = "FAILED",
|
|
149623
149742
|
RateLimited = "RATE_LIMITED",
|
|
149624
|
-
Skipped = "SKIPPED",
|
|
149625
149743
|
Started = "STARTED"
|
|
149626
149744
|
}
|
|
149627
149745
|
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
@@ -152201,6 +152319,24 @@ export type JiraVersionDriverEdge = {
|
|
|
152201
152319
|
cursor: Scalars['String']['output'];
|
|
152202
152320
|
node?: Maybe<User>;
|
|
152203
152321
|
};
|
|
152322
|
+
export type JiraVersionDriverOption = {
|
|
152323
|
+
__typename?: 'JiraVersionDriverOption';
|
|
152324
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
152325
|
+
driver?: Maybe<User>;
|
|
152326
|
+
driverAccountId: Scalars['ID']['output'];
|
|
152327
|
+
};
|
|
152328
|
+
export type JiraVersionDriverOptionConnection = {
|
|
152329
|
+
__typename?: 'JiraVersionDriverOptionConnection';
|
|
152330
|
+
edges?: Maybe<Array<Maybe<JiraVersionDriverOptionEdge>>>;
|
|
152331
|
+
hasUnassigned: Scalars['Boolean']['output'];
|
|
152332
|
+
pageInfo: PageInfo;
|
|
152333
|
+
totalCount: Scalars['Int']['output'];
|
|
152334
|
+
};
|
|
152335
|
+
export type JiraVersionDriverOptionEdge = {
|
|
152336
|
+
__typename?: 'JiraVersionDriverOptionEdge';
|
|
152337
|
+
cursor: Scalars['String']['output'];
|
|
152338
|
+
node: JiraVersionDriverOption;
|
|
152339
|
+
};
|
|
152204
152340
|
export type JiraVersionDriverResult = {
|
|
152205
152341
|
__typename?: 'JiraVersionDriverResult';
|
|
152206
152342
|
driver?: Maybe<User>;
|
|
@@ -157124,6 +157260,21 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
157124
157260
|
errors?: Maybe<Array<MutationError>>;
|
|
157125
157261
|
success: Scalars['Boolean']['output'];
|
|
157126
157262
|
};
|
|
157263
|
+
export type KitsuneCreateFeedbackInput = {
|
|
157264
|
+
content: Scalars['KitsuneADF']['input'];
|
|
157265
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
157266
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
157267
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
157268
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
157269
|
+
spaceAri: Scalars['ID']['input'];
|
|
157270
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
157271
|
+
};
|
|
157272
|
+
export type KitsuneCreateFeedbackPayload = Payload & {
|
|
157273
|
+
__typename?: 'KitsuneCreateFeedbackPayload';
|
|
157274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157275
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157276
|
+
success: Scalars['Boolean']['output'];
|
|
157277
|
+
};
|
|
157127
157278
|
export type KitsuneCreateFieldInput = {
|
|
157128
157279
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
157129
157280
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -157178,6 +157329,17 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
157178
157329
|
snippet?: Maybe<KitsuneSnippet>;
|
|
157179
157330
|
success: Scalars['Boolean']['output'];
|
|
157180
157331
|
};
|
|
157332
|
+
export type KitsuneCreateSpaceInput = {
|
|
157333
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157334
|
+
name: Scalars['String']['input'];
|
|
157335
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157336
|
+
};
|
|
157337
|
+
export type KitsuneCreateSpacePayload = Payload & {
|
|
157338
|
+
__typename?: 'KitsuneCreateSpacePayload';
|
|
157339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157340
|
+
space?: Maybe<KitsuneSpace>;
|
|
157341
|
+
success: Scalars['Boolean']['output'];
|
|
157342
|
+
};
|
|
157181
157343
|
export type KitsuneCreateViewInput = {
|
|
157182
157344
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157183
157345
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157465,6 +157627,15 @@ export type KitsuneFilterValueInput = {
|
|
|
157465
157627
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
157466
157628
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157467
157629
|
};
|
|
157630
|
+
export type KitsuneGenerateFeedbackSummaryInput = {
|
|
157631
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157632
|
+
};
|
|
157633
|
+
export type KitsuneGenerateFeedbackSummaryPayload = Payload & {
|
|
157634
|
+
__typename?: 'KitsuneGenerateFeedbackSummaryPayload';
|
|
157635
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157636
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157637
|
+
success: Scalars['Boolean']['output'];
|
|
157638
|
+
};
|
|
157468
157639
|
export type KitsuneGenerateInsightSummaryInput = {
|
|
157469
157640
|
insightAri: Scalars['ID']['input'];
|
|
157470
157641
|
};
|
|
@@ -157686,6 +157857,23 @@ export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
|
157686
157857
|
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157687
157858
|
success: Scalars['Boolean']['output'];
|
|
157688
157859
|
};
|
|
157860
|
+
export type KitsuneRemoveSpacePayload = Payload & {
|
|
157861
|
+
__typename?: 'KitsuneRemoveSpacePayload';
|
|
157862
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157863
|
+
job?: Maybe<KitsuneJob>;
|
|
157864
|
+
success: Scalars['Boolean']['output'];
|
|
157865
|
+
};
|
|
157866
|
+
export type KitsuneResyncFeedbackInput = {
|
|
157867
|
+
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
157868
|
+
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157869
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157870
|
+
};
|
|
157871
|
+
export type KitsuneResyncFeedbackPayload = Payload & {
|
|
157872
|
+
__typename?: 'KitsuneResyncFeedbackPayload';
|
|
157873
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157874
|
+
job?: Maybe<KitsuneJob>;
|
|
157875
|
+
success: Scalars['Boolean']['output'];
|
|
157876
|
+
};
|
|
157689
157877
|
export type KitsuneResyncInsightsInput = {
|
|
157690
157878
|
workspaceAri: Scalars['ID']['input'];
|
|
157691
157879
|
};
|
|
@@ -158102,6 +158290,22 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
158102
158290
|
errors?: Maybe<Array<MutationError>>;
|
|
158103
158291
|
success: Scalars['Boolean']['output'];
|
|
158104
158292
|
};
|
|
158293
|
+
export type KitsuneUpdateFeedbackInput = {
|
|
158294
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158295
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
158296
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
158297
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
158298
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
158299
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158300
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
158301
|
+
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
158302
|
+
};
|
|
158303
|
+
export type KitsuneUpdateFeedbackPayload = Payload & {
|
|
158304
|
+
__typename?: 'KitsuneUpdateFeedbackPayload';
|
|
158305
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158306
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
158307
|
+
success: Scalars['Boolean']['output'];
|
|
158308
|
+
};
|
|
158105
158309
|
export type KitsuneUpdateFieldInput = {
|
|
158106
158310
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158107
158311
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158143,6 +158347,17 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
158143
158347
|
snippet?: Maybe<KitsuneSnippet>;
|
|
158144
158348
|
success: Scalars['Boolean']['output'];
|
|
158145
158349
|
};
|
|
158350
|
+
export type KitsuneUpdateSpaceInput = {
|
|
158351
|
+
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
158352
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158353
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158354
|
+
};
|
|
158355
|
+
export type KitsuneUpdateSpacePayload = Payload & {
|
|
158356
|
+
__typename?: 'KitsuneUpdateSpacePayload';
|
|
158357
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158358
|
+
space?: Maybe<KitsuneSpace>;
|
|
158359
|
+
success: Scalars['Boolean']['output'];
|
|
158360
|
+
};
|
|
158146
158361
|
export type KitsuneUpdateViewInput = {
|
|
158147
158362
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158148
158363
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164461,6 +164676,7 @@ export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
|
164461
164676
|
Bounded = "BOUNDED",
|
|
164462
164677
|
Dark = "DARK",
|
|
164463
164678
|
Default = "DEFAULT",
|
|
164679
|
+
Elevated = "ELEVATED",
|
|
164464
164680
|
Inverse = "INVERSE"
|
|
164465
164681
|
}
|
|
164466
164682
|
export declare enum MarketplaceStoreLayoutSlotVariant {
|
|
@@ -167635,6 +167851,7 @@ export type MercuryCreateRateCardInput = {
|
|
|
167635
167851
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
167636
167852
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
167637
167853
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
167854
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
167638
167855
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
167639
167856
|
};
|
|
167640
167857
|
export type MercuryCreateRateCardPayload = Payload & {
|
|
@@ -169348,7 +169565,6 @@ export type MercuryFundsMutationApi = {
|
|
|
169348
169565
|
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
169349
169566
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
169350
169567
|
updateRateCard?: Maybe<MercuryUpdateRateCardPayload>;
|
|
169351
|
-
updateRateCardConfigurationRatePeriod?: Maybe<MercuryUpdateRateCardConfigurationPayload>;
|
|
169352
169568
|
};
|
|
169353
169569
|
export type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
169354
169570
|
input: MercuryCreateBenefitItemInput;
|
|
@@ -169485,9 +169701,6 @@ export type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
169485
169701
|
export type MercuryFundsMutationApiUpdateRateCardArgs = {
|
|
169486
169702
|
input: MercuryUpdateRateCardInput;
|
|
169487
169703
|
};
|
|
169488
|
-
export type MercuryFundsMutationApiUpdateRateCardConfigurationRatePeriodArgs = {
|
|
169489
|
-
input: MercuryUpdateRateCardConfigurationRatePeriodInput;
|
|
169490
|
-
};
|
|
169491
169704
|
export declare enum MercuryFundsPermission {
|
|
169492
169705
|
EditBaseline = "EDIT_BASELINE",
|
|
169493
169706
|
EditBudget = "EDIT_BUDGET",
|
|
@@ -169516,6 +169729,7 @@ export type MercuryFundsQueryApi = {
|
|
|
169516
169729
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169517
169730
|
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169518
169731
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
169732
|
+
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
169519
169733
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169520
169734
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169521
169735
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
@@ -169533,7 +169747,6 @@ export type MercuryFundsQueryApi = {
|
|
|
169533
169747
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
169534
169748
|
rateCardAttributeTypes?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169535
169749
|
rateCardAttributeTypesByIds?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169536
|
-
rateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
169537
169750
|
rateCardsSearch?: Maybe<MercuryRateCardConnection>;
|
|
169538
169751
|
searchBenefitItemActivityHistory?: Maybe<MercuryBenefitItemActivityHistoryConnection>;
|
|
169539
169752
|
searchCostItemActivityHistory?: Maybe<MercuryCostItemActivityHistoryConnection>;
|
|
@@ -169615,6 +169828,9 @@ export type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
|
169615
169828
|
export type MercuryFundsQueryApiCurrenciesArgs = {
|
|
169616
169829
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169617
169830
|
};
|
|
169831
|
+
export type MercuryFundsQueryApiDefaultRateCardArgs = {
|
|
169832
|
+
cloudId: Scalars['ID']['input'];
|
|
169833
|
+
};
|
|
169618
169834
|
export type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
169619
169835
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169620
169836
|
};
|
|
@@ -169689,9 +169905,6 @@ export type MercuryFundsQueryApiRateCardAttributeTypesByIdsArgs = {
|
|
|
169689
169905
|
cloudId: Scalars['ID']['input'];
|
|
169690
169906
|
ids: Array<Scalars['ID']['input']>;
|
|
169691
169907
|
};
|
|
169692
|
-
export type MercuryFundsQueryApiRateCardConfigurationArgs = {
|
|
169693
|
-
cloudId: Scalars['ID']['input'];
|
|
169694
|
-
};
|
|
169695
169908
|
export type MercuryFundsQueryApiRateCardsSearchArgs = {
|
|
169696
169909
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169697
169910
|
cloudId: Scalars['ID']['input'];
|
|
@@ -172695,11 +172908,14 @@ export declare enum MercuryRankingGroupType {
|
|
|
172695
172908
|
export type MercuryRateCard = {
|
|
172696
172909
|
__typename?: 'MercuryRateCard';
|
|
172697
172910
|
attributeValues?: Maybe<Array<Maybe<MercuryRateCardAttributeValue>>>;
|
|
172698
|
-
|
|
172911
|
+
changes?: Maybe<MercuryRateCardChangeConnection>;
|
|
172699
172912
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
172700
172913
|
id: Scalars['ID']['output'];
|
|
172701
|
-
|
|
172702
|
-
|
|
172914
|
+
};
|
|
172915
|
+
export type MercuryRateCardChangesArgs = {
|
|
172916
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
172917
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172918
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRateCardChangeSort>>>;
|
|
172703
172919
|
};
|
|
172704
172920
|
export type MercuryRateCardAttribute = {
|
|
172705
172921
|
__typename?: 'MercuryRateCardAttribute';
|
|
@@ -172718,17 +172934,43 @@ export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttribute
|
|
|
172718
172934
|
export type MercuryRateCardAttributeValueInput = {
|
|
172719
172935
|
attributeId: Scalars['ID']['input'];
|
|
172720
172936
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
172721
|
-
id: Scalars['ID']['input'];
|
|
172722
172937
|
};
|
|
172723
172938
|
export type MercuryRateCardAttributeValueInterface = {
|
|
172724
172939
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
172725
172940
|
id: Scalars['ID']['output'];
|
|
172726
172941
|
};
|
|
172942
|
+
export type MercuryRateCardChange = {
|
|
172943
|
+
__typename?: 'MercuryRateCardChange';
|
|
172944
|
+
effectiveEndDate?: Maybe<Scalars['Date']['output']>;
|
|
172945
|
+
effectiveStartDate?: Maybe<Scalars['Date']['output']>;
|
|
172946
|
+
id: Scalars['ID']['output'];
|
|
172947
|
+
rate?: Maybe<MercuryMoney>;
|
|
172948
|
+
ratePeriodType?: Maybe<MercuryRatePeriodType>;
|
|
172949
|
+
workingHoursPerWeek?: Maybe<Scalars['Int']['output']>;
|
|
172950
|
+
};
|
|
172951
|
+
export type MercuryRateCardChangeConnection = {
|
|
172952
|
+
__typename?: 'MercuryRateCardChangeConnection';
|
|
172953
|
+
edges?: Maybe<Array<MercuryRateCardChangeEdge>>;
|
|
172954
|
+
pageInfo: PageInfo;
|
|
172955
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
172956
|
+
};
|
|
172957
|
+
export type MercuryRateCardChangeEdge = {
|
|
172958
|
+
__typename?: 'MercuryRateCardChangeEdge';
|
|
172959
|
+
cursor: Scalars['String']['output'];
|
|
172960
|
+
node?: Maybe<MercuryRateCardChange>;
|
|
172961
|
+
};
|
|
172962
|
+
export type MercuryRateCardChangeSort = {
|
|
172963
|
+
field: MercuryRateCardChangeSortField;
|
|
172964
|
+
order: SortOrder;
|
|
172965
|
+
};
|
|
172966
|
+
export declare enum MercuryRateCardChangeSortField {
|
|
172967
|
+
EffectiveStartDate = "EFFECTIVE_START_DATE"
|
|
172968
|
+
}
|
|
172727
172969
|
export type MercuryRateCardConfiguration = {
|
|
172728
172970
|
__typename?: 'MercuryRateCardConfiguration';
|
|
172729
172971
|
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
172730
172972
|
id: Scalars['ID']['output'];
|
|
172731
|
-
ratePeriod?: Maybe<
|
|
172973
|
+
ratePeriod?: Maybe<MercuryRatePeriodType>;
|
|
172732
172974
|
};
|
|
172733
172975
|
export type MercuryRateCardConnection = {
|
|
172734
172976
|
__typename?: 'MercuryRateCardConnection';
|
|
@@ -172747,8 +172989,8 @@ export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttribute
|
|
|
172747
172989
|
id: Scalars['ID']['output'];
|
|
172748
172990
|
organization?: Maybe<MercuryOrganization>;
|
|
172749
172991
|
};
|
|
172750
|
-
export type
|
|
172751
|
-
__typename?: '
|
|
172992
|
+
export type MercuryRatePeriodType = {
|
|
172993
|
+
__typename?: 'MercuryRatePeriodType';
|
|
172752
172994
|
displayName: Scalars['String']['output'];
|
|
172753
172995
|
id: Scalars['ID']['output'];
|
|
172754
172996
|
key: Scalars['String']['output'];
|
|
@@ -174910,16 +175152,13 @@ export type MercuryUpdateRateCardConfigurationPayload = Payload & {
|
|
|
174910
175152
|
success: Scalars['Boolean']['output'];
|
|
174911
175153
|
updatedRateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
174912
175154
|
};
|
|
174913
|
-
export type MercuryUpdateRateCardConfigurationRatePeriodInput = {
|
|
174914
|
-
cloudId: Scalars['ID']['input'];
|
|
174915
|
-
ratePeriodKey: Scalars['String']['input'];
|
|
174916
|
-
};
|
|
174917
175155
|
export type MercuryUpdateRateCardInput = {
|
|
174918
175156
|
cloudId: Scalars['ID']['input'];
|
|
174919
175157
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
174920
175158
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
174921
175159
|
id: Scalars['ID']['input'];
|
|
174922
175160
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
175161
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
174923
175162
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
174924
175163
|
};
|
|
174925
175164
|
export type MercuryUpdateRateCardPayload = Payload & {
|
|
@@ -176920,6 +177159,7 @@ export type Mutation = {
|
|
|
176920
177159
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
176921
177160
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176922
177161
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
177162
|
+
kitsune_createFeedbackV2?: Maybe<KitsuneCreateFeedbackPayload>;
|
|
176923
177163
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176924
177164
|
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176925
177165
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176931,10 +177171,12 @@ export type Mutation = {
|
|
|
176931
177171
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176932
177172
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176933
177173
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
177174
|
+
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
176934
177175
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176935
177176
|
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176936
177177
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176937
177178
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
177179
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneGenerateFeedbackSummaryPayload>;
|
|
176938
177180
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176939
177181
|
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176940
177182
|
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
@@ -176950,6 +177192,7 @@ export type Mutation = {
|
|
|
176950
177192
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176951
177193
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176952
177194
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
177195
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedPayload>;
|
|
176953
177196
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176954
177197
|
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176955
177198
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -176964,9 +177207,11 @@ export type Mutation = {
|
|
|
176964
177207
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176965
177208
|
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176966
177209
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
177210
|
+
kitsune_removeSpaceV2?: Maybe<KitsuneRemoveSpacePayload>;
|
|
176967
177211
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176968
177212
|
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176969
177213
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
177214
|
+
kitsune_resyncFeedbackV2?: Maybe<KitsuneResyncFeedbackPayload>;
|
|
176970
177215
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176971
177216
|
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176972
177217
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
@@ -176976,6 +177221,7 @@ export type Mutation = {
|
|
|
176976
177221
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
176977
177222
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176978
177223
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
177224
|
+
kitsune_updateFeedbackV2?: Maybe<KitsuneUpdateFeedbackPayload>;
|
|
176979
177225
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176980
177226
|
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176981
177227
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176987,6 +177233,7 @@ export type Mutation = {
|
|
|
176987
177233
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176988
177234
|
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176989
177235
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
177236
|
+
kitsune_updateSpaceV2?: Maybe<KitsuneUpdateSpacePayload>;
|
|
176990
177237
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176991
177238
|
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176992
177239
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -177173,6 +177420,7 @@ export type Mutation = {
|
|
|
177173
177420
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
177174
177421
|
radar_createSkill?: Maybe<RadarSkill>;
|
|
177175
177422
|
radar_deleteAiConnectors?: Maybe<RadarMutationResponse>;
|
|
177423
|
+
radar_deleteAllAiConnectors?: Maybe<RadarDeleteAllAiConnectorsResponse>;
|
|
177176
177424
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
177177
177425
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
177178
177426
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -178040,6 +178288,9 @@ export type MutationArchiveSpaceArgs = {
|
|
|
178040
178288
|
export type MutationArtifact_CreateArtifactArgs = {
|
|
178041
178289
|
input: ArtifactCreateInput;
|
|
178042
178290
|
};
|
|
178291
|
+
export type MutationArtifact_CreateContentArgs = {
|
|
178292
|
+
input: ArtifactCreateContentInput;
|
|
178293
|
+
};
|
|
178043
178294
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
178044
178295
|
cloudId: Scalars['ID']['input'];
|
|
178045
178296
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -181959,6 +182210,9 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
181959
182210
|
spaceAri: Scalars['ID']['input'];
|
|
181960
182211
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181961
182212
|
};
|
|
182213
|
+
export type MutationKitsune_CreateFeedbackV2Args = {
|
|
182214
|
+
input: KitsuneCreateFeedbackInput;
|
|
182215
|
+
};
|
|
181962
182216
|
export type MutationKitsune_CreateFieldArgs = {
|
|
181963
182217
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181964
182218
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -182016,6 +182270,9 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
182016
182270
|
name: Scalars['String']['input'];
|
|
182017
182271
|
workspaceAri: Scalars['ID']['input'];
|
|
182018
182272
|
};
|
|
182273
|
+
export type MutationKitsune_CreateSpaceV2Args = {
|
|
182274
|
+
input: KitsuneCreateSpaceInput;
|
|
182275
|
+
};
|
|
182019
182276
|
export type MutationKitsune_CreateViewArgs = {
|
|
182020
182277
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182021
182278
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182036,6 +182293,9 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
182036
182293
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
182037
182294
|
id: Scalars['ID']['input'];
|
|
182038
182295
|
};
|
|
182296
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
182297
|
+
input: KitsuneGenerateFeedbackSummaryInput;
|
|
182298
|
+
};
|
|
182039
182299
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
182040
182300
|
insightAri: Scalars['ID']['input'];
|
|
182041
182301
|
};
|
|
@@ -182089,6 +182349,9 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
182089
182349
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
182090
182350
|
id: Scalars['ID']['input'];
|
|
182091
182351
|
};
|
|
182352
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
182353
|
+
id: Scalars['ID']['input'];
|
|
182354
|
+
};
|
|
182092
182355
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
182093
182356
|
id: Scalars['ID']['input'];
|
|
182094
182357
|
};
|
|
@@ -182134,6 +182397,9 @@ export type MutationKitsune_RemoveSnippetV2Args = {
|
|
|
182134
182397
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
182135
182398
|
id: Scalars['ID']['input'];
|
|
182136
182399
|
};
|
|
182400
|
+
export type MutationKitsune_RemoveSpaceV2Args = {
|
|
182401
|
+
id: Scalars['ID']['input'];
|
|
182402
|
+
};
|
|
182137
182403
|
export type MutationKitsune_RemoveViewArgs = {
|
|
182138
182404
|
viewAri: Scalars['ID']['input'];
|
|
182139
182405
|
};
|
|
@@ -182145,6 +182411,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
182145
182411
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182146
182412
|
workspaceAri: Scalars['ID']['input'];
|
|
182147
182413
|
};
|
|
182414
|
+
export type MutationKitsune_ResyncFeedbackV2Args = {
|
|
182415
|
+
input: KitsuneResyncFeedbackInput;
|
|
182416
|
+
};
|
|
182148
182417
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
182149
182418
|
workspaceAri: Scalars['ID']['input'];
|
|
182150
182419
|
};
|
|
@@ -182185,6 +182454,10 @@ export type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
182185
182454
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
182186
182455
|
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
182187
182456
|
};
|
|
182457
|
+
export type MutationKitsune_UpdateFeedbackV2Args = {
|
|
182458
|
+
id: Scalars['ID']['input'];
|
|
182459
|
+
input: KitsuneUpdateFeedbackInput;
|
|
182460
|
+
};
|
|
182188
182461
|
export type MutationKitsune_UpdateFieldArgs = {
|
|
182189
182462
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182190
182463
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182249,6 +182522,10 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
182249
182522
|
id: Scalars['ID']['input'];
|
|
182250
182523
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
182251
182524
|
};
|
|
182525
|
+
export type MutationKitsune_UpdateSpaceV2Args = {
|
|
182526
|
+
id: Scalars['ID']['input'];
|
|
182527
|
+
input: KitsuneUpdateSpaceInput;
|
|
182528
|
+
};
|
|
182252
182529
|
export type MutationKitsune_UpdateViewArgs = {
|
|
182253
182530
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182254
182531
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182787,6 +183064,9 @@ export type MutationRadar_DeleteAiConnectorsArgs = {
|
|
|
182787
183064
|
cloudId: Scalars['ID']['input'];
|
|
182788
183065
|
input: RadarDeleteAiConnectorsInput;
|
|
182789
183066
|
};
|
|
183067
|
+
export type MutationRadar_DeleteAllAiConnectorsArgs = {
|
|
183068
|
+
cloudId: Scalars['ID']['input'];
|
|
183069
|
+
};
|
|
182790
183070
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
182791
183071
|
cloudId: Scalars['ID']['input'];
|
|
182792
183072
|
input: RadarDeleteConnectorInput;
|
|
@@ -186449,8 +186729,8 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
186449
186729
|
Excellent = "EXCELLENT",
|
|
186450
186730
|
Fair = "FAIR",
|
|
186451
186731
|
Good = "GOOD",
|
|
186452
|
-
|
|
186453
|
-
|
|
186732
|
+
NotReporting = "NOT_REPORTING",
|
|
186733
|
+
Poor = "POOR"
|
|
186454
186734
|
}
|
|
186455
186735
|
export type PsmDeviceIdentity = {
|
|
186456
186736
|
__typename?: 'PsmDeviceIdentity';
|
|
@@ -186482,6 +186762,9 @@ export declare enum PsmDeviceStatus {
|
|
|
186482
186762
|
Orphan = "ORPHAN",
|
|
186483
186763
|
Unmapped = "UNMAPPED"
|
|
186484
186764
|
}
|
|
186765
|
+
export type PsmDevicesFilter = {
|
|
186766
|
+
healthStatuses?: InputMaybe<Array<PsmDeviceHealthStatus>>;
|
|
186767
|
+
};
|
|
186485
186768
|
export type PsmEligibleUser = {
|
|
186486
186769
|
__typename?: 'PsmEligibleUser';
|
|
186487
186770
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -186497,6 +186780,30 @@ export type PsmEligibleUsersListResult = {
|
|
|
186497
186780
|
errors?: Maybe<Array<QueryError>>;
|
|
186498
186781
|
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186499
186782
|
};
|
|
186783
|
+
export type PsmFilter = {
|
|
186784
|
+
__typename?: 'PsmFilter';
|
|
186785
|
+
key: PsmFilterKey;
|
|
186786
|
+
label: Scalars['String']['output'];
|
|
186787
|
+
options: Array<PsmFilterOption>;
|
|
186788
|
+
searchable: Scalars['Boolean']['output'];
|
|
186789
|
+
};
|
|
186790
|
+
export declare enum PsmFilterKey {
|
|
186791
|
+
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
186792
|
+
Sensor = "SENSOR",
|
|
186793
|
+
SensorCategory = "SENSOR_CATEGORY",
|
|
186794
|
+
Status = "STATUS"
|
|
186795
|
+
}
|
|
186796
|
+
export type PsmFilterOption = {
|
|
186797
|
+
__typename?: 'PsmFilterOption';
|
|
186798
|
+
label: Scalars['String']['output'];
|
|
186799
|
+
value: Scalars['String']['output'];
|
|
186800
|
+
};
|
|
186801
|
+
export declare enum PsmFilterScreen {
|
|
186802
|
+
Activities = "ACTIVITIES",
|
|
186803
|
+
DeviceList = "DEVICE_LIST",
|
|
186804
|
+
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
186805
|
+
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
186806
|
+
}
|
|
186500
186807
|
export type PsmFinishOnboardTenantInput = {
|
|
186501
186808
|
spaceId: Scalars['ID']['input'];
|
|
186502
186809
|
};
|
|
@@ -186616,6 +186923,12 @@ export type PsmRemediationTriggerSummary = {
|
|
|
186616
186923
|
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
186617
186924
|
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
186618
186925
|
};
|
|
186926
|
+
export type PsmScreenFilterResult = {
|
|
186927
|
+
__typename?: 'PsmScreenFilterResult';
|
|
186928
|
+
errors?: Maybe<Array<QueryError>>;
|
|
186929
|
+
filters?: Maybe<Array<PsmFilter>>;
|
|
186930
|
+
screen: PsmFilterScreen;
|
|
186931
|
+
};
|
|
186619
186932
|
export type PsmSensorCategoriesInput = {
|
|
186620
186933
|
spaceId: Scalars['ID']['input'];
|
|
186621
186934
|
};
|
|
@@ -186645,6 +186958,7 @@ export type PsmSensorConfigDetails = {
|
|
|
186645
186958
|
name?: Maybe<Scalars['String']['output']>;
|
|
186646
186959
|
remediationDesc?: Maybe<Scalars['String']['output']>;
|
|
186647
186960
|
remediationFrequency?: Maybe<Scalars['String']['output']>;
|
|
186961
|
+
remediationId?: Maybe<Scalars['ID']['output']>;
|
|
186648
186962
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
186649
186963
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
186650
186964
|
triggerCondition?: Maybe<Scalars['String']['output']>;
|
|
@@ -187269,7 +187583,6 @@ export type Query = {
|
|
|
187269
187583
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
187270
187584
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187271
187585
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187272
|
-
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
187273
187586
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
187274
187587
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
187275
187588
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
@@ -188266,6 +188579,8 @@ export type Query = {
|
|
|
188266
188579
|
graphStoreV2_atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
188267
188580
|
graphStoreV2_atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
188268
188581
|
graphStoreV2_atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
188582
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
188583
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
188269
188584
|
graphStoreV2_atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
188270
188585
|
graphStoreV2_atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
188271
188586
|
graphStoreV2_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -189116,6 +189431,8 @@ export type Query = {
|
|
|
189116
189431
|
graphStore_atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
189117
189432
|
graphStore_atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
189118
189433
|
graphStore_atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
189434
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
189435
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
189119
189436
|
graphStore_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189120
189437
|
graphStore_atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189121
189438
|
graphStore_atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -190367,6 +190684,7 @@ export type Query = {
|
|
|
190367
190684
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
190368
190685
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
190369
190686
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
190687
|
+
jira_releaseDriversForProject?: Maybe<JiraVersionDriverOptionConnection>;
|
|
190370
190688
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
190371
190689
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
190372
190690
|
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
@@ -190673,6 +190991,7 @@ export type Query = {
|
|
|
190673
190991
|
psm_device?: Maybe<PsmDevice>;
|
|
190674
190992
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190675
190993
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
190994
|
+
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
190676
190995
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
190677
190996
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
190678
190997
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -191906,9 +192225,6 @@ export type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
|
191906
192225
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191907
192226
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
191908
192227
|
};
|
|
191909
|
-
export type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
191910
|
-
projectAri: Scalars['ID']['input'];
|
|
191911
|
-
};
|
|
191912
192228
|
export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
191913
192229
|
cloudId: Scalars['ID']['input'];
|
|
191914
192230
|
projectKey: Scalars['String']['input'];
|
|
@@ -192260,7 +192576,7 @@ export type QueryAquaOutgoingEmailLogsArgs = {
|
|
|
192260
192576
|
cloudId: Scalars['ID']['input'];
|
|
192261
192577
|
};
|
|
192262
192578
|
export type QueryArtifact_GetArtifactArgs = {
|
|
192263
|
-
|
|
192579
|
+
input: ArtifactGetInput;
|
|
192264
192580
|
};
|
|
192265
192581
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
192266
192582
|
cloudId: Scalars['ID']['input'];
|
|
@@ -196889,6 +197205,20 @@ export type QueryGraphStoreV2_AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
196889
197205
|
id: Scalars['ID']['input'];
|
|
196890
197206
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
196891
197207
|
};
|
|
197208
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
197209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197210
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197211
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197212
|
+
id: Scalars['ID']['input'];
|
|
197213
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197214
|
+
};
|
|
197215
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
197216
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197217
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197218
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197219
|
+
id: Scalars['ID']['input'];
|
|
197220
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197221
|
+
};
|
|
196892
197222
|
export type QueryGraphStoreV2_AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
196893
197223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196894
197224
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -202969,6 +203299,22 @@ export type QueryGraphStore_AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
202969
203299
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
202970
203300
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
202971
203301
|
};
|
|
203302
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
203303
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203304
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203305
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203306
|
+
id: Scalars['ID']['input'];
|
|
203307
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203308
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203309
|
+
};
|
|
203310
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
203311
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203312
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203313
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203314
|
+
id: Scalars['ID']['input'];
|
|
203315
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203316
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203317
|
+
};
|
|
202972
203318
|
export type QueryGraphStore_AtlassianUserInvitedToLoomMeetingArgs = {
|
|
202973
203319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202974
203320
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212195,6 +212541,11 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
212195
212541
|
cloudId: Scalars['ID']['input'];
|
|
212196
212542
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
212197
212543
|
};
|
|
212544
|
+
export type QueryJira_ReleaseDriversForProjectArgs = {
|
|
212545
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212547
|
+
projectId: Scalars['ID']['input'];
|
|
212548
|
+
};
|
|
212198
212549
|
export type QueryJira_RovoEnablementStatusArgs = {
|
|
212199
212550
|
cloudId: Scalars['ID']['input'];
|
|
212200
212551
|
};
|
|
@@ -213364,6 +213715,7 @@ export type QueryPsm_DeviceArgs = {
|
|
|
213364
213715
|
export type QueryPsm_DevicesArgs = {
|
|
213365
213716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213366
213717
|
cloudId: Scalars['ID']['input'];
|
|
213718
|
+
filter?: InputMaybe<PsmDevicesFilter>;
|
|
213367
213719
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213368
213720
|
spaceId: Scalars['ID']['input'];
|
|
213369
213721
|
};
|
|
@@ -213371,6 +213723,11 @@ export type QueryPsm_EligibleUsersListArgs = {
|
|
|
213371
213723
|
cloudId: Scalars['ID']['input'];
|
|
213372
213724
|
input: PsmEligibleUsersListInput;
|
|
213373
213725
|
};
|
|
213726
|
+
export type QueryPsm_FiltersArgs = {
|
|
213727
|
+
cloudId: Scalars['ID']['input'];
|
|
213728
|
+
screen: PsmFilterScreen;
|
|
213729
|
+
spaceId: Scalars['ID']['input'];
|
|
213730
|
+
};
|
|
213374
213731
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
213375
213732
|
cloudId: Scalars['ID']['input'];
|
|
213376
213733
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -214822,6 +215179,11 @@ export type RadarDateFieldValue = {
|
|
|
214822
215179
|
export type RadarDeleteAiConnectorsInput = {
|
|
214823
215180
|
ids: Array<Scalars['ID']['input']>;
|
|
214824
215181
|
};
|
|
215182
|
+
export type RadarDeleteAllAiConnectorsResponse = {
|
|
215183
|
+
__typename?: 'RadarDeleteAllAiConnectorsResponse';
|
|
215184
|
+
deletedConnectorCount: Scalars['Int']['output'];
|
|
215185
|
+
deletedConnectorIds: Array<Scalars['ID']['output']>;
|
|
215186
|
+
};
|
|
214825
215187
|
export type RadarDeleteConnectorInput = {
|
|
214826
215188
|
connectorId: Scalars['ID']['input'];
|
|
214827
215189
|
};
|
|
@@ -232874,6 +233236,26 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
232874
233236
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
232875
233237
|
id: Scalars['ID']['output'];
|
|
232876
233238
|
};
|
|
233239
|
+
export type TrelloAgentMessage = {
|
|
233240
|
+
__typename?: 'TrelloAgentMessage';
|
|
233241
|
+
content: Scalars['String']['output'];
|
|
233242
|
+
id: Scalars['ID']['output'];
|
|
233243
|
+
role: TrelloAgentMessageRole;
|
|
233244
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
233245
|
+
};
|
|
233246
|
+
export type TrelloAgentMessageEdgeUpdated = {
|
|
233247
|
+
__typename?: 'TrelloAgentMessageEdgeUpdated';
|
|
233248
|
+
node: TrelloAgentMessage;
|
|
233249
|
+
};
|
|
233250
|
+
export declare enum TrelloAgentMessageRole {
|
|
233251
|
+
Agent = "AGENT",
|
|
233252
|
+
Unspecified = "UNSPECIFIED",
|
|
233253
|
+
User = "USER"
|
|
233254
|
+
}
|
|
233255
|
+
export type TrelloAgentMessageUpdatedConnection = {
|
|
233256
|
+
__typename?: 'TrelloAgentMessageUpdatedConnection';
|
|
233257
|
+
edges?: Maybe<Array<TrelloAgentMessageEdgeUpdated>>;
|
|
233258
|
+
};
|
|
232877
233259
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
232878
233260
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
232879
233261
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -232907,12 +233289,13 @@ export declare enum TrelloAgentTaskState {
|
|
|
232907
233289
|
}
|
|
232908
233290
|
export type TrelloAgentTaskStatus = {
|
|
232909
233291
|
__typename?: 'TrelloAgentTaskStatus';
|
|
232910
|
-
message?: Maybe<
|
|
233292
|
+
message?: Maybe<TrelloAgentMessage>;
|
|
232911
233293
|
state: TrelloAgentTaskState;
|
|
232912
233294
|
timestamp: Scalars['DateTime']['output'];
|
|
232913
233295
|
};
|
|
232914
233296
|
export type TrelloAgentTaskUpdated = {
|
|
232915
233297
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
233298
|
+
history?: Maybe<TrelloAgentMessageUpdatedConnection>;
|
|
232916
233299
|
id: Scalars['ID']['output'];
|
|
232917
233300
|
key?: Maybe<Scalars['String']['output']>;
|
|
232918
233301
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -235882,6 +236265,7 @@ export type TrelloInitializeVoiceCaptureSessionInput = {
|
|
|
235882
236265
|
export type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
235883
236266
|
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
235884
236267
|
errors?: Maybe<Array<MutationError>>;
|
|
236268
|
+
maximumCardLimit?: Maybe<Scalars['Int']['output']>;
|
|
235885
236269
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
235886
236270
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
235887
236271
|
success: Scalars['Boolean']['output'];
|
|
@@ -239787,6 +240171,7 @@ export type TrelloWorkspace = Node & {
|
|
|
239787
240171
|
description?: Maybe<Scalars['String']['output']>;
|
|
239788
240172
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
239789
240173
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
240174
|
+
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
239790
240175
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
239791
240176
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239792
240177
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|