@forge/cli-shared 5.4.0-next.2 → 5.4.0-next.4
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 +14 -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 +535 -229
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +127 -15
- 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 +2 -2
|
@@ -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,87 @@ 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?: Maybe<Scalars['String']['output']>;
|
|
14051
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14052
|
+
id: Scalars['String']['output'];
|
|
14053
|
+
relativeX?: Maybe<Scalars['Int']['output']>;
|
|
14054
|
+
relativeY?: Maybe<Scalars['Int']['output']>;
|
|
14055
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14056
|
+
};
|
|
14057
|
+
export declare type ContentPlatformIpmCompImage = {
|
|
14058
|
+
__typename?: 'ContentPlatformIpmCompImage';
|
|
14059
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14060
|
+
id: Scalars['String']['output'];
|
|
14061
|
+
image?: Maybe<Scalars['JSON']['output']>;
|
|
14062
|
+
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
14063
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14064
|
+
};
|
|
14065
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
14066
|
+
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
14067
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14068
|
+
id: Scalars['String']['output'];
|
|
14069
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14070
|
+
videoAltText?: Maybe<Scalars['String']['output']>;
|
|
14071
|
+
videoProvider?: Maybe<Scalars['String']['output']>;
|
|
14072
|
+
videoUrl?: Maybe<Scalars['String']['output']>;
|
|
14073
|
+
};
|
|
14074
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion = ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
14075
|
+
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
14076
|
+
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
14077
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14078
|
+
buttonText?: Maybe<Scalars['String']['output']>;
|
|
14079
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14080
|
+
id: Scalars['String']['output'];
|
|
14081
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
14082
|
+
serviceDeskId?: Maybe<Scalars['String']['output']>;
|
|
14083
|
+
ticketSummary?: Maybe<Scalars['String']['output']>;
|
|
14084
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14085
|
+
};
|
|
14086
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
14087
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentRemindMeLater;
|
|
14088
|
+
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
14089
|
+
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
14090
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14091
|
+
buttonText?: Maybe<Scalars['String']['output']>;
|
|
14092
|
+
buttonUrl?: Maybe<Scalars['String']['output']>;
|
|
14093
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14094
|
+
id: Scalars['String']['output'];
|
|
14095
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14096
|
+
};
|
|
14097
|
+
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
14098
|
+
__typename?: 'ContentPlatformIpmComponentRemindMeLater';
|
|
14099
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14100
|
+
buttonSnoozeDays: Scalars['Int']['output'];
|
|
14101
|
+
buttonText: Scalars['String']['output'];
|
|
14102
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14103
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14104
|
+
};
|
|
14105
|
+
export declare type ContentPlatformIpmFlag = {
|
|
14106
|
+
__typename?: 'ContentPlatformIpmFlag';
|
|
14107
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
14108
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14109
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14110
|
+
id: Scalars['String']['output'];
|
|
14111
|
+
ipmNumber?: Maybe<Scalars['String']['output']>;
|
|
14112
|
+
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
14113
|
+
primaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion>;
|
|
14114
|
+
secondaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion>;
|
|
14115
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14116
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14117
|
+
variant?: Maybe<Scalars['String']['output']>;
|
|
14118
|
+
};
|
|
14119
|
+
export declare type ContentPlatformIpmFlagResultEdge = {
|
|
14120
|
+
__typename?: 'ContentPlatformIpmFlagResultEdge';
|
|
14121
|
+
cursor: Scalars['String']['output'];
|
|
14122
|
+
node: ContentPlatformIpmFlag;
|
|
14123
|
+
};
|
|
14124
|
+
export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
14125
|
+
__typename?: 'ContentPlatformIpmFlagSearchConnection';
|
|
14126
|
+
edges: Array<ContentPlatformIpmFlagResultEdge>;
|
|
14127
|
+
pageInfo: PageInfo;
|
|
14128
|
+
};
|
|
14019
14129
|
export declare type ContentPlatformIpmImageModal = {
|
|
14020
14130
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14021
14131
|
body: Scalars['JSON']['output'];
|
|
@@ -14039,6 +14149,14 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14039
14149
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14040
14150
|
pageInfo: PageInfo;
|
|
14041
14151
|
};
|
|
14152
|
+
export declare type ContentPlatformIpmPosition = {
|
|
14153
|
+
__typename?: 'ContentPlatformIpmPosition';
|
|
14154
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14155
|
+
id: Scalars['String']['output'];
|
|
14156
|
+
positionOnPage?: Maybe<Scalars['String']['output']>;
|
|
14157
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14158
|
+
};
|
|
14159
|
+
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
14042
14160
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14043
14161
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14044
14162
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14108,7 +14226,7 @@ export declare type ContentPlatformPricing = {
|
|
|
14108
14226
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14109
14227
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14110
14228
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14111
|
-
headline?: Maybe<Scalars['
|
|
14229
|
+
headline?: Maybe<Scalars['String']['output']>;
|
|
14112
14230
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14113
14231
|
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14114
14232
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14865,6 +14983,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
14865
14983
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
14866
14984
|
name: Scalars['String']['input'];
|
|
14867
14985
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
14986
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
14868
14987
|
type?: InputMaybe<CompassComponentType>;
|
|
14869
14988
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
14870
14989
|
};
|
|
@@ -16473,6 +16592,12 @@ export declare type DeleteWebTriggerUrlResponse = MutationResponse & {
|
|
|
16473
16592
|
statusCode: Scalars['Int']['output'];
|
|
16474
16593
|
success: Scalars['Boolean']['output'];
|
|
16475
16594
|
};
|
|
16595
|
+
export declare type DemoMercuryFocusArea = {
|
|
16596
|
+
__typename?: 'DemoMercuryFocusArea';
|
|
16597
|
+
ari: Scalars['String']['output'];
|
|
16598
|
+
id: Scalars['ID']['output'];
|
|
16599
|
+
name: Scalars['String']['output'];
|
|
16600
|
+
};
|
|
16476
16601
|
export declare type DeploymentPipeline = {
|
|
16477
16602
|
__typename?: 'DeploymentPipeline';
|
|
16478
16603
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -18039,6 +18164,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
18039
18164
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18040
18165
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18041
18166
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18167
|
+
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18042
18168
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18043
18169
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
18044
18170
|
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18810,8 +18936,10 @@ export declare type ExtensionContextAppAuditLogsArgs = {
|
|
|
18810
18936
|
};
|
|
18811
18937
|
export declare type ExtensionContextExtensionsArgs = {
|
|
18812
18938
|
filter: Array<ExtensionContextsFilter>;
|
|
18939
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18813
18940
|
};
|
|
18814
18941
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
18942
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18815
18943
|
principalType?: InputMaybe<PrincipalType>;
|
|
18816
18944
|
type: Scalars['String']['input'];
|
|
18817
18945
|
};
|
|
@@ -20078,7 +20206,8 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
20078
20206
|
export declare enum ForgeMetricsApiRequestType {
|
|
20079
20207
|
Cache = "CACHE",
|
|
20080
20208
|
External = "EXTERNAL",
|
|
20081
|
-
Product = "PRODUCT"
|
|
20209
|
+
Product = "PRODUCT",
|
|
20210
|
+
Sql = "SQL"
|
|
20082
20211
|
}
|
|
20083
20212
|
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
20084
20213
|
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
@@ -34939,6 +35068,174 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
34939
35068
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
34940
35069
|
entityId: Scalars['String']['input'];
|
|
34941
35070
|
};
|
|
35071
|
+
export declare type GrowthUnifiedProfileAnchor = {
|
|
35072
|
+
__typename?: 'GrowthUnifiedProfileAnchor';
|
|
35073
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
35074
|
+
type?: Maybe<GrowthUnifiedProfileAnchorType>;
|
|
35075
|
+
};
|
|
35076
|
+
export declare enum GrowthUnifiedProfileAnchorType {
|
|
35077
|
+
Pfm = "PFM",
|
|
35078
|
+
Seo = "SEO"
|
|
35079
|
+
}
|
|
35080
|
+
export declare type GrowthUnifiedProfileChannel = {
|
|
35081
|
+
__typename?: 'GrowthUnifiedProfileChannel';
|
|
35082
|
+
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
35083
|
+
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
35084
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35085
|
+
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
35086
|
+
};
|
|
35087
|
+
export declare enum GrowthUnifiedProfileChannelName {
|
|
35088
|
+
Comarketing = "COMARKETING",
|
|
35089
|
+
Direct = "DIRECT",
|
|
35090
|
+
Email = "EMAIL",
|
|
35091
|
+
EngagementEngine = "ENGAGEMENT_ENGINE",
|
|
35092
|
+
InProductReferral = "IN_PRODUCT_REFERRAL",
|
|
35093
|
+
Organic = "ORGANIC",
|
|
35094
|
+
Other = "OTHER",
|
|
35095
|
+
PaidAffiliate = "PAID_AFFILIATE",
|
|
35096
|
+
PaidDisplay = "PAID_DISPLAY",
|
|
35097
|
+
PaidReviewSites = "PAID_REVIEW_SITES",
|
|
35098
|
+
PaidSearchBranded = "PAID_SEARCH_BRANDED",
|
|
35099
|
+
PaidSearchNonBranded = "PAID_SEARCH_NON_BRANDED",
|
|
35100
|
+
PaidSocial = "PAID_SOCIAL",
|
|
35101
|
+
ReferralExternal = "REFERRAL_EXTERNAL",
|
|
35102
|
+
ReferralInternal = "REFERRAL_INTERNAL",
|
|
35103
|
+
SelfReferral = "SELF_REFERRAL",
|
|
35104
|
+
SlackAppDirectory = "SLACK_APP_DIRECTORY",
|
|
35105
|
+
Suppress = "SUPPRESS",
|
|
35106
|
+
UnpaidSocial = "UNPAID_SOCIAL",
|
|
35107
|
+
UnpaidVideo = "UNPAID_VIDEO"
|
|
35108
|
+
}
|
|
35109
|
+
export declare type GrowthUnifiedProfileCompany = {
|
|
35110
|
+
__typename?: 'GrowthUnifiedProfileCompany';
|
|
35111
|
+
accountStatus?: Maybe<GrowthUnifiedProfileEnterpriseAccountStatus>;
|
|
35112
|
+
annualRevenue?: Maybe<Scalars['Int']['output']>;
|
|
35113
|
+
businessName?: Maybe<Scalars['String']['output']>;
|
|
35114
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35115
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
35116
|
+
employeeStrength?: Maybe<Scalars['Int']['output']>;
|
|
35117
|
+
enterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
35118
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
35119
|
+
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
35120
|
+
sector?: Maybe<Scalars['String']['output']>;
|
|
35121
|
+
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
35122
|
+
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
35123
|
+
};
|
|
35124
|
+
export declare enum GrowthUnifiedProfileCompanySize {
|
|
35125
|
+
Large = "LARGE",
|
|
35126
|
+
Medium = "MEDIUM",
|
|
35127
|
+
Small = "SMALL",
|
|
35128
|
+
Unknown = "UNKNOWN"
|
|
35129
|
+
}
|
|
35130
|
+
export declare enum GrowthUnifiedProfileCompanyType {
|
|
35131
|
+
Private = "PRIVATE",
|
|
35132
|
+
Public = "PUBLIC"
|
|
35133
|
+
}
|
|
35134
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
35135
|
+
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
35136
|
+
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd>;
|
|
35137
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35138
|
+
};
|
|
35139
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
35140
|
+
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd>;
|
|
35141
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35142
|
+
};
|
|
35143
|
+
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
35144
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
35145
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
35146
|
+
unifiedProfile: GrowthUnifiedProfileInput;
|
|
35147
|
+
};
|
|
35148
|
+
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
35149
|
+
Complete = "COMPLETE",
|
|
35150
|
+
Error = "ERROR",
|
|
35151
|
+
InProgress = "IN_PROGRESS",
|
|
35152
|
+
Pending = "PENDING"
|
|
35153
|
+
}
|
|
35154
|
+
export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
35155
|
+
Bronze = "BRONZE",
|
|
35156
|
+
Gam = "GAM",
|
|
35157
|
+
Gold = "GOLD",
|
|
35158
|
+
Platimun = "PLATIMUN",
|
|
35159
|
+
Silver = "SILVER"
|
|
35160
|
+
}
|
|
35161
|
+
export declare enum GrowthUnifiedProfileEntityType {
|
|
35162
|
+
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
35163
|
+
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
35164
|
+
Org = "ORG",
|
|
35165
|
+
Site = "SITE"
|
|
35166
|
+
}
|
|
35167
|
+
export declare type GrowthUnifiedProfileInput = {
|
|
35168
|
+
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
35169
|
+
};
|
|
35170
|
+
export declare enum GrowthUnifiedProfileJtbd {
|
|
35171
|
+
Budgets = "BUDGETS",
|
|
35172
|
+
CdWrtng = "CD_WRTNG",
|
|
35173
|
+
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
35174
|
+
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
35175
|
+
MarketingContent = "MARKETING_CONTENT",
|
|
35176
|
+
PlanAndManage = "PLAN_AND_MANAGE",
|
|
35177
|
+
ProjectPlanning = "PROJECT_PLANNING",
|
|
35178
|
+
ProjectProgress = "PROJECT_PROGRESS",
|
|
35179
|
+
Stakeholders = "STAKEHOLDERS",
|
|
35180
|
+
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
35181
|
+
TrackingRprtng = "TRACKING_RPRTNG",
|
|
35182
|
+
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
35183
|
+
}
|
|
35184
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
35185
|
+
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
35186
|
+
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
35187
|
+
jiraFamiliarity?: Maybe<Scalars['Int']['output']>;
|
|
35188
|
+
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd>;
|
|
35189
|
+
persona?: Maybe<Scalars['String']['output']>;
|
|
35190
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
35191
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35192
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35193
|
+
};
|
|
35194
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
35195
|
+
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
35196
|
+
jiraFamiliarity?: InputMaybe<Scalars['Int']['input']>;
|
|
35197
|
+
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd>;
|
|
35198
|
+
persona?: InputMaybe<Scalars['String']['input']>;
|
|
35199
|
+
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
35200
|
+
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
35201
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35202
|
+
};
|
|
35203
|
+
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
35204
|
+
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
35205
|
+
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
35206
|
+
jira?: Maybe<GrowthUnifiedProfileJiraOnboardingContext>;
|
|
35207
|
+
};
|
|
35208
|
+
export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
35209
|
+
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
35210
|
+
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
35211
|
+
};
|
|
35212
|
+
export declare type GrowthUnifiedProfileResult = {
|
|
35213
|
+
__typename?: 'GrowthUnifiedProfileResult';
|
|
35214
|
+
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
35215
|
+
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
35216
|
+
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
35217
|
+
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
35218
|
+
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
35219
|
+
};
|
|
35220
|
+
export declare enum GrowthUnifiedProfileTeamType {
|
|
35221
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
35222
|
+
Design = "DESIGN",
|
|
35223
|
+
Finance = "FINANCE",
|
|
35224
|
+
HumanResources = "HUMAN_RESOURCES",
|
|
35225
|
+
ItSupport = "IT_SUPPORT",
|
|
35226
|
+
Legal = "LEGAL",
|
|
35227
|
+
Marketing = "MARKETING",
|
|
35228
|
+
Operations = "OPERATIONS",
|
|
35229
|
+
Other = "OTHER",
|
|
35230
|
+
Sales = "SALES",
|
|
35231
|
+
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
35232
|
+
}
|
|
35233
|
+
export declare type GrowthUnifiedProfileUtm = {
|
|
35234
|
+
__typename?: 'GrowthUnifiedProfileUtm';
|
|
35235
|
+
keyword?: Maybe<Scalars['String']['output']>;
|
|
35236
|
+
medium?: Maybe<Scalars['String']['output']>;
|
|
35237
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
35238
|
+
};
|
|
34942
35239
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
34943
35240
|
__typename?: 'HamsAccountDetails';
|
|
34944
35241
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -37811,29 +38108,6 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
37811
38108
|
export declare type JiraAffectedServicesInput = {
|
|
37812
38109
|
serviceId: Scalars['ID']['input'];
|
|
37813
38110
|
};
|
|
37814
|
-
export declare type JiraAgileReleaseTrain = {
|
|
37815
|
-
__typename?: 'JiraAgileReleaseTrain';
|
|
37816
|
-
boards?: Maybe<Array<Maybe<JiraSafeBoard>>>;
|
|
37817
|
-
id: Scalars['ID']['output'];
|
|
37818
|
-
project?: Maybe<JiraProject>;
|
|
37819
|
-
teamBoards?: Maybe<JiraSafeTeamBoardConnection>;
|
|
37820
|
-
};
|
|
37821
|
-
export declare type JiraAgileReleaseTrainTeamBoardsArgs = {
|
|
37822
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37823
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
37824
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37825
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37826
|
-
};
|
|
37827
|
-
export declare type JiraAgileReleaseTrainConnection = {
|
|
37828
|
-
__typename?: 'JiraAgileReleaseTrainConnection';
|
|
37829
|
-
edges?: Maybe<Array<Maybe<JiraAgileReleaseTrainEdge>>>;
|
|
37830
|
-
pageInfo: PageInfo;
|
|
37831
|
-
};
|
|
37832
|
-
export declare type JiraAgileReleaseTrainEdge = {
|
|
37833
|
-
__typename?: 'JiraAgileReleaseTrainEdge';
|
|
37834
|
-
cursor: Scalars['String']['output'];
|
|
37835
|
-
node?: Maybe<JiraAgileReleaseTrain>;
|
|
37836
|
-
};
|
|
37837
38111
|
export declare type JiraAiEnablementIssueInput = {
|
|
37838
38112
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
37839
38113
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38838,6 +39112,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
38838
39112
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
38839
39113
|
};
|
|
38840
39114
|
export declare type JiraCalendarVersionsInput = {
|
|
39115
|
+
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38841
39116
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
38842
39117
|
};
|
|
38843
39118
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -39623,13 +39898,6 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
39623
39898
|
isVisible: Scalars['Boolean']['input'];
|
|
39624
39899
|
menuId: Scalars['String']['input'];
|
|
39625
39900
|
};
|
|
39626
|
-
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
39627
|
-
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
39628
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
39629
|
-
id: Scalars['ID']['output'];
|
|
39630
|
-
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
39631
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
39632
|
-
};
|
|
39633
39901
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
39634
39902
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
39635
39903
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -39798,19 +40066,6 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
39798
40066
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
39799
40067
|
};
|
|
39800
40068
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
39801
|
-
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
39802
|
-
cloudId: Scalars['ID']['input'];
|
|
39803
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39804
|
-
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
39805
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39806
|
-
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39807
|
-
};
|
|
39808
|
-
export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
39809
|
-
__typename?: 'JiraCreateAgileReleaseTrainPayload';
|
|
39810
|
-
agileReleaseTrain?: Maybe<JiraAgileReleaseTrain>;
|
|
39811
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39812
|
-
success: Scalars['Boolean']['output'];
|
|
39813
|
-
};
|
|
39814
40069
|
export declare type JiraCreateAppNavigationItemInput = {
|
|
39815
40070
|
appId: Scalars['ID']['input'];
|
|
39816
40071
|
scopeId: Scalars['ID']['input'];
|
|
@@ -39904,32 +40159,12 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
39904
40159
|
errors?: Maybe<Array<MutationError>>;
|
|
39905
40160
|
success: Scalars['Boolean']['output'];
|
|
39906
40161
|
};
|
|
39907
|
-
export declare type JiraCreateLargeSolutionInput = {
|
|
39908
|
-
cloudId: Scalars['ID']['input'];
|
|
39909
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39910
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39911
|
-
};
|
|
39912
|
-
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
39913
|
-
__typename?: 'JiraCreateLargeSolutionPayload';
|
|
39914
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39915
|
-
largeSolution?: Maybe<JiraLargeSolution>;
|
|
39916
|
-
success: Scalars['Boolean']['output'];
|
|
39917
|
-
};
|
|
39918
40162
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
39919
40163
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
39920
40164
|
errors?: Maybe<Array<MutationError>>;
|
|
39921
40165
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
39922
40166
|
success: Scalars['Boolean']['output'];
|
|
39923
40167
|
};
|
|
39924
|
-
export declare type JiraCreatePlanInput = {
|
|
39925
|
-
cloudId: Scalars['ID']['input'];
|
|
39926
|
-
};
|
|
39927
|
-
export declare type JiraCreatePlanPayload = Payload & {
|
|
39928
|
-
__typename?: 'JiraCreatePlanPayload';
|
|
39929
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39930
|
-
plan?: Maybe<JiraPlan>;
|
|
39931
|
-
success: Scalars['Boolean']['output'];
|
|
39932
|
-
};
|
|
39933
40168
|
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
39934
40169
|
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
39935
40170
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -39955,19 +40190,6 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
39955
40190
|
success: Scalars['Boolean']['output'];
|
|
39956
40191
|
version?: Maybe<JiraVersion>;
|
|
39957
40192
|
};
|
|
39958
|
-
export declare type JiraCreateSafeGlobalDataInput = {
|
|
39959
|
-
cloudId: Scalars['ID']['input'];
|
|
39960
|
-
};
|
|
39961
|
-
export declare type JiraCreateSafeGlobalDataPayload = Payload & {
|
|
39962
|
-
__typename?: 'JiraCreateSafeGlobalDataPayload';
|
|
39963
|
-
configuration?: Maybe<JiraSafeConfiguration>;
|
|
39964
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39965
|
-
success: Scalars['Boolean']['output'];
|
|
39966
|
-
};
|
|
39967
|
-
export declare type JiraCreateScaledConfiguratorProjectInput = {
|
|
39968
|
-
projectKey: Scalars['String']['input'];
|
|
39969
|
-
projectName: Scalars['String']['input'];
|
|
39970
|
-
};
|
|
39971
40193
|
export declare type JiraCreateShortcutInput = {
|
|
39972
40194
|
projectId: Scalars['ID']['input'];
|
|
39973
40195
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -40965,6 +41187,11 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
40965
41187
|
type: Scalars['String']['output'];
|
|
40966
41188
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40967
41189
|
};
|
|
41190
|
+
export declare type JiraForgeAppEgressDeclaration = {
|
|
41191
|
+
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
41192
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
41193
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41194
|
+
};
|
|
40968
41195
|
export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40969
41196
|
__typename?: 'JiraForgeDateField';
|
|
40970
41197
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41000,13 +41227,31 @@ export declare enum JiraForgeEnvironmentType {
|
|
|
41000
41227
|
}
|
|
41001
41228
|
export declare type JiraForgeExtension = {
|
|
41002
41229
|
__typename?: 'JiraForgeExtension';
|
|
41230
|
+
appVersion: Scalars['String']['output'];
|
|
41231
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41232
|
+
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
41003
41233
|
environmentKey: Scalars['String']['output'];
|
|
41004
41234
|
environmentType: JiraForgeEnvironmentType;
|
|
41005
41235
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
41006
41236
|
id: Scalars['ID']['output'];
|
|
41237
|
+
installationId: Scalars['String']['output'];
|
|
41238
|
+
license?: Maybe<JiraForgeExtensionLicense>;
|
|
41007
41239
|
properties: Scalars['JSON']['output'];
|
|
41240
|
+
scopes: Array<Scalars['String']['output']>;
|
|
41008
41241
|
type: Scalars['String']['output'];
|
|
41009
41242
|
};
|
|
41243
|
+
export declare type JiraForgeExtensionLicense = {
|
|
41244
|
+
__typename?: 'JiraForgeExtensionLicense';
|
|
41245
|
+
active: Scalars['Boolean']['output'];
|
|
41246
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41247
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41248
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41249
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
41250
|
+
subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41251
|
+
supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
41252
|
+
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41253
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41254
|
+
};
|
|
41010
41255
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
41011
41256
|
__typename?: 'JiraForgeGroupField';
|
|
41012
41257
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41587,6 +41832,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41587
41832
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
41588
41833
|
comments?: Maybe<JiraCommentConnection>;
|
|
41589
41834
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
41835
|
+
createdField?: Maybe<JiraDateTimePickerField>;
|
|
41590
41836
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
41591
41837
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
41592
41838
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -41630,6 +41876,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41630
41876
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
41631
41877
|
priorityField?: Maybe<JiraPriorityField>;
|
|
41632
41878
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
41879
|
+
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
41633
41880
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
41634
41881
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
41635
41882
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -41639,7 +41886,10 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41639
41886
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
41640
41887
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
41641
41888
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41889
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41890
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
41642
41891
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41892
|
+
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41643
41893
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
41644
41894
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
41645
41895
|
};
|
|
@@ -42834,6 +43084,10 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
42834
43084
|
field?: Maybe<JiraIssueTypeField>;
|
|
42835
43085
|
success: Scalars['Boolean']['output'];
|
|
42836
43086
|
};
|
|
43087
|
+
export declare type JiraIssueTypeFilterInput = {
|
|
43088
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43089
|
+
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43090
|
+
};
|
|
42837
43091
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
42838
43092
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
42839
43093
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43497,29 +43751,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
43497
43751
|
export declare type JiraLabelsInput = {
|
|
43498
43752
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
43499
43753
|
};
|
|
43500
|
-
export declare type JiraLargeSolution = {
|
|
43501
|
-
__typename?: 'JiraLargeSolution';
|
|
43502
|
-
agileReleaseTrains?: Maybe<Array<Maybe<JiraAgileReleaseTrain>>>;
|
|
43503
|
-
id: Scalars['ID']['output'];
|
|
43504
|
-
project?: Maybe<JiraProject>;
|
|
43505
|
-
releaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
43506
|
-
};
|
|
43507
|
-
export declare type JiraLargeSolutionReleaseTrainsArgs = {
|
|
43508
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43509
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
43510
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43511
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43512
|
-
};
|
|
43513
|
-
export declare type JiraLargeSolutionConnection = {
|
|
43514
|
-
__typename?: 'JiraLargeSolutionConnection';
|
|
43515
|
-
edges?: Maybe<Array<Maybe<JiraLargeSolutionEdge>>>;
|
|
43516
|
-
pageInfo: PageInfo;
|
|
43517
|
-
};
|
|
43518
|
-
export declare type JiraLargeSolutionEdge = {
|
|
43519
|
-
__typename?: 'JiraLargeSolutionEdge';
|
|
43520
|
-
cursor: Scalars['String']['output'];
|
|
43521
|
-
node?: Maybe<JiraLargeSolution>;
|
|
43522
|
-
};
|
|
43523
43754
|
export declare type JiraLegacyTeamFieldOperationInput = {
|
|
43524
43755
|
operation: JiraSingleValueFieldOperations;
|
|
43525
43756
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -43913,7 +44144,6 @@ export declare type JiraMutation = {
|
|
|
43913
44144
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
43914
44145
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43915
44146
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43916
|
-
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43917
44147
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43918
44148
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43919
44149
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
@@ -43928,12 +44158,9 @@ export declare type JiraMutation = {
|
|
|
43928
44158
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
43929
44159
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
43930
44160
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
43931
|
-
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
43932
44161
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
43933
44162
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
43934
44163
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
43935
|
-
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
43936
|
-
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
43937
44164
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43938
44165
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
43939
44166
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
@@ -44091,9 +44318,6 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
44091
44318
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44092
44319
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44093
44320
|
};
|
|
44094
|
-
export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
44095
|
-
input: JiraCreateAgileReleaseTrainInput;
|
|
44096
|
-
};
|
|
44097
44321
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
44098
44322
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
44099
44323
|
};
|
|
@@ -44145,9 +44369,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
44145
44369
|
cloudId: Scalars['ID']['input'];
|
|
44146
44370
|
input: JiraWorkManagementCreateOverviewInput;
|
|
44147
44371
|
};
|
|
44148
|
-
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
44149
|
-
input: JiraCreateLargeSolutionInput;
|
|
44150
|
-
};
|
|
44151
44372
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
44152
44373
|
cloudId: Scalars['ID']['input'];
|
|
44153
44374
|
};
|
|
@@ -44157,12 +44378,6 @@ export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
|
44157
44378
|
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
44158
44379
|
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
44159
44380
|
};
|
|
44160
|
-
export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
44161
|
-
input: JiraCreateSafeGlobalDataInput;
|
|
44162
|
-
};
|
|
44163
|
-
export declare type JiraMutationCreateSafePlanArgs = {
|
|
44164
|
-
input: JiraCreatePlanInput;
|
|
44165
|
-
};
|
|
44166
44381
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
44167
44382
|
input: JiraCreateSimpleNavigationItemInput;
|
|
44168
44383
|
};
|
|
@@ -44997,8 +45212,14 @@ export declare type JiraOrderFormattingRuleInput = {
|
|
|
44997
45212
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
44998
45213
|
__typename?: 'JiraOrderFormattingRulePayload';
|
|
44999
45214
|
errors?: Maybe<Array<MutationError>>;
|
|
45215
|
+
rules?: Maybe<JiraFormattingRuleConnection>;
|
|
45000
45216
|
success: Scalars['Boolean']['output'];
|
|
45001
45217
|
};
|
|
45218
|
+
export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
45219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45221
|
+
scope: Scalars['ID']['input'];
|
|
45222
|
+
};
|
|
45002
45223
|
export declare enum JiraOrganizationApprovalLocation {
|
|
45003
45224
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
45004
45225
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -45473,7 +45694,6 @@ export declare type JiraProject = Node & {
|
|
|
45473
45694
|
classificationTags: Array<Scalars['String']['output']>;
|
|
45474
45695
|
cloudId: Scalars['ID']['output'];
|
|
45475
45696
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
45476
|
-
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
45477
45697
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
45478
45698
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
45479
45699
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -45551,10 +45771,6 @@ export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
|
45551
45771
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45552
45772
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45553
45773
|
};
|
|
45554
|
-
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
45555
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45556
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45557
|
-
};
|
|
45558
45774
|
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
45559
45775
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45560
45776
|
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
@@ -45585,6 +45801,7 @@ export declare type JiraProjectIntentTemplatesArgs = {
|
|
|
45585
45801
|
export declare type JiraProjectIssueTypesArgs = {
|
|
45586
45802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45587
45803
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45804
|
+
filter?: InputMaybe<JiraIssueTypeFilterInput>;
|
|
45588
45805
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45589
45806
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45590
45807
|
};
|
|
@@ -45690,30 +45907,6 @@ export declare enum JiraProjectActionType {
|
|
|
45690
45907
|
ViewIssues = "VIEW_ISSUES",
|
|
45691
45908
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45692
45909
|
}
|
|
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
45910
|
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45718
45911
|
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45719
45912
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -46420,8 +46613,6 @@ export declare type JiraQuery = {
|
|
|
46420
46613
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
46421
46614
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
46422
46615
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
46423
|
-
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
46424
|
-
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46425
46616
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46426
46617
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46427
46618
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
@@ -46719,8 +46910,9 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
46719
46910
|
key: JiraGlobalPermissionType;
|
|
46720
46911
|
};
|
|
46721
46912
|
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46913
|
+
cloudId: Scalars['ID']['input'];
|
|
46722
46914
|
permission: JiraProjectPermissionType;
|
|
46723
|
-
|
|
46915
|
+
projectKey: Scalars['String']['input'];
|
|
46724
46916
|
};
|
|
46725
46917
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
46726
46918
|
projectId: Scalars['ID']['input'];
|
|
@@ -47160,13 +47352,6 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
47160
47352
|
keyword: Scalars['String']['input'];
|
|
47161
47353
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47162
47354
|
};
|
|
47163
|
-
export declare type JiraQueryScaledConfigurationArgs = {
|
|
47164
|
-
cloudId: Scalars['ID']['input'];
|
|
47165
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
47166
|
-
};
|
|
47167
|
-
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
47168
|
-
cloudId: Scalars['ID']['input'];
|
|
47169
|
-
};
|
|
47170
47355
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
47171
47356
|
issueId: Scalars['ID']['input'];
|
|
47172
47357
|
};
|
|
@@ -47826,68 +48011,6 @@ export declare type JiraRoleEdge = {
|
|
|
47826
48011
|
cursor: Scalars['String']['output'];
|
|
47827
48012
|
node?: Maybe<JiraRole>;
|
|
47828
48013
|
};
|
|
47829
|
-
export declare type JiraSafeBoard = {
|
|
47830
|
-
__typename?: 'JiraSafeBoard';
|
|
47831
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47832
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47833
|
-
id: Scalars['ID']['output'];
|
|
47834
|
-
team?: Maybe<JiraTeamView>;
|
|
47835
|
-
};
|
|
47836
|
-
export declare type JiraSafeConfiguration = {
|
|
47837
|
-
__typename?: 'JiraSafeConfiguration';
|
|
47838
|
-
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
47839
|
-
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47840
|
-
capability?: Maybe<JiraIssueType>;
|
|
47841
|
-
feature?: Maybe<JiraIssueType>;
|
|
47842
|
-
id: Scalars['ID']['output'];
|
|
47843
|
-
jobSize?: Maybe<JiraNumberField>;
|
|
47844
|
-
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47845
|
-
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
47846
|
-
plan?: Maybe<JiraPlan>;
|
|
47847
|
-
riskReduction?: Maybe<JiraNumberField>;
|
|
47848
|
-
timeCriticality?: Maybe<JiraNumberField>;
|
|
47849
|
-
userBusinessValue?: Maybe<JiraNumberField>;
|
|
47850
|
-
weightedShortestJobFirst?: Maybe<JiraNumberField>;
|
|
47851
|
-
};
|
|
47852
|
-
export declare type JiraSafeConfigurationAgileReleaseTrainsArgs = {
|
|
47853
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47854
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47855
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47856
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47857
|
-
};
|
|
47858
|
-
export declare type JiraSafeConfigurationLargeSolutionsArgs = {
|
|
47859
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47860
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47861
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47862
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47863
|
-
};
|
|
47864
|
-
export declare type JiraSafeTeamBoard = {
|
|
47865
|
-
__typename?: 'JiraSafeTeamBoard';
|
|
47866
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47867
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47868
|
-
id: Scalars['ID']['output'];
|
|
47869
|
-
team?: Maybe<JiraTeamView>;
|
|
47870
|
-
};
|
|
47871
|
-
export declare type JiraSafeTeamBoardConnection = {
|
|
47872
|
-
__typename?: 'JiraSafeTeamBoardConnection';
|
|
47873
|
-
edges?: Maybe<Array<Maybe<JiraSafeTeamBoardEdge>>>;
|
|
47874
|
-
pageInfo: PageInfo;
|
|
47875
|
-
};
|
|
47876
|
-
export declare type JiraSafeTeamBoardEdge = {
|
|
47877
|
-
__typename?: 'JiraSafeTeamBoardEdge';
|
|
47878
|
-
cursor: Scalars['String']['output'];
|
|
47879
|
-
node?: Maybe<JiraSafeTeamBoard>;
|
|
47880
|
-
};
|
|
47881
|
-
export declare enum JiraScaledConfigurationPermission {
|
|
47882
|
-
Edit = "EDIT",
|
|
47883
|
-
None = "NONE",
|
|
47884
|
-
View = "VIEW"
|
|
47885
|
-
}
|
|
47886
|
-
export declare type JiraScaledConfigurationPermissions = {
|
|
47887
|
-
__typename?: 'JiraScaledConfigurationPermissions';
|
|
47888
|
-
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
47889
|
-
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
47890
|
-
};
|
|
47891
48014
|
export declare type JiraScenario = Node & {
|
|
47892
48015
|
__typename?: 'JiraScenario';
|
|
47893
48016
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -47914,8 +48037,16 @@ export declare type JiraScenarioIssueLikePlanScenarioValuesArgs = {
|
|
|
47914
48037
|
export declare type JiraScenarioIssueLikeConnection = {
|
|
47915
48038
|
__typename?: 'JiraScenarioIssueLikeConnection';
|
|
47916
48039
|
edges?: Maybe<Array<Maybe<JiraScenarioIssueLikeEdge>>>;
|
|
48040
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']['output']>;
|
|
48041
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
48042
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
47917
48043
|
pageInfo: PageInfo;
|
|
47918
48044
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48045
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']['output']>;
|
|
48046
|
+
};
|
|
48047
|
+
export declare type JiraScenarioIssueLikeConnectionPageCursorsArgs = {
|
|
48048
|
+
maxCursors: Scalars['Int']['input'];
|
|
48049
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
47919
48050
|
};
|
|
47920
48051
|
export declare type JiraScenarioIssueLikeEdge = {
|
|
47921
48052
|
__typename?: 'JiraScenarioIssueLikeEdge';
|
|
@@ -52549,9 +52680,11 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
52549
52680
|
title: Scalars['String']['output'];
|
|
52550
52681
|
url: Scalars['String']['output'];
|
|
52551
52682
|
};
|
|
52683
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
52552
52684
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
52553
52685
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
52554
52686
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52687
|
+
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
52555
52688
|
url?: Maybe<Scalars['String']['output']>;
|
|
52556
52689
|
};
|
|
52557
52690
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
@@ -52566,6 +52699,15 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
52566
52699
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
52567
52700
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52568
52701
|
};
|
|
52702
|
+
export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
52703
|
+
__typename?: 'KnowledgeDiscoveryBookmarkProperties';
|
|
52704
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52705
|
+
keyPhrase: Scalars['String']['output'];
|
|
52706
|
+
lastModifiedTimestamp: Scalars['String']['output'];
|
|
52707
|
+
lastModifierAccountId: Scalars['String']['output'];
|
|
52708
|
+
title: Scalars['String']['output'];
|
|
52709
|
+
url: Scalars['String']['output'];
|
|
52710
|
+
};
|
|
52569
52711
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
52570
52712
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
52571
52713
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
@@ -52748,6 +52890,7 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
52748
52890
|
};
|
|
52749
52891
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
52750
52892
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
52893
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
52751
52894
|
adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
|
|
52752
52895
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
52753
52896
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
@@ -52758,6 +52901,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
52758
52901
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
52759
52902
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
52760
52903
|
};
|
|
52904
|
+
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
52905
|
+
cloudId: Scalars['ID']['input'];
|
|
52906
|
+
id: Scalars['ID']['input'];
|
|
52907
|
+
orgId: Scalars['String']['input'];
|
|
52908
|
+
};
|
|
52761
52909
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
52762
52910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52763
52911
|
cloudId: Scalars['ID']['input'];
|
|
@@ -52767,7 +52915,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52767
52915
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52768
52916
|
cloudId: Scalars['String']['input'];
|
|
52769
52917
|
keyPhrase: Scalars['String']['input'];
|
|
52770
|
-
workspaceId
|
|
52918
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52771
52919
|
};
|
|
52772
52920
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
52773
52921
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -52829,7 +52977,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
52829
52977
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
52830
52978
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
52831
52979
|
None = "NONE",
|
|
52832
|
-
Person = "PERSON"
|
|
52980
|
+
Person = "PERSON",
|
|
52981
|
+
Team = "TEAM"
|
|
52833
52982
|
}
|
|
52834
52983
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
52835
52984
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -53323,6 +53472,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
53323
53472
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53324
53473
|
appSoftwareId: Scalars['ID']['output'];
|
|
53325
53474
|
hosting: MarketplaceConsoleHosting;
|
|
53475
|
+
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53326
53476
|
};
|
|
53327
53477
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53328
53478
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53808,9 +53958,9 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
53808
53958
|
};
|
|
53809
53959
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
53810
53960
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53811
|
-
category?: Maybe<MarketplaceConsoleTagsContent
|
|
53812
|
-
keywords?: Maybe<MarketplaceConsoleTagsContent
|
|
53813
|
-
marketing?: Maybe<MarketplaceConsoleTagsContent
|
|
53961
|
+
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53962
|
+
keywords?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53963
|
+
marketing?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53814
53964
|
};
|
|
53815
53965
|
export declare type MarketplaceConsoleProductMetadata = {
|
|
53816
53966
|
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
@@ -53890,7 +54040,7 @@ export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
|
53890
54040
|
export declare type MarketplaceConsoleTagsContent = {
|
|
53891
54041
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53892
54042
|
id: Scalars['ID']['output'];
|
|
53893
|
-
name
|
|
54043
|
+
name: Scalars['String']['output'];
|
|
53894
54044
|
};
|
|
53895
54045
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
53896
54046
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
@@ -55156,6 +55306,129 @@ export declare type MercuryPreference = Node & {
|
|
|
55156
55306
|
key: Scalars['String']['output'];
|
|
55157
55307
|
value: Scalars['String']['output'];
|
|
55158
55308
|
};
|
|
55309
|
+
export declare type MercuryProvider = Node & {
|
|
55310
|
+
__typename?: 'MercuryProvider';
|
|
55311
|
+
configurationState: MercuryProviderConfigurationState;
|
|
55312
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55313
|
+
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
55314
|
+
id: Scalars['ID']['output'];
|
|
55315
|
+
key: Scalars['String']['output'];
|
|
55316
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55317
|
+
name: Scalars['String']['output'];
|
|
55318
|
+
};
|
|
55319
|
+
export declare type MercuryProviderAtlassianUser = {
|
|
55320
|
+
__typename?: 'MercuryProviderAtlassianUser';
|
|
55321
|
+
accountStatus: AccountStatus;
|
|
55322
|
+
id: Scalars['ID']['output'];
|
|
55323
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55324
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55325
|
+
};
|
|
55326
|
+
export declare type MercuryProviderConfigurationState = {
|
|
55327
|
+
__typename?: 'MercuryProviderConfigurationState';
|
|
55328
|
+
actionUrl?: Maybe<Scalars['URL']['output']>;
|
|
55329
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
55330
|
+
status: MercuryProviderConfigurationStatus;
|
|
55331
|
+
};
|
|
55332
|
+
export declare enum MercuryProviderConfigurationStatus {
|
|
55333
|
+
Connected = "CONNECTED",
|
|
55334
|
+
SignUp = "SIGN_UP"
|
|
55335
|
+
}
|
|
55336
|
+
export declare type MercuryProviderConnection = {
|
|
55337
|
+
__typename?: 'MercuryProviderConnection';
|
|
55338
|
+
edges?: Maybe<Array<Maybe<MercuryProviderEdge>>>;
|
|
55339
|
+
pageInfo: PageInfo;
|
|
55340
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55341
|
+
};
|
|
55342
|
+
export declare type MercuryProviderDetails = {
|
|
55343
|
+
__typename?: 'MercuryProviderDetails';
|
|
55344
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55345
|
+
name: Scalars['String']['output'];
|
|
55346
|
+
};
|
|
55347
|
+
export declare type MercuryProviderEdge = {
|
|
55348
|
+
__typename?: 'MercuryProviderEdge';
|
|
55349
|
+
cursor: Scalars['String']['output'];
|
|
55350
|
+
node?: Maybe<MercuryProvider>;
|
|
55351
|
+
};
|
|
55352
|
+
export declare type MercuryProviderExternalOwner = {
|
|
55353
|
+
__typename?: 'MercuryProviderExternalOwner';
|
|
55354
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55355
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55356
|
+
};
|
|
55357
|
+
export declare type MercuryProviderExternalUser = {
|
|
55358
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55359
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55360
|
+
};
|
|
55361
|
+
export declare type MercuryProviderMultiResolutionIcon = {
|
|
55362
|
+
__typename?: 'MercuryProviderMultiResolutionIcon';
|
|
55363
|
+
defaultUrl: Scalars['URL']['output'];
|
|
55364
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
55365
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
55366
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
55367
|
+
xlarge?: Maybe<Scalars['URL']['output']>;
|
|
55368
|
+
};
|
|
55369
|
+
export declare type MercuryProviderUser = {
|
|
55370
|
+
id: Scalars['ID']['output'];
|
|
55371
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55372
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55373
|
+
};
|
|
55374
|
+
export declare type MercuryProviderWork = {
|
|
55375
|
+
__typename?: 'MercuryProviderWork';
|
|
55376
|
+
externalOwner?: Maybe<MercuryProviderExternalOwner>;
|
|
55377
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
55378
|
+
id: Scalars['ID']['output'];
|
|
55379
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
55380
|
+
name: Scalars['String']['output'];
|
|
55381
|
+
owner?: Maybe<MercuryProviderAtlassianUser>;
|
|
55382
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55383
|
+
status?: Maybe<MercuryProviderWorkStatus>;
|
|
55384
|
+
targetDate?: Maybe<MercuryProviderWorkTargetDate>;
|
|
55385
|
+
url: Scalars['String']['output'];
|
|
55386
|
+
};
|
|
55387
|
+
export declare type MercuryProviderWorkConnection = {
|
|
55388
|
+
__typename?: 'MercuryProviderWorkConnection';
|
|
55389
|
+
edges?: Maybe<Array<Maybe<MercuryProviderWorkEdge>>>;
|
|
55390
|
+
pageInfo: PageInfo;
|
|
55391
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55392
|
+
};
|
|
55393
|
+
export declare type MercuryProviderWorkEdge = {
|
|
55394
|
+
__typename?: 'MercuryProviderWorkEdge';
|
|
55395
|
+
cursor: Scalars['String']['output'];
|
|
55396
|
+
node?: Maybe<MercuryWorkResult>;
|
|
55397
|
+
};
|
|
55398
|
+
export declare type MercuryProviderWorkError = Node & {
|
|
55399
|
+
__typename?: 'MercuryProviderWorkError';
|
|
55400
|
+
errorType: MercuryProviderWorkErrorType;
|
|
55401
|
+
id: Scalars['ID']['output'];
|
|
55402
|
+
message: Scalars['String']['output'];
|
|
55403
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55404
|
+
};
|
|
55405
|
+
export declare enum MercuryProviderWorkErrorType {
|
|
55406
|
+
Invalid = "INVALID",
|
|
55407
|
+
NotFound = "NOT_FOUND",
|
|
55408
|
+
NoPermissions = "NO_PERMISSIONS"
|
|
55409
|
+
}
|
|
55410
|
+
export declare type MercuryProviderWorkStatus = {
|
|
55411
|
+
__typename?: 'MercuryProviderWorkStatus';
|
|
55412
|
+
color: MercuryProviderWorkStatusColor;
|
|
55413
|
+
name: Scalars['String']['output'];
|
|
55414
|
+
};
|
|
55415
|
+
export declare enum MercuryProviderWorkStatusColor {
|
|
55416
|
+
Blue = "BLUE",
|
|
55417
|
+
Gray = "GRAY",
|
|
55418
|
+
Green = "GREEN",
|
|
55419
|
+
Red = "RED",
|
|
55420
|
+
Yellow = "YELLOW"
|
|
55421
|
+
}
|
|
55422
|
+
export declare type MercuryProviderWorkTargetDate = {
|
|
55423
|
+
__typename?: 'MercuryProviderWorkTargetDate';
|
|
55424
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
55425
|
+
targetDateType?: Maybe<MercuryProviderWorkTargetDateType>;
|
|
55426
|
+
};
|
|
55427
|
+
export declare enum MercuryProviderWorkTargetDateType {
|
|
55428
|
+
Day = "DAY",
|
|
55429
|
+
Month = "MONTH",
|
|
55430
|
+
Quarter = "QUARTER"
|
|
55431
|
+
}
|
|
55159
55432
|
export declare type MercuryQueryApi = {
|
|
55160
55433
|
__typename?: 'MercuryQueryApi';
|
|
55161
55434
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -55436,6 +55709,7 @@ export declare type MercuryUserEdge = {
|
|
|
55436
55709
|
cursor: Scalars['String']['output'];
|
|
55437
55710
|
node?: Maybe<User>;
|
|
55438
55711
|
};
|
|
55712
|
+
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
55439
55713
|
export declare type MercuryWorkspaceContext = {
|
|
55440
55714
|
__typename?: 'MercuryWorkspaceContext';
|
|
55441
55715
|
activationId: Scalars['String']['output'];
|
|
@@ -55776,7 +56050,6 @@ export declare type Mutation = {
|
|
|
55776
56050
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
55777
56051
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
55778
56052
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
55779
|
-
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
55780
56053
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
55781
56054
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
55782
56055
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -55802,6 +56075,7 @@ export declare type Mutation = {
|
|
|
55802
56075
|
editSprint?: Maybe<SprintResponse>;
|
|
55803
56076
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
55804
56077
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
56078
|
+
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
55805
56079
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
55806
56080
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
55807
56081
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -56533,9 +56807,6 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
56533
56807
|
export declare type MutationDeleteColumnArgs = {
|
|
56534
56808
|
input?: InputMaybe<DeleteColumnInput>;
|
|
56535
56809
|
};
|
|
56536
|
-
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
56537
|
-
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
56538
|
-
};
|
|
56539
56810
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
56540
56811
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
56541
56812
|
};
|
|
@@ -56596,6 +56867,9 @@ export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
|
56596
56867
|
export declare type MutationEditSprintArgs = {
|
|
56597
56868
|
input?: InputMaybe<EditSprintInput>;
|
|
56598
56869
|
};
|
|
56870
|
+
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
56871
|
+
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
56872
|
+
};
|
|
56599
56873
|
export declare type MutationHelpCenterArgs = {
|
|
56600
56874
|
cloudId: Scalars['ID']['input'];
|
|
56601
56875
|
};
|
|
@@ -59275,6 +59549,7 @@ export declare type Query = {
|
|
|
59275
59549
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
59276
59550
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
59277
59551
|
dataScope?: Maybe<MigrationPlanningServiceQuery>;
|
|
59552
|
+
demoMercury_getById?: Maybe<DemoMercuryFocusArea>;
|
|
59278
59553
|
devAi?: Maybe<DevAi>;
|
|
59279
59554
|
devOps?: Maybe<DevOps>;
|
|
59280
59555
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -59311,12 +59586,15 @@ export declare type Query = {
|
|
|
59311
59586
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
59312
59587
|
graphStore?: Maybe<GraphStore>;
|
|
59313
59588
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
59589
|
+
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
59314
59590
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
59315
59591
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
59316
59592
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
59317
59593
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
59318
59594
|
insights?: Maybe<Insights>;
|
|
59319
59595
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
59596
|
+
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
59597
|
+
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
59320
59598
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
59321
59599
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
59322
59600
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60478,6 +60756,10 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
60478
60756
|
id: Scalars['String']['input'];
|
|
60479
60757
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60480
60758
|
};
|
|
60759
|
+
export declare type QueryDemoMercury_GetByIdArgs = {
|
|
60760
|
+
cloudId: Scalars['ID']['input'];
|
|
60761
|
+
id: Scalars['ID']['input'];
|
|
60762
|
+
};
|
|
60481
60763
|
export declare type QueryDevOpsServiceArgs = {
|
|
60482
60764
|
id: Scalars['ID']['input'];
|
|
60483
60765
|
};
|
|
@@ -60544,6 +60826,7 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
60544
60826
|
contextId: Scalars['ID']['input'];
|
|
60545
60827
|
definitionId: Scalars['ID']['input'];
|
|
60546
60828
|
extensionKey: Scalars['String']['input'];
|
|
60829
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
60547
60830
|
};
|
|
60548
60831
|
export declare type QueryExtensionContextArgs = {
|
|
60549
60832
|
contextId: Scalars['ID']['input'];
|
|
@@ -60575,6 +60858,10 @@ export declare type QueryGetKeywordsArgs = {
|
|
|
60575
60858
|
entityAri?: InputMaybe<Scalars['String']['input']>;
|
|
60576
60859
|
textInput?: InputMaybe<NlpGetKeywordsTextInput>;
|
|
60577
60860
|
};
|
|
60861
|
+
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
60862
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
60863
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
60864
|
+
};
|
|
60578
60865
|
export declare type QueryHelpCenterArgs = {
|
|
60579
60866
|
cloudId: Scalars['ID']['input'];
|
|
60580
60867
|
};
|
|
@@ -60590,6 +60877,13 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
60590
60877
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
60591
60878
|
appId: Scalars['ID']['input'];
|
|
60592
60879
|
};
|
|
60880
|
+
export declare type QueryIpmFlagArgs = {
|
|
60881
|
+
id: Scalars['String']['input'];
|
|
60882
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60883
|
+
};
|
|
60884
|
+
export declare type QueryIpmFlagsArgs = {
|
|
60885
|
+
search: ContentPlatformSearchApIv2Query;
|
|
60886
|
+
};
|
|
60593
60887
|
export declare type QueryIpmImageModalArgs = {
|
|
60594
60888
|
id: Scalars['String']['input'];
|
|
60595
60889
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62469,7 +62763,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62469
62763
|
type: SearchResultType;
|
|
62470
62764
|
url: Scalars['URL']['output'];
|
|
62471
62765
|
};
|
|
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;
|
|
62766
|
+
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
62767
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62474
62768
|
__typename?: 'SearchResultGoogleDocument';
|
|
62475
62769
|
bodyText: Scalars['String']['output'];
|
|
@@ -62527,6 +62821,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
62527
62821
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
62528
62822
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62529
62823
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62824
|
+
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
62530
62825
|
owner?: Maybe<ThirdPartyUser>;
|
|
62531
62826
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
62532
62827
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -66343,6 +66638,7 @@ export declare type TrelloBoardViewer = {
|
|
|
66343
66638
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
66344
66639
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
66345
66640
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66641
|
+
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
66346
66642
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
66347
66643
|
starred: Scalars['Boolean']['output'];
|
|
66348
66644
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67826,6 +68122,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
67826
68122
|
id: Scalars['ID']['input'];
|
|
67827
68123
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67828
68124
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68125
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
67829
68126
|
};
|
|
67830
68127
|
export declare type UpdateCompassComponentLinkInput = {
|
|
67831
68128
|
componentId: Scalars['ID']['input'];
|
|
@@ -68942,6 +69239,7 @@ export declare type WorkSuggestionsAutoDevJobTask = {
|
|
|
68942
69239
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
68943
69240
|
id: Scalars['String']['output'];
|
|
68944
69241
|
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
69242
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
68945
69243
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
68946
69244
|
};
|
|
68947
69245
|
export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsAutoDevJobTask & {
|
|
@@ -68951,6 +69249,7 @@ export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsA
|
|
|
68951
69249
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
68952
69250
|
id: Scalars['String']['output'];
|
|
68953
69251
|
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
69252
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
68954
69253
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
68955
69254
|
};
|
|
68956
69255
|
export declare type WorkSuggestionsBlockedIssue = {
|
|
@@ -68969,6 +69268,7 @@ export declare type WorkSuggestionsBlockingIssueTask = WorkSuggestionsCommon & {
|
|
|
68969
69268
|
issueIconUrl: Scalars['String']['output'];
|
|
68970
69269
|
issueId: Scalars['String']['output'];
|
|
68971
69270
|
issueKey: Scalars['String']['output'];
|
|
69271
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
68972
69272
|
title: Scalars['String']['output'];
|
|
68973
69273
|
url: Scalars['String']['output'];
|
|
68974
69274
|
};
|
|
@@ -68981,6 +69281,7 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
68981
69281
|
issueName: Scalars['String']['output'];
|
|
68982
69282
|
lastUpdated: Scalars['String']['output'];
|
|
68983
69283
|
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
69284
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
68984
69285
|
title: Scalars['String']['output'];
|
|
68985
69286
|
url: Scalars['String']['output'];
|
|
68986
69287
|
};
|
|
@@ -69077,6 +69378,7 @@ export declare type WorkSuggestionsCodeTabTaskConnection = {
|
|
|
69077
69378
|
};
|
|
69078
69379
|
export declare type WorkSuggestionsCommon = {
|
|
69079
69380
|
id: Scalars['String']['output'];
|
|
69381
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69080
69382
|
title: Scalars['String']['output'];
|
|
69081
69383
|
url: Scalars['String']['output'];
|
|
69082
69384
|
};
|
|
@@ -69097,6 +69399,7 @@ export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCo
|
|
|
69097
69399
|
introducedDate: Scalars['String']['output'];
|
|
69098
69400
|
issueId: Scalars['String']['output'];
|
|
69099
69401
|
issueKey: Scalars['String']['output'];
|
|
69402
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69100
69403
|
securityContainerName: Scalars['String']['output'];
|
|
69101
69404
|
status: WorkSuggestionsVulnerabilityStatus;
|
|
69102
69405
|
title: Scalars['String']['output'];
|
|
@@ -69112,6 +69415,7 @@ export declare type WorkSuggestionsDeploymentTask = WorkSuggestionsCommon & {
|
|
|
69112
69415
|
issueName: Scalars['String']['output'];
|
|
69113
69416
|
lastUpdated: Scalars['String']['output'];
|
|
69114
69417
|
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
69418
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69115
69419
|
pipelineName: Scalars['String']['output'];
|
|
69116
69420
|
title: Scalars['String']['output'];
|
|
69117
69421
|
url: Scalars['String']['output'];
|
|
@@ -69216,6 +69520,7 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
69216
69520
|
id: Scalars['String']['output'];
|
|
69217
69521
|
lastUpdated: Scalars['String']['output'];
|
|
69218
69522
|
needsWorkCount: Scalars['Int']['output'];
|
|
69523
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69219
69524
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69220
69525
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
69221
69526
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
@@ -69232,6 +69537,7 @@ export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon
|
|
|
69232
69537
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69233
69538
|
id: Scalars['String']['output'];
|
|
69234
69539
|
lastUpdated: Scalars['String']['output'];
|
|
69540
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69235
69541
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69236
69542
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
69237
69543
|
repositoryName?: Maybe<Scalars['String']['output']>;
|