@forge/cli-shared 3.25.1-next.3-experimental-7fc11d3 → 3.25.1-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -128,6 +128,8 @@ export declare type ActionsAction = {
|
|
|
128
128
|
};
|
|
129
129
|
export declare type ActionsActionType = {
|
|
130
130
|
__typename?: 'ActionsActionType';
|
|
131
|
+
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
132
|
+
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
131
133
|
description?: Maybe<Scalars['String']['output']>;
|
|
132
134
|
displayName: Scalars['String']['output'];
|
|
133
135
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
@@ -137,6 +139,8 @@ export declare type ActionsActionType = {
|
|
|
137
139
|
};
|
|
138
140
|
export declare type ActionsActionTypeInput = {
|
|
139
141
|
__typename?: 'ActionsActionTypeInput';
|
|
142
|
+
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
143
|
+
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
140
144
|
defaultValue?: Maybe<Scalars['JSON']['output']>;
|
|
141
145
|
description: Scalars['String']['output'];
|
|
142
146
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
@@ -162,7 +166,9 @@ export declare type ActionsActionTypeOutputTuple = {
|
|
|
162
166
|
export declare type ActionsActionableApp = {
|
|
163
167
|
__typename?: 'ActionsActionableApp';
|
|
164
168
|
actions?: Maybe<Array<Maybe<ActionsAction>>>;
|
|
169
|
+
appDefinitionId?: Maybe<Scalars['String']['output']>;
|
|
165
170
|
appId: Scalars['String']['output'];
|
|
171
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
166
172
|
name: Scalars['String']['output'];
|
|
167
173
|
oauthClientId: Scalars['String']['output'];
|
|
168
174
|
};
|
|
@@ -187,6 +193,7 @@ export declare enum ActionsAuthType {
|
|
|
187
193
|
TwoLegged = "TWO_LEGGED"
|
|
188
194
|
}
|
|
189
195
|
export declare type ActionsExecuteActionFilter = {
|
|
196
|
+
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
190
197
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
191
198
|
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
192
199
|
};
|
|
@@ -767,6 +774,7 @@ export declare enum ApiContext {
|
|
|
767
774
|
Devops = "DEVOPS"
|
|
768
775
|
}
|
|
769
776
|
export declare enum ApiGroup {
|
|
777
|
+
Actions = "ACTIONS",
|
|
770
778
|
AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
|
|
771
779
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
772
780
|
Caas = "CAAS",
|
|
@@ -1612,6 +1620,7 @@ export declare type AquaIssueContext = {
|
|
|
1612
1620
|
export declare type AquaNotificationDetails = {
|
|
1613
1621
|
__typename?: 'AquaNotificationDetails';
|
|
1614
1622
|
errorKey?: Maybe<Scalars['String']['output']>;
|
|
1623
|
+
hasRecipientJoined?: Maybe<Scalars['Boolean']['output']>;
|
|
1615
1624
|
mailboxMessage?: Maybe<Scalars['String']['output']>;
|
|
1616
1625
|
suppressionManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
1617
1626
|
};
|
|
@@ -3485,6 +3494,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3485
3494
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3486
3495
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3487
3496
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3497
|
+
getDocumentation?: Maybe<CompassDocumentConnection>;
|
|
3488
3498
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3489
3499
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3490
3500
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
@@ -3550,6 +3560,11 @@ export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs =
|
|
|
3550
3560
|
cloudId: Scalars['ID']['input'];
|
|
3551
3561
|
input: CompassComponentType;
|
|
3552
3562
|
};
|
|
3563
|
+
export declare type CompassCatalogQueryApiGetDocumentationArgs = {
|
|
3564
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3565
|
+
componentId: Scalars['ID']['input'];
|
|
3566
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3567
|
+
};
|
|
3553
3568
|
export declare type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3554
3569
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3555
3570
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4396,6 +4411,17 @@ export declare type CompassDocument = Node & {
|
|
|
4396
4411
|
title?: Maybe<Scalars['String']['output']>;
|
|
4397
4412
|
url: Scalars['URL']['output'];
|
|
4398
4413
|
};
|
|
4414
|
+
export declare type CompassDocumentConnection = {
|
|
4415
|
+
__typename?: 'CompassDocumentConnection';
|
|
4416
|
+
edges?: Maybe<Array<CompassDocumentEdge>>;
|
|
4417
|
+
nodes?: Maybe<Array<CompassDocument>>;
|
|
4418
|
+
pageInfo?: Maybe<PageInfo>;
|
|
4419
|
+
};
|
|
4420
|
+
export declare type CompassDocumentEdge = {
|
|
4421
|
+
__typename?: 'CompassDocumentEdge';
|
|
4422
|
+
cursor: Scalars['String']['output'];
|
|
4423
|
+
node?: Maybe<CompassDocument>;
|
|
4424
|
+
};
|
|
4399
4425
|
export declare type CompassDocumentationCategoriesConnection = {
|
|
4400
4426
|
__typename?: 'CompassDocumentationCategoriesConnection';
|
|
4401
4427
|
edges?: Maybe<Array<CompassDocumentationCategoryEdge>>;
|
|
@@ -4840,6 +4866,23 @@ export declare type CompassMetricSourceEdge = {
|
|
|
4840
4866
|
cursor: Scalars['String']['output'];
|
|
4841
4867
|
node?: Maybe<CompassMetricSource>;
|
|
4842
4868
|
};
|
|
4869
|
+
export declare type CompassMetricSourceFilter = {
|
|
4870
|
+
metricDefinition?: InputMaybe<CompassMetricSourceMetricDefinitionFilter>;
|
|
4871
|
+
};
|
|
4872
|
+
export declare type CompassMetricSourceMetricDefinitionFilter = {
|
|
4873
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4874
|
+
};
|
|
4875
|
+
export declare type CompassMetricSourceQuery = {
|
|
4876
|
+
matchAnyFilter?: InputMaybe<Array<CompassMetricSourceFilter>>;
|
|
4877
|
+
};
|
|
4878
|
+
export declare type CompassMetricSourceV2 = {
|
|
4879
|
+
externalMetricSourceId?: Maybe<Scalars['ID']['output']>;
|
|
4880
|
+
forgeAppId?: Maybe<Scalars['ID']['output']>;
|
|
4881
|
+
id: Scalars['ID']['output'];
|
|
4882
|
+
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
4883
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
4884
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
4885
|
+
};
|
|
4843
4886
|
export declare type CompassMetricSourceValuesConnection = {
|
|
4844
4887
|
__typename?: 'CompassMetricSourceValuesConnection';
|
|
4845
4888
|
edges?: Maybe<Array<CompassMetricValueEdge>>;
|
|
@@ -4876,6 +4919,16 @@ export declare type CompassMetricValueInput = {
|
|
|
4876
4919
|
timestamp: Scalars['DateTime']['input'];
|
|
4877
4920
|
value: Scalars['Float']['input'];
|
|
4878
4921
|
};
|
|
4922
|
+
export declare type CompassMetricValuesFilter = {
|
|
4923
|
+
timeRange?: InputMaybe<CompassMetricValuesTimeRangeFilter>;
|
|
4924
|
+
};
|
|
4925
|
+
export declare type CompassMetricValuesQuery = {
|
|
4926
|
+
matchAnyFilter?: InputMaybe<Array<CompassMetricValuesFilter>>;
|
|
4927
|
+
};
|
|
4928
|
+
export declare type CompassMetricValuesTimeRangeFilter = {
|
|
4929
|
+
endDate: Scalars['DateTime']['input'];
|
|
4930
|
+
startDate: Scalars['DateTime']['input'];
|
|
4931
|
+
};
|
|
4879
4932
|
export declare type CompassMetricValuesTimeseries = {
|
|
4880
4933
|
__typename?: 'CompassMetricValuesTimeseries';
|
|
4881
4934
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
@@ -5509,8 +5562,14 @@ export declare type CompassTeamData = {
|
|
|
5509
5562
|
__typename?: 'CompassTeamData';
|
|
5510
5563
|
currentCheckin?: Maybe<CompassTeamCheckin>;
|
|
5511
5564
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
5565
|
+
metricSources?: Maybe<CompassTeamMetricSourceConnection>;
|
|
5512
5566
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
5513
5567
|
};
|
|
5568
|
+
export declare type CompassTeamDataMetricSourcesArgs = {
|
|
5569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5570
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5571
|
+
query?: InputMaybe<CompassMetricSourceQuery>;
|
|
5572
|
+
};
|
|
5514
5573
|
export declare type CompassTeamDataInput = {
|
|
5515
5574
|
cloudId: Scalars['ID']['input'];
|
|
5516
5575
|
teamId: Scalars['ID']['input'];
|
|
@@ -5520,6 +5579,33 @@ export declare type CompassTeamLabel = {
|
|
|
5520
5579
|
__typename?: 'CompassTeamLabel';
|
|
5521
5580
|
name: Scalars['String']['output'];
|
|
5522
5581
|
};
|
|
5582
|
+
export declare type CompassTeamMetricSource = CompassMetricSourceV2 & {
|
|
5583
|
+
__typename?: 'CompassTeamMetricSource';
|
|
5584
|
+
externalMetricSourceId?: Maybe<Scalars['ID']['output']>;
|
|
5585
|
+
forgeAppId?: Maybe<Scalars['ID']['output']>;
|
|
5586
|
+
id: Scalars['ID']['output'];
|
|
5587
|
+
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
5588
|
+
team?: Maybe<CompassTeamData>;
|
|
5589
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
5590
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
5591
|
+
values?: Maybe<CompassMetricSourceValuesConnection>;
|
|
5592
|
+
};
|
|
5593
|
+
export declare type CompassTeamMetricSourceValuesArgs = {
|
|
5594
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5595
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5596
|
+
query?: InputMaybe<CompassMetricValuesQuery>;
|
|
5597
|
+
};
|
|
5598
|
+
export declare type CompassTeamMetricSourceConnection = {
|
|
5599
|
+
__typename?: 'CompassTeamMetricSourceConnection';
|
|
5600
|
+
edges?: Maybe<Array<Maybe<CompassTeamMetricSourceEdge>>>;
|
|
5601
|
+
nodes?: Maybe<Array<Maybe<CompassTeamMetricSource>>>;
|
|
5602
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5603
|
+
};
|
|
5604
|
+
export declare type CompassTeamMetricSourceEdge = {
|
|
5605
|
+
__typename?: 'CompassTeamMetricSourceEdge';
|
|
5606
|
+
cursor: Scalars['String']['output'];
|
|
5607
|
+
node?: Maybe<CompassTeamMetricSource>;
|
|
5608
|
+
};
|
|
5523
5609
|
export declare type CompassUpdateAnnouncementInput = {
|
|
5524
5610
|
clearAcknowledgements?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5525
5611
|
cloudId: Scalars['ID']['input'];
|
|
@@ -6781,15 +6867,79 @@ export declare type ContentPlatformAdvocateQuote = {
|
|
|
6781
6867
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
6782
6868
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6783
6869
|
};
|
|
6784
|
-
export declare type
|
|
6785
|
-
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6870
|
+
export declare type ContentPlatformAnchor = {
|
|
6871
|
+
__typename?: 'ContentPlatformAnchor';
|
|
6872
|
+
anchorId: Scalars['String']['output'];
|
|
6873
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
6874
|
+
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
6789
6875
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6790
|
-
|
|
6876
|
+
headline?: Maybe<Array<ContentPlatformAnchorHeadline>>;
|
|
6877
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6878
|
+
pageVariant: Scalars['String']['output'];
|
|
6879
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
6880
|
+
primaryMessage?: Maybe<Array<ContentPlatformAnchorPrimaryMessage>>;
|
|
6881
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
6882
|
+
results?: Maybe<Array<ContentPlatformAnchorResult>>;
|
|
6883
|
+
socialProof?: Maybe<Array<ContentPlatformAnchorSocialProof>>;
|
|
6884
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6885
|
+
};
|
|
6886
|
+
export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
6887
|
+
__typename?: 'ContentPlatformAnchorContentSearchConnection';
|
|
6888
|
+
edges: Array<ContentPlatformAnchorResultEdge>;
|
|
6889
|
+
pageInfo: PageInfo;
|
|
6890
|
+
};
|
|
6891
|
+
export declare type ContentPlatformAnchorHeadline = {
|
|
6892
|
+
__typename?: 'ContentPlatformAnchorHeadline';
|
|
6893
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
6894
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6895
|
+
id: Scalars['String']['output'];
|
|
6896
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6897
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
6898
|
+
planBenefits?: Maybe<Array<ContentPlatformPlanBenefits>>;
|
|
6899
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
6900
|
+
subheading?: Maybe<Scalars['String']['output']>;
|
|
6901
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6902
|
+
};
|
|
6903
|
+
export declare type ContentPlatformAnchorPrimaryMessage = {
|
|
6904
|
+
__typename?: 'ContentPlatformAnchorPrimaryMessage';
|
|
6905
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
6906
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6907
|
+
id: Scalars['String']['output'];
|
|
6908
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6909
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
6910
|
+
product?: Maybe<ContentPlatformProduct>;
|
|
6911
|
+
supportingExample?: Maybe<Array<ContentPlatformSupportingExample>>;
|
|
6912
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6913
|
+
};
|
|
6914
|
+
export declare type ContentPlatformAnchorResult = {
|
|
6915
|
+
__typename?: 'ContentPlatformAnchorResult';
|
|
6916
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
6917
|
+
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6918
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6919
|
+
id: Scalars['String']['output'];
|
|
6920
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6921
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
6922
|
+
product?: Maybe<ContentPlatformProduct>;
|
|
6923
|
+
subheading?: Maybe<Scalars['String']['output']>;
|
|
6791
6924
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6792
6925
|
};
|
|
6926
|
+
export declare type ContentPlatformAnchorResultEdge = {
|
|
6927
|
+
__typename?: 'ContentPlatformAnchorResultEdge';
|
|
6928
|
+
cursor: Scalars['String']['output'];
|
|
6929
|
+
node: ContentPlatformAnchor;
|
|
6930
|
+
};
|
|
6931
|
+
export declare type ContentPlatformAnchorSocialProof = {
|
|
6932
|
+
__typename?: 'ContentPlatformAnchorSocialProof';
|
|
6933
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
6934
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6935
|
+
customers?: Maybe<Array<ContentPlatformOrganization>>;
|
|
6936
|
+
id: Scalars['String']['output'];
|
|
6937
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6938
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
6939
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
6940
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6941
|
+
};
|
|
6942
|
+
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
6793
6943
|
export declare type ContentPlatformAssetComponent = {
|
|
6794
6944
|
__typename?: 'ContentPlatformAssetComponent';
|
|
6795
6945
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -6927,15 +7077,15 @@ export declare type ContentPlatformCustomerStory = {
|
|
|
6927
7077
|
customerStoryId: Scalars['String']['output'];
|
|
6928
7078
|
heroAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6929
7079
|
location?: Maybe<Scalars['String']['output']>;
|
|
6930
|
-
marketplaceApps?: Maybe<Array<
|
|
7080
|
+
marketplaceApps?: Maybe<Array<ContentPlatformMarketplaceApp>>;
|
|
6931
7081
|
numberOfUsers?: Maybe<Scalars['String']['output']>;
|
|
6932
|
-
|
|
7082
|
+
products?: Maybe<Array<ContentPlatformProduct>>;
|
|
6933
7083
|
relatedCustomerStories?: Maybe<Array<ContentPlatformCustomerStory>>;
|
|
6934
7084
|
relatedPdf?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6935
7085
|
relatedVideo?: Maybe<Scalars['String']['output']>;
|
|
6936
7086
|
shortTitle?: Maybe<Scalars['String']['output']>;
|
|
6937
7087
|
solution?: Maybe<Array<ContentPlatformSolution>>;
|
|
6938
|
-
|
|
7088
|
+
solutionPartners?: Maybe<Array<ContentPlatformOrganization>>;
|
|
6939
7089
|
stats?: Maybe<Array<ContentPlatformStat>>;
|
|
6940
7090
|
story?: Maybe<Array<ContentPlatformStoryComponent>>;
|
|
6941
7091
|
storyDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -7028,6 +7178,14 @@ export declare type ContentPlatformImageComponent = {
|
|
|
7028
7178
|
image: ContentPlatformImageAsset;
|
|
7029
7179
|
name: Scalars['String']['output'];
|
|
7030
7180
|
};
|
|
7181
|
+
export declare type ContentPlatformMarketplaceApp = {
|
|
7182
|
+
__typename?: 'ContentPlatformMarketplaceApp';
|
|
7183
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7184
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7185
|
+
name: Scalars['String']['output'];
|
|
7186
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7187
|
+
url: Scalars['String']['output'];
|
|
7188
|
+
};
|
|
7031
7189
|
export declare enum ContentPlatformOperators {
|
|
7032
7190
|
All = "ALL",
|
|
7033
7191
|
Any = "ANY"
|
|
@@ -7038,11 +7196,27 @@ export declare type ContentPlatformOrganization = {
|
|
|
7038
7196
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
7039
7197
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
7040
7198
|
name: Scalars['String']['output'];
|
|
7199
|
+
organizationSize?: Maybe<ContentPlatformTaxonomyCompanySize>;
|
|
7200
|
+
region?: Maybe<ContentPlatformTaxonomyRegion>;
|
|
7041
7201
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7042
7202
|
tagline?: Maybe<Scalars['String']['output']>;
|
|
7043
7203
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7044
7204
|
};
|
|
7045
7205
|
export declare type ContentPlatformOrganizationAndAuthorUnion = ContentPlatformAuthor | ContentPlatformOrganization;
|
|
7206
|
+
export declare type ContentPlatformPlanBenefits = {
|
|
7207
|
+
__typename?: 'ContentPlatformPlanBenefits';
|
|
7208
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
7209
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7210
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7211
|
+
id: Scalars['String']['output'];
|
|
7212
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7213
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
7214
|
+
plan?: Maybe<ContentPlatformTaxonomyPlan>;
|
|
7215
|
+
planFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
7216
|
+
product?: Maybe<ContentPlatformProduct>;
|
|
7217
|
+
supportingAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7218
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7219
|
+
};
|
|
7046
7220
|
export declare type ContentPlatformProTipComponent = {
|
|
7047
7221
|
__typename?: 'ContentPlatformProTipComponent';
|
|
7048
7222
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7050,12 +7224,23 @@ export declare type ContentPlatformProTipComponent = {
|
|
|
7050
7224
|
proTipText?: Maybe<Scalars['String']['output']>;
|
|
7051
7225
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7052
7226
|
};
|
|
7227
|
+
export declare type ContentPlatformProduct = {
|
|
7228
|
+
__typename?: 'ContentPlatformProduct';
|
|
7229
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7230
|
+
deployment?: Maybe<Scalars['String']['output']>;
|
|
7231
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7232
|
+
name: Scalars['String']['output'];
|
|
7233
|
+
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
7234
|
+
productNameId?: Maybe<Scalars['String']['output']>;
|
|
7235
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7236
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
7237
|
+
};
|
|
7053
7238
|
export declare type ContentPlatformProductFeature = {
|
|
7054
7239
|
__typename?: 'ContentPlatformProductFeature';
|
|
7055
7240
|
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7056
7241
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7057
7242
|
description?: Maybe<Scalars['String']['output']>;
|
|
7058
|
-
|
|
7243
|
+
featureName?: Maybe<Scalars['String']['output']>;
|
|
7059
7244
|
slogan?: Maybe<Scalars['String']['output']>;
|
|
7060
7245
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7061
7246
|
};
|
|
@@ -7215,6 +7400,29 @@ export declare type ContentPlatformSupportingConceptWrapper = {
|
|
|
7215
7400
|
name?: Maybe<Scalars['String']['output']>;
|
|
7216
7401
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7217
7402
|
};
|
|
7403
|
+
export declare type ContentPlatformSupportingExample = {
|
|
7404
|
+
__typename?: 'ContentPlatformSupportingExample';
|
|
7405
|
+
advocateQuote?: Maybe<ContentPlatformAdvocateQuote>;
|
|
7406
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
7407
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7408
|
+
heading?: Maybe<Scalars['String']['output']>;
|
|
7409
|
+
id: Scalars['String']['output'];
|
|
7410
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7411
|
+
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
7412
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
7413
|
+
proofpoint?: Maybe<Scalars['String']['output']>;
|
|
7414
|
+
supportingAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7415
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7416
|
+
};
|
|
7417
|
+
export declare type ContentPlatformTaxonomyAnchorTopic = {
|
|
7418
|
+
__typename?: 'ContentPlatformTaxonomyAnchorTopic';
|
|
7419
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7420
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7421
|
+
id: Scalars['String']['output'];
|
|
7422
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7423
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
7424
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7425
|
+
};
|
|
7218
7426
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
7219
7427
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
7220
7428
|
description: Scalars['String']['output'];
|
|
@@ -7245,6 +7453,15 @@ export declare type ContentPlatformTaxonomyContentHub = {
|
|
|
7245
7453
|
title?: Maybe<Scalars['String']['output']>;
|
|
7246
7454
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7247
7455
|
};
|
|
7456
|
+
export declare type ContentPlatformTaxonomyFeature = {
|
|
7457
|
+
__typename?: 'ContentPlatformTaxonomyFeature';
|
|
7458
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7459
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7460
|
+
id: Scalars['String']['output'];
|
|
7461
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7462
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
7463
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7464
|
+
};
|
|
7248
7465
|
export declare type ContentPlatformTaxonomyIndustry = {
|
|
7249
7466
|
__typename?: 'ContentPlatformTaxonomyIndustry';
|
|
7250
7467
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7252,6 +7469,31 @@ export declare type ContentPlatformTaxonomyIndustry = {
|
|
|
7252
7469
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7253
7470
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7254
7471
|
};
|
|
7472
|
+
export declare type ContentPlatformTaxonomyPersona = {
|
|
7473
|
+
__typename?: 'ContentPlatformTaxonomyPersona';
|
|
7474
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7475
|
+
id: Scalars['String']['output'];
|
|
7476
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7477
|
+
personaDescription?: Maybe<Scalars['String']['output']>;
|
|
7478
|
+
personaShortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
7479
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7480
|
+
};
|
|
7481
|
+
export declare type ContentPlatformTaxonomyPlan = {
|
|
7482
|
+
__typename?: 'ContentPlatformTaxonomyPlan';
|
|
7483
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7484
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7485
|
+
id: Scalars['String']['output'];
|
|
7486
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7487
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
7488
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7489
|
+
};
|
|
7490
|
+
export declare type ContentPlatformTaxonomyRegion = {
|
|
7491
|
+
__typename?: 'ContentPlatformTaxonomyRegion';
|
|
7492
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7493
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7494
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7495
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7496
|
+
};
|
|
7255
7497
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
7256
7498
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
7257
7499
|
description: Scalars['String']['output'];
|
|
@@ -7367,9 +7609,9 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
7367
7609
|
};
|
|
7368
7610
|
export declare type ContentPlatformTextComponent = {
|
|
7369
7611
|
__typename?: 'ContentPlatformTextComponent';
|
|
7612
|
+
bodyText?: Maybe<Scalars['String']['output']>;
|
|
7370
7613
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7371
7614
|
name?: Maybe<Scalars['String']['output']>;
|
|
7372
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
7373
7615
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7374
7616
|
};
|
|
7375
7617
|
export declare type ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionUnion = ContentPlatformAssetComponent | ContentPlatformCallToAction | ContentPlatformEmbeddedVideoAsset | ContentPlatformProTipComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
@@ -7416,9 +7658,9 @@ export declare type ContentPlatformTutorial = {
|
|
|
7416
7658
|
__typename?: 'ContentPlatformTutorial';
|
|
7417
7659
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7418
7660
|
description?: Maybe<Scalars['String']['output']>;
|
|
7419
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
7420
7661
|
title?: Maybe<Scalars['String']['output']>;
|
|
7421
7662
|
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7663
|
+
tutorialName?: Maybe<Scalars['String']['output']>;
|
|
7422
7664
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7423
7665
|
urlSlug: Scalars['String']['output'];
|
|
7424
7666
|
};
|
|
@@ -26813,9 +27055,13 @@ export declare type InlineColumnEditConfig = {
|
|
|
26813
27055
|
};
|
|
26814
27056
|
export declare type Insights = {
|
|
26815
27057
|
__typename?: 'Insights';
|
|
27058
|
+
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
26816
27059
|
nextBestTasksByContextAri: Array<InsightsNextBestTask>;
|
|
26817
27060
|
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
26818
27061
|
};
|
|
27062
|
+
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
27063
|
+
cloudId: Scalars['ID']['input'];
|
|
27064
|
+
};
|
|
26819
27065
|
export declare type InsightsNextBestTasksByContextAriArgs = {
|
|
26820
27066
|
contextAri: InsightsContextAri;
|
|
26821
27067
|
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26924,6 +27170,11 @@ export declare enum InsightsEnvironmentType {
|
|
|
26924
27170
|
Testing = "TESTING",
|
|
26925
27171
|
Unmapped = "UNMAPPED"
|
|
26926
27172
|
}
|
|
27173
|
+
export declare type InsightsGithubOnboardingDetails = {
|
|
27174
|
+
__typename?: 'InsightsGithubOnboardingDetails';
|
|
27175
|
+
outboundAuthUrl: Scalars['String']['output'];
|
|
27176
|
+
recommendationVisibility: InsightsRecommendationVisibility;
|
|
27177
|
+
};
|
|
26927
27178
|
export declare type InsightsMutation = {
|
|
26928
27179
|
__typename?: 'InsightsMutation';
|
|
26929
27180
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
@@ -27013,6 +27264,12 @@ export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon &
|
|
|
27013
27264
|
export declare type InsightsPurgeUserActionStateInput = {
|
|
27014
27265
|
cloudId: Scalars['ID']['input'];
|
|
27015
27266
|
};
|
|
27267
|
+
export declare enum InsightsRecommendationVisibility {
|
|
27268
|
+
Hidden = "HIDDEN",
|
|
27269
|
+
Removed = "REMOVED",
|
|
27270
|
+
Snoozed = "SNOOZED",
|
|
27271
|
+
Visible = "VISIBLE"
|
|
27272
|
+
}
|
|
27016
27273
|
export declare enum InsightsTaskType {
|
|
27017
27274
|
BlockingIssue = "BLOCKING_ISSUE",
|
|
27018
27275
|
BuildFailed = "BUILD_FAILED",
|
|
@@ -28169,6 +28426,14 @@ export declare enum JiraBitbucketWorkspaceApprovalState {
|
|
|
28169
28426
|
Approved = "APPROVED",
|
|
28170
28427
|
PendingApproval = "PENDING_APPROVAL"
|
|
28171
28428
|
}
|
|
28429
|
+
export declare type JiraBoard = Node & {
|
|
28430
|
+
__typename?: 'JiraBoard';
|
|
28431
|
+
boardId?: Maybe<Scalars['Long']['output']>;
|
|
28432
|
+
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
28433
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
28434
|
+
id: Scalars['ID']['output'];
|
|
28435
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
28436
|
+
};
|
|
28172
28437
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28173
28438
|
__typename?: 'JiraBooleanField';
|
|
28174
28439
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -28585,6 +28850,7 @@ export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
|
28585
28850
|
export declare type JiraClassificationLevel = {
|
|
28586
28851
|
__typename?: 'JiraClassificationLevel';
|
|
28587
28852
|
color?: Maybe<JiraColor>;
|
|
28853
|
+
definition?: Maybe<Scalars['String']['output']>;
|
|
28588
28854
|
guidelines?: Maybe<Scalars['String']['output']>;
|
|
28589
28855
|
id: Scalars['ID']['output'];
|
|
28590
28856
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -28606,6 +28872,10 @@ export declare type JiraClassificationLevelFilterInput = {
|
|
|
28606
28872
|
filterByStatus: Array<JiraClassificationLevelStatus>;
|
|
28607
28873
|
filterByType: Array<JiraClassificationLevelType>;
|
|
28608
28874
|
};
|
|
28875
|
+
export declare enum JiraClassificationLevelSource {
|
|
28876
|
+
Issue = "ISSUE",
|
|
28877
|
+
Project = "PROJECT"
|
|
28878
|
+
}
|
|
28609
28879
|
export declare enum JiraClassificationLevelStatus {
|
|
28610
28880
|
Archived = "ARCHIVED",
|
|
28611
28881
|
Draft = "DRAFT",
|
|
@@ -29294,6 +29564,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
29294
29564
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
29295
29565
|
classification?: Maybe<JiraDataClassification>;
|
|
29296
29566
|
classificationLevel?: Maybe<JiraClassificationLevel>;
|
|
29567
|
+
classificationLevelSource?: Maybe<JiraClassificationLevelSource>;
|
|
29297
29568
|
classificationLevels?: Maybe<JiraClassificationLevelConnection>;
|
|
29298
29569
|
defaultClassificationLevel?: Maybe<JiraClassificationLevel>;
|
|
29299
29570
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -29545,6 +29816,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
29545
29816
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
29546
29817
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
29547
29818
|
startAutodev?: Maybe<JiraAutodevBasicPayload>;
|
|
29819
|
+
stopAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
29548
29820
|
updateAssociations?: Maybe<JiraDevOpsUpdateAssociationsPayload>;
|
|
29549
29821
|
};
|
|
29550
29822
|
export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequestArgs = {
|
|
@@ -29607,6 +29879,10 @@ export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
|
29607
29879
|
issueAri: Scalars['ID']['input'];
|
|
29608
29880
|
jobId: Scalars['ID']['input'];
|
|
29609
29881
|
};
|
|
29882
|
+
export declare type JiraDevOpsMutationStopAutodevJobArgs = {
|
|
29883
|
+
issueAri: Scalars['ID']['input'];
|
|
29884
|
+
jobId: Scalars['ID']['input'];
|
|
29885
|
+
};
|
|
29610
29886
|
export declare type JiraDevOpsMutationUpdateAssociationsArgs = {
|
|
29611
29887
|
cloudId: Scalars['ID']['input'];
|
|
29612
29888
|
input: JiraDevOpsUpdateAssociationsInput;
|
|
@@ -29835,7 +30111,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
29835
30111
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
29836
30112
|
type: Scalars['String']['output'];
|
|
29837
30113
|
};
|
|
29838
|
-
export declare type JiraFavourite = JiraCustomFilter | JiraProject | JiraSystemFilter;
|
|
30114
|
+
export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraSystemFilter;
|
|
29839
30115
|
export declare type JiraFavouriteConnection = {
|
|
29840
30116
|
__typename?: 'JiraFavouriteConnection';
|
|
29841
30117
|
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
@@ -29850,7 +30126,10 @@ export declare type JiraFavouriteFilter = {
|
|
|
29850
30126
|
type: JiraFavouriteType;
|
|
29851
30127
|
};
|
|
29852
30128
|
export declare enum JiraFavouriteType {
|
|
30129
|
+
Board = "BOARD",
|
|
30130
|
+
Dashboard = "DASHBOARD",
|
|
29853
30131
|
Filter = "FILTER",
|
|
30132
|
+
Plan = "PLAN",
|
|
29854
30133
|
Project = "PROJECT"
|
|
29855
30134
|
}
|
|
29856
30135
|
export declare type JiraFavouriteValue = Node & {
|
|
@@ -30415,6 +30694,7 @@ export declare type JiraIssue = Node & {
|
|
|
30415
30694
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
30416
30695
|
duedate?: Maybe<Scalars['DateTime']['output']>;
|
|
30417
30696
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
30697
|
+
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
30418
30698
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
30419
30699
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
30420
30700
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -30469,6 +30749,10 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30469
30749
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30470
30750
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30471
30751
|
};
|
|
30752
|
+
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30753
|
+
idsOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30754
|
+
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30755
|
+
};
|
|
30472
30756
|
export declare type JiraIssueFieldSetsArgs = {
|
|
30473
30757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30474
30758
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30593,6 +30877,8 @@ export declare type JiraIssueBulkOperationFailureEdge = {
|
|
|
30593
30877
|
export declare type JiraIssueBulkOperationProgress = {
|
|
30594
30878
|
__typename?: 'JiraIssueBulkOperationProgress';
|
|
30595
30879
|
bulkOperationFailures?: Maybe<JiraIssueBulkOperationFailureConnection>;
|
|
30880
|
+
editedAccessibleIssues?: Maybe<JiraIssueConnection>;
|
|
30881
|
+
editedInaccessibleIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
30596
30882
|
progress?: Maybe<Scalars['Long']['output']>;
|
|
30597
30883
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
30598
30884
|
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
@@ -30608,6 +30894,12 @@ export declare type JiraIssueBulkOperationProgressBulkOperationFailuresArgs = {
|
|
|
30608
30894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30609
30895
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30610
30896
|
};
|
|
30897
|
+
export declare type JiraIssueBulkOperationProgressEditedAccessibleIssuesArgs = {
|
|
30898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30899
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30901
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30902
|
+
};
|
|
30611
30903
|
export declare type JiraIssueBulkOperationProgressSuccessfulIssuesArgs = {
|
|
30612
30904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30613
30905
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31311,6 +31603,16 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
31311
31603
|
success: Scalars['Boolean']['output'];
|
|
31312
31604
|
view?: Maybe<JiraIssueSearchView>;
|
|
31313
31605
|
};
|
|
31606
|
+
export declare type JiraIssueTransitionComment = {
|
|
31607
|
+
__typename?: 'JiraIssueTransitionComment';
|
|
31608
|
+
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
31609
|
+
mediaContext?: Maybe<JiraMediaContext>;
|
|
31610
|
+
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31611
|
+
};
|
|
31612
|
+
export declare enum JiraIssueTransitionCommentType {
|
|
31613
|
+
InternalNote = "INTERNAL_NOTE",
|
|
31614
|
+
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
31615
|
+
}
|
|
31314
31616
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
31315
31617
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
31316
31618
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
@@ -31354,6 +31656,7 @@ export declare type JiraIssueTransitionMessage = {
|
|
|
31354
31656
|
};
|
|
31355
31657
|
export declare type JiraIssueTransitionModal = {
|
|
31356
31658
|
__typename?: 'JiraIssueTransitionModal';
|
|
31659
|
+
comment?: Maybe<JiraIssueTransitionComment>;
|
|
31357
31660
|
contentSections?: Maybe<JiraScreenTabLayout>;
|
|
31358
31661
|
description?: Maybe<Scalars['String']['output']>;
|
|
31359
31662
|
issue?: Maybe<JiraIssue>;
|
|
@@ -33251,6 +33554,7 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
33251
33554
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
33252
33555
|
};
|
|
33253
33556
|
export declare type JiraOnIssueCreatedForUserResponseType = JiraIssueAndProject | JiraProjectConnection;
|
|
33557
|
+
export declare type JiraOnSuggestedChildIssueResult = JiraSuggestedChildIssueError | JiraSuggestedChildIssueStatus | JiraSuggestedIssue;
|
|
33254
33558
|
export declare type JiraOpsgenieTeam = Node & {
|
|
33255
33559
|
__typename?: 'JiraOpsgenieTeam';
|
|
33256
33560
|
id: Scalars['ID']['output'];
|
|
@@ -33576,8 +33880,10 @@ export declare enum JiraPermissionType {
|
|
|
33576
33880
|
}
|
|
33577
33881
|
export declare type JiraPlan = Node & {
|
|
33578
33882
|
__typename?: 'JiraPlan';
|
|
33883
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
33579
33884
|
id: Scalars['ID']['output'];
|
|
33580
33885
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
33886
|
+
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
33581
33887
|
title?: Maybe<Scalars['String']['output']>;
|
|
33582
33888
|
};
|
|
33583
33889
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
@@ -33760,6 +34066,7 @@ export declare type JiraProject = Node & {
|
|
|
33760
34066
|
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']['output']>;
|
|
33761
34067
|
uuid?: Maybe<Scalars['ID']['output']>;
|
|
33762
34068
|
versions?: Maybe<JiraVersionConnection>;
|
|
34069
|
+
versionsV2?: Maybe<JiraVersionConnectionResult>;
|
|
33763
34070
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
33764
34071
|
};
|
|
33765
34072
|
export declare type JiraProjectActionArgs = {
|
|
@@ -33822,6 +34129,7 @@ export declare type JiraProjectLinkedOperationsIncidentsByProjectArgs = {
|
|
|
33822
34129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33823
34130
|
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
33824
34131
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34132
|
+
sort?: InputMaybe<GraphStoreJswProjectAssociatedIncidentSortInput>;
|
|
33825
34133
|
};
|
|
33826
34134
|
export declare type JiraProjectLinkedSecurityContainersArgs = {
|
|
33827
34135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33874,6 +34182,17 @@ export declare type JiraProjectVersionsArgs = {
|
|
|
33874
34182
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
33875
34183
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
33876
34184
|
};
|
|
34185
|
+
export declare type JiraProjectVersionsV2Args = {
|
|
34186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34187
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
34188
|
+
filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
34189
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34190
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
34191
|
+
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
34192
|
+
releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
|
|
34193
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
34194
|
+
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
34195
|
+
};
|
|
33877
34196
|
export declare type JiraProjectAction = {
|
|
33878
34197
|
__typename?: 'JiraProjectAction';
|
|
33879
34198
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -34406,6 +34725,7 @@ export declare type JiraQuery = {
|
|
|
34406
34725
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
34407
34726
|
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
34408
34727
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
34728
|
+
jwmSavedViewById?: Maybe<JiraWorkManagementSavedView>;
|
|
34409
34729
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
34410
34730
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
34411
34731
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
@@ -34854,6 +35174,9 @@ export declare type JiraQueryJwmOverviewsArgs = {
|
|
|
34854
35174
|
cloudId: Scalars['ID']['input'];
|
|
34855
35175
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34856
35176
|
};
|
|
35177
|
+
export declare type JiraQueryJwmSavedViewByIdArgs = {
|
|
35178
|
+
id: Scalars['ID']['input'];
|
|
35179
|
+
};
|
|
34857
35180
|
export declare type JiraQueryJwmSavedViewsByProjectArgs = {
|
|
34858
35181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34859
35182
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36073,11 +36396,17 @@ export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManage
|
|
|
36073
36396
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
36074
36397
|
type?: Maybe<Scalars['String']['output']>;
|
|
36075
36398
|
};
|
|
36399
|
+
export declare type JiraServiceManagementEntitledEntity = JiraServiceManagementEntitlementCustomer | JiraServiceManagementEntitlementOrganization;
|
|
36076
36400
|
export declare type JiraServiceManagementEntitlement = Node & {
|
|
36077
36401
|
__typename?: 'JiraServiceManagementEntitlement';
|
|
36402
|
+
entity?: Maybe<JiraServiceManagementEntitledEntity>;
|
|
36078
36403
|
id: Scalars['ID']['output'];
|
|
36079
36404
|
product?: Maybe<JiraServiceManagementProduct>;
|
|
36080
36405
|
};
|
|
36406
|
+
export declare type JiraServiceManagementEntitlementCustomer = {
|
|
36407
|
+
__typename?: 'JiraServiceManagementEntitlementCustomer';
|
|
36408
|
+
id: Scalars['ID']['output'];
|
|
36409
|
+
};
|
|
36081
36410
|
export declare type JiraServiceManagementEntitlementField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
36082
36411
|
__typename?: 'JiraServiceManagementEntitlementField';
|
|
36083
36412
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -36097,6 +36426,10 @@ export declare type JiraServiceManagementEntitlementFieldPayload = Payload & {
|
|
|
36097
36426
|
field?: Maybe<JiraServiceManagementEntitlementField>;
|
|
36098
36427
|
success: Scalars['Boolean']['output'];
|
|
36099
36428
|
};
|
|
36429
|
+
export declare type JiraServiceManagementEntitlementOrganization = {
|
|
36430
|
+
__typename?: 'JiraServiceManagementEntitlementOrganization';
|
|
36431
|
+
id: Scalars['ID']['output'];
|
|
36432
|
+
};
|
|
36100
36433
|
export declare type JiraServiceManagementFeedback = {
|
|
36101
36434
|
__typename?: 'JiraServiceManagementFeedback';
|
|
36102
36435
|
rating?: Maybe<Scalars['Int']['output']>;
|
|
@@ -37151,6 +37484,7 @@ export declare type JiraSubscription = {
|
|
|
37151
37484
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
37152
37485
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
37153
37486
|
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
37487
|
+
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
37154
37488
|
};
|
|
37155
37489
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
37156
37490
|
cloudId: Scalars['ID']['input'];
|
|
@@ -37187,6 +37521,13 @@ export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
|
37187
37521
|
cloudId: Scalars['ID']['input'];
|
|
37188
37522
|
projectId: Scalars['String']['input'];
|
|
37189
37523
|
};
|
|
37524
|
+
export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
37525
|
+
additionalContext?: InputMaybe<Scalars['String']['input']>;
|
|
37526
|
+
channelId?: InputMaybe<Scalars['String']['input']>;
|
|
37527
|
+
excludeSimilarIssues?: InputMaybe<Array<JiraSuggestedIssueInput>>;
|
|
37528
|
+
issueTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37529
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
37530
|
+
};
|
|
37190
37531
|
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
37191
37532
|
__typename?: 'JiraSubtasksField';
|
|
37192
37533
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -37205,6 +37546,33 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
37205
37546
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37206
37547
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37207
37548
|
};
|
|
37549
|
+
export declare type JiraSuggestedChildIssueError = {
|
|
37550
|
+
__typename?: 'JiraSuggestedChildIssueError';
|
|
37551
|
+
error?: Maybe<JiraSuggestedIssueErrorType>;
|
|
37552
|
+
};
|
|
37553
|
+
export declare type JiraSuggestedChildIssueStatus = {
|
|
37554
|
+
__typename?: 'JiraSuggestedChildIssueStatus';
|
|
37555
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
37556
|
+
status?: Maybe<JiraSuggestedChildIssueStatusType>;
|
|
37557
|
+
};
|
|
37558
|
+
export declare enum JiraSuggestedChildIssueStatusType {
|
|
37559
|
+
Complete = "COMPLETE",
|
|
37560
|
+
RefiningSuggestedIssues = "REFINING_SUGGESTED_ISSUES",
|
|
37561
|
+
RemovingDuplicateIssues = "REMOVING_DUPLICATE_ISSUES",
|
|
37562
|
+
RetrievingSourceContext = "RETRIEVING_SOURCE_CONTEXT",
|
|
37563
|
+
SuggestingInitialIssues = "SUGGESTING_INITIAL_ISSUES"
|
|
37564
|
+
}
|
|
37565
|
+
export declare type JiraSuggestedIssue = {
|
|
37566
|
+
__typename?: 'JiraSuggestedIssue';
|
|
37567
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
37568
|
+
issueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
37569
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
37570
|
+
};
|
|
37571
|
+
export declare enum JiraSuggestedIssueErrorType {
|
|
37572
|
+
NotEnoughInformation = "NOT_ENOUGH_INFORMATION",
|
|
37573
|
+
NoFurtherSuggestions = "NO_FURTHER_SUGGESTIONS",
|
|
37574
|
+
Unclassified = "UNCLASSIFIED"
|
|
37575
|
+
}
|
|
37208
37576
|
export declare type JiraSuggestedIssueFieldValue = Node & {
|
|
37209
37577
|
__typename?: 'JiraSuggestedIssueFieldValue';
|
|
37210
37578
|
from?: Maybe<JiraIssueField>;
|
|
@@ -37215,8 +37583,10 @@ export declare type JiraSuggestedIssueFieldValue = Node & {
|
|
|
37215
37583
|
};
|
|
37216
37584
|
export declare enum JiraSuggestedIssueFieldValueError {
|
|
37217
37585
|
HaveRequiredField = "HAVE_REQUIRED_FIELD",
|
|
37586
|
+
IsSubTask = "IS_SUB_TASK",
|
|
37218
37587
|
NotEnoughInformation = "NOT_ENOUGH_INFORMATION",
|
|
37219
37588
|
NoFurtherSuggestions = "NO_FURTHER_SUGGESTIONS",
|
|
37589
|
+
SuggestionIsNotEnabled = "SUGGESTION_IS_NOT_ENABLED",
|
|
37220
37590
|
Unclassified = "UNCLASSIFIED"
|
|
37221
37591
|
}
|
|
37222
37592
|
export declare type JiraSuggestedIssueFieldValuesResult = {
|
|
@@ -37224,6 +37594,10 @@ export declare type JiraSuggestedIssueFieldValuesResult = {
|
|
|
37224
37594
|
error?: Maybe<JiraSuggestedIssueFieldValueError>;
|
|
37225
37595
|
suggestedFieldValues?: Maybe<Array<JiraSuggestedIssueFieldValue>>;
|
|
37226
37596
|
};
|
|
37597
|
+
export declare type JiraSuggestedIssueInput = {
|
|
37598
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
37599
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
37600
|
+
};
|
|
37227
37601
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
37228
37602
|
__typename?: 'JiraSystemFilter';
|
|
37229
37603
|
filterId: Scalars['String']['output'];
|
|
@@ -38116,6 +38490,12 @@ export declare type JiraVersionConnection = {
|
|
|
38116
38490
|
pageInfo: PageInfo;
|
|
38117
38491
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38118
38492
|
};
|
|
38493
|
+
export declare type JiraVersionConnectionResult = JiraVersionConnection | QueryError;
|
|
38494
|
+
export declare type JiraVersionConnectionResultQueryErrorExtension = QueryErrorExtension & {
|
|
38495
|
+
__typename?: 'JiraVersionConnectionResultQueryErrorExtension';
|
|
38496
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
38497
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
38498
|
+
};
|
|
38119
38499
|
export declare type JiraVersionContributorConnection = {
|
|
38120
38500
|
__typename?: 'JiraVersionContributorConnection';
|
|
38121
38501
|
edges?: Maybe<Array<Maybe<JiraVersionContributorEdge>>>;
|
|
@@ -38887,6 +39267,7 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
38887
39267
|
label?: Maybe<Scalars['String']['output']>;
|
|
38888
39268
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
38889
39269
|
};
|
|
39270
|
+
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
38890
39271
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
38891
39272
|
__typename?: 'JiraWorkManagementSavedViewType';
|
|
38892
39273
|
id: Scalars['ID']['output'];
|
|
@@ -39031,6 +39412,60 @@ export declare type JswQuery = {
|
|
|
39031
39412
|
export declare type JswQueryBoardScopeArgs = {
|
|
39032
39413
|
boardId: Scalars['ID']['input'];
|
|
39033
39414
|
};
|
|
39415
|
+
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
39416
|
+
definition: Scalars['String']['input'];
|
|
39417
|
+
keyPhrase: Scalars['String']['input'];
|
|
39418
|
+
references?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
39419
|
+
workspaceId: Scalars['String']['input'];
|
|
39420
|
+
};
|
|
39421
|
+
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
39422
|
+
__typename?: 'KnowledgeDiscoveryCreateDefinitionPayload';
|
|
39423
|
+
definitionDetails?: Maybe<KnowledgeDiscoveryDefinition>;
|
|
39424
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39425
|
+
success: Scalars['Boolean']['output'];
|
|
39426
|
+
};
|
|
39427
|
+
export declare type KnowledgeDiscoveryDefinition = {
|
|
39428
|
+
__typename?: 'KnowledgeDiscoveryDefinition';
|
|
39429
|
+
accountId: Scalars['String']['output'];
|
|
39430
|
+
createdAt: Scalars['Int']['output'];
|
|
39431
|
+
definition: Scalars['String']['output'];
|
|
39432
|
+
keyPhrase: Scalars['String']['output'];
|
|
39433
|
+
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39434
|
+
};
|
|
39435
|
+
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
39436
|
+
export declare type KnowledgeDiscoveryMutationApi = {
|
|
39437
|
+
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
39438
|
+
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
39439
|
+
};
|
|
39440
|
+
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
39441
|
+
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
39442
|
+
};
|
|
39443
|
+
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39444
|
+
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39445
|
+
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
39446
|
+
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39447
|
+
};
|
|
39448
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
39449
|
+
keyPhrase: Scalars['String']['input'];
|
|
39450
|
+
workspaceId: Scalars['String']['input'];
|
|
39451
|
+
};
|
|
39452
|
+
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39453
|
+
locale: Scalars['String']['input'];
|
|
39454
|
+
query: Scalars['String']['input'];
|
|
39455
|
+
workspaceId: Scalars['String']['input'];
|
|
39456
|
+
};
|
|
39457
|
+
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
39458
|
+
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
39459
|
+
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
39460
|
+
None = "NONE",
|
|
39461
|
+
Person = "PERSON"
|
|
39462
|
+
}
|
|
39463
|
+
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
39464
|
+
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
39465
|
+
route: KnowledgeDiscoverySearchQueryClassification;
|
|
39466
|
+
transformedQuery: Scalars['String']['output'];
|
|
39467
|
+
};
|
|
39468
|
+
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
39034
39469
|
export declare type LabelUsage = {
|
|
39035
39470
|
__typename?: 'LabelUsage';
|
|
39036
39471
|
count: Scalars['Int']['output'];
|
|
@@ -39811,6 +40246,7 @@ export declare type Mutation = {
|
|
|
39811
40246
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
39812
40247
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
39813
40248
|
jsw?: Maybe<JswMutation>;
|
|
40249
|
+
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
39814
40250
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
39815
40251
|
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
39816
40252
|
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
@@ -39848,7 +40284,7 @@ export declare type Mutation = {
|
|
|
39848
40284
|
team?: Maybe<TeamMutation>;
|
|
39849
40285
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
39850
40286
|
townsquare?: Maybe<TownsquareMutationApi>;
|
|
39851
|
-
trello
|
|
40287
|
+
trello: TrelloMutationApi;
|
|
39852
40288
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
39853
40289
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
39854
40290
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
@@ -42394,6 +42830,8 @@ export declare type Query = {
|
|
|
42394
42830
|
activities?: Maybe<Activities>;
|
|
42395
42831
|
activity?: Maybe<Activity>;
|
|
42396
42832
|
admin?: Maybe<AdminQuery>;
|
|
42833
|
+
anchor?: Maybe<ContentPlatformAnchor>;
|
|
42834
|
+
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
42397
42835
|
app?: Maybe<App>;
|
|
42398
42836
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
42399
42837
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
@@ -42477,6 +42915,7 @@ export declare type Query = {
|
|
|
42477
42915
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
42478
42916
|
jiraReleases?: Maybe<JiraReleases>;
|
|
42479
42917
|
jsw?: Maybe<JswQuery>;
|
|
42918
|
+
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
42480
42919
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
42481
42920
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
42482
42921
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -42544,6 +42983,13 @@ export declare type Query = {
|
|
|
42544
42983
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
42545
42984
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
42546
42985
|
};
|
|
42986
|
+
export declare type QueryAnchorArgs = {
|
|
42987
|
+
id: Scalars['String']['input'];
|
|
42988
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42989
|
+
};
|
|
42990
|
+
export declare type QueryAnchorsArgs = {
|
|
42991
|
+
search: ContentPlatformSearchApIv2Query;
|
|
42992
|
+
};
|
|
42547
42993
|
export declare type QueryAppArgs = {
|
|
42548
42994
|
id: Scalars['ID']['input'];
|
|
42549
42995
|
};
|
|
@@ -44391,6 +44837,7 @@ export declare type SearchFilterInput = {
|
|
|
44391
44837
|
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
44392
44838
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
44393
44839
|
locations: Array<Scalars['String']['input']>;
|
|
44840
|
+
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
44394
44841
|
};
|
|
44395
44842
|
export declare enum SearchIssueStatusCategory {
|
|
44396
44843
|
Done = "DONE",
|
|
@@ -44608,6 +45055,19 @@ export declare enum SearchSortOrder {
|
|
|
44608
45055
|
Asc = "ASC",
|
|
44609
45056
|
Desc = "DESC"
|
|
44610
45057
|
}
|
|
45058
|
+
export declare type SearchThirdPartyFilter = {
|
|
45059
|
+
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
45060
|
+
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45061
|
+
};
|
|
45062
|
+
export declare enum SearchThirdPartyRangeField {
|
|
45063
|
+
Created = "CREATED",
|
|
45064
|
+
Lastmodified = "LASTMODIFIED"
|
|
45065
|
+
}
|
|
45066
|
+
export declare type SearchThirdPartyRangeFilter = {
|
|
45067
|
+
field: SearchThirdPartyRangeField;
|
|
45068
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
45069
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
45070
|
+
};
|
|
44611
45071
|
export declare type Security = {
|
|
44612
45072
|
__typename?: 'Security';
|
|
44613
45073
|
caiq?: Maybe<Caiq>;
|
|
@@ -44964,6 +45424,7 @@ export declare type ShepherdAlertSupportingData = {
|
|
|
44964
45424
|
__typename?: 'ShepherdAlertSupportingData';
|
|
44965
45425
|
customDetectionHighlight?: Maybe<ShepherdCustomDetectionHighlight>;
|
|
44966
45426
|
highlight: ShepherdHighlight;
|
|
45427
|
+
marketplaceAppHighlight?: Maybe<ShepherdMarketplaceAppHighlight>;
|
|
44967
45428
|
};
|
|
44968
45429
|
export declare enum ShepherdAlertTemplateType {
|
|
44969
45430
|
AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
|
|
@@ -45345,6 +45806,25 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
45345
45806
|
node?: Maybe<ShepherdDetectionSetting>;
|
|
45346
45807
|
success: Scalars['Boolean']['output'];
|
|
45347
45808
|
};
|
|
45809
|
+
export declare type ShepherdExclusionContentInfo = {
|
|
45810
|
+
__typename?: 'ShepherdExclusionContentInfo';
|
|
45811
|
+
classification?: Maybe<Scalars['String']['output']>;
|
|
45812
|
+
owner?: Maybe<Scalars['ID']['output']>;
|
|
45813
|
+
product?: Maybe<ShepherdAtlassianProduct>;
|
|
45814
|
+
site?: Maybe<ShepherdSite>;
|
|
45815
|
+
space?: Maybe<Scalars['String']['output']>;
|
|
45816
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
45817
|
+
};
|
|
45818
|
+
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
45819
|
+
export declare type ShepherdExclusionsQueries = {
|
|
45820
|
+
__typename?: 'ShepherdExclusionsQueries';
|
|
45821
|
+
contentInfoFromUrl?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
45822
|
+
};
|
|
45823
|
+
export declare type ShepherdExclusionsQueriesContentInfoFromUrlArgs = {
|
|
45824
|
+
contentUrl: Scalars['URL']['input'];
|
|
45825
|
+
productAti: Scalars['String']['input'];
|
|
45826
|
+
workspaceId: Scalars['ID']['input'];
|
|
45827
|
+
};
|
|
45348
45828
|
export declare type ShepherdExternalResource = JiraIssue;
|
|
45349
45829
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
45350
45830
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
@@ -45414,6 +45894,11 @@ export declare type ShepherdLoginLocation = {
|
|
|
45414
45894
|
regionIsoCode?: Maybe<Scalars['String']['output']>;
|
|
45415
45895
|
regionName?: Maybe<Scalars['String']['output']>;
|
|
45416
45896
|
};
|
|
45897
|
+
export declare type ShepherdMarketplaceAppHighlight = {
|
|
45898
|
+
__typename?: 'ShepherdMarketplaceAppHighlight';
|
|
45899
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
45900
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
45901
|
+
};
|
|
45417
45902
|
export declare type ShepherdMutation = {
|
|
45418
45903
|
__typename?: 'ShepherdMutation';
|
|
45419
45904
|
actor?: Maybe<ShepherdActorMutations>;
|
|
@@ -45422,6 +45907,7 @@ export declare type ShepherdMutation = {
|
|
|
45422
45907
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
45423
45908
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
45424
45909
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
45910
|
+
unlinkAlertResources?: Maybe<ShepherdUpdateAlertPayload>;
|
|
45425
45911
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
45426
45912
|
updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
|
|
45427
45913
|
workspace?: Maybe<ShepherdWorkspaceMutations>;
|
|
@@ -45438,6 +45924,10 @@ export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
|
45438
45924
|
export declare type ShepherdMutationDeleteAlertArgs = {
|
|
45439
45925
|
id: Scalars['ID']['input'];
|
|
45440
45926
|
};
|
|
45927
|
+
export declare type ShepherdMutationUnlinkAlertResourcesArgs = {
|
|
45928
|
+
id: Scalars['ID']['input'];
|
|
45929
|
+
input: ShepherdUnlinkAlertResourcesInput;
|
|
45930
|
+
};
|
|
45441
45931
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
45442
45932
|
id: Scalars['ID']['input'];
|
|
45443
45933
|
input: ShepherdUpdateAlertInput;
|
|
@@ -45456,6 +45946,7 @@ export declare type ShepherdQuery = {
|
|
|
45456
45946
|
__typename?: 'ShepherdQuery';
|
|
45457
45947
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
45458
45948
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
45949
|
+
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
45459
45950
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
45460
45951
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
45461
45952
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
@@ -45640,6 +46131,9 @@ export declare type ShepherdTimeInput = {
|
|
|
45640
46131
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
45641
46132
|
start: Scalars['DateTime']['input'];
|
|
45642
46133
|
};
|
|
46134
|
+
export declare type ShepherdUnlinkAlertResourcesInput = {
|
|
46135
|
+
unlinkResources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
46136
|
+
};
|
|
45643
46137
|
export declare type ShepherdUpdateAlertInput = {
|
|
45644
46138
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
45645
46139
|
linkedResources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -47488,12 +47982,6 @@ export declare type TransitionFilter = {
|
|
|
47488
47982
|
from: Scalars['String']['input'];
|
|
47489
47983
|
to: Scalars['String']['input'];
|
|
47490
47984
|
};
|
|
47491
|
-
export declare type TrelloAddHelloPayload = Payload & {
|
|
47492
|
-
__typename?: 'TrelloAddHelloPayload';
|
|
47493
|
-
errors?: Maybe<Array<MutationError>>;
|
|
47494
|
-
hello: Scalars['String']['output'];
|
|
47495
|
-
success: Scalars['Boolean']['output'];
|
|
47496
|
-
};
|
|
47497
47985
|
export declare type TrelloAddMemberInput = {
|
|
47498
47986
|
cardId: Scalars['ID']['input'];
|
|
47499
47987
|
userId: Scalars['ID']['input'];
|
|
@@ -47774,6 +48262,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
47774
48262
|
__typename?: 'TrelloBoardUpdated';
|
|
47775
48263
|
_deltas?: Maybe<TrelloBoardUpdatedDeltas>;
|
|
47776
48264
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
48265
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
47777
48266
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
47778
48267
|
name?: Maybe<Scalars['String']['output']>;
|
|
47779
48268
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -48140,9 +48629,6 @@ export declare type TrelloEnterprise = {
|
|
|
48140
48629
|
id: Scalars['ID']['output'];
|
|
48141
48630
|
objectId: Scalars['ID']['output'];
|
|
48142
48631
|
};
|
|
48143
|
-
export declare type TrelloHelloInput = {
|
|
48144
|
-
hello: Scalars['String']['input'];
|
|
48145
|
-
};
|
|
48146
48632
|
export declare type TrelloImagePreview = {
|
|
48147
48633
|
__typename?: 'TrelloImagePreview';
|
|
48148
48634
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
@@ -48337,7 +48823,6 @@ export declare type TrelloMemberWorkspaceFilter = {
|
|
|
48337
48823
|
};
|
|
48338
48824
|
export declare type TrelloMutationApi = {
|
|
48339
48825
|
__typename?: 'TrelloMutationApi';
|
|
48340
|
-
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
48341
48826
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
48342
48827
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
48343
48828
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -48349,9 +48834,6 @@ export declare type TrelloMutationApi = {
|
|
|
48349
48834
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
48350
48835
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
48351
48836
|
};
|
|
48352
|
-
export declare type TrelloMutationApiAddHelloArgs = {
|
|
48353
|
-
input: TrelloHelloInput;
|
|
48354
|
-
};
|
|
48355
48837
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
48356
48838
|
input: TrelloAddMemberInput;
|
|
48357
48839
|
};
|
|
@@ -49342,10 +49824,12 @@ export declare type VirtualAgentChannelConfig = {
|
|
|
49342
49824
|
export declare type VirtualAgentConfiguration = Node & {
|
|
49343
49825
|
__typename?: 'VirtualAgentConfiguration';
|
|
49344
49826
|
conversations?: Maybe<VirtualAgentConversationsConnection>;
|
|
49827
|
+
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
49345
49828
|
flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
|
|
49346
49829
|
id: Scalars['ID']['output'];
|
|
49347
49830
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
49348
49831
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
49832
|
+
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49349
49833
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
49350
49834
|
properties?: Maybe<VirtualAgentProperties>;
|
|
49351
49835
|
respondToQueries: Scalars['Boolean']['output'];
|
|
@@ -49688,16 +50172,14 @@ export declare type VirtualAgentProperties = {
|
|
|
49688
50172
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
49689
50173
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49690
50174
|
};
|
|
49691
|
-
export declare type VirtualAgentPropertiesInput = {
|
|
49692
|
-
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
49693
|
-
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49694
|
-
};
|
|
50175
|
+
export declare type VirtualAgentPropertiesInput = {};
|
|
49695
50176
|
export declare type VirtualAgentQueryApi = {
|
|
49696
50177
|
__typename?: 'VirtualAgentQueryApi';
|
|
49697
50178
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
49698
50179
|
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
49699
50180
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
49700
50181
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
50182
|
+
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
49701
50183
|
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
49702
50184
|
};
|
|
49703
50185
|
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
@@ -49717,6 +50199,9 @@ export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
|
49717
50199
|
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
49718
50200
|
jiraProjectId: Scalars['ID']['input'];
|
|
49719
50201
|
};
|
|
50202
|
+
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
50203
|
+
cloudId: Scalars['ID']['input'];
|
|
50204
|
+
};
|
|
49720
50205
|
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
49721
50206
|
cloudId: Scalars['ID']['input'];
|
|
49722
50207
|
};
|
|
@@ -49767,7 +50252,8 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
|
49767
50252
|
success: Scalars['Boolean']['output'];
|
|
49768
50253
|
};
|
|
49769
50254
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
49770
|
-
|
|
50255
|
+
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
50256
|
+
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49771
50257
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49772
50258
|
};
|
|
49773
50259
|
export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
|