@forge/cli-shared 5.4.0-next.1 → 5.4.0-next.1-experimental-264fa0f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +718 -245
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +144 -15
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/package.json +3 -3
|
@@ -1391,7 +1391,9 @@ export declare type AppUser = User & {
|
|
|
1391
1391
|
__typename?: 'AppUser';
|
|
1392
1392
|
accountId: Scalars['ID']['output'];
|
|
1393
1393
|
accountStatus: AccountStatus;
|
|
1394
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
1394
1395
|
canonicalAccountId: Scalars['ID']['output'];
|
|
1396
|
+
characteristics?: Maybe<Scalars['JSON']['output']>;
|
|
1395
1397
|
id: Scalars['ID']['output'];
|
|
1396
1398
|
name: Scalars['String']['output'];
|
|
1397
1399
|
picture: Scalars['URL']['output'];
|
|
@@ -2136,6 +2138,22 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2136
2138
|
Updated = "UPDATED",
|
|
2137
2139
|
Votes = "VOTES"
|
|
2138
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
|
+
};
|
|
2139
2157
|
export declare type BurndownChart = {
|
|
2140
2158
|
__typename?: 'BurndownChart';
|
|
2141
2159
|
chart: BurndownChartData;
|
|
@@ -3234,6 +3252,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3234
3252
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3235
3253
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3236
3254
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3255
|
+
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
3237
3256
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3238
3257
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3239
3258
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
@@ -3428,6 +3447,9 @@ export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueAr
|
|
|
3428
3447
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
3429
3448
|
input: UpdateCompassComponentTypeInput;
|
|
3430
3449
|
};
|
|
3450
|
+
export declare type CompassCatalogMutationApiUpdateComponentsArgs = {
|
|
3451
|
+
input: BulkUpdateCompassComponentsInput;
|
|
3452
|
+
};
|
|
3431
3453
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3432
3454
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3433
3455
|
};
|
|
@@ -3641,6 +3663,7 @@ export declare type CompassComponent = Node & {
|
|
|
3641
3663
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3642
3664
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
3643
3665
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
3666
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
3644
3667
|
type: CompassComponentType;
|
|
3645
3668
|
typeId: Scalars['ID']['output'];
|
|
3646
3669
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
@@ -4869,8 +4892,12 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4869
4892
|
};
|
|
4870
4893
|
export declare type CompassGlobalPermissions = {
|
|
4871
4894
|
__typename?: 'CompassGlobalPermissions';
|
|
4895
|
+
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4896
|
+
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4872
4897
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4898
|
+
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4873
4899
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4900
|
+
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4874
4901
|
};
|
|
4875
4902
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4876
4903
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -5140,6 +5167,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
5140
5167
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
5141
5168
|
name?: Maybe<Scalars['String']['output']>;
|
|
5142
5169
|
type: CompassMetricDefinitionType;
|
|
5170
|
+
viewerPermissions?: Maybe<CompassMetricDefinitionInstancePermissions>;
|
|
5143
5171
|
};
|
|
5144
5172
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
5145
5173
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
@@ -5160,6 +5188,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
5160
5188
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
5161
5189
|
suffix: Scalars['String']['input'];
|
|
5162
5190
|
};
|
|
5191
|
+
export declare type CompassMetricDefinitionInstancePermissions = {
|
|
5192
|
+
__typename?: 'CompassMetricDefinitionInstancePermissions';
|
|
5193
|
+
canDelete?: Maybe<CompassPermissionResult>;
|
|
5194
|
+
canEdit?: Maybe<CompassPermissionResult>;
|
|
5195
|
+
};
|
|
5163
5196
|
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
5164
5197
|
export declare enum CompassMetricDefinitionType {
|
|
5165
5198
|
BuiltIn = "BUILT_IN",
|
|
@@ -14012,6 +14045,87 @@ export declare type ContentPlatformImageComponent = {
|
|
|
14012
14045
|
image: ContentPlatformImageAsset;
|
|
14013
14046
|
name: Scalars['String']['output'];
|
|
14014
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
|
+
};
|
|
14015
14129
|
export declare type ContentPlatformIpmImageModal = {
|
|
14016
14130
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14017
14131
|
body: Scalars['JSON']['output'];
|
|
@@ -14035,6 +14149,14 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14035
14149
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14036
14150
|
pageInfo: PageInfo;
|
|
14037
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;
|
|
14038
14160
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14039
14161
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14040
14162
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14104,7 +14226,7 @@ export declare type ContentPlatformPricing = {
|
|
|
14104
14226
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14105
14227
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14106
14228
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14107
|
-
headline?: Maybe<Scalars['
|
|
14229
|
+
headline?: Maybe<Scalars['String']['output']>;
|
|
14108
14230
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14109
14231
|
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14110
14232
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14861,6 +14983,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
14861
14983
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
14862
14984
|
name: Scalars['String']['input'];
|
|
14863
14985
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
14986
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
14864
14987
|
type?: InputMaybe<CompassComponentType>;
|
|
14865
14988
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
14866
14989
|
};
|
|
@@ -15590,6 +15713,7 @@ export declare type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
|
15590
15713
|
};
|
|
15591
15714
|
export declare type CustomerServiceCustomDetailValue = Node & {
|
|
15592
15715
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15716
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15593
15717
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15594
15718
|
id: Scalars['ID']['output'];
|
|
15595
15719
|
name: Scalars['String']['output'];
|
|
@@ -18034,6 +18158,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
18034
18158
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18035
18159
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18036
18160
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18161
|
+
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18037
18162
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18038
18163
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
18039
18164
|
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18805,8 +18930,10 @@ export declare type ExtensionContextAppAuditLogsArgs = {
|
|
|
18805
18930
|
};
|
|
18806
18931
|
export declare type ExtensionContextExtensionsArgs = {
|
|
18807
18932
|
filter: Array<ExtensionContextsFilter>;
|
|
18933
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18808
18934
|
};
|
|
18809
18935
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
18936
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18810
18937
|
principalType?: InputMaybe<PrincipalType>;
|
|
18811
18938
|
type: Scalars['String']['input'];
|
|
18812
18939
|
};
|
|
@@ -19033,6 +19160,7 @@ export declare type ExternalDocument = {
|
|
|
19033
19160
|
__typename?: 'ExternalDocument';
|
|
19034
19161
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19035
19162
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19163
|
+
content?: Maybe<ExternalLargeContent>;
|
|
19036
19164
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19037
19165
|
createdBy?: Maybe<ExternalUser>;
|
|
19038
19166
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19043,6 +19171,7 @@ export declare type ExternalDocument = {
|
|
|
19043
19171
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19044
19172
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19045
19173
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19174
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19046
19175
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19047
19176
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19048
19177
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -19159,6 +19288,11 @@ export declare type ExternalFileInfo = {
|
|
|
19159
19288
|
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19160
19289
|
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19161
19290
|
};
|
|
19291
|
+
export declare type ExternalLargeContent = {
|
|
19292
|
+
__typename?: 'ExternalLargeContent';
|
|
19293
|
+
asText?: Maybe<Scalars['String']['output']>;
|
|
19294
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19295
|
+
};
|
|
19162
19296
|
export declare enum ExternalMembershipType {
|
|
19163
19297
|
Private = "PRIVATE",
|
|
19164
19298
|
Public = "PUBLIC",
|
|
@@ -19167,16 +19301,20 @@ export declare enum ExternalMembershipType {
|
|
|
19167
19301
|
export declare type ExternalMessage = {
|
|
19168
19302
|
__typename?: 'ExternalMessage';
|
|
19169
19303
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19304
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19170
19305
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19171
19306
|
createdBy?: Maybe<ExternalUser>;
|
|
19307
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19172
19308
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19173
19309
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
19174
19310
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19175
19311
|
id: Scalars['ID']['output'];
|
|
19176
19312
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19313
|
+
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
19177
19314
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19178
19315
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19179
19316
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19317
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19180
19318
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19181
19319
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19182
19320
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -20062,7 +20200,8 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
20062
20200
|
export declare enum ForgeMetricsApiRequestType {
|
|
20063
20201
|
Cache = "CACHE",
|
|
20064
20202
|
External = "EXTERNAL",
|
|
20065
|
-
Product = "PRODUCT"
|
|
20203
|
+
Product = "PRODUCT",
|
|
20204
|
+
Sql = "SQL"
|
|
20066
20205
|
}
|
|
20067
20206
|
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
20068
20207
|
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
@@ -34923,6 +35062,174 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
34923
35062
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
34924
35063
|
entityId: Scalars['String']['input'];
|
|
34925
35064
|
};
|
|
35065
|
+
export declare type GrowthUnifiedProfileAnchor = {
|
|
35066
|
+
__typename?: 'GrowthUnifiedProfileAnchor';
|
|
35067
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
35068
|
+
type?: Maybe<GrowthUnifiedProfileAnchorType>;
|
|
35069
|
+
};
|
|
35070
|
+
export declare enum GrowthUnifiedProfileAnchorType {
|
|
35071
|
+
Pfm = "PFM",
|
|
35072
|
+
Seo = "SEO"
|
|
35073
|
+
}
|
|
35074
|
+
export declare type GrowthUnifiedProfileChannel = {
|
|
35075
|
+
__typename?: 'GrowthUnifiedProfileChannel';
|
|
35076
|
+
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
35077
|
+
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
35078
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35079
|
+
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
35080
|
+
};
|
|
35081
|
+
export declare enum GrowthUnifiedProfileChannelName {
|
|
35082
|
+
Comarketing = "COMARKETING",
|
|
35083
|
+
Direct = "DIRECT",
|
|
35084
|
+
Email = "EMAIL",
|
|
35085
|
+
EngagementEngine = "ENGAGEMENT_ENGINE",
|
|
35086
|
+
InProductReferral = "IN_PRODUCT_REFERRAL",
|
|
35087
|
+
Organic = "ORGANIC",
|
|
35088
|
+
Other = "OTHER",
|
|
35089
|
+
PaidAffiliate = "PAID_AFFILIATE",
|
|
35090
|
+
PaidDisplay = "PAID_DISPLAY",
|
|
35091
|
+
PaidReviewSites = "PAID_REVIEW_SITES",
|
|
35092
|
+
PaidSearchBranded = "PAID_SEARCH_BRANDED",
|
|
35093
|
+
PaidSearchNonBranded = "PAID_SEARCH_NON_BRANDED",
|
|
35094
|
+
PaidSocial = "PAID_SOCIAL",
|
|
35095
|
+
ReferralExternal = "REFERRAL_EXTERNAL",
|
|
35096
|
+
ReferralInternal = "REFERRAL_INTERNAL",
|
|
35097
|
+
SelfReferral = "SELF_REFERRAL",
|
|
35098
|
+
SlackAppDirectory = "SLACK_APP_DIRECTORY",
|
|
35099
|
+
Suppress = "SUPPRESS",
|
|
35100
|
+
UnpaidSocial = "UNPAID_SOCIAL",
|
|
35101
|
+
UnpaidVideo = "UNPAID_VIDEO"
|
|
35102
|
+
}
|
|
35103
|
+
export declare type GrowthUnifiedProfileCompany = {
|
|
35104
|
+
__typename?: 'GrowthUnifiedProfileCompany';
|
|
35105
|
+
accountStatus?: Maybe<GrowthUnifiedProfileEnterpriseAccountStatus>;
|
|
35106
|
+
annualRevenue?: Maybe<Scalars['Int']['output']>;
|
|
35107
|
+
businessName?: Maybe<Scalars['String']['output']>;
|
|
35108
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35109
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
35110
|
+
employeeStrength?: Maybe<Scalars['Int']['output']>;
|
|
35111
|
+
enterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
35112
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
35113
|
+
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
35114
|
+
sector?: Maybe<Scalars['String']['output']>;
|
|
35115
|
+
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
35116
|
+
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
35117
|
+
};
|
|
35118
|
+
export declare enum GrowthUnifiedProfileCompanySize {
|
|
35119
|
+
Large = "LARGE",
|
|
35120
|
+
Medium = "MEDIUM",
|
|
35121
|
+
Small = "SMALL",
|
|
35122
|
+
Unknown = "UNKNOWN"
|
|
35123
|
+
}
|
|
35124
|
+
export declare enum GrowthUnifiedProfileCompanyType {
|
|
35125
|
+
Private = "PRIVATE",
|
|
35126
|
+
Public = "PUBLIC"
|
|
35127
|
+
}
|
|
35128
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
35129
|
+
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
35130
|
+
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd>;
|
|
35131
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35132
|
+
};
|
|
35133
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
35134
|
+
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd>;
|
|
35135
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35136
|
+
};
|
|
35137
|
+
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
35138
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
35139
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
35140
|
+
unifiedProfile: GrowthUnifiedProfileInput;
|
|
35141
|
+
};
|
|
35142
|
+
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
35143
|
+
Complete = "COMPLETE",
|
|
35144
|
+
Error = "ERROR",
|
|
35145
|
+
InProgress = "IN_PROGRESS",
|
|
35146
|
+
Pending = "PENDING"
|
|
35147
|
+
}
|
|
35148
|
+
export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
35149
|
+
Bronze = "BRONZE",
|
|
35150
|
+
Gam = "GAM",
|
|
35151
|
+
Gold = "GOLD",
|
|
35152
|
+
Platimun = "PLATIMUN",
|
|
35153
|
+
Silver = "SILVER"
|
|
35154
|
+
}
|
|
35155
|
+
export declare enum GrowthUnifiedProfileEntityType {
|
|
35156
|
+
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
35157
|
+
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
35158
|
+
Org = "ORG",
|
|
35159
|
+
Site = "SITE"
|
|
35160
|
+
}
|
|
35161
|
+
export declare type GrowthUnifiedProfileInput = {
|
|
35162
|
+
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
35163
|
+
};
|
|
35164
|
+
export declare enum GrowthUnifiedProfileJtbd {
|
|
35165
|
+
Budgets = "BUDGETS",
|
|
35166
|
+
CdWrtng = "CD_WRTNG",
|
|
35167
|
+
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
35168
|
+
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
35169
|
+
MarketingContent = "MARKETING_CONTENT",
|
|
35170
|
+
PlanAndManage = "PLAN_AND_MANAGE",
|
|
35171
|
+
ProjectPlanning = "PROJECT_PLANNING",
|
|
35172
|
+
ProjectProgress = "PROJECT_PROGRESS",
|
|
35173
|
+
Stakeholders = "STAKEHOLDERS",
|
|
35174
|
+
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
35175
|
+
TrackingRprtng = "TRACKING_RPRTNG",
|
|
35176
|
+
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
35177
|
+
}
|
|
35178
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
35179
|
+
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
35180
|
+
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
35181
|
+
jiraFamiliarity?: Maybe<Scalars['Int']['output']>;
|
|
35182
|
+
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd>;
|
|
35183
|
+
persona?: Maybe<Scalars['String']['output']>;
|
|
35184
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
35185
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35186
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35187
|
+
};
|
|
35188
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
35189
|
+
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
35190
|
+
jiraFamiliarity?: InputMaybe<Scalars['Int']['input']>;
|
|
35191
|
+
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd>;
|
|
35192
|
+
persona?: InputMaybe<Scalars['String']['input']>;
|
|
35193
|
+
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
35194
|
+
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
35195
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35196
|
+
};
|
|
35197
|
+
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
35198
|
+
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
35199
|
+
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
35200
|
+
jira?: Maybe<GrowthUnifiedProfileJiraOnboardingContext>;
|
|
35201
|
+
};
|
|
35202
|
+
export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
35203
|
+
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
35204
|
+
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
35205
|
+
};
|
|
35206
|
+
export declare type GrowthUnifiedProfileResult = {
|
|
35207
|
+
__typename?: 'GrowthUnifiedProfileResult';
|
|
35208
|
+
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
35209
|
+
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
35210
|
+
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
35211
|
+
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
35212
|
+
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
35213
|
+
};
|
|
35214
|
+
export declare enum GrowthUnifiedProfileTeamType {
|
|
35215
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
35216
|
+
Design = "DESIGN",
|
|
35217
|
+
Finance = "FINANCE",
|
|
35218
|
+
HumanResources = "HUMAN_RESOURCES",
|
|
35219
|
+
ItSupport = "IT_SUPPORT",
|
|
35220
|
+
Legal = "LEGAL",
|
|
35221
|
+
Marketing = "MARKETING",
|
|
35222
|
+
Operations = "OPERATIONS",
|
|
35223
|
+
Other = "OTHER",
|
|
35224
|
+
Sales = "SALES",
|
|
35225
|
+
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
35226
|
+
}
|
|
35227
|
+
export declare type GrowthUnifiedProfileUtm = {
|
|
35228
|
+
__typename?: 'GrowthUnifiedProfileUtm';
|
|
35229
|
+
keyword?: Maybe<Scalars['String']['output']>;
|
|
35230
|
+
medium?: Maybe<Scalars['String']['output']>;
|
|
35231
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
35232
|
+
};
|
|
34926
35233
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
34927
35234
|
__typename?: 'HamsAccountDetails';
|
|
34928
35235
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -35857,6 +36164,8 @@ export declare enum HelpLayoutConnectElementType {
|
|
|
35857
36164
|
SubheaderPanels = "subheaderPanels"
|
|
35858
36165
|
}
|
|
35859
36166
|
export declare type HelpLayoutConnectInput = {
|
|
36167
|
+
pages: HelpLayoutConnectElementPages;
|
|
36168
|
+
type: HelpLayoutConnectElementType;
|
|
35860
36169
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35861
36170
|
};
|
|
35862
36171
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -35948,6 +36257,8 @@ export declare enum HelpLayoutForgeElementType {
|
|
|
35948
36257
|
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35949
36258
|
}
|
|
35950
36259
|
export declare type HelpLayoutForgeInput = {
|
|
36260
|
+
pages: HelpLayoutForgeElementPages;
|
|
36261
|
+
type: HelpLayoutForgeElementType;
|
|
35951
36262
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35952
36263
|
};
|
|
35953
36264
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
@@ -36234,6 +36545,7 @@ export declare type HelpLayoutTopic = {
|
|
|
36234
36545
|
__typename?: 'HelpLayoutTopic';
|
|
36235
36546
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36236
36547
|
items?: Maybe<Array<HelpLayoutTopicItem>>;
|
|
36548
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
36237
36549
|
topicId?: Maybe<Scalars['String']['output']>;
|
|
36238
36550
|
topicName?: Maybe<Scalars['String']['output']>;
|
|
36239
36551
|
};
|
|
@@ -37790,29 +38102,6 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
37790
38102
|
export declare type JiraAffectedServicesInput = {
|
|
37791
38103
|
serviceId: Scalars['ID']['input'];
|
|
37792
38104
|
};
|
|
37793
|
-
export declare type JiraAgileReleaseTrain = {
|
|
37794
|
-
__typename?: 'JiraAgileReleaseTrain';
|
|
37795
|
-
boards?: Maybe<Array<Maybe<JiraSafeBoard>>>;
|
|
37796
|
-
id: Scalars['ID']['output'];
|
|
37797
|
-
project?: Maybe<JiraProject>;
|
|
37798
|
-
teamBoards?: Maybe<JiraSafeTeamBoardConnection>;
|
|
37799
|
-
};
|
|
37800
|
-
export declare type JiraAgileReleaseTrainTeamBoardsArgs = {
|
|
37801
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37802
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
37803
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37804
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37805
|
-
};
|
|
37806
|
-
export declare type JiraAgileReleaseTrainConnection = {
|
|
37807
|
-
__typename?: 'JiraAgileReleaseTrainConnection';
|
|
37808
|
-
edges?: Maybe<Array<Maybe<JiraAgileReleaseTrainEdge>>>;
|
|
37809
|
-
pageInfo: PageInfo;
|
|
37810
|
-
};
|
|
37811
|
-
export declare type JiraAgileReleaseTrainEdge = {
|
|
37812
|
-
__typename?: 'JiraAgileReleaseTrainEdge';
|
|
37813
|
-
cursor: Scalars['String']['output'];
|
|
37814
|
-
node?: Maybe<JiraAgileReleaseTrain>;
|
|
37815
|
-
};
|
|
37816
38105
|
export declare type JiraAiEnablementIssueInput = {
|
|
37817
38106
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
37818
38107
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38482,7 +38771,8 @@ export declare enum JiraBackgroundType {
|
|
|
38482
38771
|
Attachment = "ATTACHMENT",
|
|
38483
38772
|
Color = "COLOR",
|
|
38484
38773
|
Custom = "CUSTOM",
|
|
38485
|
-
Gradient = "GRADIENT"
|
|
38774
|
+
Gradient = "GRADIENT",
|
|
38775
|
+
Unsplash = "UNSPLASH"
|
|
38486
38776
|
}
|
|
38487
38777
|
export declare type JiraBackgroundUploadToken = {
|
|
38488
38778
|
__typename?: 'JiraBackgroundUploadToken';
|
|
@@ -38816,6 +39106,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
38816
39106
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
38817
39107
|
};
|
|
38818
39108
|
export declare type JiraCalendarVersionsInput = {
|
|
39109
|
+
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38819
39110
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
38820
39111
|
};
|
|
38821
39112
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -39601,13 +39892,6 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
39601
39892
|
isVisible: Scalars['Boolean']['input'];
|
|
39602
39893
|
menuId: Scalars['String']['input'];
|
|
39603
39894
|
};
|
|
39604
|
-
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
39605
|
-
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
39606
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
39607
|
-
id: Scalars['ID']['output'];
|
|
39608
|
-
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
39609
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
39610
|
-
};
|
|
39611
39895
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
39612
39896
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
39613
39897
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -39776,19 +40060,6 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
39776
40060
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
39777
40061
|
};
|
|
39778
40062
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
39779
|
-
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
39780
|
-
cloudId: Scalars['ID']['input'];
|
|
39781
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39782
|
-
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
39783
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39784
|
-
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39785
|
-
};
|
|
39786
|
-
export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
39787
|
-
__typename?: 'JiraCreateAgileReleaseTrainPayload';
|
|
39788
|
-
agileReleaseTrain?: Maybe<JiraAgileReleaseTrain>;
|
|
39789
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39790
|
-
success: Scalars['Boolean']['output'];
|
|
39791
|
-
};
|
|
39792
40063
|
export declare type JiraCreateAppNavigationItemInput = {
|
|
39793
40064
|
appId: Scalars['ID']['input'];
|
|
39794
40065
|
scopeId: Scalars['ID']['input'];
|
|
@@ -39803,6 +40074,16 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39803
40074
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
39804
40075
|
success: Scalars['Boolean']['output'];
|
|
39805
40076
|
};
|
|
40077
|
+
export declare type JiraCreateAttachmentBackgroundInput = {
|
|
40078
|
+
entityId: Scalars['ID']['input'];
|
|
40079
|
+
mediaApiFileId: Scalars['String']['input'];
|
|
40080
|
+
};
|
|
40081
|
+
export declare type JiraCreateAttachmentBackgroundPayload = Payload & {
|
|
40082
|
+
__typename?: 'JiraCreateAttachmentBackgroundPayload';
|
|
40083
|
+
background?: Maybe<JiraBackground>;
|
|
40084
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40085
|
+
success: Scalars['Boolean']['output'];
|
|
40086
|
+
};
|
|
39806
40087
|
export declare type JiraCreateBoardFieldInput = {
|
|
39807
40088
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39808
40089
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
@@ -39872,32 +40153,12 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
39872
40153
|
errors?: Maybe<Array<MutationError>>;
|
|
39873
40154
|
success: Scalars['Boolean']['output'];
|
|
39874
40155
|
};
|
|
39875
|
-
export declare type JiraCreateLargeSolutionInput = {
|
|
39876
|
-
cloudId: Scalars['ID']['input'];
|
|
39877
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39878
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39879
|
-
};
|
|
39880
|
-
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
39881
|
-
__typename?: 'JiraCreateLargeSolutionPayload';
|
|
39882
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39883
|
-
largeSolution?: Maybe<JiraLargeSolution>;
|
|
39884
|
-
success: Scalars['Boolean']['output'];
|
|
39885
|
-
};
|
|
39886
40156
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
39887
40157
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
39888
40158
|
errors?: Maybe<Array<MutationError>>;
|
|
39889
40159
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
39890
40160
|
success: Scalars['Boolean']['output'];
|
|
39891
40161
|
};
|
|
39892
|
-
export declare type JiraCreatePlanInput = {
|
|
39893
|
-
cloudId: Scalars['ID']['input'];
|
|
39894
|
-
};
|
|
39895
|
-
export declare type JiraCreatePlanPayload = Payload & {
|
|
39896
|
-
__typename?: 'JiraCreatePlanPayload';
|
|
39897
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39898
|
-
plan?: Maybe<JiraPlan>;
|
|
39899
|
-
success: Scalars['Boolean']['output'];
|
|
39900
|
-
};
|
|
39901
40162
|
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
39902
40163
|
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
39903
40164
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -39923,19 +40184,6 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
39923
40184
|
success: Scalars['Boolean']['output'];
|
|
39924
40185
|
version?: Maybe<JiraVersion>;
|
|
39925
40186
|
};
|
|
39926
|
-
export declare type JiraCreateSafeGlobalDataInput = {
|
|
39927
|
-
cloudId: Scalars['ID']['input'];
|
|
39928
|
-
};
|
|
39929
|
-
export declare type JiraCreateSafeGlobalDataPayload = Payload & {
|
|
39930
|
-
__typename?: 'JiraCreateSafeGlobalDataPayload';
|
|
39931
|
-
configuration?: Maybe<JiraSafeConfiguration>;
|
|
39932
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39933
|
-
success: Scalars['Boolean']['output'];
|
|
39934
|
-
};
|
|
39935
|
-
export declare type JiraCreateScaledConfiguratorProjectInput = {
|
|
39936
|
-
projectKey: Scalars['String']['input'];
|
|
39937
|
-
projectName: Scalars['String']['input'];
|
|
39938
|
-
};
|
|
39939
40187
|
export declare type JiraCreateShortcutInput = {
|
|
39940
40188
|
projectId: Scalars['ID']['input'];
|
|
39941
40189
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -40349,6 +40597,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
40349
40597
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
40350
40598
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
40351
40599
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
40600
|
+
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
40352
40601
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
40353
40602
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
40354
40603
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
@@ -40417,6 +40666,11 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
40417
40666
|
cloudId: Scalars['ID']['input'];
|
|
40418
40667
|
input: JiraDismissInContextConfigPromptInput;
|
|
40419
40668
|
};
|
|
40669
|
+
export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
40670
|
+
issueAri: Scalars['ID']['input'];
|
|
40671
|
+
jobId: Scalars['ID']['input'];
|
|
40672
|
+
prompt: Scalars['String']['input'];
|
|
40673
|
+
};
|
|
40420
40674
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
40421
40675
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
40422
40676
|
};
|
|
@@ -40927,6 +41181,11 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
40927
41181
|
type: Scalars['String']['output'];
|
|
40928
41182
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40929
41183
|
};
|
|
41184
|
+
export declare type JiraForgeAppEgressDeclaration = {
|
|
41185
|
+
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
41186
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
41187
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41188
|
+
};
|
|
40930
41189
|
export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40931
41190
|
__typename?: 'JiraForgeDateField';
|
|
40932
41191
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40962,13 +41221,31 @@ export declare enum JiraForgeEnvironmentType {
|
|
|
40962
41221
|
}
|
|
40963
41222
|
export declare type JiraForgeExtension = {
|
|
40964
41223
|
__typename?: 'JiraForgeExtension';
|
|
41224
|
+
appVersion: Scalars['String']['output'];
|
|
41225
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41226
|
+
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
40965
41227
|
environmentKey: Scalars['String']['output'];
|
|
40966
41228
|
environmentType: JiraForgeEnvironmentType;
|
|
40967
41229
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
40968
41230
|
id: Scalars['ID']['output'];
|
|
41231
|
+
installationId: Scalars['String']['output'];
|
|
41232
|
+
license?: Maybe<JiraForgeExtensionLicense>;
|
|
40969
41233
|
properties: Scalars['JSON']['output'];
|
|
41234
|
+
scopes: Array<Scalars['String']['output']>;
|
|
40970
41235
|
type: Scalars['String']['output'];
|
|
40971
41236
|
};
|
|
41237
|
+
export declare type JiraForgeExtensionLicense = {
|
|
41238
|
+
__typename?: 'JiraForgeExtensionLicense';
|
|
41239
|
+
active: Scalars['Boolean']['output'];
|
|
41240
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41241
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41242
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41243
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
41244
|
+
subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41245
|
+
supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
41246
|
+
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41247
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41248
|
+
};
|
|
40972
41249
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40973
41250
|
__typename?: 'JiraForgeGroupField';
|
|
40974
41251
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41549,6 +41826,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41549
41826
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
41550
41827
|
comments?: Maybe<JiraCommentConnection>;
|
|
41551
41828
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
41829
|
+
createdField?: Maybe<JiraDateTimePickerField>;
|
|
41552
41830
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
41553
41831
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
41554
41832
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -41592,6 +41870,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41592
41870
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
41593
41871
|
priorityField?: Maybe<JiraPriorityField>;
|
|
41594
41872
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
41873
|
+
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
41595
41874
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
41596
41875
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
41597
41876
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -41601,7 +41880,10 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41601
41880
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
41602
41881
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
41603
41882
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41883
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41884
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
41604
41885
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41886
|
+
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41605
41887
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
41606
41888
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
41607
41889
|
};
|
|
@@ -42796,6 +43078,10 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
42796
43078
|
field?: Maybe<JiraIssueTypeField>;
|
|
42797
43079
|
success: Scalars['Boolean']['output'];
|
|
42798
43080
|
};
|
|
43081
|
+
export declare type JiraIssueTypeFilterInput = {
|
|
43082
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43083
|
+
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43084
|
+
};
|
|
42799
43085
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
42800
43086
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
42801
43087
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43459,29 +43745,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
43459
43745
|
export declare type JiraLabelsInput = {
|
|
43460
43746
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
43461
43747
|
};
|
|
43462
|
-
export declare type JiraLargeSolution = {
|
|
43463
|
-
__typename?: 'JiraLargeSolution';
|
|
43464
|
-
agileReleaseTrains?: Maybe<Array<Maybe<JiraAgileReleaseTrain>>>;
|
|
43465
|
-
id: Scalars['ID']['output'];
|
|
43466
|
-
project?: Maybe<JiraProject>;
|
|
43467
|
-
releaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
43468
|
-
};
|
|
43469
|
-
export declare type JiraLargeSolutionReleaseTrainsArgs = {
|
|
43470
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43471
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
43472
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43473
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43474
|
-
};
|
|
43475
|
-
export declare type JiraLargeSolutionConnection = {
|
|
43476
|
-
__typename?: 'JiraLargeSolutionConnection';
|
|
43477
|
-
edges?: Maybe<Array<Maybe<JiraLargeSolutionEdge>>>;
|
|
43478
|
-
pageInfo: PageInfo;
|
|
43479
|
-
};
|
|
43480
|
-
export declare type JiraLargeSolutionEdge = {
|
|
43481
|
-
__typename?: 'JiraLargeSolutionEdge';
|
|
43482
|
-
cursor: Scalars['String']['output'];
|
|
43483
|
-
node?: Maybe<JiraLargeSolution>;
|
|
43484
|
-
};
|
|
43485
43748
|
export declare type JiraLegacyTeamFieldOperationInput = {
|
|
43486
43749
|
operation: JiraSingleValueFieldOperations;
|
|
43487
43750
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -43873,11 +44136,12 @@ export declare type JiraMutation = {
|
|
|
43873
44136
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
43874
44137
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
43875
44138
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
44139
|
+
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43876
44140
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43877
|
-
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43878
44141
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43879
44142
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43880
44143
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
44144
|
+
createAttachmentBackground?: Maybe<JiraCreateAttachmentBackgroundPayload>;
|
|
43881
44145
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
43882
44146
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
43883
44147
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
@@ -43888,12 +44152,9 @@ export declare type JiraMutation = {
|
|
|
43888
44152
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
43889
44153
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
43890
44154
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
43891
|
-
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
43892
44155
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
43893
44156
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
43894
44157
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
43895
|
-
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
43896
|
-
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
43897
44158
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43898
44159
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
43899
44160
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
@@ -44045,12 +44306,12 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
44045
44306
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
44046
44307
|
input: JiraAssignRelatedWorkInput;
|
|
44047
44308
|
};
|
|
44309
|
+
export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
44310
|
+
input: JiraUnsplashAttributionInput;
|
|
44311
|
+
};
|
|
44048
44312
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44049
44313
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44050
44314
|
};
|
|
44051
|
-
export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
44052
|
-
input: JiraCreateAgileReleaseTrainInput;
|
|
44053
|
-
};
|
|
44054
44315
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
44055
44316
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
44056
44317
|
};
|
|
@@ -44061,6 +44322,9 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
44061
44322
|
cloudId: Scalars['ID']['input'];
|
|
44062
44323
|
input: JiraCreateApproverListFieldInput;
|
|
44063
44324
|
};
|
|
44325
|
+
export declare type JiraMutationCreateAttachmentBackgroundArgs = {
|
|
44326
|
+
input: JiraCreateAttachmentBackgroundInput;
|
|
44327
|
+
};
|
|
44064
44328
|
export declare type JiraMutationCreateBoardArgs = {
|
|
44065
44329
|
cloudId: Scalars['ID']['input'];
|
|
44066
44330
|
input: JiraCreateBoardInput;
|
|
@@ -44099,9 +44363,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
44099
44363
|
cloudId: Scalars['ID']['input'];
|
|
44100
44364
|
input: JiraWorkManagementCreateOverviewInput;
|
|
44101
44365
|
};
|
|
44102
|
-
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
44103
|
-
input: JiraCreateLargeSolutionInput;
|
|
44104
|
-
};
|
|
44105
44366
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
44106
44367
|
cloudId: Scalars['ID']['input'];
|
|
44107
44368
|
};
|
|
@@ -44111,12 +44372,6 @@ export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
|
44111
44372
|
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
44112
44373
|
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
44113
44374
|
};
|
|
44114
|
-
export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
44115
|
-
input: JiraCreateSafeGlobalDataInput;
|
|
44116
|
-
};
|
|
44117
|
-
export declare type JiraMutationCreateSafePlanArgs = {
|
|
44118
|
-
input: JiraCreatePlanInput;
|
|
44119
|
-
};
|
|
44120
44375
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
44121
44376
|
input: JiraCreateSimpleNavigationItemInput;
|
|
44122
44377
|
};
|
|
@@ -44951,8 +45206,14 @@ export declare type JiraOrderFormattingRuleInput = {
|
|
|
44951
45206
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
44952
45207
|
__typename?: 'JiraOrderFormattingRulePayload';
|
|
44953
45208
|
errors?: Maybe<Array<MutationError>>;
|
|
45209
|
+
rules?: Maybe<JiraFormattingRuleConnection>;
|
|
44954
45210
|
success: Scalars['Boolean']['output'];
|
|
44955
45211
|
};
|
|
45212
|
+
export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
45213
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45214
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45215
|
+
scope: Scalars['ID']['input'];
|
|
45216
|
+
};
|
|
44956
45217
|
export declare enum JiraOrganizationApprovalLocation {
|
|
44957
45218
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
44958
45219
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -45427,7 +45688,6 @@ export declare type JiraProject = Node & {
|
|
|
45427
45688
|
classificationTags: Array<Scalars['String']['output']>;
|
|
45428
45689
|
cloudId: Scalars['ID']['output'];
|
|
45429
45690
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
45430
|
-
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
45431
45691
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
45432
45692
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
45433
45693
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -45505,10 +45765,6 @@ export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
|
45505
45765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45506
45766
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45507
45767
|
};
|
|
45508
|
-
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
45509
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45510
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45511
|
-
};
|
|
45512
45768
|
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
45513
45769
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45514
45770
|
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
@@ -45539,6 +45795,7 @@ export declare type JiraProjectIntentTemplatesArgs = {
|
|
|
45539
45795
|
export declare type JiraProjectIssueTypesArgs = {
|
|
45540
45796
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45541
45797
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45798
|
+
filter?: InputMaybe<JiraIssueTypeFilterInput>;
|
|
45542
45799
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45543
45800
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45544
45801
|
};
|
|
@@ -45644,30 +45901,6 @@ export declare enum JiraProjectActionType {
|
|
|
45644
45901
|
ViewIssues = "VIEW_ISSUES",
|
|
45645
45902
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45646
45903
|
}
|
|
45647
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
45648
|
-
id: Scalars['ID']['input'];
|
|
45649
|
-
};
|
|
45650
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
45651
|
-
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
45652
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45653
|
-
success: Scalars['Boolean']['output'];
|
|
45654
|
-
};
|
|
45655
|
-
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
45656
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
45657
|
-
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
45658
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45659
|
-
};
|
|
45660
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
45661
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
45662
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
45663
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
45664
|
-
pageInfo: PageInfo;
|
|
45665
|
-
};
|
|
45666
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
45667
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
45668
|
-
cursor: Scalars['String']['output'];
|
|
45669
|
-
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
45670
|
-
};
|
|
45671
45904
|
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45672
45905
|
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45673
45906
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -46374,10 +46607,9 @@ export declare type JiraQuery = {
|
|
|
46374
46607
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
46375
46608
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
46376
46609
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
46377
|
-
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
46378
|
-
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46379
46610
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46380
46611
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46612
|
+
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
46381
46613
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46382
46614
|
sprintById?: Maybe<JiraSprint>;
|
|
46383
46615
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -46672,8 +46904,9 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
46672
46904
|
key: JiraGlobalPermissionType;
|
|
46673
46905
|
};
|
|
46674
46906
|
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46907
|
+
cloudId: Scalars['ID']['input'];
|
|
46675
46908
|
permission: JiraProjectPermissionType;
|
|
46676
|
-
|
|
46909
|
+
projectKey: Scalars['String']['input'];
|
|
46677
46910
|
};
|
|
46678
46911
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
46679
46912
|
projectId: Scalars['ID']['input'];
|
|
@@ -47113,13 +47346,6 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
47113
47346
|
keyword: Scalars['String']['input'];
|
|
47114
47347
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47115
47348
|
};
|
|
47116
|
-
export declare type JiraQueryScaledConfigurationArgs = {
|
|
47117
|
-
cloudId: Scalars['ID']['input'];
|
|
47118
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
47119
|
-
};
|
|
47120
|
-
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
47121
|
-
cloudId: Scalars['ID']['input'];
|
|
47122
|
-
};
|
|
47123
47349
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
47124
47350
|
issueId: Scalars['ID']['input'];
|
|
47125
47351
|
};
|
|
@@ -47127,6 +47353,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47127
47353
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47128
47354
|
issueKey: Scalars['String']['input'];
|
|
47129
47355
|
};
|
|
47356
|
+
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47357
|
+
input: JiraUnsplashSearchInput;
|
|
47358
|
+
};
|
|
47130
47359
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47131
47360
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47132
47361
|
cloudId: Scalars['ID']['input'];
|
|
@@ -47776,68 +48005,6 @@ export declare type JiraRoleEdge = {
|
|
|
47776
48005
|
cursor: Scalars['String']['output'];
|
|
47777
48006
|
node?: Maybe<JiraRole>;
|
|
47778
48007
|
};
|
|
47779
|
-
export declare type JiraSafeBoard = {
|
|
47780
|
-
__typename?: 'JiraSafeBoard';
|
|
47781
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47782
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47783
|
-
id: Scalars['ID']['output'];
|
|
47784
|
-
team?: Maybe<JiraTeamView>;
|
|
47785
|
-
};
|
|
47786
|
-
export declare type JiraSafeConfiguration = {
|
|
47787
|
-
__typename?: 'JiraSafeConfiguration';
|
|
47788
|
-
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
47789
|
-
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47790
|
-
capability?: Maybe<JiraIssueType>;
|
|
47791
|
-
feature?: Maybe<JiraIssueType>;
|
|
47792
|
-
id: Scalars['ID']['output'];
|
|
47793
|
-
jobSize?: Maybe<JiraNumberField>;
|
|
47794
|
-
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47795
|
-
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
47796
|
-
plan?: Maybe<JiraPlan>;
|
|
47797
|
-
riskReduction?: Maybe<JiraNumberField>;
|
|
47798
|
-
timeCriticality?: Maybe<JiraNumberField>;
|
|
47799
|
-
userBusinessValue?: Maybe<JiraNumberField>;
|
|
47800
|
-
weightedShortestJobFirst?: Maybe<JiraNumberField>;
|
|
47801
|
-
};
|
|
47802
|
-
export declare type JiraSafeConfigurationAgileReleaseTrainsArgs = {
|
|
47803
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47804
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47805
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47806
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47807
|
-
};
|
|
47808
|
-
export declare type JiraSafeConfigurationLargeSolutionsArgs = {
|
|
47809
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47810
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47811
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47812
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47813
|
-
};
|
|
47814
|
-
export declare type JiraSafeTeamBoard = {
|
|
47815
|
-
__typename?: 'JiraSafeTeamBoard';
|
|
47816
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47817
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47818
|
-
id: Scalars['ID']['output'];
|
|
47819
|
-
team?: Maybe<JiraTeamView>;
|
|
47820
|
-
};
|
|
47821
|
-
export declare type JiraSafeTeamBoardConnection = {
|
|
47822
|
-
__typename?: 'JiraSafeTeamBoardConnection';
|
|
47823
|
-
edges?: Maybe<Array<Maybe<JiraSafeTeamBoardEdge>>>;
|
|
47824
|
-
pageInfo: PageInfo;
|
|
47825
|
-
};
|
|
47826
|
-
export declare type JiraSafeTeamBoardEdge = {
|
|
47827
|
-
__typename?: 'JiraSafeTeamBoardEdge';
|
|
47828
|
-
cursor: Scalars['String']['output'];
|
|
47829
|
-
node?: Maybe<JiraSafeTeamBoard>;
|
|
47830
|
-
};
|
|
47831
|
-
export declare enum JiraScaledConfigurationPermission {
|
|
47832
|
-
Edit = "EDIT",
|
|
47833
|
-
None = "NONE",
|
|
47834
|
-
View = "VIEW"
|
|
47835
|
-
}
|
|
47836
|
-
export declare type JiraScaledConfigurationPermissions = {
|
|
47837
|
-
__typename?: 'JiraScaledConfigurationPermissions';
|
|
47838
|
-
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
47839
|
-
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
47840
|
-
};
|
|
47841
48008
|
export declare type JiraScenario = Node & {
|
|
47842
48009
|
__typename?: 'JiraScenario';
|
|
47843
48010
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -47864,8 +48031,16 @@ export declare type JiraScenarioIssueLikePlanScenarioValuesArgs = {
|
|
|
47864
48031
|
export declare type JiraScenarioIssueLikeConnection = {
|
|
47865
48032
|
__typename?: 'JiraScenarioIssueLikeConnection';
|
|
47866
48033
|
edges?: Maybe<Array<Maybe<JiraScenarioIssueLikeEdge>>>;
|
|
48034
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']['output']>;
|
|
48035
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
48036
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
47867
48037
|
pageInfo: PageInfo;
|
|
47868
48038
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48039
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']['output']>;
|
|
48040
|
+
};
|
|
48041
|
+
export declare type JiraScenarioIssueLikeConnectionPageCursorsArgs = {
|
|
48042
|
+
maxCursors: Scalars['Int']['input'];
|
|
48043
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
47869
48044
|
};
|
|
47870
48045
|
export declare type JiraScenarioIssueLikeEdge = {
|
|
47871
48046
|
__typename?: 'JiraScenarioIssueLikeEdge';
|
|
@@ -49989,6 +50164,37 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
49989
50164
|
errors?: Maybe<Array<MutationError>>;
|
|
49990
50165
|
success: Scalars['Boolean']['output'];
|
|
49991
50166
|
};
|
|
50167
|
+
export declare type JiraUnsplashAttributionInput = {
|
|
50168
|
+
cloudId: Scalars['ID']['input'];
|
|
50169
|
+
imageIds: Array<Scalars['ID']['input']>;
|
|
50170
|
+
};
|
|
50171
|
+
export declare type JiraUnsplashAttributionPayload = Payload & {
|
|
50172
|
+
__typename?: 'JiraUnsplashAttributionPayload';
|
|
50173
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50174
|
+
success: Scalars['Boolean']['output'];
|
|
50175
|
+
};
|
|
50176
|
+
export declare type JiraUnsplashImage = {
|
|
50177
|
+
__typename?: 'JiraUnsplashImage';
|
|
50178
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
50179
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
50180
|
+
filePath?: Maybe<Scalars['String']['output']>;
|
|
50181
|
+
thumbnailImage?: Maybe<Scalars['String']['output']>;
|
|
50182
|
+
unsplashId?: Maybe<Scalars['String']['output']>;
|
|
50183
|
+
};
|
|
50184
|
+
export declare type JiraUnsplashImageSearchPage = {
|
|
50185
|
+
__typename?: 'JiraUnsplashImageSearchPage';
|
|
50186
|
+
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
50187
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
50188
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
50189
|
+
};
|
|
50190
|
+
export declare type JiraUnsplashImageSearchPageResult = JiraUnsplashImageSearchPage | QueryError;
|
|
50191
|
+
export declare type JiraUnsplashSearchInput = {
|
|
50192
|
+
cloudId: Scalars['ID']['input'];
|
|
50193
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
50194
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
50195
|
+
query: Scalars['String']['input'];
|
|
50196
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
50197
|
+
};
|
|
49992
50198
|
export declare type JiraUnsupportedLanguageError = {
|
|
49993
50199
|
__typename?: 'JiraUnsupportedLanguageError';
|
|
49994
50200
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -52468,9 +52674,11 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
52468
52674
|
title: Scalars['String']['output'];
|
|
52469
52675
|
url: Scalars['String']['output'];
|
|
52470
52676
|
};
|
|
52677
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
52471
52678
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
52472
52679
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
52473
52680
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52681
|
+
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
52474
52682
|
url?: Maybe<Scalars['String']['output']>;
|
|
52475
52683
|
};
|
|
52476
52684
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
@@ -52485,6 +52693,15 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
52485
52693
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
52486
52694
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52487
52695
|
};
|
|
52696
|
+
export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
52697
|
+
__typename?: 'KnowledgeDiscoveryBookmarkProperties';
|
|
52698
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52699
|
+
keyPhrase: Scalars['String']['output'];
|
|
52700
|
+
lastModifiedTimestamp: Scalars['String']['output'];
|
|
52701
|
+
lastModifierAccountId: Scalars['String']['output'];
|
|
52702
|
+
title: Scalars['String']['output'];
|
|
52703
|
+
url: Scalars['String']['output'];
|
|
52704
|
+
};
|
|
52488
52705
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
52489
52706
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
52490
52707
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
@@ -52667,6 +52884,7 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
52667
52884
|
};
|
|
52668
52885
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
52669
52886
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
52887
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
52670
52888
|
adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
|
|
52671
52889
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
52672
52890
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
@@ -52677,6 +52895,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
52677
52895
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
52678
52896
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
52679
52897
|
};
|
|
52898
|
+
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
52899
|
+
cloudId: Scalars['ID']['input'];
|
|
52900
|
+
id: Scalars['ID']['input'];
|
|
52901
|
+
orgId: Scalars['String']['input'];
|
|
52902
|
+
};
|
|
52680
52903
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
52681
52904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52682
52905
|
cloudId: Scalars['ID']['input'];
|
|
@@ -52686,7 +52909,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52686
52909
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52687
52910
|
cloudId: Scalars['String']['input'];
|
|
52688
52911
|
keyPhrase: Scalars['String']['input'];
|
|
52689
|
-
workspaceId
|
|
52912
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52690
52913
|
};
|
|
52691
52914
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
52692
52915
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -52748,7 +52971,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
52748
52971
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
52749
52972
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
52750
52973
|
None = "NONE",
|
|
52751
|
-
Person = "PERSON"
|
|
52974
|
+
Person = "PERSON",
|
|
52975
|
+
Team = "TEAM"
|
|
52752
52976
|
}
|
|
52753
52977
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
52754
52978
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -53220,6 +53444,13 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
53220
53444
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
53221
53445
|
scopes: Array<ConnectAppScope>;
|
|
53222
53446
|
};
|
|
53447
|
+
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
53448
|
+
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
53449
|
+
endCursor: Scalars['String']['output'];
|
|
53450
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
53451
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
53452
|
+
startCursor: Scalars['String']['output'];
|
|
53453
|
+
};
|
|
53223
53454
|
export declare type MarketplaceConsoleAppSoftware = {
|
|
53224
53455
|
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53225
53456
|
appKey: Scalars['String']['output'];
|
|
@@ -53231,16 +53462,11 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53231
53462
|
id: Scalars['ID']['output'];
|
|
53232
53463
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53233
53464
|
};
|
|
53234
|
-
export declare type
|
|
53235
|
-
__typename?: '
|
|
53465
|
+
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53466
|
+
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53236
53467
|
appSoftwareId: Scalars['ID']['output'];
|
|
53237
|
-
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53238
53468
|
hosting: MarketplaceConsoleHosting;
|
|
53239
|
-
|
|
53240
|
-
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53241
|
-
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53242
|
-
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53243
|
-
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53469
|
+
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53244
53470
|
};
|
|
53245
53471
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53246
53472
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53323,6 +53549,10 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53323
53549
|
Rejected = "REJECTED",
|
|
53324
53550
|
Submitted = "SUBMITTED"
|
|
53325
53551
|
}
|
|
53552
|
+
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53553
|
+
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53554
|
+
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53555
|
+
};
|
|
53326
53556
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53327
53557
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53328
53558
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53495,10 +53725,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
53495
53725
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53496
53726
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53497
53727
|
altText?: Maybe<Scalars['String']['output']>;
|
|
53728
|
+
fileName: Scalars['String']['output'];
|
|
53498
53729
|
height: Scalars['Int']['output'];
|
|
53499
|
-
id: Scalars['String']['output'];
|
|
53500
53730
|
imageType: Scalars['String']['output'];
|
|
53501
|
-
name: Scalars['String']['output'];
|
|
53502
53731
|
uri: Scalars['String']['output'];
|
|
53503
53732
|
width: Scalars['Int']['output'];
|
|
53504
53733
|
};
|
|
@@ -53512,6 +53741,7 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53512
53741
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53513
53742
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53514
53743
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53744
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
53515
53745
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53516
53746
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53517
53747
|
};
|
|
@@ -53553,17 +53783,26 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
53553
53783
|
export declare type MarketplaceConsoleMutationApi = {
|
|
53554
53784
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53555
53785
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53786
|
+
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53556
53787
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53788
|
+
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53557
53789
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53558
53790
|
};
|
|
53559
53791
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53560
53792
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53561
53793
|
product: MarketplaceConsoleProduct;
|
|
53562
53794
|
};
|
|
53795
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53796
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53797
|
+
};
|
|
53563
53798
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53564
53799
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53565
53800
|
product: MarketplaceConsoleProduct;
|
|
53566
53801
|
};
|
|
53802
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53803
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53804
|
+
token: Scalars['String']['input'];
|
|
53805
|
+
};
|
|
53567
53806
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53568
53807
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53569
53808
|
product: MarketplaceConsoleProduct;
|
|
@@ -53668,6 +53907,23 @@ export declare type MarketplaceConsolePricingPlanModify = {
|
|
|
53668
53907
|
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53669
53908
|
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53670
53909
|
};
|
|
53910
|
+
export declare type MarketplaceConsolePrivateListings = {
|
|
53911
|
+
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53912
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53913
|
+
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
53914
|
+
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
53915
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53916
|
+
};
|
|
53917
|
+
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
53918
|
+
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
53919
|
+
buildNumber: Scalars['Int']['output'];
|
|
53920
|
+
versionNumber: Scalars['String']['output'];
|
|
53921
|
+
};
|
|
53922
|
+
export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
53923
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokenDetails';
|
|
53924
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53925
|
+
node: MarketplaceConsoleTokenDetails;
|
|
53926
|
+
};
|
|
53671
53927
|
export declare type MarketplaceConsoleProduct = {
|
|
53672
53928
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53673
53929
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53696,9 +53952,9 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
53696
53952
|
};
|
|
53697
53953
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
53698
53954
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53699
|
-
category?: Maybe<MarketplaceConsoleTagsContent
|
|
53700
|
-
keywords?: Maybe<MarketplaceConsoleTagsContent
|
|
53701
|
-
marketing?: Maybe<MarketplaceConsoleTagsContent
|
|
53955
|
+
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53956
|
+
keywords?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53957
|
+
marketing?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53702
53958
|
};
|
|
53703
53959
|
export declare type MarketplaceConsoleProductMetadata = {
|
|
53704
53960
|
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
@@ -53710,10 +53966,11 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
53710
53966
|
};
|
|
53711
53967
|
export declare type MarketplaceConsoleQueryApi = {
|
|
53712
53968
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53969
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
53713
53970
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53714
|
-
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53715
53971
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53716
53972
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53973
|
+
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53717
53974
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53718
53975
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53719
53976
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -53726,10 +53983,12 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53726
53983
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53727
53984
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53728
53985
|
};
|
|
53729
|
-
export declare type
|
|
53730
|
-
|
|
53986
|
+
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
53987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53988
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
53989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53731
53990
|
};
|
|
53732
|
-
export declare type
|
|
53991
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53733
53992
|
appId: Scalars['ID']['input'];
|
|
53734
53993
|
};
|
|
53735
53994
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
@@ -53740,6 +53999,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53740
53999
|
appId: Scalars['ID']['input'];
|
|
53741
54000
|
buildNumber: Scalars['ID']['input'];
|
|
53742
54001
|
};
|
|
54002
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54003
|
+
appId: Scalars['ID']['input'];
|
|
54004
|
+
};
|
|
53743
54005
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
53744
54006
|
partnerId: Scalars['ID']['input'];
|
|
53745
54007
|
};
|
|
@@ -53772,7 +54034,13 @@ export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
|
53772
54034
|
export declare type MarketplaceConsoleTagsContent = {
|
|
53773
54035
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53774
54036
|
id: Scalars['ID']['output'];
|
|
53775
|
-
name
|
|
54037
|
+
name: Scalars['String']['output'];
|
|
54038
|
+
};
|
|
54039
|
+
export declare type MarketplaceConsoleTokenDetails = {
|
|
54040
|
+
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54041
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
54042
|
+
links?: Maybe<Array<Maybe<MarketplaceConsolePrivateListingsLink>>>;
|
|
54043
|
+
token: Scalars['String']['output'];
|
|
53776
54044
|
};
|
|
53777
54045
|
export declare type MarketplaceConsoleUser = {
|
|
53778
54046
|
__typename?: 'MarketplaceConsoleUser';
|
|
@@ -55032,6 +55300,129 @@ export declare type MercuryPreference = Node & {
|
|
|
55032
55300
|
key: Scalars['String']['output'];
|
|
55033
55301
|
value: Scalars['String']['output'];
|
|
55034
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
|
+
}
|
|
55035
55426
|
export declare type MercuryQueryApi = {
|
|
55036
55427
|
__typename?: 'MercuryQueryApi';
|
|
55037
55428
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -55312,6 +55703,7 @@ export declare type MercuryUserEdge = {
|
|
|
55312
55703
|
cursor: Scalars['String']['output'];
|
|
55313
55704
|
node?: Maybe<User>;
|
|
55314
55705
|
};
|
|
55706
|
+
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
55315
55707
|
export declare type MercuryWorkspaceContext = {
|
|
55316
55708
|
__typename?: 'MercuryWorkspaceContext';
|
|
55317
55709
|
activationId: Scalars['String']['output'];
|
|
@@ -55652,7 +56044,6 @@ export declare type Mutation = {
|
|
|
55652
56044
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
55653
56045
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
55654
56046
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
55655
|
-
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
55656
56047
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
55657
56048
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
55658
56049
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -55678,6 +56069,7 @@ export declare type Mutation = {
|
|
|
55678
56069
|
editSprint?: Maybe<SprintResponse>;
|
|
55679
56070
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
55680
56071
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
56072
|
+
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
55681
56073
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
55682
56074
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
55683
56075
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -56409,9 +56801,6 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
56409
56801
|
export declare type MutationDeleteColumnArgs = {
|
|
56410
56802
|
input?: InputMaybe<DeleteColumnInput>;
|
|
56411
56803
|
};
|
|
56412
|
-
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
56413
|
-
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
56414
|
-
};
|
|
56415
56804
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
56416
56805
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
56417
56806
|
};
|
|
@@ -56472,6 +56861,9 @@ export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
|
56472
56861
|
export declare type MutationEditSprintArgs = {
|
|
56473
56862
|
input?: InputMaybe<EditSprintInput>;
|
|
56474
56863
|
};
|
|
56864
|
+
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
56865
|
+
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
56866
|
+
};
|
|
56475
56867
|
export declare type MutationHelpCenterArgs = {
|
|
56476
56868
|
cloudId: Scalars['ID']['input'];
|
|
56477
56869
|
};
|
|
@@ -59187,12 +59579,15 @@ export declare type Query = {
|
|
|
59187
59579
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
59188
59580
|
graphStore?: Maybe<GraphStore>;
|
|
59189
59581
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
59582
|
+
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
59190
59583
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
59191
59584
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
59192
59585
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
59193
59586
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
59194
59587
|
insights?: Maybe<Insights>;
|
|
59195
59588
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
59589
|
+
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
59590
|
+
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
59196
59591
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
59197
59592
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
59198
59593
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60420,6 +60815,7 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
60420
60815
|
contextId: Scalars['ID']['input'];
|
|
60421
60816
|
definitionId: Scalars['ID']['input'];
|
|
60422
60817
|
extensionKey: Scalars['String']['input'];
|
|
60818
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
60423
60819
|
};
|
|
60424
60820
|
export declare type QueryExtensionContextArgs = {
|
|
60425
60821
|
contextId: Scalars['ID']['input'];
|
|
@@ -60451,6 +60847,10 @@ export declare type QueryGetKeywordsArgs = {
|
|
|
60451
60847
|
entityAri?: InputMaybe<Scalars['String']['input']>;
|
|
60452
60848
|
textInput?: InputMaybe<NlpGetKeywordsTextInput>;
|
|
60453
60849
|
};
|
|
60850
|
+
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
60851
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
60852
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
60853
|
+
};
|
|
60454
60854
|
export declare type QueryHelpCenterArgs = {
|
|
60455
60855
|
cloudId: Scalars['ID']['input'];
|
|
60456
60856
|
};
|
|
@@ -60466,6 +60866,13 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
60466
60866
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
60467
60867
|
appId: Scalars['ID']['input'];
|
|
60468
60868
|
};
|
|
60869
|
+
export declare type QueryIpmFlagArgs = {
|
|
60870
|
+
id: Scalars['String']['input'];
|
|
60871
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60872
|
+
};
|
|
60873
|
+
export declare type QueryIpmFlagsArgs = {
|
|
60874
|
+
search: ContentPlatformSearchApIv2Query;
|
|
60875
|
+
};
|
|
60469
60876
|
export declare type QueryIpmImageModalArgs = {
|
|
60470
60877
|
id: Scalars['String']['input'];
|
|
60471
60878
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62345,7 +62752,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62345
62752
|
type: SearchResultType;
|
|
62346
62753
|
url: Scalars['URL']['output'];
|
|
62347
62754
|
};
|
|
62348
|
-
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;
|
|
62755
|
+
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;
|
|
62349
62756
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62350
62757
|
__typename?: 'SearchResultGoogleDocument';
|
|
62351
62758
|
bodyText: Scalars['String']['output'];
|
|
@@ -62403,6 +62810,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
62403
62810
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
62404
62811
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62405
62812
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62813
|
+
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
62406
62814
|
owner?: Maybe<ThirdPartyUser>;
|
|
62407
62815
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
62408
62816
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -63061,6 +63469,16 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63061
63469
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63062
63470
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63063
63471
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
63472
|
+
JiraDataDiscoveryAtlassianToken = "JIRA_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
63473
|
+
JiraDataDiscoveryAuTfn = "JIRA_DATA_DISCOVERY_AU_TFN",
|
|
63474
|
+
JiraDataDiscoveryAwsKeys = "JIRA_DATA_DISCOVERY_AWS_KEYS",
|
|
63475
|
+
JiraDataDiscoveryCreditCard = "JIRA_DATA_DISCOVERY_CREDIT_CARD",
|
|
63476
|
+
JiraDataDiscoveryCrypto = "JIRA_DATA_DISCOVERY_CRYPTO",
|
|
63477
|
+
JiraDataDiscoveryIban = "JIRA_DATA_DISCOVERY_IBAN",
|
|
63478
|
+
JiraDataDiscoveryJwtKey = "JIRA_DATA_DISCOVERY_JWT_KEY",
|
|
63479
|
+
JiraDataDiscoveryPassword = "JIRA_DATA_DISCOVERY_PASSWORD",
|
|
63480
|
+
JiraDataDiscoveryPrivateKey = "JIRA_DATA_DISCOVERY_PRIVATE_KEY",
|
|
63481
|
+
JiraDataDiscoveryUsSsn = "JIRA_DATA_DISCOVERY_US_SSN",
|
|
63064
63482
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
63065
63483
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
63066
63484
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
@@ -63332,6 +63750,7 @@ export declare type ShepherdDetection = {
|
|
|
63332
63750
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
63333
63751
|
id: Scalars['ID']['output'];
|
|
63334
63752
|
product: ShepherdAtlassianProduct;
|
|
63753
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
63335
63754
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
63336
63755
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
63337
63756
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
@@ -63355,6 +63774,11 @@ export declare type ShepherdDetectionExclusionsSetting = {
|
|
|
63355
63774
|
allowedExclusions: Array<Scalars['String']['output']>;
|
|
63356
63775
|
exclusions: Array<ShepherdDetectionExclusion>;
|
|
63357
63776
|
};
|
|
63777
|
+
export declare type ShepherdDetectionJiraEnabledSetting = {
|
|
63778
|
+
__typename?: 'ShepherdDetectionJiraEnabledSetting';
|
|
63779
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
63780
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
63781
|
+
};
|
|
63358
63782
|
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
63359
63783
|
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
63360
63784
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63409,7 +63833,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
63409
63833
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63410
63834
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
63411
63835
|
};
|
|
63412
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
63836
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
63413
63837
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
63414
63838
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
63415
63839
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63671,6 +64095,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
63671
64095
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
63672
64096
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
63673
64097
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
64098
|
+
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
63674
64099
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
63675
64100
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
63676
64101
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65504,6 +65929,7 @@ export declare type TownsquareCommentEdge = {
|
|
|
65504
65929
|
};
|
|
65505
65930
|
export declare type TownsquareCreateGoalInput = {
|
|
65506
65931
|
containerId: Scalars['String']['input'];
|
|
65932
|
+
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
65507
65933
|
name: Scalars['String']['input'];
|
|
65508
65934
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
65509
65935
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65560,6 +65986,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
65560
65986
|
creationDate: Scalars['DateTime']['output'];
|
|
65561
65987
|
description?: Maybe<Scalars['String']['output']>;
|
|
65562
65988
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
65989
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
65563
65990
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
65564
65991
|
id: Scalars['ID']['output'];
|
|
65565
65992
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -65627,6 +66054,43 @@ export declare enum TownsquareGoalStateValue {
|
|
|
65627
66054
|
Paused = "paused",
|
|
65628
66055
|
Pending = "pending"
|
|
65629
66056
|
}
|
|
66057
|
+
export declare type TownsquareGoalType = Node & {
|
|
66058
|
+
__typename?: 'TownsquareGoalType';
|
|
66059
|
+
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
66060
|
+
allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
66061
|
+
id: Scalars['ID']['output'];
|
|
66062
|
+
name?: Maybe<TownsquareGoalTypeName>;
|
|
66063
|
+
state?: Maybe<TownsquareGoalTypeState>;
|
|
66064
|
+
};
|
|
66065
|
+
export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
|
|
66066
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66068
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66069
|
+
};
|
|
66070
|
+
export declare type TownsquareGoalTypeAllowedParentTypesArgs = {
|
|
66071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66072
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66073
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66074
|
+
};
|
|
66075
|
+
export declare type TownsquareGoalTypeConnection = {
|
|
66076
|
+
__typename?: 'TownsquareGoalTypeConnection';
|
|
66077
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalTypeEdge>>>;
|
|
66078
|
+
pageInfo: PageInfo;
|
|
66079
|
+
};
|
|
66080
|
+
export declare type TownsquareGoalTypeCustomName = {
|
|
66081
|
+
__typename?: 'TownsquareGoalTypeCustomName';
|
|
66082
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
66083
|
+
};
|
|
66084
|
+
export declare type TownsquareGoalTypeEdge = {
|
|
66085
|
+
__typename?: 'TownsquareGoalTypeEdge';
|
|
66086
|
+
cursor: Scalars['String']['output'];
|
|
66087
|
+
node?: Maybe<TownsquareGoalType>;
|
|
66088
|
+
};
|
|
66089
|
+
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
66090
|
+
export declare enum TownsquareGoalTypeState {
|
|
66091
|
+
Disabled = "DISABLED",
|
|
66092
|
+
Enabled = "ENABLED"
|
|
66093
|
+
}
|
|
65630
66094
|
export declare type TownsquareLocalizationField = {
|
|
65631
66095
|
__typename?: 'TownsquareLocalizationField';
|
|
65632
66096
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65734,6 +66198,7 @@ export declare type TownsquareQueryApi = {
|
|
|
65734
66198
|
goal?: Maybe<TownsquareGoal>;
|
|
65735
66199
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
65736
66200
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
66201
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65737
66202
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
65738
66203
|
project?: Maybe<TownsquareProject>;
|
|
65739
66204
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -65766,6 +66231,12 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
65766
66231
|
q: Scalars['String']['input'];
|
|
65767
66232
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
65768
66233
|
};
|
|
66234
|
+
export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
66235
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66236
|
+
containerId: Scalars['String']['input'];
|
|
66237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66238
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66239
|
+
};
|
|
65769
66240
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
65770
66241
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65771
66242
|
};
|
|
@@ -66156,6 +66627,7 @@ export declare type TrelloBoardViewer = {
|
|
|
66156
66627
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
66157
66628
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
66158
66629
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66630
|
+
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
66159
66631
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
66160
66632
|
starred: Scalars['Boolean']['output'];
|
|
66161
66633
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67639,6 +68111,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
67639
68111
|
id: Scalars['ID']['input'];
|
|
67640
68112
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67641
68113
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68114
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
67642
68115
|
};
|
|
67643
68116
|
export declare type UpdateCompassComponentLinkInput = {
|
|
67644
68117
|
componentId: Scalars['ID']['input'];
|