@forge/cli-shared 5.4.0-next.2 → 5.4.0-next.3
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 +6 -0
- package/out/ari/ari.d.ts +18 -1
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +53 -2
- package/out/graphql/graphql-types.d.ts +308 -42
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +30 -4
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +1 -1
|
@@ -2138,6 +2138,22 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2138
2138
|
Updated = "UPDATED",
|
|
2139
2139
|
Votes = "VOTES"
|
|
2140
2140
|
}
|
|
2141
|
+
export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
2142
|
+
__typename?: 'BulkMutationErrorExtension';
|
|
2143
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
2144
|
+
id: Scalars['ID']['output'];
|
|
2145
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2146
|
+
};
|
|
2147
|
+
export declare type BulkUpdateCompassComponentsInput = {
|
|
2148
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2149
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
2150
|
+
};
|
|
2151
|
+
export declare type BulkUpdateCompassComponentsPayload = Payload & {
|
|
2152
|
+
__typename?: 'BulkUpdateCompassComponentsPayload';
|
|
2153
|
+
componentDetails?: Maybe<Array<CompassComponent>>;
|
|
2154
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2155
|
+
success: Scalars['Boolean']['output'];
|
|
2156
|
+
};
|
|
2141
2157
|
export declare type BurndownChart = {
|
|
2142
2158
|
__typename?: 'BurndownChart';
|
|
2143
2159
|
chart: BurndownChartData;
|
|
@@ -3236,6 +3252,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3236
3252
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3237
3253
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3238
3254
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3255
|
+
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
3239
3256
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3240
3257
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3241
3258
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
@@ -3430,6 +3447,9 @@ export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueAr
|
|
|
3430
3447
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
3431
3448
|
input: UpdateCompassComponentTypeInput;
|
|
3432
3449
|
};
|
|
3450
|
+
export declare type CompassCatalogMutationApiUpdateComponentsArgs = {
|
|
3451
|
+
input: BulkUpdateCompassComponentsInput;
|
|
3452
|
+
};
|
|
3433
3453
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3434
3454
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3435
3455
|
};
|
|
@@ -3643,6 +3663,7 @@ export declare type CompassComponent = Node & {
|
|
|
3643
3663
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3644
3664
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
3645
3665
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
3666
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
3646
3667
|
type: CompassComponentType;
|
|
3647
3668
|
typeId: Scalars['ID']['output'];
|
|
3648
3669
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
@@ -4872,9 +4893,11 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4872
4893
|
export declare type CompassGlobalPermissions = {
|
|
4873
4894
|
__typename?: 'CompassGlobalPermissions';
|
|
4874
4895
|
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4896
|
+
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4875
4897
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4876
4898
|
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4877
4899
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4900
|
+
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4878
4901
|
};
|
|
4879
4902
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4880
4903
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -5144,6 +5167,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
5144
5167
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
5145
5168
|
name?: Maybe<Scalars['String']['output']>;
|
|
5146
5169
|
type: CompassMetricDefinitionType;
|
|
5170
|
+
viewerPermissions?: Maybe<CompassMetricDefinitionInstancePermissions>;
|
|
5147
5171
|
};
|
|
5148
5172
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
5149
5173
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
@@ -5164,6 +5188,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
5164
5188
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
5165
5189
|
suffix: Scalars['String']['input'];
|
|
5166
5190
|
};
|
|
5191
|
+
export declare type CompassMetricDefinitionInstancePermissions = {
|
|
5192
|
+
__typename?: 'CompassMetricDefinitionInstancePermissions';
|
|
5193
|
+
canDelete?: Maybe<CompassPermissionResult>;
|
|
5194
|
+
canEdit?: Maybe<CompassPermissionResult>;
|
|
5195
|
+
};
|
|
5167
5196
|
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
5168
5197
|
export declare enum CompassMetricDefinitionType {
|
|
5169
5198
|
BuiltIn = "BUILT_IN",
|
|
@@ -14016,6 +14045,81 @@ export declare type ContentPlatformImageComponent = {
|
|
|
14016
14045
|
image: ContentPlatformImageAsset;
|
|
14017
14046
|
name: Scalars['String']['output'];
|
|
14018
14047
|
};
|
|
14048
|
+
export declare type ContentPlatformIpmAnchored = {
|
|
14049
|
+
__typename?: 'ContentPlatformIpmAnchored';
|
|
14050
|
+
anchoredElement: Scalars['String']['output'];
|
|
14051
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14052
|
+
relativeX: Scalars['Int']['output'];
|
|
14053
|
+
relativeY: Scalars['Int']['output'];
|
|
14054
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14055
|
+
};
|
|
14056
|
+
export declare type ContentPlatformIpmCompImage = {
|
|
14057
|
+
__typename?: 'ContentPlatformIpmCompImage';
|
|
14058
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14059
|
+
image: Scalars['JSON']['output'];
|
|
14060
|
+
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
14061
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14062
|
+
};
|
|
14063
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
14064
|
+
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
14065
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14066
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14067
|
+
videoAltText?: Maybe<Scalars['String']['output']>;
|
|
14068
|
+
videoProvider: Scalars['String']['output'];
|
|
14069
|
+
videoUrl: Scalars['String']['output'];
|
|
14070
|
+
};
|
|
14071
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion = ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
14072
|
+
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
14073
|
+
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
14074
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14075
|
+
buttonText: Scalars['String']['output'];
|
|
14076
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14077
|
+
requestTypeId: Scalars['String']['output'];
|
|
14078
|
+
serviceDeskId: Scalars['String']['output'];
|
|
14079
|
+
ticketSummary: Scalars['String']['output'];
|
|
14080
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14081
|
+
};
|
|
14082
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
14083
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentRemindMeLater;
|
|
14084
|
+
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
14085
|
+
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
14086
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14087
|
+
buttonText: Scalars['String']['output'];
|
|
14088
|
+
buttonUrl: Scalars['String']['output'];
|
|
14089
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14090
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14091
|
+
};
|
|
14092
|
+
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
14093
|
+
__typename?: 'ContentPlatformIpmComponentRemindMeLater';
|
|
14094
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14095
|
+
buttonSnoozeDays: Scalars['Int']['output'];
|
|
14096
|
+
buttonText: Scalars['String']['output'];
|
|
14097
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14098
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14099
|
+
};
|
|
14100
|
+
export declare type ContentPlatformIpmFlag = {
|
|
14101
|
+
__typename?: 'ContentPlatformIpmFlag';
|
|
14102
|
+
body: Scalars['JSON']['output'];
|
|
14103
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14104
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14105
|
+
ipmNumber: Scalars['String']['output'];
|
|
14106
|
+
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
14107
|
+
primaryButton: ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion;
|
|
14108
|
+
secondaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion>;
|
|
14109
|
+
title: Scalars['String']['output'];
|
|
14110
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14111
|
+
variant: Scalars['String']['output'];
|
|
14112
|
+
};
|
|
14113
|
+
export declare type ContentPlatformIpmFlagResultEdge = {
|
|
14114
|
+
__typename?: 'ContentPlatformIpmFlagResultEdge';
|
|
14115
|
+
cursor: Scalars['String']['output'];
|
|
14116
|
+
node: ContentPlatformIpmFlag;
|
|
14117
|
+
};
|
|
14118
|
+
export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
14119
|
+
__typename?: 'ContentPlatformIpmFlagSearchConnection';
|
|
14120
|
+
edges: Array<ContentPlatformIpmFlagResultEdge>;
|
|
14121
|
+
pageInfo: PageInfo;
|
|
14122
|
+
};
|
|
14019
14123
|
export declare type ContentPlatformIpmImageModal = {
|
|
14020
14124
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14021
14125
|
body: Scalars['JSON']['output'];
|
|
@@ -14039,6 +14143,13 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14039
14143
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14040
14144
|
pageInfo: PageInfo;
|
|
14041
14145
|
};
|
|
14146
|
+
export declare type ContentPlatformIpmPosition = {
|
|
14147
|
+
__typename?: 'ContentPlatformIpmPosition';
|
|
14148
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14149
|
+
positionOnPage: Scalars['String']['output'];
|
|
14150
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14151
|
+
};
|
|
14152
|
+
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
14042
14153
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14043
14154
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14044
14155
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14108,7 +14219,7 @@ export declare type ContentPlatformPricing = {
|
|
|
14108
14219
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14109
14220
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14110
14221
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14111
|
-
headline?: Maybe<Scalars['
|
|
14222
|
+
headline?: Maybe<Scalars['String']['output']>;
|
|
14112
14223
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14113
14224
|
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14114
14225
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14865,6 +14976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
14865
14976
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
14866
14977
|
name: Scalars['String']['input'];
|
|
14867
14978
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
14979
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
14868
14980
|
type?: InputMaybe<CompassComponentType>;
|
|
14869
14981
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
14870
14982
|
};
|
|
@@ -18039,6 +18151,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
18039
18151
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18040
18152
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18041
18153
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18154
|
+
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18042
18155
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18043
18156
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
18044
18157
|
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -20078,7 +20191,8 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
20078
20191
|
export declare enum ForgeMetricsApiRequestType {
|
|
20079
20192
|
Cache = "CACHE",
|
|
20080
20193
|
External = "EXTERNAL",
|
|
20081
|
-
Product = "PRODUCT"
|
|
20194
|
+
Product = "PRODUCT",
|
|
20195
|
+
Sql = "SQL"
|
|
20082
20196
|
}
|
|
20083
20197
|
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
20084
20198
|
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
@@ -38838,6 +38952,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
38838
38952
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
38839
38953
|
};
|
|
38840
38954
|
export declare type JiraCalendarVersionsInput = {
|
|
38955
|
+
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38841
38956
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
38842
38957
|
};
|
|
38843
38958
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -40965,6 +41080,11 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
40965
41080
|
type: Scalars['String']['output'];
|
|
40966
41081
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40967
41082
|
};
|
|
41083
|
+
export declare type JiraForgeAppEgressDeclaration = {
|
|
41084
|
+
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
41085
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
41086
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41087
|
+
};
|
|
40968
41088
|
export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40969
41089
|
__typename?: 'JiraForgeDateField';
|
|
40970
41090
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41000,13 +41120,31 @@ export declare enum JiraForgeEnvironmentType {
|
|
|
41000
41120
|
}
|
|
41001
41121
|
export declare type JiraForgeExtension = {
|
|
41002
41122
|
__typename?: 'JiraForgeExtension';
|
|
41123
|
+
appVersion: Scalars['String']['output'];
|
|
41124
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41125
|
+
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
41003
41126
|
environmentKey: Scalars['String']['output'];
|
|
41004
41127
|
environmentType: JiraForgeEnvironmentType;
|
|
41005
41128
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
41006
41129
|
id: Scalars['ID']['output'];
|
|
41130
|
+
installationId: Scalars['String']['output'];
|
|
41131
|
+
license?: Maybe<JiraForgeExtensionLicense>;
|
|
41007
41132
|
properties: Scalars['JSON']['output'];
|
|
41133
|
+
scopes: Array<Scalars['String']['output']>;
|
|
41008
41134
|
type: Scalars['String']['output'];
|
|
41009
41135
|
};
|
|
41136
|
+
export declare type JiraForgeExtensionLicense = {
|
|
41137
|
+
__typename?: 'JiraForgeExtensionLicense';
|
|
41138
|
+
active: Scalars['Boolean']['output'];
|
|
41139
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41140
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41141
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41142
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
41143
|
+
subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41144
|
+
supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
41145
|
+
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41146
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41147
|
+
};
|
|
41010
41148
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
41011
41149
|
__typename?: 'JiraForgeGroupField';
|
|
41012
41150
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41587,6 +41725,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41587
41725
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
41588
41726
|
comments?: Maybe<JiraCommentConnection>;
|
|
41589
41727
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
41728
|
+
createdField?: Maybe<JiraDateTimePickerField>;
|
|
41590
41729
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
41591
41730
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
41592
41731
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -41630,6 +41769,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41630
41769
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
41631
41770
|
priorityField?: Maybe<JiraPriorityField>;
|
|
41632
41771
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
41772
|
+
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
41633
41773
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
41634
41774
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
41635
41775
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -41639,7 +41779,10 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41639
41779
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
41640
41780
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
41641
41781
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41782
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41783
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
41642
41784
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41785
|
+
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41643
41786
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
41644
41787
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
41645
41788
|
};
|
|
@@ -42834,6 +42977,10 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
42834
42977
|
field?: Maybe<JiraIssueTypeField>;
|
|
42835
42978
|
success: Scalars['Boolean']['output'];
|
|
42836
42979
|
};
|
|
42980
|
+
export declare type JiraIssueTypeFilterInput = {
|
|
42981
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
42982
|
+
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
42983
|
+
};
|
|
42837
42984
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
42838
42985
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
42839
42986
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -44997,8 +45144,14 @@ export declare type JiraOrderFormattingRuleInput = {
|
|
|
44997
45144
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
44998
45145
|
__typename?: 'JiraOrderFormattingRulePayload';
|
|
44999
45146
|
errors?: Maybe<Array<MutationError>>;
|
|
45147
|
+
rules?: Maybe<JiraFormattingRuleConnection>;
|
|
45000
45148
|
success: Scalars['Boolean']['output'];
|
|
45001
45149
|
};
|
|
45150
|
+
export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
45151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45152
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45153
|
+
scope: Scalars['ID']['input'];
|
|
45154
|
+
};
|
|
45002
45155
|
export declare enum JiraOrganizationApprovalLocation {
|
|
45003
45156
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
45004
45157
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -45473,7 +45626,6 @@ export declare type JiraProject = Node & {
|
|
|
45473
45626
|
classificationTags: Array<Scalars['String']['output']>;
|
|
45474
45627
|
cloudId: Scalars['ID']['output'];
|
|
45475
45628
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
45476
|
-
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
45477
45629
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
45478
45630
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
45479
45631
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -45551,10 +45703,6 @@ export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
|
45551
45703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45552
45704
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45553
45705
|
};
|
|
45554
|
-
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
45555
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45556
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45557
|
-
};
|
|
45558
45706
|
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
45559
45707
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45560
45708
|
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
@@ -45585,6 +45733,7 @@ export declare type JiraProjectIntentTemplatesArgs = {
|
|
|
45585
45733
|
export declare type JiraProjectIssueTypesArgs = {
|
|
45586
45734
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45587
45735
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45736
|
+
filter?: InputMaybe<JiraIssueTypeFilterInput>;
|
|
45588
45737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45589
45738
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45590
45739
|
};
|
|
@@ -45690,30 +45839,6 @@ export declare enum JiraProjectActionType {
|
|
|
45690
45839
|
ViewIssues = "VIEW_ISSUES",
|
|
45691
45840
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45692
45841
|
}
|
|
45693
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
45694
|
-
id: Scalars['ID']['input'];
|
|
45695
|
-
};
|
|
45696
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
45697
|
-
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
45698
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45699
|
-
success: Scalars['Boolean']['output'];
|
|
45700
|
-
};
|
|
45701
|
-
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
45702
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
45703
|
-
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
45704
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45705
|
-
};
|
|
45706
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
45707
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
45708
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
45709
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
45710
|
-
pageInfo: PageInfo;
|
|
45711
|
-
};
|
|
45712
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
45713
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
45714
|
-
cursor: Scalars['String']['output'];
|
|
45715
|
-
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
45716
|
-
};
|
|
45717
45842
|
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45718
45843
|
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45719
45844
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -46719,8 +46844,9 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
46719
46844
|
key: JiraGlobalPermissionType;
|
|
46720
46845
|
};
|
|
46721
46846
|
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46847
|
+
cloudId: Scalars['ID']['input'];
|
|
46722
46848
|
permission: JiraProjectPermissionType;
|
|
46723
|
-
|
|
46849
|
+
projectKey: Scalars['String']['input'];
|
|
46724
46850
|
};
|
|
46725
46851
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
46726
46852
|
projectId: Scalars['ID']['input'];
|
|
@@ -52549,9 +52675,11 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
52549
52675
|
title: Scalars['String']['output'];
|
|
52550
52676
|
url: Scalars['String']['output'];
|
|
52551
52677
|
};
|
|
52678
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
52552
52679
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
52553
52680
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
52554
52681
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52682
|
+
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
52555
52683
|
url?: Maybe<Scalars['String']['output']>;
|
|
52556
52684
|
};
|
|
52557
52685
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
@@ -52566,6 +52694,15 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
52566
52694
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
52567
52695
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52568
52696
|
};
|
|
52697
|
+
export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
52698
|
+
__typename?: 'KnowledgeDiscoveryBookmarkProperties';
|
|
52699
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52700
|
+
keyPhrase: Scalars['String']['output'];
|
|
52701
|
+
lastModifiedTimestamp: Scalars['String']['output'];
|
|
52702
|
+
lastModifierAccountId: Scalars['String']['output'];
|
|
52703
|
+
title: Scalars['String']['output'];
|
|
52704
|
+
url: Scalars['String']['output'];
|
|
52705
|
+
};
|
|
52569
52706
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
52570
52707
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
52571
52708
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
@@ -52748,6 +52885,7 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
52748
52885
|
};
|
|
52749
52886
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
52750
52887
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
52888
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
52751
52889
|
adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
|
|
52752
52890
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
52753
52891
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
@@ -52758,6 +52896,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
52758
52896
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
52759
52897
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
52760
52898
|
};
|
|
52899
|
+
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
52900
|
+
cloudId: Scalars['ID']['input'];
|
|
52901
|
+
id: Scalars['ID']['input'];
|
|
52902
|
+
orgId: Scalars['String']['input'];
|
|
52903
|
+
};
|
|
52761
52904
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
52762
52905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52763
52906
|
cloudId: Scalars['ID']['input'];
|
|
@@ -52767,7 +52910,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52767
52910
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52768
52911
|
cloudId: Scalars['String']['input'];
|
|
52769
52912
|
keyPhrase: Scalars['String']['input'];
|
|
52770
|
-
workspaceId
|
|
52913
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52771
52914
|
};
|
|
52772
52915
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
52773
52916
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -53323,6 +53466,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
53323
53466
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53324
53467
|
appSoftwareId: Scalars['ID']['output'];
|
|
53325
53468
|
hosting: MarketplaceConsoleHosting;
|
|
53469
|
+
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53326
53470
|
};
|
|
53327
53471
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53328
53472
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53808,9 +53952,9 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
53808
53952
|
};
|
|
53809
53953
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
53810
53954
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53811
|
-
category?: Maybe<MarketplaceConsoleTagsContent
|
|
53812
|
-
keywords?: Maybe<MarketplaceConsoleTagsContent
|
|
53813
|
-
marketing?: Maybe<MarketplaceConsoleTagsContent
|
|
53955
|
+
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53956
|
+
keywords?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53957
|
+
marketing?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53814
53958
|
};
|
|
53815
53959
|
export declare type MarketplaceConsoleProductMetadata = {
|
|
53816
53960
|
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
@@ -53890,7 +54034,7 @@ export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
|
53890
54034
|
export declare type MarketplaceConsoleTagsContent = {
|
|
53891
54035
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53892
54036
|
id: Scalars['ID']['output'];
|
|
53893
|
-
name
|
|
54037
|
+
name: Scalars['String']['output'];
|
|
53894
54038
|
};
|
|
53895
54039
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
53896
54040
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
@@ -55156,6 +55300,129 @@ export declare type MercuryPreference = Node & {
|
|
|
55156
55300
|
key: Scalars['String']['output'];
|
|
55157
55301
|
value: Scalars['String']['output'];
|
|
55158
55302
|
};
|
|
55303
|
+
export declare type MercuryProvider = Node & {
|
|
55304
|
+
__typename?: 'MercuryProvider';
|
|
55305
|
+
configurationState: MercuryProviderConfigurationState;
|
|
55306
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55307
|
+
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
55308
|
+
id: Scalars['ID']['output'];
|
|
55309
|
+
key: Scalars['String']['output'];
|
|
55310
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55311
|
+
name: Scalars['String']['output'];
|
|
55312
|
+
};
|
|
55313
|
+
export declare type MercuryProviderAtlassianUser = {
|
|
55314
|
+
__typename?: 'MercuryProviderAtlassianUser';
|
|
55315
|
+
accountStatus: AccountStatus;
|
|
55316
|
+
id: Scalars['ID']['output'];
|
|
55317
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55318
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55319
|
+
};
|
|
55320
|
+
export declare type MercuryProviderConfigurationState = {
|
|
55321
|
+
__typename?: 'MercuryProviderConfigurationState';
|
|
55322
|
+
actionUrl?: Maybe<Scalars['URL']['output']>;
|
|
55323
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
55324
|
+
status: MercuryProviderConfigurationStatus;
|
|
55325
|
+
};
|
|
55326
|
+
export declare enum MercuryProviderConfigurationStatus {
|
|
55327
|
+
Connected = "CONNECTED",
|
|
55328
|
+
SignUp = "SIGN_UP"
|
|
55329
|
+
}
|
|
55330
|
+
export declare type MercuryProviderConnection = {
|
|
55331
|
+
__typename?: 'MercuryProviderConnection';
|
|
55332
|
+
edges?: Maybe<Array<Maybe<MercuryProviderEdge>>>;
|
|
55333
|
+
pageInfo: PageInfo;
|
|
55334
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55335
|
+
};
|
|
55336
|
+
export declare type MercuryProviderDetails = {
|
|
55337
|
+
__typename?: 'MercuryProviderDetails';
|
|
55338
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55339
|
+
name: Scalars['String']['output'];
|
|
55340
|
+
};
|
|
55341
|
+
export declare type MercuryProviderEdge = {
|
|
55342
|
+
__typename?: 'MercuryProviderEdge';
|
|
55343
|
+
cursor: Scalars['String']['output'];
|
|
55344
|
+
node?: Maybe<MercuryProvider>;
|
|
55345
|
+
};
|
|
55346
|
+
export declare type MercuryProviderExternalOwner = {
|
|
55347
|
+
__typename?: 'MercuryProviderExternalOwner';
|
|
55348
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55349
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55350
|
+
};
|
|
55351
|
+
export declare type MercuryProviderExternalUser = {
|
|
55352
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55353
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55354
|
+
};
|
|
55355
|
+
export declare type MercuryProviderMultiResolutionIcon = {
|
|
55356
|
+
__typename?: 'MercuryProviderMultiResolutionIcon';
|
|
55357
|
+
defaultUrl: Scalars['URL']['output'];
|
|
55358
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
55359
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
55360
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
55361
|
+
xlarge?: Maybe<Scalars['URL']['output']>;
|
|
55362
|
+
};
|
|
55363
|
+
export declare type MercuryProviderUser = {
|
|
55364
|
+
id: Scalars['ID']['output'];
|
|
55365
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55366
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55367
|
+
};
|
|
55368
|
+
export declare type MercuryProviderWork = {
|
|
55369
|
+
__typename?: 'MercuryProviderWork';
|
|
55370
|
+
externalOwner?: Maybe<MercuryProviderExternalOwner>;
|
|
55371
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
55372
|
+
id: Scalars['ID']['output'];
|
|
55373
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
55374
|
+
name: Scalars['String']['output'];
|
|
55375
|
+
owner?: Maybe<MercuryProviderAtlassianUser>;
|
|
55376
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55377
|
+
status?: Maybe<MercuryProviderWorkStatus>;
|
|
55378
|
+
targetDate?: Maybe<MercuryProviderWorkTargetDate>;
|
|
55379
|
+
url: Scalars['String']['output'];
|
|
55380
|
+
};
|
|
55381
|
+
export declare type MercuryProviderWorkConnection = {
|
|
55382
|
+
__typename?: 'MercuryProviderWorkConnection';
|
|
55383
|
+
edges?: Maybe<Array<Maybe<MercuryProviderWorkEdge>>>;
|
|
55384
|
+
pageInfo: PageInfo;
|
|
55385
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55386
|
+
};
|
|
55387
|
+
export declare type MercuryProviderWorkEdge = {
|
|
55388
|
+
__typename?: 'MercuryProviderWorkEdge';
|
|
55389
|
+
cursor: Scalars['String']['output'];
|
|
55390
|
+
node?: Maybe<MercuryWorkResult>;
|
|
55391
|
+
};
|
|
55392
|
+
export declare type MercuryProviderWorkError = Node & {
|
|
55393
|
+
__typename?: 'MercuryProviderWorkError';
|
|
55394
|
+
errorType: MercuryProviderWorkErrorType;
|
|
55395
|
+
id: Scalars['ID']['output'];
|
|
55396
|
+
message: Scalars['String']['output'];
|
|
55397
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55398
|
+
};
|
|
55399
|
+
export declare enum MercuryProviderWorkErrorType {
|
|
55400
|
+
Invalid = "INVALID",
|
|
55401
|
+
NotFound = "NOT_FOUND",
|
|
55402
|
+
NoPermissions = "NO_PERMISSIONS"
|
|
55403
|
+
}
|
|
55404
|
+
export declare type MercuryProviderWorkStatus = {
|
|
55405
|
+
__typename?: 'MercuryProviderWorkStatus';
|
|
55406
|
+
color: MercuryProviderWorkStatusColor;
|
|
55407
|
+
name: Scalars['String']['output'];
|
|
55408
|
+
};
|
|
55409
|
+
export declare enum MercuryProviderWorkStatusColor {
|
|
55410
|
+
Blue = "BLUE",
|
|
55411
|
+
Gray = "GRAY",
|
|
55412
|
+
Green = "GREEN",
|
|
55413
|
+
Red = "RED",
|
|
55414
|
+
Yellow = "YELLOW"
|
|
55415
|
+
}
|
|
55416
|
+
export declare type MercuryProviderWorkTargetDate = {
|
|
55417
|
+
__typename?: 'MercuryProviderWorkTargetDate';
|
|
55418
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
55419
|
+
targetDateType?: Maybe<MercuryProviderWorkTargetDateType>;
|
|
55420
|
+
};
|
|
55421
|
+
export declare enum MercuryProviderWorkTargetDateType {
|
|
55422
|
+
Day = "DAY",
|
|
55423
|
+
Month = "MONTH",
|
|
55424
|
+
Quarter = "QUARTER"
|
|
55425
|
+
}
|
|
55159
55426
|
export declare type MercuryQueryApi = {
|
|
55160
55427
|
__typename?: 'MercuryQueryApi';
|
|
55161
55428
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -55436,6 +55703,7 @@ export declare type MercuryUserEdge = {
|
|
|
55436
55703
|
cursor: Scalars['String']['output'];
|
|
55437
55704
|
node?: Maybe<User>;
|
|
55438
55705
|
};
|
|
55706
|
+
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
55439
55707
|
export declare type MercuryWorkspaceContext = {
|
|
55440
55708
|
__typename?: 'MercuryWorkspaceContext';
|
|
55441
55709
|
activationId: Scalars['String']['output'];
|
|
@@ -55776,7 +56044,6 @@ export declare type Mutation = {
|
|
|
55776
56044
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
55777
56045
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
55778
56046
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
55779
|
-
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
55780
56047
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
55781
56048
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
55782
56049
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -56533,9 +56800,6 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
56533
56800
|
export declare type MutationDeleteColumnArgs = {
|
|
56534
56801
|
input?: InputMaybe<DeleteColumnInput>;
|
|
56535
56802
|
};
|
|
56536
|
-
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
56537
|
-
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
56538
|
-
};
|
|
56539
56803
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
56540
56804
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
56541
56805
|
};
|
|
@@ -62469,7 +62733,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62469
62733
|
type: SearchResultType;
|
|
62470
62734
|
url: Scalars['URL']['output'];
|
|
62471
62735
|
};
|
|
62472
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalMessage | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62736
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62473
62737
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62474
62738
|
__typename?: 'SearchResultGoogleDocument';
|
|
62475
62739
|
bodyText: Scalars['String']['output'];
|
|
@@ -62527,6 +62791,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
62527
62791
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
62528
62792
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62529
62793
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62794
|
+
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
62530
62795
|
owner?: Maybe<ThirdPartyUser>;
|
|
62531
62796
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
62532
62797
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -67826,6 +68091,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
67826
68091
|
id: Scalars['ID']['input'];
|
|
67827
68092
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67828
68093
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68094
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
67829
68095
|
};
|
|
67830
68096
|
export declare type UpdateCompassComponentLinkInput = {
|
|
67831
68097
|
componentId: Scalars['ID']['input'];
|