@forge/cli-shared 2.1.5 → 2.1.6-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/out/config/config-file.d.ts +3 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +20 -6
- package/out/graphql/graphql-types.d.ts +117 -86
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/package.json +2 -2
|
@@ -1696,6 +1696,7 @@ export declare type CompassCreateMetricDefinitionInput = {
|
|
|
1696
1696
|
cloudId: Scalars['ID'];
|
|
1697
1697
|
name: Scalars['String'];
|
|
1698
1698
|
description?: Maybe<Scalars['String']>;
|
|
1699
|
+
format?: Maybe<CompassMetricDefinitionFormatInput>;
|
|
1699
1700
|
};
|
|
1700
1701
|
export declare type CompassCreateMetricDefinitionPayload = Payload & {
|
|
1701
1702
|
__typename?: 'CompassCreateMetricDefinitionPayload';
|
|
@@ -1948,7 +1949,6 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
1948
1949
|
weight: Scalars['Int'];
|
|
1949
1950
|
comparatorValue: Scalars['Float'];
|
|
1950
1951
|
metricDefinitionId: Scalars['ID'];
|
|
1951
|
-
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
1952
1952
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
1953
1953
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
1954
1954
|
};
|
|
@@ -1995,12 +1995,24 @@ export declare type CompassMetricDefinition = {
|
|
|
1995
1995
|
id: Scalars['ID'];
|
|
1996
1996
|
name?: Maybe<Scalars['String']>;
|
|
1997
1997
|
description?: Maybe<Scalars['String']>;
|
|
1998
|
+
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
1998
1999
|
};
|
|
1999
2000
|
export declare type CompassMetricDefinitionEdge = {
|
|
2000
2001
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
2001
2002
|
cursor: Scalars['String'];
|
|
2002
2003
|
node?: Maybe<CompassMetricDefinition>;
|
|
2003
2004
|
};
|
|
2005
|
+
export declare type CompassMetricDefinitionFormat = CompassMetricDefinitionFormatSuffix;
|
|
2006
|
+
export declare type CompassMetricDefinitionFormatInput = {
|
|
2007
|
+
suffix?: Maybe<CompassMetricDefinitionFormatSuffixInput>;
|
|
2008
|
+
};
|
|
2009
|
+
export declare type CompassMetricDefinitionFormatSuffix = {
|
|
2010
|
+
__typename?: 'CompassMetricDefinitionFormatSuffix';
|
|
2011
|
+
suffix?: Maybe<Scalars['String']>;
|
|
2012
|
+
};
|
|
2013
|
+
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
2014
|
+
suffix: Scalars['String'];
|
|
2015
|
+
};
|
|
2004
2016
|
export declare type CompassMetricDefinitionsConnection = {
|
|
2005
2017
|
__typename?: 'CompassMetricDefinitionsConnection';
|
|
2006
2018
|
edges?: Maybe<Array<CompassMetricDefinitionEdge>>;
|
|
@@ -2302,6 +2314,7 @@ export declare type CompassUpdateMetricDefinitionInput = {
|
|
|
2302
2314
|
id: Scalars['ID'];
|
|
2303
2315
|
name?: Maybe<Scalars['String']>;
|
|
2304
2316
|
description?: Maybe<Scalars['String']>;
|
|
2317
|
+
format?: Maybe<CompassMetricDefinitionFormatInput>;
|
|
2305
2318
|
};
|
|
2306
2319
|
export declare type CompassUpdateMetricDefinitionPayload = Payload & {
|
|
2307
2320
|
__typename?: 'CompassUpdateMetricDefinitionPayload';
|
|
@@ -2675,7 +2688,6 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
2675
2688
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
2676
2689
|
weight: Scalars['Int'];
|
|
2677
2690
|
metricDefinitionId: Scalars['ID'];
|
|
2678
|
-
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
2679
2691
|
comparatorValue: Scalars['Float'];
|
|
2680
2692
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2681
2693
|
};
|
|
@@ -4761,7 +4773,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
4761
4773
|
node?: Maybe<JiraAffectedService>;
|
|
4762
4774
|
cursor: Scalars['String'];
|
|
4763
4775
|
};
|
|
4764
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4776
|
+
export declare type JiraAffectedServicesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4765
4777
|
__typename?: 'JiraAffectedServicesField';
|
|
4766
4778
|
id: Scalars['ID'];
|
|
4767
4779
|
fieldId: Scalars['String'];
|
|
@@ -4821,7 +4833,7 @@ export declare type JiraAssetEdge = {
|
|
|
4821
4833
|
node?: Maybe<JiraAsset>;
|
|
4822
4834
|
cursor: Scalars['String'];
|
|
4823
4835
|
};
|
|
4824
|
-
export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4836
|
+
export declare type JiraAssetField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4825
4837
|
__typename?: 'JiraAssetField';
|
|
4826
4838
|
id: Scalars['ID'];
|
|
4827
4839
|
fieldId: Scalars['String'];
|
|
@@ -4858,7 +4870,7 @@ export declare type JiraAtlassianTeamEdge = {
|
|
|
4858
4870
|
node?: Maybe<JiraAtlassianTeam>;
|
|
4859
4871
|
cursor: Scalars['String'];
|
|
4860
4872
|
};
|
|
4861
|
-
export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4873
|
+
export declare type JiraAtlassianTeamField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4862
4874
|
__typename?: 'JiraAtlassianTeamField';
|
|
4863
4875
|
id: Scalars['ID'];
|
|
4864
4876
|
fieldId: Scalars['String'];
|
|
@@ -4901,7 +4913,7 @@ export declare type JiraAttachmentEdge = {
|
|
|
4901
4913
|
node?: Maybe<JiraAttachment>;
|
|
4902
4914
|
cursor: Scalars['String'];
|
|
4903
4915
|
};
|
|
4904
|
-
export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4916
|
+
export declare type JiraAttachmentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4905
4917
|
__typename?: 'JiraAttachmentsField';
|
|
4906
4918
|
id: Scalars['ID'];
|
|
4907
4919
|
fieldId: Scalars['String'];
|
|
@@ -4936,7 +4948,7 @@ export declare type JiraAvatar = {
|
|
|
4936
4948
|
medium?: Maybe<Scalars['String']>;
|
|
4937
4949
|
large?: Maybe<Scalars['String']>;
|
|
4938
4950
|
};
|
|
4939
|
-
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4951
|
+
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4940
4952
|
__typename?: 'JiraCMDBField';
|
|
4941
4953
|
id: Scalars['ID'];
|
|
4942
4954
|
fieldId: Scalars['String'];
|
|
@@ -4979,7 +4991,7 @@ export declare type JiraCascadingOptionsEdge = {
|
|
|
4979
4991
|
node?: Maybe<JiraCascadingOptions>;
|
|
4980
4992
|
cursor: Scalars['String'];
|
|
4981
4993
|
};
|
|
4982
|
-
export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4994
|
+
export declare type JiraCascadingSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4983
4995
|
__typename?: 'JiraCascadingSelectField';
|
|
4984
4996
|
id: Scalars['ID'];
|
|
4985
4997
|
fieldId: Scalars['String'];
|
|
@@ -5007,7 +5019,7 @@ export declare type JiraCascadingSelectOptionsFilter = {
|
|
|
5007
5019
|
optionType: JiraCascadingSelectOptionType;
|
|
5008
5020
|
parentOptionName?: Maybe<Scalars['String']>;
|
|
5009
5021
|
};
|
|
5010
|
-
export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5022
|
+
export declare type JiraCheckboxesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5011
5023
|
__typename?: 'JiraCheckboxesField';
|
|
5012
5024
|
id: Scalars['ID'];
|
|
5013
5025
|
fieldId: Scalars['String'];
|
|
@@ -5058,7 +5070,7 @@ export declare type JiraColor = {
|
|
|
5058
5070
|
id?: Maybe<Scalars['ID']>;
|
|
5059
5071
|
colorKey?: Maybe<Scalars['String']>;
|
|
5060
5072
|
};
|
|
5061
|
-
export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5073
|
+
export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5062
5074
|
__typename?: 'JiraColorField';
|
|
5063
5075
|
id: Scalars['ID'];
|
|
5064
5076
|
fieldId: Scalars['String'];
|
|
@@ -5108,7 +5120,7 @@ export declare type JiraComponentEdge = {
|
|
|
5108
5120
|
node?: Maybe<JiraComponent>;
|
|
5109
5121
|
cursor: Scalars['String'];
|
|
5110
5122
|
};
|
|
5111
|
-
export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5123
|
+
export declare type JiraComponentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5112
5124
|
__typename?: 'JiraComponentsField';
|
|
5113
5125
|
id: Scalars['ID'];
|
|
5114
5126
|
fieldId: Scalars['String'];
|
|
@@ -5135,7 +5147,7 @@ export declare type JiraComponentsFieldComponentsArgs = {
|
|
|
5135
5147
|
last?: Maybe<Scalars['Int']>;
|
|
5136
5148
|
before?: Maybe<Scalars['String']>;
|
|
5137
5149
|
};
|
|
5138
|
-
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5150
|
+
export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5139
5151
|
__typename?: 'JiraConnectMultipleSelectField';
|
|
5140
5152
|
id: Scalars['ID'];
|
|
5141
5153
|
fieldId: Scalars['String'];
|
|
@@ -5163,7 +5175,7 @@ export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
|
5163
5175
|
last?: Maybe<Scalars['Int']>;
|
|
5164
5176
|
before?: Maybe<Scalars['String']>;
|
|
5165
5177
|
};
|
|
5166
|
-
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5178
|
+
export declare type JiraConnectNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5167
5179
|
__typename?: 'JiraConnectNumberField';
|
|
5168
5180
|
id: Scalars['ID'];
|
|
5169
5181
|
fieldId: Scalars['String'];
|
|
@@ -5175,7 +5187,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
5175
5187
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5176
5188
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5177
5189
|
};
|
|
5178
|
-
export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5190
|
+
export declare type JiraConnectRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5179
5191
|
__typename?: 'JiraConnectRichTextField';
|
|
5180
5192
|
id: Scalars['ID'];
|
|
5181
5193
|
fieldId: Scalars['String'];
|
|
@@ -5189,7 +5201,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
5189
5201
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5190
5202
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5191
5203
|
};
|
|
5192
|
-
export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5204
|
+
export declare type JiraConnectSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5193
5205
|
__typename?: 'JiraConnectSingleSelectField';
|
|
5194
5206
|
id: Scalars['ID'];
|
|
5195
5207
|
fieldId: Scalars['String'];
|
|
@@ -5210,7 +5222,7 @@ export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
|
5210
5222
|
last?: Maybe<Scalars['Int']>;
|
|
5211
5223
|
before?: Maybe<Scalars['String']>;
|
|
5212
5224
|
};
|
|
5213
|
-
export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5225
|
+
export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5214
5226
|
__typename?: 'JiraConnectTextField';
|
|
5215
5227
|
id: Scalars['ID'];
|
|
5216
5228
|
fieldId: Scalars['String'];
|
|
@@ -5222,7 +5234,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5222
5234
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5223
5235
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5224
5236
|
};
|
|
5225
|
-
export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5237
|
+
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5226
5238
|
__typename?: 'JiraDatePickerField';
|
|
5227
5239
|
id: Scalars['ID'];
|
|
5228
5240
|
fieldId: Scalars['String'];
|
|
@@ -5234,7 +5246,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
5234
5246
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5235
5247
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5236
5248
|
};
|
|
5237
|
-
export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5249
|
+
export declare type JiraDateTimePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5238
5250
|
__typename?: 'JiraDateTimePickerField';
|
|
5239
5251
|
id: Scalars['ID'];
|
|
5240
5252
|
fieldId: Scalars['String'];
|
|
@@ -5283,7 +5295,7 @@ export declare type JiraDevOpsQuery = {
|
|
|
5283
5295
|
export declare type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
5284
5296
|
issueId: Scalars['ID'];
|
|
5285
5297
|
};
|
|
5286
|
-
export declare type JiraDevSummaryField = JiraIssueField & {
|
|
5298
|
+
export declare type JiraDevSummaryField = Node & JiraIssueField & {
|
|
5287
5299
|
__typename?: 'JiraDevSummaryField';
|
|
5288
5300
|
id: Scalars['ID'];
|
|
5289
5301
|
fieldId: Scalars['String'];
|
|
@@ -5323,7 +5335,7 @@ export declare type JiraEpicEdge = {
|
|
|
5323
5335
|
node?: Maybe<JiraEpic>;
|
|
5324
5336
|
cursor: Scalars['String'];
|
|
5325
5337
|
};
|
|
5326
|
-
export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5338
|
+
export declare type JiraEpicLinkField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5327
5339
|
__typename?: 'JiraEpicLinkField';
|
|
5328
5340
|
id: Scalars['ID'];
|
|
5329
5341
|
fieldId: Scalars['String'];
|
|
@@ -5363,7 +5375,7 @@ export declare type JiraFlag = {
|
|
|
5363
5375
|
__typename?: 'JiraFlag';
|
|
5364
5376
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
5365
5377
|
};
|
|
5366
|
-
export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5378
|
+
export declare type JiraFlagField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5367
5379
|
__typename?: 'JiraFlagField';
|
|
5368
5380
|
id: Scalars['ID'];
|
|
5369
5381
|
fieldId: Scalars['String'];
|
|
@@ -5375,7 +5387,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
5375
5387
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5376
5388
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5377
5389
|
};
|
|
5378
|
-
export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5390
|
+
export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5379
5391
|
__typename?: 'JiraForgeDatetimeField';
|
|
5380
5392
|
id: Scalars['ID'];
|
|
5381
5393
|
fieldId: Scalars['String'];
|
|
@@ -5387,7 +5399,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
5387
5399
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5388
5400
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5389
5401
|
};
|
|
5390
|
-
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5402
|
+
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5391
5403
|
__typename?: 'JiraForgeGroupField';
|
|
5392
5404
|
id: Scalars['ID'];
|
|
5393
5405
|
fieldId: Scalars['String'];
|
|
@@ -5408,7 +5420,7 @@ export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
|
5408
5420
|
last?: Maybe<Scalars['Int']>;
|
|
5409
5421
|
before?: Maybe<Scalars['String']>;
|
|
5410
5422
|
};
|
|
5411
|
-
export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5423
|
+
export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5412
5424
|
__typename?: 'JiraForgeGroupsField';
|
|
5413
5425
|
id: Scalars['ID'];
|
|
5414
5426
|
fieldId: Scalars['String'];
|
|
@@ -5436,7 +5448,7 @@ export declare type JiraForgeGroupsFieldGroupsArgs = {
|
|
|
5436
5448
|
last?: Maybe<Scalars['Int']>;
|
|
5437
5449
|
before?: Maybe<Scalars['String']>;
|
|
5438
5450
|
};
|
|
5439
|
-
export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5451
|
+
export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5440
5452
|
__typename?: 'JiraForgeNumberField';
|
|
5441
5453
|
id: Scalars['ID'];
|
|
5442
5454
|
fieldId: Scalars['String'];
|
|
@@ -5448,7 +5460,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5448
5460
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5449
5461
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5450
5462
|
};
|
|
5451
|
-
export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5463
|
+
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5452
5464
|
__typename?: 'JiraForgeObjectField';
|
|
5453
5465
|
id: Scalars['ID'];
|
|
5454
5466
|
fieldId: Scalars['String'];
|
|
@@ -5460,7 +5472,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5460
5472
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5461
5473
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5462
5474
|
};
|
|
5463
|
-
export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5475
|
+
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5464
5476
|
__typename?: 'JiraForgeStringField';
|
|
5465
5477
|
id: Scalars['ID'];
|
|
5466
5478
|
fieldId: Scalars['String'];
|
|
@@ -5472,7 +5484,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5472
5484
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5473
5485
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5474
5486
|
};
|
|
5475
|
-
export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5487
|
+
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5476
5488
|
__typename?: 'JiraForgeStringsField';
|
|
5477
5489
|
id: Scalars['ID'];
|
|
5478
5490
|
fieldId: Scalars['String'];
|
|
@@ -5501,7 +5513,7 @@ export declare type JiraForgeStringsFieldLabelsArgs = {
|
|
|
5501
5513
|
before?: Maybe<Scalars['String']>;
|
|
5502
5514
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
5503
5515
|
};
|
|
5504
|
-
export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5516
|
+
export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5505
5517
|
__typename?: 'JiraForgeUserField';
|
|
5506
5518
|
id: Scalars['ID'];
|
|
5507
5519
|
fieldId: Scalars['String'];
|
|
@@ -5523,7 +5535,7 @@ export declare type JiraForgeUserFieldUsersArgs = {
|
|
|
5523
5535
|
before?: Maybe<Scalars['String']>;
|
|
5524
5536
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
5525
5537
|
};
|
|
5526
|
-
export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5538
|
+
export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5527
5539
|
__typename?: 'JiraForgeUsersField';
|
|
5528
5540
|
id: Scalars['ID'];
|
|
5529
5541
|
fieldId: Scalars['String'];
|
|
@@ -5891,7 +5903,7 @@ export declare type JiraIssueLinkEdge = {
|
|
|
5891
5903
|
node?: Maybe<JiraIssueLink>;
|
|
5892
5904
|
cursor: Scalars['String'];
|
|
5893
5905
|
};
|
|
5894
|
-
export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5906
|
+
export declare type JiraIssueLinkField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5895
5907
|
__typename?: 'JiraIssueLinkField';
|
|
5896
5908
|
id: Scalars['ID'];
|
|
5897
5909
|
fieldId: Scalars['String'];
|
|
@@ -5959,7 +5971,7 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
5959
5971
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
5960
5972
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
5961
5973
|
};
|
|
5962
|
-
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5974
|
+
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5963
5975
|
__typename?: 'JiraIssueRestrictionField';
|
|
5964
5976
|
id: Scalars['ID'];
|
|
5965
5977
|
fieldId: Scalars['String'];
|
|
@@ -6017,7 +6029,7 @@ export declare type JiraIssueTypeEdge = {
|
|
|
6017
6029
|
node?: Maybe<JiraIssueType>;
|
|
6018
6030
|
cursor: Scalars['String'];
|
|
6019
6031
|
};
|
|
6020
|
-
export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
6032
|
+
export declare type JiraIssueTypeField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
6021
6033
|
__typename?: 'JiraIssueTypeField';
|
|
6022
6034
|
id: Scalars['ID'];
|
|
6023
6035
|
fieldId: Scalars['String'];
|
|
@@ -6475,7 +6487,7 @@ export declare type JiraLabelEdge = {
|
|
|
6475
6487
|
node?: Maybe<JiraLabel>;
|
|
6476
6488
|
cursor: Scalars['String'];
|
|
6477
6489
|
};
|
|
6478
|
-
export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6490
|
+
export declare type JiraLabelsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6479
6491
|
__typename?: 'JiraLabelsField';
|
|
6480
6492
|
id: Scalars['ID'];
|
|
6481
6493
|
fieldId: Scalars['String'];
|
|
@@ -6517,7 +6529,7 @@ export declare type JiraMediaUploadToken = {
|
|
|
6517
6529
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
6518
6530
|
};
|
|
6519
6531
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
6520
|
-
export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6532
|
+
export declare type JiraMultipleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6521
6533
|
__typename?: 'JiraMultipleGroupPickerField';
|
|
6522
6534
|
id: Scalars['ID'];
|
|
6523
6535
|
fieldId: Scalars['String'];
|
|
@@ -6545,7 +6557,7 @@ export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
|
6545
6557
|
last?: Maybe<Scalars['Int']>;
|
|
6546
6558
|
before?: Maybe<Scalars['String']>;
|
|
6547
6559
|
};
|
|
6548
|
-
export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6560
|
+
export declare type JiraMultipleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6549
6561
|
__typename?: 'JiraMultipleSelectField';
|
|
6550
6562
|
id: Scalars['ID'];
|
|
6551
6563
|
fieldId: Scalars['String'];
|
|
@@ -6573,7 +6585,7 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
|
6573
6585
|
last?: Maybe<Scalars['Int']>;
|
|
6574
6586
|
before?: Maybe<Scalars['String']>;
|
|
6575
6587
|
};
|
|
6576
|
-
export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6588
|
+
export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6577
6589
|
__typename?: 'JiraMultipleSelectUserPickerField';
|
|
6578
6590
|
id: Scalars['ID'];
|
|
6579
6591
|
fieldId: Scalars['String'];
|
|
@@ -6602,7 +6614,7 @@ export declare type JiraMultipleSelectUserPickerFieldUsersArgs = {
|
|
|
6602
6614
|
before?: Maybe<Scalars['String']>;
|
|
6603
6615
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6604
6616
|
};
|
|
6605
|
-
export declare type JiraMultipleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6617
|
+
export declare type JiraMultipleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6606
6618
|
__typename?: 'JiraMultipleVersionPickerField';
|
|
6607
6619
|
id: Scalars['ID'];
|
|
6608
6620
|
fieldId: Scalars['String'];
|
|
@@ -6651,7 +6663,7 @@ export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
|
6651
6663
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
6652
6664
|
input: JiraUpdateVersionWarningConfigInput;
|
|
6653
6665
|
};
|
|
6654
|
-
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6666
|
+
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6655
6667
|
__typename?: 'JiraNumberField';
|
|
6656
6668
|
id: Scalars['ID'];
|
|
6657
6669
|
fieldId: Scalars['String'];
|
|
@@ -6820,7 +6832,7 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
6820
6832
|
export declare type JiraOrderDirection = {
|
|
6821
6833
|
id?: Maybe<Scalars['ID']>;
|
|
6822
6834
|
};
|
|
6823
|
-
export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6835
|
+
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6824
6836
|
__typename?: 'JiraParentIssueField';
|
|
6825
6837
|
id: Scalars['ID'];
|
|
6826
6838
|
fieldId: Scalars['String'];
|
|
@@ -6832,7 +6844,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
6832
6844
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6833
6845
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6834
6846
|
};
|
|
6835
|
-
export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6847
|
+
export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6836
6848
|
__typename?: 'JiraPeopleField';
|
|
6837
6849
|
id: Scalars['ID'];
|
|
6838
6850
|
fieldId: Scalars['String'];
|
|
@@ -7023,7 +7035,7 @@ export declare type JiraPriorityEdge = {
|
|
|
7023
7035
|
node?: Maybe<JiraPriority>;
|
|
7024
7036
|
cursor: Scalars['String'];
|
|
7025
7037
|
};
|
|
7026
|
-
export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7038
|
+
export declare type JiraPriorityField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7027
7039
|
__typename?: 'JiraPriorityField';
|
|
7028
7040
|
id: Scalars['ID'];
|
|
7029
7041
|
fieldId: Scalars['String'];
|
|
@@ -7183,7 +7195,7 @@ export declare type JiraProjectEdge = {
|
|
|
7183
7195
|
node?: Maybe<JiraProject>;
|
|
7184
7196
|
cursor: Scalars['String'];
|
|
7185
7197
|
};
|
|
7186
|
-
export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7198
|
+
export declare type JiraProjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7187
7199
|
__typename?: 'JiraProjectField';
|
|
7188
7200
|
id: Scalars['ID'];
|
|
7189
7201
|
fieldId: Scalars['String'];
|
|
@@ -7362,7 +7374,7 @@ export declare type JiraQueryVersionArgs = {
|
|
|
7362
7374
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7363
7375
|
versionId: Scalars['ID'];
|
|
7364
7376
|
};
|
|
7365
|
-
export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7377
|
+
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7366
7378
|
__typename?: 'JiraRadioSelectField';
|
|
7367
7379
|
id: Scalars['ID'];
|
|
7368
7380
|
fieldId: Scalars['String'];
|
|
@@ -7515,7 +7527,7 @@ export declare type JiraResolutionEdge = {
|
|
|
7515
7527
|
node?: Maybe<JiraResolution>;
|
|
7516
7528
|
cursor: Scalars['String'];
|
|
7517
7529
|
};
|
|
7518
|
-
export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7530
|
+
export declare type JiraResolutionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7519
7531
|
__typename?: 'JiraResolutionField';
|
|
7520
7532
|
id: Scalars['ID'];
|
|
7521
7533
|
fieldId: Scalars['String'];
|
|
@@ -7552,7 +7564,7 @@ export declare type JiraRichText = {
|
|
|
7552
7564
|
adfValue?: Maybe<JiraAdf>;
|
|
7553
7565
|
wikiValue?: Maybe<Scalars['String']>;
|
|
7554
7566
|
};
|
|
7555
|
-
export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7567
|
+
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7556
7568
|
__typename?: 'JiraRichTextField';
|
|
7557
7569
|
id: Scalars['ID'];
|
|
7558
7570
|
fieldId: Scalars['String'];
|
|
@@ -7602,7 +7614,7 @@ export declare type JiraSecurityLevelEdge = {
|
|
|
7602
7614
|
node?: Maybe<JiraSecurityLevel>;
|
|
7603
7615
|
cursor: Scalars['String'];
|
|
7604
7616
|
};
|
|
7605
|
-
export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7617
|
+
export declare type JiraSecurityLevelField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7606
7618
|
__typename?: 'JiraSecurityLevelField';
|
|
7607
7619
|
id: Scalars['ID'];
|
|
7608
7620
|
fieldId: Scalars['String'];
|
|
@@ -7628,12 +7640,13 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
7628
7640
|
name?: Maybe<Scalars['String']>;
|
|
7629
7641
|
finalDecision?: Maybe<JiraServiceManagementApprovalDecisionResponseType>;
|
|
7630
7642
|
approvers?: Maybe<JiraServiceManagementApproverConnection>;
|
|
7643
|
+
excludedApprovers?: Maybe<JiraUserConnection>;
|
|
7631
7644
|
canAnswerApproval?: Maybe<Scalars['Boolean']>;
|
|
7632
7645
|
decisions?: Maybe<JiraServiceManagementDecisionConnection>;
|
|
7633
7646
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
7634
|
-
|
|
7647
|
+
configurations?: Maybe<Array<Maybe<JiraServiceManagementApprovalConfiguration>>>;
|
|
7635
7648
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
7636
|
-
approverPrincipals?: Maybe<
|
|
7649
|
+
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
7637
7650
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
7638
7651
|
};
|
|
7639
7652
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
@@ -7643,7 +7656,7 @@ export declare type JiraServiceManagementApprovalCondition = {
|
|
|
7643
7656
|
};
|
|
7644
7657
|
export declare type JiraServiceManagementApprovalConfiguration = {
|
|
7645
7658
|
__typename?: 'JiraServiceManagementApprovalConfiguration';
|
|
7646
|
-
|
|
7659
|
+
approversConfigurations?: Maybe<Array<Maybe<JiraServiceManagementApproversConfiguration>>>;
|
|
7647
7660
|
condition?: Maybe<JiraServiceManagementApprovalCondition>;
|
|
7648
7661
|
};
|
|
7649
7662
|
export declare enum JiraServiceManagementApprovalDecisionResponseType {
|
|
@@ -7651,7 +7664,7 @@ export declare enum JiraServiceManagementApprovalDecisionResponseType {
|
|
|
7651
7664
|
Declined = "declined",
|
|
7652
7665
|
Pending = "pending"
|
|
7653
7666
|
}
|
|
7654
|
-
export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7667
|
+
export declare type JiraServiceManagementApprovalField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7655
7668
|
__typename?: 'JiraServiceManagementApprovalField';
|
|
7656
7669
|
id: Scalars['ID'];
|
|
7657
7670
|
fieldId: Scalars['String'];
|
|
@@ -7675,7 +7688,7 @@ export declare type JiraServiceManagementApprovalStatus = {
|
|
|
7675
7688
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
7676
7689
|
id?: Maybe<Scalars['String']>;
|
|
7677
7690
|
name?: Maybe<Scalars['String']>;
|
|
7678
|
-
categoryId?: Maybe<Scalars['
|
|
7691
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
7679
7692
|
};
|
|
7680
7693
|
export declare type JiraServiceManagementApprover = {
|
|
7681
7694
|
__typename?: 'JiraServiceManagementApprover';
|
|
@@ -7693,12 +7706,23 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
7693
7706
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
7694
7707
|
cursor: Scalars['String'];
|
|
7695
7708
|
};
|
|
7696
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection |
|
|
7709
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection | JiraServiceManagementGroupApproverPrincipalConnection;
|
|
7710
|
+
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
7711
|
+
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
7712
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
7713
|
+
pageInfo: PageInfo;
|
|
7714
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementApproverPrincipalEdge>>>;
|
|
7715
|
+
};
|
|
7716
|
+
export declare type JiraServiceManagementApproverPrincipalEdge = {
|
|
7717
|
+
__typename?: 'JiraServiceManagementApproverPrincipalEdge';
|
|
7718
|
+
node?: Maybe<JiraServiceManagementApproverPrincipal>;
|
|
7719
|
+
cursor: Scalars['String'];
|
|
7720
|
+
};
|
|
7697
7721
|
export declare type JiraServiceManagementApproversConfiguration = {
|
|
7698
7722
|
__typename?: 'JiraServiceManagementApproversConfiguration';
|
|
7699
7723
|
type?: Maybe<Scalars['String']>;
|
|
7700
|
-
|
|
7701
|
-
|
|
7724
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
7725
|
+
fieldId?: Maybe<Scalars['String']>;
|
|
7702
7726
|
};
|
|
7703
7727
|
export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
7704
7728
|
__typename?: 'JiraServiceManagementAttachment';
|
|
@@ -7751,7 +7775,7 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
7751
7775
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
7752
7776
|
cursor: Scalars['String'];
|
|
7753
7777
|
};
|
|
7754
|
-
export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7778
|
+
export declare type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7755
7779
|
__typename?: 'JiraServiceManagementDateTimeField';
|
|
7756
7780
|
id: Scalars['ID'];
|
|
7757
7781
|
fieldId: Scalars['String'];
|
|
@@ -7785,20 +7809,27 @@ export declare type JiraServiceManagementFeedback = {
|
|
|
7785
7809
|
};
|
|
7786
7810
|
export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
7787
7811
|
__typename?: 'JiraServiceManagementGroupApproverPrincipal';
|
|
7788
|
-
|
|
7812
|
+
groupId?: Maybe<Scalars['String']>;
|
|
7789
7813
|
name?: Maybe<Scalars['String']>;
|
|
7790
7814
|
memberCount?: Maybe<Scalars['Int']>;
|
|
7791
7815
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
7792
7816
|
};
|
|
7793
|
-
export declare type
|
|
7794
|
-
__typename?: '
|
|
7795
|
-
|
|
7817
|
+
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
7818
|
+
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
7819
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
7820
|
+
pageInfo: PageInfo;
|
|
7821
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
7822
|
+
};
|
|
7823
|
+
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
7824
|
+
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
7825
|
+
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
7826
|
+
cursor: Scalars['String'];
|
|
7796
7827
|
};
|
|
7797
7828
|
export declare type JiraServiceManagementIncident = {
|
|
7798
7829
|
__typename?: 'JiraServiceManagementIncident';
|
|
7799
7830
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
7800
7831
|
};
|
|
7801
|
-
export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7832
|
+
export declare type JiraServiceManagementIncidentLinkingField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7802
7833
|
__typename?: 'JiraServiceManagementIncidentLinkingField';
|
|
7803
7834
|
id: Scalars['ID'];
|
|
7804
7835
|
fieldId: Scalars['String'];
|
|
@@ -7814,7 +7845,7 @@ export declare type JiraServiceManagementLanguage = {
|
|
|
7814
7845
|
languageCode?: Maybe<Scalars['String']>;
|
|
7815
7846
|
displayName?: Maybe<Scalars['String']>;
|
|
7816
7847
|
};
|
|
7817
|
-
export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7848
|
+
export declare type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7818
7849
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
7819
7850
|
id: Scalars['ID'];
|
|
7820
7851
|
fieldId: Scalars['String'];
|
|
@@ -7860,7 +7891,7 @@ export declare type JiraServiceManagementOrganizationEdge = {
|
|
|
7860
7891
|
node?: Maybe<JiraServiceManagementOrganization>;
|
|
7861
7892
|
cursor: Scalars['String'];
|
|
7862
7893
|
};
|
|
7863
|
-
export declare type JiraServiceManagementOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7894
|
+
export declare type JiraServiceManagementOrganizationField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7864
7895
|
__typename?: 'JiraServiceManagementOrganizationField';
|
|
7865
7896
|
id: Scalars['ID'];
|
|
7866
7897
|
fieldId: Scalars['String'];
|
|
@@ -7889,7 +7920,7 @@ export declare type JiraServiceManagementOrganizationFieldOrganizationsArgs = {
|
|
|
7889
7920
|
before?: Maybe<Scalars['String']>;
|
|
7890
7921
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
7891
7922
|
};
|
|
7892
|
-
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7923
|
+
export declare type JiraServiceManagementPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7893
7924
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
7894
7925
|
id: Scalars['ID'];
|
|
7895
7926
|
fieldId: Scalars['String'];
|
|
@@ -7925,7 +7956,7 @@ export declare enum JiraServiceManagementPractice {
|
|
|
7925
7956
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
7926
7957
|
ChangeManagement = "CHANGE_MANAGEMENT"
|
|
7927
7958
|
}
|
|
7928
|
-
export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7959
|
+
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7929
7960
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
7930
7961
|
id: Scalars['ID'];
|
|
7931
7962
|
fieldId: Scalars['String'];
|
|
@@ -7937,7 +7968,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
7937
7968
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7938
7969
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7939
7970
|
};
|
|
7940
|
-
export declare type JiraServiceManagementRequestLanguageField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7971
|
+
export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7941
7972
|
__typename?: 'JiraServiceManagementRequestLanguageField';
|
|
7942
7973
|
id: Scalars['ID'];
|
|
7943
7974
|
fieldId: Scalars['String'];
|
|
@@ -7974,7 +8005,7 @@ export declare type JiraServiceManagementRequestTypeEdge = {
|
|
|
7974
8005
|
node?: Maybe<JiraServiceManagementRequestType>;
|
|
7975
8006
|
cursor: Scalars['String'];
|
|
7976
8007
|
};
|
|
7977
|
-
export declare type JiraServiceManagementRequestTypeField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8008
|
+
export declare type JiraServiceManagementRequestTypeField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7978
8009
|
__typename?: 'JiraServiceManagementRequestTypeField';
|
|
7979
8010
|
id: Scalars['ID'];
|
|
7980
8011
|
fieldId: Scalars['String'];
|
|
@@ -8010,7 +8041,7 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
8010
8041
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
8011
8042
|
cursor: Scalars['String'];
|
|
8012
8043
|
};
|
|
8013
|
-
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8044
|
+
export declare type JiraServiceManagementRespondersField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8014
8045
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
8015
8046
|
id: Scalars['ID'];
|
|
8016
8047
|
fieldId: Scalars['String'];
|
|
@@ -8063,7 +8094,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
8063
8094
|
key: Scalars['String'];
|
|
8064
8095
|
value: Scalars['String'];
|
|
8065
8096
|
};
|
|
8066
|
-
export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8097
|
+
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8067
8098
|
__typename?: 'JiraSingleGroupPickerField';
|
|
8068
8099
|
id: Scalars['ID'];
|
|
8069
8100
|
fieldId: Scalars['String'];
|
|
@@ -8084,7 +8115,7 @@ export declare type JiraSingleGroupPickerFieldGroupsArgs = {
|
|
|
8084
8115
|
last?: Maybe<Scalars['Int']>;
|
|
8085
8116
|
before?: Maybe<Scalars['String']>;
|
|
8086
8117
|
};
|
|
8087
|
-
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8118
|
+
export declare type JiraSingleLineTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8088
8119
|
__typename?: 'JiraSingleLineTextField';
|
|
8089
8120
|
id: Scalars['ID'];
|
|
8090
8121
|
fieldId: Scalars['String'];
|
|
@@ -8096,7 +8127,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
8096
8127
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8097
8128
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8098
8129
|
};
|
|
8099
|
-
export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8130
|
+
export declare type JiraSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8100
8131
|
__typename?: 'JiraSingleSelectField';
|
|
8101
8132
|
id: Scalars['ID'];
|
|
8102
8133
|
fieldId: Scalars['String'];
|
|
@@ -8117,7 +8148,7 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
|
8117
8148
|
last?: Maybe<Scalars['Int']>;
|
|
8118
8149
|
before?: Maybe<Scalars['String']>;
|
|
8119
8150
|
};
|
|
8120
|
-
export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8151
|
+
export declare type JiraSingleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8121
8152
|
__typename?: 'JiraSingleSelectUserPickerField';
|
|
8122
8153
|
id: Scalars['ID'];
|
|
8123
8154
|
fieldId: Scalars['String'];
|
|
@@ -8139,7 +8170,7 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
8139
8170
|
before?: Maybe<Scalars['String']>;
|
|
8140
8171
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
8141
8172
|
};
|
|
8142
|
-
export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8173
|
+
export declare type JiraSingleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8143
8174
|
__typename?: 'JiraSingleVersionPickerField';
|
|
8144
8175
|
id: Scalars['ID'];
|
|
8145
8176
|
fieldId: Scalars['String'];
|
|
@@ -8181,7 +8212,7 @@ export declare type JiraSprintEdge = {
|
|
|
8181
8212
|
node?: Maybe<JiraSprint>;
|
|
8182
8213
|
cursor: Scalars['String'];
|
|
8183
8214
|
};
|
|
8184
|
-
export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8215
|
+
export declare type JiraSprintField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8185
8216
|
__typename?: 'JiraSprintField';
|
|
8186
8217
|
id: Scalars['ID'];
|
|
8187
8218
|
fieldId: Scalars['String'];
|
|
@@ -8238,7 +8269,7 @@ export declare enum JiraStatusCategoryColor {
|
|
|
8238
8269
|
WarmRed = "WARM_RED",
|
|
8239
8270
|
BlueGray = "BLUE_GRAY"
|
|
8240
8271
|
}
|
|
8241
|
-
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8272
|
+
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8242
8273
|
__typename?: 'JiraStatusField';
|
|
8243
8274
|
id: Scalars['ID'];
|
|
8244
8275
|
fieldId: Scalars['String'];
|
|
@@ -8250,7 +8281,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
8250
8281
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8251
8282
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8252
8283
|
};
|
|
8253
|
-
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8284
|
+
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8254
8285
|
__typename?: 'JiraSubtasksField';
|
|
8255
8286
|
id: Scalars['ID'];
|
|
8256
8287
|
fieldId: Scalars['String'];
|
|
@@ -8287,7 +8318,7 @@ export declare type JiraTeamEdge = {
|
|
|
8287
8318
|
node?: Maybe<JiraTeam>;
|
|
8288
8319
|
cursor: Scalars['String'];
|
|
8289
8320
|
};
|
|
8290
|
-
export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8321
|
+
export declare type JiraTeamField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8291
8322
|
__typename?: 'JiraTeamField';
|
|
8292
8323
|
id: Scalars['ID'];
|
|
8293
8324
|
fieldId: Scalars['String'];
|
|
@@ -8313,7 +8344,7 @@ export declare enum JiraTimeFormat {
|
|
|
8313
8344
|
Days = "DAYS",
|
|
8314
8345
|
Hours = "HOURS"
|
|
8315
8346
|
}
|
|
8316
|
-
export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8347
|
+
export declare type JiraTimeTrackingField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8317
8348
|
__typename?: 'JiraTimeTrackingField';
|
|
8318
8349
|
id: Scalars['ID'];
|
|
8319
8350
|
fieldId: Scalars['String'];
|
|
@@ -8351,7 +8382,7 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
|
|
|
8351
8382
|
success: Scalars['Boolean'];
|
|
8352
8383
|
errors?: Maybe<Array<MutationError>>;
|
|
8353
8384
|
};
|
|
8354
|
-
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8385
|
+
export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8355
8386
|
__typename?: 'JiraUrlField';
|
|
8356
8387
|
id: Scalars['ID'];
|
|
8357
8388
|
fieldId: Scalars['String'];
|
|
@@ -8476,7 +8507,7 @@ export declare type JiraVote = {
|
|
|
8476
8507
|
hasVoted?: Maybe<Scalars['Boolean']>;
|
|
8477
8508
|
count?: Maybe<Scalars['Long']>;
|
|
8478
8509
|
};
|
|
8479
|
-
export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8510
|
+
export declare type JiraVotesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8480
8511
|
__typename?: 'JiraVotesField';
|
|
8481
8512
|
id: Scalars['ID'];
|
|
8482
8513
|
fieldId: Scalars['String'];
|
|
@@ -8493,7 +8524,7 @@ export declare type JiraWatch = {
|
|
|
8493
8524
|
isWatching?: Maybe<Scalars['Boolean']>;
|
|
8494
8525
|
count?: Maybe<Scalars['Long']>;
|
|
8495
8526
|
};
|
|
8496
|
-
export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8527
|
+
export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8497
8528
|
__typename?: 'JiraWatchesField';
|
|
8498
8529
|
id: Scalars['ID'];
|
|
8499
8530
|
fieldId: Scalars['String'];
|
|
@@ -10191,8 +10222,8 @@ export declare type PolarisIssueLinkType = {
|
|
|
10191
10222
|
};
|
|
10192
10223
|
export declare type PolarisMatrixAxis = {
|
|
10193
10224
|
__typename?: 'PolarisMatrixAxis';
|
|
10194
|
-
dimension
|
|
10195
|
-
field
|
|
10225
|
+
dimension: Scalars['String'];
|
|
10226
|
+
field: PolarisIdeaField;
|
|
10196
10227
|
};
|
|
10197
10228
|
export declare type PolarisMatrixConfig = {
|
|
10198
10229
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -10384,7 +10415,7 @@ export declare type PolarisTimelineConfig = {
|
|
|
10384
10415
|
__typename?: 'PolarisTimelineConfig';
|
|
10385
10416
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
10386
10417
|
dueDateField?: Maybe<PolarisIdeaField>;
|
|
10387
|
-
mode
|
|
10418
|
+
mode: PolarisTimelineMode;
|
|
10388
10419
|
};
|
|
10389
10420
|
export declare enum PolarisTimelineMode {
|
|
10390
10421
|
Months = "MONTHS",
|
|
@@ -10922,7 +10953,8 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
10922
10953
|
};
|
|
10923
10954
|
export declare enum RateLimitingCurrency {
|
|
10924
10955
|
TestingService = "TESTING_SERVICE",
|
|
10925
|
-
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY"
|
|
10956
|
+
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
10957
|
+
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
10926
10958
|
}
|
|
10927
10959
|
export declare type RawStatus = {
|
|
10928
10960
|
__typename?: 'RawStatus';
|
|
@@ -12305,7 +12337,6 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
12305
12337
|
id: Scalars['ID'];
|
|
12306
12338
|
weight?: Maybe<Scalars['Int']>;
|
|
12307
12339
|
metricDefinitionId?: Maybe<Scalars['ID']>;
|
|
12308
|
-
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
12309
12340
|
comparatorValue?: Maybe<Scalars['Float']>;
|
|
12310
12341
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
12311
12342
|
};
|