@forge/cli-shared 7.0.0-next.2 → 7.0.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.
|
@@ -4873,6 +4873,55 @@ export declare type CloudAppScope = {
|
|
|
4873
4873
|
id: Scalars['ID']['output'];
|
|
4874
4874
|
name: Scalars['String']['output'];
|
|
4875
4875
|
};
|
|
4876
|
+
export declare type CmdbObject = {
|
|
4877
|
+
__typename?: 'CmdbObject';
|
|
4878
|
+
attributes?: Maybe<CmdbObjectAttributeConnection>;
|
|
4879
|
+
id: Scalars['ID']['output'];
|
|
4880
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4881
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
4882
|
+
objectTypeId: Scalars['ID']['output'];
|
|
4883
|
+
objectTypeName?: Maybe<Scalars['String']['output']>;
|
|
4884
|
+
};
|
|
4885
|
+
export declare type CmdbObjectAttributesArgs = {
|
|
4886
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4888
|
+
};
|
|
4889
|
+
export declare type CmdbObjectAttribute = {
|
|
4890
|
+
__typename?: 'CmdbObjectAttribute';
|
|
4891
|
+
objectAttributeValues?: Maybe<CmdbObjectAttributeValueConnection>;
|
|
4892
|
+
objectTypeAttributeId: Scalars['ID']['output'];
|
|
4893
|
+
objectTypeAttributeName?: Maybe<Scalars['String']['output']>;
|
|
4894
|
+
};
|
|
4895
|
+
export declare type CmdbObjectAttributeObjectAttributeValuesArgs = {
|
|
4896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4898
|
+
};
|
|
4899
|
+
export declare type CmdbObjectAttributeConnection = {
|
|
4900
|
+
__typename?: 'CmdbObjectAttributeConnection';
|
|
4901
|
+
edges?: Maybe<Array<Maybe<CmdbObjectAttributeEdge>>>;
|
|
4902
|
+
nodes?: Maybe<Array<Maybe<CmdbObjectAttribute>>>;
|
|
4903
|
+
pageInfo: PageInfo;
|
|
4904
|
+
};
|
|
4905
|
+
export declare type CmdbObjectAttributeEdge = {
|
|
4906
|
+
__typename?: 'CmdbObjectAttributeEdge';
|
|
4907
|
+
cursor: Scalars['String']['output'];
|
|
4908
|
+
node?: Maybe<CmdbObjectAttribute>;
|
|
4909
|
+
};
|
|
4910
|
+
export declare type CmdbObjectAttributeValue = {
|
|
4911
|
+
__typename?: 'CmdbObjectAttributeValue';
|
|
4912
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
4913
|
+
};
|
|
4914
|
+
export declare type CmdbObjectAttributeValueConnection = {
|
|
4915
|
+
__typename?: 'CmdbObjectAttributeValueConnection';
|
|
4916
|
+
edges?: Maybe<Array<Maybe<CmdbObjectAttributeValueEdge>>>;
|
|
4917
|
+
nodes?: Maybe<Array<Maybe<CmdbObjectAttributeValue>>>;
|
|
4918
|
+
pageInfo: PageInfo;
|
|
4919
|
+
};
|
|
4920
|
+
export declare type CmdbObjectAttributeValueEdge = {
|
|
4921
|
+
__typename?: 'CmdbObjectAttributeValueEdge';
|
|
4922
|
+
cursor: Scalars['String']['output'];
|
|
4923
|
+
node?: Maybe<CmdbObjectAttributeValue>;
|
|
4924
|
+
};
|
|
4876
4925
|
export declare type CodeInJira = {
|
|
4877
4926
|
__typename?: 'CodeInJira';
|
|
4878
4927
|
siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
|
|
@@ -5523,6 +5572,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5523
5572
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
5524
5573
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
5525
5574
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
5575
|
+
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
5526
5576
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
5527
5577
|
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
5528
5578
|
createCriterionExemption?: Maybe<CompassCreateCriterionExemptionPayload>;
|
|
@@ -5581,6 +5631,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5581
5631
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
5582
5632
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
5583
5633
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
5634
|
+
updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
|
|
5584
5635
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
5585
5636
|
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
5586
5637
|
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
@@ -5654,6 +5705,10 @@ export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
|
5654
5705
|
export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
|
|
5655
5706
|
input: CompassCreateComponentScorecardJiraIssueInput;
|
|
5656
5707
|
};
|
|
5708
|
+
export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
|
|
5709
|
+
cloudId: Scalars['ID']['input'];
|
|
5710
|
+
input: CompassCreateComponentScorecardWorkItemInput;
|
|
5711
|
+
};
|
|
5657
5712
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
5658
5713
|
input: CompassCreateComponentSubscriptionInput;
|
|
5659
5714
|
};
|
|
@@ -5838,6 +5893,10 @@ export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
|
5838
5893
|
export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
5839
5894
|
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
5840
5895
|
};
|
|
5896
|
+
export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
|
|
5897
|
+
cloudId: Scalars['ID']['input'];
|
|
5898
|
+
input: CompassUpdateComponentScorecardWorkItemInput;
|
|
5899
|
+
};
|
|
5841
5900
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
5842
5901
|
input: UpdateCompassComponentTypeInput;
|
|
5843
5902
|
};
|
|
@@ -6347,6 +6406,7 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
|
6347
6406
|
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
6348
6407
|
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
6349
6408
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6409
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6350
6410
|
cursor: Scalars['String']['output'];
|
|
6351
6411
|
node?: Maybe<CompassScorecard>;
|
|
6352
6412
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
@@ -6354,6 +6414,9 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
|
6354
6414
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
6355
6415
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6356
6416
|
};
|
|
6417
|
+
export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
|
|
6418
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6419
|
+
};
|
|
6357
6420
|
export declare type CompassComponentInstancePermissions = {
|
|
6358
6421
|
__typename?: 'CompassComponentInstancePermissions';
|
|
6359
6422
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
@@ -6441,6 +6504,7 @@ export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComp
|
|
|
6441
6504
|
export declare type CompassComponentScorecardRelationship = {
|
|
6442
6505
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
6443
6506
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6507
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6444
6508
|
appliedSince: Scalars['DateTime']['output'];
|
|
6445
6509
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
6446
6510
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
@@ -6450,6 +6514,9 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
6450
6514
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
6451
6515
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6452
6516
|
};
|
|
6517
|
+
export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
|
|
6518
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6519
|
+
};
|
|
6453
6520
|
export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesArgs = {
|
|
6454
6521
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6455
6522
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6463,12 +6530,30 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
6463
6530
|
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
6464
6531
|
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
6465
6532
|
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6533
|
+
createWorkItemForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6466
6534
|
removeScorecard?: Maybe<CompassPermissionResult>;
|
|
6467
6535
|
};
|
|
6468
6536
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
6469
6537
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
6470
6538
|
scorecardId: Scalars['ID']['input'];
|
|
6471
6539
|
};
|
|
6540
|
+
export declare type CompassComponentScorecardWorkItemConnection = {
|
|
6541
|
+
__typename?: 'CompassComponentScorecardWorkItemConnection';
|
|
6542
|
+
edges?: Maybe<Array<Maybe<CompassComponentScorecardWorkItemEdge>>>;
|
|
6543
|
+
nodes?: Maybe<Array<Maybe<CompassWorkItem>>>;
|
|
6544
|
+
pageInfo: PageInfo;
|
|
6545
|
+
};
|
|
6546
|
+
export declare type CompassComponentScorecardWorkItemEdge = CompassWorkItemEdge & {
|
|
6547
|
+
__typename?: 'CompassComponentScorecardWorkItemEdge';
|
|
6548
|
+
cursor: Scalars['String']['output'];
|
|
6549
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
6550
|
+
node?: Maybe<CompassWorkItem>;
|
|
6551
|
+
};
|
|
6552
|
+
export declare type CompassComponentScorecardWorkItemsQuery = {
|
|
6553
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6554
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6555
|
+
};
|
|
6556
|
+
export declare type CompassComponentScorecardWorkItemsQueryResult = CompassComponentScorecardWorkItemConnection | QueryError;
|
|
6472
6557
|
export declare type CompassComponentSpec = {
|
|
6473
6558
|
__typename?: 'CompassComponentSpec';
|
|
6474
6559
|
api?: Maybe<CompassComponentApi>;
|
|
@@ -6631,6 +6716,17 @@ export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload &
|
|
|
6631
6716
|
errors?: Maybe<Array<MutationError>>;
|
|
6632
6717
|
success: Scalars['Boolean']['output'];
|
|
6633
6718
|
};
|
|
6719
|
+
export declare type CompassCreateComponentScorecardWorkItemInput = {
|
|
6720
|
+
componentId: Scalars['ID']['input'];
|
|
6721
|
+
scorecardId: Scalars['ID']['input'];
|
|
6722
|
+
url: Scalars['URL']['input'];
|
|
6723
|
+
workItemId: Scalars['ID']['input'];
|
|
6724
|
+
};
|
|
6725
|
+
export declare type CompassCreateComponentScorecardWorkItemPayload = Payload & {
|
|
6726
|
+
__typename?: 'CompassCreateComponentScorecardWorkItemPayload';
|
|
6727
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6728
|
+
success: Scalars['Boolean']['output'];
|
|
6729
|
+
};
|
|
6634
6730
|
export declare type CompassCreateComponentSubscriptionInput = {
|
|
6635
6731
|
componentId: Scalars['ID']['input'];
|
|
6636
6732
|
};
|
|
@@ -7440,6 +7536,7 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
|
7440
7536
|
export declare type CompassDeactivatedScorecard = {
|
|
7441
7537
|
__typename?: 'CompassDeactivatedScorecard';
|
|
7442
7538
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
7539
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
7443
7540
|
applicationModel: CompassScorecardApplicationModel;
|
|
7444
7541
|
description?: Maybe<Scalars['String']['output']>;
|
|
7445
7542
|
id: Scalars['ID']['output'];
|
|
@@ -7451,6 +7548,9 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
7451
7548
|
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
7452
7549
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
7453
7550
|
};
|
|
7551
|
+
export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
|
|
7552
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
7553
|
+
};
|
|
7454
7554
|
export declare type CompassDeactivatedScorecardsConnection = {
|
|
7455
7555
|
__typename?: 'CompassDeactivatedScorecardsConnection';
|
|
7456
7556
|
edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
|
|
@@ -8846,6 +8946,7 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
|
8846
8946
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
8847
8947
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
8848
8948
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
8949
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
8849
8950
|
cursor: Scalars['String']['output'];
|
|
8850
8951
|
node?: Maybe<CompassComponent>;
|
|
8851
8952
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
@@ -8853,6 +8954,9 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
8853
8954
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
8854
8955
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
8855
8956
|
};
|
|
8957
|
+
export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
|
|
8958
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
8959
|
+
};
|
|
8856
8960
|
export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
8857
8961
|
definition: Scalars['ID']['input'];
|
|
8858
8962
|
in: Array<CompassFieldValueInput>;
|
|
@@ -9191,6 +9295,7 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
9191
9295
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
9192
9296
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
9193
9297
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
9298
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
9194
9299
|
cursor: Scalars['String']['output'];
|
|
9195
9300
|
deactivatedBy?: Maybe<User>;
|
|
9196
9301
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9200,6 +9305,9 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
|
9200
9305
|
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
9201
9306
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
9202
9307
|
};
|
|
9308
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
|
|
9309
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
9310
|
+
};
|
|
9203
9311
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
9204
9312
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
9205
9313
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -9459,6 +9567,7 @@ export declare type CompassSearchPackagesEdge = {
|
|
|
9459
9567
|
node?: Maybe<CompassPackage>;
|
|
9460
9568
|
};
|
|
9461
9569
|
export declare type CompassSearchPackagesQuery = {
|
|
9570
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9462
9571
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
9463
9572
|
};
|
|
9464
9573
|
export declare type CompassSearchTeamLabelsConnection = {
|
|
@@ -9677,6 +9786,17 @@ export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload &
|
|
|
9677
9786
|
errors?: Maybe<Array<MutationError>>;
|
|
9678
9787
|
success: Scalars['Boolean']['output'];
|
|
9679
9788
|
};
|
|
9789
|
+
export declare type CompassUpdateComponentScorecardWorkItemInput = {
|
|
9790
|
+
componentId: Scalars['ID']['input'];
|
|
9791
|
+
isActive: Scalars['Boolean']['input'];
|
|
9792
|
+
scorecardId: Scalars['ID']['input'];
|
|
9793
|
+
workItemId: Scalars['ID']['input'];
|
|
9794
|
+
};
|
|
9795
|
+
export declare type CompassUpdateComponentScorecardWorkItemPayload = Payload & {
|
|
9796
|
+
__typename?: 'CompassUpdateComponentScorecardWorkItemPayload';
|
|
9797
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9798
|
+
success: Scalars['Boolean']['output'];
|
|
9799
|
+
};
|
|
9680
9800
|
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
9681
9801
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9682
9802
|
componentTypes?: InputMaybe<Array<CompassComponentType>>;
|
|
@@ -10042,6 +10162,18 @@ export declare type CompassWebhook = {
|
|
|
10042
10162
|
id: Scalars['ID']['output'];
|
|
10043
10163
|
url: Scalars['String']['output'];
|
|
10044
10164
|
};
|
|
10165
|
+
export declare type CompassWorkItem = {
|
|
10166
|
+
__typename?: 'CompassWorkItem';
|
|
10167
|
+
changeMetadata: CompassChangeMetadata;
|
|
10168
|
+
id: Scalars['ID']['output'];
|
|
10169
|
+
url: Scalars['URL']['output'];
|
|
10170
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
10171
|
+
};
|
|
10172
|
+
export declare type CompassWorkItemEdge = {
|
|
10173
|
+
cursor: Scalars['String']['output'];
|
|
10174
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
10175
|
+
node?: Maybe<CompassWorkItem>;
|
|
10176
|
+
};
|
|
10045
10177
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
10046
10178
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
10047
10179
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
@@ -19986,6 +20118,35 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
19986
20118
|
isValid: Scalars['Boolean']['output'];
|
|
19987
20119
|
message?: Maybe<Scalars['String']['output']>;
|
|
19988
20120
|
};
|
|
20121
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
20122
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
20123
|
+
id: Scalars['ID']['output'];
|
|
20124
|
+
similarityScore: Scalars['Float']['output'];
|
|
20125
|
+
workItem?: Maybe<JiraIssue>;
|
|
20126
|
+
};
|
|
20127
|
+
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
20128
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
20129
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
20130
|
+
errors?: Maybe<Array<QueryError>>;
|
|
20131
|
+
pageInfo: PageInfo;
|
|
20132
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20133
|
+
};
|
|
20134
|
+
export declare type ConvoAiJiraSimilarWorkItemsEdge = {
|
|
20135
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsEdge';
|
|
20136
|
+
cursor: Scalars['String']['output'];
|
|
20137
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
20138
|
+
};
|
|
20139
|
+
export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
20140
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
20141
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20142
|
+
projectId: Scalars['String']['input'];
|
|
20143
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
20144
|
+
summary: Scalars['String']['input'];
|
|
20145
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
20146
|
+
};
|
|
20147
|
+
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
20148
|
+
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
20149
|
+
};
|
|
19989
20150
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
19990
20151
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
19991
20152
|
project: Scalars['ID']['input'];
|
|
@@ -22064,6 +22225,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
22064
22225
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
22065
22226
|
helpCenterId: Scalars['ID']['output'];
|
|
22066
22227
|
id: Scalars['ID']['output'];
|
|
22228
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
22067
22229
|
name?: Maybe<Scalars['String']['output']>;
|
|
22068
22230
|
};
|
|
22069
22231
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
@@ -37788,7 +37950,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
37788
37950
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
37789
37951
|
id: Scalars['ID']['output'];
|
|
37790
37952
|
};
|
|
37791
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37953
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
37792
37954
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37793
37955
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
37794
37956
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -38899,10 +39061,14 @@ export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload &
|
|
|
38899
39061
|
};
|
|
38900
39062
|
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
|
|
38901
39063
|
from: Scalars['ID']['input'];
|
|
39064
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput>;
|
|
38902
39065
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
38903
39066
|
to: Scalars['ID']['input'];
|
|
38904
39067
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38905
39068
|
};
|
|
39069
|
+
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput = {
|
|
39070
|
+
createdFromAutocreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39071
|
+
};
|
|
38906
39072
|
export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
38907
39073
|
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
38908
39074
|
};
|
|
@@ -39061,7 +39227,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
39061
39227
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
39062
39228
|
key: Scalars['String']['output'];
|
|
39063
39229
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
39064
|
-
valueUnion
|
|
39230
|
+
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
39065
39231
|
};
|
|
39066
39232
|
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
39067
39233
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
@@ -39093,7 +39259,7 @@ export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
|
39093
39259
|
export declare type GraphStoreCypherQueryV2Column = {
|
|
39094
39260
|
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
39095
39261
|
key: Scalars['String']['output'];
|
|
39096
|
-
value
|
|
39262
|
+
value?: Maybe<GraphStoreCypherQueryV2ResultRowItemValueUnion>;
|
|
39097
39263
|
};
|
|
39098
39264
|
export declare type GraphStoreCypherQueryV2Connection = {
|
|
39099
39265
|
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
@@ -39823,7 +39989,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
39823
39989
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
39824
39990
|
id: Scalars['ID']['output'];
|
|
39825
39991
|
};
|
|
39826
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
39992
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
39827
39993
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
39828
39994
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
39829
39995
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -45357,7 +45523,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
45357
45523
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45358
45524
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
45359
45525
|
};
|
|
45360
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45526
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45361
45527
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45362
45528
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
45363
45529
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -52327,6 +52493,7 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
52327
52493
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
52328
52494
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
52329
52495
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52496
|
+
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
52330
52497
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
52331
52498
|
};
|
|
52332
52499
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
@@ -58287,6 +58454,13 @@ export declare type JiraCmdbStatusType = {
|
|
|
58287
58454
|
name?: Maybe<Scalars['String']['output']>;
|
|
58288
58455
|
objectSchemaId?: Maybe<Scalars['String']['output']>;
|
|
58289
58456
|
};
|
|
58457
|
+
export declare enum JiraCollapsibleSection {
|
|
58458
|
+
Activity = "ACTIVITY",
|
|
58459
|
+
Attachments = "ATTACHMENTS",
|
|
58460
|
+
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
58461
|
+
Description = "DESCRIPTION",
|
|
58462
|
+
LinkedWorkItem = "LINKED_WORK_ITEM"
|
|
58463
|
+
}
|
|
58290
58464
|
export declare type JiraColor = {
|
|
58291
58465
|
__typename?: 'JiraColor';
|
|
58292
58466
|
colorKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -58398,6 +58572,9 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
58398
58572
|
name: Scalars['String']['output'];
|
|
58399
58573
|
type: Scalars['String']['output'];
|
|
58400
58574
|
};
|
|
58575
|
+
export declare enum JiraCommentThirdPartySource {
|
|
58576
|
+
Slack = "SLACK"
|
|
58577
|
+
}
|
|
58401
58578
|
export declare type JiraComponent = Node & {
|
|
58402
58579
|
__typename?: 'JiraComponent';
|
|
58403
58580
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -59203,6 +59380,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
59203
59380
|
node?: Maybe<JiraCustomBackground>;
|
|
59204
59381
|
};
|
|
59205
59382
|
export declare type JiraCustomFieldOptionInput = {
|
|
59383
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
59206
59384
|
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
59207
59385
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
59208
59386
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59552,6 +59730,16 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
59552
59730
|
errors?: Maybe<Array<MutationError>>;
|
|
59553
59731
|
success: Scalars['Boolean']['output'];
|
|
59554
59732
|
};
|
|
59733
|
+
export declare type JiraDeleteGlobalCustomFieldsInput = {
|
|
59734
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
59735
|
+
};
|
|
59736
|
+
export declare type JiraDeleteGlobalCustomFieldsPayload = Payload & {
|
|
59737
|
+
__typename?: 'JiraDeleteGlobalCustomFieldsPayload';
|
|
59738
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59739
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
59740
|
+
success: Scalars['Boolean']['output'];
|
|
59741
|
+
tasks?: Maybe<Array<JiraFieldLongRunningTask>>;
|
|
59742
|
+
};
|
|
59555
59743
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
59556
59744
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
59557
59745
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -60381,6 +60569,12 @@ export declare type JiraFieldKeyValueInput = {
|
|
|
60381
60569
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60382
60570
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
60383
60571
|
};
|
|
60572
|
+
export declare type JiraFieldLongRunningTask = {
|
|
60573
|
+
__typename?: 'JiraFieldLongRunningTask';
|
|
60574
|
+
fieldConfigId?: Maybe<Scalars['ID']['output']>;
|
|
60575
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60576
|
+
task?: Maybe<JiraLongRunningTaskProgress>;
|
|
60577
|
+
};
|
|
60384
60578
|
export declare type JiraFieldNonEditableReason = {
|
|
60385
60579
|
__typename?: 'JiraFieldNonEditableReason';
|
|
60386
60580
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -60395,6 +60589,7 @@ export declare type JiraFieldOperation = {
|
|
|
60395
60589
|
};
|
|
60396
60590
|
export declare type JiraFieldOption = {
|
|
60397
60591
|
__typename?: 'JiraFieldOption';
|
|
60592
|
+
color?: Maybe<JiraColor>;
|
|
60398
60593
|
optionId?: Maybe<Scalars['Long']['output']>;
|
|
60399
60594
|
parentOptionId?: Maybe<Scalars['Long']['output']>;
|
|
60400
60595
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -62894,6 +63089,10 @@ export declare type JiraIssueSearchViewInput = {
|
|
|
62894
63089
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
62895
63090
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62896
63091
|
};
|
|
63092
|
+
export declare enum JiraIssueSearchViewLayout {
|
|
63093
|
+
Detail = "DETAIL",
|
|
63094
|
+
List = "LIST"
|
|
63095
|
+
}
|
|
62897
63096
|
export declare type JiraIssueSearchViewMetadata = {
|
|
62898
63097
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62899
63098
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63129,6 +63328,15 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
|
63129
63328
|
ListView = "LIST_VIEW",
|
|
63130
63329
|
StripView = "STRIP_VIEW"
|
|
63131
63330
|
}
|
|
63331
|
+
export declare type JiraIssueViewCollapsibleSection = {
|
|
63332
|
+
__typename?: 'JiraIssueViewCollapsibleSection';
|
|
63333
|
+
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
63334
|
+
section?: Maybe<JiraCollapsibleSection>;
|
|
63335
|
+
};
|
|
63336
|
+
export declare type JiraIssueViewCollapsibleSections = {
|
|
63337
|
+
__typename?: 'JiraIssueViewCollapsibleSections';
|
|
63338
|
+
sections?: Maybe<Array<Maybe<JiraIssueViewCollapsibleSection>>>;
|
|
63339
|
+
};
|
|
63132
63340
|
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
63133
63341
|
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
63134
63342
|
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -63241,6 +63449,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
63241
63449
|
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
63242
63450
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
63243
63451
|
updatedBy?: Maybe<User>;
|
|
63452
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63244
63453
|
version?: Maybe<Scalars['Long']['output']>;
|
|
63245
63454
|
};
|
|
63246
63455
|
export declare type JiraJourneyConfigurationConnection = {
|
|
@@ -63259,6 +63468,7 @@ export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyW
|
|
|
63259
63468
|
export declare type JiraJourneyItemCommon = {
|
|
63260
63469
|
id: Scalars['ID']['output'];
|
|
63261
63470
|
name?: Maybe<Scalars['String']['output']>;
|
|
63471
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63262
63472
|
};
|
|
63263
63473
|
export declare type JiraJourneyItemConfigurationInput = {
|
|
63264
63474
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
@@ -63267,6 +63477,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
63267
63477
|
export declare type JiraJourneyParentIssue = {
|
|
63268
63478
|
__typename?: 'JiraJourneyParentIssue';
|
|
63269
63479
|
project?: Maybe<JiraProject>;
|
|
63480
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63270
63481
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
63271
63482
|
};
|
|
63272
63483
|
export declare type JiraJourneyParentIssueInput = {
|
|
@@ -63308,6 +63519,7 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
63308
63519
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
63309
63520
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
63310
63521
|
statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
|
|
63522
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63311
63523
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
63312
63524
|
workItems?: Maybe<Array<JiraJourneyWorkItem>>;
|
|
63313
63525
|
};
|
|
@@ -63345,6 +63557,10 @@ export declare enum JiraJourneyTriggerType {
|
|
|
63345
63557
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
63346
63558
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
63347
63559
|
}
|
|
63560
|
+
export declare type JiraJourneyValidationError = {
|
|
63561
|
+
__typename?: 'JiraJourneyValidationError';
|
|
63562
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
63563
|
+
};
|
|
63348
63564
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
63349
63565
|
__typename?: 'JiraJourneyWorkItem';
|
|
63350
63566
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
@@ -63354,6 +63570,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
63354
63570
|
name?: Maybe<Scalars['String']['output']>;
|
|
63355
63571
|
project?: Maybe<JiraProject>;
|
|
63356
63572
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
63573
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63357
63574
|
};
|
|
63358
63575
|
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
63359
63576
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
@@ -64153,6 +64370,7 @@ export declare type JiraLongRunningTaskProgress = {
|
|
|
64153
64370
|
result?: Maybe<Scalars['String']['output']>;
|
|
64154
64371
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
64155
64372
|
status: JiraLongRunningTaskStatus;
|
|
64373
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
64156
64374
|
};
|
|
64157
64375
|
export declare enum JiraLongRunningTaskStatus {
|
|
64158
64376
|
Cancelled = "CANCELLED",
|
|
@@ -66375,10 +66593,13 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
66375
66593
|
created: Scalars['DateTime']['output'];
|
|
66376
66594
|
id: Scalars['ID']['output'];
|
|
66377
66595
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66596
|
+
isThirdPartySyncOn?: Maybe<Scalars['Boolean']['output']>;
|
|
66378
66597
|
issue?: Maybe<JiraIssue>;
|
|
66379
66598
|
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66380
66599
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66381
66600
|
richText?: Maybe<JiraRichText>;
|
|
66601
|
+
thirdPartyCommentSource?: Maybe<JiraCommentThirdPartySource>;
|
|
66602
|
+
thirdPartyLink?: Maybe<Scalars['URL']['output']>;
|
|
66382
66603
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
66383
66604
|
updateAuthor?: Maybe<User>;
|
|
66384
66605
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67416,6 +67637,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
67416
67637
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
67417
67638
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67418
67639
|
mostRecent?: Maybe<JiraProject>;
|
|
67640
|
+
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
67419
67641
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
67420
67642
|
recents?: Maybe<JiraProjectConnection>;
|
|
67421
67643
|
};
|
|
@@ -70922,6 +71144,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
70922
71144
|
errors?: Maybe<Array<MutationError>>;
|
|
70923
71145
|
success: Scalars['Boolean']['output'];
|
|
70924
71146
|
};
|
|
71147
|
+
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
71148
|
+
viewId: Scalars['ID']['input'];
|
|
71149
|
+
viewLayout: JiraIssueSearchViewLayout;
|
|
71150
|
+
};
|
|
71151
|
+
export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
|
|
71152
|
+
__typename?: 'JiraSetIssueSearchViewLayoutPayload';
|
|
71153
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71154
|
+
success: Scalars['Boolean']['output'];
|
|
71155
|
+
};
|
|
70925
71156
|
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
70926
71157
|
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
70927
71158
|
board?: Maybe<JiraBoard>;
|
|
@@ -72862,6 +73093,7 @@ export declare type JiraUserPreferences = {
|
|
|
72862
73093
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
72863
73094
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
72864
73095
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
73096
|
+
issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
|
|
72865
73097
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
72866
73098
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
72867
73099
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -72880,6 +73112,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
72880
73112
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72881
73113
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72882
73114
|
};
|
|
73115
|
+
export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
|
|
73116
|
+
projectKey: Scalars['String']['input'];
|
|
73117
|
+
};
|
|
72883
73118
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
72884
73119
|
projectKey: Scalars['String']['input'];
|
|
72885
73120
|
};
|
|
@@ -75492,6 +75727,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
75492
75727
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
75493
75728
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
75494
75729
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
75730
|
+
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
75495
75731
|
};
|
|
75496
75732
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
75497
75733
|
cloudId: Scalars['ID']['input'];
|
|
@@ -75591,6 +75827,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
75591
75827
|
id: Scalars['String']['input'];
|
|
75592
75828
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
75593
75829
|
};
|
|
75830
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
75831
|
+
cloudId: Scalars['String']['input'];
|
|
75832
|
+
};
|
|
75594
75833
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
75595
75834
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
75596
75835
|
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
@@ -75727,6 +75966,11 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
75727
75966
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
75728
75967
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
75729
75968
|
};
|
|
75969
|
+
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
75970
|
+
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
75971
|
+
zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
75972
|
+
};
|
|
75973
|
+
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
75730
75974
|
export declare enum KnowledgeGraphContentType {
|
|
75731
75975
|
Blogpost = "BLOGPOST",
|
|
75732
75976
|
Page = "PAGE"
|
|
@@ -76698,8 +76942,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
76698
76942
|
appKey: Scalars['ID']['output'];
|
|
76699
76943
|
appSoftwareId: Scalars['ID']['output'];
|
|
76700
76944
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
76945
|
+
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76701
76946
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76702
|
-
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76703
76947
|
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76704
76948
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76705
76949
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -77435,6 +77679,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77435
77679
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77436
77680
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77437
77681
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77682
|
+
hasPartnerAdminRole: Scalars['Boolean']['output'];
|
|
77438
77683
|
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77439
77684
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77440
77685
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
@@ -81814,6 +82059,7 @@ export declare type Mutation = {
|
|
|
81814
82059
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
81815
82060
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
81816
82061
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82062
|
+
jira_deleteGlobalCustomFields?: Maybe<JiraDeleteGlobalCustomFieldsPayload>;
|
|
81817
82063
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
81818
82064
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
81819
82065
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -81831,6 +82077,7 @@ export declare type Mutation = {
|
|
|
81831
82077
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
81832
82078
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
81833
82079
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
82080
|
+
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
81834
82081
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
81835
82082
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81836
82083
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
@@ -83268,6 +83515,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83268
83515
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
83269
83516
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
83270
83517
|
};
|
|
83518
|
+
export declare type MutationJira_DeleteGlobalCustomFieldsArgs = {
|
|
83519
|
+
cloudId: Scalars['ID']['input'];
|
|
83520
|
+
input: JiraDeleteGlobalCustomFieldsInput;
|
|
83521
|
+
};
|
|
83271
83522
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
83272
83523
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
83273
83524
|
};
|
|
@@ -83320,6 +83571,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
83320
83571
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
83321
83572
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
83322
83573
|
};
|
|
83574
|
+
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
83575
|
+
input: JiraSetIssueSearchViewLayoutInput;
|
|
83576
|
+
};
|
|
83323
83577
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
83324
83578
|
input: JiraSetViewFilterInput;
|
|
83325
83579
|
};
|
|
@@ -86770,6 +87024,7 @@ export declare type Query = {
|
|
|
86770
87024
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
86771
87025
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
86772
87026
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
87027
|
+
cmdb_getCmdbObjectsByIds?: Maybe<Array<Maybe<CmdbObject>>>;
|
|
86773
87028
|
codeInJira?: Maybe<CodeInJira>;
|
|
86774
87029
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
86775
87030
|
collabDraft?: Maybe<CollabDraft>;
|
|
@@ -87035,6 +87290,7 @@ export declare type Query = {
|
|
|
87035
87290
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
87036
87291
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
87037
87292
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
87293
|
+
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
87038
87294
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
87039
87295
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
87040
87296
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87708,6 +87964,9 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
87708
87964
|
export declare type QueryClassificationLevelsArgs = {
|
|
87709
87965
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
87710
87966
|
};
|
|
87967
|
+
export declare type QueryCmdb_GetCmdbObjectsByIdsArgs = {
|
|
87968
|
+
ids: Array<Scalars['ID']['input']>;
|
|
87969
|
+
};
|
|
87711
87970
|
export declare type QueryCodeInJiraArgs = {
|
|
87712
87971
|
cloudId: Scalars['ID']['input'];
|
|
87713
87972
|
};
|
|
@@ -88918,6 +89177,15 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
88918
89177
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88919
89178
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
88920
89179
|
};
|
|
89180
|
+
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
89181
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89182
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89183
|
+
cloudId: Scalars['ID']['input'];
|
|
89184
|
+
experience: Scalars['String']['input'];
|
|
89185
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89186
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89187
|
+
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
89188
|
+
};
|
|
88921
89189
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
88922
89190
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
88923
89191
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -92791,6 +93059,7 @@ export declare type SearchL2FeatureProvider = {
|
|
|
92791
93059
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
92792
93060
|
};
|
|
92793
93061
|
export declare type SearchLayerDefinition = {
|
|
93062
|
+
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
92794
93063
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
92795
93064
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
92796
93065
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100283,6 +100552,7 @@ export declare enum TrelloListType {
|
|
|
100283
100552
|
}
|
|
100284
100553
|
export declare type TrelloListUpdated = {
|
|
100285
100554
|
__typename?: 'TrelloListUpdated';
|
|
100555
|
+
bulkArchivedCards?: Maybe<Array<Scalars['ID']['output']>>;
|
|
100286
100556
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
100287
100557
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
100288
100558
|
id: Scalars['ID']['output'];
|
|
@@ -100844,6 +101114,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
100844
101114
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
100845
101115
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100846
101116
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
101117
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
100847
101118
|
id: Scalars['ID']['output'];
|
|
100848
101119
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
100849
101120
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101230,6 +101501,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
101230
101501
|
__typename?: 'TrelloSubscriptionApi';
|
|
101231
101502
|
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101232
101503
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101504
|
+
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
101233
101505
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
101234
101506
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
101235
101507
|
};
|
|
@@ -101241,6 +101513,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
101241
101513
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
101242
101514
|
id: Scalars['ID']['input'];
|
|
101243
101515
|
};
|
|
101516
|
+
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
101517
|
+
id: Scalars['ID']['input'];
|
|
101518
|
+
};
|
|
101244
101519
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
101245
101520
|
id: Scalars['ID']['input'];
|
|
101246
101521
|
};
|