@forge/cli-shared 2.1.6-next.1 → 2.1.6-next.5
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.
|
@@ -1567,6 +1567,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1567
1567
|
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1568
1568
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1569
1569
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1570
|
+
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1570
1571
|
};
|
|
1571
1572
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1572
1573
|
id: Scalars['ID'];
|
|
@@ -1605,6 +1606,10 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
1605
1606
|
export declare type CompassCatalogQueryApiMetricDefinitionsArgs = {
|
|
1606
1607
|
query: CompassMetricDefinitionsQuery;
|
|
1607
1608
|
};
|
|
1609
|
+
export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
1610
|
+
cloudId: Scalars['ID'];
|
|
1611
|
+
metricDefinitionId: Scalars['ID'];
|
|
1612
|
+
};
|
|
1608
1613
|
export declare type CompassChangeMetadata = {
|
|
1609
1614
|
__typename?: 'CompassChangeMetadata';
|
|
1610
1615
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1766,9 +1771,9 @@ export declare type CompassDeleteMetricSourceInput = {
|
|
|
1766
1771
|
};
|
|
1767
1772
|
export declare type CompassDeleteMetricSourcePayload = Payload & {
|
|
1768
1773
|
__typename?: 'CompassDeleteMetricSourcePayload';
|
|
1769
|
-
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1770
1774
|
success: Scalars['Boolean'];
|
|
1771
1775
|
errors?: Maybe<Array<MutationError>>;
|
|
1776
|
+
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1772
1777
|
};
|
|
1773
1778
|
export declare type CompassDeleteTeamCheckinActionInput = {
|
|
1774
1779
|
id: Scalars['ID'];
|
|
@@ -1996,6 +2001,11 @@ export declare type CompassMetricDefinition = {
|
|
|
1996
2001
|
name?: Maybe<Scalars['String']>;
|
|
1997
2002
|
description?: Maybe<Scalars['String']>;
|
|
1998
2003
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2004
|
+
type: CompassMetricDefinitionType;
|
|
2005
|
+
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2006
|
+
};
|
|
2007
|
+
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
2008
|
+
query?: Maybe<CompassMetricSourcesQuery>;
|
|
1999
2009
|
};
|
|
2000
2010
|
export declare type CompassMetricDefinitionEdge = {
|
|
2001
2011
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
@@ -2013,6 +2023,11 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
2013
2023
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
2014
2024
|
suffix: Scalars['String'];
|
|
2015
2025
|
};
|
|
2026
|
+
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
2027
|
+
export declare enum CompassMetricDefinitionType {
|
|
2028
|
+
BuiltIn = "BUILT_IN",
|
|
2029
|
+
Custom = "CUSTOM"
|
|
2030
|
+
}
|
|
2016
2031
|
export declare type CompassMetricDefinitionsConnection = {
|
|
2017
2032
|
__typename?: 'CompassMetricDefinitionsConnection';
|
|
2018
2033
|
edges?: Maybe<Array<CompassMetricDefinitionEdge>>;
|
|
@@ -2032,6 +2047,7 @@ export declare type CompassMetricSource = {
|
|
|
2032
2047
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2033
2048
|
url?: Maybe<Scalars['String']>;
|
|
2034
2049
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2050
|
+
component?: Maybe<CompassComponent>;
|
|
2035
2051
|
};
|
|
2036
2052
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2037
2053
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -2052,6 +2068,17 @@ export declare type CompassMetricSourceValuesQuery = {
|
|
|
2052
2068
|
after?: Maybe<Scalars['String']>;
|
|
2053
2069
|
};
|
|
2054
2070
|
export declare type CompassMetricSourceValuesQueryResult = CompassMetricSourceValuesConnection | QueryError;
|
|
2071
|
+
export declare type CompassMetricSourcesConnection = {
|
|
2072
|
+
__typename?: 'CompassMetricSourcesConnection';
|
|
2073
|
+
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
2074
|
+
nodes?: Maybe<Array<CompassMetricSource>>;
|
|
2075
|
+
pageInfo: PageInfo;
|
|
2076
|
+
};
|
|
2077
|
+
export declare type CompassMetricSourcesQuery = {
|
|
2078
|
+
first?: Maybe<Scalars['Int']>;
|
|
2079
|
+
after?: Maybe<Scalars['String']>;
|
|
2080
|
+
};
|
|
2081
|
+
export declare type CompassMetricSourcesQueryResult = CompassMetricSourcesConnection | QueryError;
|
|
2055
2082
|
export declare type CompassMetricValue = {
|
|
2056
2083
|
__typename?: 'CompassMetricValue';
|
|
2057
2084
|
timestamp?: Maybe<Scalars['DateTime']>;
|
|
@@ -3903,12 +3930,17 @@ export declare type DevOpsTool = {
|
|
|
3903
3930
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3904
3931
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
3905
3932
|
};
|
|
3906
|
-
export declare type DevOpsToolAvailable = DevOpsTool & {
|
|
3933
|
+
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
3907
3934
|
__typename?: 'DevOpsToolAvailable';
|
|
3908
3935
|
id: Scalars['ID'];
|
|
3909
3936
|
name: Scalars['String'];
|
|
3910
3937
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3911
3938
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
3939
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3940
|
+
};
|
|
3941
|
+
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
3942
|
+
first?: Maybe<Scalars['Int']>;
|
|
3943
|
+
after?: Maybe<Scalars['String']>;
|
|
3912
3944
|
};
|
|
3913
3945
|
export declare type DevOpsToolAvatar = {
|
|
3914
3946
|
__typename?: 'DevOpsToolAvatar';
|
|
@@ -3925,7 +3957,7 @@ export declare type DevOpsToolConnection = {
|
|
|
3925
3957
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3926
3958
|
pageInfo: PageInfo;
|
|
3927
3959
|
};
|
|
3928
|
-
export declare type DevOpsToolContainer = {
|
|
3960
|
+
export declare type DevOpsToolContainer = Node & {
|
|
3929
3961
|
__typename?: 'DevOpsToolContainer';
|
|
3930
3962
|
id: Scalars['ID'];
|
|
3931
3963
|
displayName: Scalars['String'];
|
|
@@ -3957,11 +3989,16 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3957
3989
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3958
3990
|
webUrl: Scalars['URL'];
|
|
3959
3991
|
};
|
|
3960
|
-
export declare type DevOpsToolNamespace = {
|
|
3992
|
+
export declare type DevOpsToolNamespace = Node & {
|
|
3961
3993
|
__typename?: 'DevOpsToolNamespace';
|
|
3962
3994
|
id: Scalars['ID'];
|
|
3963
3995
|
displayName: Scalars['String'];
|
|
3964
3996
|
canCreateContainer: Scalars['Boolean'];
|
|
3997
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3998
|
+
};
|
|
3999
|
+
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
4000
|
+
first?: Maybe<Scalars['Int']>;
|
|
4001
|
+
after?: Maybe<Scalars['String']>;
|
|
3965
4002
|
};
|
|
3966
4003
|
export declare type DevOpsToolNamespaceConnection = {
|
|
3967
4004
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -3979,7 +4016,7 @@ export declare type DevOpsToolSupportedContainerType = {
|
|
|
3979
4016
|
category: DevOpsToolCategory;
|
|
3980
4017
|
type: DevOpsToolContainerType;
|
|
3981
4018
|
};
|
|
3982
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
4019
|
+
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
3983
4020
|
__typename?: 'DevOpsToolUnavailable';
|
|
3984
4021
|
id: Scalars['ID'];
|
|
3985
4022
|
name: Scalars['String'];
|
|
@@ -3990,27 +4027,23 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3990
4027
|
export declare type DevOpsTools = {
|
|
3991
4028
|
__typename?: 'DevOpsTools';
|
|
3992
4029
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3993
|
-
|
|
3994
|
-
|
|
4030
|
+
tool?: Maybe<DevOpsTool>;
|
|
4031
|
+
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4032
|
+
container?: Maybe<DevOpsToolContainer>;
|
|
3995
4033
|
};
|
|
3996
4034
|
export declare type DevOpsToolsToolsArgs = {
|
|
3997
4035
|
cloudId: Scalars['ID'];
|
|
3998
4036
|
first?: Maybe<Scalars['Int']>;
|
|
3999
4037
|
after?: Maybe<Scalars['String']>;
|
|
4000
4038
|
};
|
|
4001
|
-
export declare type
|
|
4002
|
-
|
|
4003
|
-
toolId: Scalars['String'];
|
|
4004
|
-
first?: Maybe<Scalars['Int']>;
|
|
4005
|
-
after?: Maybe<Scalars['String']>;
|
|
4039
|
+
export declare type DevOpsToolsToolArgs = {
|
|
4040
|
+
id: Scalars['ID'];
|
|
4006
4041
|
};
|
|
4007
|
-
export declare type
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
first?: Maybe<Scalars['Int']>;
|
|
4013
|
-
after?: Maybe<Scalars['String']>;
|
|
4042
|
+
export declare type DevOpsToolsNamespaceArgs = {
|
|
4043
|
+
id: Scalars['ID'];
|
|
4044
|
+
};
|
|
4045
|
+
export declare type DevOpsToolsContainerArgs = {
|
|
4046
|
+
id: Scalars['ID'];
|
|
4014
4047
|
};
|
|
4015
4048
|
export declare type DevStatus = {
|
|
4016
4049
|
__typename?: 'DevStatus';
|
|
@@ -4773,7 +4806,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
4773
4806
|
node?: Maybe<JiraAffectedService>;
|
|
4774
4807
|
cursor: Scalars['String'];
|
|
4775
4808
|
};
|
|
4776
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4809
|
+
export declare type JiraAffectedServicesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4777
4810
|
__typename?: 'JiraAffectedServicesField';
|
|
4778
4811
|
id: Scalars['ID'];
|
|
4779
4812
|
fieldId: Scalars['String'];
|
|
@@ -4833,7 +4866,7 @@ export declare type JiraAssetEdge = {
|
|
|
4833
4866
|
node?: Maybe<JiraAsset>;
|
|
4834
4867
|
cursor: Scalars['String'];
|
|
4835
4868
|
};
|
|
4836
|
-
export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4869
|
+
export declare type JiraAssetField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4837
4870
|
__typename?: 'JiraAssetField';
|
|
4838
4871
|
id: Scalars['ID'];
|
|
4839
4872
|
fieldId: Scalars['String'];
|
|
@@ -4870,7 +4903,7 @@ export declare type JiraAtlassianTeamEdge = {
|
|
|
4870
4903
|
node?: Maybe<JiraAtlassianTeam>;
|
|
4871
4904
|
cursor: Scalars['String'];
|
|
4872
4905
|
};
|
|
4873
|
-
export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4906
|
+
export declare type JiraAtlassianTeamField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4874
4907
|
__typename?: 'JiraAtlassianTeamField';
|
|
4875
4908
|
id: Scalars['ID'];
|
|
4876
4909
|
fieldId: Scalars['String'];
|
|
@@ -4913,7 +4946,7 @@ export declare type JiraAttachmentEdge = {
|
|
|
4913
4946
|
node?: Maybe<JiraAttachment>;
|
|
4914
4947
|
cursor: Scalars['String'];
|
|
4915
4948
|
};
|
|
4916
|
-
export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4949
|
+
export declare type JiraAttachmentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4917
4950
|
__typename?: 'JiraAttachmentsField';
|
|
4918
4951
|
id: Scalars['ID'];
|
|
4919
4952
|
fieldId: Scalars['String'];
|
|
@@ -4948,7 +4981,7 @@ export declare type JiraAvatar = {
|
|
|
4948
4981
|
medium?: Maybe<Scalars['String']>;
|
|
4949
4982
|
large?: Maybe<Scalars['String']>;
|
|
4950
4983
|
};
|
|
4951
|
-
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4984
|
+
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4952
4985
|
__typename?: 'JiraCMDBField';
|
|
4953
4986
|
id: Scalars['ID'];
|
|
4954
4987
|
fieldId: Scalars['String'];
|
|
@@ -4991,7 +5024,7 @@ export declare type JiraCascadingOptionsEdge = {
|
|
|
4991
5024
|
node?: Maybe<JiraCascadingOptions>;
|
|
4992
5025
|
cursor: Scalars['String'];
|
|
4993
5026
|
};
|
|
4994
|
-
export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5027
|
+
export declare type JiraCascadingSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4995
5028
|
__typename?: 'JiraCascadingSelectField';
|
|
4996
5029
|
id: Scalars['ID'];
|
|
4997
5030
|
fieldId: Scalars['String'];
|
|
@@ -5019,7 +5052,7 @@ export declare type JiraCascadingSelectOptionsFilter = {
|
|
|
5019
5052
|
optionType: JiraCascadingSelectOptionType;
|
|
5020
5053
|
parentOptionName?: Maybe<Scalars['String']>;
|
|
5021
5054
|
};
|
|
5022
|
-
export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5055
|
+
export declare type JiraCheckboxesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5023
5056
|
__typename?: 'JiraCheckboxesField';
|
|
5024
5057
|
id: Scalars['ID'];
|
|
5025
5058
|
fieldId: Scalars['String'];
|
|
@@ -5070,7 +5103,7 @@ export declare type JiraColor = {
|
|
|
5070
5103
|
id?: Maybe<Scalars['ID']>;
|
|
5071
5104
|
colorKey?: Maybe<Scalars['String']>;
|
|
5072
5105
|
};
|
|
5073
|
-
export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5106
|
+
export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5074
5107
|
__typename?: 'JiraColorField';
|
|
5075
5108
|
id: Scalars['ID'];
|
|
5076
5109
|
fieldId: Scalars['String'];
|
|
@@ -5120,7 +5153,7 @@ export declare type JiraComponentEdge = {
|
|
|
5120
5153
|
node?: Maybe<JiraComponent>;
|
|
5121
5154
|
cursor: Scalars['String'];
|
|
5122
5155
|
};
|
|
5123
|
-
export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5156
|
+
export declare type JiraComponentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5124
5157
|
__typename?: 'JiraComponentsField';
|
|
5125
5158
|
id: Scalars['ID'];
|
|
5126
5159
|
fieldId: Scalars['String'];
|
|
@@ -5147,7 +5180,7 @@ export declare type JiraComponentsFieldComponentsArgs = {
|
|
|
5147
5180
|
last?: Maybe<Scalars['Int']>;
|
|
5148
5181
|
before?: Maybe<Scalars['String']>;
|
|
5149
5182
|
};
|
|
5150
|
-
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5183
|
+
export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5151
5184
|
__typename?: 'JiraConnectMultipleSelectField';
|
|
5152
5185
|
id: Scalars['ID'];
|
|
5153
5186
|
fieldId: Scalars['String'];
|
|
@@ -5175,7 +5208,7 @@ export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
|
5175
5208
|
last?: Maybe<Scalars['Int']>;
|
|
5176
5209
|
before?: Maybe<Scalars['String']>;
|
|
5177
5210
|
};
|
|
5178
|
-
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5211
|
+
export declare type JiraConnectNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5179
5212
|
__typename?: 'JiraConnectNumberField';
|
|
5180
5213
|
id: Scalars['ID'];
|
|
5181
5214
|
fieldId: Scalars['String'];
|
|
@@ -5187,7 +5220,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
5187
5220
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5188
5221
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5189
5222
|
};
|
|
5190
|
-
export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5223
|
+
export declare type JiraConnectRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5191
5224
|
__typename?: 'JiraConnectRichTextField';
|
|
5192
5225
|
id: Scalars['ID'];
|
|
5193
5226
|
fieldId: Scalars['String'];
|
|
@@ -5201,7 +5234,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
5201
5234
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5202
5235
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5203
5236
|
};
|
|
5204
|
-
export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5237
|
+
export declare type JiraConnectSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5205
5238
|
__typename?: 'JiraConnectSingleSelectField';
|
|
5206
5239
|
id: Scalars['ID'];
|
|
5207
5240
|
fieldId: Scalars['String'];
|
|
@@ -5222,7 +5255,7 @@ export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
|
5222
5255
|
last?: Maybe<Scalars['Int']>;
|
|
5223
5256
|
before?: Maybe<Scalars['String']>;
|
|
5224
5257
|
};
|
|
5225
|
-
export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5258
|
+
export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5226
5259
|
__typename?: 'JiraConnectTextField';
|
|
5227
5260
|
id: Scalars['ID'];
|
|
5228
5261
|
fieldId: Scalars['String'];
|
|
@@ -5234,7 +5267,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5234
5267
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5235
5268
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5236
5269
|
};
|
|
5237
|
-
export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5270
|
+
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5238
5271
|
__typename?: 'JiraDatePickerField';
|
|
5239
5272
|
id: Scalars['ID'];
|
|
5240
5273
|
fieldId: Scalars['String'];
|
|
@@ -5246,7 +5279,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
5246
5279
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5247
5280
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5248
5281
|
};
|
|
5249
|
-
export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5282
|
+
export declare type JiraDateTimePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5250
5283
|
__typename?: 'JiraDateTimePickerField';
|
|
5251
5284
|
id: Scalars['ID'];
|
|
5252
5285
|
fieldId: Scalars['String'];
|
|
@@ -5268,6 +5301,7 @@ export declare type JiraDevOpsIssuePanel = {
|
|
|
5268
5301
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
5269
5302
|
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
5270
5303
|
devSummaryResult?: Maybe<JiraIssueDevSummaryResult>;
|
|
5304
|
+
hasBranchCapabilities?: Maybe<Scalars['Boolean']>;
|
|
5271
5305
|
};
|
|
5272
5306
|
export declare enum JiraDevOpsIssuePanelBannerType {
|
|
5273
5307
|
IssueKeyOnboarding = "ISSUE_KEY_ONBOARDING"
|
|
@@ -5295,7 +5329,7 @@ export declare type JiraDevOpsQuery = {
|
|
|
5295
5329
|
export declare type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
5296
5330
|
issueId: Scalars['ID'];
|
|
5297
5331
|
};
|
|
5298
|
-
export declare type JiraDevSummaryField = JiraIssueField & {
|
|
5332
|
+
export declare type JiraDevSummaryField = Node & JiraIssueField & {
|
|
5299
5333
|
__typename?: 'JiraDevSummaryField';
|
|
5300
5334
|
id: Scalars['ID'];
|
|
5301
5335
|
fieldId: Scalars['String'];
|
|
@@ -5335,7 +5369,7 @@ export declare type JiraEpicEdge = {
|
|
|
5335
5369
|
node?: Maybe<JiraEpic>;
|
|
5336
5370
|
cursor: Scalars['String'];
|
|
5337
5371
|
};
|
|
5338
|
-
export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5372
|
+
export declare type JiraEpicLinkField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5339
5373
|
__typename?: 'JiraEpicLinkField';
|
|
5340
5374
|
id: Scalars['ID'];
|
|
5341
5375
|
fieldId: Scalars['String'];
|
|
@@ -5375,7 +5409,7 @@ export declare type JiraFlag = {
|
|
|
5375
5409
|
__typename?: 'JiraFlag';
|
|
5376
5410
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
5377
5411
|
};
|
|
5378
|
-
export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5412
|
+
export declare type JiraFlagField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5379
5413
|
__typename?: 'JiraFlagField';
|
|
5380
5414
|
id: Scalars['ID'];
|
|
5381
5415
|
fieldId: Scalars['String'];
|
|
@@ -5387,7 +5421,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
5387
5421
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5388
5422
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5389
5423
|
};
|
|
5390
|
-
export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5424
|
+
export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5391
5425
|
__typename?: 'JiraForgeDatetimeField';
|
|
5392
5426
|
id: Scalars['ID'];
|
|
5393
5427
|
fieldId: Scalars['String'];
|
|
@@ -5399,7 +5433,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
5399
5433
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5400
5434
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5401
5435
|
};
|
|
5402
|
-
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5436
|
+
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5403
5437
|
__typename?: 'JiraForgeGroupField';
|
|
5404
5438
|
id: Scalars['ID'];
|
|
5405
5439
|
fieldId: Scalars['String'];
|
|
@@ -5420,7 +5454,7 @@ export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
|
5420
5454
|
last?: Maybe<Scalars['Int']>;
|
|
5421
5455
|
before?: Maybe<Scalars['String']>;
|
|
5422
5456
|
};
|
|
5423
|
-
export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5457
|
+
export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5424
5458
|
__typename?: 'JiraForgeGroupsField';
|
|
5425
5459
|
id: Scalars['ID'];
|
|
5426
5460
|
fieldId: Scalars['String'];
|
|
@@ -5448,7 +5482,7 @@ export declare type JiraForgeGroupsFieldGroupsArgs = {
|
|
|
5448
5482
|
last?: Maybe<Scalars['Int']>;
|
|
5449
5483
|
before?: Maybe<Scalars['String']>;
|
|
5450
5484
|
};
|
|
5451
|
-
export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5485
|
+
export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5452
5486
|
__typename?: 'JiraForgeNumberField';
|
|
5453
5487
|
id: Scalars['ID'];
|
|
5454
5488
|
fieldId: Scalars['String'];
|
|
@@ -5460,7 +5494,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5460
5494
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5461
5495
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5462
5496
|
};
|
|
5463
|
-
export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5497
|
+
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5464
5498
|
__typename?: 'JiraForgeObjectField';
|
|
5465
5499
|
id: Scalars['ID'];
|
|
5466
5500
|
fieldId: Scalars['String'];
|
|
@@ -5472,7 +5506,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5472
5506
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5473
5507
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5474
5508
|
};
|
|
5475
|
-
export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5509
|
+
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5476
5510
|
__typename?: 'JiraForgeStringField';
|
|
5477
5511
|
id: Scalars['ID'];
|
|
5478
5512
|
fieldId: Scalars['String'];
|
|
@@ -5484,7 +5518,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
5484
5518
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5485
5519
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5486
5520
|
};
|
|
5487
|
-
export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5521
|
+
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5488
5522
|
__typename?: 'JiraForgeStringsField';
|
|
5489
5523
|
id: Scalars['ID'];
|
|
5490
5524
|
fieldId: Scalars['String'];
|
|
@@ -5513,7 +5547,7 @@ export declare type JiraForgeStringsFieldLabelsArgs = {
|
|
|
5513
5547
|
before?: Maybe<Scalars['String']>;
|
|
5514
5548
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
5515
5549
|
};
|
|
5516
|
-
export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5550
|
+
export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5517
5551
|
__typename?: 'JiraForgeUserField';
|
|
5518
5552
|
id: Scalars['ID'];
|
|
5519
5553
|
fieldId: Scalars['String'];
|
|
@@ -5535,7 +5569,7 @@ export declare type JiraForgeUserFieldUsersArgs = {
|
|
|
5535
5569
|
before?: Maybe<Scalars['String']>;
|
|
5536
5570
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
5537
5571
|
};
|
|
5538
|
-
export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5572
|
+
export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5539
5573
|
__typename?: 'JiraForgeUsersField';
|
|
5540
5574
|
id: Scalars['ID'];
|
|
5541
5575
|
fieldId: Scalars['String'];
|
|
@@ -5903,7 +5937,7 @@ export declare type JiraIssueLinkEdge = {
|
|
|
5903
5937
|
node?: Maybe<JiraIssueLink>;
|
|
5904
5938
|
cursor: Scalars['String'];
|
|
5905
5939
|
};
|
|
5906
|
-
export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5940
|
+
export declare type JiraIssueLinkField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5907
5941
|
__typename?: 'JiraIssueLinkField';
|
|
5908
5942
|
id: Scalars['ID'];
|
|
5909
5943
|
fieldId: Scalars['String'];
|
|
@@ -5971,7 +6005,7 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
5971
6005
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
5972
6006
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
5973
6007
|
};
|
|
5974
|
-
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6008
|
+
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5975
6009
|
__typename?: 'JiraIssueRestrictionField';
|
|
5976
6010
|
id: Scalars['ID'];
|
|
5977
6011
|
fieldId: Scalars['String'];
|
|
@@ -6029,7 +6063,7 @@ export declare type JiraIssueTypeEdge = {
|
|
|
6029
6063
|
node?: Maybe<JiraIssueType>;
|
|
6030
6064
|
cursor: Scalars['String'];
|
|
6031
6065
|
};
|
|
6032
|
-
export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
6066
|
+
export declare type JiraIssueTypeField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
6033
6067
|
__typename?: 'JiraIssueTypeField';
|
|
6034
6068
|
id: Scalars['ID'];
|
|
6035
6069
|
fieldId: Scalars['String'];
|
|
@@ -6487,7 +6521,7 @@ export declare type JiraLabelEdge = {
|
|
|
6487
6521
|
node?: Maybe<JiraLabel>;
|
|
6488
6522
|
cursor: Scalars['String'];
|
|
6489
6523
|
};
|
|
6490
|
-
export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6524
|
+
export declare type JiraLabelsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6491
6525
|
__typename?: 'JiraLabelsField';
|
|
6492
6526
|
id: Scalars['ID'];
|
|
6493
6527
|
fieldId: Scalars['String'];
|
|
@@ -6529,7 +6563,7 @@ export declare type JiraMediaUploadToken = {
|
|
|
6529
6563
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
6530
6564
|
};
|
|
6531
6565
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
6532
|
-
export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6566
|
+
export declare type JiraMultipleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6533
6567
|
__typename?: 'JiraMultipleGroupPickerField';
|
|
6534
6568
|
id: Scalars['ID'];
|
|
6535
6569
|
fieldId: Scalars['String'];
|
|
@@ -6557,7 +6591,7 @@ export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
|
6557
6591
|
last?: Maybe<Scalars['Int']>;
|
|
6558
6592
|
before?: Maybe<Scalars['String']>;
|
|
6559
6593
|
};
|
|
6560
|
-
export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6594
|
+
export declare type JiraMultipleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6561
6595
|
__typename?: 'JiraMultipleSelectField';
|
|
6562
6596
|
id: Scalars['ID'];
|
|
6563
6597
|
fieldId: Scalars['String'];
|
|
@@ -6585,7 +6619,7 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
|
6585
6619
|
last?: Maybe<Scalars['Int']>;
|
|
6586
6620
|
before?: Maybe<Scalars['String']>;
|
|
6587
6621
|
};
|
|
6588
|
-
export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6622
|
+
export declare type JiraMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6589
6623
|
__typename?: 'JiraMultipleSelectUserPickerField';
|
|
6590
6624
|
id: Scalars['ID'];
|
|
6591
6625
|
fieldId: Scalars['String'];
|
|
@@ -6614,7 +6648,7 @@ export declare type JiraMultipleSelectUserPickerFieldUsersArgs = {
|
|
|
6614
6648
|
before?: Maybe<Scalars['String']>;
|
|
6615
6649
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6616
6650
|
};
|
|
6617
|
-
export declare type JiraMultipleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6651
|
+
export declare type JiraMultipleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6618
6652
|
__typename?: 'JiraMultipleVersionPickerField';
|
|
6619
6653
|
id: Scalars['ID'];
|
|
6620
6654
|
fieldId: Scalars['String'];
|
|
@@ -6663,7 +6697,7 @@ export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
|
6663
6697
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
6664
6698
|
input: JiraUpdateVersionWarningConfigInput;
|
|
6665
6699
|
};
|
|
6666
|
-
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6700
|
+
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6667
6701
|
__typename?: 'JiraNumberField';
|
|
6668
6702
|
id: Scalars['ID'];
|
|
6669
6703
|
fieldId: Scalars['String'];
|
|
@@ -6832,7 +6866,7 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
6832
6866
|
export declare type JiraOrderDirection = {
|
|
6833
6867
|
id?: Maybe<Scalars['ID']>;
|
|
6834
6868
|
};
|
|
6835
|
-
export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6869
|
+
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6836
6870
|
__typename?: 'JiraParentIssueField';
|
|
6837
6871
|
id: Scalars['ID'];
|
|
6838
6872
|
fieldId: Scalars['String'];
|
|
@@ -6844,7 +6878,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
6844
6878
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6845
6879
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6846
6880
|
};
|
|
6847
|
-
export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6881
|
+
export declare type JiraPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6848
6882
|
__typename?: 'JiraPeopleField';
|
|
6849
6883
|
id: Scalars['ID'];
|
|
6850
6884
|
fieldId: Scalars['String'];
|
|
@@ -7035,7 +7069,7 @@ export declare type JiraPriorityEdge = {
|
|
|
7035
7069
|
node?: Maybe<JiraPriority>;
|
|
7036
7070
|
cursor: Scalars['String'];
|
|
7037
7071
|
};
|
|
7038
|
-
export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7072
|
+
export declare type JiraPriorityField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7039
7073
|
__typename?: 'JiraPriorityField';
|
|
7040
7074
|
id: Scalars['ID'];
|
|
7041
7075
|
fieldId: Scalars['String'];
|
|
@@ -7195,7 +7229,7 @@ export declare type JiraProjectEdge = {
|
|
|
7195
7229
|
node?: Maybe<JiraProject>;
|
|
7196
7230
|
cursor: Scalars['String'];
|
|
7197
7231
|
};
|
|
7198
|
-
export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7232
|
+
export declare type JiraProjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7199
7233
|
__typename?: 'JiraProjectField';
|
|
7200
7234
|
id: Scalars['ID'];
|
|
7201
7235
|
fieldId: Scalars['String'];
|
|
@@ -7374,7 +7408,7 @@ export declare type JiraQueryVersionArgs = {
|
|
|
7374
7408
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7375
7409
|
versionId: Scalars['ID'];
|
|
7376
7410
|
};
|
|
7377
|
-
export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7411
|
+
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7378
7412
|
__typename?: 'JiraRadioSelectField';
|
|
7379
7413
|
id: Scalars['ID'];
|
|
7380
7414
|
fieldId: Scalars['String'];
|
|
@@ -7527,7 +7561,7 @@ export declare type JiraResolutionEdge = {
|
|
|
7527
7561
|
node?: Maybe<JiraResolution>;
|
|
7528
7562
|
cursor: Scalars['String'];
|
|
7529
7563
|
};
|
|
7530
|
-
export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7564
|
+
export declare type JiraResolutionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7531
7565
|
__typename?: 'JiraResolutionField';
|
|
7532
7566
|
id: Scalars['ID'];
|
|
7533
7567
|
fieldId: Scalars['String'];
|
|
@@ -7564,7 +7598,7 @@ export declare type JiraRichText = {
|
|
|
7564
7598
|
adfValue?: Maybe<JiraAdf>;
|
|
7565
7599
|
wikiValue?: Maybe<Scalars['String']>;
|
|
7566
7600
|
};
|
|
7567
|
-
export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7601
|
+
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7568
7602
|
__typename?: 'JiraRichTextField';
|
|
7569
7603
|
id: Scalars['ID'];
|
|
7570
7604
|
fieldId: Scalars['String'];
|
|
@@ -7614,7 +7648,7 @@ export declare type JiraSecurityLevelEdge = {
|
|
|
7614
7648
|
node?: Maybe<JiraSecurityLevel>;
|
|
7615
7649
|
cursor: Scalars['String'];
|
|
7616
7650
|
};
|
|
7617
|
-
export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7651
|
+
export declare type JiraSecurityLevelField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7618
7652
|
__typename?: 'JiraSecurityLevelField';
|
|
7619
7653
|
id: Scalars['ID'];
|
|
7620
7654
|
fieldId: Scalars['String'];
|
|
@@ -7640,12 +7674,13 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
7640
7674
|
name?: Maybe<Scalars['String']>;
|
|
7641
7675
|
finalDecision?: Maybe<JiraServiceManagementApprovalDecisionResponseType>;
|
|
7642
7676
|
approvers?: Maybe<JiraServiceManagementApproverConnection>;
|
|
7677
|
+
excludedApprovers?: Maybe<JiraUserConnection>;
|
|
7643
7678
|
canAnswerApproval?: Maybe<Scalars['Boolean']>;
|
|
7644
7679
|
decisions?: Maybe<JiraServiceManagementDecisionConnection>;
|
|
7645
7680
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
7646
|
-
|
|
7681
|
+
configurations?: Maybe<Array<Maybe<JiraServiceManagementApprovalConfiguration>>>;
|
|
7647
7682
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
7648
|
-
approverPrincipals?: Maybe<
|
|
7683
|
+
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
7649
7684
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
7650
7685
|
};
|
|
7651
7686
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
@@ -7655,7 +7690,7 @@ export declare type JiraServiceManagementApprovalCondition = {
|
|
|
7655
7690
|
};
|
|
7656
7691
|
export declare type JiraServiceManagementApprovalConfiguration = {
|
|
7657
7692
|
__typename?: 'JiraServiceManagementApprovalConfiguration';
|
|
7658
|
-
|
|
7693
|
+
approversConfigurations?: Maybe<Array<Maybe<JiraServiceManagementApproversConfiguration>>>;
|
|
7659
7694
|
condition?: Maybe<JiraServiceManagementApprovalCondition>;
|
|
7660
7695
|
};
|
|
7661
7696
|
export declare enum JiraServiceManagementApprovalDecisionResponseType {
|
|
@@ -7663,7 +7698,7 @@ export declare enum JiraServiceManagementApprovalDecisionResponseType {
|
|
|
7663
7698
|
Declined = "declined",
|
|
7664
7699
|
Pending = "pending"
|
|
7665
7700
|
}
|
|
7666
|
-
export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7701
|
+
export declare type JiraServiceManagementApprovalField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7667
7702
|
__typename?: 'JiraServiceManagementApprovalField';
|
|
7668
7703
|
id: Scalars['ID'];
|
|
7669
7704
|
fieldId: Scalars['String'];
|
|
@@ -7687,7 +7722,7 @@ export declare type JiraServiceManagementApprovalStatus = {
|
|
|
7687
7722
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
7688
7723
|
id?: Maybe<Scalars['String']>;
|
|
7689
7724
|
name?: Maybe<Scalars['String']>;
|
|
7690
|
-
categoryId?: Maybe<Scalars['
|
|
7725
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
7691
7726
|
};
|
|
7692
7727
|
export declare type JiraServiceManagementApprover = {
|
|
7693
7728
|
__typename?: 'JiraServiceManagementApprover';
|
|
@@ -7705,12 +7740,23 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
7705
7740
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
7706
7741
|
cursor: Scalars['String'];
|
|
7707
7742
|
};
|
|
7708
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection |
|
|
7743
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection | JiraServiceManagementGroupApproverPrincipalConnection;
|
|
7744
|
+
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
7745
|
+
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
7746
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
7747
|
+
pageInfo: PageInfo;
|
|
7748
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementApproverPrincipalEdge>>>;
|
|
7749
|
+
};
|
|
7750
|
+
export declare type JiraServiceManagementApproverPrincipalEdge = {
|
|
7751
|
+
__typename?: 'JiraServiceManagementApproverPrincipalEdge';
|
|
7752
|
+
node?: Maybe<JiraServiceManagementApproverPrincipal>;
|
|
7753
|
+
cursor: Scalars['String'];
|
|
7754
|
+
};
|
|
7709
7755
|
export declare type JiraServiceManagementApproversConfiguration = {
|
|
7710
7756
|
__typename?: 'JiraServiceManagementApproversConfiguration';
|
|
7711
7757
|
type?: Maybe<Scalars['String']>;
|
|
7712
|
-
|
|
7713
|
-
|
|
7758
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
7759
|
+
fieldId?: Maybe<Scalars['String']>;
|
|
7714
7760
|
};
|
|
7715
7761
|
export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
7716
7762
|
__typename?: 'JiraServiceManagementAttachment';
|
|
@@ -7763,7 +7809,7 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
7763
7809
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
7764
7810
|
cursor: Scalars['String'];
|
|
7765
7811
|
};
|
|
7766
|
-
export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7812
|
+
export declare type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7767
7813
|
__typename?: 'JiraServiceManagementDateTimeField';
|
|
7768
7814
|
id: Scalars['ID'];
|
|
7769
7815
|
fieldId: Scalars['String'];
|
|
@@ -7797,20 +7843,27 @@ export declare type JiraServiceManagementFeedback = {
|
|
|
7797
7843
|
};
|
|
7798
7844
|
export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
7799
7845
|
__typename?: 'JiraServiceManagementGroupApproverPrincipal';
|
|
7800
|
-
|
|
7846
|
+
groupId?: Maybe<Scalars['String']>;
|
|
7801
7847
|
name?: Maybe<Scalars['String']>;
|
|
7802
7848
|
memberCount?: Maybe<Scalars['Int']>;
|
|
7803
7849
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
7804
7850
|
};
|
|
7805
|
-
export declare type
|
|
7806
|
-
__typename?: '
|
|
7807
|
-
|
|
7851
|
+
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
7852
|
+
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
7853
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
7854
|
+
pageInfo: PageInfo;
|
|
7855
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
7856
|
+
};
|
|
7857
|
+
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
7858
|
+
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
7859
|
+
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
7860
|
+
cursor: Scalars['String'];
|
|
7808
7861
|
};
|
|
7809
7862
|
export declare type JiraServiceManagementIncident = {
|
|
7810
7863
|
__typename?: 'JiraServiceManagementIncident';
|
|
7811
7864
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
7812
7865
|
};
|
|
7813
|
-
export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7866
|
+
export declare type JiraServiceManagementIncidentLinkingField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7814
7867
|
__typename?: 'JiraServiceManagementIncidentLinkingField';
|
|
7815
7868
|
id: Scalars['ID'];
|
|
7816
7869
|
fieldId: Scalars['String'];
|
|
@@ -7826,7 +7879,7 @@ export declare type JiraServiceManagementLanguage = {
|
|
|
7826
7879
|
languageCode?: Maybe<Scalars['String']>;
|
|
7827
7880
|
displayName?: Maybe<Scalars['String']>;
|
|
7828
7881
|
};
|
|
7829
|
-
export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7882
|
+
export declare type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7830
7883
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
7831
7884
|
id: Scalars['ID'];
|
|
7832
7885
|
fieldId: Scalars['String'];
|
|
@@ -7872,7 +7925,7 @@ export declare type JiraServiceManagementOrganizationEdge = {
|
|
|
7872
7925
|
node?: Maybe<JiraServiceManagementOrganization>;
|
|
7873
7926
|
cursor: Scalars['String'];
|
|
7874
7927
|
};
|
|
7875
|
-
export declare type JiraServiceManagementOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7928
|
+
export declare type JiraServiceManagementOrganizationField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7876
7929
|
__typename?: 'JiraServiceManagementOrganizationField';
|
|
7877
7930
|
id: Scalars['ID'];
|
|
7878
7931
|
fieldId: Scalars['String'];
|
|
@@ -7901,7 +7954,7 @@ export declare type JiraServiceManagementOrganizationFieldOrganizationsArgs = {
|
|
|
7901
7954
|
before?: Maybe<Scalars['String']>;
|
|
7902
7955
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
7903
7956
|
};
|
|
7904
|
-
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7957
|
+
export declare type JiraServiceManagementPeopleField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7905
7958
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
7906
7959
|
id: Scalars['ID'];
|
|
7907
7960
|
fieldId: Scalars['String'];
|
|
@@ -7937,7 +7990,7 @@ export declare enum JiraServiceManagementPractice {
|
|
|
7937
7990
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
7938
7991
|
ChangeManagement = "CHANGE_MANAGEMENT"
|
|
7939
7992
|
}
|
|
7940
|
-
export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7993
|
+
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7941
7994
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
7942
7995
|
id: Scalars['ID'];
|
|
7943
7996
|
fieldId: Scalars['String'];
|
|
@@ -7949,7 +8002,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
7949
8002
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7950
8003
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7951
8004
|
};
|
|
7952
|
-
export declare type JiraServiceManagementRequestLanguageField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8005
|
+
export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7953
8006
|
__typename?: 'JiraServiceManagementRequestLanguageField';
|
|
7954
8007
|
id: Scalars['ID'];
|
|
7955
8008
|
fieldId: Scalars['String'];
|
|
@@ -7986,7 +8039,7 @@ export declare type JiraServiceManagementRequestTypeEdge = {
|
|
|
7986
8039
|
node?: Maybe<JiraServiceManagementRequestType>;
|
|
7987
8040
|
cursor: Scalars['String'];
|
|
7988
8041
|
};
|
|
7989
|
-
export declare type JiraServiceManagementRequestTypeField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8042
|
+
export declare type JiraServiceManagementRequestTypeField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
7990
8043
|
__typename?: 'JiraServiceManagementRequestTypeField';
|
|
7991
8044
|
id: Scalars['ID'];
|
|
7992
8045
|
fieldId: Scalars['String'];
|
|
@@ -8022,7 +8075,7 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
8022
8075
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
8023
8076
|
cursor: Scalars['String'];
|
|
8024
8077
|
};
|
|
8025
|
-
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8078
|
+
export declare type JiraServiceManagementRespondersField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8026
8079
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
8027
8080
|
id: Scalars['ID'];
|
|
8028
8081
|
fieldId: Scalars['String'];
|
|
@@ -8075,7 +8128,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
8075
8128
|
key: Scalars['String'];
|
|
8076
8129
|
value: Scalars['String'];
|
|
8077
8130
|
};
|
|
8078
|
-
export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8131
|
+
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8079
8132
|
__typename?: 'JiraSingleGroupPickerField';
|
|
8080
8133
|
id: Scalars['ID'];
|
|
8081
8134
|
fieldId: Scalars['String'];
|
|
@@ -8096,7 +8149,7 @@ export declare type JiraSingleGroupPickerFieldGroupsArgs = {
|
|
|
8096
8149
|
last?: Maybe<Scalars['Int']>;
|
|
8097
8150
|
before?: Maybe<Scalars['String']>;
|
|
8098
8151
|
};
|
|
8099
|
-
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8152
|
+
export declare type JiraSingleLineTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8100
8153
|
__typename?: 'JiraSingleLineTextField';
|
|
8101
8154
|
id: Scalars['ID'];
|
|
8102
8155
|
fieldId: Scalars['String'];
|
|
@@ -8108,7 +8161,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
8108
8161
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8109
8162
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8110
8163
|
};
|
|
8111
|
-
export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8164
|
+
export declare type JiraSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8112
8165
|
__typename?: 'JiraSingleSelectField';
|
|
8113
8166
|
id: Scalars['ID'];
|
|
8114
8167
|
fieldId: Scalars['String'];
|
|
@@ -8129,7 +8182,7 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
|
8129
8182
|
last?: Maybe<Scalars['Int']>;
|
|
8130
8183
|
before?: Maybe<Scalars['String']>;
|
|
8131
8184
|
};
|
|
8132
|
-
export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8185
|
+
export declare type JiraSingleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8133
8186
|
__typename?: 'JiraSingleSelectUserPickerField';
|
|
8134
8187
|
id: Scalars['ID'];
|
|
8135
8188
|
fieldId: Scalars['String'];
|
|
@@ -8151,7 +8204,7 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
8151
8204
|
before?: Maybe<Scalars['String']>;
|
|
8152
8205
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
8153
8206
|
};
|
|
8154
|
-
export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8207
|
+
export declare type JiraSingleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8155
8208
|
__typename?: 'JiraSingleVersionPickerField';
|
|
8156
8209
|
id: Scalars['ID'];
|
|
8157
8210
|
fieldId: Scalars['String'];
|
|
@@ -8193,7 +8246,7 @@ export declare type JiraSprintEdge = {
|
|
|
8193
8246
|
node?: Maybe<JiraSprint>;
|
|
8194
8247
|
cursor: Scalars['String'];
|
|
8195
8248
|
};
|
|
8196
|
-
export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8249
|
+
export declare type JiraSprintField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8197
8250
|
__typename?: 'JiraSprintField';
|
|
8198
8251
|
id: Scalars['ID'];
|
|
8199
8252
|
fieldId: Scalars['String'];
|
|
@@ -8250,7 +8303,7 @@ export declare enum JiraStatusCategoryColor {
|
|
|
8250
8303
|
WarmRed = "WARM_RED",
|
|
8251
8304
|
BlueGray = "BLUE_GRAY"
|
|
8252
8305
|
}
|
|
8253
|
-
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8306
|
+
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8254
8307
|
__typename?: 'JiraStatusField';
|
|
8255
8308
|
id: Scalars['ID'];
|
|
8256
8309
|
fieldId: Scalars['String'];
|
|
@@ -8262,7 +8315,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
8262
8315
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8263
8316
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8264
8317
|
};
|
|
8265
|
-
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8318
|
+
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
8266
8319
|
__typename?: 'JiraSubtasksField';
|
|
8267
8320
|
id: Scalars['ID'];
|
|
8268
8321
|
fieldId: Scalars['String'];
|
|
@@ -8299,7 +8352,7 @@ export declare type JiraTeamEdge = {
|
|
|
8299
8352
|
node?: Maybe<JiraTeam>;
|
|
8300
8353
|
cursor: Scalars['String'];
|
|
8301
8354
|
};
|
|
8302
|
-
export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8355
|
+
export declare type JiraTeamField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8303
8356
|
__typename?: 'JiraTeamField';
|
|
8304
8357
|
id: Scalars['ID'];
|
|
8305
8358
|
fieldId: Scalars['String'];
|
|
@@ -8325,7 +8378,7 @@ export declare enum JiraTimeFormat {
|
|
|
8325
8378
|
Days = "DAYS",
|
|
8326
8379
|
Hours = "HOURS"
|
|
8327
8380
|
}
|
|
8328
|
-
export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8381
|
+
export declare type JiraTimeTrackingField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8329
8382
|
__typename?: 'JiraTimeTrackingField';
|
|
8330
8383
|
id: Scalars['ID'];
|
|
8331
8384
|
fieldId: Scalars['String'];
|
|
@@ -8363,7 +8416,7 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
|
|
|
8363
8416
|
success: Scalars['Boolean'];
|
|
8364
8417
|
errors?: Maybe<Array<MutationError>>;
|
|
8365
8418
|
};
|
|
8366
|
-
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8419
|
+
export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8367
8420
|
__typename?: 'JiraUrlField';
|
|
8368
8421
|
id: Scalars['ID'];
|
|
8369
8422
|
fieldId: Scalars['String'];
|
|
@@ -8488,7 +8541,7 @@ export declare type JiraVote = {
|
|
|
8488
8541
|
hasVoted?: Maybe<Scalars['Boolean']>;
|
|
8489
8542
|
count?: Maybe<Scalars['Long']>;
|
|
8490
8543
|
};
|
|
8491
|
-
export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8544
|
+
export declare type JiraVotesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8492
8545
|
__typename?: 'JiraVotesField';
|
|
8493
8546
|
id: Scalars['ID'];
|
|
8494
8547
|
fieldId: Scalars['String'];
|
|
@@ -8505,7 +8558,7 @@ export declare type JiraWatch = {
|
|
|
8505
8558
|
isWatching?: Maybe<Scalars['Boolean']>;
|
|
8506
8559
|
count?: Maybe<Scalars['Long']>;
|
|
8507
8560
|
};
|
|
8508
|
-
export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8561
|
+
export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8509
8562
|
__typename?: 'JiraWatchesField';
|
|
8510
8563
|
id: Scalars['ID'];
|
|
8511
8564
|
fieldId: Scalars['String'];
|
|
@@ -12065,6 +12118,7 @@ export declare type TenantContext = {
|
|
|
12065
12118
|
__typename?: 'TenantContext';
|
|
12066
12119
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12067
12120
|
hostName?: Maybe<Scalars['String']>;
|
|
12121
|
+
cloudUrl?: Maybe<Scalars['URL']>;
|
|
12068
12122
|
orgId?: Maybe<Scalars['ID']>;
|
|
12069
12123
|
};
|
|
12070
12124
|
export declare type Testing = {
|