@forge/cli-shared 8.2.0-next.12 → 8.2.0-next.14
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 +13 -0
- package/out/graphql/graphql-types.d.ts +438 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +86 -25
- package/out/ui/text.d.ts +32 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +34 -2
- package/package.json +2 -2
|
@@ -4570,6 +4570,8 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
4570
4570
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
4571
4571
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
4572
4572
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4573
|
+
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
4574
|
+
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
4573
4575
|
offering?: Maybe<CcpOffering>;
|
|
4574
4576
|
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
4575
4577
|
order?: Maybe<CcpOrder>;
|
|
@@ -4599,6 +4601,12 @@ export declare type CcpEntitlementInvoiceRequestsArgs = {
|
|
|
4599
4601
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
4600
4602
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
4601
4603
|
};
|
|
4604
|
+
export declare type CcpEntitlementMeteredChargeElementUsageAggregatedArgs = {
|
|
4605
|
+
input: CcpMeteredChargeElementAggregatedInput;
|
|
4606
|
+
};
|
|
4607
|
+
export declare type CcpEntitlementMeteredChargeElementUsageLatestArgs = {
|
|
4608
|
+
input: CcpMeteredChargeElementLatestUsageInput;
|
|
4609
|
+
};
|
|
4602
4610
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
4603
4611
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
4604
4612
|
applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
|
|
@@ -4778,6 +4786,25 @@ export declare type CcpMapEntry = {
|
|
|
4778
4786
|
key?: Maybe<Scalars['String']['output']>;
|
|
4779
4787
|
value?: Maybe<Scalars['String']['output']>;
|
|
4780
4788
|
};
|
|
4789
|
+
export declare type CcpMeteredChargeElementAggregatedInput = {
|
|
4790
|
+
chargeElementName: Scalars['String']['input'];
|
|
4791
|
+
end: Scalars['Float']['input'];
|
|
4792
|
+
groupByDimensions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4793
|
+
page: Scalars['Int']['input'];
|
|
4794
|
+
pageSize: Scalars['Int']['input'];
|
|
4795
|
+
resolution: CcpUsageQueryResolution;
|
|
4796
|
+
start: Scalars['Float']['input'];
|
|
4797
|
+
statistics: CcpUsageQueryStatistics;
|
|
4798
|
+
};
|
|
4799
|
+
export declare type CcpMeteredChargeElementLatestUsageInput = {
|
|
4800
|
+
chargeElementName: Scalars['String']['input'];
|
|
4801
|
+
chargeElementType: CcpMeteredChargeElementType;
|
|
4802
|
+
groupByDimensions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4803
|
+
};
|
|
4804
|
+
export declare enum CcpMeteredChargeElementType {
|
|
4805
|
+
Counter = "COUNTER",
|
|
4806
|
+
Gauge = "GAUGE"
|
|
4807
|
+
}
|
|
4781
4808
|
export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExperienceCapability & {
|
|
4782
4809
|
__typename?: 'CcpMultipleProductUpgradesExperienceCapability';
|
|
4783
4810
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -5990,6 +6017,48 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
5990
6017
|
BillingPlan = "BILLING_PLAN",
|
|
5991
6018
|
TrialPlan = "TRIAL_PLAN"
|
|
5992
6019
|
}
|
|
6020
|
+
export declare type CcpUsageQueryBucket = {
|
|
6021
|
+
__typename?: 'CcpUsageQueryBucket';
|
|
6022
|
+
end?: Maybe<Scalars['Float']['output']>;
|
|
6023
|
+
groups?: Maybe<Array<Maybe<CcpUsageQueryGroup>>>;
|
|
6024
|
+
start?: Maybe<Scalars['Float']['output']>;
|
|
6025
|
+
};
|
|
6026
|
+
export declare type CcpUsageQueryDimension = {
|
|
6027
|
+
__typename?: 'CcpUsageQueryDimension';
|
|
6028
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
6029
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
6030
|
+
};
|
|
6031
|
+
export declare type CcpUsageQueryGroup = {
|
|
6032
|
+
__typename?: 'CcpUsageQueryGroup';
|
|
6033
|
+
group?: Maybe<Array<Maybe<CcpUsageQueryDimension>>>;
|
|
6034
|
+
resolution?: Maybe<CcpUsageQueryResolution>;
|
|
6035
|
+
statistics?: Maybe<Array<Maybe<CcpUsageQueryStatistic>>>;
|
|
6036
|
+
};
|
|
6037
|
+
export declare type CcpUsageQueryMetadata = {
|
|
6038
|
+
__typename?: 'CcpUsageQueryMetadata';
|
|
6039
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
6040
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
6041
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
6042
|
+
};
|
|
6043
|
+
export declare enum CcpUsageQueryResolution {
|
|
6044
|
+
OneDay = "ONE_DAY",
|
|
6045
|
+
OneHour = "ONE_HOUR",
|
|
6046
|
+
OneMonth = "ONE_MONTH"
|
|
6047
|
+
}
|
|
6048
|
+
export declare type CcpUsageQueryResult = {
|
|
6049
|
+
__typename?: 'CcpUsageQueryResult';
|
|
6050
|
+
metadata?: Maybe<CcpUsageQueryMetadata>;
|
|
6051
|
+
results?: Maybe<Array<Maybe<CcpUsageQueryBucket>>>;
|
|
6052
|
+
};
|
|
6053
|
+
export declare type CcpUsageQueryStatistic = {
|
|
6054
|
+
__typename?: 'CcpUsageQueryStatistic';
|
|
6055
|
+
type?: Maybe<CcpUsageQueryStatistics>;
|
|
6056
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
6057
|
+
};
|
|
6058
|
+
export declare enum CcpUsageQueryStatistics {
|
|
6059
|
+
Latest = "LATEST",
|
|
6060
|
+
Sum = "SUM"
|
|
6061
|
+
}
|
|
5993
6062
|
export declare type CcpUsageUpdateCadence = {
|
|
5994
6063
|
__typename?: 'CcpUsageUpdateCadence';
|
|
5995
6064
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9286,6 +9355,7 @@ export declare type CompassGlobalPermissions = {
|
|
|
9286
9355
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
9287
9356
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9288
9357
|
editCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
9358
|
+
viewIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
9289
9359
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
9290
9360
|
};
|
|
9291
9361
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -12817,16 +12887,26 @@ export declare type ConfluenceInlineCommentStep = {
|
|
|
12817
12887
|
from?: Maybe<Scalars['Int']['output']>;
|
|
12818
12888
|
mark?: Maybe<ConfluenceInlineCommentStepMark>;
|
|
12819
12889
|
pos?: Maybe<Scalars['Int']['output']>;
|
|
12890
|
+
stepType?: Maybe<ConfluenceInlineCommentStepType>;
|
|
12820
12891
|
to?: Maybe<Scalars['Int']['output']>;
|
|
12821
12892
|
};
|
|
12822
12893
|
export declare type ConfluenceInlineCommentStepMark = {
|
|
12823
12894
|
__typename?: 'ConfluenceInlineCommentStepMark';
|
|
12824
12895
|
attrs?: Maybe<ConfluenceInlineCommentStepMarkAttrs>;
|
|
12896
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12825
12897
|
};
|
|
12826
12898
|
export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
12827
12899
|
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
12828
12900
|
annotationType?: Maybe<Scalars['String']['output']>;
|
|
12901
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12829
12902
|
};
|
|
12903
|
+
export declare enum ConfluenceInlineCommentStepType {
|
|
12904
|
+
AddMark = "ADD_MARK",
|
|
12905
|
+
AddNodeMark = "ADD_NODE_MARK",
|
|
12906
|
+
RemoveMark = "REMOVE_MARK",
|
|
12907
|
+
RemoveNodeMark = "REMOVE_NODE_MARK",
|
|
12908
|
+
SetAttrs = "SET_ATTRS"
|
|
12909
|
+
}
|
|
12830
12910
|
export declare type ConfluenceInlineCommentUpdated = {
|
|
12831
12911
|
__typename?: 'ConfluenceInlineCommentUpdated';
|
|
12832
12912
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -17404,6 +17484,10 @@ export declare type CsmAiHub = {
|
|
|
17404
17484
|
export declare type CsmAiHubActionsArgs = {
|
|
17405
17485
|
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17406
17486
|
};
|
|
17487
|
+
export declare type CsmAiHubCoachingContentsArgs = {
|
|
17488
|
+
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17489
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17490
|
+
};
|
|
17407
17491
|
export declare type CsmAiHubWidgetsArgs = {
|
|
17408
17492
|
type?: InputMaybe<CsmAiWidgetType>;
|
|
17409
17493
|
};
|
|
@@ -19838,6 +19922,91 @@ export declare enum DevAiRovoAgentTemplateFilter {
|
|
|
19838
19922
|
Include = "INCLUDE",
|
|
19839
19923
|
Only = "ONLY"
|
|
19840
19924
|
}
|
|
19925
|
+
export declare type DevAiRovoDevCreateSessionInput = {
|
|
19926
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
19927
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
19928
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
19929
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
19930
|
+
workspaceAri: Scalars['ID']['input'];
|
|
19931
|
+
};
|
|
19932
|
+
export declare type DevAiRovoDevCreateSessionOptionsInput = {
|
|
19933
|
+
isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19934
|
+
raisePullRequestOptions?: InputMaybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19935
|
+
useDeepPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19936
|
+
};
|
|
19937
|
+
export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
19938
|
+
__typename?: 'DevAiRovoDevCreateSessionPayload';
|
|
19939
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19940
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
19941
|
+
success: Scalars['Boolean']['output'];
|
|
19942
|
+
};
|
|
19943
|
+
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
19944
|
+
Always = "ALWAYS",
|
|
19945
|
+
Draft = "DRAFT",
|
|
19946
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
19947
|
+
Never = "NEVER",
|
|
19948
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
19949
|
+
}
|
|
19950
|
+
export declare type DevAiRovoDevRepository = {
|
|
19951
|
+
__typename?: 'DevAiRovoDevRepository';
|
|
19952
|
+
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
19953
|
+
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
19954
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19955
|
+
};
|
|
19956
|
+
export declare type DevAiRovoDevRepositoryInput = {
|
|
19957
|
+
sourceBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19958
|
+
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19959
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
19960
|
+
};
|
|
19961
|
+
export declare type DevAiRovoDevSession = {
|
|
19962
|
+
__typename?: 'DevAiRovoDevSession';
|
|
19963
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
19964
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19965
|
+
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
19966
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19967
|
+
id: Scalars['ID']['output'];
|
|
19968
|
+
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
19969
|
+
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
19970
|
+
repository?: Maybe<DevAiRovoDevRepository>;
|
|
19971
|
+
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
19972
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19973
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
19974
|
+
};
|
|
19975
|
+
export declare type DevAiRovoDevSessionConnection = {
|
|
19976
|
+
__typename?: 'DevAiRovoDevSessionConnection';
|
|
19977
|
+
edges?: Maybe<Array<Maybe<DevAiRovoDevSessionEdge>>>;
|
|
19978
|
+
nodes?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
19979
|
+
pageInfo?: Maybe<PageInfo>;
|
|
19980
|
+
};
|
|
19981
|
+
export declare type DevAiRovoDevSessionEdge = {
|
|
19982
|
+
__typename?: 'DevAiRovoDevSessionEdge';
|
|
19983
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19984
|
+
node?: Maybe<DevAiRovoDevSession>;
|
|
19985
|
+
};
|
|
19986
|
+
export declare type DevAiRovoDevSessionLinkInput = {
|
|
19987
|
+
ari: Scalars['String']['input'];
|
|
19988
|
+
rel: DevAiRovoDevSessionLinkRel;
|
|
19989
|
+
};
|
|
19990
|
+
export declare enum DevAiRovoDevSessionLinkRel {
|
|
19991
|
+
Container = "CONTAINER",
|
|
19992
|
+
Site = "SITE",
|
|
19993
|
+
Target = "TARGET"
|
|
19994
|
+
}
|
|
19995
|
+
export declare type DevAiRovoDevSessionOptions = {
|
|
19996
|
+
__typename?: 'DevAiRovoDevSessionOptions';
|
|
19997
|
+
isAutonomous?: Maybe<Scalars['Boolean']['output']>;
|
|
19998
|
+
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
19999
|
+
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
20000
|
+
};
|
|
20001
|
+
export declare enum DevAiRovoDevSessionStatus {
|
|
20002
|
+
Archived = "ARCHIVED",
|
|
20003
|
+
Failed = "FAILED",
|
|
20004
|
+
Initialising = "INITIALISING",
|
|
20005
|
+
InProgress = "IN_PROGRESS",
|
|
20006
|
+
Pending = "PENDING",
|
|
20007
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
20008
|
+
WaitingForUser = "WAITING_FOR_USER"
|
|
20009
|
+
}
|
|
19841
20010
|
export declare type DevAiRunAutofixScanInput = {
|
|
19842
20011
|
repoUrl: Scalars['URL']['input'];
|
|
19843
20012
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46261,7 +46430,7 @@ export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
|
46261
46430
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46262
46431
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
46263
46432
|
};
|
|
46264
|
-
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46433
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46265
46434
|
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
46266
46435
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
46267
46436
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
@@ -46289,7 +46458,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
46289
46458
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46290
46459
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
46291
46460
|
};
|
|
46292
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46461
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46293
46462
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46294
46463
|
export declare type GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
46295
46464
|
__typename?: 'GraphStoreSimplifiedUserAuthoritativelyLinkedThirdPartyUserConnection';
|
|
@@ -47993,7 +48162,7 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47993
48162
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47994
48163
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
47995
48164
|
};
|
|
47996
|
-
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48165
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47997
48166
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47998
48167
|
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47999
48168
|
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
@@ -53513,7 +53682,8 @@ export declare type JiraAccessAtlassianIntelligenceFeature = {
|
|
|
53513
53682
|
export declare enum JiraActionType {
|
|
53514
53683
|
CreateCompanyManagedProject = "CREATE_COMPANY_MANAGED_PROJECT",
|
|
53515
53684
|
CreateProject = "CREATE_PROJECT",
|
|
53516
|
-
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
53685
|
+
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT",
|
|
53686
|
+
ViewProjectCreationEntry = "VIEW_PROJECT_CREATION_ENTRY"
|
|
53517
53687
|
}
|
|
53518
53688
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
53519
53689
|
export declare type JiraActivityConfiguration = {
|
|
@@ -55157,6 +55327,19 @@ export declare type JiraCalendarVersionsInput = {
|
|
|
55157
55327
|
includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55158
55328
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
55159
55329
|
};
|
|
55330
|
+
export declare type JiraCalendarView = {
|
|
55331
|
+
__typename?: 'JiraCalendarView';
|
|
55332
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
55333
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
55334
|
+
id: Scalars['ID']['output'];
|
|
55335
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
55336
|
+
};
|
|
55337
|
+
export declare type JiraCalendarViewFilterConfigArgs = {
|
|
55338
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
55339
|
+
};
|
|
55340
|
+
export declare type JiraCalendarViewIsViewConfigModifiedArgs = {
|
|
55341
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
55342
|
+
};
|
|
55160
55343
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
55161
55344
|
date?: InputMaybe<Scalars['DateTime']['input']>;
|
|
55162
55345
|
endDateField?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55165,6 +55348,9 @@ export declare type JiraCalendarViewConfigurationInput = {
|
|
|
55165
55348
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
55166
55349
|
weekStart?: InputMaybe<JiraCalendarWeekStart>;
|
|
55167
55350
|
};
|
|
55351
|
+
export declare type JiraCalendarViewSettings = {
|
|
55352
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
55353
|
+
};
|
|
55168
55354
|
export declare enum JiraCalendarWeekStart {
|
|
55169
55355
|
Monday = "MONDAY",
|
|
55170
55356
|
Saturday = "SATURDAY",
|
|
@@ -57065,6 +57251,17 @@ export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
|
57065
57251
|
errors?: Maybe<Array<MutationError>>;
|
|
57066
57252
|
success: Scalars['Boolean']['output'];
|
|
57067
57253
|
};
|
|
57254
|
+
export declare type JiraDeleteIssueTypeInput = {
|
|
57255
|
+
cloudId: Scalars['ID']['input'];
|
|
57256
|
+
issueTypeId: Scalars['ID']['input'];
|
|
57257
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57258
|
+
};
|
|
57259
|
+
export declare type JiraDeleteIssueTypePayload = Payload & {
|
|
57260
|
+
__typename?: 'JiraDeleteIssueTypePayload';
|
|
57261
|
+
deletedIssueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
57262
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57263
|
+
success: Scalars['Boolean']['output'];
|
|
57264
|
+
};
|
|
57068
57265
|
export declare type JiraDeleteJourneyItemInput = {
|
|
57069
57266
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
57070
57267
|
itemId: Scalars['ID']['input'];
|
|
@@ -57494,6 +57691,9 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
57494
57691
|
errors?: Maybe<Array<MutationError>>;
|
|
57495
57692
|
success: Scalars['Boolean']['output'];
|
|
57496
57693
|
};
|
|
57694
|
+
export declare type JiraDiscardUserViewConfigInput = {
|
|
57695
|
+
viewId: Scalars['ID']['input'];
|
|
57696
|
+
};
|
|
57497
57697
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
57498
57698
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57499
57699
|
};
|
|
@@ -58858,9 +59058,12 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
58858
59058
|
};
|
|
58859
59059
|
export declare type JiraGroup = Node & {
|
|
58860
59060
|
__typename?: 'JiraGroup';
|
|
59061
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
58861
59062
|
groupId: Scalars['String']['output'];
|
|
58862
59063
|
id: Scalars['ID']['output'];
|
|
59064
|
+
managedBy?: Maybe<JiraGroupManagedBy>;
|
|
58863
59065
|
name: Scalars['String']['output'];
|
|
59066
|
+
usageType?: Maybe<JiraGroupUsageType>;
|
|
58864
59067
|
};
|
|
58865
59068
|
export declare type JiraGroupByDropdownFilter = {
|
|
58866
59069
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58886,6 +59089,16 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
58886
59089
|
export declare type JiraGroupInput = {
|
|
58887
59090
|
groupName: Scalars['ID']['input'];
|
|
58888
59091
|
};
|
|
59092
|
+
export declare enum JiraGroupManagedBy {
|
|
59093
|
+
Admins = "ADMINS",
|
|
59094
|
+
External = "EXTERNAL",
|
|
59095
|
+
Open = "OPEN",
|
|
59096
|
+
TeamMembers = "TEAM_MEMBERS"
|
|
59097
|
+
}
|
|
59098
|
+
export declare enum JiraGroupUsageType {
|
|
59099
|
+
TeamCollaboration = "TEAM_COLLABORATION",
|
|
59100
|
+
UserbaseGroup = "USERBASE_GROUP"
|
|
59101
|
+
}
|
|
58889
59102
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58890
59103
|
__typename?: 'JiraGroupedListView';
|
|
58891
59104
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59079,6 +59292,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
59079
59292
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
59080
59293
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
59081
59294
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
59295
|
+
linkedBranches?: Maybe<JiraIssueBranches>;
|
|
59082
59296
|
linkedCommits?: Maybe<JiraIssueCommits>;
|
|
59083
59297
|
linkedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
59084
59298
|
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59267,6 +59481,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
59267
59481
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59268
59482
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59269
59483
|
};
|
|
59484
|
+
export declare type JiraIssueLinkedBranchesArgs = {
|
|
59485
|
+
input?: InputMaybe<JiraIssueBranchesInput>;
|
|
59486
|
+
};
|
|
59270
59487
|
export declare type JiraIssueLinkedCommitsArgs = {
|
|
59271
59488
|
input?: InputMaybe<JiraIssueCommitsInput>;
|
|
59272
59489
|
};
|
|
@@ -59339,6 +59556,9 @@ export declare type JiraIssueBranches = {
|
|
|
59339
59556
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
59340
59557
|
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
59341
59558
|
};
|
|
59559
|
+
export declare type JiraIssueBranchesInput = {
|
|
59560
|
+
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59561
|
+
};
|
|
59342
59562
|
export declare type JiraIssueBuildDevSummary = {
|
|
59343
59563
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
59344
59564
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -60794,6 +61014,9 @@ export declare type JiraIssueTypeConnection = {
|
|
|
60794
61014
|
export declare type JiraIssueTypeEdge = {
|
|
60795
61015
|
__typename?: 'JiraIssueTypeEdge';
|
|
60796
61016
|
cursor: Scalars['String']['output'];
|
|
61017
|
+
isAssigneePresentInIssueCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
61018
|
+
isDueDatePresentInIssueCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
61019
|
+
isDueDateRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
60797
61020
|
node?: Maybe<JiraIssueType>;
|
|
60798
61021
|
};
|
|
60799
61022
|
export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -62608,6 +62831,7 @@ export declare type JiraMutationCreateBoardArgs = {
|
|
|
62608
62831
|
input: JiraCreateBoardInput;
|
|
62609
62832
|
};
|
|
62610
62833
|
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
62834
|
+
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
62611
62835
|
configuration: JiraCalendarViewConfigurationInput;
|
|
62612
62836
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
62613
62837
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -65437,6 +65661,7 @@ export declare type JiraPublishIssueSearchConfigPayload = Payload & {
|
|
|
65437
65661
|
__typename?: 'JiraPublishIssueSearchConfigPayload';
|
|
65438
65662
|
errors?: Maybe<Array<MutationError>>;
|
|
65439
65663
|
success: Scalars['Boolean']['output'];
|
|
65664
|
+
view?: Maybe<JiraView>;
|
|
65440
65665
|
};
|
|
65441
65666
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
65442
65667
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70406,6 +70631,12 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
70406
70631
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
70407
70632
|
entityId: Scalars['ID']['input'];
|
|
70408
70633
|
};
|
|
70634
|
+
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
70635
|
+
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
70636
|
+
calendarView?: Maybe<JiraCalendarView>;
|
|
70637
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70638
|
+
success: Scalars['Boolean']['output'];
|
|
70639
|
+
};
|
|
70409
70640
|
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
70410
70641
|
id: Scalars['ID']['input'];
|
|
70411
70642
|
operation: JiraCascadingSelectFieldOperationInput;
|
|
@@ -70576,6 +70807,14 @@ export declare type JiraUpdateIssueTypeFieldInput = {
|
|
|
70576
70807
|
id: Scalars['ID']['input'];
|
|
70577
70808
|
operation: JiraIssueTypeFieldOperationInput;
|
|
70578
70809
|
};
|
|
70810
|
+
export declare type JiraUpdateIssueTypeInput = {
|
|
70811
|
+
avatarId?: InputMaybe<Scalars['String']['input']>;
|
|
70812
|
+
cloudId: Scalars['ID']['input'];
|
|
70813
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70814
|
+
issueTypeId: Scalars['String']['input'];
|
|
70815
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
70816
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
70817
|
+
};
|
|
70579
70818
|
export declare type JiraUpdateJourneyActivityConfigurationInput = {
|
|
70580
70819
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
70581
70820
|
id: Scalars['ID']['input'];
|
|
@@ -71694,6 +71933,18 @@ export declare type JiraViewGroupByConfig = {
|
|
|
71694
71933
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
71695
71934
|
fieldName?: Maybe<Scalars['String']['output']>;
|
|
71696
71935
|
};
|
|
71936
|
+
export declare type JiraViewInput = {
|
|
71937
|
+
jiraViewQueryInput: JiraViewQueryInput;
|
|
71938
|
+
};
|
|
71939
|
+
export declare type JiraViewProjectKeyAndItemQuery = {
|
|
71940
|
+
cloudId: Scalars['ID']['input'];
|
|
71941
|
+
itemId: Scalars['String']['input'];
|
|
71942
|
+
projectKey: Scalars['String']['input'];
|
|
71943
|
+
};
|
|
71944
|
+
export declare type JiraViewQueryInput = {
|
|
71945
|
+
projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
|
|
71946
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
71947
|
+
};
|
|
71697
71948
|
export declare type JiraViewScopeInput = {
|
|
71698
71949
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71699
71950
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -74355,6 +74606,17 @@ export declare type LoomFolder = {
|
|
|
74355
74606
|
name: Scalars['String']['output'];
|
|
74356
74607
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
74357
74608
|
};
|
|
74609
|
+
export declare type LoomJoinWorkspace = {
|
|
74610
|
+
__typename?: 'LoomJoinWorkspace';
|
|
74611
|
+
status: Scalars['String']['output'];
|
|
74612
|
+
};
|
|
74613
|
+
export declare type LoomJoinableWorkspace = {
|
|
74614
|
+
__typename?: 'LoomJoinableWorkspace';
|
|
74615
|
+
autoJoinable: Scalars['Boolean']['output'];
|
|
74616
|
+
guid: Scalars['String']['output'];
|
|
74617
|
+
memberCount: Scalars['Int']['output'];
|
|
74618
|
+
name: Scalars['String']['output'];
|
|
74619
|
+
};
|
|
74358
74620
|
export declare type LoomMeeting = Node & {
|
|
74359
74621
|
__typename?: 'LoomMeeting';
|
|
74360
74622
|
endsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -80139,6 +80401,7 @@ export declare type Mutation = {
|
|
|
80139
80401
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80140
80402
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
80141
80403
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80404
|
+
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
80142
80405
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80143
80406
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
80144
80407
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -80186,7 +80449,9 @@ export declare type Mutation = {
|
|
|
80186
80449
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
80187
80450
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
80188
80451
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
80452
|
+
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
80189
80453
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
80454
|
+
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
80190
80455
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
80191
80456
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
80192
80457
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -80220,6 +80485,7 @@ export declare type Mutation = {
|
|
|
80220
80485
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
80221
80486
|
jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
|
|
80222
80487
|
jira_updateIssueSearchFormattingRule?: Maybe<JiraUpdateIssueSearchFormattingRulePayload>;
|
|
80488
|
+
jira_updateIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
80223
80489
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
80224
80490
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
80225
80491
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -80228,6 +80494,7 @@ export declare type Mutation = {
|
|
|
80228
80494
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
80229
80495
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
80230
80496
|
likeContent?: Maybe<LikeContentPayload>;
|
|
80497
|
+
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
80231
80498
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
80232
80499
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
80233
80500
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
@@ -81230,6 +81497,9 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
81230
81497
|
issueAri: Scalars['ID']['input'];
|
|
81231
81498
|
jobId: Scalars['ID']['input'];
|
|
81232
81499
|
};
|
|
81500
|
+
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
81501
|
+
input: DevAiRovoDevCreateSessionInput;
|
|
81502
|
+
};
|
|
81233
81503
|
export declare type MutationDisableExperimentArgs = {
|
|
81234
81504
|
experimentKey: Scalars['String']['input'];
|
|
81235
81505
|
};
|
|
@@ -81344,9 +81614,15 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
81344
81614
|
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
81345
81615
|
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
81346
81616
|
};
|
|
81617
|
+
export declare type MutationJira_DeleteIssueTypeArgs = {
|
|
81618
|
+
input: JiraDeleteIssueTypeInput;
|
|
81619
|
+
};
|
|
81347
81620
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
81348
81621
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
81349
81622
|
};
|
|
81623
|
+
export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
81624
|
+
input: JiraDiscardUserViewConfigInput;
|
|
81625
|
+
};
|
|
81350
81626
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
81351
81627
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
81352
81628
|
};
|
|
@@ -81453,6 +81729,9 @@ export declare type MutationJira_UpdateGlobalCustomFieldArgs = {
|
|
|
81453
81729
|
export declare type MutationJira_UpdateIssueSearchFormattingRuleArgs = {
|
|
81454
81730
|
input: JiraUpdateIssueSearchFormattingRuleInput;
|
|
81455
81731
|
};
|
|
81732
|
+
export declare type MutationJira_UpdateIssueTypeArgs = {
|
|
81733
|
+
input: JiraUpdateIssueTypeInput;
|
|
81734
|
+
};
|
|
81456
81735
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
81457
81736
|
input: JiraUpdateBackgroundInput;
|
|
81458
81737
|
};
|
|
@@ -81469,6 +81748,9 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
|
81469
81748
|
export declare type MutationLikeContentArgs = {
|
|
81470
81749
|
input: LikeContentInput;
|
|
81471
81750
|
};
|
|
81751
|
+
export declare type MutationLoom_JoinWorkspaceArgs = {
|
|
81752
|
+
workspaceId: Scalars['String']['input'];
|
|
81753
|
+
};
|
|
81472
81754
|
export declare type MutationLoom_SpaceCreateArgs = {
|
|
81473
81755
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
81474
81756
|
name: Scalars['String']['input'];
|
|
@@ -85141,10 +85423,13 @@ export declare type Query = {
|
|
|
85141
85423
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
85142
85424
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
85143
85425
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85426
|
+
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
85144
85427
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
85145
85428
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
85146
85429
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
85147
85430
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
85431
|
+
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
85432
|
+
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
85148
85433
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
85149
85434
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85150
85435
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -85250,6 +85535,7 @@ export declare type Query = {
|
|
|
85250
85535
|
jiraReleases?: Maybe<JiraReleases>;
|
|
85251
85536
|
jiraServers?: Maybe<JiraServersResult>;
|
|
85252
85537
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
85538
|
+
jira_calendarView?: Maybe<JiraCalendarView>;
|
|
85253
85539
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
85254
85540
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
85255
85541
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
@@ -85286,6 +85572,7 @@ export declare type Query = {
|
|
|
85286
85572
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
85287
85573
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
85288
85574
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
85575
|
+
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
85289
85576
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
85290
85577
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
85291
85578
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -85460,8 +85747,10 @@ export declare type Query = {
|
|
|
85460
85747
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85461
85748
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85462
85749
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
85750
|
+
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
85463
85751
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
85464
85752
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
85753
|
+
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
85465
85754
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
85466
85755
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
85467
85756
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -85559,7 +85848,7 @@ export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
|
85559
85848
|
};
|
|
85560
85849
|
export declare type QueryAgentStudio_ScenarioListByContainerIdArgs = {
|
|
85561
85850
|
cloudId: Scalars['String']['input'];
|
|
85562
|
-
containerId: Scalars['
|
|
85851
|
+
containerId: Scalars['ID']['input'];
|
|
85563
85852
|
};
|
|
85564
85853
|
export declare type QueryAgentStudio_ScenariosByIdsArgs = {
|
|
85565
85854
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -86564,6 +86853,13 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
86564
86853
|
issueKey: Scalars['String']['input'];
|
|
86565
86854
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86566
86855
|
};
|
|
86856
|
+
export declare type QueryDevai_FlowSessionsConnectionByCreatorAndCloudIdArgs = {
|
|
86857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86858
|
+
cloudId: Scalars['ID']['input'];
|
|
86859
|
+
creator: Scalars['String']['input'];
|
|
86860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86861
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
86862
|
+
};
|
|
86567
86863
|
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
86568
86864
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86569
86865
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86580,6 +86876,15 @@ export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
|
86580
86876
|
export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
|
|
86581
86877
|
cloudId: Scalars['ID']['input'];
|
|
86582
86878
|
};
|
|
86879
|
+
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
86880
|
+
id: Scalars['ID']['input'];
|
|
86881
|
+
};
|
|
86882
|
+
export declare type QueryDevai_RovodevSessionsArgs = {
|
|
86883
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86885
|
+
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
86886
|
+
workspaceAri: Scalars['ID']['input'];
|
|
86887
|
+
};
|
|
86583
86888
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
86584
86889
|
cloudId: Scalars['ID']['input'];
|
|
86585
86890
|
jobId: Scalars['ID']['input'];
|
|
@@ -86917,6 +87222,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
86917
87222
|
export declare type QueryJira_BoardViewArgs = {
|
|
86918
87223
|
input: JiraBoardViewInput;
|
|
86919
87224
|
};
|
|
87225
|
+
export declare type QueryJira_CalendarViewArgs = {
|
|
87226
|
+
input: JiraViewInput;
|
|
87227
|
+
};
|
|
86920
87228
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
86921
87229
|
cloudId: Scalars['ID']['input'];
|
|
86922
87230
|
};
|
|
@@ -87690,12 +87998,18 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
87690
87998
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
87691
87999
|
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
87692
88000
|
};
|
|
88001
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
88002
|
+
assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
|
|
88003
|
+
};
|
|
87693
88004
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
87694
88005
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
87695
88006
|
};
|
|
87696
88007
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
87697
88008
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
87698
88009
|
};
|
|
88010
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
88011
|
+
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
88012
|
+
};
|
|
87699
88013
|
export declare type QueryStalePagesArgs = {
|
|
87700
88014
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
87701
88015
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -90955,7 +91269,9 @@ export declare type Security = {
|
|
|
90955
91269
|
compliantCertifications?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
90956
91270
|
hasCompliantCertifications?: Maybe<Scalars['Boolean']['output']>;
|
|
90957
91271
|
isDiskEncryptionSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
91272
|
+
permissionsJustification?: Maybe<Scalars['String']['output']>;
|
|
90958
91273
|
publicSecurityPoliciesLink?: Maybe<Scalars['String']['output']>;
|
|
91274
|
+
requiresUsersToProvidePATs?: Maybe<Scalars['Boolean']['output']>;
|
|
90959
91275
|
securityContact: Scalars['String']['output'];
|
|
90960
91276
|
};
|
|
90961
91277
|
export declare type SecurityContainer = {
|
|
@@ -94026,7 +94342,7 @@ export declare type SpfAskResult = QueryError | SpfAsk;
|
|
|
94026
94342
|
export declare enum SpfAskStatus {
|
|
94027
94343
|
Accepted = "ACCEPTED",
|
|
94028
94344
|
Canceled = "CANCELED",
|
|
94029
|
-
|
|
94345
|
+
Deferred = "DEFERRED",
|
|
94030
94346
|
Draft = "DRAFT",
|
|
94031
94347
|
InReview = "IN_REVIEW",
|
|
94032
94348
|
Revising = "REVISING",
|
|
@@ -94202,6 +94518,7 @@ export declare type SpfUpdateAskDescriptionInput = {
|
|
|
94202
94518
|
export declare type SpfUpdateAskImpactedWorkInput = {
|
|
94203
94519
|
id: Scalars['ID']['input'];
|
|
94204
94520
|
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
94521
|
+
impactedWorkUrl?: InputMaybe<Scalars['String']['input']>;
|
|
94205
94522
|
};
|
|
94206
94523
|
export declare type SpfUpdateAskJustificationInput = {
|
|
94207
94524
|
id: Scalars['ID']['input'];
|
|
@@ -94342,6 +94659,27 @@ export declare type StakeholderCommsAssignment = {
|
|
|
94342
94659
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
94343
94660
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
94344
94661
|
};
|
|
94662
|
+
export declare type StakeholderCommsAssignmentConnection = {
|
|
94663
|
+
__typename?: 'StakeholderCommsAssignmentConnection';
|
|
94664
|
+
edges: Array<StakeholderCommsAssignmentEdge>;
|
|
94665
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94666
|
+
nodes: Array<StakeholderCommsAssignment>;
|
|
94667
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94668
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94669
|
+
totalCount: Scalars['Int']['output'];
|
|
94670
|
+
};
|
|
94671
|
+
export declare type StakeholderCommsAssignmentConnectionInput = {
|
|
94672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94673
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94675
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94676
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94677
|
+
};
|
|
94678
|
+
export declare type StakeholderCommsAssignmentEdge = {
|
|
94679
|
+
__typename?: 'StakeholderCommsAssignmentEdge';
|
|
94680
|
+
cursor: Scalars['String']['output'];
|
|
94681
|
+
node: StakeholderCommsAssignment;
|
|
94682
|
+
};
|
|
94345
94683
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
94346
94684
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
94347
94685
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
@@ -94394,6 +94732,13 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
94394
94732
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
94395
94733
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
94396
94734
|
};
|
|
94735
|
+
export declare type StakeholderCommsPageInfo = {
|
|
94736
|
+
__typename?: 'StakeholderCommsPageInfo';
|
|
94737
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
94738
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
94739
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
94740
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
94741
|
+
};
|
|
94397
94742
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
94398
94743
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
94399
94744
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94451,6 +94796,27 @@ export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
|
94451
94796
|
message?: Maybe<Scalars['String']['output']>;
|
|
94452
94797
|
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
94453
94798
|
};
|
|
94799
|
+
export declare type StakeholderCommsStakeholderConnection = {
|
|
94800
|
+
__typename?: 'StakeholderCommsStakeholderConnection';
|
|
94801
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
94802
|
+
edges: Array<StakeholderCommsStakeholderEdge>;
|
|
94803
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
94804
|
+
nodes: Array<StakeholderCommsStakeholder>;
|
|
94805
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
94806
|
+
totalCount: Scalars['Int']['output'];
|
|
94807
|
+
};
|
|
94808
|
+
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
94809
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94810
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
94811
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
94812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94813
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94814
|
+
};
|
|
94815
|
+
export declare type StakeholderCommsStakeholderEdge = {
|
|
94816
|
+
__typename?: 'StakeholderCommsStakeholderEdge';
|
|
94817
|
+
cursor: Scalars['String']['output'];
|
|
94818
|
+
node: StakeholderCommsStakeholder;
|
|
94819
|
+
};
|
|
94454
94820
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
94455
94821
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94456
94822
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100194,6 +100560,7 @@ export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
|
100194
100560
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
100195
100561
|
__typename?: 'UnifiedAccount';
|
|
100196
100562
|
aaid: Scalars['String']['output'];
|
|
100563
|
+
atlassianOneUserId?: Maybe<Scalars['String']['output']>;
|
|
100197
100564
|
emailId: Scalars['String']['output'];
|
|
100198
100565
|
id: Scalars['ID']['output'];
|
|
100199
100566
|
internalId: Scalars['String']['output'];
|
|
@@ -100415,6 +100782,67 @@ export declare type UnifiedAllowList = UnifiedINode & {
|
|
|
100415
100782
|
allowList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
100416
100783
|
id: Scalars['ID']['output'];
|
|
100417
100784
|
};
|
|
100785
|
+
export declare type UnifiedAtlassianOneUser = UnifiedINode & {
|
|
100786
|
+
__typename?: 'UnifiedAtlassianOneUser';
|
|
100787
|
+
accounts?: Maybe<Array<UnifiedAccount>>;
|
|
100788
|
+
associatedUsers?: Maybe<Array<UnifiedAtlassianOneUser>>;
|
|
100789
|
+
createdAt: Scalars['String']['output'];
|
|
100790
|
+
currentActiveAssociatedId?: Maybe<Scalars['String']['output']>;
|
|
100791
|
+
id: Scalars['ID']['output'];
|
|
100792
|
+
previousAssociatedUser?: Maybe<UnifiedAtlassianOneUser>;
|
|
100793
|
+
updatedAt: Scalars['String']['output'];
|
|
100794
|
+
};
|
|
100795
|
+
export declare type UnifiedAtlassianOneUserConnection = UnifiedIConnection & {
|
|
100796
|
+
__typename?: 'UnifiedAtlassianOneUserConnection';
|
|
100797
|
+
edges?: Maybe<Array<Maybe<UnifiedAtlassianOneUserEdge>>>;
|
|
100798
|
+
pageInfo: UnifiedPageInfo;
|
|
100799
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100800
|
+
};
|
|
100801
|
+
export declare type UnifiedAtlassianOneUserEdge = UnifiedIEdge & {
|
|
100802
|
+
__typename?: 'UnifiedAtlassianOneUserEdge';
|
|
100803
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100804
|
+
node?: Maybe<UnifiedAtlassianOneUser>;
|
|
100805
|
+
};
|
|
100806
|
+
export declare type UnifiedAtlassianOneUserInput = {
|
|
100807
|
+
currentActiveAssociatedId?: InputMaybe<Scalars['String']['input']>;
|
|
100808
|
+
};
|
|
100809
|
+
export declare type UnifiedAtlassianOneUserMutation = {
|
|
100810
|
+
__typename?: 'UnifiedAtlassianOneUserMutation';
|
|
100811
|
+
createAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100812
|
+
deleteAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100813
|
+
linkAccountToUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100814
|
+
setCurrentActiveAssociatedUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100815
|
+
updateAtlassianOneUser?: Maybe<UnifiedAtlassianOneUserPayload>;
|
|
100816
|
+
};
|
|
100817
|
+
export declare type UnifiedAtlassianOneUserMutationDeleteAtlassianOneUserArgs = {
|
|
100818
|
+
id: Scalars['ID']['input'];
|
|
100819
|
+
};
|
|
100820
|
+
export declare type UnifiedAtlassianOneUserMutationLinkAccountToUserArgs = {
|
|
100821
|
+
accountId: Scalars['ID']['input'];
|
|
100822
|
+
atlassianOneUserId: Scalars['ID']['input'];
|
|
100823
|
+
};
|
|
100824
|
+
export declare type UnifiedAtlassianOneUserMutationSetCurrentActiveAssociatedUserArgs = {
|
|
100825
|
+
currentActiveAssociatedId: Scalars['ID']['input'];
|
|
100826
|
+
id: Scalars['ID']['input'];
|
|
100827
|
+
};
|
|
100828
|
+
export declare type UnifiedAtlassianOneUserMutationUpdateAtlassianOneUserArgs = {
|
|
100829
|
+
id: Scalars['ID']['input'];
|
|
100830
|
+
input?: InputMaybe<UnifiedAtlassianOneUserInput>;
|
|
100831
|
+
};
|
|
100832
|
+
export declare type UnifiedAtlassianOneUserPayload = UnifiedPayload & {
|
|
100833
|
+
__typename?: 'UnifiedAtlassianOneUserPayload';
|
|
100834
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUser>;
|
|
100835
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
100836
|
+
success: Scalars['Boolean']['output'];
|
|
100837
|
+
};
|
|
100838
|
+
export declare type UnifiedAtlassianOneUserQuery = {
|
|
100839
|
+
__typename?: 'UnifiedAtlassianOneUserQuery';
|
|
100840
|
+
getAllAtlassianOneUsers?: Maybe<UnifiedUAtlassianOneUserConnectionResult>;
|
|
100841
|
+
getAtlassianOneUserById?: Maybe<UnifiedUAtlassianOneUserResult>;
|
|
100842
|
+
};
|
|
100843
|
+
export declare type UnifiedAtlassianOneUserQueryGetAtlassianOneUserByIdArgs = {
|
|
100844
|
+
id: Scalars['ID']['input'];
|
|
100845
|
+
};
|
|
100418
100846
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
100419
100847
|
__typename?: 'UnifiedAtlassianProduct';
|
|
100420
100848
|
id: Scalars['ID']['output'];
|
|
@@ -100922,6 +101350,7 @@ export declare type UnifiedMutation = {
|
|
|
100922
101350
|
__typename?: 'UnifiedMutation';
|
|
100923
101351
|
account?: Maybe<UnifiedAccountMutation>;
|
|
100924
101352
|
ai?: Maybe<UnifiedAiMutation>;
|
|
101353
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserMutation>;
|
|
100925
101354
|
caching?: Maybe<UnifiedCachingMutation>;
|
|
100926
101355
|
community?: Maybe<UnifiedCommunityMutation>;
|
|
100927
101356
|
consent?: Maybe<UnifiedConsentMutation>;
|
|
@@ -101049,6 +101478,7 @@ export declare type UnifiedQuery = {
|
|
|
101049
101478
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
101050
101479
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
101051
101480
|
ai?: Maybe<UnifiedAiQuery>;
|
|
101481
|
+
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserQuery>;
|
|
101052
101482
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
101053
101483
|
caching?: Maybe<UnifiedCachingQuery>;
|
|
101054
101484
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
@@ -101122,6 +101552,8 @@ export declare type UnifiedUAiPostResult = UnifiedAiPostResult | UnifiedQueryErr
|
|
|
101122
101552
|
export declare type UnifiedUAiPostsConnectionResult = UnifiedAiPostsConnection | UnifiedQueryError;
|
|
101123
101553
|
export declare type UnifiedUAiPostsResult = UnifiedAiPostsResult | UnifiedQueryError;
|
|
101124
101554
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
101555
|
+
export declare type UnifiedUAtlassianOneUserConnectionResult = UnifiedAtlassianOneUserConnection | UnifiedQueryError;
|
|
101556
|
+
export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | UnifiedQueryError;
|
|
101125
101557
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
101126
101558
|
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
101127
101559
|
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|