@forge/cli-shared 0.0.0-experimental-869511d → 0.0.0-experimental-4d1c111
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 +213 -3
- package/out/cache/cached-conf.d.ts +14 -0
- package/out/cache/cached-conf.d.ts.map +1 -1
- package/out/cache/cached-conf.js +30 -4
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +1786 -201
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +397 -7
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/service/feature-flag-service.d.ts +35 -0
- package/out/service/feature-flag-service.d.ts.map +1 -0
- package/out/service/feature-flag-service.js +90 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/shared/error-handling.d.ts +3 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/out/ui/logger.d.ts +1 -0
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +17 -1
- package/out/ui/text.d.ts +0 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -4
- package/package.json +6 -4
|
@@ -181,7 +181,7 @@ export declare type ActivityWorkedOnArgs = {
|
|
|
181
181
|
};
|
|
182
182
|
export declare type ActivityConnection = {
|
|
183
183
|
__typename?: 'ActivityConnection';
|
|
184
|
-
edges
|
|
184
|
+
edges: Array<ActivityItemEdge>;
|
|
185
185
|
pageInfo: ActivityPageInfo;
|
|
186
186
|
};
|
|
187
187
|
export declare type ActivityContributor = {
|
|
@@ -233,7 +233,7 @@ export declare type ActivityFilterArgs = {
|
|
|
233
233
|
export declare type ActivityItemEdge = {
|
|
234
234
|
__typename?: 'ActivityItemEdge';
|
|
235
235
|
cursor: Scalars['String'];
|
|
236
|
-
node
|
|
236
|
+
node: ActivityNode;
|
|
237
237
|
};
|
|
238
238
|
export declare type ActivityNode = Node & {
|
|
239
239
|
__typename?: 'ActivityNode';
|
|
@@ -303,6 +303,7 @@ export declare type AddPolarisColumnInput = {
|
|
|
303
303
|
width?: Maybe<Scalars['Int']>;
|
|
304
304
|
heading?: Maybe<Scalars['String']>;
|
|
305
305
|
};
|
|
306
|
+
export declare type Admin = JiraUser | JiraUserGroup;
|
|
306
307
|
export declare enum ApiContext {
|
|
307
308
|
Devops = "DEVOPS"
|
|
308
309
|
}
|
|
@@ -877,11 +878,26 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
877
878
|
first?: Maybe<Scalars['Int']>;
|
|
878
879
|
after?: Maybe<Scalars['String']>;
|
|
879
880
|
};
|
|
881
|
+
export declare type AriGraphCreateRelationshipErrorReference = {
|
|
882
|
+
__typename?: 'AriGraphCreateRelationshipErrorReference';
|
|
883
|
+
from: Scalars['ID'];
|
|
884
|
+
to: Scalars['ID'];
|
|
885
|
+
type: Scalars['ID'];
|
|
886
|
+
};
|
|
880
887
|
export declare type AriGraphCreateRelationshipInput = {
|
|
888
|
+
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
889
|
+
};
|
|
890
|
+
export declare type AriGraphCreateRelationshipInputRelationship = {
|
|
881
891
|
from: Scalars['ID'];
|
|
882
892
|
to: Scalars['ID'];
|
|
883
893
|
type: Scalars['ID'];
|
|
884
894
|
};
|
|
895
|
+
export declare type AriGraphCreateRelationshipMutationErrorExtension = MutationErrorExtension & {
|
|
896
|
+
__typename?: 'AriGraphCreateRelationshipMutationErrorExtension';
|
|
897
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
898
|
+
errorType?: Maybe<Scalars['String']>;
|
|
899
|
+
reference: AriGraphCreateRelationshipErrorReference;
|
|
900
|
+
};
|
|
885
901
|
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
886
902
|
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
887
903
|
success: Scalars['Boolean'];
|
|
@@ -921,6 +937,8 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
921
937
|
type: Scalars['ID'];
|
|
922
938
|
from?: Maybe<Scalars['ID']>;
|
|
923
939
|
to?: Maybe<Scalars['ID']>;
|
|
940
|
+
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
|
+
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
924
942
|
};
|
|
925
943
|
export declare type ArjConfiguration = {
|
|
926
944
|
__typename?: 'ArjConfiguration';
|
|
@@ -955,6 +973,16 @@ export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
|
955
973
|
email?: Maybe<Scalars['String']>;
|
|
956
974
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
957
975
|
locale?: Maybe<Scalars['String']>;
|
|
976
|
+
nickname?: Maybe<Scalars['String']>;
|
|
977
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
978
|
+
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
979
|
+
};
|
|
980
|
+
export declare type AtlassianAccountUserExtendedProfile = {
|
|
981
|
+
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
982
|
+
jobTitle?: Maybe<Scalars['String']>;
|
|
983
|
+
organization?: Maybe<Scalars['String']>;
|
|
984
|
+
department?: Maybe<Scalars['String']>;
|
|
985
|
+
location?: Maybe<Scalars['String']>;
|
|
958
986
|
};
|
|
959
987
|
export declare type AtlassianOAuthClient = {
|
|
960
988
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -1103,6 +1131,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1103
1131
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1104
1132
|
imageUri?: Maybe<Scalars['String']>;
|
|
1105
1133
|
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1134
|
+
prerequisites?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1106
1135
|
};
|
|
1107
1136
|
export declare enum BitbucketPermission {
|
|
1108
1137
|
Admin = "ADMIN"
|
|
@@ -1110,11 +1139,15 @@ export declare enum BitbucketPermission {
|
|
|
1110
1139
|
export declare type BitbucketQuery = {
|
|
1111
1140
|
__typename?: 'BitbucketQuery';
|
|
1112
1141
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
1142
|
+
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
1113
1143
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
1114
1144
|
};
|
|
1115
1145
|
export declare type BitbucketQueryBitbucketRepositoryArgs = {
|
|
1116
1146
|
id: Scalars['ID'];
|
|
1117
1147
|
};
|
|
1148
|
+
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
1149
|
+
ids: Array<Scalars['ID']>;
|
|
1150
|
+
};
|
|
1118
1151
|
export declare type BitbucketQueryBitbucketWorkspaceArgs = {
|
|
1119
1152
|
id: Scalars['ID'];
|
|
1120
1153
|
};
|
|
@@ -1257,7 +1290,11 @@ export declare type BoardScope = Node & {
|
|
|
1257
1290
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1258
1291
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1259
1292
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1293
|
+
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
1260
1294
|
name?: Maybe<Scalars['String']>;
|
|
1295
|
+
admins?: Maybe<Array<Maybe<Admin>>>;
|
|
1296
|
+
canAdministerBoard?: Maybe<Scalars['Boolean']>;
|
|
1297
|
+
jql?: Maybe<Scalars['String']>;
|
|
1261
1298
|
};
|
|
1262
1299
|
export declare type BoardScopeSprintsArgs = {
|
|
1263
1300
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1607,13 +1644,13 @@ export declare type CompassBuildEvent = CompassEvent & {
|
|
|
1607
1644
|
export declare type CompassBuildEventPipeline = {
|
|
1608
1645
|
__typename?: 'CompassBuildEventPipeline';
|
|
1609
1646
|
pipelineId: Scalars['String'];
|
|
1610
|
-
url
|
|
1611
|
-
displayName
|
|
1647
|
+
url?: Maybe<Scalars['String']>;
|
|
1648
|
+
displayName?: Maybe<Scalars['String']>;
|
|
1612
1649
|
};
|
|
1613
1650
|
export declare type CompassBuildEventPipelineInput = {
|
|
1614
1651
|
pipelineId: Scalars['String'];
|
|
1615
|
-
url
|
|
1616
|
-
displayName
|
|
1652
|
+
url?: Maybe<Scalars['String']>;
|
|
1653
|
+
displayName?: Maybe<Scalars['String']>;
|
|
1617
1654
|
};
|
|
1618
1655
|
export declare type CompassBuildEventProperties = {
|
|
1619
1656
|
__typename?: 'CompassBuildEventProperties';
|
|
@@ -1650,6 +1687,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1650
1687
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
1651
1688
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
1652
1689
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
1690
|
+
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
1691
|
+
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
1653
1692
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
1654
1693
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
1655
1694
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -1684,6 +1723,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1684
1723
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1685
1724
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1686
1725
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1726
|
+
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
1687
1727
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
1728
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
1729
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
@@ -1723,6 +1763,12 @@ export declare type CompassCatalogMutationApiCreateComponentExternalAliasArgs =
|
|
|
1723
1763
|
export declare type CompassCatalogMutationApiDeleteComponentExternalAliasArgs = {
|
|
1724
1764
|
input: DeleteCompassComponentExternalAliasInput;
|
|
1725
1765
|
};
|
|
1766
|
+
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
1767
|
+
input: CompassCreateComponentSubscriptionInput;
|
|
1768
|
+
};
|
|
1769
|
+
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
1770
|
+
input: CompassDeleteComponentSubscriptionInput;
|
|
1771
|
+
};
|
|
1726
1772
|
export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
1727
1773
|
input: UnlinkExternalSourceInput;
|
|
1728
1774
|
};
|
|
@@ -1834,6 +1880,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1834
1880
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1835
1881
|
input: CompassInsertMetricValueInput;
|
|
1836
1882
|
};
|
|
1883
|
+
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
1884
|
+
input: CompassInsertMetricValueByExternalIdInput;
|
|
1885
|
+
};
|
|
1837
1886
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1838
1887
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1839
1888
|
};
|
|
@@ -1940,6 +1989,7 @@ export declare type CompassComponent = Node & {
|
|
|
1940
1989
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1941
1990
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1942
1991
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1992
|
+
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
1943
1993
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1944
1994
|
};
|
|
1945
1995
|
export declare type CompassComponentRelationshipsArgs = {
|
|
@@ -2017,6 +2067,15 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
2017
2067
|
externalEventSourceId: Scalars['ID'];
|
|
2018
2068
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
2019
2069
|
};
|
|
2070
|
+
export declare type CompassCreateComponentSubscriptionInput = {
|
|
2071
|
+
componentId: Scalars['ID'];
|
|
2072
|
+
};
|
|
2073
|
+
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2074
|
+
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2075
|
+
component?: Maybe<CompassComponent>;
|
|
2076
|
+
success: Scalars['Boolean'];
|
|
2077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2078
|
+
};
|
|
2020
2079
|
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
2080
|
cloudId: Scalars['ID'];
|
|
2022
2081
|
name: Scalars['String'];
|
|
@@ -2092,6 +2151,21 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2092
2151
|
id: Scalars['ID'];
|
|
2093
2152
|
status?: Maybe<Scalars['String']>;
|
|
2094
2153
|
};
|
|
2154
|
+
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2155
|
+
weight: Scalars['Int'];
|
|
2156
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2157
|
+
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2158
|
+
};
|
|
2159
|
+
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2160
|
+
weight: Scalars['Int'];
|
|
2161
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2162
|
+
comparatorValue: Scalars['Float'];
|
|
2163
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2164
|
+
};
|
|
2165
|
+
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2166
|
+
weight: Scalars['Int'];
|
|
2167
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2168
|
+
};
|
|
2095
2169
|
export declare type CompassCreateIncidentEventInput = {
|
|
2096
2170
|
displayName: Scalars['String'];
|
|
2097
2171
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2149,6 +2223,9 @@ export declare type CompassCreateTeamCheckinInput = {
|
|
|
2149
2223
|
response1?: Maybe<Scalars['String']>;
|
|
2150
2224
|
response2?: Maybe<Scalars['String']>;
|
|
2151
2225
|
response3?: Maybe<Scalars['String']>;
|
|
2226
|
+
response1RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2227
|
+
response2RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2228
|
+
response3RichText?: Maybe<CompassCreateTeamCheckinResponseRichText>;
|
|
2152
2229
|
actions?: Maybe<Array<CompassCreateTeamCheckinActionInput>>;
|
|
2153
2230
|
};
|
|
2154
2231
|
export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
@@ -2157,6 +2234,13 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
2157
2234
|
errors?: Maybe<Array<MutationError>>;
|
|
2158
2235
|
createdTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
2159
2236
|
};
|
|
2237
|
+
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
2238
|
+
adf?: Maybe<Scalars['String']>;
|
|
2239
|
+
};
|
|
2240
|
+
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2241
|
+
IsTrue = "IS_TRUE",
|
|
2242
|
+
IsFalse = "IS_FALSE"
|
|
2243
|
+
}
|
|
2160
2244
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2161
2245
|
Equals = "EQUALS",
|
|
2162
2246
|
GreaterThan = "GREATER_THAN",
|
|
@@ -2276,6 +2360,14 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2276
2360
|
success: Scalars['Boolean'];
|
|
2277
2361
|
errors?: Maybe<Array<MutationError>>;
|
|
2278
2362
|
};
|
|
2363
|
+
export declare type CompassDeleteComponentSubscriptionInput = {
|
|
2364
|
+
componentId: Scalars['ID'];
|
|
2365
|
+
};
|
|
2366
|
+
export declare type CompassDeleteComponentSubscriptionPayload = Payload & {
|
|
2367
|
+
__typename?: 'CompassDeleteComponentSubscriptionPayload';
|
|
2368
|
+
success: Scalars['Boolean'];
|
|
2369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2370
|
+
};
|
|
2279
2371
|
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2280
2372
|
id: Scalars['ID'];
|
|
2281
2373
|
};
|
|
@@ -2492,6 +2584,39 @@ export declare type CompassFlagEventProperties = {
|
|
|
2492
2584
|
id: Scalars['ID'];
|
|
2493
2585
|
status?: Maybe<Scalars['String']>;
|
|
2494
2586
|
};
|
|
2587
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2588
|
+
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
2589
|
+
id: Scalars['ID'];
|
|
2590
|
+
weight: Scalars['Int'];
|
|
2591
|
+
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2592
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2593
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2594
|
+
};
|
|
2595
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2596
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2597
|
+
};
|
|
2598
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2599
|
+
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
2600
|
+
id: Scalars['ID'];
|
|
2601
|
+
weight: Scalars['Int'];
|
|
2602
|
+
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2603
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2604
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2605
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2606
|
+
};
|
|
2607
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2608
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2609
|
+
};
|
|
2610
|
+
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2611
|
+
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
2612
|
+
id: Scalars['ID'];
|
|
2613
|
+
weight: Scalars['Int'];
|
|
2614
|
+
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2615
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2616
|
+
};
|
|
2617
|
+
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2618
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2619
|
+
};
|
|
2495
2620
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
2496
2621
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
2497
2622
|
id: Scalars['ID'];
|
|
@@ -2527,9 +2652,9 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
2527
2652
|
weight: Scalars['Int'];
|
|
2528
2653
|
comparatorValue: Scalars['Float'];
|
|
2529
2654
|
metricDefinitionId: Scalars['ID'];
|
|
2655
|
+
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2530
2656
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2531
2657
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2532
|
-
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2533
2658
|
};
|
|
2534
2659
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2535
2660
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
@@ -2564,6 +2689,17 @@ export declare enum CompassIncidentEventState {
|
|
|
2564
2689
|
Closed = "CLOSED",
|
|
2565
2690
|
Deleted = "DELETED"
|
|
2566
2691
|
}
|
|
2692
|
+
export declare type CompassInsertMetricValueByExternalIdInput = {
|
|
2693
|
+
cloudId: Scalars['ID'];
|
|
2694
|
+
metricDefinitionId: Scalars['ID'];
|
|
2695
|
+
externalMetricSourceId: Scalars['ID'];
|
|
2696
|
+
value: CompassMetricValueInput;
|
|
2697
|
+
};
|
|
2698
|
+
export declare type CompassInsertMetricValueByExternalIdPayload = Payload & {
|
|
2699
|
+
__typename?: 'CompassInsertMetricValueByExternalIdPayload';
|
|
2700
|
+
success: Scalars['Boolean'];
|
|
2701
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2702
|
+
};
|
|
2567
2703
|
export declare type CompassInsertMetricValueInput = {
|
|
2568
2704
|
metricSourceId: Scalars['ID'];
|
|
2569
2705
|
value: CompassMetricValueInput;
|
|
@@ -2666,6 +2802,7 @@ export declare type CompassMetricSource = {
|
|
|
2666
2802
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2667
2803
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2668
2804
|
url?: Maybe<Scalars['String']>;
|
|
2805
|
+
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2669
2806
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2670
2807
|
component?: Maybe<CompassComponent>;
|
|
2671
2808
|
};
|
|
@@ -2767,6 +2904,10 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
2767
2904
|
export declare enum CompassRelationshipType {
|
|
2768
2905
|
DependsOn = "DEPENDS_ON"
|
|
2769
2906
|
}
|
|
2907
|
+
export declare type CompassRichTextObject = {
|
|
2908
|
+
__typename?: 'CompassRichTextObject';
|
|
2909
|
+
adf?: Maybe<Scalars['String']>;
|
|
2910
|
+
};
|
|
2770
2911
|
export declare type CompassScorecard = Node & {
|
|
2771
2912
|
__typename?: 'CompassScorecard';
|
|
2772
2913
|
id: Scalars['ID'];
|
|
@@ -2860,6 +3001,7 @@ export declare type CompassScorecardsQueryResult = CompassScorecardConnection |
|
|
|
2860
3001
|
export declare type CompassSearchComponentConnection = {
|
|
2861
3002
|
__typename?: 'CompassSearchComponentConnection';
|
|
2862
3003
|
edges?: Maybe<Array<CompassSearchComponentEdge>>;
|
|
3004
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
2863
3005
|
nodes?: Maybe<Array<CompassSearchComponentResult>>;
|
|
2864
3006
|
pageInfo: PageInfo;
|
|
2865
3007
|
};
|
|
@@ -2930,6 +3072,9 @@ export declare type CompassTeamCheckin = {
|
|
|
2930
3072
|
response1?: Maybe<Scalars['String']>;
|
|
2931
3073
|
response2?: Maybe<Scalars['String']>;
|
|
2932
3074
|
response3?: Maybe<Scalars['String']>;
|
|
3075
|
+
response1RichText?: Maybe<CompassRichTextObject>;
|
|
3076
|
+
response2RichText?: Maybe<CompassRichTextObject>;
|
|
3077
|
+
response3RichText?: Maybe<CompassRichTextObject>;
|
|
2933
3078
|
changeMetadata: CompassChangeMetadata;
|
|
2934
3079
|
actions?: Maybe<Array<CompassTeamCheckinAction>>;
|
|
2935
3080
|
};
|
|
@@ -2994,6 +3139,24 @@ export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
|
2994
3139
|
description?: Maybe<Scalars['String']>;
|
|
2995
3140
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2996
3141
|
};
|
|
3142
|
+
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3143
|
+
id: Scalars['ID'];
|
|
3144
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3145
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3146
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3147
|
+
};
|
|
3148
|
+
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3149
|
+
id: Scalars['ID'];
|
|
3150
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3151
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3152
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3153
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3154
|
+
};
|
|
3155
|
+
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3156
|
+
id: Scalars['ID'];
|
|
3157
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3158
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3159
|
+
};
|
|
2997
3160
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2998
3161
|
id: Scalars['ID'];
|
|
2999
3162
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3018,6 +3181,9 @@ export declare type CompassUpdateTeamCheckinInput = {
|
|
|
3018
3181
|
response1?: Maybe<Scalars['String']>;
|
|
3019
3182
|
response2?: Maybe<Scalars['String']>;
|
|
3020
3183
|
response3?: Maybe<Scalars['String']>;
|
|
3184
|
+
response1RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3185
|
+
response2RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3186
|
+
response3RichText?: Maybe<CompassUpdateTeamCheckinResponseRichText>;
|
|
3021
3187
|
actions?: Maybe<Array<CompassTeamCheckinActionInput>>;
|
|
3022
3188
|
};
|
|
3023
3189
|
export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
@@ -3026,6 +3192,13 @@ export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
3026
3192
|
errors?: Maybe<Array<MutationError>>;
|
|
3027
3193
|
updatedTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
3028
3194
|
};
|
|
3195
|
+
export declare type CompassUpdateTeamCheckinResponseRichText = {
|
|
3196
|
+
adf?: Maybe<Scalars['String']>;
|
|
3197
|
+
};
|
|
3198
|
+
export declare type CompassViewerSubscription = {
|
|
3199
|
+
__typename?: 'CompassViewerSubscription';
|
|
3200
|
+
subscribed: Scalars['Boolean'];
|
|
3201
|
+
};
|
|
3029
3202
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
3030
3203
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
3031
3204
|
id: Scalars['ID'];
|
|
@@ -3097,20 +3270,32 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
3097
3270
|
};
|
|
3098
3271
|
export declare type ConfluenceBlogPost = {
|
|
3099
3272
|
__typename?: 'ConfluenceBlogPost';
|
|
3273
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3100
3274
|
blogPostId: Scalars['ID'];
|
|
3101
3275
|
id: Scalars['ID'];
|
|
3276
|
+
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
3102
3277
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
3103
3278
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3279
|
+
properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
|
|
3104
3280
|
space?: Maybe<ConfluenceSpace>;
|
|
3105
3281
|
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
3106
3282
|
title?: Maybe<Scalars['String']>;
|
|
3107
3283
|
type?: Maybe<ConfluenceContentType>;
|
|
3284
|
+
viewer?: Maybe<ConfluenceBlogPostViewerSummary>;
|
|
3285
|
+
};
|
|
3286
|
+
export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
3287
|
+
keys: Array<Maybe<Scalars['String']>>;
|
|
3108
3288
|
};
|
|
3109
3289
|
export declare type ConfluenceBlogPostLinks = {
|
|
3110
3290
|
__typename?: 'ConfluenceBlogPostLinks';
|
|
3111
3291
|
base?: Maybe<Scalars['String']>;
|
|
3112
3292
|
webUi?: Maybe<Scalars['String']>;
|
|
3113
3293
|
};
|
|
3294
|
+
export declare type ConfluenceBlogPostProperty = {
|
|
3295
|
+
__typename?: 'ConfluenceBlogPostProperty';
|
|
3296
|
+
key: Scalars['String'];
|
|
3297
|
+
value: Scalars['String'];
|
|
3298
|
+
};
|
|
3114
3299
|
export declare enum ConfluenceBlogPostStatus {
|
|
3115
3300
|
Archived = "ARCHIVED",
|
|
3116
3301
|
Current = "CURRENT",
|
|
@@ -3119,6 +3304,21 @@ export declare enum ConfluenceBlogPostStatus {
|
|
|
3119
3304
|
Historical = "HISTORICAL",
|
|
3120
3305
|
Trashed = "TRASHED"
|
|
3121
3306
|
}
|
|
3307
|
+
export declare type ConfluenceBlogPostVersion = {
|
|
3308
|
+
__typename?: 'ConfluenceBlogPostVersion';
|
|
3309
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3310
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
3311
|
+
number?: Maybe<Scalars['Int']>;
|
|
3312
|
+
};
|
|
3313
|
+
export declare type ConfluenceBlogPostViewerSummary = {
|
|
3314
|
+
__typename?: 'ConfluenceBlogPostViewerSummary';
|
|
3315
|
+
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3316
|
+
lastSeenAt?: Maybe<Scalars['String']>;
|
|
3317
|
+
};
|
|
3318
|
+
export declare enum ConfluenceCollaborativeEditingService {
|
|
3319
|
+
Ncs = "NCS",
|
|
3320
|
+
Synchrony = "SYNCHRONY"
|
|
3321
|
+
}
|
|
3122
3322
|
export declare type ConfluenceComment = {
|
|
3123
3323
|
__typename?: 'ConfluenceComment';
|
|
3124
3324
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3155,6 +3355,7 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
3155
3355
|
};
|
|
3156
3356
|
export declare type ConfluenceContentMetadata = {
|
|
3157
3357
|
__typename?: 'ConfluenceContentMetadata';
|
|
3358
|
+
collaborativeEditingService?: Maybe<ConfluenceCollaborativeEditingService>;
|
|
3158
3359
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
3159
3360
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
3160
3361
|
};
|
|
@@ -3182,6 +3383,16 @@ export declare enum ConfluenceContentType {
|
|
|
3182
3383
|
Comment = "COMMENT",
|
|
3183
3384
|
Page = "PAGE"
|
|
3184
3385
|
}
|
|
3386
|
+
export declare type ConfluenceContribution = {
|
|
3387
|
+
__typename?: 'ConfluenceContribution';
|
|
3388
|
+
status: ConfluenceContributionStatus;
|
|
3389
|
+
};
|
|
3390
|
+
export declare enum ConfluenceContributionStatus {
|
|
3391
|
+
Current = "CURRENT",
|
|
3392
|
+
Draft = "DRAFT",
|
|
3393
|
+
Unknown = "UNKNOWN",
|
|
3394
|
+
Unpublished = "UNPUBLISHED"
|
|
3395
|
+
}
|
|
3185
3396
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
3186
3397
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3187
3398
|
spaceId: Scalars['ID'];
|
|
@@ -3190,7 +3401,22 @@ export declare type ConfluenceCreateBlogPostInput = {
|
|
|
3190
3401
|
};
|
|
3191
3402
|
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
3192
3403
|
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
3193
|
-
|
|
3404
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3406
|
+
success: Scalars['Boolean'];
|
|
3407
|
+
};
|
|
3408
|
+
export declare type ConfluenceCreateCommentOnPageInput = {
|
|
3409
|
+
body: ConfluenceContentBodyInput;
|
|
3410
|
+
pageId: Scalars['ID'];
|
|
3411
|
+
pageStatus: ConfluenceCreateCommentOnPagePageStatus;
|
|
3412
|
+
};
|
|
3413
|
+
export declare enum ConfluenceCreateCommentOnPagePageStatus {
|
|
3414
|
+
Current = "CURRENT",
|
|
3415
|
+
Draft = "DRAFT"
|
|
3416
|
+
}
|
|
3417
|
+
export declare type ConfluenceCreateCommentPayload = {
|
|
3418
|
+
__typename?: 'ConfluenceCreateCommentPayload';
|
|
3419
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3194
3420
|
errors?: Maybe<Array<MutationError>>;
|
|
3195
3421
|
success: Scalars['Boolean'];
|
|
3196
3422
|
};
|
|
@@ -3202,7 +3428,7 @@ export declare type ConfluenceCreatePageInput = {
|
|
|
3202
3428
|
};
|
|
3203
3429
|
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
3204
3430
|
__typename?: 'ConfluenceCreatePagePayload';
|
|
3205
|
-
|
|
3431
|
+
page?: Maybe<ConfluencePage>;
|
|
3206
3432
|
errors?: Maybe<Array<MutationError>>;
|
|
3207
3433
|
success: Scalars['Boolean'];
|
|
3208
3434
|
};
|
|
@@ -3213,7 +3439,7 @@ export declare type ConfluenceCreateSpaceInput = {
|
|
|
3213
3439
|
};
|
|
3214
3440
|
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
3215
3441
|
__typename?: 'ConfluenceCreateSpacePayload';
|
|
3216
|
-
|
|
3442
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3217
3443
|
errors?: Maybe<Array<MutationError>>;
|
|
3218
3444
|
success: Scalars['Boolean'];
|
|
3219
3445
|
};
|
|
@@ -3224,7 +3450,15 @@ export declare type ConfluenceCreateUserPropertyInput = {
|
|
|
3224
3450
|
};
|
|
3225
3451
|
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
3226
3452
|
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
3227
|
-
|
|
3453
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3455
|
+
success: Scalars['Boolean'];
|
|
3456
|
+
};
|
|
3457
|
+
export declare type ConfluenceDeleteCommentInput = {
|
|
3458
|
+
id: Scalars['ID'];
|
|
3459
|
+
};
|
|
3460
|
+
export declare type ConfluenceDeleteCommentPayload = {
|
|
3461
|
+
__typename?: 'ConfluenceDeleteCommentPayload';
|
|
3228
3462
|
errors?: Maybe<Array<MutationError>>;
|
|
3229
3463
|
success: Scalars['Boolean'];
|
|
3230
3464
|
};
|
|
@@ -3280,85 +3514,101 @@ export declare type ConfluenceLabel = {
|
|
|
3280
3514
|
};
|
|
3281
3515
|
export declare type ConfluenceMutationApi = {
|
|
3282
3516
|
__typename?: 'ConfluenceMutationApi';
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3517
|
+
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3518
|
+
createCommentOnPage?: Maybe<ConfluenceCreateCommentPayload>;
|
|
3519
|
+
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3520
|
+
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3521
|
+
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
3522
|
+
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3523
|
+
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3524
|
+
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3525
|
+
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3526
|
+
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3527
|
+
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3528
|
+
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
3529
|
+
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3530
|
+
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3531
|
+
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
3532
|
+
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3533
|
+
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3534
|
+
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3535
|
+
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3536
|
+
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3537
|
+
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3538
|
+
updateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3539
|
+
deleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3540
|
+
};
|
|
3541
|
+
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
3304
3542
|
cloudId: Scalars['ID'];
|
|
3305
3543
|
input: ConfluenceCreateBlogPostInput;
|
|
3306
3544
|
};
|
|
3307
|
-
export declare type
|
|
3545
|
+
export declare type ConfluenceMutationApiCreateCommentOnPageArgs = {
|
|
3546
|
+
input: ConfluenceCreateCommentOnPageInput;
|
|
3547
|
+
};
|
|
3548
|
+
export declare type ConfluenceMutationApiCreatePageArgs = {
|
|
3308
3549
|
cloudId: Scalars['ID'];
|
|
3309
3550
|
input: ConfluenceCreatePageInput;
|
|
3310
3551
|
};
|
|
3311
|
-
export declare type
|
|
3552
|
+
export declare type ConfluenceMutationApiCreateSpaceArgs = {
|
|
3312
3553
|
cloudId: Scalars['ID'];
|
|
3313
3554
|
input: ConfluenceCreateSpaceInput;
|
|
3314
3555
|
};
|
|
3315
|
-
export declare type
|
|
3556
|
+
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
3557
|
+
input: ConfluenceDeleteCommentInput;
|
|
3558
|
+
};
|
|
3559
|
+
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
3316
3560
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3317
3561
|
};
|
|
3318
|
-
export declare type
|
|
3562
|
+
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
3319
3563
|
input: ConfluenceDeleteDraftPageInput;
|
|
3320
3564
|
};
|
|
3321
|
-
export declare type
|
|
3565
|
+
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
3322
3566
|
input: ConfluencePublishBlogPostInput;
|
|
3323
3567
|
};
|
|
3324
|
-
export declare type
|
|
3568
|
+
export declare type ConfluenceMutationApiPublishPageArgs = {
|
|
3325
3569
|
input: ConfluencePublishPageInput;
|
|
3326
3570
|
};
|
|
3327
|
-
export declare type
|
|
3571
|
+
export declare type ConfluenceMutationApiPurgeBlogPostArgs = {
|
|
3328
3572
|
input: ConfluencePurgeBlogPostInput;
|
|
3329
3573
|
};
|
|
3330
|
-
export declare type
|
|
3574
|
+
export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
3331
3575
|
input: ConfluencePurgePageInput;
|
|
3332
3576
|
};
|
|
3333
|
-
export declare type
|
|
3577
|
+
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
3578
|
+
input: ConfluenceReplyToCommentInput;
|
|
3579
|
+
};
|
|
3580
|
+
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
3334
3581
|
input: ConfluenceTrashBlogPostInput;
|
|
3335
3582
|
};
|
|
3336
|
-
export declare type
|
|
3583
|
+
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
3337
3584
|
input: ConfluenceTrashPageInput;
|
|
3338
3585
|
};
|
|
3339
|
-
export declare type
|
|
3586
|
+
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
3587
|
+
input: ConfluenceUpdateCommentInput;
|
|
3588
|
+
};
|
|
3589
|
+
export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
3340
3590
|
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3341
3591
|
};
|
|
3342
|
-
export declare type
|
|
3592
|
+
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
3343
3593
|
input: ConfluenceUpdateCurrentPageInput;
|
|
3344
3594
|
};
|
|
3345
|
-
export declare type
|
|
3595
|
+
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
3346
3596
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3347
3597
|
};
|
|
3348
|
-
export declare type
|
|
3598
|
+
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
3349
3599
|
input: ConfluenceUpdateDraftPageInput;
|
|
3350
3600
|
};
|
|
3351
|
-
export declare type
|
|
3601
|
+
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3352
3602
|
input: ConfluenceUpdateSpaceInput;
|
|
3353
3603
|
};
|
|
3354
|
-
export declare type
|
|
3604
|
+
export declare type ConfluenceMutationApiCreateUserPropertyArgs = {
|
|
3355
3605
|
cloudId: Scalars['String'];
|
|
3356
3606
|
input: ConfluenceCreateUserPropertyInput;
|
|
3357
3607
|
};
|
|
3358
|
-
export declare type
|
|
3608
|
+
export declare type ConfluenceMutationApiUpdateValueUserPropertyArgs = {
|
|
3359
3609
|
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3360
3610
|
};
|
|
3361
|
-
export declare type
|
|
3611
|
+
export declare type ConfluenceMutationApiDeleteUserPropertyArgs = {
|
|
3362
3612
|
input: ConfluenceDeleteUserPropertyInput;
|
|
3363
3613
|
};
|
|
3364
3614
|
export declare enum ConfluenceMutationContentStatus {
|
|
@@ -3398,20 +3648,37 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3398
3648
|
}
|
|
3399
3649
|
export declare type ConfluencePage = {
|
|
3400
3650
|
__typename?: 'ConfluencePage';
|
|
3651
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3401
3652
|
id: Scalars['ID'];
|
|
3653
|
+
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
3402
3654
|
links?: Maybe<ConfluencePageLinks>;
|
|
3403
3655
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3656
|
+
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
3404
3657
|
pageId: Scalars['ID'];
|
|
3405
3658
|
space?: Maybe<ConfluenceSpace>;
|
|
3406
3659
|
status?: Maybe<ConfluencePageStatus>;
|
|
3407
3660
|
title?: Maybe<Scalars['String']>;
|
|
3408
3661
|
type?: Maybe<ConfluenceContentType>;
|
|
3662
|
+
viewer?: Maybe<ConfluencePageViewerSummary>;
|
|
3663
|
+
};
|
|
3664
|
+
export declare type ConfluencePagePropertiesArgs = {
|
|
3665
|
+
keys: Array<Maybe<Scalars['String']>>;
|
|
3666
|
+
};
|
|
3667
|
+
export declare type ConfluencePageInfo = {
|
|
3668
|
+
__typename?: 'ConfluencePageInfo';
|
|
3669
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
3670
|
+
hasNextPage: Scalars['Boolean'];
|
|
3409
3671
|
};
|
|
3410
3672
|
export declare type ConfluencePageLinks = {
|
|
3411
3673
|
__typename?: 'ConfluencePageLinks';
|
|
3412
3674
|
base?: Maybe<Scalars['String']>;
|
|
3413
3675
|
webUi?: Maybe<Scalars['String']>;
|
|
3414
3676
|
};
|
|
3677
|
+
export declare type ConfluencePageProperty = {
|
|
3678
|
+
__typename?: 'ConfluencePageProperty';
|
|
3679
|
+
key: Scalars['String'];
|
|
3680
|
+
value: Scalars['String'];
|
|
3681
|
+
};
|
|
3415
3682
|
export declare enum ConfluencePageStatus {
|
|
3416
3683
|
Archived = "ARCHIVED",
|
|
3417
3684
|
Current = "CURRENT",
|
|
@@ -3420,13 +3687,24 @@ export declare enum ConfluencePageStatus {
|
|
|
3420
3687
|
Historical = "HISTORICAL",
|
|
3421
3688
|
Trashed = "TRASHED"
|
|
3422
3689
|
}
|
|
3690
|
+
export declare type ConfluencePageVersion = {
|
|
3691
|
+
__typename?: 'ConfluencePageVersion';
|
|
3692
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3693
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
3694
|
+
number?: Maybe<Scalars['Int']>;
|
|
3695
|
+
};
|
|
3696
|
+
export declare type ConfluencePageViewerSummary = {
|
|
3697
|
+
__typename?: 'ConfluencePageViewerSummary';
|
|
3698
|
+
lastContribution?: Maybe<ConfluenceContribution>;
|
|
3699
|
+
lastSeenAt?: Maybe<Scalars['String']>;
|
|
3700
|
+
};
|
|
3423
3701
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3424
3702
|
id: Scalars['ID'];
|
|
3425
3703
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3426
3704
|
};
|
|
3427
3705
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
3428
3706
|
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
3429
|
-
|
|
3707
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3430
3708
|
errors?: Maybe<Array<MutationError>>;
|
|
3431
3709
|
success: Scalars['Boolean'];
|
|
3432
3710
|
};
|
|
@@ -3436,7 +3714,7 @@ export declare type ConfluencePublishPageInput = {
|
|
|
3436
3714
|
};
|
|
3437
3715
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
3438
3716
|
__typename?: 'ConfluencePublishPagePayload';
|
|
3439
|
-
|
|
3717
|
+
page?: Maybe<ConfluencePage>;
|
|
3440
3718
|
errors?: Maybe<Array<MutationError>>;
|
|
3441
3719
|
success: Scalars['Boolean'];
|
|
3442
3720
|
};
|
|
@@ -3458,51 +3736,68 @@ export declare type ConfluencePurgePagePayload = Payload & {
|
|
|
3458
3736
|
};
|
|
3459
3737
|
export declare type ConfluenceQueryApi = {
|
|
3460
3738
|
__typename?: 'ConfluenceQueryApi';
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3739
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3740
|
+
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3741
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3742
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3743
|
+
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
3744
|
+
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
3745
|
+
page?: Maybe<ConfluencePage>;
|
|
3746
|
+
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3747
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3748
|
+
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3749
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3750
|
+
userProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3472
3751
|
};
|
|
3473
|
-
export declare type
|
|
3752
|
+
export declare type ConfluenceQueryApiBlogPostArgs = {
|
|
3474
3753
|
id: Scalars['ID'];
|
|
3475
3754
|
};
|
|
3476
|
-
export declare type
|
|
3755
|
+
export declare type ConfluenceQueryApiBlogPostsArgs = {
|
|
3477
3756
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3478
3757
|
};
|
|
3479
|
-
export declare type
|
|
3758
|
+
export declare type ConfluenceQueryApiCommentArgs = {
|
|
3480
3759
|
id: Scalars['ID'];
|
|
3481
3760
|
};
|
|
3482
|
-
export declare type
|
|
3761
|
+
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
3483
3762
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3484
3763
|
};
|
|
3485
|
-
export declare type
|
|
3764
|
+
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
3486
3765
|
id: Scalars['ID'];
|
|
3487
3766
|
};
|
|
3488
|
-
export declare type
|
|
3767
|
+
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
3768
|
+
after?: Maybe<Scalars['String']>;
|
|
3769
|
+
cloudId: Scalars['ID'];
|
|
3770
|
+
filters?: Maybe<ConfluenceSpaceFilters>;
|
|
3771
|
+
first?: Maybe<Scalars['Int']>;
|
|
3772
|
+
};
|
|
3773
|
+
export declare type ConfluenceQueryApiPageArgs = {
|
|
3489
3774
|
id: Scalars['ID'];
|
|
3490
3775
|
};
|
|
3491
|
-
export declare type
|
|
3776
|
+
export declare type ConfluenceQueryApiPagesArgs = {
|
|
3492
3777
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3493
3778
|
};
|
|
3494
|
-
export declare type
|
|
3779
|
+
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
3495
3780
|
id: Scalars['ID'];
|
|
3496
3781
|
};
|
|
3497
|
-
export declare type
|
|
3782
|
+
export declare type ConfluenceQueryApiSpacesArgs = {
|
|
3498
3783
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3499
3784
|
};
|
|
3500
|
-
export declare type
|
|
3785
|
+
export declare type ConfluenceQueryApiUserPropertyArgs = {
|
|
3501
3786
|
id: Scalars['ID'];
|
|
3502
3787
|
};
|
|
3503
|
-
export declare type
|
|
3788
|
+
export declare type ConfluenceQueryApiUserPropertiesArgs = {
|
|
3504
3789
|
ids: Array<Scalars['ID']>;
|
|
3505
3790
|
};
|
|
3791
|
+
export declare type ConfluenceReplyToCommentInput = {
|
|
3792
|
+
body: ConfluenceContentBodyInput;
|
|
3793
|
+
parentCommentId: Scalars['ID'];
|
|
3794
|
+
};
|
|
3795
|
+
export declare type ConfluenceReplyToCommentPayload = {
|
|
3796
|
+
__typename?: 'ConfluenceReplyToCommentPayload';
|
|
3797
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3798
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3799
|
+
success: Scalars['Boolean'];
|
|
3800
|
+
};
|
|
3506
3801
|
export declare type ConfluenceSpace = {
|
|
3507
3802
|
__typename?: 'ConfluenceSpace';
|
|
3508
3803
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -3520,11 +3815,25 @@ export declare type ConfluenceSpace = {
|
|
|
3520
3815
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
3521
3816
|
type?: Maybe<ConfluenceSpaceType>;
|
|
3522
3817
|
};
|
|
3818
|
+
export declare type ConfluenceSpaceConnection = {
|
|
3819
|
+
__typename?: 'ConfluenceSpaceConnection';
|
|
3820
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
3821
|
+
nodes?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3822
|
+
pageInfo: ConfluencePageInfo;
|
|
3823
|
+
};
|
|
3523
3824
|
export declare type ConfluenceSpaceDescription = {
|
|
3524
3825
|
__typename?: 'ConfluenceSpaceDescription';
|
|
3525
3826
|
plain?: Maybe<Scalars['String']>;
|
|
3526
3827
|
view?: Maybe<Scalars['String']>;
|
|
3527
3828
|
};
|
|
3829
|
+
export declare type ConfluenceSpaceEdge = {
|
|
3830
|
+
__typename?: 'ConfluenceSpaceEdge';
|
|
3831
|
+
cursor: Scalars['String'];
|
|
3832
|
+
node?: Maybe<ConfluenceSpace>;
|
|
3833
|
+
};
|
|
3834
|
+
export declare type ConfluenceSpaceFilters = {
|
|
3835
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
3836
|
+
};
|
|
3528
3837
|
export declare type ConfluenceSpaceIcon = {
|
|
3529
3838
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3530
3839
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3570,6 +3879,16 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
3570
3879
|
errors?: Maybe<Array<MutationError>>;
|
|
3571
3880
|
success: Scalars['Boolean'];
|
|
3572
3881
|
};
|
|
3882
|
+
export declare type ConfluenceUpdateCommentInput = {
|
|
3883
|
+
body: ConfluenceContentBodyInput;
|
|
3884
|
+
id: Scalars['ID'];
|
|
3885
|
+
};
|
|
3886
|
+
export declare type ConfluenceUpdateCommentPayload = {
|
|
3887
|
+
__typename?: 'ConfluenceUpdateCommentPayload';
|
|
3888
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3889
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3890
|
+
success: Scalars['Boolean'];
|
|
3891
|
+
};
|
|
3573
3892
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3574
3893
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3575
3894
|
id: Scalars['ID'];
|
|
@@ -3577,7 +3896,7 @@ export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
|
3577
3896
|
};
|
|
3578
3897
|
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3579
3898
|
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3580
|
-
|
|
3899
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3581
3900
|
errors?: Maybe<Array<MutationError>>;
|
|
3582
3901
|
success: Scalars['Boolean'];
|
|
3583
3902
|
};
|
|
@@ -3588,7 +3907,7 @@ export declare type ConfluenceUpdateCurrentPageInput = {
|
|
|
3588
3907
|
};
|
|
3589
3908
|
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3590
3909
|
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3591
|
-
|
|
3910
|
+
page?: Maybe<ConfluencePage>;
|
|
3592
3911
|
errors?: Maybe<Array<MutationError>>;
|
|
3593
3912
|
success: Scalars['Boolean'];
|
|
3594
3913
|
};
|
|
@@ -3599,7 +3918,7 @@ export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
|
3599
3918
|
};
|
|
3600
3919
|
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3601
3920
|
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3602
|
-
|
|
3921
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3603
3922
|
errors?: Maybe<Array<MutationError>>;
|
|
3604
3923
|
success: Scalars['Boolean'];
|
|
3605
3924
|
};
|
|
@@ -3610,7 +3929,7 @@ export declare type ConfluenceUpdateDraftPageInput = {
|
|
|
3610
3929
|
};
|
|
3611
3930
|
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3612
3931
|
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3613
|
-
|
|
3932
|
+
page?: Maybe<ConfluencePage>;
|
|
3614
3933
|
errors?: Maybe<Array<MutationError>>;
|
|
3615
3934
|
success: Scalars['Boolean'];
|
|
3616
3935
|
};
|
|
@@ -3620,7 +3939,7 @@ export declare type ConfluenceUpdateSpaceInput = {
|
|
|
3620
3939
|
};
|
|
3621
3940
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
3622
3941
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
3623
|
-
|
|
3942
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3624
3943
|
errors?: Maybe<Array<MutationError>>;
|
|
3625
3944
|
success: Scalars['Boolean'];
|
|
3626
3945
|
};
|
|
@@ -3630,7 +3949,7 @@ export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
|
3630
3949
|
};
|
|
3631
3950
|
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3632
3951
|
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3633
|
-
|
|
3952
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3634
3953
|
errors?: Maybe<Array<MutationError>>;
|
|
3635
3954
|
success: Scalars['Boolean'];
|
|
3636
3955
|
};
|
|
@@ -3818,6 +4137,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3818
4137
|
supportingVisuals?: Maybe<Array<ContentPlatformImageComponent>>;
|
|
3819
4138
|
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3820
4139
|
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
4140
|
+
featureRolloutEndDate?: Maybe<Scalars['String']>;
|
|
3821
4141
|
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
|
|
3822
4142
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3823
4143
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
@@ -4041,6 +4361,9 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
4041
4361
|
hasDescription?: Maybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
4042
4362
|
hasOwner?: Maybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
4043
4363
|
hasMetricValue?: Maybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
4364
|
+
hasCustomTextValue?: Maybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
4365
|
+
hasCustomBooleanValue?: Maybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
4366
|
+
hasCustomNumberValue?: Maybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
4044
4367
|
};
|
|
4045
4368
|
export declare type CreateCompassScorecardCriteriasInput = {
|
|
4046
4369
|
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
@@ -4253,6 +4576,20 @@ export declare type CreatePolarisDecorationPayload = Payload & {
|
|
|
4253
4576
|
errors?: Maybe<Array<MutationError>>;
|
|
4254
4577
|
node?: Maybe<PolarisDecoration>;
|
|
4255
4578
|
};
|
|
4579
|
+
export declare type CreatePolarisIdeaTemplateInput = {
|
|
4580
|
+
project: Scalars['ID'];
|
|
4581
|
+
title: Scalars['String'];
|
|
4582
|
+
description?: Maybe<Scalars['String']>;
|
|
4583
|
+
color?: Maybe<Scalars['String']>;
|
|
4584
|
+
emoji?: Maybe<Scalars['String']>;
|
|
4585
|
+
template?: Maybe<Scalars['JSON']>;
|
|
4586
|
+
};
|
|
4587
|
+
export declare type CreatePolarisIdeaTemplatePayload = {
|
|
4588
|
+
__typename?: 'CreatePolarisIdeaTemplatePayload';
|
|
4589
|
+
success: Scalars['Boolean'];
|
|
4590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4591
|
+
node?: Maybe<PolarisIdeaTemplate>;
|
|
4592
|
+
};
|
|
4256
4593
|
export declare type CreatePolarisInsightFromPlayContributionInput = {
|
|
4257
4594
|
contribution: Scalars['ID'];
|
|
4258
4595
|
subject?: Maybe<Scalars['ID']>;
|
|
@@ -4679,6 +5016,15 @@ export declare type DeletePolarisFieldPayload = Payload & {
|
|
|
4679
5016
|
success: Scalars['Boolean'];
|
|
4680
5017
|
errors?: Maybe<Array<MutationError>>;
|
|
4681
5018
|
};
|
|
5019
|
+
export declare type DeletePolarisIdeaTemplateInput = {
|
|
5020
|
+
id: Scalars['ID'];
|
|
5021
|
+
project: Scalars['ID'];
|
|
5022
|
+
};
|
|
5023
|
+
export declare type DeletePolarisIdeaTemplatePayload = Payload & {
|
|
5024
|
+
__typename?: 'DeletePolarisIdeaTemplatePayload';
|
|
5025
|
+
success: Scalars['Boolean'];
|
|
5026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5027
|
+
};
|
|
4682
5028
|
export declare type DeletePolarisInsightPayload = Payload & {
|
|
4683
5029
|
__typename?: 'DeletePolarisInsightPayload';
|
|
4684
5030
|
success: Scalars['Boolean'];
|
|
@@ -5262,16 +5608,19 @@ export declare type DevOpsTool = Node & {
|
|
|
5262
5608
|
productKey: Scalars['String'];
|
|
5263
5609
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5264
5610
|
group: DevOpsToolGroup;
|
|
5611
|
+
category: DevOpsToolCategory;
|
|
5265
5612
|
supportsContainers: Scalars['Boolean'];
|
|
5266
|
-
|
|
5613
|
+
recommended: Scalars['Boolean'];
|
|
5267
5614
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
5268
5615
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5616
|
+
auth?: Maybe<DevOpsToolAuth>;
|
|
5269
5617
|
};
|
|
5270
5618
|
export declare type DevOpsToolNamespacesArgs = {
|
|
5271
5619
|
query?: Maybe<Scalars['String']>;
|
|
5272
5620
|
first?: Maybe<Scalars['Int']>;
|
|
5273
5621
|
after?: Maybe<Scalars['String']>;
|
|
5274
5622
|
};
|
|
5623
|
+
export declare type DevOpsToolAuth = DevOpsToolDefaultAuth | DevOpsToolOAuth;
|
|
5275
5624
|
export declare type DevOpsToolAvatar = {
|
|
5276
5625
|
__typename?: 'DevOpsToolAvatar';
|
|
5277
5626
|
url: Scalars['URL'];
|
|
@@ -5284,6 +5633,23 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5284
5633
|
name: Scalars['String'];
|
|
5285
5634
|
};
|
|
5286
5635
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5636
|
+
export declare type DevOpsToolCategory = {
|
|
5637
|
+
__typename?: 'DevOpsToolCategory';
|
|
5638
|
+
id: Scalars['String'];
|
|
5639
|
+
name: Scalars['String'];
|
|
5640
|
+
groupId: Scalars['String'];
|
|
5641
|
+
};
|
|
5642
|
+
export declare type DevOpsToolCategoryConnection = {
|
|
5643
|
+
__typename?: 'DevOpsToolCategoryConnection';
|
|
5644
|
+
edges?: Maybe<Array<Maybe<DevOpsToolCategoryEdge>>>;
|
|
5645
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolCategory>>>;
|
|
5646
|
+
pageInfo: PageInfo;
|
|
5647
|
+
};
|
|
5648
|
+
export declare type DevOpsToolCategoryEdge = {
|
|
5649
|
+
__typename?: 'DevOpsToolCategoryEdge';
|
|
5650
|
+
cursor: Scalars['String'];
|
|
5651
|
+
node?: Maybe<DevOpsToolCategory>;
|
|
5652
|
+
};
|
|
5287
5653
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5288
5654
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5289
5655
|
requestId: Scalars['String'];
|
|
@@ -5329,22 +5695,6 @@ export declare type DevOpsToolContainerEdge = {
|
|
|
5329
5695
|
cursor: Scalars['String'];
|
|
5330
5696
|
node?: Maybe<DevOpsToolContainer>;
|
|
5331
5697
|
};
|
|
5332
|
-
export declare type DevOpsToolContainerIntegration = {
|
|
5333
|
-
containerType: Scalars['String'];
|
|
5334
|
-
};
|
|
5335
|
-
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
5336
|
-
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
5337
|
-
containerType: Scalars['String'];
|
|
5338
|
-
appKey: Scalars['String'];
|
|
5339
|
-
installed: Scalars['Boolean'];
|
|
5340
|
-
oauthUrl?: Maybe<Scalars['String']>;
|
|
5341
|
-
};
|
|
5342
|
-
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
5343
|
-
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
5344
|
-
containerType: Scalars['String'];
|
|
5345
|
-
productKey: Scalars['String'];
|
|
5346
|
-
available: Scalars['Boolean'];
|
|
5347
|
-
};
|
|
5348
5698
|
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
5349
5699
|
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
5350
5700
|
name?: Maybe<Scalars['String']>;
|
|
@@ -5358,6 +5708,10 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5358
5708
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5359
5709
|
name?: Maybe<Scalars['String']>;
|
|
5360
5710
|
};
|
|
5711
|
+
export declare type DevOpsToolDefaultAuth = {
|
|
5712
|
+
__typename?: 'DevOpsToolDefaultAuth';
|
|
5713
|
+
authenticated: Scalars['Boolean'];
|
|
5714
|
+
};
|
|
5361
5715
|
export declare type DevOpsToolEdge = {
|
|
5362
5716
|
__typename?: 'DevOpsToolEdge';
|
|
5363
5717
|
cursor: Scalars['String'];
|
|
@@ -5379,12 +5733,29 @@ export declare type DevOpsToolGroup = {
|
|
|
5379
5733
|
__typename?: 'DevOpsToolGroup';
|
|
5380
5734
|
groupId: Scalars['String'];
|
|
5381
5735
|
groupName: Scalars['String'];
|
|
5736
|
+
categories?: Maybe<DevOpsToolCategoryConnection>;
|
|
5737
|
+
};
|
|
5738
|
+
export declare type DevOpsToolGroupCategoriesArgs = {
|
|
5739
|
+
first?: Maybe<Scalars['Int']>;
|
|
5740
|
+
after?: Maybe<Scalars['String']>;
|
|
5741
|
+
};
|
|
5742
|
+
export declare type DevOpsToolGroupConnection = {
|
|
5743
|
+
__typename?: 'DevOpsToolGroupConnection';
|
|
5744
|
+
edges?: Maybe<Array<Maybe<DevOpsToolGroupEdge>>>;
|
|
5745
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolGroup>>>;
|
|
5746
|
+
pageInfo: PageInfo;
|
|
5747
|
+
};
|
|
5748
|
+
export declare type DevOpsToolGroupEdge = {
|
|
5749
|
+
__typename?: 'DevOpsToolGroupEdge';
|
|
5750
|
+
cursor: Scalars['String'];
|
|
5751
|
+
node?: Maybe<DevOpsToolGroup>;
|
|
5382
5752
|
};
|
|
5383
5753
|
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5384
5754
|
export declare type DevOpsToolIntegrationApp = {
|
|
5385
5755
|
__typename?: 'DevOpsToolIntegrationApp';
|
|
5386
5756
|
appKey: Scalars['String'];
|
|
5387
5757
|
appName: Scalars['String'];
|
|
5758
|
+
marketplaceType: Scalars['String'];
|
|
5388
5759
|
installed: Scalars['Boolean'];
|
|
5389
5760
|
iconUrl?: Maybe<Scalars['String']>;
|
|
5390
5761
|
};
|
|
@@ -5395,6 +5766,13 @@ export declare type DevOpsToolIntegrationProduct = {
|
|
|
5395
5766
|
available: Scalars['Boolean'];
|
|
5396
5767
|
iconUrl?: Maybe<Scalars['String']>;
|
|
5397
5768
|
};
|
|
5769
|
+
export declare enum DevOpsToolIntegrationType {
|
|
5770
|
+
Any = "ANY",
|
|
5771
|
+
Exists = "EXISTS",
|
|
5772
|
+
App = "APP",
|
|
5773
|
+
Product = "PRODUCT",
|
|
5774
|
+
None = "NONE"
|
|
5775
|
+
}
|
|
5398
5776
|
export declare type DevOpsToolNamespace = Node & {
|
|
5399
5777
|
__typename?: 'DevOpsToolNamespace';
|
|
5400
5778
|
id: Scalars['ID'];
|
|
@@ -5432,11 +5810,25 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
|
5432
5810
|
OncallTab = "ONCALL_TAB",
|
|
5433
5811
|
PagesTab = "PAGES_TAB"
|
|
5434
5812
|
}
|
|
5813
|
+
export declare type DevOpsToolOAuth = {
|
|
5814
|
+
__typename?: 'DevOpsToolOAuth';
|
|
5815
|
+
authenticated: Scalars['Boolean'];
|
|
5816
|
+
oauthUrl: Scalars['String'];
|
|
5817
|
+
};
|
|
5435
5818
|
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5436
5819
|
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5437
5820
|
requestId: Scalars['String'];
|
|
5438
5821
|
name: Scalars['String'];
|
|
5439
5822
|
};
|
|
5823
|
+
export declare type DevOpsToolSort = {
|
|
5824
|
+
name?: Maybe<DevOpsToolSortOrder>;
|
|
5825
|
+
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5826
|
+
integration?: Maybe<DevOpsToolSortOrder>;
|
|
5827
|
+
};
|
|
5828
|
+
export declare enum DevOpsToolSortOrder {
|
|
5829
|
+
Asc = "ASC",
|
|
5830
|
+
Desc = "DESC"
|
|
5831
|
+
}
|
|
5440
5832
|
export declare type DevOpsToolUnknownTool = {
|
|
5441
5833
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5442
5834
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5455,11 +5847,13 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
5455
5847
|
export declare type DevOpsTools = {
|
|
5456
5848
|
__typename?: 'DevOpsTools';
|
|
5457
5849
|
tools?: Maybe<DevOpsToolConnection>;
|
|
5850
|
+
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
5458
5851
|
tool?: Maybe<DevOpsTool>;
|
|
5459
5852
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5460
5853
|
container?: Maybe<DevOpsToolContainer>;
|
|
5461
5854
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5462
5855
|
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
5856
|
+
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
5463
5857
|
};
|
|
5464
5858
|
export declare type DevOpsToolsToolsArgs = {
|
|
5465
5859
|
cloudId: Scalars['ID'];
|
|
@@ -5468,7 +5862,17 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5468
5862
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5469
5863
|
groupId?: Maybe<Scalars['String']>;
|
|
5470
5864
|
categoryId?: Maybe<Scalars['String']>;
|
|
5865
|
+
installed?: Maybe<Scalars['Boolean']>;
|
|
5471
5866
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5867
|
+
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5868
|
+
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
5869
|
+
};
|
|
5870
|
+
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
5871
|
+
cloudId: Scalars['ID'];
|
|
5872
|
+
first?: Maybe<Scalars['Int']>;
|
|
5873
|
+
after?: Maybe<Scalars['String']>;
|
|
5874
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5875
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5472
5876
|
};
|
|
5473
5877
|
export declare type DevOpsToolsToolArgs = {
|
|
5474
5878
|
id: Scalars['ID'];
|
|
@@ -5489,6 +5893,10 @@ export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
|
5489
5893
|
namespaceId: Scalars['String'];
|
|
5490
5894
|
containerName: Scalars['String'];
|
|
5491
5895
|
};
|
|
5896
|
+
export declare type DevOpsToolsGroupsArgs = {
|
|
5897
|
+
first?: Maybe<Scalars['Int']>;
|
|
5898
|
+
after?: Maybe<Scalars['String']>;
|
|
5899
|
+
};
|
|
5492
5900
|
export declare type DevStatus = {
|
|
5493
5901
|
__typename?: 'DevStatus';
|
|
5494
5902
|
activity: DevStatusActivity;
|
|
@@ -5499,7 +5907,8 @@ export declare enum DevStatusActivity {
|
|
|
5499
5907
|
PrMerged = "PR_MERGED",
|
|
5500
5908
|
PrDeclined = "PR_DECLINED",
|
|
5501
5909
|
BranchOpen = "BRANCH_OPEN",
|
|
5502
|
-
Commit = "COMMIT"
|
|
5910
|
+
Commit = "COMMIT",
|
|
5911
|
+
Deployment = "DEPLOYMENT"
|
|
5503
5912
|
}
|
|
5504
5913
|
export declare type DeveloperLogAccessResult = {
|
|
5505
5914
|
__typename?: 'DeveloperLogAccessResult';
|
|
@@ -5546,6 +5955,9 @@ export declare type EcosystemQuery = {
|
|
|
5546
5955
|
userGrants?: Maybe<UserGrantConnection>;
|
|
5547
5956
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5548
5957
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
5958
|
+
marketplacePartnerContactForCurrentUser?: Maybe<FortifiedMarketplaceAppWithContactPermissions>;
|
|
5959
|
+
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
5960
|
+
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
5549
5961
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
5550
5962
|
};
|
|
5551
5963
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -5560,6 +5972,15 @@ export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
|
5560
5972
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5561
5973
|
cloudId: Scalars['ID'];
|
|
5562
5974
|
};
|
|
5975
|
+
export declare type EcosystemQueryMarketplacePartnerContactForCurrentUserArgs = {
|
|
5976
|
+
appKey: Scalars['String'];
|
|
5977
|
+
};
|
|
5978
|
+
export declare type EcosystemQueryMarketplaceAppsByCurrentUserPartnerContactPermissionsArgs = {
|
|
5979
|
+
permission: FortifiedMarketplacePartnerContactPermission;
|
|
5980
|
+
};
|
|
5981
|
+
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
5982
|
+
appKey: Scalars['ID'];
|
|
5983
|
+
};
|
|
5563
5984
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5564
5985
|
appId: Scalars['ID'];
|
|
5565
5986
|
};
|
|
@@ -5707,6 +6128,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
5707
6128
|
type: ForgeMetricsDataType;
|
|
5708
6129
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5709
6130
|
resolution: ForgeMetricsResolution;
|
|
6131
|
+
interval: ForgeMetricsIntervalRange;
|
|
5710
6132
|
};
|
|
5711
6133
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
5712
6134
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -5722,18 +6144,30 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
5722
6144
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
5723
6145
|
UserTier = "USER_TIER",
|
|
5724
6146
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
5725
|
-
ErrorType = "ERROR_TYPE"
|
|
6147
|
+
ErrorType = "ERROR_TYPE",
|
|
6148
|
+
Version = "VERSION"
|
|
5726
6149
|
}
|
|
6150
|
+
export declare type ForgeMetricsInstallationContext = {
|
|
6151
|
+
__typename?: 'ForgeMetricsInstallationContext';
|
|
6152
|
+
tenantContext?: Maybe<TenantContext>;
|
|
6153
|
+
contextAri: Scalars['ID'];
|
|
6154
|
+
};
|
|
5727
6155
|
export declare type ForgeMetricsIntervalInput = {
|
|
5728
6156
|
start: Scalars['DateTime'];
|
|
5729
6157
|
end: Scalars['DateTime'];
|
|
5730
6158
|
};
|
|
6159
|
+
export declare type ForgeMetricsIntervalRange = {
|
|
6160
|
+
__typename?: 'ForgeMetricsIntervalRange';
|
|
6161
|
+
start: Scalars['DateTime'];
|
|
6162
|
+
end: Scalars['DateTime'];
|
|
6163
|
+
};
|
|
5731
6164
|
export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
5732
6165
|
__typename?: 'ForgeMetricsInvocationData';
|
|
5733
6166
|
name: Scalars['String'];
|
|
5734
6167
|
type: ForgeMetricsDataType;
|
|
5735
6168
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5736
6169
|
resolution: ForgeMetricsResolution;
|
|
6170
|
+
interval: ForgeMetricsIntervalRange;
|
|
5737
6171
|
};
|
|
5738
6172
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
5739
6173
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -5758,6 +6192,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
5758
6192
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
5759
6193
|
invocations: ForgeMetricsInvocationsResult;
|
|
5760
6194
|
errors: ForgeMetricsErrorsResult;
|
|
6195
|
+
sites: ForgeMetricsSitesResult;
|
|
5761
6196
|
};
|
|
5762
6197
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
5763
6198
|
query: ForgeMetricsQueryInput;
|
|
@@ -5771,6 +6206,9 @@ export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
|
5771
6206
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
5772
6207
|
query: ForgeMetricsQueryInput;
|
|
5773
6208
|
};
|
|
6209
|
+
export declare type ForgeMetricsQuerySitesArgs = {
|
|
6210
|
+
query: ForgeMetricsQueryInput;
|
|
6211
|
+
};
|
|
5774
6212
|
export declare type ForgeMetricsQueryFilters = {
|
|
5775
6213
|
environment?: Maybe<Scalars['ID']>;
|
|
5776
6214
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -5792,12 +6230,30 @@ export declare enum ForgeMetricsResolutionUnit {
|
|
|
5792
6230
|
export declare type ForgeMetricsSeries = {
|
|
5793
6231
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
5794
6232
|
};
|
|
6233
|
+
export declare enum ForgeMetricsSiteFilterCategory {
|
|
6234
|
+
LowestSuccessRate = "LOWEST_SUCCESS_RATE",
|
|
6235
|
+
HighestInvocationCount = "HIGHEST_INVOCATION_COUNT",
|
|
6236
|
+
HighestNumberOfErrors = "HIGHEST_NUMBER_OF_ERRORS",
|
|
6237
|
+
HighestNumberOfUsers = "HIGHEST_NUMBER_OF_USERS",
|
|
6238
|
+
All = "ALL"
|
|
6239
|
+
}
|
|
6240
|
+
export declare type ForgeMetricsSitesByCategory = {
|
|
6241
|
+
__typename?: 'ForgeMetricsSitesByCategory';
|
|
6242
|
+
category: ForgeMetricsSiteFilterCategory;
|
|
6243
|
+
installationContexts: Array<ForgeMetricsInstallationContext>;
|
|
6244
|
+
};
|
|
6245
|
+
export declare type ForgeMetricsSitesData = {
|
|
6246
|
+
__typename?: 'ForgeMetricsSitesData';
|
|
6247
|
+
data: Array<ForgeMetricsSitesByCategory>;
|
|
6248
|
+
};
|
|
6249
|
+
export declare type ForgeMetricsSitesResult = ForgeMetricsSitesData | QueryError;
|
|
5795
6250
|
export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
5796
6251
|
__typename?: 'ForgeMetricsSuccessRateData';
|
|
5797
6252
|
name: Scalars['String'];
|
|
5798
6253
|
type: ForgeMetricsDataType;
|
|
5799
6254
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5800
6255
|
resolution: ForgeMetricsResolution;
|
|
6256
|
+
interval: ForgeMetricsIntervalRange;
|
|
5801
6257
|
};
|
|
5802
6258
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
5803
6259
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -5818,6 +6274,82 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
5818
6274
|
resolution: ForgeMetricsResolution;
|
|
5819
6275
|
};
|
|
5820
6276
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6277
|
+
export declare type FortifiedMarketplaceApp = {
|
|
6278
|
+
__typename?: 'FortifiedMarketplaceApp';
|
|
6279
|
+
app?: Maybe<MarketplaceApp>;
|
|
6280
|
+
};
|
|
6281
|
+
export declare type FortifiedMarketplaceAppWithContactPermissions = {
|
|
6282
|
+
__typename?: 'FortifiedMarketplaceAppWithContactPermissions';
|
|
6283
|
+
app?: Maybe<MarketplaceApp>;
|
|
6284
|
+
permissions: Array<FortifiedMarketplacePartnerContactPermission>;
|
|
6285
|
+
};
|
|
6286
|
+
export declare enum FortifiedMarketplacePartnerContactPermission {
|
|
6287
|
+
AdministerPartner = "ADMINISTER_PARTNER",
|
|
6288
|
+
ManageAddonDetails = "MANAGE_ADDON_DETAILS",
|
|
6289
|
+
ManagePayment = "MANAGE_PAYMENT",
|
|
6290
|
+
ManagePricing = "MANAGE_PRICING",
|
|
6291
|
+
ManagePromotions = "MANAGE_PROMOTIONS",
|
|
6292
|
+
ManagePartnerDetails = "MANAGE_PARTNER_DETAILS",
|
|
6293
|
+
ViewSalesReports = "VIEW_SALES_REPORTS",
|
|
6294
|
+
ViewUsageReports = "VIEW_USAGE_REPORTS"
|
|
6295
|
+
}
|
|
6296
|
+
export declare type FortifiedMetricsIntervalInput = {
|
|
6297
|
+
start: Scalars['DateTime'];
|
|
6298
|
+
end: Scalars['DateTime'];
|
|
6299
|
+
};
|
|
6300
|
+
export declare type FortifiedMetricsIntervalRange = {
|
|
6301
|
+
__typename?: 'FortifiedMetricsIntervalRange';
|
|
6302
|
+
start: Scalars['DateTime'];
|
|
6303
|
+
end: Scalars['DateTime'];
|
|
6304
|
+
};
|
|
6305
|
+
export declare type FortifiedMetricsQuery = {
|
|
6306
|
+
__typename?: 'FortifiedMetricsQuery';
|
|
6307
|
+
appKey: Scalars['ID'];
|
|
6308
|
+
installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
|
|
6309
|
+
};
|
|
6310
|
+
export declare type FortifiedMetricsQueryFilters = {
|
|
6311
|
+
interval: FortifiedMetricsIntervalInput;
|
|
6312
|
+
};
|
|
6313
|
+
export declare type FortifiedMetricsQueryInput = {
|
|
6314
|
+
filters: FortifiedMetricsQueryFilters;
|
|
6315
|
+
};
|
|
6316
|
+
export declare type FortifiedMetricsResolution = {
|
|
6317
|
+
__typename?: 'FortifiedMetricsResolution';
|
|
6318
|
+
size: Scalars['Int'];
|
|
6319
|
+
units: FortifiedMetricsResolutionUnit;
|
|
6320
|
+
};
|
|
6321
|
+
export declare enum FortifiedMetricsResolutionUnit {
|
|
6322
|
+
Hours = "HOURS",
|
|
6323
|
+
Minutes = "MINUTES"
|
|
6324
|
+
}
|
|
6325
|
+
export declare type FortifiedMetricsSuccessRateData = {
|
|
6326
|
+
__typename?: 'FortifiedMetricsSuccessRateData';
|
|
6327
|
+
name: Scalars['String'];
|
|
6328
|
+
series: Array<FortifiedMetricsSuccessRateSeries>;
|
|
6329
|
+
resolution: FortifiedMetricsResolution;
|
|
6330
|
+
interval: FortifiedMetricsIntervalRange;
|
|
6331
|
+
};
|
|
6332
|
+
export declare type FortifiedMetricsSuccessRateDataPoint = {
|
|
6333
|
+
__typename?: 'FortifiedMetricsSuccessRateDataPoint';
|
|
6334
|
+
timestamp: Scalars['DateTime'];
|
|
6335
|
+
value: Scalars['Float'];
|
|
6336
|
+
};
|
|
6337
|
+
export declare type FortifiedMetricsSuccessRateResult = FortifiedMetricsSuccessRateData | QueryError;
|
|
6338
|
+
export declare type FortifiedMetricsSuccessRateSeries = {
|
|
6339
|
+
__typename?: 'FortifiedMetricsSuccessRateSeries';
|
|
6340
|
+
data: Array<FortifiedMetricsSuccessRateDataPoint>;
|
|
6341
|
+
};
|
|
6342
|
+
export declare type FortifiedSuccessRateMetricQuery = {
|
|
6343
|
+
__typename?: 'FortifiedSuccessRateMetricQuery';
|
|
6344
|
+
serviceLevelObjectiveSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6345
|
+
alertConditionSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6346
|
+
};
|
|
6347
|
+
export declare type FortifiedSuccessRateMetricQueryServiceLevelObjectiveSuccessRateArgs = {
|
|
6348
|
+
query: FortifiedMetricsQueryInput;
|
|
6349
|
+
};
|
|
6350
|
+
export declare type FortifiedSuccessRateMetricQueryAlertConditionSuccessRateArgs = {
|
|
6351
|
+
query: FortifiedMetricsQueryInput;
|
|
6352
|
+
};
|
|
5821
6353
|
export declare type FunctionDescription = {
|
|
5822
6354
|
__typename?: 'FunctionDescription';
|
|
5823
6355
|
key: Scalars['String'];
|
|
@@ -5856,11 +6388,18 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
5856
6388
|
statusCode?: Maybe<Scalars['Int']>;
|
|
5857
6389
|
errorType?: Maybe<Scalars['String']>;
|
|
5858
6390
|
};
|
|
6391
|
+
export declare type GlobalCardCreateAdditionalFields = {
|
|
6392
|
+
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
6393
|
+
sprintCustomFieldId?: Maybe<Scalars['String']>;
|
|
6394
|
+
rankCustomFieldId?: Maybe<Scalars['String']>;
|
|
6395
|
+
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
6396
|
+
};
|
|
5859
6397
|
export declare enum GrantCheckProduct {
|
|
5860
6398
|
Jira = "JIRA",
|
|
5861
6399
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5862
6400
|
Confluence = "CONFLUENCE",
|
|
5863
6401
|
Compass = "COMPASS",
|
|
6402
|
+
Avocado = "AVOCADO",
|
|
5864
6403
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5865
6404
|
}
|
|
5866
6405
|
export declare type HelpCenter = Node & {
|
|
@@ -5881,7 +6420,7 @@ export declare type HelpCenterCollection = {
|
|
|
5881
6420
|
__typename?: 'HelpCenterCollection';
|
|
5882
6421
|
collectionId: Scalars['ID'];
|
|
5883
6422
|
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5884
|
-
name
|
|
6423
|
+
name?: Maybe<Scalars['String']>;
|
|
5885
6424
|
description?: Maybe<Scalars['String']>;
|
|
5886
6425
|
properties?: Maybe<Scalars['JSON']>;
|
|
5887
6426
|
};
|
|
@@ -5898,6 +6437,7 @@ export declare type HelpCenterCollectionDeleteInput = {
|
|
|
5898
6437
|
export declare type HelpCenterCollectionItem = {
|
|
5899
6438
|
__typename?: 'HelpCenterCollectionItem';
|
|
5900
6439
|
ari: Scalars['ID'];
|
|
6440
|
+
data?: Maybe<HelpCenterHelpObject>;
|
|
5901
6441
|
};
|
|
5902
6442
|
export declare type HelpCenterCollectionItemConnection = {
|
|
5903
6443
|
__typename?: 'HelpCenterCollectionItemConnection';
|
|
@@ -5914,7 +6454,7 @@ export declare type HelpCenterCollectionItemEdge = {
|
|
|
5914
6454
|
export declare type HelpCenterCollectionItemInput = {
|
|
5915
6455
|
ari: Scalars['ID'];
|
|
5916
6456
|
};
|
|
5917
|
-
export declare type HelpCenterCollectionResult = HelpCenterCollection |
|
|
6457
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
5918
6458
|
export declare type HelpCenterCreateCollectionInput = {
|
|
5919
6459
|
helpCenterId: Scalars['ID'];
|
|
5920
6460
|
items: Array<HelpCenterCollectionItemInput>;
|
|
@@ -5932,13 +6472,15 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
5932
6472
|
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5933
6473
|
success: Scalars['Boolean'];
|
|
5934
6474
|
errors?: Maybe<Array<MutationError>>;
|
|
6475
|
+
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
5935
6476
|
};
|
|
6477
|
+
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
5936
6478
|
export declare type HelpCenterMutationApi = {
|
|
5937
6479
|
__typename?: 'HelpCenterMutationApi';
|
|
5938
|
-
createCollection
|
|
5939
|
-
updateCollection
|
|
5940
|
-
updateCollectionsOrder
|
|
5941
|
-
deleteCollection
|
|
6480
|
+
createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
|
|
6481
|
+
updateCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
6482
|
+
updateCollectionsOrder?: Maybe<HelpCenterUpdateCollectionsOrderPayload>;
|
|
6483
|
+
deleteCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
|
|
5942
6484
|
};
|
|
5943
6485
|
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5944
6486
|
input: HelpCenterBulkCreateCollectionsInput;
|
|
@@ -5954,26 +6496,27 @@ export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
|
5954
6496
|
};
|
|
5955
6497
|
export declare type HelpCenterQueryApi = {
|
|
5956
6498
|
__typename?: 'HelpCenterQueryApi';
|
|
5957
|
-
helpCenter
|
|
5958
|
-
helpCenterCollection
|
|
6499
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
6500
|
+
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
5959
6501
|
};
|
|
5960
6502
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5961
|
-
|
|
6503
|
+
productName: Scalars['String'];
|
|
5962
6504
|
};
|
|
5963
6505
|
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5964
|
-
|
|
6506
|
+
productName: Scalars['String'];
|
|
5965
6507
|
collectionId: Scalars['ID'];
|
|
5966
6508
|
};
|
|
5967
|
-
export declare type
|
|
5968
|
-
__typename?: 'HelpCenterQueryErrors';
|
|
5969
|
-
errors?: Maybe<Array<QueryError>>;
|
|
5970
|
-
};
|
|
5971
|
-
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
6509
|
+
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
5972
6510
|
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5973
6511
|
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5974
6512
|
helpCenterId: Scalars['ID'];
|
|
5975
6513
|
collectionIds: Scalars['ID'];
|
|
5976
6514
|
};
|
|
6515
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedCollectionIds = {
|
|
6516
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedCollectionIds';
|
|
6517
|
+
helpCenterId: Scalars['ID'];
|
|
6518
|
+
collectionIds: Scalars['ID'];
|
|
6519
|
+
};
|
|
5977
6520
|
export declare type HelpCenterUpdateCollectionInput = {
|
|
5978
6521
|
helpCenterId: Scalars['ID'];
|
|
5979
6522
|
collectionId: Scalars['ID'];
|
|
@@ -5991,25 +6534,90 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
5991
6534
|
success: Scalars['Boolean'];
|
|
5992
6535
|
errors?: Maybe<Array<MutationError>>;
|
|
5993
6536
|
};
|
|
5994
|
-
export declare type
|
|
5995
|
-
__typename?: '
|
|
6537
|
+
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6538
|
+
__typename?: 'HelpObjectStoreArticle';
|
|
5996
6539
|
id: Scalars['ID'];
|
|
5997
|
-
title
|
|
5998
|
-
description
|
|
6540
|
+
title?: Maybe<Scalars['String']>;
|
|
6541
|
+
description?: Maybe<Scalars['String']>;
|
|
5999
6542
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6000
|
-
displayLink
|
|
6543
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6544
|
+
entityId?: Maybe<Scalars['String']>;
|
|
6545
|
+
entityProjectId?: Maybe<Scalars['String']>;
|
|
6546
|
+
};
|
|
6547
|
+
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6548
|
+
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
6549
|
+
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
6001
6550
|
};
|
|
6002
|
-
export declare type
|
|
6551
|
+
export declare type HelpObjectStoreCreateEntityMappingInput = {
|
|
6552
|
+
entityId: Scalars['String'];
|
|
6553
|
+
projectId: Scalars['String'];
|
|
6554
|
+
type: HelpObjectStoreJsmEntityType;
|
|
6555
|
+
};
|
|
6556
|
+
export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
6557
|
+
__typename?: 'HelpObjectStoreCreateEntityMappingPayload';
|
|
6558
|
+
success: Scalars['Boolean'];
|
|
6559
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6560
|
+
entityMappingDetails?: Maybe<Array<HelpObjectStoreSuccessfullyCreatedEntityMappingDetail>>;
|
|
6561
|
+
};
|
|
6562
|
+
export declare type HelpObjectStoreHelpObject = {
|
|
6563
|
+
id: Scalars['ID'];
|
|
6564
|
+
title?: Maybe<Scalars['String']>;
|
|
6565
|
+
description?: Maybe<Scalars['String']>;
|
|
6566
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6567
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6568
|
+
};
|
|
6569
|
+
export declare enum HelpObjectStoreHelpObjectType {
|
|
6570
|
+
RequestForm = "REQUEST_FORM",
|
|
6571
|
+
Article = "ARTICLE"
|
|
6572
|
+
}
|
|
6003
6573
|
export declare type HelpObjectStoreIcon = {
|
|
6004
6574
|
__typename?: 'HelpObjectStoreIcon';
|
|
6005
6575
|
iconUrl: Scalars['URL'];
|
|
6006
6576
|
};
|
|
6577
|
+
export declare enum HelpObjectStoreJsmEntityType {
|
|
6578
|
+
RequestForm = "REQUEST_FORM",
|
|
6579
|
+
Article = "ARTICLE"
|
|
6580
|
+
}
|
|
6581
|
+
export declare type HelpObjectStoreMutationApi = {
|
|
6582
|
+
__typename?: 'HelpObjectStoreMutationApi';
|
|
6583
|
+
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
6584
|
+
};
|
|
6585
|
+
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
6586
|
+
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
6587
|
+
};
|
|
6007
6588
|
export declare type HelpObjectStoreQueryApi = {
|
|
6008
6589
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
6009
|
-
|
|
6590
|
+
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
6591
|
+
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
6010
6592
|
};
|
|
6011
|
-
export declare type
|
|
6012
|
-
|
|
6593
|
+
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
6594
|
+
ids: Array<Scalars['ID']>;
|
|
6595
|
+
};
|
|
6596
|
+
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
6597
|
+
ids: Array<Scalars['ID']>;
|
|
6598
|
+
};
|
|
6599
|
+
export declare type HelpObjectStoreQueryError = {
|
|
6600
|
+
__typename?: 'HelpObjectStoreQueryError';
|
|
6601
|
+
id: Scalars['ID'];
|
|
6602
|
+
message?: Maybe<Scalars['String']>;
|
|
6603
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6604
|
+
};
|
|
6605
|
+
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6606
|
+
__typename?: 'HelpObjectStoreRequestForm';
|
|
6607
|
+
id: Scalars['ID'];
|
|
6608
|
+
title?: Maybe<Scalars['String']>;
|
|
6609
|
+
description?: Maybe<Scalars['String']>;
|
|
6610
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6611
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6612
|
+
entityId?: Maybe<Scalars['String']>;
|
|
6613
|
+
entityProjectId?: Maybe<Scalars['String']>;
|
|
6614
|
+
};
|
|
6615
|
+
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6616
|
+
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6617
|
+
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6618
|
+
id: Scalars['ID'];
|
|
6619
|
+
entityId: Scalars['String'];
|
|
6620
|
+
projectId: Scalars['String'];
|
|
6013
6621
|
};
|
|
6014
6622
|
export declare type HostedResourcePreSignedUrl = {
|
|
6015
6623
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
@@ -6097,11 +6705,6 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
6097
6705
|
errors?: Maybe<Array<MutationError>>;
|
|
6098
6706
|
response?: Maybe<ResolvedPolarisObject>;
|
|
6099
6707
|
};
|
|
6100
|
-
export declare type IssueAndProject = {
|
|
6101
|
-
__typename?: 'IssueAndProject';
|
|
6102
|
-
issueId: Scalars['ID'];
|
|
6103
|
-
projectId: Scalars['ID'];
|
|
6104
|
-
};
|
|
6105
6708
|
export declare type IssueDevOpsBranchDetails = {
|
|
6106
6709
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
6107
6710
|
name: Scalars['String'];
|
|
@@ -6427,6 +7030,19 @@ export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
|
6427
7030
|
success: Scalars['Boolean'];
|
|
6428
7031
|
errors?: Maybe<Array<MutationError>>;
|
|
6429
7032
|
};
|
|
7033
|
+
export declare type JiraAddRelatedWorkToVersionInput = {
|
|
7034
|
+
versionId: Scalars['ID'];
|
|
7035
|
+
relatedWorkId: Scalars['ID'];
|
|
7036
|
+
url: Scalars['URL'];
|
|
7037
|
+
title?: Maybe<Scalars['String']>;
|
|
7038
|
+
category: Scalars['String'];
|
|
7039
|
+
};
|
|
7040
|
+
export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
7041
|
+
__typename?: 'JiraAddRelatedWorkToVersionPayload';
|
|
7042
|
+
success: Scalars['Boolean'];
|
|
7043
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7044
|
+
relatedWorkEdge?: Maybe<JiraVersionRelatedWorkEdge>;
|
|
7045
|
+
};
|
|
6430
7046
|
export declare type JiraAffectedService = {
|
|
6431
7047
|
__typename?: 'JiraAffectedService';
|
|
6432
7048
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6959,10 +7575,6 @@ export declare type JiraComment = {
|
|
|
6959
7575
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6960
7576
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6961
7577
|
};
|
|
6962
|
-
export declare type JiraCommentByIdInput = {
|
|
6963
|
-
issueId: Scalars['ID'];
|
|
6964
|
-
id: Scalars['ID'];
|
|
6965
|
-
};
|
|
6966
7578
|
export declare type JiraCommentConnection = {
|
|
6967
7579
|
__typename?: 'JiraCommentConnection';
|
|
6968
7580
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -7106,6 +7718,20 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7106
7718
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7107
7719
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7108
7720
|
};
|
|
7721
|
+
export declare type JiraCreateCustomFilterInput = {
|
|
7722
|
+
jql: Scalars['String'];
|
|
7723
|
+
name: Scalars['String'];
|
|
7724
|
+
description?: Maybe<Scalars['String']>;
|
|
7725
|
+
isFavourite: Scalars['Boolean'];
|
|
7726
|
+
shareGrants: Array<Maybe<JiraShareableEntityShareGrantInput>>;
|
|
7727
|
+
editGrants: Array<Maybe<JiraShareableEntityEditGrantInput>>;
|
|
7728
|
+
};
|
|
7729
|
+
export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
7730
|
+
__typename?: 'JiraCreateCustomFilterPayload';
|
|
7731
|
+
success: Scalars['Boolean'];
|
|
7732
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7733
|
+
filter?: Maybe<JiraCustomFilter>;
|
|
7734
|
+
};
|
|
7109
7735
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
7110
7736
|
__typename?: 'JiraCustomFilter';
|
|
7111
7737
|
id: Scalars['ID'];
|
|
@@ -7115,6 +7741,28 @@ export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
|
7115
7741
|
name: Scalars['String'];
|
|
7116
7742
|
description?: Maybe<Scalars['String']>;
|
|
7117
7743
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
7744
|
+
isEditable?: Maybe<Scalars['Boolean']>;
|
|
7745
|
+
emailSubscriptions?: Maybe<JiraFilterEmailSubscriptionConnection>;
|
|
7746
|
+
shareGrants?: Maybe<JiraShareableEntityShareGrantConnection>;
|
|
7747
|
+
editGrants?: Maybe<JiraShareableEntityEditGrantConnection>;
|
|
7748
|
+
};
|
|
7749
|
+
export declare type JiraCustomFilterEmailSubscriptionsArgs = {
|
|
7750
|
+
first?: Maybe<Scalars['Int']>;
|
|
7751
|
+
after?: Maybe<Scalars['String']>;
|
|
7752
|
+
last?: Maybe<Scalars['Int']>;
|
|
7753
|
+
before?: Maybe<Scalars['String']>;
|
|
7754
|
+
};
|
|
7755
|
+
export declare type JiraCustomFilterShareGrantsArgs = {
|
|
7756
|
+
first?: Maybe<Scalars['Int']>;
|
|
7757
|
+
after?: Maybe<Scalars['String']>;
|
|
7758
|
+
last?: Maybe<Scalars['Int']>;
|
|
7759
|
+
before?: Maybe<Scalars['String']>;
|
|
7760
|
+
};
|
|
7761
|
+
export declare type JiraCustomFilterEditGrantsArgs = {
|
|
7762
|
+
first?: Maybe<Scalars['Int']>;
|
|
7763
|
+
after?: Maybe<Scalars['String']>;
|
|
7764
|
+
last?: Maybe<Scalars['Int']>;
|
|
7765
|
+
before?: Maybe<Scalars['String']>;
|
|
7118
7766
|
};
|
|
7119
7767
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7120
7768
|
__typename?: 'JiraDatePickerField';
|
|
@@ -7145,6 +7793,22 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
7145
7793
|
id: Scalars['ID'];
|
|
7146
7794
|
name: Scalars['String'];
|
|
7147
7795
|
};
|
|
7796
|
+
export declare enum JiraDeploymentsFeaturePrecondition {
|
|
7797
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
7798
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
7799
|
+
AllSatisfied = "ALL_SATISFIED"
|
|
7800
|
+
}
|
|
7801
|
+
export declare type JiraDevInfoConfigError = {
|
|
7802
|
+
__typename?: 'JiraDevInfoConfigError';
|
|
7803
|
+
errorType?: Maybe<JiraDevInfoConfigErrorType>;
|
|
7804
|
+
dataProviderId?: Maybe<Scalars['String']>;
|
|
7805
|
+
};
|
|
7806
|
+
export declare enum JiraDevInfoConfigErrorType {
|
|
7807
|
+
Unauthorized = "UNAUTHORIZED",
|
|
7808
|
+
NotConfigured = "NOT_CONFIGURED",
|
|
7809
|
+
Incapable = "INCAPABLE",
|
|
7810
|
+
UnknownConfigError = "UNKNOWN_CONFIG_ERROR"
|
|
7811
|
+
}
|
|
7148
7812
|
export declare type JiraDevOpsBranchDetails = {
|
|
7149
7813
|
__typename?: 'JiraDevOpsBranchDetails';
|
|
7150
7814
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
@@ -7305,6 +7969,43 @@ export declare type JiraFilterEdge = {
|
|
|
7305
7969
|
node?: Maybe<JiraFilter>;
|
|
7306
7970
|
cursor: Scalars['String'];
|
|
7307
7971
|
};
|
|
7972
|
+
export declare type JiraFilterEmailSubscription = Node & {
|
|
7973
|
+
__typename?: 'JiraFilterEmailSubscription';
|
|
7974
|
+
id: Scalars['ID'];
|
|
7975
|
+
user?: Maybe<User>;
|
|
7976
|
+
group?: Maybe<JiraGroup>;
|
|
7977
|
+
};
|
|
7978
|
+
export declare type JiraFilterEmailSubscriptionConnection = {
|
|
7979
|
+
__typename?: 'JiraFilterEmailSubscriptionConnection';
|
|
7980
|
+
pageInfo: PageInfo;
|
|
7981
|
+
edges?: Maybe<Array<Maybe<JiraFilterEmailSubscriptionEdge>>>;
|
|
7982
|
+
};
|
|
7983
|
+
export declare type JiraFilterEmailSubscriptionEdge = {
|
|
7984
|
+
__typename?: 'JiraFilterEmailSubscriptionEdge';
|
|
7985
|
+
node?: Maybe<JiraFilterEmailSubscription>;
|
|
7986
|
+
cursor: Scalars['String'];
|
|
7987
|
+
};
|
|
7988
|
+
export declare type JiraFilterMutation = {
|
|
7989
|
+
__typename?: 'JiraFilterMutation';
|
|
7990
|
+
createJiraCustomFilter?: Maybe<JiraCreateCustomFilterPayload>;
|
|
7991
|
+
updateJiraCustomFilterDetails?: Maybe<JiraUpdateCustomFilterPayload>;
|
|
7992
|
+
updateJiraCustomFilterJql?: Maybe<JiraUpdateCustomFilterJqlPayload>;
|
|
7993
|
+
};
|
|
7994
|
+
export declare type JiraFilterMutationCreateJiraCustomFilterArgs = {
|
|
7995
|
+
cloudId: Scalars['ID'];
|
|
7996
|
+
input: JiraCreateCustomFilterInput;
|
|
7997
|
+
};
|
|
7998
|
+
export declare type JiraFilterMutationUpdateJiraCustomFilterDetailsArgs = {
|
|
7999
|
+
input: JiraUpdateCustomFilterDetailsInput;
|
|
8000
|
+
};
|
|
8001
|
+
export declare type JiraFilterMutationUpdateJiraCustomFilterJqlArgs = {
|
|
8002
|
+
input: JiraUpdateCustomFilterJqlInput;
|
|
8003
|
+
};
|
|
8004
|
+
export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtension & {
|
|
8005
|
+
__typename?: 'JiraFilterNameMutationErrorExtension';
|
|
8006
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
8007
|
+
errorType?: Maybe<Scalars['String']>;
|
|
8008
|
+
};
|
|
7308
8009
|
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
7309
8010
|
export declare type JiraFlag = {
|
|
7310
8011
|
__typename?: 'JiraFlag';
|
|
@@ -7561,6 +8262,16 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
7561
8262
|
id: Scalars['ID'];
|
|
7562
8263
|
group: JiraGroup;
|
|
7563
8264
|
};
|
|
8265
|
+
export declare type JiraHierarchyConfigError = {
|
|
8266
|
+
__typename?: 'JiraHierarchyConfigError';
|
|
8267
|
+
code?: Maybe<Scalars['String']>;
|
|
8268
|
+
message?: Maybe<Scalars['String']>;
|
|
8269
|
+
};
|
|
8270
|
+
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
8271
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
8272
|
+
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
8273
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE"
|
|
8274
|
+
}
|
|
7564
8275
|
export declare type JiraInvalidJqlError = {
|
|
7565
8276
|
__typename?: 'JiraInvalidJqlError';
|
|
7566
8277
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7585,6 +8296,7 @@ export declare type JiraIssue = Node & {
|
|
|
7585
8296
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
7586
8297
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7587
8298
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
8299
|
+
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
7588
8300
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
7589
8301
|
childIssues?: Maybe<JiraChildIssues>;
|
|
7590
8302
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -7595,6 +8307,7 @@ export declare type JiraIssue = Node & {
|
|
|
7595
8307
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7596
8308
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7597
8309
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
8310
|
+
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
7598
8311
|
};
|
|
7599
8312
|
export declare type JiraIssueFieldsArgs = {
|
|
7600
8313
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7641,12 +8354,24 @@ export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
|
7641
8354
|
last?: Maybe<Scalars['Int']>;
|
|
7642
8355
|
before?: Maybe<Scalars['String']>;
|
|
7643
8356
|
};
|
|
8357
|
+
export declare type JiraIssueFieldSetsByIdArgs = {
|
|
8358
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8359
|
+
first?: Maybe<Scalars['Int']>;
|
|
8360
|
+
after?: Maybe<Scalars['String']>;
|
|
8361
|
+
last?: Maybe<Scalars['Int']>;
|
|
8362
|
+
before?: Maybe<Scalars['String']>;
|
|
8363
|
+
};
|
|
7644
8364
|
export declare type JiraIssueIssueLinksArgs = {
|
|
7645
8365
|
first?: Maybe<Scalars['Int']>;
|
|
7646
8366
|
after?: Maybe<Scalars['String']>;
|
|
7647
8367
|
last?: Maybe<Scalars['Int']>;
|
|
7648
8368
|
before?: Maybe<Scalars['String']>;
|
|
7649
8369
|
};
|
|
8370
|
+
export declare type JiraIssueAndProject = {
|
|
8371
|
+
__typename?: 'JiraIssueAndProject';
|
|
8372
|
+
issueId: Scalars['ID'];
|
|
8373
|
+
projectId: Scalars['ID'];
|
|
8374
|
+
};
|
|
7650
8375
|
export declare type JiraIssueBranchDevSummary = {
|
|
7651
8376
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7652
8377
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7660,6 +8385,7 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
7660
8385
|
export declare type JiraIssueBranches = {
|
|
7661
8386
|
__typename?: 'JiraIssueBranches';
|
|
7662
8387
|
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
8388
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
7663
8389
|
};
|
|
7664
8390
|
export declare type JiraIssueBuildDevSummary = {
|
|
7665
8391
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
@@ -7687,6 +8413,7 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
7687
8413
|
export declare type JiraIssueCommits = {
|
|
7688
8414
|
__typename?: 'JiraIssueCommits';
|
|
7689
8415
|
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
8416
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
7690
8417
|
};
|
|
7691
8418
|
export declare type JiraIssueConnection = {
|
|
7692
8419
|
__typename?: 'JiraIssueConnection';
|
|
@@ -7817,6 +8544,43 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
7817
8544
|
node?: Maybe<JiraIssueFieldSet>;
|
|
7818
8545
|
cursor: Scalars['String'];
|
|
7819
8546
|
};
|
|
8547
|
+
export declare type JiraIssueHierarchyConfigData = {
|
|
8548
|
+
__typename?: 'JiraIssueHierarchyConfigData';
|
|
8549
|
+
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
8550
|
+
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
8551
|
+
};
|
|
8552
|
+
export declare type JiraIssueHierarchyConfigDataCmpIssueTypesArgs = {
|
|
8553
|
+
first?: Maybe<Scalars['Int']>;
|
|
8554
|
+
after?: Maybe<Scalars['String']>;
|
|
8555
|
+
last?: Maybe<Scalars['Int']>;
|
|
8556
|
+
before?: Maybe<Scalars['String']>;
|
|
8557
|
+
};
|
|
8558
|
+
export declare type JiraIssueHierarchyConfigInput = {
|
|
8559
|
+
level: Scalars['Int'];
|
|
8560
|
+
title: Scalars['String'];
|
|
8561
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
8562
|
+
};
|
|
8563
|
+
export declare type JiraIssueHierarchyConfigurationMutationInput = {
|
|
8564
|
+
dryRun: Scalars['Boolean'];
|
|
8565
|
+
issueHierarchyConfig: Array<JiraIssueHierarchyConfigInput>;
|
|
8566
|
+
};
|
|
8567
|
+
export declare type JiraIssueHierarchyConfigurationMutationResult = {
|
|
8568
|
+
__typename?: 'JiraIssueHierarchyConfigurationMutationResult';
|
|
8569
|
+
updateInitiated: Scalars['Boolean'];
|
|
8570
|
+
success: Scalars['Boolean'];
|
|
8571
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
8572
|
+
};
|
|
8573
|
+
export declare type JiraIssueHierarchyConfigurationQuery = {
|
|
8574
|
+
__typename?: 'JiraIssueHierarchyConfigurationQuery';
|
|
8575
|
+
data?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
8576
|
+
success: Scalars['Boolean'];
|
|
8577
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
8578
|
+
};
|
|
8579
|
+
export declare type JiraIssueHierarchyLimits = {
|
|
8580
|
+
__typename?: 'JiraIssueHierarchyLimits';
|
|
8581
|
+
maxLevels: Scalars['Int'];
|
|
8582
|
+
nameLength: Scalars['Int'];
|
|
8583
|
+
};
|
|
7820
8584
|
export declare type JiraIssueItemContainer = {
|
|
7821
8585
|
__typename?: 'JiraIssueItemContainer';
|
|
7822
8586
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -8019,6 +8783,7 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
8019
8783
|
export declare type JiraIssuePullRequests = {
|
|
8020
8784
|
__typename?: 'JiraIssuePullRequests';
|
|
8021
8785
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
8786
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
8022
8787
|
};
|
|
8023
8788
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8024
8789
|
__typename?: 'JiraIssueRestrictionField';
|
|
@@ -8063,41 +8828,41 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
8063
8828
|
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
8064
8829
|
__typename?: 'JiraIssueSearchByFilter';
|
|
8065
8830
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8066
|
-
|
|
8831
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8067
8832
|
filter?: Maybe<JiraFilter>;
|
|
8068
8833
|
};
|
|
8069
8834
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
8070
8835
|
namespace?: Maybe<Scalars['String']>;
|
|
8071
8836
|
viewId?: Maybe<Scalars['String']>;
|
|
8072
8837
|
};
|
|
8073
|
-
export declare type
|
|
8074
|
-
|
|
8838
|
+
export declare type JiraIssueSearchByFilterContentByFieldSetIdsArgs = {
|
|
8839
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8075
8840
|
};
|
|
8076
8841
|
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
8077
8842
|
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
8078
8843
|
__typename?: 'JiraIssueSearchByHydration';
|
|
8079
8844
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8080
|
-
|
|
8845
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8081
8846
|
};
|
|
8082
8847
|
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
8083
8848
|
namespace?: Maybe<Scalars['String']>;
|
|
8084
8849
|
viewId?: Maybe<Scalars['String']>;
|
|
8085
8850
|
};
|
|
8086
|
-
export declare type
|
|
8087
|
-
|
|
8851
|
+
export declare type JiraIssueSearchByHydrationContentByFieldSetIdsArgs = {
|
|
8852
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8088
8853
|
};
|
|
8089
8854
|
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
8090
8855
|
__typename?: 'JiraIssueSearchByJql';
|
|
8091
8856
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8092
|
-
|
|
8857
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8093
8858
|
jql?: Maybe<Scalars['String']>;
|
|
8094
8859
|
};
|
|
8095
8860
|
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
8096
8861
|
namespace?: Maybe<Scalars['String']>;
|
|
8097
8862
|
viewId?: Maybe<Scalars['String']>;
|
|
8098
8863
|
};
|
|
8099
|
-
export declare type
|
|
8100
|
-
|
|
8864
|
+
export declare type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
8865
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8101
8866
|
};
|
|
8102
8867
|
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
8103
8868
|
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
@@ -8122,34 +8887,35 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
8122
8887
|
after?: Maybe<Scalars['String']>;
|
|
8123
8888
|
};
|
|
8124
8889
|
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
8125
|
-
export declare type
|
|
8126
|
-
__typename?: '
|
|
8127
|
-
|
|
8890
|
+
export declare type JiraIssueSearchFieldSet = {
|
|
8891
|
+
__typename?: 'JiraIssueSearchFieldSet';
|
|
8892
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
8128
8893
|
displayName?: Maybe<Scalars['String']>;
|
|
8129
|
-
|
|
8894
|
+
type?: Maybe<Scalars['String']>;
|
|
8895
|
+
jqlTerm?: Maybe<Scalars['String']>;
|
|
8130
8896
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
8131
8897
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
8132
8898
|
};
|
|
8133
|
-
export declare type
|
|
8134
|
-
__typename?: '
|
|
8899
|
+
export declare type JiraIssueSearchFieldSetConnection = {
|
|
8900
|
+
__typename?: 'JiraIssueSearchFieldSetConnection';
|
|
8135
8901
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8136
8902
|
pageInfo: PageInfo;
|
|
8137
|
-
edges?: Maybe<Array<Maybe<
|
|
8903
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldSetEdge>>>;
|
|
8138
8904
|
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
8139
8905
|
};
|
|
8140
|
-
export declare type
|
|
8141
|
-
__typename?: '
|
|
8142
|
-
node?: Maybe<
|
|
8906
|
+
export declare type JiraIssueSearchFieldSetEdge = {
|
|
8907
|
+
__typename?: 'JiraIssueSearchFieldSetEdge';
|
|
8908
|
+
node?: Maybe<JiraIssueSearchFieldSet>;
|
|
8143
8909
|
cursor: Scalars['String'];
|
|
8144
8910
|
};
|
|
8145
|
-
export declare enum
|
|
8911
|
+
export declare enum JiraIssueSearchFieldSetSelectedState {
|
|
8146
8912
|
All = "ALL",
|
|
8147
8913
|
Selected = "SELECTED",
|
|
8148
8914
|
NonSelected = "NON_SELECTED"
|
|
8149
8915
|
}
|
|
8150
|
-
export declare type
|
|
8916
|
+
export declare type JiraIssueSearchFieldSetsFilter = {
|
|
8151
8917
|
searchString?: Maybe<Scalars['String']>;
|
|
8152
|
-
|
|
8918
|
+
fieldSetSelectedState?: Maybe<JiraIssueSearchFieldSetSelectedState>;
|
|
8153
8919
|
};
|
|
8154
8920
|
export declare type JiraIssueSearchInput = {
|
|
8155
8921
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -8160,14 +8926,14 @@ export declare type JiraIssueSearchOptions = {
|
|
|
8160
8926
|
};
|
|
8161
8927
|
export declare type JiraIssueSearchResult = {
|
|
8162
8928
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
8163
|
-
|
|
8929
|
+
contentByFieldSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
8164
8930
|
};
|
|
8165
8931
|
export declare type JiraIssueSearchResultContentArgs = {
|
|
8166
8932
|
namespace?: Maybe<Scalars['String']>;
|
|
8167
8933
|
viewId?: Maybe<Scalars['String']>;
|
|
8168
8934
|
};
|
|
8169
|
-
export declare type
|
|
8170
|
-
|
|
8935
|
+
export declare type JiraIssueSearchResultContentByFieldSetIdsArgs = {
|
|
8936
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
8171
8937
|
};
|
|
8172
8938
|
export declare type JiraIssueSearchResultContent = {
|
|
8173
8939
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -8183,14 +8949,14 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
8183
8949
|
id: Scalars['ID'];
|
|
8184
8950
|
namespace?: Maybe<Scalars['String']>;
|
|
8185
8951
|
viewId?: Maybe<Scalars['String']>;
|
|
8186
|
-
|
|
8952
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
8187
8953
|
};
|
|
8188
|
-
export declare type
|
|
8954
|
+
export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
8189
8955
|
first?: Maybe<Scalars['Int']>;
|
|
8190
8956
|
last?: Maybe<Scalars['Int']>;
|
|
8191
8957
|
before?: Maybe<Scalars['String']>;
|
|
8192
8958
|
after?: Maybe<Scalars['String']>;
|
|
8193
|
-
filter?: Maybe<
|
|
8959
|
+
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
8194
8960
|
};
|
|
8195
8961
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
8196
8962
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
@@ -8861,13 +9627,20 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8861
9627
|
};
|
|
8862
9628
|
export declare type JiraMutation = {
|
|
8863
9629
|
__typename?: 'JiraMutation';
|
|
9630
|
+
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
8864
9631
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8865
9632
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8866
9633
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
9634
|
+
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
8867
9635
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8868
9636
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8869
|
-
|
|
8870
|
-
|
|
9637
|
+
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
9638
|
+
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
9639
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
9640
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
9641
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9642
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9643
|
+
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8871
9644
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8872
9645
|
};
|
|
8873
9646
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
@@ -8880,19 +9653,37 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8880
9653
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8881
9654
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8882
9655
|
};
|
|
9656
|
+
export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
9657
|
+
cloudId: Scalars['ID'];
|
|
9658
|
+
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
9659
|
+
};
|
|
8883
9660
|
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8884
9661
|
input: JiraAddIssuesToFixVersionInput;
|
|
8885
9662
|
};
|
|
8886
9663
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8887
9664
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8888
9665
|
};
|
|
8889
|
-
export declare type
|
|
8890
|
-
|
|
8891
|
-
|
|
9666
|
+
export declare type JiraMutationAddRelatedWorkToVersionArgs = {
|
|
9667
|
+
input: JiraAddRelatedWorkToVersionInput;
|
|
9668
|
+
};
|
|
9669
|
+
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
9670
|
+
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
9671
|
+
};
|
|
9672
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
9673
|
+
input: JiraUpdateVersionNameInput;
|
|
9674
|
+
};
|
|
9675
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
9676
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
9677
|
+
};
|
|
9678
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
9679
|
+
input: JiraUpdateVersionStartDateInput;
|
|
9680
|
+
};
|
|
9681
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
9682
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
8892
9683
|
};
|
|
8893
|
-
export declare type
|
|
9684
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
8894
9685
|
id: Scalars['ID'];
|
|
8895
|
-
input:
|
|
9686
|
+
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
8896
9687
|
};
|
|
8897
9688
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8898
9689
|
__typename?: 'JiraNumberField';
|
|
@@ -8905,6 +9696,7 @@ export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
8905
9696
|
number?: Maybe<Scalars['Float']>;
|
|
8906
9697
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8907
9698
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9699
|
+
isStoryPointField?: Maybe<Scalars['Boolean']>;
|
|
8908
9700
|
};
|
|
8909
9701
|
export declare type JiraOAuthAppsApp = {
|
|
8910
9702
|
__typename?: 'JiraOAuthAppsApp';
|
|
@@ -9074,6 +9866,18 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
9074
9866
|
export declare type JiraOrderDirection = {
|
|
9075
9867
|
id?: Maybe<Scalars['ID']>;
|
|
9076
9868
|
};
|
|
9869
|
+
export declare type JiraOriginalTimeEstimateField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9870
|
+
__typename?: 'JiraOriginalTimeEstimateField';
|
|
9871
|
+
id: Scalars['ID'];
|
|
9872
|
+
fieldId: Scalars['String'];
|
|
9873
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9874
|
+
type: Scalars['String'];
|
|
9875
|
+
name: Scalars['String'];
|
|
9876
|
+
description?: Maybe<Scalars['String']>;
|
|
9877
|
+
originalEstimate?: Maybe<JiraEstimate>;
|
|
9878
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9879
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9880
|
+
};
|
|
9077
9881
|
export declare type JiraPageCursor = {
|
|
9078
9882
|
__typename?: 'JiraPageCursor';
|
|
9079
9883
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -9347,6 +10151,8 @@ export declare type JiraProject = Node & {
|
|
|
9347
10151
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9348
10152
|
status?: Maybe<JiraProjectStatus>;
|
|
9349
10153
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10154
|
+
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10155
|
+
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
9350
10156
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9351
10157
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9352
10158
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -9355,6 +10161,11 @@ export declare type JiraProject = Node & {
|
|
|
9355
10161
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
9356
10162
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
9357
10163
|
};
|
|
10164
|
+
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
10165
|
+
limit?: Maybe<Scalars['Int']>;
|
|
10166
|
+
after?: Maybe<Scalars['String']>;
|
|
10167
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
10168
|
+
};
|
|
9358
10169
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
9359
10170
|
first?: Maybe<Scalars['Int']>;
|
|
9360
10171
|
after?: Maybe<Scalars['String']>;
|
|
@@ -9423,6 +10234,12 @@ export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
|
9423
10234
|
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9424
10235
|
keys: Array<Scalars['String']>;
|
|
9425
10236
|
};
|
|
10237
|
+
export declare type JiraProjectAndDevOpsToolRelationshipConnection = {
|
|
10238
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipConnection';
|
|
10239
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationshipEdge>>>;
|
|
10240
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationship>>>;
|
|
10241
|
+
pageInfo: PageInfo;
|
|
10242
|
+
};
|
|
9426
10243
|
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9427
10244
|
jiraProjectId: Scalars['ID'];
|
|
9428
10245
|
devOpsToolId: Scalars['ID'];
|
|
@@ -9435,6 +10252,15 @@ export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload
|
|
|
9435
10252
|
errors?: Maybe<Array<MutationError>>;
|
|
9436
10253
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9437
10254
|
};
|
|
10255
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput = {
|
|
10256
|
+
id: Scalars['ID'];
|
|
10257
|
+
};
|
|
10258
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload = {
|
|
10259
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload';
|
|
10260
|
+
success: Scalars['Boolean'];
|
|
10261
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10262
|
+
numberDeleted?: Maybe<Scalars['Int']>;
|
|
10263
|
+
};
|
|
9438
10264
|
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9439
10265
|
id: Scalars['ID'];
|
|
9440
10266
|
};
|
|
@@ -9443,6 +10269,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
|
9443
10269
|
success: Scalars['Boolean'];
|
|
9444
10270
|
errors?: Maybe<Array<MutationError>>;
|
|
9445
10271
|
};
|
|
10272
|
+
export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
10273
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipEdge';
|
|
10274
|
+
node?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
10275
|
+
cursor?: Maybe<Scalars['String']>;
|
|
10276
|
+
};
|
|
10277
|
+
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
10278
|
+
hasPropertyEqualTo?: Maybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
10279
|
+
};
|
|
9446
10280
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9447
10281
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9448
10282
|
id: Scalars['ID'];
|
|
@@ -9639,22 +10473,24 @@ export declare type JiraQuery = {
|
|
|
9639
10473
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9640
10474
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9641
10475
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9642
|
-
issueContainersByType
|
|
9643
|
-
issueContainersByTypeByKey
|
|
10476
|
+
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10477
|
+
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
9644
10478
|
issueByKey?: Maybe<JiraIssue>;
|
|
9645
10479
|
issueById?: Maybe<JiraIssue>;
|
|
9646
|
-
|
|
10480
|
+
issue?: Maybe<JiraIssue>;
|
|
9647
10481
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9648
10482
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9649
|
-
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9650
10483
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9651
|
-
allGrantTypeKeys
|
|
10484
|
+
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
9652
10485
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9653
10486
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
9654
10487
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
9655
10488
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
9656
10489
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
9657
|
-
getPermissionSchemeGrantsHierarchy
|
|
10490
|
+
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
10491
|
+
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
10492
|
+
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
10493
|
+
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
9658
10494
|
version?: Maybe<JiraVersionResult>;
|
|
9659
10495
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9660
10496
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
@@ -9666,6 +10502,8 @@ export declare type JiraQuery = {
|
|
|
9666
10502
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9667
10503
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9668
10504
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10505
|
+
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10506
|
+
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
9669
10507
|
};
|
|
9670
10508
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9671
10509
|
id: Scalars['ID'];
|
|
@@ -9720,8 +10558,8 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9720
10558
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9721
10559
|
id: Scalars['ID'];
|
|
9722
10560
|
};
|
|
9723
|
-
export declare type
|
|
9724
|
-
|
|
10561
|
+
export declare type JiraQueryIssueArgs = {
|
|
10562
|
+
id?: Maybe<Scalars['ID']>;
|
|
9725
10563
|
};
|
|
9726
10564
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9727
10565
|
issueId: Scalars['ID'];
|
|
@@ -9729,9 +10567,6 @@ export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
|
9729
10567
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9730
10568
|
issueKey: Scalars['String'];
|
|
9731
10569
|
};
|
|
9732
|
-
export declare type JiraQueryCommentsByIdArgs = {
|
|
9733
|
-
input: Array<JiraCommentByIdInput>;
|
|
9734
|
-
};
|
|
9735
10570
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9736
10571
|
cloudId: Scalars['ID'];
|
|
9737
10572
|
};
|
|
@@ -9775,6 +10610,15 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
9775
10610
|
schemeId: Scalars['ID'];
|
|
9776
10611
|
permissionKey: Scalars['String'];
|
|
9777
10612
|
};
|
|
10613
|
+
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
10614
|
+
cloudId: Scalars['ID'];
|
|
10615
|
+
};
|
|
10616
|
+
export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
10617
|
+
cloudId: Scalars['ID'];
|
|
10618
|
+
};
|
|
10619
|
+
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
10620
|
+
cloudId: Scalars['ID'];
|
|
10621
|
+
};
|
|
9778
10622
|
export declare type JiraQueryVersionArgs = {
|
|
9779
10623
|
id: Scalars['ID'];
|
|
9780
10624
|
};
|
|
@@ -9819,6 +10663,12 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
9819
10663
|
last?: Maybe<Scalars['Int']>;
|
|
9820
10664
|
before?: Maybe<Scalars['String']>;
|
|
9821
10665
|
};
|
|
10666
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10667
|
+
projectId: Scalars['ID'];
|
|
10668
|
+
};
|
|
10669
|
+
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10670
|
+
projectId: Scalars['ID'];
|
|
10671
|
+
};
|
|
9822
10672
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9823
10673
|
__typename?: 'JiraRadioSelectField';
|
|
9824
10674
|
id: Scalars['ID'];
|
|
@@ -9954,7 +10804,16 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
9954
10804
|
after: Scalars['DateTime'];
|
|
9955
10805
|
before: Scalars['DateTime'];
|
|
9956
10806
|
};
|
|
9957
|
-
export declare type
|
|
10807
|
+
export declare type JiraRemoveRelatedWorkFromVersionInput = {
|
|
10808
|
+
versionId: Scalars['ID'];
|
|
10809
|
+
relatedWorkId: Scalars['ID'];
|
|
10810
|
+
};
|
|
10811
|
+
export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
10812
|
+
__typename?: 'JiraRemoveRelatedWorkFromVersionPayload';
|
|
10813
|
+
success: Scalars['Boolean'];
|
|
10814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10815
|
+
};
|
|
10816
|
+
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
9958
10817
|
before?: Maybe<Scalars['String']>;
|
|
9959
10818
|
after?: Maybe<Scalars['String']>;
|
|
9960
10819
|
nodes: Array<Scalars['String']>;
|
|
@@ -9970,7 +10829,7 @@ export declare type JiraResolution = Node & {
|
|
|
9970
10829
|
export declare type JiraResolutionConnection = {
|
|
9971
10830
|
__typename?: 'JiraResolutionConnection';
|
|
9972
10831
|
totalCount?: Maybe<Scalars['Int']>;
|
|
9973
|
-
pageInfo
|
|
10832
|
+
pageInfo: PageInfo;
|
|
9974
10833
|
edges?: Maybe<Array<Maybe<JiraResolutionEdge>>>;
|
|
9975
10834
|
};
|
|
9976
10835
|
export declare type JiraResolutionEdge = {
|
|
@@ -10447,7 +11306,8 @@ export declare enum JiraServiceManagementPractice {
|
|
|
10447
11306
|
ServiceRequest = "SERVICE_REQUEST",
|
|
10448
11307
|
IncidentManagement = "INCIDENT_MANAGEMENT",
|
|
10449
11308
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
10450
|
-
ChangeManagement = "CHANGE_MANAGEMENT"
|
|
11309
|
+
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11310
|
+
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
10451
11311
|
}
|
|
10452
11312
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10453
11313
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
@@ -10544,6 +11404,7 @@ export declare type JiraServiceManagementRespondersField = Node & JiraIssueField
|
|
|
10544
11404
|
description?: Maybe<Scalars['String']>;
|
|
10545
11405
|
responders?: Maybe<Array<Maybe<JiraServiceManagementResponder>>>;
|
|
10546
11406
|
respondersConnection?: Maybe<JiraServiceManagementResponderConnection>;
|
|
11407
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
10547
11408
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10548
11409
|
};
|
|
10549
11410
|
export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs = {
|
|
@@ -10576,6 +11437,106 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
10576
11437
|
key: Scalars['String'];
|
|
10577
11438
|
value: Scalars['String'];
|
|
10578
11439
|
};
|
|
11440
|
+
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
11441
|
+
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
11442
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11443
|
+
};
|
|
11444
|
+
export declare type JiraShareableEntityAnonymousAccessGrantInput = {
|
|
11445
|
+
id?: Maybe<Scalars['ID']>;
|
|
11446
|
+
};
|
|
11447
|
+
export declare type JiraShareableEntityAnyLoggedInUserGrant = {
|
|
11448
|
+
__typename?: 'JiraShareableEntityAnyLoggedInUserGrant';
|
|
11449
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11450
|
+
};
|
|
11451
|
+
export declare type JiraShareableEntityAnyLoggedInUserGrantInput = {
|
|
11452
|
+
id?: Maybe<Scalars['ID']>;
|
|
11453
|
+
};
|
|
11454
|
+
export declare type JiraShareableEntityEditGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityUserGrant | JiraShareableEntityProjectGrant | JiraShareableEntityUnknownProjectGrant;
|
|
11455
|
+
export declare type JiraShareableEntityEditGrantConnection = {
|
|
11456
|
+
__typename?: 'JiraShareableEntityEditGrantConnection';
|
|
11457
|
+
pageInfo: PageInfo;
|
|
11458
|
+
edges?: Maybe<Array<Maybe<JiraShareableEntityEditGrantEdge>>>;
|
|
11459
|
+
};
|
|
11460
|
+
export declare type JiraShareableEntityEditGrantEdge = {
|
|
11461
|
+
__typename?: 'JiraShareableEntityEditGrantEdge';
|
|
11462
|
+
node?: Maybe<JiraShareableEntityEditGrant>;
|
|
11463
|
+
cursor?: Maybe<Scalars['String']>;
|
|
11464
|
+
};
|
|
11465
|
+
export declare type JiraShareableEntityEditGrantInput = {
|
|
11466
|
+
group?: Maybe<JiraShareableEntityGroupGrantInput>;
|
|
11467
|
+
project?: Maybe<JiraShareableEntityProjectGrantInput>;
|
|
11468
|
+
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
11469
|
+
user?: Maybe<JiraShareableEntityUserGrantInput>;
|
|
11470
|
+
};
|
|
11471
|
+
export declare enum JiraShareableEntityGrant {
|
|
11472
|
+
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
11473
|
+
AnyLoggedinUserApplicationRole = "ANY_LOGGEDIN_USER_APPLICATION_ROLE",
|
|
11474
|
+
Group = "GROUP",
|
|
11475
|
+
Project = "PROJECT",
|
|
11476
|
+
ProjectRole = "PROJECT_ROLE",
|
|
11477
|
+
ProjectUnknown = "PROJECT_UNKNOWN",
|
|
11478
|
+
User = "USER"
|
|
11479
|
+
}
|
|
11480
|
+
export declare type JiraShareableEntityGroupGrant = {
|
|
11481
|
+
__typename?: 'JiraShareableEntityGroupGrant';
|
|
11482
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11483
|
+
group?: Maybe<JiraGroup>;
|
|
11484
|
+
};
|
|
11485
|
+
export declare type JiraShareableEntityGroupGrantInput = {
|
|
11486
|
+
id?: Maybe<Scalars['ID']>;
|
|
11487
|
+
groupId: Scalars['ID'];
|
|
11488
|
+
};
|
|
11489
|
+
export declare type JiraShareableEntityProjectGrant = {
|
|
11490
|
+
__typename?: 'JiraShareableEntityProjectGrant';
|
|
11491
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11492
|
+
project?: Maybe<JiraProject>;
|
|
11493
|
+
};
|
|
11494
|
+
export declare type JiraShareableEntityProjectGrantInput = {
|
|
11495
|
+
id?: Maybe<Scalars['ID']>;
|
|
11496
|
+
projectId: Scalars['ID'];
|
|
11497
|
+
};
|
|
11498
|
+
export declare type JiraShareableEntityProjectRoleGrant = {
|
|
11499
|
+
__typename?: 'JiraShareableEntityProjectRoleGrant';
|
|
11500
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11501
|
+
project?: Maybe<JiraProject>;
|
|
11502
|
+
role?: Maybe<JiraRole>;
|
|
11503
|
+
};
|
|
11504
|
+
export declare type JiraShareableEntityProjectRoleGrantInput = {
|
|
11505
|
+
id?: Maybe<Scalars['ID']>;
|
|
11506
|
+
projectId: Scalars['ID'];
|
|
11507
|
+
projectRoleId: Scalars['Int'];
|
|
11508
|
+
};
|
|
11509
|
+
export declare type JiraShareableEntityShareGrant = JiraShareableEntityGroupGrant | JiraShareableEntityProjectRoleGrant | JiraShareableEntityProjectGrant | JiraShareableEntityAnonymousAccessGrant | JiraShareableEntityAnyLoggedInUserGrant | JiraShareableEntityUnknownProjectGrant;
|
|
11510
|
+
export declare type JiraShareableEntityShareGrantConnection = {
|
|
11511
|
+
__typename?: 'JiraShareableEntityShareGrantConnection';
|
|
11512
|
+
pageInfo: PageInfo;
|
|
11513
|
+
edges?: Maybe<Array<Maybe<JiraShareableEntityShareGrantEdge>>>;
|
|
11514
|
+
};
|
|
11515
|
+
export declare type JiraShareableEntityShareGrantEdge = {
|
|
11516
|
+
__typename?: 'JiraShareableEntityShareGrantEdge';
|
|
11517
|
+
node?: Maybe<JiraShareableEntityShareGrant>;
|
|
11518
|
+
cursor?: Maybe<Scalars['String']>;
|
|
11519
|
+
};
|
|
11520
|
+
export declare type JiraShareableEntityShareGrantInput = {
|
|
11521
|
+
group?: Maybe<JiraShareableEntityGroupGrantInput>;
|
|
11522
|
+
project?: Maybe<JiraShareableEntityProjectGrantInput>;
|
|
11523
|
+
projectRole?: Maybe<JiraShareableEntityProjectRoleGrantInput>;
|
|
11524
|
+
anonymousAccess?: Maybe<JiraShareableEntityAnonymousAccessGrantInput>;
|
|
11525
|
+
anyLoggedInUser?: Maybe<JiraShareableEntityAnyLoggedInUserGrantInput>;
|
|
11526
|
+
};
|
|
11527
|
+
export declare type JiraShareableEntityUnknownProjectGrant = {
|
|
11528
|
+
__typename?: 'JiraShareableEntityUnknownProjectGrant';
|
|
11529
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11530
|
+
};
|
|
11531
|
+
export declare type JiraShareableEntityUserGrant = {
|
|
11532
|
+
__typename?: 'JiraShareableEntityUserGrant';
|
|
11533
|
+
type?: Maybe<JiraShareableEntityGrant>;
|
|
11534
|
+
user?: Maybe<User>;
|
|
11535
|
+
};
|
|
11536
|
+
export declare type JiraShareableEntityUserGrantInput = {
|
|
11537
|
+
id?: Maybe<Scalars['ID']>;
|
|
11538
|
+
userId: Scalars['ID'];
|
|
11539
|
+
};
|
|
10579
11540
|
export declare type JiraSimilarIssues = {
|
|
10580
11541
|
__typename?: 'JiraSimilarIssues';
|
|
10581
11542
|
featureEnabled: Scalars['Boolean'];
|
|
@@ -10862,6 +11823,7 @@ export declare type JiraTeamView = {
|
|
|
10862
11823
|
__typename?: 'JiraTeamView';
|
|
10863
11824
|
jiraSuppliedId: Scalars['ID'];
|
|
10864
11825
|
jiraSuppliedTeamId: Scalars['String'];
|
|
11826
|
+
jiraSuppliedVisibility?: Maybe<Scalars['Boolean']>;
|
|
10865
11827
|
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
10866
11828
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
10867
11829
|
fullTeam?: Maybe<Team>;
|
|
@@ -10913,6 +11875,51 @@ export declare enum JiraTimeUnit {
|
|
|
10913
11875
|
Day = "DAY",
|
|
10914
11876
|
Week = "WEEK"
|
|
10915
11877
|
}
|
|
11878
|
+
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
11879
|
+
id: Scalars['ID'];
|
|
11880
|
+
name: Scalars['String'];
|
|
11881
|
+
description?: Maybe<Scalars['String']>;
|
|
11882
|
+
shareGrants: Array<Maybe<JiraShareableEntityShareGrantInput>>;
|
|
11883
|
+
editGrants: Array<Maybe<JiraShareableEntityEditGrantInput>>;
|
|
11884
|
+
};
|
|
11885
|
+
export declare type JiraUpdateCustomFilterJqlInput = {
|
|
11886
|
+
id: Scalars['ID'];
|
|
11887
|
+
jql: Scalars['String'];
|
|
11888
|
+
};
|
|
11889
|
+
export declare type JiraUpdateCustomFilterJqlPayload = Payload & {
|
|
11890
|
+
__typename?: 'JiraUpdateCustomFilterJqlPayload';
|
|
11891
|
+
success: Scalars['Boolean'];
|
|
11892
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11893
|
+
filter?: Maybe<JiraCustomFilter>;
|
|
11894
|
+
};
|
|
11895
|
+
export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
11896
|
+
__typename?: 'JiraUpdateCustomFilterPayload';
|
|
11897
|
+
success: Scalars['Boolean'];
|
|
11898
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11899
|
+
filter?: Maybe<JiraCustomFilter>;
|
|
11900
|
+
};
|
|
11901
|
+
export declare type JiraUpdateVersionDescriptionInput = {
|
|
11902
|
+
id: Scalars['ID'];
|
|
11903
|
+
description?: Maybe<Scalars['String']>;
|
|
11904
|
+
};
|
|
11905
|
+
export declare type JiraUpdateVersionNameInput = {
|
|
11906
|
+
id: Scalars['ID'];
|
|
11907
|
+
name: Scalars['String'];
|
|
11908
|
+
};
|
|
11909
|
+
export declare type JiraUpdateVersionPayload = Payload & {
|
|
11910
|
+
__typename?: 'JiraUpdateVersionPayload';
|
|
11911
|
+
success: Scalars['Boolean'];
|
|
11912
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11913
|
+
version?: Maybe<JiraVersion>;
|
|
11914
|
+
};
|
|
11915
|
+
export declare type JiraUpdateVersionReleaseDateInput = {
|
|
11916
|
+
id: Scalars['ID'];
|
|
11917
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
11918
|
+
};
|
|
11919
|
+
export declare type JiraUpdateVersionStartDateInput = {
|
|
11920
|
+
id: Scalars['ID'];
|
|
11921
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
11922
|
+
};
|
|
10916
11923
|
export declare type JiraUpdateVersionWarningConfigInput = {
|
|
10917
11924
|
jiraProjectId: Scalars['ID'];
|
|
10918
11925
|
updatedVersionWarningConfig: JiraVersionUpdatedWarningConfigInput;
|
|
@@ -10934,6 +11941,13 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
10934
11941
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10935
11942
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10936
11943
|
};
|
|
11944
|
+
export declare type JiraUser = {
|
|
11945
|
+
__typename?: 'JiraUser';
|
|
11946
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11947
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11948
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
11949
|
+
email?: Maybe<Scalars['String']>;
|
|
11950
|
+
};
|
|
10937
11951
|
export declare type JiraUserConnection = {
|
|
10938
11952
|
__typename?: 'JiraUserConnection';
|
|
10939
11953
|
pageInfo: PageInfo;
|
|
@@ -10955,6 +11969,11 @@ export declare type JiraUserGrantTypeValue = Node & {
|
|
|
10955
11969
|
id: Scalars['ID'];
|
|
10956
11970
|
user?: Maybe<User>;
|
|
10957
11971
|
};
|
|
11972
|
+
export declare type JiraUserGroup = {
|
|
11973
|
+
__typename?: 'JiraUserGroup';
|
|
11974
|
+
accountId?: Maybe<Scalars['String']>;
|
|
11975
|
+
displayName?: Maybe<Scalars['String']>;
|
|
11976
|
+
};
|
|
10958
11977
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
10959
11978
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10960
11979
|
};
|
|
@@ -10971,6 +11990,9 @@ export declare type JiraVersion = Node & {
|
|
|
10971
11990
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10972
11991
|
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10973
11992
|
issues?: Maybe<JiraIssueConnection>;
|
|
11993
|
+
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
11994
|
+
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
11995
|
+
canEdit?: Maybe<Scalars['Boolean']>;
|
|
10974
11996
|
};
|
|
10975
11997
|
export declare type JiraVersionIssuesArgs = {
|
|
10976
11998
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -10979,6 +12001,12 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10979
12001
|
before?: Maybe<Scalars['String']>;
|
|
10980
12002
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10981
12003
|
};
|
|
12004
|
+
export declare type JiraVersionRelatedWorkArgs = {
|
|
12005
|
+
first?: Maybe<Scalars['Int']>;
|
|
12006
|
+
after?: Maybe<Scalars['String']>;
|
|
12007
|
+
last?: Maybe<Scalars['Int']>;
|
|
12008
|
+
before?: Maybe<Scalars['String']>;
|
|
12009
|
+
};
|
|
10982
12010
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
10983
12011
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10984
12012
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -11030,6 +12058,25 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
11030
12058
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
11031
12059
|
FailingBuild = "FAILING_BUILD"
|
|
11032
12060
|
}
|
|
12061
|
+
export declare type JiraVersionRelatedWork = {
|
|
12062
|
+
__typename?: 'JiraVersionRelatedWork';
|
|
12063
|
+
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
12064
|
+
url?: Maybe<Scalars['URL']>;
|
|
12065
|
+
title?: Maybe<Scalars['String']>;
|
|
12066
|
+
category?: Maybe<Scalars['String']>;
|
|
12067
|
+
addedOn?: Maybe<Scalars['DateTime']>;
|
|
12068
|
+
addedBy?: Maybe<User>;
|
|
12069
|
+
};
|
|
12070
|
+
export declare type JiraVersionRelatedWorkConnection = {
|
|
12071
|
+
__typename?: 'JiraVersionRelatedWorkConnection';
|
|
12072
|
+
pageInfo: PageInfo;
|
|
12073
|
+
edges?: Maybe<Array<Maybe<JiraVersionRelatedWorkEdge>>>;
|
|
12074
|
+
};
|
|
12075
|
+
export declare type JiraVersionRelatedWorkEdge = {
|
|
12076
|
+
__typename?: 'JiraVersionRelatedWorkEdge';
|
|
12077
|
+
cursor?: Maybe<Scalars['String']>;
|
|
12078
|
+
node?: Maybe<JiraVersionRelatedWork>;
|
|
12079
|
+
};
|
|
11033
12080
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
11034
12081
|
export declare enum JiraVersionStatus {
|
|
11035
12082
|
Released = "RELEASED",
|
|
@@ -11048,6 +12095,7 @@ export declare type JiraVersionWarningConfig = {
|
|
|
11048
12095
|
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
11049
12096
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
11050
12097
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
12098
|
+
canEdit?: Maybe<Scalars['Boolean']>;
|
|
11051
12099
|
};
|
|
11052
12100
|
export declare enum JiraVersionWarningConfigState {
|
|
11053
12101
|
Enabled = "ENABLED",
|
|
@@ -11590,7 +12638,9 @@ export declare type Mutation = {
|
|
|
11590
12638
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11591
12639
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11592
12640
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
12641
|
+
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
11593
12642
|
shepherd?: Maybe<ShepherdMutation>;
|
|
12643
|
+
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
11594
12644
|
jsw?: Maybe<JswMutation>;
|
|
11595
12645
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11596
12646
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11677,6 +12727,9 @@ export declare type Mutation = {
|
|
|
11677
12727
|
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
11678
12728
|
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
11679
12729
|
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
12730
|
+
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
12731
|
+
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
12732
|
+
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
11680
12733
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
11681
12734
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
11682
12735
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -11734,6 +12787,12 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
11734
12787
|
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11735
12788
|
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11736
12789
|
};
|
|
12790
|
+
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
12791
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
12792
|
+
};
|
|
12793
|
+
export declare type MutationHelpObjectStoreArgs = {
|
|
12794
|
+
cloudId: Scalars['ID'];
|
|
12795
|
+
};
|
|
11737
12796
|
export declare type MutationCreateColumnArgs = {
|
|
11738
12797
|
input?: Maybe<CreateColumnInput>;
|
|
11739
12798
|
};
|
|
@@ -11839,6 +12898,7 @@ export declare type MutationCreateReleaseNoteArgs = {
|
|
|
11839
12898
|
description: Scalars['JSON'];
|
|
11840
12899
|
changeCategory?: Maybe<Scalars['String']>;
|
|
11841
12900
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
12901
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
11842
12902
|
};
|
|
11843
12903
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
11844
12904
|
id: Scalars['String'];
|
|
@@ -11857,6 +12917,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
11857
12917
|
changeCategory?: Maybe<Scalars['String']>;
|
|
11858
12918
|
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11859
12919
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
12920
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
11860
12921
|
};
|
|
11861
12922
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11862
12923
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
@@ -11995,6 +13056,15 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
11995
13056
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
11996
13057
|
id: Scalars['ID'];
|
|
11997
13058
|
};
|
|
13059
|
+
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
13060
|
+
input: CreatePolarisIdeaTemplateInput;
|
|
13061
|
+
};
|
|
13062
|
+
export declare type MutationUpdatePolarisIdeaTemplateArgs = {
|
|
13063
|
+
input: UpdatePolarisIdeaTemplateInput;
|
|
13064
|
+
};
|
|
13065
|
+
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
13066
|
+
input: DeletePolarisIdeaTemplateInput;
|
|
13067
|
+
};
|
|
11998
13068
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
11999
13069
|
project: Scalars['ID'];
|
|
12000
13070
|
idea: Scalars['ID'];
|
|
@@ -12143,6 +13213,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
|
|
|
12143
13213
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
12144
13214
|
input: CreateAppDeploymentInput;
|
|
12145
13215
|
};
|
|
13216
|
+
export declare type MutationHelpCenterArgs = {
|
|
13217
|
+
cloudId: Scalars['ID'];
|
|
13218
|
+
};
|
|
12146
13219
|
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
12147
13220
|
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
12148
13221
|
};
|
|
@@ -12230,7 +13303,7 @@ export declare type NewCardParent = {
|
|
|
12230
13303
|
export declare type Node = {
|
|
12231
13304
|
id: Scalars['ID'];
|
|
12232
13305
|
};
|
|
12233
|
-
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection |
|
|
13306
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
|
|
12234
13307
|
export declare type OpsgenieAlertCountByPriority = {
|
|
12235
13308
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
12236
13309
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -12887,6 +13960,17 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
|
12887
13960
|
emoji?: Maybe<Scalars['String']>;
|
|
12888
13961
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
12889
13962
|
};
|
|
13963
|
+
export declare type PolarisIdeaTemplate = {
|
|
13964
|
+
__typename?: 'PolarisIdeaTemplate';
|
|
13965
|
+
id: Scalars['ID'];
|
|
13966
|
+
title: Scalars['String'];
|
|
13967
|
+
description?: Maybe<Scalars['String']>;
|
|
13968
|
+
color?: Maybe<Scalars['String']>;
|
|
13969
|
+
emoji?: Maybe<Scalars['String']>;
|
|
13970
|
+
template?: Maybe<Scalars['JSON']>;
|
|
13971
|
+
project?: Maybe<Scalars['ID']>;
|
|
13972
|
+
aaid?: Maybe<Scalars['String']>;
|
|
13973
|
+
};
|
|
12890
13974
|
export declare type PolarisIdeaType = {
|
|
12891
13975
|
__typename?: 'PolarisIdeaType';
|
|
12892
13976
|
id: Scalars['ID'];
|
|
@@ -13261,6 +14345,7 @@ export declare type PolarisValueRuleInput = {
|
|
|
13261
14345
|
export declare type PolarisView = {
|
|
13262
14346
|
__typename?: 'PolarisView';
|
|
13263
14347
|
id: Scalars['ID'];
|
|
14348
|
+
xid?: Maybe<Scalars['Int']>;
|
|
13264
14349
|
name: Scalars['String'];
|
|
13265
14350
|
emoji?: Maybe<Scalars['String']>;
|
|
13266
14351
|
description?: Maybe<Scalars['JSON']>;
|
|
@@ -13407,6 +14492,7 @@ export declare type Query = {
|
|
|
13407
14492
|
releaseNote: ContentPlatformReleaseNote;
|
|
13408
14493
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13409
14494
|
practicePage: ContentPlatformPracticePage;
|
|
14495
|
+
smarts?: Maybe<SmartsQueryApi>;
|
|
13410
14496
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13411
14497
|
search?: Maybe<SearchQueryApi>;
|
|
13412
14498
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
@@ -13467,6 +14553,7 @@ export declare type Query = {
|
|
|
13467
14553
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13468
14554
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13469
14555
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
14556
|
+
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
13470
14557
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13471
14558
|
dvcs?: Maybe<DvcsQuery>;
|
|
13472
14559
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -13736,6 +14823,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
13736
14823
|
project: Scalars['ID'];
|
|
13737
14824
|
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
13738
14825
|
};
|
|
14826
|
+
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
14827
|
+
project: Scalars['ID'];
|
|
14828
|
+
};
|
|
13739
14829
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
13740
14830
|
appId: Scalars['ID'];
|
|
13741
14831
|
environmentId: Scalars['ID'];
|
|
@@ -13770,6 +14860,9 @@ export declare type QueryAppDeploymentArgs = {
|
|
|
13770
14860
|
environmentKey: Scalars['String'];
|
|
13771
14861
|
id: Scalars['ID'];
|
|
13772
14862
|
};
|
|
14863
|
+
export declare type QueryHelpCenterArgs = {
|
|
14864
|
+
cloudId: Scalars['ID'];
|
|
14865
|
+
};
|
|
13773
14866
|
export declare type QueryExtensionsEchoArgs = {
|
|
13774
14867
|
text: Scalars['String'];
|
|
13775
14868
|
};
|
|
@@ -13954,6 +15047,7 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
13954
15047
|
sprints?: Maybe<Array<RoadmapSprint>>;
|
|
13955
15048
|
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
|
|
13956
15049
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
15050
|
+
isChildIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
13957
15051
|
};
|
|
13958
15052
|
export declare type RoadmapComponent = {
|
|
13959
15053
|
__typename?: 'RoadmapComponent';
|
|
@@ -14039,6 +15133,7 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
14039
15133
|
};
|
|
14040
15134
|
export declare type RoadmapHealthCheck = {
|
|
14041
15135
|
__typename?: 'RoadmapHealthCheck';
|
|
15136
|
+
id?: Maybe<Scalars['ID']>;
|
|
14042
15137
|
title: Scalars['String'];
|
|
14043
15138
|
explanation: Scalars['String'];
|
|
14044
15139
|
learnMore: RoadmapHealthCheckLink;
|
|
@@ -14065,7 +15160,9 @@ export declare type RoadmapItem = {
|
|
|
14065
15160
|
summary?: Maybe<Scalars['String']>;
|
|
14066
15161
|
assignee?: Maybe<User>;
|
|
14067
15162
|
dueDate?: Maybe<Scalars['DateTime']>;
|
|
15163
|
+
dueDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14068
15164
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
15165
|
+
startDateRFC3339?: Maybe<Scalars['Date']>;
|
|
14069
15166
|
status?: Maybe<RoadmapItemStatus>;
|
|
14070
15167
|
statusCategory?: Maybe<RoadmapItemStatusCategory>;
|
|
14071
15168
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -14183,6 +15280,7 @@ export declare type RoadmapProjectConfiguration = {
|
|
|
14183
15280
|
defaultItemTypeId?: Maybe<Scalars['String']>;
|
|
14184
15281
|
versions?: Maybe<Array<RoadmapVersion>>;
|
|
14185
15282
|
components?: Maybe<Array<RoadmapComponent>>;
|
|
15283
|
+
isReleasesFeatureEnabled: Scalars['Boolean'];
|
|
14186
15284
|
};
|
|
14187
15285
|
export declare type RoadmapProjectPermissions = {
|
|
14188
15286
|
__typename?: 'RoadmapProjectPermissions';
|
|
@@ -14238,7 +15336,9 @@ export declare type RoadmapSprint = {
|
|
|
14238
15336
|
id: Scalars['ID'];
|
|
14239
15337
|
name: Scalars['String'];
|
|
14240
15338
|
startDate: Scalars['String'];
|
|
15339
|
+
startDateRFC3339: Scalars['Date'];
|
|
14241
15340
|
endDate: Scalars['String'];
|
|
15341
|
+
endDateRFC3339: Scalars['Date'];
|
|
14242
15342
|
state: RoadmapSprintState;
|
|
14243
15343
|
};
|
|
14244
15344
|
export declare enum RoadmapSprintState {
|
|
@@ -14294,6 +15394,21 @@ export declare type RoadmapUpdateItemResponse = {
|
|
|
14294
15394
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
14295
15395
|
item?: Maybe<RoadmapItem>;
|
|
14296
15396
|
};
|
|
15397
|
+
export declare type RoadmapUpdateSettingsInput = {
|
|
15398
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15399
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15400
|
+
};
|
|
15401
|
+
export declare type RoadmapUpdateSettingsOutput = {
|
|
15402
|
+
__typename?: 'RoadmapUpdateSettingsOutput';
|
|
15403
|
+
roadmapEnabled?: Maybe<Scalars['Boolean']>;
|
|
15404
|
+
childIssuePlanningEnabled?: Maybe<Scalars['Boolean']>;
|
|
15405
|
+
};
|
|
15406
|
+
export declare type RoadmapUpdateSettingsPayload = Payload & {
|
|
15407
|
+
__typename?: 'RoadmapUpdateSettingsPayload';
|
|
15408
|
+
success: Scalars['Boolean'];
|
|
15409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15410
|
+
output?: Maybe<RoadmapUpdateSettingsOutput>;
|
|
15411
|
+
};
|
|
14297
15412
|
export declare type RoadmapUserConfiguration = {
|
|
14298
15413
|
__typename?: 'RoadmapUserConfiguration';
|
|
14299
15414
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -14305,12 +15420,15 @@ export declare type RoadmapUserConfiguration = {
|
|
|
14305
15420
|
epicView: RoadmapEpicView;
|
|
14306
15421
|
levelOneView: RoadmapLevelOneView;
|
|
14307
15422
|
levelOneViewSettings: RoadmapViewSettings;
|
|
15423
|
+
isReleasesVisible: Scalars['Boolean'];
|
|
15424
|
+
highlightedVersions: Array<Scalars['ID']>;
|
|
14308
15425
|
};
|
|
14309
15426
|
export declare type RoadmapVersion = {
|
|
14310
15427
|
__typename?: 'RoadmapVersion';
|
|
14311
15428
|
id: Scalars['ID'];
|
|
14312
15429
|
name: Scalars['String'];
|
|
14313
15430
|
status: RoadmapVersionStatus;
|
|
15431
|
+
releaseDate?: Maybe<Scalars['Date']>;
|
|
14314
15432
|
};
|
|
14315
15433
|
export declare enum RoadmapVersionStatus {
|
|
14316
15434
|
Released = "RELEASED",
|
|
@@ -14326,6 +15444,7 @@ export declare type RoadmapsMutation = {
|
|
|
14326
15444
|
__typename?: 'RoadmapsMutation';
|
|
14327
15445
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14328
15446
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
15447
|
+
updateRoadmapSettings?: Maybe<RoadmapUpdateSettingsPayload>;
|
|
14329
15448
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14330
15449
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14331
15450
|
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
@@ -14339,6 +15458,10 @@ export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
|
14339
15458
|
sourceARI: Scalars['ID'];
|
|
14340
15459
|
input: RoadmapResolveHealthcheckInput;
|
|
14341
15460
|
};
|
|
15461
|
+
export declare type RoadmapsMutationUpdateRoadmapSettingsArgs = {
|
|
15462
|
+
sourceARI: Scalars['ID'];
|
|
15463
|
+
input: RoadmapUpdateSettingsInput;
|
|
15464
|
+
};
|
|
14342
15465
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
14343
15466
|
sourceARI: Scalars['ID'];
|
|
14344
15467
|
input: RoadmapAddItemInput;
|
|
@@ -14393,6 +15516,7 @@ export declare enum Scope {
|
|
|
14393
15516
|
ReadAccount = "READ_ACCOUNT",
|
|
14394
15517
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14395
15518
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
15519
|
+
CompassAtlassianExternal = "COMPASS_ATLASSIAN_EXTERNAL",
|
|
14396
15520
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
14397
15521
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
14398
15522
|
ReadCompassScorecard = "READ_COMPASS_SCORECARD",
|
|
@@ -14461,15 +15585,268 @@ export declare enum Scope {
|
|
|
14461
15585
|
ManageJiraConfiguration = "MANAGE_JIRA_CONFIGURATION",
|
|
14462
15586
|
JiraAtlassianExternal = "JIRA_ATLASSIAN_EXTERNAL",
|
|
14463
15587
|
ManageJiraDataProvider = "MANAGE_JIRA_DATA_PROVIDER",
|
|
15588
|
+
ManageJiraWebhook = "MANAGE_JIRA_WEBHOOK",
|
|
15589
|
+
ApplicationRoleRead = "APPLICATION_ROLE_READ",
|
|
15590
|
+
AuditLogRead = "AUDIT_LOG_READ",
|
|
15591
|
+
AsyncTaskDelete = "ASYNC_TASK_DELETE",
|
|
15592
|
+
AttachmentDelete = "ATTACHMENT_DELETE",
|
|
15593
|
+
AttachmentRead = "ATTACHMENT_READ",
|
|
15594
|
+
AttachmentWrite = "ATTACHMENT_WRITE",
|
|
15595
|
+
AvatarDelete = "AVATAR_DELETE",
|
|
15596
|
+
AvatarRead = "AVATAR_READ",
|
|
15597
|
+
AvatarWrite = "AVATAR_WRITE",
|
|
15598
|
+
CommentDelete = "COMMENT_DELETE",
|
|
15599
|
+
CommentPropertyDelete = "COMMENT_PROPERTY_DELETE",
|
|
15600
|
+
CommentPropertyRead = "COMMENT_PROPERTY_READ",
|
|
15601
|
+
CommentPropertyWrite = "COMMENT_PROPERTY_WRITE",
|
|
15602
|
+
CommentRead = "COMMENT_READ",
|
|
15603
|
+
CommentWrite = "COMMENT_WRITE",
|
|
15604
|
+
CustomFieldContextualConfigurationRead = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_READ",
|
|
15605
|
+
CustomFieldContextualConfigurationWrite = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_WRITE",
|
|
15606
|
+
DashboardDelete = "DASHBOARD_DELETE",
|
|
15607
|
+
DashboardPropertyDelete = "DASHBOARD_PROPERTY_DELETE",
|
|
15608
|
+
DashboardPropertyRead = "DASHBOARD_PROPERTY_READ",
|
|
15609
|
+
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
15610
|
+
DashboardRead = "DASHBOARD_READ",
|
|
15611
|
+
DashboardWrite = "DASHBOARD_WRITE",
|
|
15612
|
+
FieldConfigurationSchemeDelete = "FIELD_CONFIGURATION_SCHEME_DELETE",
|
|
15613
|
+
FieldConfigurationSchemeRead = "FIELD_CONFIGURATION_SCHEME_READ",
|
|
15614
|
+
FieldConfigurationSchemeWrite = "FIELD_CONFIGURATION_SCHEME_WRITE",
|
|
15615
|
+
FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
|
|
15616
|
+
FieldConfigurationRead = "FIELD_CONFIGURATION_READ",
|
|
15617
|
+
FieldConfigurationWrite = "FIELD_CONFIGURATION_WRITE",
|
|
15618
|
+
FieldDefaultValueRead = "FIELD_DEFAULT_VALUE_READ",
|
|
15619
|
+
FieldDefaultValueWrite = "FIELD_DEFAULT_VALUE_WRITE",
|
|
15620
|
+
FieldDelete = "FIELD_DELETE",
|
|
15621
|
+
FieldOptionsRead = "FIELD_OPTIONS_READ",
|
|
15622
|
+
FieldOptionDelete = "FIELD_OPTION_DELETE",
|
|
15623
|
+
FieldOptionRead = "FIELD_OPTION_READ",
|
|
15624
|
+
FieldOptionWrite = "FIELD_OPTION_WRITE",
|
|
15625
|
+
FieldRead = "FIELD_READ",
|
|
15626
|
+
FieldWrite = "FIELD_WRITE",
|
|
15627
|
+
FilterColumnDelete = "FILTER_COLUMN_DELETE",
|
|
15628
|
+
FilterColumnRead = "FILTER_COLUMN_READ",
|
|
15629
|
+
FilterColumnWrite = "FILTER_COLUMN_WRITE",
|
|
15630
|
+
FilterDefaultShareScopeRead = "FILTER_DEFAULT_SHARE_SCOPE_READ",
|
|
15631
|
+
FilterDefaultShareScopeWrite = "FILTER_DEFAULT_SHARE_SCOPE_WRITE",
|
|
15632
|
+
FilterDelete = "FILTER_DELETE",
|
|
15633
|
+
FilterRead = "FILTER_READ",
|
|
15634
|
+
FilterWrite = "FILTER_WRITE",
|
|
15635
|
+
GroupDelete = "GROUP_DELETE",
|
|
15636
|
+
GroupRead = "GROUP_READ",
|
|
15637
|
+
GroupWrite = "GROUP_WRITE",
|
|
15638
|
+
InstanceConfigurationRead = "INSTANCE_CONFIGURATION_READ",
|
|
15639
|
+
InstanceConfigurationWrite = "INSTANCE_CONFIGURATION_WRITE",
|
|
15640
|
+
IssueAdjustmentsRead = "ISSUE_ADJUSTMENTS_READ",
|
|
15641
|
+
IssueAdjustmentsWrite = "ISSUE_ADJUSTMENTS_WRITE",
|
|
15642
|
+
IssueAdjustmentsDelete = "ISSUE_ADJUSTMENTS_DELETE",
|
|
15643
|
+
IssueEventRead = "ISSUE_EVENT_READ",
|
|
15644
|
+
IssueFieldValuesRead = "ISSUE_FIELD_VALUES_READ",
|
|
15645
|
+
IssueChangelogRead = "ISSUE_CHANGELOG_READ",
|
|
15646
|
+
IssueDelete = "ISSUE_DELETE",
|
|
15647
|
+
IssueDetailsRead = "ISSUE_DETAILS_READ",
|
|
15648
|
+
IssueLinkDelete = "ISSUE_LINK_DELETE",
|
|
15649
|
+
IssueLinkTypeDelete = "ISSUE_LINK_TYPE_DELETE",
|
|
15650
|
+
IssueLinkTypeRead = "ISSUE_LINK_TYPE_READ",
|
|
15651
|
+
IssueLinkTypeWrite = "ISSUE_LINK_TYPE_WRITE",
|
|
15652
|
+
IssueLinkRead = "ISSUE_LINK_READ",
|
|
15653
|
+
IssueLinkWrite = "ISSUE_LINK_WRITE",
|
|
15654
|
+
IssuePropertyDelete = "ISSUE_PROPERTY_DELETE",
|
|
15655
|
+
IssuePropertyRead = "ISSUE_PROPERTY_READ",
|
|
15656
|
+
IssuePropertyWrite = "ISSUE_PROPERTY_WRITE",
|
|
15657
|
+
IssueRead = "ISSUE_READ",
|
|
15658
|
+
IssueRemoteLinkDelete = "ISSUE_REMOTE_LINK_DELETE",
|
|
15659
|
+
IssueRemoteLinkRead = "ISSUE_REMOTE_LINK_READ",
|
|
15660
|
+
IssueRemoteLinkWrite = "ISSUE_REMOTE_LINK_WRITE",
|
|
15661
|
+
IssueSecurityLevelRead = "ISSUE_SECURITY_LEVEL_READ",
|
|
15662
|
+
IssueSecuritySchemeRead = "ISSUE_SECURITY_SCHEME_READ",
|
|
15663
|
+
IssueStatusRead = "ISSUE_STATUS_READ",
|
|
15664
|
+
IssueTimeTrackingRead = "ISSUE_TIME_TRACKING_READ",
|
|
15665
|
+
IssueTimeTrackingWrite = "ISSUE_TIME_TRACKING_WRITE",
|
|
15666
|
+
IssueTransitionRead = "ISSUE_TRANSITION_READ",
|
|
15667
|
+
IssueTypeDelete = "ISSUE_TYPE_DELETE",
|
|
15668
|
+
IssueTypeHierarchyRead = "ISSUE_TYPE_HIERARCHY_READ",
|
|
15669
|
+
IssueTypePropertyDelete = "ISSUE_TYPE_PROPERTY_DELETE",
|
|
15670
|
+
IssueTypePropertyRead = "ISSUE_TYPE_PROPERTY_READ",
|
|
15671
|
+
IssueTypePropertyWrite = "ISSUE_TYPE_PROPERTY_WRITE",
|
|
15672
|
+
IssueTypeRead = "ISSUE_TYPE_READ",
|
|
15673
|
+
IssueTypeSchemeDelete = "ISSUE_TYPE_SCHEME_DELETE",
|
|
15674
|
+
IssueTypeSchemeRead = "ISSUE_TYPE_SCHEME_READ",
|
|
15675
|
+
IssueTypeSchemeWrite = "ISSUE_TYPE_SCHEME_WRITE",
|
|
15676
|
+
IssueTypeScreenSchemeDelete = "ISSUE_TYPE_SCREEN_SCHEME_DELETE",
|
|
15677
|
+
IssueTypeScreenSchemeRead = "ISSUE_TYPE_SCREEN_SCHEME_READ",
|
|
15678
|
+
IssueTypeScreenSchemeWrite = "ISSUE_TYPE_SCREEN_SCHEME_WRITE",
|
|
15679
|
+
IssueTypeWrite = "ISSUE_TYPE_WRITE",
|
|
15680
|
+
IssueVotesRead = "ISSUE_VOTES_READ",
|
|
15681
|
+
IssueVoteRead = "ISSUE_VOTE_READ",
|
|
15682
|
+
IssueVoteWrite = "ISSUE_VOTE_WRITE",
|
|
15683
|
+
IssueWatcherRead = "ISSUE_WATCHER_READ",
|
|
15684
|
+
IssueWatcherWrite = "ISSUE_WATCHER_WRITE",
|
|
15685
|
+
IssueWorklogDelete = "ISSUE_WORKLOG_DELETE",
|
|
15686
|
+
IssueWorklogPropertyDelete = "ISSUE_WORKLOG_PROPERTY_DELETE",
|
|
15687
|
+
IssueWorklogPropertyRead = "ISSUE_WORKLOG_PROPERTY_READ",
|
|
15688
|
+
IssueWorklogPropertyWrite = "ISSUE_WORKLOG_PROPERTY_WRITE",
|
|
15689
|
+
IssueWorklogRead = "ISSUE_WORKLOG_READ",
|
|
15690
|
+
IssueWorklogWrite = "ISSUE_WORKLOG_WRITE",
|
|
15691
|
+
IssueWrite = "ISSUE_WRITE",
|
|
15692
|
+
IssueMetaRead = "ISSUE_META_READ",
|
|
15693
|
+
JqlRead = "JQL_READ",
|
|
15694
|
+
JqlValidate = "JQL_VALIDATE",
|
|
15695
|
+
LabelRead = "LABEL_READ",
|
|
15696
|
+
LicenseRead = "LICENSE_READ",
|
|
15697
|
+
NotificationSchemeRead = "NOTIFICATION_SCHEME_READ",
|
|
15698
|
+
NotificationSend = "NOTIFICATION_SEND",
|
|
15699
|
+
PermissionDelete = "PERMISSION_DELETE",
|
|
15700
|
+
PermissionRead = "PERMISSION_READ",
|
|
15701
|
+
PermissionSchemeDelete = "PERMISSION_SCHEME_DELETE",
|
|
15702
|
+
PermissionSchemeRead = "PERMISSION_SCHEME_READ",
|
|
15703
|
+
PermissionSchemeWrite = "PERMISSION_SCHEME_WRITE",
|
|
15704
|
+
PermissionWrite = "PERMISSION_WRITE",
|
|
15705
|
+
PriorityRead = "PRIORITY_READ",
|
|
15706
|
+
ProjectAvatarDelete = "PROJECT_AVATAR_DELETE",
|
|
15707
|
+
ProjectAvatarRead = "PROJECT_AVATAR_READ",
|
|
15708
|
+
ProjectAvatarWrite = "PROJECT_AVATAR_WRITE",
|
|
15709
|
+
ProjectCategoryDelete = "PROJECT_CATEGORY_DELETE",
|
|
15710
|
+
ProjectCategoryRead = "PROJECT_CATEGORY_READ",
|
|
15711
|
+
ProjectCategoryWrite = "PROJECT_CATEGORY_WRITE",
|
|
15712
|
+
ProjectComponentDelete = "PROJECT_COMPONENT_DELETE",
|
|
15713
|
+
ProjectComponentRead = "PROJECT_COMPONENT_READ",
|
|
15714
|
+
ProjectComponentWrite = "PROJECT_COMPONENT_WRITE",
|
|
15715
|
+
ProjectEmailRead = "PROJECT_EMAIL_READ",
|
|
15716
|
+
ProjectEmailWrite = "PROJECT_EMAIL_WRITE",
|
|
15717
|
+
ProjectFeatureRead = "PROJECT_FEATURE_READ",
|
|
15718
|
+
ProjectFeatureWrite = "PROJECT_FEATURE_WRITE",
|
|
15719
|
+
ProjectPropertyDelete = "PROJECT_PROPERTY_DELETE",
|
|
15720
|
+
ProjectPropertyRead = "PROJECT_PROPERTY_READ",
|
|
15721
|
+
ProjectPropertyWrite = "PROJECT_PROPERTY_WRITE",
|
|
15722
|
+
ProjectRoleDelete = "PROJECT_ROLE_DELETE",
|
|
15723
|
+
ProjectRoleRead = "PROJECT_ROLE_READ",
|
|
15724
|
+
ProjectRoleWrite = "PROJECT_ROLE_WRITE",
|
|
15725
|
+
ProjectTypeRead = "PROJECT_TYPE_READ",
|
|
15726
|
+
ProjectVersionDelete = "PROJECT_VERSION_DELETE",
|
|
15727
|
+
ProjectVersionRead = "PROJECT_VERSION_READ",
|
|
15728
|
+
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
15729
|
+
ProjectDelete = "PROJECT_DELETE",
|
|
15730
|
+
ProjectRead = "PROJECT_READ",
|
|
15731
|
+
ProjectWrite = "PROJECT_WRITE",
|
|
15732
|
+
ResolutionRead = "RESOLUTION_READ",
|
|
15733
|
+
ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
|
|
15734
|
+
ScreenableFieldRead = "SCREENABLE_FIELD_READ",
|
|
15735
|
+
ScreenableFieldWrite = "SCREENABLE_FIELD_WRITE",
|
|
15736
|
+
ScreenDelete = "SCREEN_DELETE",
|
|
15737
|
+
ScreenFieldRead = "SCREEN_FIELD_READ",
|
|
15738
|
+
ScreenRead = "SCREEN_READ",
|
|
15739
|
+
ScreenSchemeDelete = "SCREEN_SCHEME_DELETE",
|
|
15740
|
+
ScreenSchemeRead = "SCREEN_SCHEME_READ",
|
|
15741
|
+
ScreenSchemeWrite = "SCREEN_SCHEME_WRITE",
|
|
15742
|
+
ScreenTabDelete = "SCREEN_TAB_DELETE",
|
|
15743
|
+
ScreenTabRead = "SCREEN_TAB_READ",
|
|
15744
|
+
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
15745
|
+
ScreenWrite = "SCREEN_WRITE",
|
|
15746
|
+
StatusRead = "STATUS_READ",
|
|
15747
|
+
UserColumnsRead = "USER_COLUMNS_READ",
|
|
15748
|
+
UserConfigurationDelete = "USER_CONFIGURATION_DELETE",
|
|
15749
|
+
UserConfigurationRead = "USER_CONFIGURATION_READ",
|
|
15750
|
+
UserConfigurationWrite = "USER_CONFIGURATION_WRITE",
|
|
15751
|
+
UserPropertyDelete = "USER_PROPERTY_DELETE",
|
|
15752
|
+
UserPropertyRead = "USER_PROPERTY_READ",
|
|
15753
|
+
UserPropertyWrite = "USER_PROPERTY_WRITE",
|
|
15754
|
+
UserRead = "USER_READ",
|
|
15755
|
+
WebhookRead = "WEBHOOK_READ",
|
|
15756
|
+
WebhookWrite = "WEBHOOK_WRITE",
|
|
15757
|
+
WebhookDelete = "WEBHOOK_DELETE",
|
|
15758
|
+
WorkflowDelete = "WORKFLOW_DELETE",
|
|
15759
|
+
WorkflowPropertyDelete = "WORKFLOW_PROPERTY_DELETE",
|
|
15760
|
+
WorkflowPropertyRead = "WORKFLOW_PROPERTY_READ",
|
|
15761
|
+
WorkflowPropertyWrite = "WORKFLOW_PROPERTY_WRITE",
|
|
15762
|
+
WorkflowRead = "WORKFLOW_READ",
|
|
15763
|
+
WorkflowSchemeDelete = "WORKFLOW_SCHEME_DELETE",
|
|
15764
|
+
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
15765
|
+
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
15766
|
+
WorkflowWrite = "WORKFLOW_WRITE",
|
|
15767
|
+
JiraExpressionsRead = "JIRA_EXPRESSIONS_READ",
|
|
14464
15768
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
14465
15769
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
14466
15770
|
ManageServicedeskCustomer = "MANAGE_SERVICEDESK_CUSTOMER",
|
|
15771
|
+
ReadCustomer = "READ_CUSTOMER",
|
|
15772
|
+
WriteCustomer = "WRITE_CUSTOMER",
|
|
15773
|
+
ReadOrganization = "READ_ORGANIZATION",
|
|
15774
|
+
WriteOrganization = "WRITE_ORGANIZATION",
|
|
15775
|
+
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
15776
|
+
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
15777
|
+
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
15778
|
+
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
15779
|
+
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
15780
|
+
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
15781
|
+
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
15782
|
+
ReadServicedesk = "READ_SERVICEDESK",
|
|
15783
|
+
WriteServicedesk = "WRITE_SERVICEDESK",
|
|
15784
|
+
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
15785
|
+
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
15786
|
+
DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
|
|
15787
|
+
ReadServicedeskCustomer = "READ_SERVICEDESK_CUSTOMER",
|
|
15788
|
+
WriteServicedeskCustomer = "WRITE_SERVICEDESK_CUSTOMER",
|
|
15789
|
+
DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
|
|
15790
|
+
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
15791
|
+
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
15792
|
+
DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
|
|
15793
|
+
ReadRequesttype = "READ_REQUESTTYPE",
|
|
15794
|
+
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
15795
|
+
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
15796
|
+
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
15797
|
+
DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
|
|
15798
|
+
ReadQueue = "READ_QUEUE",
|
|
15799
|
+
ReadRequest = "READ_REQUEST",
|
|
15800
|
+
WriteRequest = "WRITE_REQUEST",
|
|
15801
|
+
ReadRequestApproval = "READ_REQUEST_APPROVAL",
|
|
15802
|
+
WriteRequestApproval = "WRITE_REQUEST_APPROVAL",
|
|
15803
|
+
ReadRequestParticipant = "READ_REQUEST_PARTICIPANT",
|
|
15804
|
+
WriteRequestParticipant = "WRITE_REQUEST_PARTICIPANT",
|
|
15805
|
+
DeleteRequestParticipant = "DELETE_REQUEST_PARTICIPANT",
|
|
15806
|
+
ReadRequestAction = "READ_REQUEST_ACTION",
|
|
15807
|
+
ReadRequestComment = "READ_REQUEST_COMMENT",
|
|
15808
|
+
WriteRequestComment = "WRITE_REQUEST_COMMENT",
|
|
15809
|
+
ReadRequestSla = "READ_REQUEST_SLA",
|
|
15810
|
+
ReadRequestAttachment = "READ_REQUEST_ATTACHMENT",
|
|
15811
|
+
WriteRequestAttachment = "WRITE_REQUEST_ATTACHMENT",
|
|
15812
|
+
ReadRequestStatus = "READ_REQUEST_STATUS",
|
|
15813
|
+
WriteRequestStatus = "WRITE_REQUEST_STATUS",
|
|
15814
|
+
ReadRequestFeedback = "READ_REQUEST_FEEDBACK",
|
|
15815
|
+
WriteRequestFeedback = "WRITE_REQUEST_FEEDBACK",
|
|
15816
|
+
DeleteRequestFeedback = "DELETE_REQUEST_FEEDBACK",
|
|
15817
|
+
ReadRequestNotification = "READ_REQUEST_NOTIFICATION",
|
|
15818
|
+
WriteRequestNotification = "WRITE_REQUEST_NOTIFICATION",
|
|
15819
|
+
DeleteRequestNotification = "DELETE_REQUEST_NOTIFICATION",
|
|
15820
|
+
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
15821
|
+
ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
|
|
15822
|
+
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
15823
|
+
ReadJswBoardScopeAdmin = "READ_JSW_BOARD_SCOPE_ADMIN",
|
|
15824
|
+
WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
|
|
15825
|
+
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
15826
|
+
ReadJswEpic = "READ_JSW_EPIC",
|
|
15827
|
+
WriteJswEpic = "WRITE_JSW_EPIC",
|
|
15828
|
+
ReadJswIssue = "READ_JSW_ISSUE",
|
|
15829
|
+
WriteJswIssue = "WRITE_JSW_ISSUE",
|
|
15830
|
+
ReadJswSprint = "READ_JSW_SPRINT",
|
|
15831
|
+
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
15832
|
+
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
15833
|
+
ReadJswSourceCode = "READ_JSW_SOURCE_CODE",
|
|
15834
|
+
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
15835
|
+
ReadJswFeatureFlag = "READ_JSW_FEATURE_FLAG",
|
|
15836
|
+
WriteJswFeatureFlag = "WRITE_JSW_FEATURE_FLAG",
|
|
15837
|
+
ReadJswDeployment = "READ_JSW_DEPLOYMENT",
|
|
15838
|
+
WriteJswDeployment = "WRITE_JSW_DEPLOYMENT",
|
|
15839
|
+
ReadJswBuild = "READ_JSW_BUILD",
|
|
15840
|
+
WriteJswBuild = "WRITE_JSW_BUILD",
|
|
15841
|
+
ReadJswRemoteLink = "READ_JSW_REMOTE_LINK",
|
|
15842
|
+
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
14467
15843
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
14468
15844
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
14469
15845
|
AdminContainer = "ADMIN_CONTAINER",
|
|
14470
15846
|
ReadContainer = "READ_CONTAINER",
|
|
14471
15847
|
WriteContainer = "WRITE_CONTAINER",
|
|
14472
|
-
MigrateConfluence = "MIGRATE_CONFLUENCE"
|
|
15848
|
+
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
15849
|
+
ReadAvocadoEntity = "READ_AVOCADO_ENTITY"
|
|
14473
15850
|
}
|
|
14474
15851
|
export declare type ScopeSprintIssue = {
|
|
14475
15852
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -14482,6 +15859,10 @@ export declare type SearchAnalyticsInput = {
|
|
|
14482
15859
|
searchSessionId?: Maybe<Scalars['String']>;
|
|
14483
15860
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
14484
15861
|
};
|
|
15862
|
+
export declare type SearchBoardFilter = {
|
|
15863
|
+
projectARI: Scalars['String'];
|
|
15864
|
+
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
15865
|
+
};
|
|
14485
15866
|
export declare type SearchConfluenceFilter = {
|
|
14486
15867
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
14487
15868
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -14496,8 +15877,8 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
14496
15877
|
id: Scalars['ID'];
|
|
14497
15878
|
title: Scalars['String'];
|
|
14498
15879
|
url: Scalars['URL'];
|
|
14499
|
-
iconUrl
|
|
14500
|
-
type:
|
|
15880
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15881
|
+
type: SearchResultType;
|
|
14501
15882
|
description: Scalars['String'];
|
|
14502
15883
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14503
15884
|
space?: Maybe<SearchSpace>;
|
|
@@ -14516,8 +15897,8 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
14516
15897
|
id: Scalars['ID'];
|
|
14517
15898
|
title: Scalars['String'];
|
|
14518
15899
|
url: Scalars['URL'];
|
|
14519
|
-
iconUrl
|
|
14520
|
-
type:
|
|
15900
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15901
|
+
type: SearchResultType;
|
|
14521
15902
|
description: Scalars['String'];
|
|
14522
15903
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14523
15904
|
};
|
|
@@ -14530,8 +15911,8 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
14530
15911
|
id: Scalars['ID'];
|
|
14531
15912
|
title: Scalars['String'];
|
|
14532
15913
|
url: Scalars['URL'];
|
|
14533
|
-
iconUrl
|
|
14534
|
-
type:
|
|
15914
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15915
|
+
type: SearchResultType;
|
|
14535
15916
|
description: Scalars['String'];
|
|
14536
15917
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14537
15918
|
};
|
|
@@ -14539,6 +15920,7 @@ export declare type SearchFilterInput = {
|
|
|
14539
15920
|
entities: Array<Scalars['String']>;
|
|
14540
15921
|
locations: Array<Scalars['String']>;
|
|
14541
15922
|
confluenceFilters?: Maybe<SearchConfluenceFilter>;
|
|
15923
|
+
jiraFilters?: Maybe<SearchJiraFilter>;
|
|
14542
15924
|
};
|
|
14543
15925
|
export declare type SearchItemConnection = {
|
|
14544
15926
|
__typename?: 'SearchItemConnection';
|
|
@@ -14546,31 +15928,95 @@ export declare type SearchItemConnection = {
|
|
|
14546
15928
|
pageInfo: PageInfo;
|
|
14547
15929
|
totalCount?: Maybe<Scalars['Int']>;
|
|
14548
15930
|
};
|
|
15931
|
+
export declare type SearchJiraFilter = {
|
|
15932
|
+
boardFilter?: Maybe<SearchBoardFilter>;
|
|
15933
|
+
projectFilter?: Maybe<SearchJiraProjectFilter>;
|
|
15934
|
+
};
|
|
15935
|
+
export declare type SearchJiraProjectFilter = {
|
|
15936
|
+
projectType?: Maybe<SearchProjectType>;
|
|
15937
|
+
};
|
|
15938
|
+
export declare enum SearchProjectType {
|
|
15939
|
+
Software = "software",
|
|
15940
|
+
Business = "business",
|
|
15941
|
+
ServiceDesk = "service_desk",
|
|
15942
|
+
ProductDiscovery = "product_discovery"
|
|
15943
|
+
}
|
|
14549
15944
|
export declare type SearchQueryApi = {
|
|
14550
15945
|
__typename?: 'SearchQueryAPI';
|
|
14551
15946
|
search: SearchItemConnection;
|
|
14552
15947
|
};
|
|
14553
15948
|
export declare type SearchQueryApiSearchArgs = {
|
|
14554
15949
|
query?: Maybe<Scalars['String']>;
|
|
14555
|
-
filters
|
|
15950
|
+
filters: SearchFilterInput;
|
|
14556
15951
|
analytics?: Maybe<SearchAnalyticsInput>;
|
|
14557
15952
|
experience: Scalars['String'];
|
|
14558
15953
|
first?: Maybe<Scalars['Int']>;
|
|
15954
|
+
after?: Maybe<Scalars['String']>;
|
|
15955
|
+
before?: Maybe<Scalars['String']>;
|
|
15956
|
+
last?: Maybe<Scalars['Int']>;
|
|
14559
15957
|
};
|
|
14560
15958
|
export declare type SearchResult = {
|
|
14561
15959
|
id: Scalars['ID'];
|
|
14562
15960
|
title: Scalars['String'];
|
|
14563
15961
|
url: Scalars['URL'];
|
|
14564
|
-
iconUrl
|
|
14565
|
-
type:
|
|
15962
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15963
|
+
type: SearchResultType;
|
|
14566
15964
|
description: Scalars['String'];
|
|
14567
|
-
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14568
15965
|
};
|
|
14569
15966
|
export declare type SearchResultItemEdge = {
|
|
14570
15967
|
__typename?: 'SearchResultItemEdge';
|
|
14571
15968
|
node?: Maybe<SearchResult>;
|
|
14572
15969
|
cursor?: Maybe<Scalars['String']>;
|
|
14573
15970
|
};
|
|
15971
|
+
export declare type SearchResultJiraBoard = SearchResult & {
|
|
15972
|
+
__typename?: 'SearchResultJiraBoard';
|
|
15973
|
+
id: Scalars['ID'];
|
|
15974
|
+
title: Scalars['String'];
|
|
15975
|
+
url: Scalars['URL'];
|
|
15976
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15977
|
+
type: SearchResultType;
|
|
15978
|
+
description: Scalars['String'];
|
|
15979
|
+
favourite: Scalars['Boolean'];
|
|
15980
|
+
boardId: Scalars['String'];
|
|
15981
|
+
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
15982
|
+
};
|
|
15983
|
+
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
15984
|
+
export declare type SearchResultJiraBoardProjectContainer = {
|
|
15985
|
+
__typename?: 'SearchResultJiraBoardProjectContainer';
|
|
15986
|
+
projectId: Scalars['ID'];
|
|
15987
|
+
projectKey: Scalars['String'];
|
|
15988
|
+
projectName: Scalars['String'];
|
|
15989
|
+
projectTypeKey: SearchProjectType;
|
|
15990
|
+
};
|
|
15991
|
+
export declare type SearchResultJiraBoardUserContainer = {
|
|
15992
|
+
__typename?: 'SearchResultJiraBoardUserContainer';
|
|
15993
|
+
userId: Scalars['ID'];
|
|
15994
|
+
userAccountId: Scalars['String'];
|
|
15995
|
+
userName: Scalars['String'];
|
|
15996
|
+
};
|
|
15997
|
+
export declare type SearchResultJiraProject = SearchResult & {
|
|
15998
|
+
__typename?: 'SearchResultJiraProject';
|
|
15999
|
+
id: Scalars['ID'];
|
|
16000
|
+
projectType: SearchProjectType;
|
|
16001
|
+
projectId: Scalars['String'];
|
|
16002
|
+
projectKey: Scalars['String'];
|
|
16003
|
+
title: Scalars['String'];
|
|
16004
|
+
url: Scalars['URL'];
|
|
16005
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
16006
|
+
type: SearchResultType;
|
|
16007
|
+
description: Scalars['String'];
|
|
16008
|
+
favourite: Scalars['Boolean'];
|
|
16009
|
+
simplified: Scalars['Boolean'];
|
|
16010
|
+
};
|
|
16011
|
+
export declare enum SearchResultType {
|
|
16012
|
+
Blogpost = "blogpost",
|
|
16013
|
+
Space = "space",
|
|
16014
|
+
Board = "board",
|
|
16015
|
+
Filter = "filter",
|
|
16016
|
+
Issue = "issue",
|
|
16017
|
+
Plan = "plan",
|
|
16018
|
+
Project = "project"
|
|
16019
|
+
}
|
|
14574
16020
|
export declare type SearchSpace = {
|
|
14575
16021
|
__typename?: 'SearchSpace';
|
|
14576
16022
|
key: Scalars['String'];
|
|
@@ -14695,12 +16141,19 @@ export declare type ShepherdAlert = {
|
|
|
14695
16141
|
assignee?: Maybe<ShepherdUser>;
|
|
14696
16142
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14697
16143
|
createdOn: Scalars['DateTime'];
|
|
16144
|
+
description?: Maybe<Array<Maybe<ShepherdDescriptionSection>>>;
|
|
14698
16145
|
id: Scalars['ID'];
|
|
14699
16146
|
orgId: Scalars['ID'];
|
|
14700
16147
|
status: ShepherdAlertStatus;
|
|
16148
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
14701
16149
|
title: Scalars['String'];
|
|
14702
16150
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14703
16151
|
};
|
|
16152
|
+
export declare enum ShepherdAlertDescriptionType {
|
|
16153
|
+
AlertInfo = "ALERT_INFO",
|
|
16154
|
+
Investigate = "INVESTIGATE",
|
|
16155
|
+
Remediate = "REMEDIATE"
|
|
16156
|
+
}
|
|
14704
16157
|
export declare type ShepherdAlertEdge = {
|
|
14705
16158
|
__typename?: 'ShepherdAlertEdge';
|
|
14706
16159
|
node?: Maybe<ShepherdAlert>;
|
|
@@ -14717,6 +16170,16 @@ export declare enum ShepherdAlertStatus {
|
|
|
14717
16170
|
Triaged = "TRIAGED",
|
|
14718
16171
|
Untriaged = "UNTRIAGED"
|
|
14719
16172
|
}
|
|
16173
|
+
export declare enum ShepherdAlertTemplateType {
|
|
16174
|
+
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
16175
|
+
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
16176
|
+
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
16177
|
+
Default = "DEFAULT",
|
|
16178
|
+
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
16179
|
+
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
16180
|
+
TokenCreated = "TOKEN_CREATED",
|
|
16181
|
+
UserGrantedRole = "USER_GRANTED_ROLE"
|
|
16182
|
+
}
|
|
14720
16183
|
export declare type ShepherdAlertsConnection = {
|
|
14721
16184
|
__typename?: 'ShepherdAlertsConnection';
|
|
14722
16185
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
@@ -14733,6 +16196,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
14733
16196
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14734
16197
|
orgId: Scalars['ID'];
|
|
14735
16198
|
status?: Maybe<ShepherdAlertStatus>;
|
|
16199
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
14736
16200
|
title: Scalars['String'];
|
|
14737
16201
|
};
|
|
14738
16202
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
@@ -14745,6 +16209,15 @@ export declare type ShepherdCreateEmailInput = {
|
|
|
14745
16209
|
email?: Maybe<Scalars['String']>;
|
|
14746
16210
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14747
16211
|
};
|
|
16212
|
+
export declare type ShepherdCreateExampleAlertInput = {
|
|
16213
|
+
orgId: Scalars['ID'];
|
|
16214
|
+
};
|
|
16215
|
+
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
16216
|
+
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
16217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16218
|
+
node?: Maybe<ShepherdAlert>;
|
|
16219
|
+
success: Scalars['Boolean'];
|
|
16220
|
+
};
|
|
14748
16221
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14749
16222
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14750
16223
|
id: Scalars['ID'];
|
|
@@ -14772,6 +16245,11 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14772
16245
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14773
16246
|
type?: Maybe<ShepherdWebhookType>;
|
|
14774
16247
|
};
|
|
16248
|
+
export declare type ShepherdDescriptionSection = {
|
|
16249
|
+
__typename?: 'ShepherdDescriptionSection';
|
|
16250
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16251
|
+
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16252
|
+
};
|
|
14775
16253
|
export declare type ShepherdEmailConnection = {
|
|
14776
16254
|
__typename?: 'ShepherdEmailConnection';
|
|
14777
16255
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -14799,8 +16277,10 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
14799
16277
|
export declare type ShepherdMutation = {
|
|
14800
16278
|
__typename?: 'ShepherdMutation';
|
|
14801
16279
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
16280
|
+
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
14802
16281
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14803
16282
|
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
16283
|
+
testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
|
|
14804
16284
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14805
16285
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14806
16286
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
@@ -14808,12 +16288,19 @@ export declare type ShepherdMutation = {
|
|
|
14808
16288
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14809
16289
|
input: ShepherdCreateAlertInput;
|
|
14810
16290
|
};
|
|
16291
|
+
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
16292
|
+
input: ShepherdCreateExampleAlertInput;
|
|
16293
|
+
};
|
|
14811
16294
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14812
16295
|
input: ShepherdCreateOrganizationInput;
|
|
14813
16296
|
};
|
|
14814
16297
|
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14815
16298
|
input: ShepherdCreateSubscriptionInput;
|
|
14816
16299
|
};
|
|
16300
|
+
export declare type ShepherdMutationTestSubscriptionArgs = {
|
|
16301
|
+
orgId: Scalars['ID'];
|
|
16302
|
+
subscriptionId: Scalars['ID'];
|
|
16303
|
+
};
|
|
14817
16304
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14818
16305
|
id: Scalars['ID'];
|
|
14819
16306
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14869,6 +16356,17 @@ export declare enum ShepherdSubscriptionStatus {
|
|
|
14869
16356
|
Inactive = "INACTIVE"
|
|
14870
16357
|
}
|
|
14871
16358
|
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
16359
|
+
export declare type ShepherdTestSubscriptionError = {
|
|
16360
|
+
__typename?: 'ShepherdTestSubscriptionError';
|
|
16361
|
+
reason?: Maybe<Scalars['String']>;
|
|
16362
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
16363
|
+
};
|
|
16364
|
+
export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
16365
|
+
__typename?: 'ShepherdTestSubscriptionPayload';
|
|
16366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16367
|
+
node?: Maybe<ShepherdSubscription>;
|
|
16368
|
+
success: Scalars['Boolean'];
|
|
16369
|
+
};
|
|
14872
16370
|
export declare type ShepherdUpdateAlertInput = {
|
|
14873
16371
|
assignee?: Maybe<Scalars['ID']>;
|
|
14874
16372
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14936,6 +16434,63 @@ export declare enum ShepherdWebhookType {
|
|
|
14936
16434
|
Custom = "CUSTOM",
|
|
14937
16435
|
Slack = "SLACK"
|
|
14938
16436
|
}
|
|
16437
|
+
export declare type SmartsContext = {
|
|
16438
|
+
userId: Scalars['String'];
|
|
16439
|
+
tenantId: Scalars['String'];
|
|
16440
|
+
product?: Maybe<Scalars['String']>;
|
|
16441
|
+
containerId?: Maybe<Scalars['String']>;
|
|
16442
|
+
objectId?: Maybe<Scalars['String']>;
|
|
16443
|
+
additionalContextList?: Maybe<Array<SmartsKeyValue>>;
|
|
16444
|
+
};
|
|
16445
|
+
export declare type SmartsKeyValue = {
|
|
16446
|
+
key: Scalars['String'];
|
|
16447
|
+
value: Scalars['String'];
|
|
16448
|
+
};
|
|
16449
|
+
export declare type SmartsModelRequestParams = {
|
|
16450
|
+
caller: Scalars['String'];
|
|
16451
|
+
experience: Scalars['String'];
|
|
16452
|
+
};
|
|
16453
|
+
export declare type SmartsQueryApi = {
|
|
16454
|
+
__typename?: 'SmartsQueryApi';
|
|
16455
|
+
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
16456
|
+
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
16457
|
+
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
16458
|
+
};
|
|
16459
|
+
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
16460
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
16461
|
+
};
|
|
16462
|
+
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
16463
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
16464
|
+
};
|
|
16465
|
+
export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
16466
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
16467
|
+
};
|
|
16468
|
+
export declare type SmartsRecommendationsQuery = {
|
|
16469
|
+
context: SmartsContext;
|
|
16470
|
+
modelRequestParams: SmartsModelRequestParams;
|
|
16471
|
+
sessionId?: Maybe<Scalars['String']>;
|
|
16472
|
+
requestingUserId: Scalars['String'];
|
|
16473
|
+
maxNumberOfResults?: Maybe<Scalars['Int']>;
|
|
16474
|
+
};
|
|
16475
|
+
export declare type SmartsRecommendedContainer = {
|
|
16476
|
+
__typename?: 'SmartsRecommendedContainer';
|
|
16477
|
+
id: Scalars['ID'];
|
|
16478
|
+
score?: Maybe<Scalars['Float']>;
|
|
16479
|
+
container?: Maybe<ConfluenceSpace>;
|
|
16480
|
+
};
|
|
16481
|
+
export declare type SmartsRecommendedObject = {
|
|
16482
|
+
__typename?: 'SmartsRecommendedObject';
|
|
16483
|
+
id: Scalars['ID'];
|
|
16484
|
+
score?: Maybe<Scalars['Float']>;
|
|
16485
|
+
object?: Maybe<SmartsRecommendedObjectData>;
|
|
16486
|
+
};
|
|
16487
|
+
export declare type SmartsRecommendedObjectData = ConfluencePage | ConfluenceBlogPost;
|
|
16488
|
+
export declare type SmartsRecommendedUser = {
|
|
16489
|
+
__typename?: 'SmartsRecommendedUser';
|
|
16490
|
+
id: Scalars['ID'];
|
|
16491
|
+
score?: Maybe<Scalars['Float']>;
|
|
16492
|
+
user?: Maybe<User>;
|
|
16493
|
+
};
|
|
14939
16494
|
export declare type SoftwareBoard = {
|
|
14940
16495
|
__typename?: 'SoftwareBoard';
|
|
14941
16496
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -15151,6 +16706,7 @@ export declare type Storage = {
|
|
|
15151
16706
|
export declare type Subscription = {
|
|
15152
16707
|
__typename?: 'Subscription';
|
|
15153
16708
|
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
16709
|
+
onTestingActivityItemUpdate?: Maybe<Node>;
|
|
15154
16710
|
};
|
|
15155
16711
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
15156
16712
|
cloudId: Scalars['ID'];
|
|
@@ -15158,6 +16714,9 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
15158
16714
|
projectType?: JiraProjectType;
|
|
15159
16715
|
filter?: JiraProjectFilterInput;
|
|
15160
16716
|
};
|
|
16717
|
+
export declare type SubscriptionOnTestingActivityItemUpdateArgs = {
|
|
16718
|
+
issueId: Scalars['ID'];
|
|
16719
|
+
};
|
|
15161
16720
|
export declare type SupportRequest = {
|
|
15162
16721
|
__typename?: 'SupportRequest';
|
|
15163
16722
|
id: Scalars['ID'];
|
|
@@ -15523,6 +17082,7 @@ export declare type Testing = {
|
|
|
15523
17082
|
movie?: Maybe<TestingMovie>;
|
|
15524
17083
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
15525
17084
|
performance?: Maybe<TestingPerformance>;
|
|
17085
|
+
books?: Maybe<Array<Maybe<TestingBook>>>;
|
|
15526
17086
|
};
|
|
15527
17087
|
export declare type TestingEchoArgs = {
|
|
15528
17088
|
message?: Maybe<Scalars['String']>;
|
|
@@ -15536,6 +17096,9 @@ export declare type TestingThrowExceptionArgs = {
|
|
|
15536
17096
|
export declare type TestingMovieArgs = {
|
|
15537
17097
|
id: Scalars['ID'];
|
|
15538
17098
|
};
|
|
17099
|
+
export declare type TestingBooksArgs = {
|
|
17100
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
17101
|
+
};
|
|
15539
17102
|
export declare type TestingActivityConnection = {
|
|
15540
17103
|
__typename?: 'TestingActivityConnection';
|
|
15541
17104
|
nodes: Array<Maybe<TestingActivityItem>>;
|
|
@@ -15579,6 +17142,17 @@ export declare type TestingActivityUser = {
|
|
|
15579
17142
|
name?: Maybe<Scalars['String']>;
|
|
15580
17143
|
picture?: Maybe<Scalars['String']>;
|
|
15581
17144
|
};
|
|
17145
|
+
export declare type TestingAuthor = {
|
|
17146
|
+
__typename?: 'TestingAuthor';
|
|
17147
|
+
id: Scalars['ID'];
|
|
17148
|
+
name?: Maybe<Scalars['String']>;
|
|
17149
|
+
};
|
|
17150
|
+
export declare type TestingBook = {
|
|
17151
|
+
__typename?: 'TestingBook';
|
|
17152
|
+
id: Scalars['ID'];
|
|
17153
|
+
title?: Maybe<Scalars['String']>;
|
|
17154
|
+
author?: Maybe<Array<Maybe<TestingAuthor>>>;
|
|
17155
|
+
};
|
|
15582
17156
|
export declare type TestingCharacter = {
|
|
15583
17157
|
__typename?: 'TestingCharacter';
|
|
15584
17158
|
id: Scalars['ID'];
|
|
@@ -15641,25 +17215,19 @@ export declare type TownsquareComment = Node & {
|
|
|
15641
17215
|
id: Scalars['ID'];
|
|
15642
17216
|
url?: Maybe<Scalars['String']>;
|
|
15643
17217
|
uuid?: Maybe<Scalars['String']>;
|
|
15644
|
-
|
|
17218
|
+
container?: Maybe<TownsquareCommentContainer>;
|
|
15645
17219
|
};
|
|
15646
17220
|
export declare type TownsquareCommentConnection = {
|
|
15647
17221
|
__typename?: 'TownsquareCommentConnection';
|
|
15648
17222
|
edges?: Maybe<Array<Maybe<TownsquareCommentEdge>>>;
|
|
15649
17223
|
pageInfo: PageInfo;
|
|
15650
17224
|
};
|
|
17225
|
+
export declare type TownsquareCommentContainer = TownsquareGoal | TownsquareProject;
|
|
15651
17226
|
export declare type TownsquareCommentEdge = {
|
|
15652
17227
|
__typename?: 'TownsquareCommentEdge';
|
|
15653
17228
|
cursor: Scalars['String'];
|
|
15654
17229
|
node?: Maybe<TownsquareComment>;
|
|
15655
17230
|
};
|
|
15656
|
-
export declare type TownsquareCommentObject = {
|
|
15657
|
-
__typename?: 'TownsquareCommentObject';
|
|
15658
|
-
ari?: Maybe<Scalars['String']>;
|
|
15659
|
-
iconData?: Maybe<Scalars['String']>;
|
|
15660
|
-
name?: Maybe<Scalars['String']>;
|
|
15661
|
-
url?: Maybe<Scalars['String']>;
|
|
15662
|
-
};
|
|
15663
17231
|
export declare type TownsquareGoal = Node & {
|
|
15664
17232
|
__typename?: 'TownsquareGoal';
|
|
15665
17233
|
archived: Scalars['Boolean'];
|
|
@@ -16031,6 +17599,9 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
16031
17599
|
hasDescription?: Maybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
16032
17600
|
hasOwner?: Maybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
16033
17601
|
hasMetricValue?: Maybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
17602
|
+
hasCustomTextValue?: Maybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
17603
|
+
hasCustomBooleanValue?: Maybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
17604
|
+
hasCustomNumberValue?: Maybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
16034
17605
|
};
|
|
16035
17606
|
export declare type UpdateCompassScorecardCriteriasInput = {
|
|
16036
17607
|
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|
|
@@ -16258,6 +17829,20 @@ export declare type UpdatePolarisIdeaPayload = Payload & {
|
|
|
16258
17829
|
errors?: Maybe<Array<MutationError>>;
|
|
16259
17830
|
node?: Maybe<PolarisIdea>;
|
|
16260
17831
|
};
|
|
17832
|
+
export declare type UpdatePolarisIdeaTemplateInput = {
|
|
17833
|
+
id: Scalars['ID'];
|
|
17834
|
+
project: Scalars['ID'];
|
|
17835
|
+
title: Scalars['String'];
|
|
17836
|
+
description?: Maybe<Scalars['String']>;
|
|
17837
|
+
color?: Maybe<Scalars['String']>;
|
|
17838
|
+
emoji?: Maybe<Scalars['String']>;
|
|
17839
|
+
template?: Maybe<Scalars['JSON']>;
|
|
17840
|
+
};
|
|
17841
|
+
export declare type UpdatePolarisIdeaTemplatePayload = Payload & {
|
|
17842
|
+
__typename?: 'UpdatePolarisIdeaTemplatePayload';
|
|
17843
|
+
success: Scalars['Boolean'];
|
|
17844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17845
|
+
};
|
|
16261
17846
|
export declare type UpdatePolarisInsightInput = {
|
|
16262
17847
|
description?: Maybe<Scalars['JSON']>;
|
|
16263
17848
|
snippets?: Maybe<Array<UpdatePolarisSnippetInput>>;
|