@forge/cli-shared 5.4.0-next.0-experimental-9332276 → 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 +15 -1
- package/out/graphql/graphql-types.d.ts +833 -253
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +165 -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>;
|
|
@@ -4462,6 +4485,7 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4462
4485
|
deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4463
4486
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4464
4487
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4488
|
+
preset?: Maybe<Scalars['String']['output']>;
|
|
4465
4489
|
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4466
4490
|
};
|
|
4467
4491
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
@@ -4868,8 +4892,12 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4868
4892
|
};
|
|
4869
4893
|
export declare type CompassGlobalPermissions = {
|
|
4870
4894
|
__typename?: 'CompassGlobalPermissions';
|
|
4895
|
+
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4896
|
+
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4871
4897
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4898
|
+
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4872
4899
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4900
|
+
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4873
4901
|
};
|
|
4874
4902
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4875
4903
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -5139,6 +5167,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
5139
5167
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
5140
5168
|
name?: Maybe<Scalars['String']['output']>;
|
|
5141
5169
|
type: CompassMetricDefinitionType;
|
|
5170
|
+
viewerPermissions?: Maybe<CompassMetricDefinitionInstancePermissions>;
|
|
5142
5171
|
};
|
|
5143
5172
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
5144
5173
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
@@ -5159,6 +5188,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
5159
5188
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
5160
5189
|
suffix: Scalars['String']['input'];
|
|
5161
5190
|
};
|
|
5191
|
+
export declare type CompassMetricDefinitionInstancePermissions = {
|
|
5192
|
+
__typename?: 'CompassMetricDefinitionInstancePermissions';
|
|
5193
|
+
canDelete?: Maybe<CompassPermissionResult>;
|
|
5194
|
+
canEdit?: Maybe<CompassPermissionResult>;
|
|
5195
|
+
};
|
|
5162
5196
|
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
5163
5197
|
export declare enum CompassMetricDefinitionType {
|
|
5164
5198
|
BuiltIn = "BUILT_IN",
|
|
@@ -14011,6 +14045,87 @@ export declare type ContentPlatformImageComponent = {
|
|
|
14011
14045
|
image: ContentPlatformImageAsset;
|
|
14012
14046
|
name: Scalars['String']['output'];
|
|
14013
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
|
+
};
|
|
14014
14129
|
export declare type ContentPlatformIpmImageModal = {
|
|
14015
14130
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14016
14131
|
body: Scalars['JSON']['output'];
|
|
@@ -14034,6 +14149,14 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14034
14149
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14035
14150
|
pageInfo: PageInfo;
|
|
14036
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;
|
|
14037
14160
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14038
14161
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14039
14162
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14103,7 +14226,7 @@ export declare type ContentPlatformPricing = {
|
|
|
14103
14226
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14104
14227
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14105
14228
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14106
|
-
headline?: Maybe<Scalars['
|
|
14229
|
+
headline?: Maybe<Scalars['String']['output']>;
|
|
14107
14230
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14108
14231
|
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14109
14232
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14860,6 +14983,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
14860
14983
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
14861
14984
|
name: Scalars['String']['input'];
|
|
14862
14985
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
14986
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
14863
14987
|
type?: InputMaybe<CompassComponentType>;
|
|
14864
14988
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
14865
14989
|
};
|
|
@@ -15589,6 +15713,7 @@ export declare type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
|
15589
15713
|
};
|
|
15590
15714
|
export declare type CustomerServiceCustomDetailValue = Node & {
|
|
15591
15715
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15716
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15592
15717
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15593
15718
|
id: Scalars['ID']['output'];
|
|
15594
15719
|
name: Scalars['String']['output'];
|
|
@@ -18033,6 +18158,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
18033
18158
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18034
18159
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18035
18160
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18161
|
+
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18036
18162
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18037
18163
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
18038
18164
|
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18804,8 +18930,10 @@ export declare type ExtensionContextAppAuditLogsArgs = {
|
|
|
18804
18930
|
};
|
|
18805
18931
|
export declare type ExtensionContextExtensionsArgs = {
|
|
18806
18932
|
filter: Array<ExtensionContextsFilter>;
|
|
18933
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18807
18934
|
};
|
|
18808
18935
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
18936
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18809
18937
|
principalType?: InputMaybe<PrincipalType>;
|
|
18810
18938
|
type: Scalars['String']['input'];
|
|
18811
18939
|
};
|
|
@@ -19032,6 +19160,7 @@ export declare type ExternalDocument = {
|
|
|
19032
19160
|
__typename?: 'ExternalDocument';
|
|
19033
19161
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19034
19162
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19163
|
+
content?: Maybe<ExternalLargeContent>;
|
|
19035
19164
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19036
19165
|
createdBy?: Maybe<ExternalUser>;
|
|
19037
19166
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19042,6 +19171,7 @@ export declare type ExternalDocument = {
|
|
|
19042
19171
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19043
19172
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19044
19173
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19174
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19045
19175
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19046
19176
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19047
19177
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -19158,6 +19288,11 @@ export declare type ExternalFileInfo = {
|
|
|
19158
19288
|
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19159
19289
|
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19160
19290
|
};
|
|
19291
|
+
export declare type ExternalLargeContent = {
|
|
19292
|
+
__typename?: 'ExternalLargeContent';
|
|
19293
|
+
asText?: Maybe<Scalars['String']['output']>;
|
|
19294
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19295
|
+
};
|
|
19161
19296
|
export declare enum ExternalMembershipType {
|
|
19162
19297
|
Private = "PRIVATE",
|
|
19163
19298
|
Public = "PUBLIC",
|
|
@@ -19166,16 +19301,20 @@ export declare enum ExternalMembershipType {
|
|
|
19166
19301
|
export declare type ExternalMessage = {
|
|
19167
19302
|
__typename?: 'ExternalMessage';
|
|
19168
19303
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19304
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19169
19305
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19170
19306
|
createdBy?: Maybe<ExternalUser>;
|
|
19307
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19171
19308
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19172
19309
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
19173
19310
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19174
19311
|
id: Scalars['ID']['output'];
|
|
19175
19312
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19313
|
+
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
19176
19314
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19177
19315
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19178
19316
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19317
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19179
19318
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19180
19319
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19181
19320
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -20061,7 +20200,8 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
20061
20200
|
export declare enum ForgeMetricsApiRequestType {
|
|
20062
20201
|
Cache = "CACHE",
|
|
20063
20202
|
External = "EXTERNAL",
|
|
20064
|
-
Product = "PRODUCT"
|
|
20203
|
+
Product = "PRODUCT",
|
|
20204
|
+
Sql = "SQL"
|
|
20065
20205
|
}
|
|
20066
20206
|
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
20067
20207
|
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
@@ -34922,6 +35062,174 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
34922
35062
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
34923
35063
|
entityId: Scalars['String']['input'];
|
|
34924
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
|
+
};
|
|
34925
35233
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
34926
35234
|
__typename?: 'HamsAccountDetails';
|
|
34927
35235
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -35856,6 +36164,8 @@ export declare enum HelpLayoutConnectElementType {
|
|
|
35856
36164
|
SubheaderPanels = "subheaderPanels"
|
|
35857
36165
|
}
|
|
35858
36166
|
export declare type HelpLayoutConnectInput = {
|
|
36167
|
+
pages: HelpLayoutConnectElementPages;
|
|
36168
|
+
type: HelpLayoutConnectElementType;
|
|
35859
36169
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35860
36170
|
};
|
|
35861
36171
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -35947,6 +36257,8 @@ export declare enum HelpLayoutForgeElementType {
|
|
|
35947
36257
|
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35948
36258
|
}
|
|
35949
36259
|
export declare type HelpLayoutForgeInput = {
|
|
36260
|
+
pages: HelpLayoutForgeElementPages;
|
|
36261
|
+
type: HelpLayoutForgeElementType;
|
|
35950
36262
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35951
36263
|
};
|
|
35952
36264
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
@@ -36233,6 +36545,7 @@ export declare type HelpLayoutTopic = {
|
|
|
36233
36545
|
__typename?: 'HelpLayoutTopic';
|
|
36234
36546
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36235
36547
|
items?: Maybe<Array<HelpLayoutTopicItem>>;
|
|
36548
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
36236
36549
|
topicId?: Maybe<Scalars['String']['output']>;
|
|
36237
36550
|
topicName?: Maybe<Scalars['String']['output']>;
|
|
36238
36551
|
};
|
|
@@ -37789,29 +38102,6 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
37789
38102
|
export declare type JiraAffectedServicesInput = {
|
|
37790
38103
|
serviceId: Scalars['ID']['input'];
|
|
37791
38104
|
};
|
|
37792
|
-
export declare type JiraAgileReleaseTrain = {
|
|
37793
|
-
__typename?: 'JiraAgileReleaseTrain';
|
|
37794
|
-
boards?: Maybe<Array<Maybe<JiraSafeBoard>>>;
|
|
37795
|
-
id: Scalars['ID']['output'];
|
|
37796
|
-
project?: Maybe<JiraProject>;
|
|
37797
|
-
teamBoards?: Maybe<JiraSafeTeamBoardConnection>;
|
|
37798
|
-
};
|
|
37799
|
-
export declare type JiraAgileReleaseTrainTeamBoardsArgs = {
|
|
37800
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37801
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
37802
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37803
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37804
|
-
};
|
|
37805
|
-
export declare type JiraAgileReleaseTrainConnection = {
|
|
37806
|
-
__typename?: 'JiraAgileReleaseTrainConnection';
|
|
37807
|
-
edges?: Maybe<Array<Maybe<JiraAgileReleaseTrainEdge>>>;
|
|
37808
|
-
pageInfo: PageInfo;
|
|
37809
|
-
};
|
|
37810
|
-
export declare type JiraAgileReleaseTrainEdge = {
|
|
37811
|
-
__typename?: 'JiraAgileReleaseTrainEdge';
|
|
37812
|
-
cursor: Scalars['String']['output'];
|
|
37813
|
-
node?: Maybe<JiraAgileReleaseTrain>;
|
|
37814
|
-
};
|
|
37815
38105
|
export declare type JiraAiEnablementIssueInput = {
|
|
37816
38106
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
37817
38107
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38481,7 +38771,8 @@ export declare enum JiraBackgroundType {
|
|
|
38481
38771
|
Attachment = "ATTACHMENT",
|
|
38482
38772
|
Color = "COLOR",
|
|
38483
38773
|
Custom = "CUSTOM",
|
|
38484
|
-
Gradient = "GRADIENT"
|
|
38774
|
+
Gradient = "GRADIENT",
|
|
38775
|
+
Unsplash = "UNSPLASH"
|
|
38485
38776
|
}
|
|
38486
38777
|
export declare type JiraBackgroundUploadToken = {
|
|
38487
38778
|
__typename?: 'JiraBackgroundUploadToken';
|
|
@@ -38815,6 +39106,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
38815
39106
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
38816
39107
|
};
|
|
38817
39108
|
export declare type JiraCalendarVersionsInput = {
|
|
39109
|
+
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38818
39110
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
38819
39111
|
};
|
|
38820
39112
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -39600,13 +39892,6 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
39600
39892
|
isVisible: Scalars['Boolean']['input'];
|
|
39601
39893
|
menuId: Scalars['String']['input'];
|
|
39602
39894
|
};
|
|
39603
|
-
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
39604
|
-
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
39605
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
39606
|
-
id: Scalars['ID']['output'];
|
|
39607
|
-
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
39608
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
39609
|
-
};
|
|
39610
39895
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
39611
39896
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
39612
39897
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -39775,19 +40060,6 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
39775
40060
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
39776
40061
|
};
|
|
39777
40062
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
39778
|
-
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
39779
|
-
cloudId: Scalars['ID']['input'];
|
|
39780
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39781
|
-
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
39782
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39783
|
-
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39784
|
-
};
|
|
39785
|
-
export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
39786
|
-
__typename?: 'JiraCreateAgileReleaseTrainPayload';
|
|
39787
|
-
agileReleaseTrain?: Maybe<JiraAgileReleaseTrain>;
|
|
39788
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39789
|
-
success: Scalars['Boolean']['output'];
|
|
39790
|
-
};
|
|
39791
40063
|
export declare type JiraCreateAppNavigationItemInput = {
|
|
39792
40064
|
appId: Scalars['ID']['input'];
|
|
39793
40065
|
scopeId: Scalars['ID']['input'];
|
|
@@ -39802,6 +40074,16 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39802
40074
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
39803
40075
|
success: Scalars['Boolean']['output'];
|
|
39804
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
|
+
};
|
|
39805
40087
|
export declare type JiraCreateBoardFieldInput = {
|
|
39806
40088
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39807
40089
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
@@ -39871,32 +40153,12 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
39871
40153
|
errors?: Maybe<Array<MutationError>>;
|
|
39872
40154
|
success: Scalars['Boolean']['output'];
|
|
39873
40155
|
};
|
|
39874
|
-
export declare type JiraCreateLargeSolutionInput = {
|
|
39875
|
-
cloudId: Scalars['ID']['input'];
|
|
39876
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39877
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39878
|
-
};
|
|
39879
|
-
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
39880
|
-
__typename?: 'JiraCreateLargeSolutionPayload';
|
|
39881
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39882
|
-
largeSolution?: Maybe<JiraLargeSolution>;
|
|
39883
|
-
success: Scalars['Boolean']['output'];
|
|
39884
|
-
};
|
|
39885
40156
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
39886
40157
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
39887
40158
|
errors?: Maybe<Array<MutationError>>;
|
|
39888
40159
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
39889
40160
|
success: Scalars['Boolean']['output'];
|
|
39890
40161
|
};
|
|
39891
|
-
export declare type JiraCreatePlanInput = {
|
|
39892
|
-
cloudId: Scalars['ID']['input'];
|
|
39893
|
-
};
|
|
39894
|
-
export declare type JiraCreatePlanPayload = Payload & {
|
|
39895
|
-
__typename?: 'JiraCreatePlanPayload';
|
|
39896
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39897
|
-
plan?: Maybe<JiraPlan>;
|
|
39898
|
-
success: Scalars['Boolean']['output'];
|
|
39899
|
-
};
|
|
39900
40162
|
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
39901
40163
|
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
39902
40164
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -39922,19 +40184,6 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
39922
40184
|
success: Scalars['Boolean']['output'];
|
|
39923
40185
|
version?: Maybe<JiraVersion>;
|
|
39924
40186
|
};
|
|
39925
|
-
export declare type JiraCreateSafeGlobalDataInput = {
|
|
39926
|
-
cloudId: Scalars['ID']['input'];
|
|
39927
|
-
};
|
|
39928
|
-
export declare type JiraCreateSafeGlobalDataPayload = Payload & {
|
|
39929
|
-
__typename?: 'JiraCreateSafeGlobalDataPayload';
|
|
39930
|
-
configuration?: Maybe<JiraSafeConfiguration>;
|
|
39931
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39932
|
-
success: Scalars['Boolean']['output'];
|
|
39933
|
-
};
|
|
39934
|
-
export declare type JiraCreateScaledConfiguratorProjectInput = {
|
|
39935
|
-
projectKey: Scalars['String']['input'];
|
|
39936
|
-
projectName: Scalars['String']['input'];
|
|
39937
|
-
};
|
|
39938
40187
|
export declare type JiraCreateShortcutInput = {
|
|
39939
40188
|
projectId: Scalars['ID']['input'];
|
|
39940
40189
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -40348,6 +40597,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
40348
40597
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
40349
40598
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
40350
40599
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
40600
|
+
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
40351
40601
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
40352
40602
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
40353
40603
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
@@ -40416,6 +40666,11 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
40416
40666
|
cloudId: Scalars['ID']['input'];
|
|
40417
40667
|
input: JiraDismissInContextConfigPromptInput;
|
|
40418
40668
|
};
|
|
40669
|
+
export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
40670
|
+
issueAri: Scalars['ID']['input'];
|
|
40671
|
+
jobId: Scalars['ID']['input'];
|
|
40672
|
+
prompt: Scalars['String']['input'];
|
|
40673
|
+
};
|
|
40419
40674
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
40420
40675
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
40421
40676
|
};
|
|
@@ -40926,6 +41181,11 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
40926
41181
|
type: Scalars['String']['output'];
|
|
40927
41182
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40928
41183
|
};
|
|
41184
|
+
export declare type JiraForgeAppEgressDeclaration = {
|
|
41185
|
+
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
41186
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
41187
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41188
|
+
};
|
|
40929
41189
|
export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40930
41190
|
__typename?: 'JiraForgeDateField';
|
|
40931
41191
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40961,13 +41221,31 @@ export declare enum JiraForgeEnvironmentType {
|
|
|
40961
41221
|
}
|
|
40962
41222
|
export declare type JiraForgeExtension = {
|
|
40963
41223
|
__typename?: 'JiraForgeExtension';
|
|
41224
|
+
appVersion: Scalars['String']['output'];
|
|
41225
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41226
|
+
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
40964
41227
|
environmentKey: Scalars['String']['output'];
|
|
40965
41228
|
environmentType: JiraForgeEnvironmentType;
|
|
40966
41229
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
40967
41230
|
id: Scalars['ID']['output'];
|
|
41231
|
+
installationId: Scalars['String']['output'];
|
|
41232
|
+
license?: Maybe<JiraForgeExtensionLicense>;
|
|
40968
41233
|
properties: Scalars['JSON']['output'];
|
|
41234
|
+
scopes: Array<Scalars['String']['output']>;
|
|
40969
41235
|
type: Scalars['String']['output'];
|
|
40970
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
|
+
};
|
|
40971
41249
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40972
41250
|
__typename?: 'JiraForgeGroupField';
|
|
40973
41251
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41548,6 +41826,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41548
41826
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
41549
41827
|
comments?: Maybe<JiraCommentConnection>;
|
|
41550
41828
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
41829
|
+
createdField?: Maybe<JiraDateTimePickerField>;
|
|
41551
41830
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
41552
41831
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
41553
41832
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -41591,6 +41870,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41591
41870
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
41592
41871
|
priorityField?: Maybe<JiraPriorityField>;
|
|
41593
41872
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
41873
|
+
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
41594
41874
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
41595
41875
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
41596
41876
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -41600,7 +41880,10 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41600
41880
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
41601
41881
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
41602
41882
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41883
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41884
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
41603
41885
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41886
|
+
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41604
41887
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
41605
41888
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
41606
41889
|
};
|
|
@@ -42795,6 +43078,10 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
42795
43078
|
field?: Maybe<JiraIssueTypeField>;
|
|
42796
43079
|
success: Scalars['Boolean']['output'];
|
|
42797
43080
|
};
|
|
43081
|
+
export declare type JiraIssueTypeFilterInput = {
|
|
43082
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43083
|
+
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
43084
|
+
};
|
|
42798
43085
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
42799
43086
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
42800
43087
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43458,29 +43745,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
43458
43745
|
export declare type JiraLabelsInput = {
|
|
43459
43746
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
43460
43747
|
};
|
|
43461
|
-
export declare type JiraLargeSolution = {
|
|
43462
|
-
__typename?: 'JiraLargeSolution';
|
|
43463
|
-
agileReleaseTrains?: Maybe<Array<Maybe<JiraAgileReleaseTrain>>>;
|
|
43464
|
-
id: Scalars['ID']['output'];
|
|
43465
|
-
project?: Maybe<JiraProject>;
|
|
43466
|
-
releaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
43467
|
-
};
|
|
43468
|
-
export declare type JiraLargeSolutionReleaseTrainsArgs = {
|
|
43469
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43470
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
43471
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43472
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43473
|
-
};
|
|
43474
|
-
export declare type JiraLargeSolutionConnection = {
|
|
43475
|
-
__typename?: 'JiraLargeSolutionConnection';
|
|
43476
|
-
edges?: Maybe<Array<Maybe<JiraLargeSolutionEdge>>>;
|
|
43477
|
-
pageInfo: PageInfo;
|
|
43478
|
-
};
|
|
43479
|
-
export declare type JiraLargeSolutionEdge = {
|
|
43480
|
-
__typename?: 'JiraLargeSolutionEdge';
|
|
43481
|
-
cursor: Scalars['String']['output'];
|
|
43482
|
-
node?: Maybe<JiraLargeSolution>;
|
|
43483
|
-
};
|
|
43484
43748
|
export declare type JiraLegacyTeamFieldOperationInput = {
|
|
43485
43749
|
operation: JiraSingleValueFieldOperations;
|
|
43486
43750
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -43872,11 +44136,12 @@ export declare type JiraMutation = {
|
|
|
43872
44136
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
43873
44137
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
43874
44138
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
44139
|
+
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43875
44140
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43876
|
-
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43877
44141
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43878
44142
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43879
44143
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
44144
|
+
createAttachmentBackground?: Maybe<JiraCreateAttachmentBackgroundPayload>;
|
|
43880
44145
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
43881
44146
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
43882
44147
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
@@ -43887,12 +44152,9 @@ export declare type JiraMutation = {
|
|
|
43887
44152
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
43888
44153
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
43889
44154
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
43890
|
-
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
43891
44155
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
43892
44156
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
43893
44157
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
43894
|
-
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
43895
|
-
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
43896
44158
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43897
44159
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
43898
44160
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
@@ -43985,6 +44247,7 @@ export declare type JiraMutation = {
|
|
|
43985
44247
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
43986
44248
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43987
44249
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
44250
|
+
updateProjectAvatar?: Maybe<JiraProjectUpdateAvatarMutationPayload>;
|
|
43988
44251
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43989
44252
|
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43990
44253
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
@@ -44043,12 +44306,12 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
44043
44306
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
44044
44307
|
input: JiraAssignRelatedWorkInput;
|
|
44045
44308
|
};
|
|
44309
|
+
export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
44310
|
+
input: JiraUnsplashAttributionInput;
|
|
44311
|
+
};
|
|
44046
44312
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44047
44313
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44048
44314
|
};
|
|
44049
|
-
export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
44050
|
-
input: JiraCreateAgileReleaseTrainInput;
|
|
44051
|
-
};
|
|
44052
44315
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
44053
44316
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
44054
44317
|
};
|
|
@@ -44059,6 +44322,9 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
44059
44322
|
cloudId: Scalars['ID']['input'];
|
|
44060
44323
|
input: JiraCreateApproverListFieldInput;
|
|
44061
44324
|
};
|
|
44325
|
+
export declare type JiraMutationCreateAttachmentBackgroundArgs = {
|
|
44326
|
+
input: JiraCreateAttachmentBackgroundInput;
|
|
44327
|
+
};
|
|
44062
44328
|
export declare type JiraMutationCreateBoardArgs = {
|
|
44063
44329
|
cloudId: Scalars['ID']['input'];
|
|
44064
44330
|
input: JiraCreateBoardInput;
|
|
@@ -44097,9 +44363,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
44097
44363
|
cloudId: Scalars['ID']['input'];
|
|
44098
44364
|
input: JiraWorkManagementCreateOverviewInput;
|
|
44099
44365
|
};
|
|
44100
|
-
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
44101
|
-
input: JiraCreateLargeSolutionInput;
|
|
44102
|
-
};
|
|
44103
44366
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
44104
44367
|
cloudId: Scalars['ID']['input'];
|
|
44105
44368
|
};
|
|
@@ -44109,12 +44372,6 @@ export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
|
44109
44372
|
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
44110
44373
|
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
44111
44374
|
};
|
|
44112
|
-
export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
44113
|
-
input: JiraCreateSafeGlobalDataInput;
|
|
44114
|
-
};
|
|
44115
|
-
export declare type JiraMutationCreateSafePlanArgs = {
|
|
44116
|
-
input: JiraCreatePlanInput;
|
|
44117
|
-
};
|
|
44118
44375
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
44119
44376
|
input: JiraCreateSimpleNavigationItemInput;
|
|
44120
44377
|
};
|
|
@@ -44406,6 +44663,9 @@ export declare type JiraMutationUpdatePeopleFieldArgs = {
|
|
|
44406
44663
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
44407
44664
|
input: JiraUpdatePriorityFieldInput;
|
|
44408
44665
|
};
|
|
44666
|
+
export declare type JiraMutationUpdateProjectAvatarArgs = {
|
|
44667
|
+
input: JiraProjectUpdateAvatarInput;
|
|
44668
|
+
};
|
|
44409
44669
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
44410
44670
|
input: JiraUpdateProjectFieldInput;
|
|
44411
44671
|
};
|
|
@@ -44946,8 +45206,14 @@ export declare type JiraOrderFormattingRuleInput = {
|
|
|
44946
45206
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
44947
45207
|
__typename?: 'JiraOrderFormattingRulePayload';
|
|
44948
45208
|
errors?: Maybe<Array<MutationError>>;
|
|
45209
|
+
rules?: Maybe<JiraFormattingRuleConnection>;
|
|
44949
45210
|
success: Scalars['Boolean']['output'];
|
|
44950
45211
|
};
|
|
45212
|
+
export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
45213
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45214
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45215
|
+
scope: Scalars['ID']['input'];
|
|
45216
|
+
};
|
|
44951
45217
|
export declare enum JiraOrganizationApprovalLocation {
|
|
44952
45218
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
44953
45219
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -45422,7 +45688,6 @@ export declare type JiraProject = Node & {
|
|
|
45422
45688
|
classificationTags: Array<Scalars['String']['output']>;
|
|
45423
45689
|
cloudId: Scalars['ID']['output'];
|
|
45424
45690
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
45425
|
-
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
45426
45691
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
45427
45692
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
45428
45693
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -45500,10 +45765,6 @@ export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
|
45500
45765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45501
45766
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45502
45767
|
};
|
|
45503
|
-
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
45504
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45505
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45506
|
-
};
|
|
45507
45768
|
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
45508
45769
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45509
45770
|
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
@@ -45534,6 +45795,7 @@ export declare type JiraProjectIntentTemplatesArgs = {
|
|
|
45534
45795
|
export declare type JiraProjectIssueTypesArgs = {
|
|
45535
45796
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45536
45797
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45798
|
+
filter?: InputMaybe<JiraIssueTypeFilterInput>;
|
|
45537
45799
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45538
45800
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45539
45801
|
};
|
|
@@ -45639,30 +45901,6 @@ export declare enum JiraProjectActionType {
|
|
|
45639
45901
|
ViewIssues = "VIEW_ISSUES",
|
|
45640
45902
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45641
45903
|
}
|
|
45642
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
45643
|
-
id: Scalars['ID']['input'];
|
|
45644
|
-
};
|
|
45645
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
45646
|
-
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
45647
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45648
|
-
success: Scalars['Boolean']['output'];
|
|
45649
|
-
};
|
|
45650
|
-
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
45651
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
45652
|
-
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
45653
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45654
|
-
};
|
|
45655
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
45656
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
45657
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
45658
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
45659
|
-
pageInfo: PageInfo;
|
|
45660
|
-
};
|
|
45661
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
45662
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
45663
|
-
cursor: Scalars['String']['output'];
|
|
45664
|
-
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
45665
|
-
};
|
|
45666
45904
|
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45667
45905
|
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45668
45906
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -46184,6 +46422,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
46184
46422
|
cursor: Scalars['String']['output'];
|
|
46185
46423
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
46186
46424
|
};
|
|
46425
|
+
export declare type JiraProjectUpdateAvatarInput = {
|
|
46426
|
+
avatarId: Scalars['ID']['input'];
|
|
46427
|
+
cloudId: Scalars['ID']['input'];
|
|
46428
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
46429
|
+
};
|
|
46430
|
+
export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
46431
|
+
__typename?: 'JiraProjectUpdateAvatarMutationPayload';
|
|
46432
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46433
|
+
project?: Maybe<JiraProject>;
|
|
46434
|
+
success: Scalars['Boolean']['output'];
|
|
46435
|
+
};
|
|
46187
46436
|
export declare type JiraProjectUpdateNameInput = {
|
|
46188
46437
|
cloudId: Scalars['ID']['input'];
|
|
46189
46438
|
name: Scalars['String']['input'];
|
|
@@ -46358,10 +46607,9 @@ export declare type JiraQuery = {
|
|
|
46358
46607
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
46359
46608
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
46360
46609
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
46361
|
-
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
46362
|
-
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46363
46610
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46364
46611
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46612
|
+
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
46365
46613
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46366
46614
|
sprintById?: Maybe<JiraSprint>;
|
|
46367
46615
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -46586,10 +46834,10 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
46586
46834
|
projectId: Scalars['ID']['input'];
|
|
46587
46835
|
};
|
|
46588
46836
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
46589
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46590
46837
|
cloudId: Scalars['ID']['input'];
|
|
46591
46838
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
46592
46839
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46840
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46593
46841
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
46594
46842
|
};
|
|
46595
46843
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
@@ -46656,8 +46904,9 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
46656
46904
|
key: JiraGlobalPermissionType;
|
|
46657
46905
|
};
|
|
46658
46906
|
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46907
|
+
cloudId: Scalars['ID']['input'];
|
|
46659
46908
|
permission: JiraProjectPermissionType;
|
|
46660
|
-
|
|
46909
|
+
projectKey: Scalars['String']['input'];
|
|
46661
46910
|
};
|
|
46662
46911
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
46663
46912
|
projectId: Scalars['ID']['input'];
|
|
@@ -47097,13 +47346,6 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
47097
47346
|
keyword: Scalars['String']['input'];
|
|
47098
47347
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47099
47348
|
};
|
|
47100
|
-
export declare type JiraQueryScaledConfigurationArgs = {
|
|
47101
|
-
cloudId: Scalars['ID']['input'];
|
|
47102
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
47103
|
-
};
|
|
47104
|
-
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
47105
|
-
cloudId: Scalars['ID']['input'];
|
|
47106
|
-
};
|
|
47107
47349
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
47108
47350
|
issueId: Scalars['ID']['input'];
|
|
47109
47351
|
};
|
|
@@ -47111,6 +47353,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47111
47353
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47112
47354
|
issueKey: Scalars['String']['input'];
|
|
47113
47355
|
};
|
|
47356
|
+
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47357
|
+
input: JiraUnsplashSearchInput;
|
|
47358
|
+
};
|
|
47114
47359
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47115
47360
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47116
47361
|
cloudId: Scalars['ID']['input'];
|
|
@@ -47760,68 +48005,6 @@ export declare type JiraRoleEdge = {
|
|
|
47760
48005
|
cursor: Scalars['String']['output'];
|
|
47761
48006
|
node?: Maybe<JiraRole>;
|
|
47762
48007
|
};
|
|
47763
|
-
export declare type JiraSafeBoard = {
|
|
47764
|
-
__typename?: 'JiraSafeBoard';
|
|
47765
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47766
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47767
|
-
id: Scalars['ID']['output'];
|
|
47768
|
-
team?: Maybe<JiraTeamView>;
|
|
47769
|
-
};
|
|
47770
|
-
export declare type JiraSafeConfiguration = {
|
|
47771
|
-
__typename?: 'JiraSafeConfiguration';
|
|
47772
|
-
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
47773
|
-
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47774
|
-
capability?: Maybe<JiraIssueType>;
|
|
47775
|
-
feature?: Maybe<JiraIssueType>;
|
|
47776
|
-
id: Scalars['ID']['output'];
|
|
47777
|
-
jobSize?: Maybe<JiraNumberField>;
|
|
47778
|
-
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47779
|
-
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
47780
|
-
plan?: Maybe<JiraPlan>;
|
|
47781
|
-
riskReduction?: Maybe<JiraNumberField>;
|
|
47782
|
-
timeCriticality?: Maybe<JiraNumberField>;
|
|
47783
|
-
userBusinessValue?: Maybe<JiraNumberField>;
|
|
47784
|
-
weightedShortestJobFirst?: Maybe<JiraNumberField>;
|
|
47785
|
-
};
|
|
47786
|
-
export declare type JiraSafeConfigurationAgileReleaseTrainsArgs = {
|
|
47787
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47788
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47789
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47790
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47791
|
-
};
|
|
47792
|
-
export declare type JiraSafeConfigurationLargeSolutionsArgs = {
|
|
47793
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47794
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47795
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47796
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47797
|
-
};
|
|
47798
|
-
export declare type JiraSafeTeamBoard = {
|
|
47799
|
-
__typename?: 'JiraSafeTeamBoard';
|
|
47800
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47801
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47802
|
-
id: Scalars['ID']['output'];
|
|
47803
|
-
team?: Maybe<JiraTeamView>;
|
|
47804
|
-
};
|
|
47805
|
-
export declare type JiraSafeTeamBoardConnection = {
|
|
47806
|
-
__typename?: 'JiraSafeTeamBoardConnection';
|
|
47807
|
-
edges?: Maybe<Array<Maybe<JiraSafeTeamBoardEdge>>>;
|
|
47808
|
-
pageInfo: PageInfo;
|
|
47809
|
-
};
|
|
47810
|
-
export declare type JiraSafeTeamBoardEdge = {
|
|
47811
|
-
__typename?: 'JiraSafeTeamBoardEdge';
|
|
47812
|
-
cursor: Scalars['String']['output'];
|
|
47813
|
-
node?: Maybe<JiraSafeTeamBoard>;
|
|
47814
|
-
};
|
|
47815
|
-
export declare enum JiraScaledConfigurationPermission {
|
|
47816
|
-
Edit = "EDIT",
|
|
47817
|
-
None = "NONE",
|
|
47818
|
-
View = "VIEW"
|
|
47819
|
-
}
|
|
47820
|
-
export declare type JiraScaledConfigurationPermissions = {
|
|
47821
|
-
__typename?: 'JiraScaledConfigurationPermissions';
|
|
47822
|
-
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
47823
|
-
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
47824
|
-
};
|
|
47825
48008
|
export declare type JiraScenario = Node & {
|
|
47826
48009
|
__typename?: 'JiraScenario';
|
|
47827
48010
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -47848,8 +48031,16 @@ export declare type JiraScenarioIssueLikePlanScenarioValuesArgs = {
|
|
|
47848
48031
|
export declare type JiraScenarioIssueLikeConnection = {
|
|
47849
48032
|
__typename?: 'JiraScenarioIssueLikeConnection';
|
|
47850
48033
|
edges?: Maybe<Array<Maybe<JiraScenarioIssueLikeEdge>>>;
|
|
48034
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']['output']>;
|
|
48035
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
48036
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
47851
48037
|
pageInfo: PageInfo;
|
|
47852
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']>;
|
|
47853
48044
|
};
|
|
47854
48045
|
export declare type JiraScenarioIssueLikeEdge = {
|
|
47855
48046
|
__typename?: 'JiraScenarioIssueLikeEdge';
|
|
@@ -49973,6 +50164,37 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
49973
50164
|
errors?: Maybe<Array<MutationError>>;
|
|
49974
50165
|
success: Scalars['Boolean']['output'];
|
|
49975
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
|
+
};
|
|
49976
50198
|
export declare type JiraUnsupportedLanguageError = {
|
|
49977
50199
|
__typename?: 'JiraUnsupportedLanguageError';
|
|
49978
50200
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -52452,9 +52674,11 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
52452
52674
|
title: Scalars['String']['output'];
|
|
52453
52675
|
url: Scalars['String']['output'];
|
|
52454
52676
|
};
|
|
52677
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
52455
52678
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
52456
52679
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
52457
52680
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52681
|
+
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
52458
52682
|
url?: Maybe<Scalars['String']['output']>;
|
|
52459
52683
|
};
|
|
52460
52684
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
@@ -52469,6 +52693,15 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
52469
52693
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
52470
52694
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52471
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
|
+
};
|
|
52472
52705
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
52473
52706
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
52474
52707
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
@@ -52651,6 +52884,7 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
52651
52884
|
};
|
|
52652
52885
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
52653
52886
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
52887
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
52654
52888
|
adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
|
|
52655
52889
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
52656
52890
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
@@ -52661,6 +52895,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
52661
52895
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
52662
52896
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
52663
52897
|
};
|
|
52898
|
+
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
52899
|
+
cloudId: Scalars['ID']['input'];
|
|
52900
|
+
id: Scalars['ID']['input'];
|
|
52901
|
+
orgId: Scalars['String']['input'];
|
|
52902
|
+
};
|
|
52664
52903
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
52665
52904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52666
52905
|
cloudId: Scalars['ID']['input'];
|
|
@@ -52670,7 +52909,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52670
52909
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52671
52910
|
cloudId: Scalars['String']['input'];
|
|
52672
52911
|
keyPhrase: Scalars['String']['input'];
|
|
52673
|
-
workspaceId
|
|
52912
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52674
52913
|
};
|
|
52675
52914
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
52676
52915
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -52732,7 +52971,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
52732
52971
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
52733
52972
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
52734
52973
|
None = "NONE",
|
|
52735
|
-
Person = "PERSON"
|
|
52974
|
+
Person = "PERSON",
|
|
52975
|
+
Team = "TEAM"
|
|
52736
52976
|
}
|
|
52737
52977
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
52738
52978
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -52852,6 +53092,22 @@ export declare type LpBunchballBadgeEdge = {
|
|
|
52852
53092
|
cursor: Scalars['String']['output'];
|
|
52853
53093
|
node?: Maybe<LpBunchballBadge>;
|
|
52854
53094
|
};
|
|
53095
|
+
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
53096
|
+
export declare type LpCertSort = {
|
|
53097
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
53098
|
+
sortField?: InputMaybe<LpCertSortField>;
|
|
53099
|
+
};
|
|
53100
|
+
export declare enum LpCertSortField {
|
|
53101
|
+
ActiveDate = "ACTIVE_DATE",
|
|
53102
|
+
ExpireDate = "EXPIRE_DATE",
|
|
53103
|
+
Id = "ID",
|
|
53104
|
+
ImageUrl = "IMAGE_URL",
|
|
53105
|
+
Name = "NAME",
|
|
53106
|
+
NameAbbr = "NAME_ABBR",
|
|
53107
|
+
PublicUrl = "PUBLIC_URL",
|
|
53108
|
+
Status = "STATUS",
|
|
53109
|
+
Type = "TYPE"
|
|
53110
|
+
}
|
|
52855
53111
|
export declare enum LpCertStatus {
|
|
52856
53112
|
Active = "ACTIVE",
|
|
52857
53113
|
Expired = "EXPIRED"
|
|
@@ -52884,6 +53140,12 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
52884
53140
|
cursor: Scalars['String']['output'];
|
|
52885
53141
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
52886
53142
|
};
|
|
53143
|
+
export declare type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
53144
|
+
export declare type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
53145
|
+
__typename?: 'LpConnectionQueryErrorExtension';
|
|
53146
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53147
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53148
|
+
};
|
|
52887
53149
|
export declare type LpCourseProgress = {
|
|
52888
53150
|
__typename?: 'LpCourseProgress';
|
|
52889
53151
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52905,6 +53167,19 @@ export declare type LpCourseProgressEdge = {
|
|
|
52905
53167
|
cursor: Scalars['String']['output'];
|
|
52906
53168
|
node?: Maybe<LpCourseProgress>;
|
|
52907
53169
|
};
|
|
53170
|
+
export declare type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
53171
|
+
export declare type LpCourseSort = {
|
|
53172
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
53173
|
+
sortField?: InputMaybe<LpCourseSortField>;
|
|
53174
|
+
};
|
|
53175
|
+
export declare enum LpCourseSortField {
|
|
53176
|
+
CompletedDate = "COMPLETED_DATE",
|
|
53177
|
+
CourseId = "COURSE_ID",
|
|
53178
|
+
Id = "ID",
|
|
53179
|
+
Status = "STATUS",
|
|
53180
|
+
Title = "TITLE",
|
|
53181
|
+
Url = "URL"
|
|
53182
|
+
}
|
|
52908
53183
|
export declare enum LpCourseStatus {
|
|
52909
53184
|
Completed = "COMPLETED",
|
|
52910
53185
|
InProgress = "IN_PROGRESS"
|
|
@@ -52912,9 +53187,9 @@ export declare enum LpCourseStatus {
|
|
|
52912
53187
|
export declare type LpLearner = Node & {
|
|
52913
53188
|
__typename?: 'LpLearner';
|
|
52914
53189
|
atlassianId: Scalars['String']['output'];
|
|
52915
|
-
bunchballBadges?: Maybe<
|
|
52916
|
-
certmetricsCertificates?: Maybe<
|
|
52917
|
-
courses?: Maybe<
|
|
53190
|
+
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
53191
|
+
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
53192
|
+
courses?: Maybe<LpCourseProgressResult>;
|
|
52918
53193
|
id: Scalars['ID']['output'];
|
|
52919
53194
|
};
|
|
52920
53195
|
export declare type LpLearnerBunchballBadgesArgs = {
|
|
@@ -52928,15 +53203,16 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
52928
53203
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52929
53204
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52930
53205
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53206
|
+
sorting?: InputMaybe<LpCertSort>;
|
|
52931
53207
|
status?: InputMaybe<LpCertStatus>;
|
|
52932
53208
|
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52933
53209
|
};
|
|
52934
53210
|
export declare type LpLearnerCoursesArgs = {
|
|
52935
53211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52936
53212
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52937
|
-
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
52938
53213
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52939
53214
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53215
|
+
sorting?: InputMaybe<LpCourseSort>;
|
|
52940
53216
|
status?: InputMaybe<LpCourseStatus>;
|
|
52941
53217
|
};
|
|
52942
53218
|
export declare type LpLearnerData = {
|
|
@@ -53168,6 +53444,13 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
53168
53444
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
53169
53445
|
scopes: Array<ConnectAppScope>;
|
|
53170
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
|
+
};
|
|
53171
53454
|
export declare type MarketplaceConsoleAppSoftware = {
|
|
53172
53455
|
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53173
53456
|
appKey: Scalars['String']['output'];
|
|
@@ -53179,16 +53462,11 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53179
53462
|
id: Scalars['ID']['output'];
|
|
53180
53463
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53181
53464
|
};
|
|
53182
|
-
export declare type
|
|
53183
|
-
__typename?: '
|
|
53465
|
+
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53466
|
+
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53184
53467
|
appSoftwareId: Scalars['ID']['output'];
|
|
53185
|
-
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53186
53468
|
hosting: MarketplaceConsoleHosting;
|
|
53187
|
-
|
|
53188
|
-
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53189
|
-
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53190
|
-
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53191
|
-
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53469
|
+
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53192
53470
|
};
|
|
53193
53471
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53194
53472
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53271,6 +53549,10 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53271
53549
|
Rejected = "REJECTED",
|
|
53272
53550
|
Submitted = "SUBMITTED"
|
|
53273
53551
|
}
|
|
53552
|
+
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53553
|
+
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53554
|
+
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53555
|
+
};
|
|
53274
53556
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53275
53557
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53276
53558
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53443,10 +53725,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
53443
53725
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53444
53726
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53445
53727
|
altText?: Maybe<Scalars['String']['output']>;
|
|
53728
|
+
fileName: Scalars['String']['output'];
|
|
53446
53729
|
height: Scalars['Int']['output'];
|
|
53447
|
-
id: Scalars['String']['output'];
|
|
53448
53730
|
imageType: Scalars['String']['output'];
|
|
53449
|
-
name: Scalars['String']['output'];
|
|
53450
53731
|
uri: Scalars['String']['output'];
|
|
53451
53732
|
width: Scalars['Int']['output'];
|
|
53452
53733
|
};
|
|
@@ -53460,6 +53741,7 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53460
53741
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53461
53742
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53462
53743
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53744
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
53463
53745
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53464
53746
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53465
53747
|
};
|
|
@@ -53501,17 +53783,26 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
53501
53783
|
export declare type MarketplaceConsoleMutationApi = {
|
|
53502
53784
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53503
53785
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53786
|
+
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53504
53787
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53788
|
+
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53505
53789
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53506
53790
|
};
|
|
53507
53791
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53508
53792
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53509
53793
|
product: MarketplaceConsoleProduct;
|
|
53510
53794
|
};
|
|
53795
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53796
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53797
|
+
};
|
|
53511
53798
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53512
53799
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53513
53800
|
product: MarketplaceConsoleProduct;
|
|
53514
53801
|
};
|
|
53802
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53803
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53804
|
+
token: Scalars['String']['input'];
|
|
53805
|
+
};
|
|
53515
53806
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53516
53807
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53517
53808
|
product: MarketplaceConsoleProduct;
|
|
@@ -53616,6 +53907,23 @@ export declare type MarketplaceConsolePricingPlanModify = {
|
|
|
53616
53907
|
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53617
53908
|
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53618
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
|
+
};
|
|
53619
53927
|
export declare type MarketplaceConsoleProduct = {
|
|
53620
53928
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53621
53929
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53644,9 +53952,9 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
53644
53952
|
};
|
|
53645
53953
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
53646
53954
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53647
|
-
category?: Maybe<MarketplaceConsoleTagsContent
|
|
53648
|
-
keywords?: Maybe<MarketplaceConsoleTagsContent
|
|
53649
|
-
marketing?: Maybe<MarketplaceConsoleTagsContent
|
|
53955
|
+
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53956
|
+
keywords?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53957
|
+
marketing?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53650
53958
|
};
|
|
53651
53959
|
export declare type MarketplaceConsoleProductMetadata = {
|
|
53652
53960
|
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
@@ -53658,10 +53966,11 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
53658
53966
|
};
|
|
53659
53967
|
export declare type MarketplaceConsoleQueryApi = {
|
|
53660
53968
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53969
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
53661
53970
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53662
|
-
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53663
53971
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53664
53972
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53973
|
+
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53665
53974
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53666
53975
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53667
53976
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -53674,10 +53983,12 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53674
53983
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53675
53984
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53676
53985
|
};
|
|
53677
|
-
export declare type
|
|
53678
|
-
|
|
53986
|
+
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
53987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53988
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
53989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53679
53990
|
};
|
|
53680
|
-
export declare type
|
|
53991
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53681
53992
|
appId: Scalars['ID']['input'];
|
|
53682
53993
|
};
|
|
53683
53994
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
@@ -53688,6 +53999,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53688
53999
|
appId: Scalars['ID']['input'];
|
|
53689
54000
|
buildNumber: Scalars['ID']['input'];
|
|
53690
54001
|
};
|
|
54002
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54003
|
+
appId: Scalars['ID']['input'];
|
|
54004
|
+
};
|
|
53691
54005
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
53692
54006
|
partnerId: Scalars['ID']['input'];
|
|
53693
54007
|
};
|
|
@@ -53720,7 +54034,13 @@ export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
|
53720
54034
|
export declare type MarketplaceConsoleTagsContent = {
|
|
53721
54035
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53722
54036
|
id: Scalars['ID']['output'];
|
|
53723
|
-
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'];
|
|
53724
54044
|
};
|
|
53725
54045
|
export declare type MarketplaceConsoleUser = {
|
|
53726
54046
|
__typename?: 'MarketplaceConsoleUser';
|
|
@@ -54980,6 +55300,129 @@ export declare type MercuryPreference = Node & {
|
|
|
54980
55300
|
key: Scalars['String']['output'];
|
|
54981
55301
|
value: Scalars['String']['output'];
|
|
54982
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
|
+
}
|
|
54983
55426
|
export declare type MercuryQueryApi = {
|
|
54984
55427
|
__typename?: 'MercuryQueryApi';
|
|
54985
55428
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -55260,6 +55703,7 @@ export declare type MercuryUserEdge = {
|
|
|
55260
55703
|
cursor: Scalars['String']['output'];
|
|
55261
55704
|
node?: Maybe<User>;
|
|
55262
55705
|
};
|
|
55706
|
+
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
55263
55707
|
export declare type MercuryWorkspaceContext = {
|
|
55264
55708
|
__typename?: 'MercuryWorkspaceContext';
|
|
55265
55709
|
activationId: Scalars['String']['output'];
|
|
@@ -55600,7 +56044,6 @@ export declare type Mutation = {
|
|
|
55600
56044
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
55601
56045
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
55602
56046
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
55603
|
-
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
55604
56047
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
55605
56048
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
55606
56049
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -55626,6 +56069,7 @@ export declare type Mutation = {
|
|
|
55626
56069
|
editSprint?: Maybe<SprintResponse>;
|
|
55627
56070
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
55628
56071
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
56072
|
+
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
55629
56073
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
55630
56074
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
55631
56075
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -56357,9 +56801,6 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
56357
56801
|
export declare type MutationDeleteColumnArgs = {
|
|
56358
56802
|
input?: InputMaybe<DeleteColumnInput>;
|
|
56359
56803
|
};
|
|
56360
|
-
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
56361
|
-
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
56362
|
-
};
|
|
56363
56804
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
56364
56805
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
56365
56806
|
};
|
|
@@ -56420,6 +56861,9 @@ export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
|
56420
56861
|
export declare type MutationEditSprintArgs = {
|
|
56421
56862
|
input?: InputMaybe<EditSprintInput>;
|
|
56422
56863
|
};
|
|
56864
|
+
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
56865
|
+
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
56866
|
+
};
|
|
56423
56867
|
export declare type MutationHelpCenterArgs = {
|
|
56424
56868
|
cloudId: Scalars['ID']['input'];
|
|
56425
56869
|
};
|
|
@@ -59135,12 +59579,15 @@ export declare type Query = {
|
|
|
59135
59579
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
59136
59580
|
graphStore?: Maybe<GraphStore>;
|
|
59137
59581
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
59582
|
+
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
59138
59583
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
59139
59584
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
59140
59585
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
59141
59586
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
59142
59587
|
insights?: Maybe<Insights>;
|
|
59143
59588
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
59589
|
+
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
59590
|
+
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
59144
59591
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
59145
59592
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
59146
59593
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60368,6 +60815,7 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
60368
60815
|
contextId: Scalars['ID']['input'];
|
|
60369
60816
|
definitionId: Scalars['ID']['input'];
|
|
60370
60817
|
extensionKey: Scalars['String']['input'];
|
|
60818
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
60371
60819
|
};
|
|
60372
60820
|
export declare type QueryExtensionContextArgs = {
|
|
60373
60821
|
contextId: Scalars['ID']['input'];
|
|
@@ -60399,6 +60847,10 @@ export declare type QueryGetKeywordsArgs = {
|
|
|
60399
60847
|
entityAri?: InputMaybe<Scalars['String']['input']>;
|
|
60400
60848
|
textInput?: InputMaybe<NlpGetKeywordsTextInput>;
|
|
60401
60849
|
};
|
|
60850
|
+
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
60851
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
60852
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
60853
|
+
};
|
|
60402
60854
|
export declare type QueryHelpCenterArgs = {
|
|
60403
60855
|
cloudId: Scalars['ID']['input'];
|
|
60404
60856
|
};
|
|
@@ -60414,6 +60866,13 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
60414
60866
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
60415
60867
|
appId: Scalars['ID']['input'];
|
|
60416
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
|
+
};
|
|
60417
60876
|
export declare type QueryIpmImageModalArgs = {
|
|
60418
60877
|
id: Scalars['String']['input'];
|
|
60419
60878
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -62293,7 +62752,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62293
62752
|
type: SearchResultType;
|
|
62294
62753
|
url: Scalars['URL']['output'];
|
|
62295
62754
|
};
|
|
62296
|
-
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;
|
|
62297
62756
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62298
62757
|
__typename?: 'SearchResultGoogleDocument';
|
|
62299
62758
|
bodyText: Scalars['String']['output'];
|
|
@@ -62351,6 +62810,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
62351
62810
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
62352
62811
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62353
62812
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62813
|
+
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
62354
62814
|
owner?: Maybe<ThirdPartyUser>;
|
|
62355
62815
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
62356
62816
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -62507,6 +62967,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
62507
62967
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
62508
62968
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62509
62969
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62970
|
+
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
62510
62971
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
62511
62972
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
62512
62973
|
title: Scalars['String']['output'];
|
|
@@ -63008,6 +63469,16 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63008
63469
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63009
63470
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63010
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",
|
|
63011
63482
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
63012
63483
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
63013
63484
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
@@ -63279,6 +63750,7 @@ export declare type ShepherdDetection = {
|
|
|
63279
63750
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
63280
63751
|
id: Scalars['ID']['output'];
|
|
63281
63752
|
product: ShepherdAtlassianProduct;
|
|
63753
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
63282
63754
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
63283
63755
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
63284
63756
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
@@ -63302,6 +63774,11 @@ export declare type ShepherdDetectionExclusionsSetting = {
|
|
|
63302
63774
|
allowedExclusions: Array<Scalars['String']['output']>;
|
|
63303
63775
|
exclusions: Array<ShepherdDetectionExclusion>;
|
|
63304
63776
|
};
|
|
63777
|
+
export declare type ShepherdDetectionJiraEnabledSetting = {
|
|
63778
|
+
__typename?: 'ShepherdDetectionJiraEnabledSetting';
|
|
63779
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
63780
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
63781
|
+
};
|
|
63305
63782
|
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
63306
63783
|
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
63307
63784
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63356,7 +63833,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
63356
63833
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63357
63834
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
63358
63835
|
};
|
|
63359
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
63836
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
63360
63837
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
63361
63838
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
63362
63839
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63618,6 +64095,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
63618
64095
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
63619
64096
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
63620
64097
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
64098
|
+
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
63621
64099
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
63622
64100
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
63623
64101
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65451,6 +65929,7 @@ export declare type TownsquareCommentEdge = {
|
|
|
65451
65929
|
};
|
|
65452
65930
|
export declare type TownsquareCreateGoalInput = {
|
|
65453
65931
|
containerId: Scalars['String']['input'];
|
|
65932
|
+
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
65454
65933
|
name: Scalars['String']['input'];
|
|
65455
65934
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
65456
65935
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65507,6 +65986,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
65507
65986
|
creationDate: Scalars['DateTime']['output'];
|
|
65508
65987
|
description?: Maybe<Scalars['String']['output']>;
|
|
65509
65988
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
65989
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
65510
65990
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
65511
65991
|
id: Scalars['ID']['output'];
|
|
65512
65992
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -65574,6 +66054,43 @@ export declare enum TownsquareGoalStateValue {
|
|
|
65574
66054
|
Paused = "paused",
|
|
65575
66055
|
Pending = "pending"
|
|
65576
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
|
+
}
|
|
65577
66094
|
export declare type TownsquareLocalizationField = {
|
|
65578
66095
|
__typename?: 'TownsquareLocalizationField';
|
|
65579
66096
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65681,6 +66198,7 @@ export declare type TownsquareQueryApi = {
|
|
|
65681
66198
|
goal?: Maybe<TownsquareGoal>;
|
|
65682
66199
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
65683
66200
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
66201
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65684
66202
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
65685
66203
|
project?: Maybe<TownsquareProject>;
|
|
65686
66204
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -65713,6 +66231,12 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
65713
66231
|
q: Scalars['String']['input'];
|
|
65714
66232
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
65715
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
|
+
};
|
|
65716
66240
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
65717
66241
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65718
66242
|
};
|
|
@@ -66103,6 +66627,7 @@ export declare type TrelloBoardViewer = {
|
|
|
66103
66627
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
66104
66628
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
66105
66629
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66630
|
+
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
66106
66631
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
66107
66632
|
starred: Scalars['Boolean']['output'];
|
|
66108
66633
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66479,6 +67004,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
66479
67004
|
export declare type TrelloLabel = {
|
|
66480
67005
|
__typename?: 'TrelloLabel';
|
|
66481
67006
|
color?: Maybe<Scalars['String']['output']>;
|
|
67007
|
+
id: Scalars['ID']['output'];
|
|
66482
67008
|
name?: Maybe<Scalars['String']['output']>;
|
|
66483
67009
|
objectId: Scalars['ID']['output'];
|
|
66484
67010
|
uses?: Maybe<Scalars['Int']['output']>;
|
|
@@ -66638,6 +67164,7 @@ export declare type TrelloMutationApi = {
|
|
|
66638
67164
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66639
67165
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
66640
67166
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
67167
|
+
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
66641
67168
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
66642
67169
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66643
67170
|
};
|
|
@@ -66668,6 +67195,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
66668
67195
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
66669
67196
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
66670
67197
|
};
|
|
67198
|
+
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
67199
|
+
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
67200
|
+
};
|
|
66671
67201
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
66672
67202
|
input: TrelloUpdateCardNameInput;
|
|
66673
67203
|
};
|
|
@@ -66920,6 +67450,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
66920
67450
|
success: Scalars['Boolean']['output'];
|
|
66921
67451
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
66922
67452
|
};
|
|
67453
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
|
|
67454
|
+
boardId: Scalars['ID']['input'];
|
|
67455
|
+
value: Scalars['Boolean']['input'];
|
|
67456
|
+
};
|
|
67457
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payload & {
|
|
67458
|
+
__typename?: 'TrelloUpdateBoardViewerShowCompactMirrorCardPayload';
|
|
67459
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67460
|
+
success: Scalars['Boolean']['output'];
|
|
67461
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
67462
|
+
};
|
|
66923
67463
|
export declare type TrelloUpdateCardNameInput = {
|
|
66924
67464
|
cardId: Scalars['ID']['input'];
|
|
66925
67465
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67571,6 +68111,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
67571
68111
|
id: Scalars['ID']['input'];
|
|
67572
68112
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67573
68113
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68114
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
67574
68115
|
};
|
|
67575
68116
|
export declare type UpdateCompassComponentLinkInput = {
|
|
67576
68117
|
componentId: Scalars['ID']['input'];
|
|
@@ -68731,9 +69272,10 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
68731
69272
|
};
|
|
68732
69273
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
68733
69274
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
68734
|
-
autoDevJobsSuggestions
|
|
68735
|
-
commonSuggestions
|
|
68736
|
-
|
|
69275
|
+
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
69276
|
+
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69277
|
+
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
69278
|
+
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
68737
69279
|
};
|
|
68738
69280
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
68739
69281
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68915,6 +69457,44 @@ export declare type WorkSuggestionsOrder = {
|
|
|
68915
69457
|
__typename?: 'WorkSuggestionsOrder';
|
|
68916
69458
|
defaultOrder: Array<Scalars['ID']['output']>;
|
|
68917
69459
|
};
|
|
69460
|
+
export declare type WorkSuggestionsOrderScore = {
|
|
69461
|
+
__typename?: 'WorkSuggestionsOrderScore';
|
|
69462
|
+
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|
|
69463
|
+
};
|
|
69464
|
+
export declare type WorkSuggestionsOrderScores = {
|
|
69465
|
+
__typename?: 'WorkSuggestionsOrderScores';
|
|
69466
|
+
major: Scalars['Int']['output'];
|
|
69467
|
+
minor?: Maybe<Scalars['Int']['output']>;
|
|
69468
|
+
};
|
|
69469
|
+
export declare type WorkSuggestionsPrComment = {
|
|
69470
|
+
__typename?: 'WorkSuggestionsPRComment';
|
|
69471
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
69472
|
+
commenterName: Scalars['String']['output'];
|
|
69473
|
+
createdOn: Scalars['String']['output'];
|
|
69474
|
+
text: Scalars['String']['output'];
|
|
69475
|
+
url: Scalars['String']['output'];
|
|
69476
|
+
};
|
|
69477
|
+
export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask & {
|
|
69478
|
+
__typename?: 'WorkSuggestionsPRCommentsTask';
|
|
69479
|
+
approvalsCount: Scalars['Int']['output'];
|
|
69480
|
+
commentCount: Scalars['Int']['output'];
|
|
69481
|
+
comments?: Maybe<Array<WorkSuggestionsPrComment>>;
|
|
69482
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69483
|
+
id: Scalars['String']['output'];
|
|
69484
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69485
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69486
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
69487
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
69488
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
69489
|
+
title: Scalars['String']['output'];
|
|
69490
|
+
url: Scalars['String']['output'];
|
|
69491
|
+
};
|
|
69492
|
+
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69493
|
+
id: Scalars['String']['output'];
|
|
69494
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69495
|
+
title: Scalars['String']['output'];
|
|
69496
|
+
url: Scalars['String']['output'];
|
|
69497
|
+
};
|
|
68918
69498
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
68919
69499
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
68920
69500
|
commentCount: Scalars['Int']['output'];
|