@forge/cli-shared 5.1.1-next.6 → 5.1.1-next.7
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 +7 -0
- package/out/graphql/graphql-types.d.ts +177 -80
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +51 -16
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -897,6 +897,7 @@ export declare type AppInstallationLicense = {
|
|
|
897
897
|
__typename?: 'AppInstallationLicense';
|
|
898
898
|
active: Scalars['Boolean']['output'];
|
|
899
899
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
900
|
+
capabilitySet?: Maybe<CapabilitySet>;
|
|
900
901
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
901
902
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
902
903
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2286,6 +2287,10 @@ export declare type CfdIssueColumnChangeEntry = {
|
|
|
2286
2287
|
statusTo?: Maybe<Scalars['ID']['output']>;
|
|
2287
2288
|
timestamp: Scalars['String']['output'];
|
|
2288
2289
|
};
|
|
2290
|
+
export declare enum CapabilitySet {
|
|
2291
|
+
CapabilityAdvanced = "capabilityAdvanced",
|
|
2292
|
+
CapabilityStandard = "capabilityStandard"
|
|
2293
|
+
}
|
|
2289
2294
|
export declare type CardCoverMedia = {
|
|
2290
2295
|
__typename?: 'CardCoverMedia';
|
|
2291
2296
|
attachmentId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -11311,11 +11316,6 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
11311
11316
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
11312
11317
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
11313
11318
|
};
|
|
11314
|
-
export declare type ConfluencePublicLinkPage = {
|
|
11315
|
-
__typename?: 'ConfluencePublicLinkPage';
|
|
11316
|
-
body?: Maybe<ConfluenceBodies>;
|
|
11317
|
-
type?: Maybe<ConfluenceContentType>;
|
|
11318
|
-
};
|
|
11319
11319
|
export declare type ConfluencePublishBlogPostInput = {
|
|
11320
11320
|
id: Scalars['ID']['input'];
|
|
11321
11321
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11367,7 +11367,6 @@ export declare type ConfluenceQueryApi = {
|
|
|
11367
11367
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
11368
11368
|
page?: Maybe<ConfluencePage>;
|
|
11369
11369
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
11370
|
-
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
11371
11370
|
space?: Maybe<ConfluenceSpace>;
|
|
11372
11371
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
11373
11372
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -11416,9 +11415,6 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
11416
11415
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
11417
11416
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
11418
11417
|
};
|
|
11419
|
-
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
11420
|
-
id: Scalars['ID']['input'];
|
|
11421
|
-
};
|
|
11422
11418
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
11423
11419
|
id: Scalars['ID']['input'];
|
|
11424
11420
|
};
|
|
@@ -14715,9 +14711,11 @@ export declare type DevAiAutofixTask = {
|
|
|
14715
14711
|
associatedPullRequest?: Maybe<Scalars['URL']['output']>;
|
|
14716
14712
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
14717
14713
|
id: Scalars['ID']['output'];
|
|
14714
|
+
newCodeCoveragePercentage?: Maybe<Scalars['Float']['output']>;
|
|
14718
14715
|
newCoveragePercentage?: Maybe<Scalars['Int']['output']>;
|
|
14719
14716
|
parentWorkflowRunDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
14720
14717
|
parentWorkflowRunId?: Maybe<Scalars['ID']['output']>;
|
|
14718
|
+
previousCodeCoveragePercentage?: Maybe<Scalars['Float']['output']>;
|
|
14721
14719
|
previousCoveragePercentage?: Maybe<Scalars['Int']['output']>;
|
|
14722
14720
|
primaryLanguage?: Maybe<Scalars['String']['output']>;
|
|
14723
14721
|
sourceFilePath?: Maybe<Scalars['String']['output']>;
|
|
@@ -14814,6 +14812,7 @@ export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
|
|
|
14814
14812
|
codeCoverageCommand: Scalars['String']['input'];
|
|
14815
14813
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
14816
14814
|
coveragePercentage: Scalars['Int']['input'];
|
|
14815
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14817
14816
|
maxPrOpenCount?: InputMaybe<Scalars['Int']['input']>;
|
|
14818
14817
|
primaryLanguage: Scalars['String']['input'];
|
|
14819
14818
|
repoUrl: Scalars['URL']['input'];
|
|
@@ -16910,72 +16909,6 @@ export declare type FailedRoles = {
|
|
|
16910
16909
|
reason: Scalars['String']['output'];
|
|
16911
16910
|
role?: Maybe<AppContributorRole>;
|
|
16912
16911
|
};
|
|
16913
|
-
export declare type FeatureRelease = {
|
|
16914
|
-
__typename?: 'FeatureRelease';
|
|
16915
|
-
latestTransition: FeatureReleaseFeatureFlagTransitionConnection;
|
|
16916
|
-
transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
16917
|
-
transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
16918
|
-
transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
|
|
16919
|
-
};
|
|
16920
|
-
export declare type FeatureReleaseLatestTransitionArgs = {
|
|
16921
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16922
|
-
cloudIds: Array<Scalars['ID']['input']>;
|
|
16923
|
-
featureFlagId: Scalars['ID']['input'];
|
|
16924
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16925
|
-
timeRange?: InputMaybe<FeatureReleaseTimeRangeInput>;
|
|
16926
|
-
};
|
|
16927
|
-
export declare type FeatureReleaseTransitionsByCloudIdArgs = {
|
|
16928
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16929
|
-
cloudId: Scalars['ID']['input'];
|
|
16930
|
-
filter?: InputMaybe<FeatureReleaseFeatureFlagFilter>;
|
|
16931
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16932
|
-
timeRange?: InputMaybe<FeatureReleaseTimeRangeInput>;
|
|
16933
|
-
};
|
|
16934
|
-
export declare type FeatureReleaseTransitionsByFeatureFlagIdArgs = {
|
|
16935
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16936
|
-
featureFlagId: Scalars['ID']['input'];
|
|
16937
|
-
filter?: InputMaybe<FeatureReleaseCloudIdFilter>;
|
|
16938
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16939
|
-
timeRange?: InputMaybe<FeatureReleaseTimeRangeInput>;
|
|
16940
|
-
};
|
|
16941
|
-
export declare type FeatureReleaseTransitionsByMonthArgs = {
|
|
16942
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16943
|
-
cloudIdFilter?: InputMaybe<FeatureReleaseCloudIdFilter>;
|
|
16944
|
-
featureFlagFilter?: InputMaybe<FeatureReleaseFeatureFlagFilter>;
|
|
16945
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16946
|
-
month: Scalars['String']['input'];
|
|
16947
|
-
timeRange?: InputMaybe<FeatureReleaseTimeRangeInput>;
|
|
16948
|
-
};
|
|
16949
|
-
export declare type FeatureReleaseCloudIdFilter = {
|
|
16950
|
-
cloudIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
16951
|
-
};
|
|
16952
|
-
export declare type FeatureReleaseFeatureFlagFilter = {
|
|
16953
|
-
featureFlagIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
16954
|
-
};
|
|
16955
|
-
export declare type FeatureReleaseFeatureFlagTransition = {
|
|
16956
|
-
__typename?: 'FeatureReleaseFeatureFlagTransition';
|
|
16957
|
-
evaluationResult: Scalars['String']['output'];
|
|
16958
|
-
featureFlagKey: Scalars['String']['output'];
|
|
16959
|
-
month: Scalars['String']['output'];
|
|
16960
|
-
reason: Scalars['String']['output'];
|
|
16961
|
-
tenantId: Scalars['String']['output'];
|
|
16962
|
-
tenantType: Scalars['String']['output'];
|
|
16963
|
-
timestamp: Scalars['Int']['output'];
|
|
16964
|
-
};
|
|
16965
|
-
export declare type FeatureReleaseFeatureFlagTransitionConnection = {
|
|
16966
|
-
__typename?: 'FeatureReleaseFeatureFlagTransitionConnection';
|
|
16967
|
-
edges: Array<Maybe<FeatureReleaseFeatureFlagTransitionEdge>>;
|
|
16968
|
-
pageInfo: PageInfo;
|
|
16969
|
-
};
|
|
16970
|
-
export declare type FeatureReleaseFeatureFlagTransitionEdge = {
|
|
16971
|
-
__typename?: 'FeatureReleaseFeatureFlagTransitionEdge';
|
|
16972
|
-
cursor: Scalars['String']['output'];
|
|
16973
|
-
node?: Maybe<FeatureReleaseFeatureFlagTransition>;
|
|
16974
|
-
};
|
|
16975
|
-
export declare type FeatureReleaseTimeRangeInput = {
|
|
16976
|
-
endEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
16977
|
-
startEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
16978
|
-
};
|
|
16979
16912
|
export declare type FilterQuery = {
|
|
16980
16913
|
__typename?: 'FilterQuery';
|
|
16981
16914
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -34275,6 +34208,7 @@ export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNaviga
|
|
|
34275
34208
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
34276
34209
|
label?: Maybe<Scalars['String']['output']>;
|
|
34277
34210
|
sections?: Maybe<Array<Maybe<JiraAppSection>>>;
|
|
34211
|
+
settingsUrl?: Maybe<Scalars['String']['output']>;
|
|
34278
34212
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
34279
34213
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
34280
34214
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -34372,10 +34306,18 @@ export declare type JiraArchivedIssuesFilterInput = {
|
|
|
34372
34306
|
};
|
|
34373
34307
|
export declare type JiraArchivedIssuesFilterOptions = {
|
|
34374
34308
|
__typename?: 'JiraArchivedIssuesFilterOptions';
|
|
34309
|
+
archivedBy?: Maybe<JiraUserConnection>;
|
|
34375
34310
|
issueTypes: JiraIssueTypeConnection;
|
|
34376
34311
|
projectId: Scalars['ID']['output'];
|
|
34377
34312
|
reporters: JiraUserConnection;
|
|
34378
34313
|
};
|
|
34314
|
+
export declare type JiraArchivedIssuesFilterOptionsArchivedByArgs = {
|
|
34315
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34316
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
34317
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34318
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
34319
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
34320
|
+
};
|
|
34379
34321
|
export declare type JiraArchivedIssuesFilterOptionsIssueTypesArgs = {
|
|
34380
34322
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34381
34323
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -34854,6 +34796,7 @@ export declare type JiraBoard = Node & {
|
|
|
34854
34796
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
34855
34797
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
34856
34798
|
id: Scalars['ID']['output'];
|
|
34799
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
34857
34800
|
name?: Maybe<Scalars['String']['output']>;
|
|
34858
34801
|
};
|
|
34859
34802
|
export declare type JiraBoardConnection = {
|
|
@@ -34884,6 +34827,16 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
34884
34827
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
34885
34828
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
34886
34829
|
};
|
|
34830
|
+
export declare type JiraBulkCleanupProjectsInput = {
|
|
34831
|
+
projectCleanupAction?: InputMaybe<JiraProjectCleanupRecommendationAction>;
|
|
34832
|
+
recommendationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34833
|
+
};
|
|
34834
|
+
export declare type JiraBulkCleanupProjectsPayload = Payload & {
|
|
34835
|
+
__typename?: 'JiraBulkCleanupProjectsPayload';
|
|
34836
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34837
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
34838
|
+
success: Scalars['Boolean']['output'];
|
|
34839
|
+
};
|
|
34887
34840
|
export declare type JiraBulkCreateIssueLinksInput = {
|
|
34888
34841
|
issueLinkTypeId: Scalars['ID']['input'];
|
|
34889
34842
|
sourceIssueId: Scalars['ID']['input'];
|
|
@@ -35017,6 +34970,7 @@ export declare type JiraCalendar = {
|
|
|
35017
34970
|
__typename?: 'JiraCalendar';
|
|
35018
34971
|
endDateField?: Maybe<JiraIssueField>;
|
|
35019
34972
|
issues?: Maybe<JiraIssueConnection>;
|
|
34973
|
+
issuesV2?: Maybe<JiraScenarioIssueLikeConnection>;
|
|
35020
34974
|
permissions?: Maybe<JiraCalendarPermissionConnection>;
|
|
35021
34975
|
projects?: Maybe<JiraProjectConnection>;
|
|
35022
34976
|
sprints?: Maybe<JiraSprintConnection>;
|
|
@@ -35031,6 +34985,13 @@ export declare type JiraCalendarIssuesArgs = {
|
|
|
35031
34985
|
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
35032
34986
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35033
34987
|
};
|
|
34988
|
+
export declare type JiraCalendarIssuesV2Args = {
|
|
34989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34990
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
34991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34992
|
+
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
34993
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
34994
|
+
};
|
|
35034
34995
|
export declare type JiraCalendarPermissionsArgs = {
|
|
35035
34996
|
keys?: InputMaybe<Array<JiraCalendarPermissionKey>>;
|
|
35036
34997
|
};
|
|
@@ -35100,6 +35061,7 @@ export declare type JiraCalendarViewConfigurationInput = {
|
|
|
35100
35061
|
endDateField?: InputMaybe<Scalars['String']['input']>;
|
|
35101
35062
|
mode?: InputMaybe<JiraCalendarMode>;
|
|
35102
35063
|
startDateField?: InputMaybe<Scalars['String']['input']>;
|
|
35064
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
35103
35065
|
weekStart?: InputMaybe<JiraCalendarWeekStart>;
|
|
35104
35066
|
};
|
|
35105
35067
|
export declare enum JiraCalendarWeekStart {
|
|
@@ -35748,6 +35710,7 @@ export declare type JiraConfigState = {
|
|
|
35748
35710
|
export declare enum JiraConfigStateConfigurationStatus {
|
|
35749
35711
|
Configured = "CONFIGURED",
|
|
35750
35712
|
NotConfigured = "NOT_CONFIGURED",
|
|
35713
|
+
NotInstalled = "NOT_INSTALLED",
|
|
35751
35714
|
NotSet = "NOT_SET",
|
|
35752
35715
|
PartiallyConfigured = "PARTIALLY_CONFIGURED",
|
|
35753
35716
|
ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED",
|
|
@@ -36115,6 +36078,7 @@ export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
|
36115
36078
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
36116
36079
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
36117
36080
|
jql: Scalars['String']['output'];
|
|
36081
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
36118
36082
|
name: Scalars['String']['output'];
|
|
36119
36083
|
owner?: Maybe<User>;
|
|
36120
36084
|
shareGrants?: Maybe<JiraShareableEntityShareGrantConnection>;
|
|
@@ -36171,6 +36135,7 @@ export declare type JiraDashboard = Node & {
|
|
|
36171
36135
|
dashboardUrl?: Maybe<Scalars['URL']['output']>;
|
|
36172
36136
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
36173
36137
|
id: Scalars['ID']['output'];
|
|
36138
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
36174
36139
|
title?: Maybe<Scalars['String']['output']>;
|
|
36175
36140
|
};
|
|
36176
36141
|
export declare type JiraDataClassification = {
|
|
@@ -36870,6 +36835,7 @@ export declare type JiraFilter = {
|
|
|
36870
36835
|
id: Scalars['ID']['output'];
|
|
36871
36836
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
36872
36837
|
jql: Scalars['String']['output'];
|
|
36838
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
36873
36839
|
name: Scalars['String']['output'];
|
|
36874
36840
|
};
|
|
36875
36841
|
export declare type JiraFilterConnection = {
|
|
@@ -37224,6 +37190,10 @@ export declare type JiraGlobalPermissionGrantsList = {
|
|
|
37224
37190
|
globalPermissionGrants?: Maybe<Array<Maybe<JiraGlobalPermissionGrants>>>;
|
|
37225
37191
|
};
|
|
37226
37192
|
export declare type JiraGlobalPermissionGrantsResult = JiraGlobalPermissionGrantsList | QueryError;
|
|
37193
|
+
export declare enum JiraGlobalPermissionType {
|
|
37194
|
+
Administer = "ADMINISTER",
|
|
37195
|
+
UserPicker = "USER_PICKER"
|
|
37196
|
+
}
|
|
37227
37197
|
export declare type JiraGlobalTimeTrackingSettings = {
|
|
37228
37198
|
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
37229
37199
|
daysPerWeek: Scalars['Float']['output'];
|
|
@@ -37425,7 +37395,7 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
37425
37395
|
line?: Maybe<Scalars['Int']['output']>;
|
|
37426
37396
|
message?: Maybe<Scalars['String']['output']>;
|
|
37427
37397
|
};
|
|
37428
|
-
export declare type JiraIssue = Node & {
|
|
37398
|
+
export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
37429
37399
|
__typename?: 'JiraIssue';
|
|
37430
37400
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
37431
37401
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
@@ -37469,9 +37439,11 @@ export declare type JiraIssue = Node & {
|
|
|
37469
37439
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
37470
37440
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
37471
37441
|
key: Scalars['String']['output'];
|
|
37442
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
37472
37443
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
37473
37444
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
37474
37445
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
37446
|
+
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
37475
37447
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
37476
37448
|
priorityField?: Maybe<JiraPriorityField>;
|
|
37477
37449
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
@@ -37580,6 +37552,9 @@ export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
|
37580
37552
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
37581
37553
|
maxTokenLength: Scalars['Int']['input'];
|
|
37582
37554
|
};
|
|
37555
|
+
export declare type JiraIssuePlanScenarioValuesArgs = {
|
|
37556
|
+
viewId: Scalars['ID']['input'];
|
|
37557
|
+
};
|
|
37583
37558
|
export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
37584
37559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37585
37560
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39720,6 +39695,7 @@ export declare type JiraMutation = {
|
|
|
39720
39695
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
39721
39696
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
39722
39697
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
39698
|
+
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
39723
39699
|
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
39724
39700
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
39725
39701
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
@@ -40008,6 +39984,9 @@ export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
|
40008
39984
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
40009
39985
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
40010
39986
|
};
|
|
39987
|
+
export declare type JiraMutationScheduleBulkExecuteProjectCleanupRecommendationsArgs = {
|
|
39988
|
+
input: JiraBulkCleanupProjectsInput;
|
|
39989
|
+
};
|
|
40011
39990
|
export declare type JiraMutationScheduleCalendarIssueArgs = {
|
|
40012
39991
|
configuration: JiraCalendarViewConfigurationInput;
|
|
40013
39992
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -41152,6 +41131,7 @@ export declare type JiraProject = Node & {
|
|
|
41152
41131
|
key: Scalars['String']['output'];
|
|
41153
41132
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
41154
41133
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
41134
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
41155
41135
|
lead?: Maybe<User>;
|
|
41156
41136
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
41157
41137
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -41915,6 +41895,7 @@ export declare type JiraQuery = {
|
|
|
41915
41895
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
41916
41896
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
41917
41897
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
41898
|
+
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
41918
41899
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
41919
41900
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
41920
41901
|
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -42273,6 +42254,10 @@ export declare type JiraQueryGroupCommentVisibilitiesArgs = {
|
|
|
42273
42254
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42274
42255
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42275
42256
|
};
|
|
42257
|
+
export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
42258
|
+
cloudId: Scalars['ID']['input'];
|
|
42259
|
+
key: JiraGlobalPermissionType;
|
|
42260
|
+
};
|
|
42276
42261
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
42277
42262
|
projectId: Scalars['ID']['input'];
|
|
42278
42263
|
};
|
|
@@ -43245,9 +43230,11 @@ export declare type JiraResourceUsageRecommendationStats = {
|
|
|
43245
43230
|
lastExecuted?: Maybe<Scalars['DateTime']['output']>;
|
|
43246
43231
|
};
|
|
43247
43232
|
export declare enum JiraResourceUsageRecommendationStatus {
|
|
43233
|
+
Archived = "ARCHIVED",
|
|
43248
43234
|
Executed = "EXECUTED",
|
|
43249
43235
|
New = "NEW",
|
|
43250
|
-
Obsolete = "OBSOLETE"
|
|
43236
|
+
Obsolete = "OBSOLETE",
|
|
43237
|
+
Trashed = "TRASHED"
|
|
43251
43238
|
}
|
|
43252
43239
|
export declare enum JiraReviewState {
|
|
43253
43240
|
Approval = "APPROVAL",
|
|
@@ -43399,6 +43386,55 @@ export declare type JiraScaledConfigurationPermissions = {
|
|
|
43399
43386
|
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
43400
43387
|
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
43401
43388
|
};
|
|
43389
|
+
export declare type JiraScenarioIssue = JiraScenarioIssueLike & Node & {
|
|
43390
|
+
__typename?: 'JiraScenarioIssue';
|
|
43391
|
+
id: Scalars['ID']['output'];
|
|
43392
|
+
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
43393
|
+
};
|
|
43394
|
+
export declare type JiraScenarioIssuePlanScenarioValuesArgs = {
|
|
43395
|
+
viewId: Scalars['ID']['input'];
|
|
43396
|
+
};
|
|
43397
|
+
export declare type JiraScenarioIssueLike = {
|
|
43398
|
+
id: Scalars['ID']['output'];
|
|
43399
|
+
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
43400
|
+
};
|
|
43401
|
+
export declare type JiraScenarioIssueLikePlanScenarioValuesArgs = {
|
|
43402
|
+
viewId: Scalars['ID']['input'];
|
|
43403
|
+
};
|
|
43404
|
+
export declare type JiraScenarioIssueLikeConnection = {
|
|
43405
|
+
__typename?: 'JiraScenarioIssueLikeConnection';
|
|
43406
|
+
edges?: Maybe<Array<Maybe<JiraScenarioIssueLikeEdge>>>;
|
|
43407
|
+
pageInfo: PageInfo;
|
|
43408
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43409
|
+
};
|
|
43410
|
+
export declare type JiraScenarioIssueLikeEdge = {
|
|
43411
|
+
__typename?: 'JiraScenarioIssueLikeEdge';
|
|
43412
|
+
cursor: Scalars['String']['output'];
|
|
43413
|
+
errors?: Maybe<Array<QueryError>>;
|
|
43414
|
+
node?: Maybe<JiraScenarioIssueLike>;
|
|
43415
|
+
};
|
|
43416
|
+
export declare type JiraScenarioIssueValues = {
|
|
43417
|
+
__typename?: 'JiraScenarioIssueValues';
|
|
43418
|
+
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
43419
|
+
descriptionField?: Maybe<JiraRichTextField>;
|
|
43420
|
+
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
43421
|
+
flagField?: Maybe<JiraFlagField>;
|
|
43422
|
+
goalsField?: Maybe<JiraGoalsField>;
|
|
43423
|
+
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
43424
|
+
projectField?: Maybe<JiraProjectField>;
|
|
43425
|
+
scenarioType?: Maybe<JiraScenarioType>;
|
|
43426
|
+
statusField?: Maybe<JiraStatusField>;
|
|
43427
|
+
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
43428
|
+
};
|
|
43429
|
+
export declare type JiraScenarioIssueValuesFieldByIdOrAliasArgs = {
|
|
43430
|
+
idOrAlias: Scalars['String']['input'];
|
|
43431
|
+
};
|
|
43432
|
+
export declare enum JiraScenarioType {
|
|
43433
|
+
Added = "ADDED",
|
|
43434
|
+
Deleted = "DELETED",
|
|
43435
|
+
Deletedfromjira = "DELETEDFROMJIRA",
|
|
43436
|
+
Updated = "UPDATED"
|
|
43437
|
+
}
|
|
43402
43438
|
export declare type JiraScheduleCalendarIssuePayload = Payload & {
|
|
43403
43439
|
__typename?: 'JiraScheduleCalendarIssuePayload';
|
|
43404
43440
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -44142,6 +44178,7 @@ export declare type JiraServiceManagementQueue = Node & {
|
|
|
44142
44178
|
__typename?: 'JiraServiceManagementQueue';
|
|
44143
44179
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
44144
44180
|
id: Scalars['ID']['output'];
|
|
44181
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
44145
44182
|
queueId?: Maybe<Scalars['Long']['output']>;
|
|
44146
44183
|
queueUrl?: Maybe<Scalars['URL']['output']>;
|
|
44147
44184
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -45203,6 +45240,7 @@ export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
|
45203
45240
|
id: Scalars['ID']['output'];
|
|
45204
45241
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
45205
45242
|
jql: Scalars['String']['output'];
|
|
45243
|
+
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
45206
45244
|
name: Scalars['String']['output'];
|
|
45207
45245
|
};
|
|
45208
45246
|
export declare type JiraSystemFilterConnection = {
|
|
@@ -47072,6 +47110,11 @@ export declare type JsmChatAddConversationInteractionPayload = Payload & {
|
|
|
47072
47110
|
errors?: Maybe<Array<MutationError>>;
|
|
47073
47111
|
success: Scalars['Boolean']['output'];
|
|
47074
47112
|
};
|
|
47113
|
+
export declare type JsmChatAppendixActionItem = {
|
|
47114
|
+
__typename?: 'JsmChatAppendixActionItem';
|
|
47115
|
+
id: Scalars['String']['output'];
|
|
47116
|
+
label: Scalars['String']['output'];
|
|
47117
|
+
};
|
|
47075
47118
|
export declare enum JsmChatChannelExperienceId {
|
|
47076
47119
|
Helpcenter = "HELPCENTER",
|
|
47077
47120
|
Widget = "WIDGET"
|
|
@@ -47102,6 +47145,31 @@ export declare enum JsmChatConnectedApps {
|
|
|
47102
47145
|
Slack = "SLACK",
|
|
47103
47146
|
Teams = "TEAMS"
|
|
47104
47147
|
}
|
|
47148
|
+
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
47149
|
+
export declare type JsmChatConversationMessage = {
|
|
47150
|
+
__typename?: 'JsmChatConversationMessage';
|
|
47151
|
+
appendices?: Maybe<Array<Maybe<JsmChatConversationAppendixAction>>>;
|
|
47152
|
+
authorType?: Maybe<JsmChatConversationUserRole>;
|
|
47153
|
+
content?: Maybe<Scalars['JSON']['output']>;
|
|
47154
|
+
contentType?: Maybe<JsmChatConversationMessageContentType>;
|
|
47155
|
+
id: Scalars['ID']['output'];
|
|
47156
|
+
};
|
|
47157
|
+
export declare enum JsmChatConversationMessageContentType {
|
|
47158
|
+
Adf = "ADF"
|
|
47159
|
+
}
|
|
47160
|
+
export declare type JsmChatConversationUpdateQueryError = {
|
|
47161
|
+
__typename?: 'JsmChatConversationUpdateQueryError';
|
|
47162
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
47163
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
47164
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
47165
|
+
};
|
|
47166
|
+
export declare type JsmChatConversationUpdateSubscriptionPayload = JsmChatConversationMessage | JsmChatConversationUpdateQueryError | JsmChatSubscriptionEstablishedPayload;
|
|
47167
|
+
export declare enum JsmChatConversationUserRole {
|
|
47168
|
+
JsmAgent = "JSM_Agent",
|
|
47169
|
+
Participant = "Participant",
|
|
47170
|
+
Reporter = "Reporter",
|
|
47171
|
+
VirtualAgent = "VirtualAgent"
|
|
47172
|
+
}
|
|
47105
47173
|
export declare type JsmChatCreateChannelInput = {
|
|
47106
47174
|
channelName: Scalars['String']['input'];
|
|
47107
47175
|
channelType: JsmChatChannelType;
|
|
@@ -47179,6 +47247,11 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
|
|
|
47179
47247
|
export declare type JsmChatDisconnectMsTeamsJiraProjectInput = {
|
|
47180
47248
|
tenantId: Scalars['String']['input'];
|
|
47181
47249
|
};
|
|
47250
|
+
export declare type JsmChatDropdownAppendix = {
|
|
47251
|
+
__typename?: 'JsmChatDropdownAppendix';
|
|
47252
|
+
options: Array<Maybe<JsmChatAppendixActionItem>>;
|
|
47253
|
+
placeholder?: Maybe<Scalars['String']['output']>;
|
|
47254
|
+
};
|
|
47182
47255
|
export declare type JsmChatInitializeConfigRequest = {
|
|
47183
47256
|
activationId: Scalars['ID']['input'];
|
|
47184
47257
|
projectId: Scalars['ID']['input'];
|
|
@@ -47198,6 +47271,12 @@ export declare enum JsmChatInteractionType {
|
|
|
47198
47271
|
Dropdown = "DROPDOWN",
|
|
47199
47272
|
JiraField = "JIRA_FIELD"
|
|
47200
47273
|
}
|
|
47274
|
+
export declare type JsmChatJiraFieldAppendix = {
|
|
47275
|
+
__typename?: 'JsmChatJiraFieldAppendix';
|
|
47276
|
+
fieldId: Scalars['String']['output'];
|
|
47277
|
+
jiraProjectId: Scalars['String']['output'];
|
|
47278
|
+
requestTypeId: Scalars['String']['output'];
|
|
47279
|
+
};
|
|
47201
47280
|
export declare enum JsmChatMessageSource {
|
|
47202
47281
|
Email = "EMAIL"
|
|
47203
47282
|
}
|
|
@@ -47303,6 +47382,10 @@ export declare type JsmChatMutationUpdateMsTeamsProjectSettingsArgs = {
|
|
|
47303
47382
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
47304
47383
|
input: JsmChatUpdateProjectSettingsInput;
|
|
47305
47384
|
};
|
|
47385
|
+
export declare type JsmChatOptionAppendix = {
|
|
47386
|
+
__typename?: 'JsmChatOptionAppendix';
|
|
47387
|
+
options: Array<Maybe<JsmChatAppendixActionItem>>;
|
|
47388
|
+
};
|
|
47306
47389
|
export declare type JsmChatPaginationConfig = {
|
|
47307
47390
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
47308
47391
|
offset: Scalars['Int']['input'];
|
|
@@ -47370,6 +47453,17 @@ export declare type JsmChatSlackConfig = {
|
|
|
47370
47453
|
slackTeamUrl?: Maybe<Scalars['String']['output']>;
|
|
47371
47454
|
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
47372
47455
|
};
|
|
47456
|
+
export declare type JsmChatSubscription = {
|
|
47457
|
+
__typename?: 'JsmChatSubscription';
|
|
47458
|
+
onConversationUpdate?: Maybe<JsmChatConversationUpdateSubscriptionPayload>;
|
|
47459
|
+
};
|
|
47460
|
+
export declare type JsmChatSubscriptionOnConversationUpdateArgs = {
|
|
47461
|
+
conversationId: Scalars['ID']['input'];
|
|
47462
|
+
};
|
|
47463
|
+
export declare type JsmChatSubscriptionEstablishedPayload = {
|
|
47464
|
+
__typename?: 'JsmChatSubscriptionEstablishedPayload';
|
|
47465
|
+
id: Scalars['ID']['output'];
|
|
47466
|
+
};
|
|
47373
47467
|
export declare type JsmChatUpdateChannelSettingsInput = {
|
|
47374
47468
|
isDeflectionChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47375
47469
|
isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48010,7 +48104,9 @@ export declare type LayerScreenLookAndFeel = {
|
|
|
48010
48104
|
};
|
|
48011
48105
|
export declare enum LicenseOverrideState {
|
|
48012
48106
|
Active = "ACTIVE",
|
|
48107
|
+
Advanced = "ADVANCED",
|
|
48013
48108
|
Inactive = "INACTIVE",
|
|
48109
|
+
Standard = "STANDARD",
|
|
48014
48110
|
Trial = "TRIAL"
|
|
48015
48111
|
}
|
|
48016
48112
|
export declare enum LifecycleStage {
|
|
@@ -53375,7 +53471,6 @@ export declare type Query = {
|
|
|
53375
53471
|
confluenceLegacyInlineTasks?: Maybe<ConfluenceLegacyInlineTasksQueryResult>;
|
|
53376
53472
|
confluenceLegacyInternalFrontendResource?: Maybe<ConfluenceLegacyFrontendResourceRenderResponse>;
|
|
53377
53473
|
confluenceLegacyIsDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53378
|
-
confluenceLegacyIsEmailDomainPublic?: Maybe<Scalars['Boolean']['output']>;
|
|
53379
53474
|
confluenceLegacyIsMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
53380
53475
|
confluenceLegacyIsNewUser?: Maybe<Scalars['Boolean']['output']>;
|
|
53381
53476
|
confluenceLegacyIsSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -53501,7 +53596,6 @@ export declare type Query = {
|
|
|
53501
53596
|
extensionContext?: Maybe<ExtensionContext>;
|
|
53502
53597
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
53503
53598
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
53504
|
-
featureRelease?: Maybe<FeatureRelease>;
|
|
53505
53599
|
footerCommentV2?: Maybe<FooterCommentV2>;
|
|
53506
53600
|
footerCommentsV2ForBlogPost?: Maybe<FooterCommentV2Connection>;
|
|
53507
53601
|
footerCommentsV2ForPage?: Maybe<FooterCommentV2Connection>;
|
|
@@ -54925,6 +55019,7 @@ export declare enum RateLimitingCurrency {
|
|
|
54925
55019
|
PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
|
|
54926
55020
|
PolarisWriteCurrency = "POLARIS_WRITE_CURRENCY",
|
|
54927
55021
|
ShepherdDefaultCurrency = "SHEPHERD_DEFAULT_CURRENCY",
|
|
55022
|
+
ShepherdMultipleReadsCurrency = "SHEPHERD_MULTIPLE_READS_CURRENCY",
|
|
54928
55023
|
ShepherdReadAlertCurrency = "SHEPHERD_READ_ALERT_CURRENCY",
|
|
54929
55024
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
54930
55025
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
@@ -58524,6 +58619,7 @@ export declare type Subscription = {
|
|
|
58524
58619
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
58525
58620
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
58526
58621
|
jira?: Maybe<JiraSubscription>;
|
|
58622
|
+
jsmChat?: Maybe<JsmChatSubscription>;
|
|
58527
58623
|
migration: MigrationSubscription;
|
|
58528
58624
|
sandbox: SandboxSubscription;
|
|
58529
58625
|
signup: SignupSubscriptionApi;
|
|
@@ -59062,6 +59158,7 @@ export declare enum TeamMembershipRole {
|
|
|
59062
59158
|
Regular = "REGULAR"
|
|
59063
59159
|
}
|
|
59064
59160
|
export declare enum TeamMembershipSettings {
|
|
59161
|
+
External = "EXTERNAL",
|
|
59065
59162
|
MemberInvite = "MEMBER_INVITE",
|
|
59066
59163
|
Open = "OPEN"
|
|
59067
59164
|
}
|
|
@@ -61546,7 +61643,7 @@ export declare type UnifiedPayload = {
|
|
|
61546
61643
|
};
|
|
61547
61644
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
61548
61645
|
__typename?: 'UnifiedProfile';
|
|
61549
|
-
badges?: Maybe<
|
|
61646
|
+
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
61550
61647
|
bio?: Maybe<Scalars['String']['output']>;
|
|
61551
61648
|
company?: Maybe<Scalars['String']['output']>;
|
|
61552
61649
|
forums?: Maybe<UnifiedUForumsResult>;
|