@forge/cli-shared 2.2.2 → 2.3.0-next.10
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 +82 -0
- package/out/apps/template.d.ts +4 -2
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +33 -21
- package/out/config/config-file.js +8 -8
- package/out/config/config.d.ts +2 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +3 -2
- package/out/graphql/graphql-types.d.ts +320 -82
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -13
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +4 -4
|
@@ -211,11 +211,11 @@ export declare enum ActivityEventType {
|
|
|
211
211
|
}
|
|
212
212
|
export declare type ActivityFilter = {
|
|
213
213
|
actors?: Maybe<Array<Scalars['ID']>>;
|
|
214
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
214
215
|
type?: Maybe<ActivitiesFilterType>;
|
|
215
216
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
216
217
|
};
|
|
217
218
|
export declare type ActivityFilterArgs = {
|
|
218
|
-
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
219
219
|
products?: Maybe<Array<Scalars['String']>>;
|
|
220
220
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
221
221
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
@@ -1569,6 +1569,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1569
1569
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1570
1570
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1571
1571
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1572
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1572
1573
|
};
|
|
1573
1574
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1574
1575
|
cloudId: Scalars['ID'];
|
|
@@ -1715,6 +1716,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1715
1716
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1716
1717
|
input: CompassInsertMetricValueInput;
|
|
1717
1718
|
};
|
|
1719
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1720
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1721
|
+
};
|
|
1718
1722
|
export declare type CompassCatalogQueryApi = {
|
|
1719
1723
|
__typename?: 'CompassCatalogQueryApi';
|
|
1720
1724
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1855,8 +1859,8 @@ export declare type CompassCreateAlertEventInput = {
|
|
|
1855
1859
|
displayName: Scalars['String'];
|
|
1856
1860
|
lastUpdated: Scalars['DateTime'];
|
|
1857
1861
|
updateSequenceNumber: Scalars['Long'];
|
|
1858
|
-
description
|
|
1859
|
-
url
|
|
1862
|
+
description: Scalars['String'];
|
|
1863
|
+
url: Scalars['URL'];
|
|
1860
1864
|
externalEventSourceId: Scalars['ID'];
|
|
1861
1865
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
1862
1866
|
};
|
|
@@ -1876,8 +1880,8 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1876
1880
|
displayName: Scalars['String'];
|
|
1877
1881
|
lastUpdated: Scalars['DateTime'];
|
|
1878
1882
|
updateSequenceNumber: Scalars['Long'];
|
|
1879
|
-
description
|
|
1880
|
-
url
|
|
1883
|
+
description: Scalars['String'];
|
|
1884
|
+
url: Scalars['URL'];
|
|
1881
1885
|
externalEventSourceId: Scalars['ID'];
|
|
1882
1886
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1883
1887
|
};
|
|
@@ -1885,8 +1889,8 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1885
1889
|
displayName: Scalars['String'];
|
|
1886
1890
|
lastUpdated: Scalars['DateTime'];
|
|
1887
1891
|
updateSequenceNumber: Scalars['Long'];
|
|
1888
|
-
description
|
|
1889
|
-
url
|
|
1892
|
+
description: Scalars['String'];
|
|
1893
|
+
url: Scalars['URL'];
|
|
1890
1894
|
externalEventSourceId: Scalars['ID'];
|
|
1891
1895
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1892
1896
|
};
|
|
@@ -1918,8 +1922,8 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1918
1922
|
displayName: Scalars['String'];
|
|
1919
1923
|
lastUpdated: Scalars['DateTime'];
|
|
1920
1924
|
updateSequenceNumber: Scalars['Long'];
|
|
1921
|
-
description
|
|
1922
|
-
url
|
|
1925
|
+
description: Scalars['String'];
|
|
1926
|
+
url: Scalars['URL'];
|
|
1923
1927
|
externalEventSourceId: Scalars['ID'];
|
|
1924
1928
|
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1925
1929
|
};
|
|
@@ -1931,8 +1935,8 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1931
1935
|
displayName: Scalars['String'];
|
|
1932
1936
|
lastUpdated: Scalars['DateTime'];
|
|
1933
1937
|
updateSequenceNumber: Scalars['Long'];
|
|
1934
|
-
description
|
|
1935
|
-
url
|
|
1938
|
+
description: Scalars['String'];
|
|
1939
|
+
url: Scalars['URL'];
|
|
1936
1940
|
externalEventSourceId: Scalars['ID'];
|
|
1937
1941
|
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1938
1942
|
};
|
|
@@ -1944,8 +1948,8 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
1944
1948
|
displayName: Scalars['String'];
|
|
1945
1949
|
lastUpdated: Scalars['DateTime'];
|
|
1946
1950
|
updateSequenceNumber: Scalars['Long'];
|
|
1947
|
-
description
|
|
1948
|
-
url
|
|
1951
|
+
description: Scalars['String'];
|
|
1952
|
+
url: Scalars['URL'];
|
|
1949
1953
|
externalEventSourceId: Scalars['ID'];
|
|
1950
1954
|
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1951
1955
|
};
|
|
@@ -2661,6 +2665,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2661
2665
|
after?: Maybe<Scalars['String']>;
|
|
2662
2666
|
};
|
|
2663
2667
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2668
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2669
|
+
cloudId: Scalars['ID'];
|
|
2670
|
+
forgeAppId: Scalars['ID'];
|
|
2671
|
+
};
|
|
2672
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2673
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2674
|
+
success: Scalars['Boolean'];
|
|
2675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2676
|
+
};
|
|
2664
2677
|
export declare type CompassTeamCheckin = {
|
|
2665
2678
|
__typename?: 'CompassTeamCheckin';
|
|
2666
2679
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -2929,6 +2942,17 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2929
2942
|
errors?: Maybe<Array<MutationError>>;
|
|
2930
2943
|
success: Scalars['Boolean'];
|
|
2931
2944
|
};
|
|
2945
|
+
export declare type ConfluenceCreateUserPropertyInput = {
|
|
2946
|
+
key: Scalars['String'];
|
|
2947
|
+
userId: Scalars['String'];
|
|
2948
|
+
value: Scalars['String'];
|
|
2949
|
+
};
|
|
2950
|
+
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
2951
|
+
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
2952
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
2953
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2954
|
+
success: Scalars['Boolean'];
|
|
2955
|
+
};
|
|
2932
2956
|
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2933
2957
|
id: Scalars['ID'];
|
|
2934
2958
|
status: ConfluenceMutationContentStatus;
|
|
@@ -2947,6 +2971,14 @@ export declare type ConfluenceDeletePagePayload = Payload & {
|
|
|
2947
2971
|
errors?: Maybe<Array<MutationError>>;
|
|
2948
2972
|
success: Scalars['Boolean'];
|
|
2949
2973
|
};
|
|
2974
|
+
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
2975
|
+
id: Scalars['ID'];
|
|
2976
|
+
};
|
|
2977
|
+
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
2978
|
+
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
2979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2980
|
+
success: Scalars['Boolean'];
|
|
2981
|
+
};
|
|
2950
2982
|
export declare type ConfluenceInlineTask = {
|
|
2951
2983
|
__typename?: 'ConfluenceInlineTask';
|
|
2952
2984
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2989,6 +3021,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
2989
3021
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2990
3022
|
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2991
3023
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3024
|
+
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3025
|
+
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3026
|
+
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
2992
3027
|
};
|
|
2993
3028
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2994
3029
|
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
@@ -3046,6 +3081,16 @@ export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
|
3046
3081
|
cloudId: Scalars['ID'];
|
|
3047
3082
|
input: ConfluenceUpdateSpaceInput;
|
|
3048
3083
|
};
|
|
3084
|
+
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
3085
|
+
cloudId: Scalars['String'];
|
|
3086
|
+
input: ConfluenceCreateUserPropertyInput;
|
|
3087
|
+
};
|
|
3088
|
+
export declare type ConfluenceMutationApiConfluenceUpdateValueUserPropertyArgs = {
|
|
3089
|
+
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3090
|
+
};
|
|
3091
|
+
export declare type ConfluenceMutationApiConfluenceDeleteUserPropertyArgs = {
|
|
3092
|
+
input: ConfluenceDeleteUserPropertyInput;
|
|
3093
|
+
};
|
|
3049
3094
|
export declare enum ConfluenceMutationContentStatus {
|
|
3050
3095
|
Current = "CURRENT",
|
|
3051
3096
|
Draft = "DRAFT"
|
|
@@ -3144,6 +3189,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
3144
3189
|
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3145
3190
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3146
3191
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3192
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3193
|
+
confluenceUserProperties: Array<Maybe<ConfluenceUserProperty>>;
|
|
3147
3194
|
};
|
|
3148
3195
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3149
3196
|
id: Scalars['ID'];
|
|
@@ -3172,6 +3219,12 @@ export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
|
3172
3219
|
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
3173
3220
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3174
3221
|
};
|
|
3222
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
3223
|
+
id: Scalars['ID'];
|
|
3224
|
+
};
|
|
3225
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
3226
|
+
ids: Array<Scalars['ID']>;
|
|
3227
|
+
};
|
|
3175
3228
|
export declare type ConfluenceSpace = {
|
|
3176
3229
|
__typename?: 'ConfluenceSpace';
|
|
3177
3230
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
@@ -3281,11 +3334,30 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
3281
3334
|
errors?: Maybe<Array<MutationError>>;
|
|
3282
3335
|
success: Scalars['Boolean'];
|
|
3283
3336
|
};
|
|
3337
|
+
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3338
|
+
id: Scalars['ID'];
|
|
3339
|
+
value: Scalars['String'];
|
|
3340
|
+
};
|
|
3341
|
+
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3342
|
+
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3343
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3344
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3345
|
+
success: Scalars['Boolean'];
|
|
3346
|
+
};
|
|
3284
3347
|
export declare type ConfluenceUserInfo = {
|
|
3285
3348
|
__typename?: 'ConfluenceUserInfo';
|
|
3286
3349
|
user?: Maybe<User>;
|
|
3287
3350
|
personalSpace?: Maybe<ConfluenceSpace>;
|
|
3288
3351
|
};
|
|
3352
|
+
export declare type ConfluenceUserProperty = {
|
|
3353
|
+
__typename?: 'ConfluenceUserProperty';
|
|
3354
|
+
createdDate: Scalars['String'];
|
|
3355
|
+
id: Scalars['ID'];
|
|
3356
|
+
key: Scalars['String'];
|
|
3357
|
+
lastModifiedDate: Scalars['String'];
|
|
3358
|
+
propertyId: Scalars['ID'];
|
|
3359
|
+
value: Scalars['String'];
|
|
3360
|
+
};
|
|
3289
3361
|
export declare type ConnectAppScope = {
|
|
3290
3362
|
__typename?: 'ConnectAppScope';
|
|
3291
3363
|
scopeId: Scalars['ID'];
|
|
@@ -3879,7 +3951,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3879
3951
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3880
3952
|
};
|
|
3881
3953
|
export declare type CreateEventSourceInput = {
|
|
3882
|
-
cloudId
|
|
3954
|
+
cloudId: Scalars['ID'];
|
|
3883
3955
|
externalEventSourceId: Scalars['ID'];
|
|
3884
3956
|
eventType: CompassEventType;
|
|
3885
3957
|
};
|
|
@@ -4335,7 +4407,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
4335
4407
|
errors?: Maybe<Array<MutationError>>;
|
|
4336
4408
|
};
|
|
4337
4409
|
export declare type DeleteEventSourceInput = {
|
|
4338
|
-
cloudId
|
|
4410
|
+
cloudId: Scalars['ID'];
|
|
4339
4411
|
externalEventSourceId: Scalars['ID'];
|
|
4340
4412
|
eventType: CompassEventType;
|
|
4341
4413
|
};
|
|
@@ -4958,7 +5030,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4958
5030
|
name?: Maybe<Scalars['String']>;
|
|
4959
5031
|
avatar?: Maybe<DevOpsAvatar>;
|
|
4960
5032
|
};
|
|
4961
|
-
export declare type DevOpsTool = {
|
|
5033
|
+
export declare type DevOpsTool = Node & {
|
|
5034
|
+
__typename?: 'DevOpsTool';
|
|
4962
5035
|
id: Scalars['ID'];
|
|
4963
5036
|
name: Scalars['String'];
|
|
4964
5037
|
productKey: Scalars['String'];
|
|
@@ -4966,7 +5039,6 @@ export declare type DevOpsTool = {
|
|
|
4966
5039
|
group: DevOpsToolGroup;
|
|
4967
5040
|
supportsContainers: Scalars['Boolean'];
|
|
4968
5041
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4969
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4970
5042
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4971
5043
|
};
|
|
4972
5044
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -4974,23 +5046,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
4974
5046
|
first?: Maybe<Scalars['Int']>;
|
|
4975
5047
|
after?: Maybe<Scalars['String']>;
|
|
4976
5048
|
};
|
|
4977
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
4978
|
-
__typename?: 'DevOpsToolAvailable';
|
|
4979
|
-
id: Scalars['ID'];
|
|
4980
|
-
name: Scalars['String'];
|
|
4981
|
-
productKey: Scalars['String'];
|
|
4982
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4983
|
-
group: DevOpsToolGroup;
|
|
4984
|
-
supportsContainers: Scalars['Boolean'];
|
|
4985
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4986
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4987
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4988
|
-
};
|
|
4989
|
-
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
4990
|
-
query?: Maybe<Scalars['String']>;
|
|
4991
|
-
first?: Maybe<Scalars['Int']>;
|
|
4992
|
-
after?: Maybe<Scalars['String']>;
|
|
4993
|
-
};
|
|
4994
5049
|
export declare type DevOpsToolAvatar = {
|
|
4995
5050
|
__typename?: 'DevOpsToolAvatar';
|
|
4996
5051
|
url: Scalars['URL'];
|
|
@@ -5003,11 +5058,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5003
5058
|
name: Scalars['String'];
|
|
5004
5059
|
};
|
|
5005
5060
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5006
|
-
export declare enum DevOpsToolCategory {
|
|
5007
|
-
Development = "DEVELOPMENT",
|
|
5008
|
-
Documentation = "DOCUMENTATION",
|
|
5009
|
-
Operations = "OPERATIONS"
|
|
5010
|
-
}
|
|
5011
5061
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5012
5062
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5013
5063
|
requestId: Scalars['String'];
|
|
@@ -5082,11 +5132,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5082
5132
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5083
5133
|
name?: Maybe<Scalars['String']>;
|
|
5084
5134
|
};
|
|
5085
|
-
export declare enum DevOpsToolContainerType {
|
|
5086
|
-
Repository = "REPOSITORY",
|
|
5087
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5088
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5089
|
-
}
|
|
5090
5135
|
export declare type DevOpsToolEdge = {
|
|
5091
5136
|
__typename?: 'DevOpsToolEdge';
|
|
5092
5137
|
cursor: Scalars['String'];
|
|
@@ -5109,11 +5154,6 @@ export declare type DevOpsToolGroup = {
|
|
|
5109
5154
|
groupId: Scalars['String'];
|
|
5110
5155
|
groupName: Scalars['String'];
|
|
5111
5156
|
};
|
|
5112
|
-
export declare type DevOpsToolInstallationInfo = {
|
|
5113
|
-
__typename?: 'DevOpsToolInstallationInfo';
|
|
5114
|
-
oauthUrl?: Maybe<Scalars['URL']>;
|
|
5115
|
-
webUrl: Scalars['URL'];
|
|
5116
|
-
};
|
|
5117
5157
|
export declare type DevOpsToolNamespace = Node & {
|
|
5118
5158
|
__typename?: 'DevOpsToolNamespace';
|
|
5119
5159
|
id: Scalars['ID'];
|
|
@@ -5155,29 +5195,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5155
5195
|
requestId: Scalars['String'];
|
|
5156
5196
|
name: Scalars['String'];
|
|
5157
5197
|
};
|
|
5158
|
-
export declare type DevOpsToolSupportedContainerType = {
|
|
5159
|
-
__typename?: 'DevOpsToolSupportedContainerType';
|
|
5160
|
-
category: DevOpsToolCategory;
|
|
5161
|
-
type: DevOpsToolContainerType;
|
|
5162
|
-
};
|
|
5163
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
5164
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
5165
|
-
id: Scalars['ID'];
|
|
5166
|
-
name: Scalars['String'];
|
|
5167
|
-
productKey: Scalars['String'];
|
|
5168
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5169
|
-
group: DevOpsToolGroup;
|
|
5170
|
-
supportsContainers: Scalars['Boolean'];
|
|
5171
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5172
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5173
|
-
install: DevOpsToolInstallationInfo;
|
|
5174
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5175
|
-
};
|
|
5176
|
-
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5177
|
-
query?: Maybe<Scalars['String']>;
|
|
5178
|
-
first?: Maybe<Scalars['Int']>;
|
|
5179
|
-
after?: Maybe<Scalars['String']>;
|
|
5180
|
-
};
|
|
5181
5198
|
export declare type DevOpsToolUnknownTool = {
|
|
5182
5199
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5183
5200
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -6676,6 +6693,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6676
6693
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6677
6694
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6678
6695
|
};
|
|
6696
|
+
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
6697
|
+
__typename?: 'JiraCustomFilter';
|
|
6698
|
+
id: Scalars['ID'];
|
|
6699
|
+
filterId: Scalars['String'];
|
|
6700
|
+
jql: Scalars['String'];
|
|
6701
|
+
owner?: Maybe<User>;
|
|
6702
|
+
name: Scalars['String'];
|
|
6703
|
+
description?: Maybe<Scalars['String']>;
|
|
6704
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6705
|
+
};
|
|
6679
6706
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6680
6707
|
__typename?: 'JiraDatePickerField';
|
|
6681
6708
|
id: Scalars['ID'];
|
|
@@ -6705,6 +6732,27 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6705
6732
|
id: Scalars['ID'];
|
|
6706
6733
|
name: Scalars['String'];
|
|
6707
6734
|
};
|
|
6735
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6736
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6737
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6738
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6739
|
+
name?: Maybe<Scalars['String']>;
|
|
6740
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
6741
|
+
};
|
|
6742
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6743
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6744
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6745
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6746
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6747
|
+
name?: Maybe<Scalars['String']>;
|
|
6748
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6749
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6750
|
+
};
|
|
6751
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6752
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6753
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6754
|
+
name?: Maybe<Scalars['String']>;
|
|
6755
|
+
};
|
|
6708
6756
|
export declare type JiraDevOpsIssuePanel = {
|
|
6709
6757
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
6710
6758
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -6731,6 +6779,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6731
6779
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6732
6780
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6733
6781
|
};
|
|
6782
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6783
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6784
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6785
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6786
|
+
name?: Maybe<Scalars['String']>;
|
|
6787
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6788
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6789
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6790
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6791
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6792
|
+
};
|
|
6734
6793
|
export declare type JiraDevOpsQuery = {
|
|
6735
6794
|
__typename?: 'JiraDevOpsQuery';
|
|
6736
6795
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -6814,14 +6873,24 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
6814
6873
|
__typename?: 'JiraFieldNonEditableReason';
|
|
6815
6874
|
message?: Maybe<Scalars['String']>;
|
|
6816
6875
|
};
|
|
6817
|
-
export declare type JiraFilter =
|
|
6818
|
-
__typename?: 'JiraFilter';
|
|
6876
|
+
export declare type JiraFilter = {
|
|
6819
6877
|
id: Scalars['ID'];
|
|
6820
6878
|
filterId: Scalars['String'];
|
|
6821
6879
|
jql: Scalars['String'];
|
|
6822
6880
|
name: Scalars['String'];
|
|
6881
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6882
|
+
};
|
|
6883
|
+
export declare type JiraFilterConnection = {
|
|
6884
|
+
__typename?: 'JiraFilterConnection';
|
|
6885
|
+
pageInfo: PageInfo;
|
|
6886
|
+
edges?: Maybe<Array<Maybe<JiraFilterEdge>>>;
|
|
6887
|
+
};
|
|
6888
|
+
export declare type JiraFilterEdge = {
|
|
6889
|
+
__typename?: 'JiraFilterEdge';
|
|
6890
|
+
node?: Maybe<JiraFilter>;
|
|
6891
|
+
cursor: Scalars['String'];
|
|
6823
6892
|
};
|
|
6824
|
-
export declare type JiraFilterResult =
|
|
6893
|
+
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
6825
6894
|
export declare type JiraFlag = {
|
|
6826
6895
|
__typename?: 'JiraFlag';
|
|
6827
6896
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -7092,9 +7161,11 @@ export declare type JiraIssue = Node & {
|
|
|
7092
7161
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7093
7162
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7094
7163
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7164
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7095
7165
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7096
7166
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7097
7167
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7168
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7098
7169
|
};
|
|
7099
7170
|
export declare type JiraIssueFieldsArgs = {
|
|
7100
7171
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7141,6 +7212,12 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7141
7212
|
last?: Maybe<Scalars['Int']>;
|
|
7142
7213
|
before?: Maybe<Scalars['String']>;
|
|
7143
7214
|
};
|
|
7215
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7216
|
+
first?: Maybe<Scalars['Int']>;
|
|
7217
|
+
after?: Maybe<Scalars['String']>;
|
|
7218
|
+
last?: Maybe<Scalars['Int']>;
|
|
7219
|
+
before?: Maybe<Scalars['String']>;
|
|
7220
|
+
};
|
|
7144
7221
|
export declare type JiraIssueBranchDevSummary = {
|
|
7145
7222
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7146
7223
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7151,6 +7228,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7151
7228
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
7152
7229
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7153
7230
|
};
|
|
7231
|
+
export declare type JiraIssueBranches = {
|
|
7232
|
+
__typename?: 'JiraIssueBranches';
|
|
7233
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7234
|
+
};
|
|
7154
7235
|
export declare type JiraIssueBuildDevSummary = {
|
|
7155
7236
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
7156
7237
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7174,6 +7255,10 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7174
7255
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
7175
7256
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7176
7257
|
};
|
|
7258
|
+
export declare type JiraIssueCommits = {
|
|
7259
|
+
__typename?: 'JiraIssueCommits';
|
|
7260
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7261
|
+
};
|
|
7177
7262
|
export declare type JiraIssueConnection = {
|
|
7178
7263
|
__typename?: 'JiraIssueConnection';
|
|
7179
7264
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -7184,6 +7269,10 @@ export declare type JiraIssueConnection = {
|
|
|
7184
7269
|
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7185
7270
|
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7186
7271
|
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7272
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7273
|
+
};
|
|
7274
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7275
|
+
maxCursors: Scalars['Int'];
|
|
7187
7276
|
};
|
|
7188
7277
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
7189
7278
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -7205,6 +7294,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
7205
7294
|
NotDeployed = "NOT_DEPLOYED",
|
|
7206
7295
|
Deployed = "DEPLOYED"
|
|
7207
7296
|
}
|
|
7297
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7298
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7299
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7300
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7301
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7302
|
+
};
|
|
7208
7303
|
export declare type JiraIssueDevSummary = {
|
|
7209
7304
|
__typename?: 'JiraIssueDevSummary';
|
|
7210
7305
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7492,6 +7587,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7492
7587
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7493
7588
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7494
7589
|
};
|
|
7590
|
+
export declare type JiraIssuePullRequests = {
|
|
7591
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7592
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7593
|
+
};
|
|
7495
7594
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7496
7595
|
__typename?: 'JiraIssueRestrictionField';
|
|
7497
7596
|
id: Scalars['ID'];
|
|
@@ -7536,7 +7635,7 @@ export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
|
7536
7635
|
__typename?: 'JiraIssueSearchByFilter';
|
|
7537
7636
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7538
7637
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
7539
|
-
filter?: Maybe<
|
|
7638
|
+
filter?: Maybe<JiraFilter>;
|
|
7540
7639
|
};
|
|
7541
7640
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
7542
7641
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -7627,6 +7726,9 @@ export declare type JiraIssueSearchInput = {
|
|
|
7627
7726
|
jql?: Maybe<Scalars['String']>;
|
|
7628
7727
|
filterId?: Maybe<Scalars['String']>;
|
|
7629
7728
|
};
|
|
7729
|
+
export declare type JiraIssueSearchOptions = {
|
|
7730
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
7731
|
+
};
|
|
7630
7732
|
export declare type JiraIssueSearchResult = {
|
|
7631
7733
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7632
7734
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -8331,6 +8433,7 @@ export declare type JiraMutation = {
|
|
|
8331
8433
|
__typename?: 'JiraMutation';
|
|
8332
8434
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8333
8435
|
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8436
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8334
8437
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8335
8438
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8336
8439
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -8340,6 +8443,10 @@ export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
|
8340
8443
|
id: Scalars['ID'];
|
|
8341
8444
|
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8342
8445
|
};
|
|
8446
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8447
|
+
id: Scalars['ID'];
|
|
8448
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8449
|
+
};
|
|
8343
8450
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8344
8451
|
cloudId: Scalars['ID'];
|
|
8345
8452
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -8533,6 +8640,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
8533
8640
|
export declare type JiraOrderDirection = {
|
|
8534
8641
|
id?: Maybe<Scalars['ID']>;
|
|
8535
8642
|
};
|
|
8643
|
+
export declare type JiraPageCursor = {
|
|
8644
|
+
__typename?: 'JiraPageCursor';
|
|
8645
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8646
|
+
pageNumber?: Maybe<Scalars['Int']>;
|
|
8647
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
8648
|
+
};
|
|
8649
|
+
export declare type JiraPageCursors = {
|
|
8650
|
+
__typename?: 'JiraPageCursors';
|
|
8651
|
+
first?: Maybe<JiraPageCursor>;
|
|
8652
|
+
around?: Maybe<Array<Maybe<JiraPageCursor>>>;
|
|
8653
|
+
last?: Maybe<JiraPageCursor>;
|
|
8654
|
+
previous?: Maybe<JiraPageCursor>;
|
|
8655
|
+
};
|
|
8536
8656
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8537
8657
|
__typename?: 'JiraParentIssueField';
|
|
8538
8658
|
id: Scalars['ID'];
|
|
@@ -8791,6 +8911,7 @@ export declare type JiraProject = Node & {
|
|
|
8791
8911
|
projectType?: Maybe<JiraProjectType>;
|
|
8792
8912
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8793
8913
|
status?: Maybe<JiraProjectStatus>;
|
|
8914
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
8794
8915
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8795
8916
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8796
8917
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9026,6 +9147,12 @@ export declare enum JiraProjectType {
|
|
|
9026
9147
|
Business = "BUSINESS",
|
|
9027
9148
|
Software = "SOFTWARE"
|
|
9028
9149
|
}
|
|
9150
|
+
export declare type JiraPullRequestReviewer = {
|
|
9151
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9152
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9153
|
+
name?: Maybe<Scalars['String']>;
|
|
9154
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9155
|
+
};
|
|
9029
9156
|
export declare enum JiraPullRequestState {
|
|
9030
9157
|
Open = "OPEN",
|
|
9031
9158
|
Declined = "DECLINED",
|
|
@@ -9051,6 +9178,9 @@ export declare type JiraQuery = {
|
|
|
9051
9178
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9052
9179
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9053
9180
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9181
|
+
filter?: Maybe<JiraFilter>;
|
|
9182
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9183
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9054
9184
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9055
9185
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9056
9186
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
@@ -9108,6 +9238,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
9108
9238
|
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9109
9239
|
cloudId: Scalars['ID'];
|
|
9110
9240
|
issueSearchInput: JiraIssueSearchInput;
|
|
9241
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9111
9242
|
first?: Maybe<Scalars['Int']>;
|
|
9112
9243
|
after?: Maybe<Scalars['String']>;
|
|
9113
9244
|
last?: Maybe<Scalars['Int']>;
|
|
@@ -9130,6 +9261,24 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
9130
9261
|
cloudId: Scalars['ID'];
|
|
9131
9262
|
keys: Array<Scalars['String']>;
|
|
9132
9263
|
};
|
|
9264
|
+
export declare type JiraQueryFilterArgs = {
|
|
9265
|
+
id: Scalars['ID'];
|
|
9266
|
+
};
|
|
9267
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9268
|
+
cloudId: Scalars['ID'];
|
|
9269
|
+
first?: Maybe<Scalars['Int']>;
|
|
9270
|
+
after?: Maybe<Scalars['String']>;
|
|
9271
|
+
last?: Maybe<Scalars['Int']>;
|
|
9272
|
+
before?: Maybe<Scalars['String']>;
|
|
9273
|
+
};
|
|
9274
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9275
|
+
cloudId: Scalars['ID'];
|
|
9276
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9277
|
+
first?: Maybe<Scalars['Int']>;
|
|
9278
|
+
after?: Maybe<Scalars['String']>;
|
|
9279
|
+
last?: Maybe<Scalars['Int']>;
|
|
9280
|
+
before?: Maybe<Scalars['String']>;
|
|
9281
|
+
};
|
|
9133
9282
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
9134
9283
|
cloudId: Scalars['ID'];
|
|
9135
9284
|
};
|
|
@@ -9325,6 +9474,12 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
9325
9474
|
after: Scalars['DateTime'];
|
|
9326
9475
|
before: Scalars['DateTime'];
|
|
9327
9476
|
};
|
|
9477
|
+
export declare type JiraReplaceIssueSearchViewFieldConfigSetsInput = {
|
|
9478
|
+
before?: Maybe<Scalars['String']>;
|
|
9479
|
+
after?: Maybe<Scalars['String']>;
|
|
9480
|
+
nodes: Array<Scalars['String']>;
|
|
9481
|
+
inclusive?: Maybe<Scalars['Boolean']>;
|
|
9482
|
+
};
|
|
9328
9483
|
export declare type JiraResolution = Node & {
|
|
9329
9484
|
__typename?: 'JiraResolution';
|
|
9330
9485
|
id: Scalars['ID'];
|
|
@@ -9836,7 +9991,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
9836
9991
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
9837
9992
|
__typename?: 'JiraServiceManagementRequestType';
|
|
9838
9993
|
id: Scalars['ID'];
|
|
9839
|
-
requestTypeId: Scalars['
|
|
9994
|
+
requestTypeId: Scalars['String'];
|
|
9840
9995
|
name?: Maybe<Scalars['String']>;
|
|
9841
9996
|
key?: Maybe<Scalars['String']>;
|
|
9842
9997
|
description?: Maybe<Scalars['String']>;
|
|
@@ -9935,6 +10090,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
9935
10090
|
key: Scalars['String'];
|
|
9936
10091
|
value: Scalars['String'];
|
|
9937
10092
|
};
|
|
10093
|
+
export declare type JiraSimilarIssues = {
|
|
10094
|
+
__typename?: 'JiraSimilarIssues';
|
|
10095
|
+
featureEnabled: Scalars['Boolean'];
|
|
10096
|
+
};
|
|
9938
10097
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9939
10098
|
__typename?: 'JiraSingleGroupPickerField';
|
|
9940
10099
|
id: Scalars['ID'];
|
|
@@ -10152,6 +10311,24 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
10152
10311
|
last?: Maybe<Scalars['Int']>;
|
|
10153
10312
|
before?: Maybe<Scalars['String']>;
|
|
10154
10313
|
};
|
|
10314
|
+
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
10315
|
+
__typename?: 'JiraSystemFilter';
|
|
10316
|
+
id: Scalars['ID'];
|
|
10317
|
+
filterId: Scalars['String'];
|
|
10318
|
+
jql: Scalars['String'];
|
|
10319
|
+
name: Scalars['String'];
|
|
10320
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10321
|
+
};
|
|
10322
|
+
export declare type JiraSystemFilterConnection = {
|
|
10323
|
+
__typename?: 'JiraSystemFilterConnection';
|
|
10324
|
+
pageInfo: PageInfo;
|
|
10325
|
+
edges?: Maybe<Array<Maybe<JiraSystemFilterEdge>>>;
|
|
10326
|
+
};
|
|
10327
|
+
export declare type JiraSystemFilterEdge = {
|
|
10328
|
+
__typename?: 'JiraSystemFilterEdge';
|
|
10329
|
+
node?: Maybe<JiraSystemFilter>;
|
|
10330
|
+
cursor: Scalars['String'];
|
|
10331
|
+
};
|
|
10155
10332
|
export declare type JiraTeam = Node & {
|
|
10156
10333
|
__typename?: 'JiraTeam';
|
|
10157
10334
|
id: Scalars['ID'];
|
|
@@ -10304,6 +10481,7 @@ export declare type JiraVersion = Node & {
|
|
|
10304
10481
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10305
10482
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10306
10483
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10484
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10307
10485
|
issues?: Maybe<JiraIssueConnection>;
|
|
10308
10486
|
};
|
|
10309
10487
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10313,6 +10491,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10313
10491
|
before?: Maybe<Scalars['String']>;
|
|
10314
10492
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10315
10493
|
};
|
|
10494
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10495
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10496
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10497
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10498
|
+
appName?: Maybe<Scalars['String']>;
|
|
10499
|
+
location?: Maybe<Scalars['String']>;
|
|
10500
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10501
|
+
};
|
|
10316
10502
|
export declare type JiraVersionConnection = {
|
|
10317
10503
|
__typename?: 'JiraVersionConnection';
|
|
10318
10504
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -10903,7 +11089,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10903
11089
|
export declare type Mutation = {
|
|
10904
11090
|
__typename?: 'Mutation';
|
|
10905
11091
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10906
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10907
11092
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10908
11093
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
10909
11094
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -10969,6 +11154,7 @@ export declare type Mutation = {
|
|
|
10969
11154
|
jira?: Maybe<JiraMutation>;
|
|
10970
11155
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10971
11156
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11157
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10972
11158
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10973
11159
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10974
11160
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -11508,6 +11694,7 @@ export declare type MyActivityViewedArgs = {
|
|
|
11508
11694
|
after?: Maybe<Scalars['String']>;
|
|
11509
11695
|
};
|
|
11510
11696
|
export declare type MyActivityFilter = {
|
|
11697
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
11511
11698
|
type?: Maybe<ActivitiesFilterType>;
|
|
11512
11699
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
11513
11700
|
};
|
|
@@ -12691,7 +12878,6 @@ export declare type Query = {
|
|
|
12691
12878
|
echo?: Maybe<Scalars['String']>;
|
|
12692
12879
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12693
12880
|
node?: Maybe<Node>;
|
|
12694
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12695
12881
|
activities?: Maybe<Activities>;
|
|
12696
12882
|
activity?: Maybe<Activity>;
|
|
12697
12883
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -12747,6 +12933,7 @@ export declare type Query = {
|
|
|
12747
12933
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12748
12934
|
testing?: Maybe<Testing>;
|
|
12749
12935
|
movie?: Maybe<TestingMovie>;
|
|
12936
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12750
12937
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12751
12938
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12752
12939
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
@@ -13304,6 +13491,10 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
13304
13491
|
errors?: Maybe<Array<MutationError>>;
|
|
13305
13492
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
13306
13493
|
};
|
|
13494
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13495
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13496
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13497
|
+
};
|
|
13307
13498
|
export declare type RoadmapItem = {
|
|
13308
13499
|
__typename?: 'RoadmapItem';
|
|
13309
13500
|
id: Scalars['ID'];
|
|
@@ -13443,6 +13634,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
13443
13634
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13444
13635
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13445
13636
|
};
|
|
13637
|
+
export declare type RoadmapQuickFilter = {
|
|
13638
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13639
|
+
id: Scalars['ID'];
|
|
13640
|
+
name: Scalars['String'];
|
|
13641
|
+
query: Scalars['String'];
|
|
13642
|
+
};
|
|
13446
13643
|
export declare type RoadmapSprint = {
|
|
13447
13644
|
__typename?: 'RoadmapSprint';
|
|
13448
13645
|
id: Scalars['ID'];
|
|
@@ -13482,6 +13679,32 @@ export declare type RoadmapToggleDependencyResponse = {
|
|
|
13482
13679
|
dependee: Scalars['ID'];
|
|
13483
13680
|
dependency: Scalars['ID'];
|
|
13484
13681
|
};
|
|
13682
|
+
export declare type RoadmapUpdateItemInput = {
|
|
13683
|
+
itemId: Scalars['ID'];
|
|
13684
|
+
projectId: Scalars['ID'];
|
|
13685
|
+
summary?: Maybe<Scalars['String']>;
|
|
13686
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13687
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13688
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13689
|
+
rank?: Maybe<RoadmapUpdateItemRank>;
|
|
13690
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13691
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
13692
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
13693
|
+
};
|
|
13694
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
13695
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
13696
|
+
success: Scalars['Boolean'];
|
|
13697
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13698
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13699
|
+
};
|
|
13700
|
+
export declare type RoadmapUpdateItemRank = {
|
|
13701
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13702
|
+
afterId?: Maybe<Scalars['ID']>;
|
|
13703
|
+
};
|
|
13704
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
13705
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
13706
|
+
item?: Maybe<RoadmapItem>;
|
|
13707
|
+
};
|
|
13485
13708
|
export declare type RoadmapUserConfiguration = {
|
|
13486
13709
|
__typename?: 'RoadmapUserConfiguration';
|
|
13487
13710
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13514,15 +13737,20 @@ export declare type RoadmapsMutation = {
|
|
|
13514
13737
|
__typename?: 'RoadmapsMutation';
|
|
13515
13738
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13516
13739
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13740
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13517
13741
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13518
13742
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13519
13743
|
};
|
|
13520
13744
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13521
|
-
input
|
|
13745
|
+
input: RoadmapFeatureToggleInput;
|
|
13522
13746
|
};
|
|
13523
13747
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13524
|
-
|
|
13525
|
-
|
|
13748
|
+
sourceARI: Scalars['ID'];
|
|
13749
|
+
input: RoadmapAddItemInput;
|
|
13750
|
+
};
|
|
13751
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13752
|
+
sourceARI: Scalars['ID'];
|
|
13753
|
+
input: RoadmapUpdateItemInput;
|
|
13526
13754
|
};
|
|
13527
13755
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13528
13756
|
sourceARI: Scalars['ID'];
|
|
@@ -13536,6 +13764,8 @@ export declare type RoadmapsQuery = {
|
|
|
13536
13764
|
__typename?: 'RoadmapsQuery';
|
|
13537
13765
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13538
13766
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13767
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13768
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13539
13769
|
};
|
|
13540
13770
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13541
13771
|
sourceARI: Scalars['ID'];
|
|
@@ -13545,6 +13775,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13545
13775
|
sourceARI: Scalars['ID'];
|
|
13546
13776
|
ids: Array<Scalars['ID']>;
|
|
13547
13777
|
};
|
|
13778
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
13779
|
+
sourceARI: Scalars['ID'];
|
|
13780
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
13781
|
+
};
|
|
13782
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
13783
|
+
sourceARI: Scalars['ID'];
|
|
13784
|
+
};
|
|
13548
13785
|
export declare type ScanPolarisProjectInput = {
|
|
13549
13786
|
project: Scalars['ID'];
|
|
13550
13787
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -14231,6 +14468,7 @@ export declare type SupportRequest = {
|
|
|
14231
14468
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14232
14469
|
lastComment: SupportRequestComments;
|
|
14233
14470
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14471
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
14234
14472
|
};
|
|
14235
14473
|
export declare type SupportRequestCommentsArgs = {
|
|
14236
14474
|
offset?: Maybe<Scalars['Int']>;
|