@forge/cli-shared 5.4.0-next.1 → 5.4.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/ari/ari.d.ts +18 -1
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +53 -2
- package/out/graphql/graphql-types.d.ts +511 -58
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -4
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +2 -2
|
@@ -1391,7 +1391,9 @@ export declare type AppUser = User & {
|
|
|
1391
1391
|
__typename?: 'AppUser';
|
|
1392
1392
|
accountId: Scalars['ID']['output'];
|
|
1393
1393
|
accountStatus: AccountStatus;
|
|
1394
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
1394
1395
|
canonicalAccountId: Scalars['ID']['output'];
|
|
1396
|
+
characteristics?: Maybe<Scalars['JSON']['output']>;
|
|
1395
1397
|
id: Scalars['ID']['output'];
|
|
1396
1398
|
name: Scalars['String']['output'];
|
|
1397
1399
|
picture: Scalars['URL']['output'];
|
|
@@ -2136,6 +2138,22 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2136
2138
|
Updated = "UPDATED",
|
|
2137
2139
|
Votes = "VOTES"
|
|
2138
2140
|
}
|
|
2141
|
+
export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
2142
|
+
__typename?: 'BulkMutationErrorExtension';
|
|
2143
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
2144
|
+
id: Scalars['ID']['output'];
|
|
2145
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2146
|
+
};
|
|
2147
|
+
export declare type BulkUpdateCompassComponentsInput = {
|
|
2148
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2149
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
2150
|
+
};
|
|
2151
|
+
export declare type BulkUpdateCompassComponentsPayload = Payload & {
|
|
2152
|
+
__typename?: 'BulkUpdateCompassComponentsPayload';
|
|
2153
|
+
componentDetails?: Maybe<Array<CompassComponent>>;
|
|
2154
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2155
|
+
success: Scalars['Boolean']['output'];
|
|
2156
|
+
};
|
|
2139
2157
|
export declare type BurndownChart = {
|
|
2140
2158
|
__typename?: 'BurndownChart';
|
|
2141
2159
|
chart: BurndownChartData;
|
|
@@ -3234,6 +3252,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3234
3252
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3235
3253
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3236
3254
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3255
|
+
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
3237
3256
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3238
3257
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3239
3258
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
@@ -3428,6 +3447,9 @@ export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueAr
|
|
|
3428
3447
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
3429
3448
|
input: UpdateCompassComponentTypeInput;
|
|
3430
3449
|
};
|
|
3450
|
+
export declare type CompassCatalogMutationApiUpdateComponentsArgs = {
|
|
3451
|
+
input: BulkUpdateCompassComponentsInput;
|
|
3452
|
+
};
|
|
3431
3453
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3432
3454
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3433
3455
|
};
|
|
@@ -3641,6 +3663,7 @@ export declare type CompassComponent = Node & {
|
|
|
3641
3663
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3642
3664
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
3643
3665
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
3666
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
3644
3667
|
type: CompassComponentType;
|
|
3645
3668
|
typeId: Scalars['ID']['output'];
|
|
3646
3669
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
@@ -4869,8 +4892,12 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4869
4892
|
};
|
|
4870
4893
|
export declare type CompassGlobalPermissions = {
|
|
4871
4894
|
__typename?: 'CompassGlobalPermissions';
|
|
4895
|
+
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4896
|
+
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4872
4897
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4898
|
+
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4873
4899
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4900
|
+
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
4874
4901
|
};
|
|
4875
4902
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4876
4903
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -5140,6 +5167,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
5140
5167
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
5141
5168
|
name?: Maybe<Scalars['String']['output']>;
|
|
5142
5169
|
type: CompassMetricDefinitionType;
|
|
5170
|
+
viewerPermissions?: Maybe<CompassMetricDefinitionInstancePermissions>;
|
|
5143
5171
|
};
|
|
5144
5172
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
5145
5173
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
@@ -5160,6 +5188,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
5160
5188
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
5161
5189
|
suffix: Scalars['String']['input'];
|
|
5162
5190
|
};
|
|
5191
|
+
export declare type CompassMetricDefinitionInstancePermissions = {
|
|
5192
|
+
__typename?: 'CompassMetricDefinitionInstancePermissions';
|
|
5193
|
+
canDelete?: Maybe<CompassPermissionResult>;
|
|
5194
|
+
canEdit?: Maybe<CompassPermissionResult>;
|
|
5195
|
+
};
|
|
5163
5196
|
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
5164
5197
|
export declare enum CompassMetricDefinitionType {
|
|
5165
5198
|
BuiltIn = "BUILT_IN",
|
|
@@ -14012,6 +14045,81 @@ export declare type ContentPlatformImageComponent = {
|
|
|
14012
14045
|
image: ContentPlatformImageAsset;
|
|
14013
14046
|
name: Scalars['String']['output'];
|
|
14014
14047
|
};
|
|
14048
|
+
export declare type ContentPlatformIpmAnchored = {
|
|
14049
|
+
__typename?: 'ContentPlatformIpmAnchored';
|
|
14050
|
+
anchoredElement: Scalars['String']['output'];
|
|
14051
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14052
|
+
relativeX: Scalars['Int']['output'];
|
|
14053
|
+
relativeY: Scalars['Int']['output'];
|
|
14054
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14055
|
+
};
|
|
14056
|
+
export declare type ContentPlatformIpmCompImage = {
|
|
14057
|
+
__typename?: 'ContentPlatformIpmCompImage';
|
|
14058
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14059
|
+
image: Scalars['JSON']['output'];
|
|
14060
|
+
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
14061
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14062
|
+
};
|
|
14063
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
14064
|
+
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
14065
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14066
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14067
|
+
videoAltText?: Maybe<Scalars['String']['output']>;
|
|
14068
|
+
videoProvider: Scalars['String']['output'];
|
|
14069
|
+
videoUrl: Scalars['String']['output'];
|
|
14070
|
+
};
|
|
14071
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion = ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
14072
|
+
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
14073
|
+
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
14074
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14075
|
+
buttonText: Scalars['String']['output'];
|
|
14076
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14077
|
+
requestTypeId: Scalars['String']['output'];
|
|
14078
|
+
serviceDeskId: Scalars['String']['output'];
|
|
14079
|
+
ticketSummary: Scalars['String']['output'];
|
|
14080
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14081
|
+
};
|
|
14082
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
14083
|
+
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentRemindMeLater;
|
|
14084
|
+
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
14085
|
+
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
14086
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14087
|
+
buttonText: Scalars['String']['output'];
|
|
14088
|
+
buttonUrl: Scalars['String']['output'];
|
|
14089
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14090
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14091
|
+
};
|
|
14092
|
+
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
14093
|
+
__typename?: 'ContentPlatformIpmComponentRemindMeLater';
|
|
14094
|
+
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14095
|
+
buttonSnoozeDays: Scalars['Int']['output'];
|
|
14096
|
+
buttonText: Scalars['String']['output'];
|
|
14097
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14098
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14099
|
+
};
|
|
14100
|
+
export declare type ContentPlatformIpmFlag = {
|
|
14101
|
+
__typename?: 'ContentPlatformIpmFlag';
|
|
14102
|
+
body: Scalars['JSON']['output'];
|
|
14103
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14104
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14105
|
+
ipmNumber: Scalars['String']['output'];
|
|
14106
|
+
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
14107
|
+
primaryButton: ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion;
|
|
14108
|
+
secondaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion>;
|
|
14109
|
+
title: Scalars['String']['output'];
|
|
14110
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14111
|
+
variant: Scalars['String']['output'];
|
|
14112
|
+
};
|
|
14113
|
+
export declare type ContentPlatformIpmFlagResultEdge = {
|
|
14114
|
+
__typename?: 'ContentPlatformIpmFlagResultEdge';
|
|
14115
|
+
cursor: Scalars['String']['output'];
|
|
14116
|
+
node: ContentPlatformIpmFlag;
|
|
14117
|
+
};
|
|
14118
|
+
export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
14119
|
+
__typename?: 'ContentPlatformIpmFlagSearchConnection';
|
|
14120
|
+
edges: Array<ContentPlatformIpmFlagResultEdge>;
|
|
14121
|
+
pageInfo: PageInfo;
|
|
14122
|
+
};
|
|
14015
14123
|
export declare type ContentPlatformIpmImageModal = {
|
|
14016
14124
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14017
14125
|
body: Scalars['JSON']['output'];
|
|
@@ -14035,6 +14143,13 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14035
14143
|
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
14036
14144
|
pageInfo: PageInfo;
|
|
14037
14145
|
};
|
|
14146
|
+
export declare type ContentPlatformIpmPosition = {
|
|
14147
|
+
__typename?: 'ContentPlatformIpmPosition';
|
|
14148
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14149
|
+
positionOnPage: Scalars['String']['output'];
|
|
14150
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14151
|
+
};
|
|
14152
|
+
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
14038
14153
|
export declare type ContentPlatformMarketplaceApp = {
|
|
14039
14154
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14040
14155
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14104,7 +14219,7 @@ export declare type ContentPlatformPricing = {
|
|
|
14104
14219
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14105
14220
|
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14106
14221
|
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14107
|
-
headline?: Maybe<Scalars['
|
|
14222
|
+
headline?: Maybe<Scalars['String']['output']>;
|
|
14108
14223
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14109
14224
|
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14110
14225
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
@@ -14861,6 +14976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
14861
14976
|
links?: InputMaybe<Array<CreateCompassLinkInput>>;
|
|
14862
14977
|
name: Scalars['String']['input'];
|
|
14863
14978
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
14979
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
14864
14980
|
type?: InputMaybe<CompassComponentType>;
|
|
14865
14981
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
14866
14982
|
};
|
|
@@ -15590,6 +15706,7 @@ export declare type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
|
15590
15706
|
};
|
|
15591
15707
|
export declare type CustomerServiceCustomDetailValue = Node & {
|
|
15592
15708
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15709
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15593
15710
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15594
15711
|
id: Scalars['ID']['output'];
|
|
15595
15712
|
name: Scalars['String']['output'];
|
|
@@ -18034,6 +18151,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
18034
18151
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18035
18152
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18036
18153
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18154
|
+
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18037
18155
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18038
18156
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
18039
18157
|
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -19033,6 +19151,7 @@ export declare type ExternalDocument = {
|
|
|
19033
19151
|
__typename?: 'ExternalDocument';
|
|
19034
19152
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19035
19153
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19154
|
+
content?: Maybe<ExternalLargeContent>;
|
|
19036
19155
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19037
19156
|
createdBy?: Maybe<ExternalUser>;
|
|
19038
19157
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19043,6 +19162,7 @@ export declare type ExternalDocument = {
|
|
|
19043
19162
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19044
19163
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19045
19164
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19165
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19046
19166
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19047
19167
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19048
19168
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -19159,6 +19279,11 @@ export declare type ExternalFileInfo = {
|
|
|
19159
19279
|
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19160
19280
|
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19161
19281
|
};
|
|
19282
|
+
export declare type ExternalLargeContent = {
|
|
19283
|
+
__typename?: 'ExternalLargeContent';
|
|
19284
|
+
asText?: Maybe<Scalars['String']['output']>;
|
|
19285
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19286
|
+
};
|
|
19162
19287
|
export declare enum ExternalMembershipType {
|
|
19163
19288
|
Private = "PRIVATE",
|
|
19164
19289
|
Public = "PUBLIC",
|
|
@@ -19167,16 +19292,20 @@ export declare enum ExternalMembershipType {
|
|
|
19167
19292
|
export declare type ExternalMessage = {
|
|
19168
19293
|
__typename?: 'ExternalMessage';
|
|
19169
19294
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19295
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19170
19296
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19171
19297
|
createdBy?: Maybe<ExternalUser>;
|
|
19298
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19172
19299
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19173
19300
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
19174
19301
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19175
19302
|
id: Scalars['ID']['output'];
|
|
19176
19303
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19304
|
+
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
19177
19305
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19178
19306
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19179
19307
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19308
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19180
19309
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19181
19310
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19182
19311
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -20062,7 +20191,8 @@ export declare enum ForgeMetricsApiRequestStatus {
|
|
|
20062
20191
|
export declare enum ForgeMetricsApiRequestType {
|
|
20063
20192
|
Cache = "CACHE",
|
|
20064
20193
|
External = "EXTERNAL",
|
|
20065
|
-
Product = "PRODUCT"
|
|
20194
|
+
Product = "PRODUCT",
|
|
20195
|
+
Sql = "SQL"
|
|
20066
20196
|
}
|
|
20067
20197
|
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
20068
20198
|
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
@@ -35857,6 +35987,8 @@ export declare enum HelpLayoutConnectElementType {
|
|
|
35857
35987
|
SubheaderPanels = "subheaderPanels"
|
|
35858
35988
|
}
|
|
35859
35989
|
export declare type HelpLayoutConnectInput = {
|
|
35990
|
+
pages: HelpLayoutConnectElementPages;
|
|
35991
|
+
type: HelpLayoutConnectElementType;
|
|
35860
35992
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35861
35993
|
};
|
|
35862
35994
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -35948,6 +36080,8 @@ export declare enum HelpLayoutForgeElementType {
|
|
|
35948
36080
|
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35949
36081
|
}
|
|
35950
36082
|
export declare type HelpLayoutForgeInput = {
|
|
36083
|
+
pages: HelpLayoutForgeElementPages;
|
|
36084
|
+
type: HelpLayoutForgeElementType;
|
|
35951
36085
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35952
36086
|
};
|
|
35953
36087
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
@@ -36234,6 +36368,7 @@ export declare type HelpLayoutTopic = {
|
|
|
36234
36368
|
__typename?: 'HelpLayoutTopic';
|
|
36235
36369
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36236
36370
|
items?: Maybe<Array<HelpLayoutTopicItem>>;
|
|
36371
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
36237
36372
|
topicId?: Maybe<Scalars['String']['output']>;
|
|
36238
36373
|
topicName?: Maybe<Scalars['String']['output']>;
|
|
36239
36374
|
};
|
|
@@ -38482,7 +38617,8 @@ export declare enum JiraBackgroundType {
|
|
|
38482
38617
|
Attachment = "ATTACHMENT",
|
|
38483
38618
|
Color = "COLOR",
|
|
38484
38619
|
Custom = "CUSTOM",
|
|
38485
|
-
Gradient = "GRADIENT"
|
|
38620
|
+
Gradient = "GRADIENT",
|
|
38621
|
+
Unsplash = "UNSPLASH"
|
|
38486
38622
|
}
|
|
38487
38623
|
export declare type JiraBackgroundUploadToken = {
|
|
38488
38624
|
__typename?: 'JiraBackgroundUploadToken';
|
|
@@ -38816,6 +38952,7 @@ export declare type JiraCalendarSprintsInput = {
|
|
|
38816
38952
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
38817
38953
|
};
|
|
38818
38954
|
export declare type JiraCalendarVersionsInput = {
|
|
38955
|
+
additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38819
38956
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
38820
38957
|
};
|
|
38821
38958
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
@@ -39803,6 +39940,16 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39803
39940
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
39804
39941
|
success: Scalars['Boolean']['output'];
|
|
39805
39942
|
};
|
|
39943
|
+
export declare type JiraCreateAttachmentBackgroundInput = {
|
|
39944
|
+
entityId: Scalars['ID']['input'];
|
|
39945
|
+
mediaApiFileId: Scalars['String']['input'];
|
|
39946
|
+
};
|
|
39947
|
+
export declare type JiraCreateAttachmentBackgroundPayload = Payload & {
|
|
39948
|
+
__typename?: 'JiraCreateAttachmentBackgroundPayload';
|
|
39949
|
+
background?: Maybe<JiraBackground>;
|
|
39950
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39951
|
+
success: Scalars['Boolean']['output'];
|
|
39952
|
+
};
|
|
39806
39953
|
export declare type JiraCreateBoardFieldInput = {
|
|
39807
39954
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39808
39955
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
@@ -40349,6 +40496,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
40349
40496
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
40350
40497
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
40351
40498
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
40499
|
+
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
40352
40500
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
40353
40501
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
40354
40502
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
@@ -40417,6 +40565,11 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
40417
40565
|
cloudId: Scalars['ID']['input'];
|
|
40418
40566
|
input: JiraDismissInContextConfigPromptInput;
|
|
40419
40567
|
};
|
|
40568
|
+
export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
40569
|
+
issueAri: Scalars['ID']['input'];
|
|
40570
|
+
jobId: Scalars['ID']['input'];
|
|
40571
|
+
prompt: Scalars['String']['input'];
|
|
40572
|
+
};
|
|
40420
40573
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
40421
40574
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
40422
40575
|
};
|
|
@@ -40927,6 +41080,11 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
40927
41080
|
type: Scalars['String']['output'];
|
|
40928
41081
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
40929
41082
|
};
|
|
41083
|
+
export declare type JiraForgeAppEgressDeclaration = {
|
|
41084
|
+
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
41085
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
41086
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41087
|
+
};
|
|
40930
41088
|
export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40931
41089
|
__typename?: 'JiraForgeDateField';
|
|
40932
41090
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40962,13 +41120,31 @@ export declare enum JiraForgeEnvironmentType {
|
|
|
40962
41120
|
}
|
|
40963
41121
|
export declare type JiraForgeExtension = {
|
|
40964
41122
|
__typename?: 'JiraForgeExtension';
|
|
41123
|
+
appVersion: Scalars['String']['output'];
|
|
41124
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41125
|
+
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
40965
41126
|
environmentKey: Scalars['String']['output'];
|
|
40966
41127
|
environmentType: JiraForgeEnvironmentType;
|
|
40967
41128
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
40968
41129
|
id: Scalars['ID']['output'];
|
|
41130
|
+
installationId: Scalars['String']['output'];
|
|
41131
|
+
license?: Maybe<JiraForgeExtensionLicense>;
|
|
40969
41132
|
properties: Scalars['JSON']['output'];
|
|
41133
|
+
scopes: Array<Scalars['String']['output']>;
|
|
40970
41134
|
type: Scalars['String']['output'];
|
|
40971
41135
|
};
|
|
41136
|
+
export declare type JiraForgeExtensionLicense = {
|
|
41137
|
+
__typename?: 'JiraForgeExtensionLicense';
|
|
41138
|
+
active: Scalars['Boolean']['output'];
|
|
41139
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41140
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41141
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41142
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
41143
|
+
subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41144
|
+
supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
41145
|
+
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41146
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41147
|
+
};
|
|
40972
41148
|
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40973
41149
|
__typename?: 'JiraForgeGroupField';
|
|
40974
41150
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41549,6 +41725,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41549
41725
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
41550
41726
|
comments?: Maybe<JiraCommentConnection>;
|
|
41551
41727
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
41728
|
+
createdField?: Maybe<JiraDateTimePickerField>;
|
|
41552
41729
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
41553
41730
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
41554
41731
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -41592,6 +41769,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41592
41769
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
41593
41770
|
priorityField?: Maybe<JiraPriorityField>;
|
|
41594
41771
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
41772
|
+
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
41595
41773
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
41596
41774
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
41597
41775
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -41601,7 +41779,10 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41601
41779
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
41602
41780
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
41603
41781
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41782
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41783
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
41604
41784
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41785
|
+
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41605
41786
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
41606
41787
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
41607
41788
|
};
|
|
@@ -42796,6 +42977,10 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
42796
42977
|
field?: Maybe<JiraIssueTypeField>;
|
|
42797
42978
|
success: Scalars['Boolean']['output'];
|
|
42798
42979
|
};
|
|
42980
|
+
export declare type JiraIssueTypeFilterInput = {
|
|
42981
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
42982
|
+
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
42983
|
+
};
|
|
42799
42984
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
42800
42985
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
42801
42986
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -43873,11 +44058,13 @@ export declare type JiraMutation = {
|
|
|
43873
44058
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
43874
44059
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
43875
44060
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
44061
|
+
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43876
44062
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43877
44063
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43878
44064
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43879
44065
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43880
44066
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
44067
|
+
createAttachmentBackground?: Maybe<JiraCreateAttachmentBackgroundPayload>;
|
|
43881
44068
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
43882
44069
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
43883
44070
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
@@ -44045,6 +44232,9 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
44045
44232
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
44046
44233
|
input: JiraAssignRelatedWorkInput;
|
|
44047
44234
|
};
|
|
44235
|
+
export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
44236
|
+
input: JiraUnsplashAttributionInput;
|
|
44237
|
+
};
|
|
44048
44238
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44049
44239
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44050
44240
|
};
|
|
@@ -44061,6 +44251,9 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
44061
44251
|
cloudId: Scalars['ID']['input'];
|
|
44062
44252
|
input: JiraCreateApproverListFieldInput;
|
|
44063
44253
|
};
|
|
44254
|
+
export declare type JiraMutationCreateAttachmentBackgroundArgs = {
|
|
44255
|
+
input: JiraCreateAttachmentBackgroundInput;
|
|
44256
|
+
};
|
|
44064
44257
|
export declare type JiraMutationCreateBoardArgs = {
|
|
44065
44258
|
cloudId: Scalars['ID']['input'];
|
|
44066
44259
|
input: JiraCreateBoardInput;
|
|
@@ -44951,8 +45144,14 @@ export declare type JiraOrderFormattingRuleInput = {
|
|
|
44951
45144
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
44952
45145
|
__typename?: 'JiraOrderFormattingRulePayload';
|
|
44953
45146
|
errors?: Maybe<Array<MutationError>>;
|
|
45147
|
+
rules?: Maybe<JiraFormattingRuleConnection>;
|
|
44954
45148
|
success: Scalars['Boolean']['output'];
|
|
44955
45149
|
};
|
|
45150
|
+
export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
45151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45152
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45153
|
+
scope: Scalars['ID']['input'];
|
|
45154
|
+
};
|
|
44956
45155
|
export declare enum JiraOrganizationApprovalLocation {
|
|
44957
45156
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
44958
45157
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -45427,7 +45626,6 @@ export declare type JiraProject = Node & {
|
|
|
45427
45626
|
classificationTags: Array<Scalars['String']['output']>;
|
|
45428
45627
|
cloudId: Scalars['ID']['output'];
|
|
45429
45628
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
45430
|
-
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
45431
45629
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
45432
45630
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
45433
45631
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -45505,10 +45703,6 @@ export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
|
45505
45703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45506
45704
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45507
45705
|
};
|
|
45508
|
-
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
45509
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45510
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45511
|
-
};
|
|
45512
45706
|
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
45513
45707
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45514
45708
|
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
@@ -45539,6 +45733,7 @@ export declare type JiraProjectIntentTemplatesArgs = {
|
|
|
45539
45733
|
export declare type JiraProjectIssueTypesArgs = {
|
|
45540
45734
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45541
45735
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45736
|
+
filter?: InputMaybe<JiraIssueTypeFilterInput>;
|
|
45542
45737
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45543
45738
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45544
45739
|
};
|
|
@@ -45644,30 +45839,6 @@ export declare enum JiraProjectActionType {
|
|
|
45644
45839
|
ViewIssues = "VIEW_ISSUES",
|
|
45645
45840
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45646
45841
|
}
|
|
45647
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
45648
|
-
id: Scalars['ID']['input'];
|
|
45649
|
-
};
|
|
45650
|
-
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
45651
|
-
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
45652
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45653
|
-
success: Scalars['Boolean']['output'];
|
|
45654
|
-
};
|
|
45655
|
-
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
45656
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
45657
|
-
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
45658
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45659
|
-
};
|
|
45660
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
45661
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
45662
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
45663
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
45664
|
-
pageInfo: PageInfo;
|
|
45665
|
-
};
|
|
45666
|
-
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
45667
|
-
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
45668
|
-
cursor: Scalars['String']['output'];
|
|
45669
|
-
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
45670
|
-
};
|
|
45671
45842
|
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45672
45843
|
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45673
45844
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -46378,6 +46549,7 @@ export declare type JiraQuery = {
|
|
|
46378
46549
|
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46379
46550
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46380
46551
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46552
|
+
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
46381
46553
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46382
46554
|
sprintById?: Maybe<JiraSprint>;
|
|
46383
46555
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -46672,8 +46844,9 @@ export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
|
46672
46844
|
key: JiraGlobalPermissionType;
|
|
46673
46845
|
};
|
|
46674
46846
|
export declare type JiraQueryHasProjectPermissionArgs = {
|
|
46847
|
+
cloudId: Scalars['ID']['input'];
|
|
46675
46848
|
permission: JiraProjectPermissionType;
|
|
46676
|
-
|
|
46849
|
+
projectKey: Scalars['String']['input'];
|
|
46677
46850
|
};
|
|
46678
46851
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
46679
46852
|
projectId: Scalars['ID']['input'];
|
|
@@ -47127,6 +47300,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47127
47300
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47128
47301
|
issueKey: Scalars['String']['input'];
|
|
47129
47302
|
};
|
|
47303
|
+
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47304
|
+
input: JiraUnsplashSearchInput;
|
|
47305
|
+
};
|
|
47130
47306
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47131
47307
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47132
47308
|
cloudId: Scalars['ID']['input'];
|
|
@@ -49989,6 +50165,37 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
49989
50165
|
errors?: Maybe<Array<MutationError>>;
|
|
49990
50166
|
success: Scalars['Boolean']['output'];
|
|
49991
50167
|
};
|
|
50168
|
+
export declare type JiraUnsplashAttributionInput = {
|
|
50169
|
+
cloudId: Scalars['ID']['input'];
|
|
50170
|
+
imageIds: Array<Scalars['ID']['input']>;
|
|
50171
|
+
};
|
|
50172
|
+
export declare type JiraUnsplashAttributionPayload = Payload & {
|
|
50173
|
+
__typename?: 'JiraUnsplashAttributionPayload';
|
|
50174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50175
|
+
success: Scalars['Boolean']['output'];
|
|
50176
|
+
};
|
|
50177
|
+
export declare type JiraUnsplashImage = {
|
|
50178
|
+
__typename?: 'JiraUnsplashImage';
|
|
50179
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
50180
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
50181
|
+
filePath?: Maybe<Scalars['String']['output']>;
|
|
50182
|
+
thumbnailImage?: Maybe<Scalars['String']['output']>;
|
|
50183
|
+
unsplashId?: Maybe<Scalars['String']['output']>;
|
|
50184
|
+
};
|
|
50185
|
+
export declare type JiraUnsplashImageSearchPage = {
|
|
50186
|
+
__typename?: 'JiraUnsplashImageSearchPage';
|
|
50187
|
+
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
50188
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
50189
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
50190
|
+
};
|
|
50191
|
+
export declare type JiraUnsplashImageSearchPageResult = JiraUnsplashImageSearchPage | QueryError;
|
|
50192
|
+
export declare type JiraUnsplashSearchInput = {
|
|
50193
|
+
cloudId: Scalars['ID']['input'];
|
|
50194
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
50195
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
50196
|
+
query: Scalars['String']['input'];
|
|
50197
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
50198
|
+
};
|
|
49992
50199
|
export declare type JiraUnsupportedLanguageError = {
|
|
49993
50200
|
__typename?: 'JiraUnsupportedLanguageError';
|
|
49994
50201
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -52468,9 +52675,11 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
52468
52675
|
title: Scalars['String']['output'];
|
|
52469
52676
|
url: Scalars['String']['output'];
|
|
52470
52677
|
};
|
|
52678
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
52471
52679
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
52472
52680
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
52473
52681
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52682
|
+
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
52474
52683
|
url?: Maybe<Scalars['String']['output']>;
|
|
52475
52684
|
};
|
|
52476
52685
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
@@ -52485,6 +52694,15 @@ export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationE
|
|
|
52485
52694
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
52486
52695
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52487
52696
|
};
|
|
52697
|
+
export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
52698
|
+
__typename?: 'KnowledgeDiscoveryBookmarkProperties';
|
|
52699
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52700
|
+
keyPhrase: Scalars['String']['output'];
|
|
52701
|
+
lastModifiedTimestamp: Scalars['String']['output'];
|
|
52702
|
+
lastModifierAccountId: Scalars['String']['output'];
|
|
52703
|
+
title: Scalars['String']['output'];
|
|
52704
|
+
url: Scalars['String']['output'];
|
|
52705
|
+
};
|
|
52488
52706
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
52489
52707
|
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
52490
52708
|
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
@@ -52667,6 +52885,7 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
52667
52885
|
};
|
|
52668
52886
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
52669
52887
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
52888
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
52670
52889
|
adminhubBookmarks?: Maybe<KnowledgeDiscoveryAdminhubBookmarksResult>;
|
|
52671
52890
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
52672
52891
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
@@ -52677,6 +52896,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
52677
52896
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
52678
52897
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
52679
52898
|
};
|
|
52899
|
+
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
52900
|
+
cloudId: Scalars['ID']['input'];
|
|
52901
|
+
id: Scalars['ID']['input'];
|
|
52902
|
+
orgId: Scalars['String']['input'];
|
|
52903
|
+
};
|
|
52680
52904
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
52681
52905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52682
52906
|
cloudId: Scalars['ID']['input'];
|
|
@@ -52686,7 +52910,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52686
52910
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52687
52911
|
cloudId: Scalars['String']['input'];
|
|
52688
52912
|
keyPhrase: Scalars['String']['input'];
|
|
52689
|
-
workspaceId
|
|
52913
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52690
52914
|
};
|
|
52691
52915
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
52692
52916
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -53220,6 +53444,13 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
53220
53444
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
53221
53445
|
scopes: Array<ConnectAppScope>;
|
|
53222
53446
|
};
|
|
53447
|
+
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
53448
|
+
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
53449
|
+
endCursor: Scalars['String']['output'];
|
|
53450
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
53451
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
53452
|
+
startCursor: Scalars['String']['output'];
|
|
53453
|
+
};
|
|
53223
53454
|
export declare type MarketplaceConsoleAppSoftware = {
|
|
53224
53455
|
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53225
53456
|
appKey: Scalars['String']['output'];
|
|
@@ -53231,16 +53462,11 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53231
53462
|
id: Scalars['ID']['output'];
|
|
53232
53463
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53233
53464
|
};
|
|
53234
|
-
export declare type
|
|
53235
|
-
__typename?: '
|
|
53465
|
+
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53466
|
+
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53236
53467
|
appSoftwareId: Scalars['ID']['output'];
|
|
53237
|
-
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53238
53468
|
hosting: MarketplaceConsoleHosting;
|
|
53239
|
-
|
|
53240
|
-
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53241
|
-
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53242
|
-
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53243
|
-
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53469
|
+
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53244
53470
|
};
|
|
53245
53471
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53246
53472
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53323,6 +53549,10 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53323
53549
|
Rejected = "REJECTED",
|
|
53324
53550
|
Submitted = "SUBMITTED"
|
|
53325
53551
|
}
|
|
53552
|
+
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53553
|
+
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53554
|
+
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53555
|
+
};
|
|
53326
53556
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53327
53557
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53328
53558
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53495,10 +53725,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
53495
53725
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53496
53726
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53497
53727
|
altText?: Maybe<Scalars['String']['output']>;
|
|
53728
|
+
fileName: Scalars['String']['output'];
|
|
53498
53729
|
height: Scalars['Int']['output'];
|
|
53499
|
-
id: Scalars['String']['output'];
|
|
53500
53730
|
imageType: Scalars['String']['output'];
|
|
53501
|
-
name: Scalars['String']['output'];
|
|
53502
53731
|
uri: Scalars['String']['output'];
|
|
53503
53732
|
width: Scalars['Int']['output'];
|
|
53504
53733
|
};
|
|
@@ -53512,6 +53741,7 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53512
53741
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53513
53742
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53514
53743
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53744
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
53515
53745
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53516
53746
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53517
53747
|
};
|
|
@@ -53553,17 +53783,26 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
53553
53783
|
export declare type MarketplaceConsoleMutationApi = {
|
|
53554
53784
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53555
53785
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53786
|
+
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53556
53787
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53788
|
+
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53557
53789
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53558
53790
|
};
|
|
53559
53791
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53560
53792
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53561
53793
|
product: MarketplaceConsoleProduct;
|
|
53562
53794
|
};
|
|
53795
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53796
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53797
|
+
};
|
|
53563
53798
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53564
53799
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53565
53800
|
product: MarketplaceConsoleProduct;
|
|
53566
53801
|
};
|
|
53802
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53803
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53804
|
+
token: Scalars['String']['input'];
|
|
53805
|
+
};
|
|
53567
53806
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53568
53807
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53569
53808
|
product: MarketplaceConsoleProduct;
|
|
@@ -53668,6 +53907,23 @@ export declare type MarketplaceConsolePricingPlanModify = {
|
|
|
53668
53907
|
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53669
53908
|
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53670
53909
|
};
|
|
53910
|
+
export declare type MarketplaceConsolePrivateListings = {
|
|
53911
|
+
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53912
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53913
|
+
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
53914
|
+
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
53915
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53916
|
+
};
|
|
53917
|
+
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
53918
|
+
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
53919
|
+
buildNumber: Scalars['Int']['output'];
|
|
53920
|
+
versionNumber: Scalars['String']['output'];
|
|
53921
|
+
};
|
|
53922
|
+
export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
53923
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokenDetails';
|
|
53924
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53925
|
+
node: MarketplaceConsoleTokenDetails;
|
|
53926
|
+
};
|
|
53671
53927
|
export declare type MarketplaceConsoleProduct = {
|
|
53672
53928
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53673
53929
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53696,9 +53952,9 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
53696
53952
|
};
|
|
53697
53953
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
53698
53954
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53699
|
-
category?: Maybe<MarketplaceConsoleTagsContent
|
|
53700
|
-
keywords?: Maybe<MarketplaceConsoleTagsContent
|
|
53701
|
-
marketing?: Maybe<MarketplaceConsoleTagsContent
|
|
53955
|
+
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53956
|
+
keywords?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53957
|
+
marketing?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
53702
53958
|
};
|
|
53703
53959
|
export declare type MarketplaceConsoleProductMetadata = {
|
|
53704
53960
|
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
@@ -53710,10 +53966,11 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
53710
53966
|
};
|
|
53711
53967
|
export declare type MarketplaceConsoleQueryApi = {
|
|
53712
53968
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53969
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
53713
53970
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53714
|
-
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53715
53971
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53716
53972
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53973
|
+
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53717
53974
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53718
53975
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53719
53976
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -53726,10 +53983,12 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53726
53983
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53727
53984
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53728
53985
|
};
|
|
53729
|
-
export declare type
|
|
53730
|
-
|
|
53986
|
+
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
53987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53988
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
53989
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53731
53990
|
};
|
|
53732
|
-
export declare type
|
|
53991
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53733
53992
|
appId: Scalars['ID']['input'];
|
|
53734
53993
|
};
|
|
53735
53994
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
@@ -53740,6 +53999,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53740
53999
|
appId: Scalars['ID']['input'];
|
|
53741
54000
|
buildNumber: Scalars['ID']['input'];
|
|
53742
54001
|
};
|
|
54002
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54003
|
+
appId: Scalars['ID']['input'];
|
|
54004
|
+
};
|
|
53743
54005
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
53744
54006
|
partnerId: Scalars['ID']['input'];
|
|
53745
54007
|
};
|
|
@@ -53772,7 +54034,13 @@ export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
|
53772
54034
|
export declare type MarketplaceConsoleTagsContent = {
|
|
53773
54035
|
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53774
54036
|
id: Scalars['ID']['output'];
|
|
53775
|
-
name
|
|
54037
|
+
name: Scalars['String']['output'];
|
|
54038
|
+
};
|
|
54039
|
+
export declare type MarketplaceConsoleTokenDetails = {
|
|
54040
|
+
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54041
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
54042
|
+
links?: Maybe<Array<Maybe<MarketplaceConsolePrivateListingsLink>>>;
|
|
54043
|
+
token: Scalars['String']['output'];
|
|
53776
54044
|
};
|
|
53777
54045
|
export declare type MarketplaceConsoleUser = {
|
|
53778
54046
|
__typename?: 'MarketplaceConsoleUser';
|
|
@@ -55032,6 +55300,129 @@ export declare type MercuryPreference = Node & {
|
|
|
55032
55300
|
key: Scalars['String']['output'];
|
|
55033
55301
|
value: Scalars['String']['output'];
|
|
55034
55302
|
};
|
|
55303
|
+
export declare type MercuryProvider = Node & {
|
|
55304
|
+
__typename?: 'MercuryProvider';
|
|
55305
|
+
configurationState: MercuryProviderConfigurationState;
|
|
55306
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55307
|
+
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
55308
|
+
id: Scalars['ID']['output'];
|
|
55309
|
+
key: Scalars['String']['output'];
|
|
55310
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55311
|
+
name: Scalars['String']['output'];
|
|
55312
|
+
};
|
|
55313
|
+
export declare type MercuryProviderAtlassianUser = {
|
|
55314
|
+
__typename?: 'MercuryProviderAtlassianUser';
|
|
55315
|
+
accountStatus: AccountStatus;
|
|
55316
|
+
id: Scalars['ID']['output'];
|
|
55317
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55318
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55319
|
+
};
|
|
55320
|
+
export declare type MercuryProviderConfigurationState = {
|
|
55321
|
+
__typename?: 'MercuryProviderConfigurationState';
|
|
55322
|
+
actionUrl?: Maybe<Scalars['URL']['output']>;
|
|
55323
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
55324
|
+
status: MercuryProviderConfigurationStatus;
|
|
55325
|
+
};
|
|
55326
|
+
export declare enum MercuryProviderConfigurationStatus {
|
|
55327
|
+
Connected = "CONNECTED",
|
|
55328
|
+
SignUp = "SIGN_UP"
|
|
55329
|
+
}
|
|
55330
|
+
export declare type MercuryProviderConnection = {
|
|
55331
|
+
__typename?: 'MercuryProviderConnection';
|
|
55332
|
+
edges?: Maybe<Array<Maybe<MercuryProviderEdge>>>;
|
|
55333
|
+
pageInfo: PageInfo;
|
|
55334
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55335
|
+
};
|
|
55336
|
+
export declare type MercuryProviderDetails = {
|
|
55337
|
+
__typename?: 'MercuryProviderDetails';
|
|
55338
|
+
logo: MercuryProviderMultiResolutionIcon;
|
|
55339
|
+
name: Scalars['String']['output'];
|
|
55340
|
+
};
|
|
55341
|
+
export declare type MercuryProviderEdge = {
|
|
55342
|
+
__typename?: 'MercuryProviderEdge';
|
|
55343
|
+
cursor: Scalars['String']['output'];
|
|
55344
|
+
node?: Maybe<MercuryProvider>;
|
|
55345
|
+
};
|
|
55346
|
+
export declare type MercuryProviderExternalOwner = {
|
|
55347
|
+
__typename?: 'MercuryProviderExternalOwner';
|
|
55348
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55349
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55350
|
+
};
|
|
55351
|
+
export declare type MercuryProviderExternalUser = {
|
|
55352
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
55353
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55354
|
+
};
|
|
55355
|
+
export declare type MercuryProviderMultiResolutionIcon = {
|
|
55356
|
+
__typename?: 'MercuryProviderMultiResolutionIcon';
|
|
55357
|
+
defaultUrl: Scalars['URL']['output'];
|
|
55358
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
55359
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
55360
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
55361
|
+
xlarge?: Maybe<Scalars['URL']['output']>;
|
|
55362
|
+
};
|
|
55363
|
+
export declare type MercuryProviderUser = {
|
|
55364
|
+
id: Scalars['ID']['output'];
|
|
55365
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
55366
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
55367
|
+
};
|
|
55368
|
+
export declare type MercuryProviderWork = {
|
|
55369
|
+
__typename?: 'MercuryProviderWork';
|
|
55370
|
+
externalOwner?: Maybe<MercuryProviderExternalOwner>;
|
|
55371
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
55372
|
+
id: Scalars['ID']['output'];
|
|
55373
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
55374
|
+
name: Scalars['String']['output'];
|
|
55375
|
+
owner?: Maybe<MercuryProviderAtlassianUser>;
|
|
55376
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55377
|
+
status?: Maybe<MercuryProviderWorkStatus>;
|
|
55378
|
+
targetDate?: Maybe<MercuryProviderWorkTargetDate>;
|
|
55379
|
+
url: Scalars['String']['output'];
|
|
55380
|
+
};
|
|
55381
|
+
export declare type MercuryProviderWorkConnection = {
|
|
55382
|
+
__typename?: 'MercuryProviderWorkConnection';
|
|
55383
|
+
edges?: Maybe<Array<Maybe<MercuryProviderWorkEdge>>>;
|
|
55384
|
+
pageInfo: PageInfo;
|
|
55385
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55386
|
+
};
|
|
55387
|
+
export declare type MercuryProviderWorkEdge = {
|
|
55388
|
+
__typename?: 'MercuryProviderWorkEdge';
|
|
55389
|
+
cursor: Scalars['String']['output'];
|
|
55390
|
+
node?: Maybe<MercuryWorkResult>;
|
|
55391
|
+
};
|
|
55392
|
+
export declare type MercuryProviderWorkError = Node & {
|
|
55393
|
+
__typename?: 'MercuryProviderWorkError';
|
|
55394
|
+
errorType: MercuryProviderWorkErrorType;
|
|
55395
|
+
id: Scalars['ID']['output'];
|
|
55396
|
+
message: Scalars['String']['output'];
|
|
55397
|
+
providerDetails?: Maybe<MercuryProviderDetails>;
|
|
55398
|
+
};
|
|
55399
|
+
export declare enum MercuryProviderWorkErrorType {
|
|
55400
|
+
Invalid = "INVALID",
|
|
55401
|
+
NotFound = "NOT_FOUND",
|
|
55402
|
+
NoPermissions = "NO_PERMISSIONS"
|
|
55403
|
+
}
|
|
55404
|
+
export declare type MercuryProviderWorkStatus = {
|
|
55405
|
+
__typename?: 'MercuryProviderWorkStatus';
|
|
55406
|
+
color: MercuryProviderWorkStatusColor;
|
|
55407
|
+
name: Scalars['String']['output'];
|
|
55408
|
+
};
|
|
55409
|
+
export declare enum MercuryProviderWorkStatusColor {
|
|
55410
|
+
Blue = "BLUE",
|
|
55411
|
+
Gray = "GRAY",
|
|
55412
|
+
Green = "GREEN",
|
|
55413
|
+
Red = "RED",
|
|
55414
|
+
Yellow = "YELLOW"
|
|
55415
|
+
}
|
|
55416
|
+
export declare type MercuryProviderWorkTargetDate = {
|
|
55417
|
+
__typename?: 'MercuryProviderWorkTargetDate';
|
|
55418
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
55419
|
+
targetDateType?: Maybe<MercuryProviderWorkTargetDateType>;
|
|
55420
|
+
};
|
|
55421
|
+
export declare enum MercuryProviderWorkTargetDateType {
|
|
55422
|
+
Day = "DAY",
|
|
55423
|
+
Month = "MONTH",
|
|
55424
|
+
Quarter = "QUARTER"
|
|
55425
|
+
}
|
|
55035
55426
|
export declare type MercuryQueryApi = {
|
|
55036
55427
|
__typename?: 'MercuryQueryApi';
|
|
55037
55428
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
@@ -55312,6 +55703,7 @@ export declare type MercuryUserEdge = {
|
|
|
55312
55703
|
cursor: Scalars['String']['output'];
|
|
55313
55704
|
node?: Maybe<User>;
|
|
55314
55705
|
};
|
|
55706
|
+
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
55315
55707
|
export declare type MercuryWorkspaceContext = {
|
|
55316
55708
|
__typename?: 'MercuryWorkspaceContext';
|
|
55317
55709
|
activationId: Scalars['String']['output'];
|
|
@@ -55652,7 +56044,6 @@ export declare type Mutation = {
|
|
|
55652
56044
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
55653
56045
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
55654
56046
|
deleteColumn?: Maybe<DeleteColumnOutput>;
|
|
55655
|
-
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
55656
56047
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
55657
56048
|
deleteDevOpsContainerRelationshipEntityProperties?: Maybe<DeleteDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
55658
56049
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -56409,9 +56800,6 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
56409
56800
|
export declare type MutationDeleteColumnArgs = {
|
|
56410
56801
|
input?: InputMaybe<DeleteColumnInput>;
|
|
56411
56802
|
};
|
|
56412
|
-
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
56413
|
-
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
56414
|
-
};
|
|
56415
56803
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
56416
56804
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
56417
56805
|
};
|
|
@@ -62345,7 +62733,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
62345
62733
|
type: SearchResultType;
|
|
62346
62734
|
url: Scalars['URL']['output'];
|
|
62347
62735
|
};
|
|
62348
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalMessage | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62736
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62349
62737
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
62350
62738
|
__typename?: 'SearchResultGoogleDocument';
|
|
62351
62739
|
bodyText: Scalars['String']['output'];
|
|
@@ -62403,6 +62791,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
62403
62791
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
62404
62792
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62405
62793
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62794
|
+
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
62406
62795
|
owner?: Maybe<ThirdPartyUser>;
|
|
62407
62796
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
62408
62797
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -63061,6 +63450,16 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63061
63450
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63062
63451
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63063
63452
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
63453
|
+
JiraDataDiscoveryAtlassianToken = "JIRA_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
63454
|
+
JiraDataDiscoveryAuTfn = "JIRA_DATA_DISCOVERY_AU_TFN",
|
|
63455
|
+
JiraDataDiscoveryAwsKeys = "JIRA_DATA_DISCOVERY_AWS_KEYS",
|
|
63456
|
+
JiraDataDiscoveryCreditCard = "JIRA_DATA_DISCOVERY_CREDIT_CARD",
|
|
63457
|
+
JiraDataDiscoveryCrypto = "JIRA_DATA_DISCOVERY_CRYPTO",
|
|
63458
|
+
JiraDataDiscoveryIban = "JIRA_DATA_DISCOVERY_IBAN",
|
|
63459
|
+
JiraDataDiscoveryJwtKey = "JIRA_DATA_DISCOVERY_JWT_KEY",
|
|
63460
|
+
JiraDataDiscoveryPassword = "JIRA_DATA_DISCOVERY_PASSWORD",
|
|
63461
|
+
JiraDataDiscoveryPrivateKey = "JIRA_DATA_DISCOVERY_PRIVATE_KEY",
|
|
63462
|
+
JiraDataDiscoveryUsSsn = "JIRA_DATA_DISCOVERY_US_SSN",
|
|
63064
63463
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
63065
63464
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
63066
63465
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
@@ -63332,6 +63731,7 @@ export declare type ShepherdDetection = {
|
|
|
63332
63731
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
63333
63732
|
id: Scalars['ID']['output'];
|
|
63334
63733
|
product: ShepherdAtlassianProduct;
|
|
63734
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
63335
63735
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
63336
63736
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
63337
63737
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
@@ -63355,6 +63755,11 @@ export declare type ShepherdDetectionExclusionsSetting = {
|
|
|
63355
63755
|
allowedExclusions: Array<Scalars['String']['output']>;
|
|
63356
63756
|
exclusions: Array<ShepherdDetectionExclusion>;
|
|
63357
63757
|
};
|
|
63758
|
+
export declare type ShepherdDetectionJiraEnabledSetting = {
|
|
63759
|
+
__typename?: 'ShepherdDetectionJiraEnabledSetting';
|
|
63760
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
63761
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
63762
|
+
};
|
|
63358
63763
|
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
63359
63764
|
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
63360
63765
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63409,7 +63814,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
63409
63814
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63410
63815
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
63411
63816
|
};
|
|
63412
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
63817
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
63413
63818
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
63414
63819
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
63415
63820
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63671,6 +64076,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
63671
64076
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
63672
64077
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
63673
64078
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
64079
|
+
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
63674
64080
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
63675
64081
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
63676
64082
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65504,6 +65910,7 @@ export declare type TownsquareCommentEdge = {
|
|
|
65504
65910
|
};
|
|
65505
65911
|
export declare type TownsquareCreateGoalInput = {
|
|
65506
65912
|
containerId: Scalars['String']['input'];
|
|
65913
|
+
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
65507
65914
|
name: Scalars['String']['input'];
|
|
65508
65915
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
65509
65916
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65560,6 +65967,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
65560
65967
|
creationDate: Scalars['DateTime']['output'];
|
|
65561
65968
|
description?: Maybe<Scalars['String']['output']>;
|
|
65562
65969
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
65970
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
65563
65971
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
65564
65972
|
id: Scalars['ID']['output'];
|
|
65565
65973
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -65627,6 +66035,43 @@ export declare enum TownsquareGoalStateValue {
|
|
|
65627
66035
|
Paused = "paused",
|
|
65628
66036
|
Pending = "pending"
|
|
65629
66037
|
}
|
|
66038
|
+
export declare type TownsquareGoalType = Node & {
|
|
66039
|
+
__typename?: 'TownsquareGoalType';
|
|
66040
|
+
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
66041
|
+
allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
66042
|
+
id: Scalars['ID']['output'];
|
|
66043
|
+
name?: Maybe<TownsquareGoalTypeName>;
|
|
66044
|
+
state?: Maybe<TownsquareGoalTypeState>;
|
|
66045
|
+
};
|
|
66046
|
+
export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
|
|
66047
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66048
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66049
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66050
|
+
};
|
|
66051
|
+
export declare type TownsquareGoalTypeAllowedParentTypesArgs = {
|
|
66052
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66053
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66054
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66055
|
+
};
|
|
66056
|
+
export declare type TownsquareGoalTypeConnection = {
|
|
66057
|
+
__typename?: 'TownsquareGoalTypeConnection';
|
|
66058
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalTypeEdge>>>;
|
|
66059
|
+
pageInfo: PageInfo;
|
|
66060
|
+
};
|
|
66061
|
+
export declare type TownsquareGoalTypeCustomName = {
|
|
66062
|
+
__typename?: 'TownsquareGoalTypeCustomName';
|
|
66063
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
66064
|
+
};
|
|
66065
|
+
export declare type TownsquareGoalTypeEdge = {
|
|
66066
|
+
__typename?: 'TownsquareGoalTypeEdge';
|
|
66067
|
+
cursor: Scalars['String']['output'];
|
|
66068
|
+
node?: Maybe<TownsquareGoalType>;
|
|
66069
|
+
};
|
|
66070
|
+
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
66071
|
+
export declare enum TownsquareGoalTypeState {
|
|
66072
|
+
Disabled = "DISABLED",
|
|
66073
|
+
Enabled = "ENABLED"
|
|
66074
|
+
}
|
|
65630
66075
|
export declare type TownsquareLocalizationField = {
|
|
65631
66076
|
__typename?: 'TownsquareLocalizationField';
|
|
65632
66077
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65734,6 +66179,7 @@ export declare type TownsquareQueryApi = {
|
|
|
65734
66179
|
goal?: Maybe<TownsquareGoal>;
|
|
65735
66180
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
65736
66181
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
66182
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65737
66183
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
65738
66184
|
project?: Maybe<TownsquareProject>;
|
|
65739
66185
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -65766,6 +66212,12 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
65766
66212
|
q: Scalars['String']['input'];
|
|
65767
66213
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
65768
66214
|
};
|
|
66215
|
+
export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
66216
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66217
|
+
containerId: Scalars['String']['input'];
|
|
66218
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66219
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66220
|
+
};
|
|
65769
66221
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
65770
66222
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65771
66223
|
};
|
|
@@ -67639,6 +68091,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
67639
68091
|
id: Scalars['ID']['input'];
|
|
67640
68092
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67641
68093
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68094
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
67642
68095
|
};
|
|
67643
68096
|
export declare type UpdateCompassComponentLinkInput = {
|
|
67644
68097
|
componentId: Scalars['ID']['input'];
|