@forge/cli-shared 2.1.5-next.1 → 2.1.5-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -812,7 +812,6 @@ export declare type AtlassianOAuthClient = {
|
|
|
812
812
|
clientID: Scalars['ID'];
|
|
813
813
|
callbacks?: Maybe<Array<Scalars['String']>>;
|
|
814
814
|
refreshToken?: Maybe<RefreshToken>;
|
|
815
|
-
systemUser?: Maybe<User>;
|
|
816
815
|
};
|
|
817
816
|
export declare enum AtlassianProductHostingType {
|
|
818
817
|
Cloud = "CLOUD",
|
|
@@ -1193,19 +1192,6 @@ export declare type CfdIssueColumnChangeEntry = {
|
|
|
1193
1192
|
statusTo?: Maybe<Scalars['ID']>;
|
|
1194
1193
|
point?: Maybe<TimeSeriesPoint>;
|
|
1195
1194
|
};
|
|
1196
|
-
export declare type CardCoverImageVisibilityToggleInput = {
|
|
1197
|
-
boardAri: Scalars['ID'];
|
|
1198
|
-
isVisible: Scalars['Boolean'];
|
|
1199
|
-
};
|
|
1200
|
-
export declare type CardCoverImageVisibilityToggleOutput = {
|
|
1201
|
-
__typename?: 'CardCoverImageVisibilityToggleOutput';
|
|
1202
|
-
boardAri: Scalars['ID'];
|
|
1203
|
-
isVisible: Scalars['Boolean'];
|
|
1204
|
-
statusCode: Scalars['Int'];
|
|
1205
|
-
success: Scalars['Boolean'];
|
|
1206
|
-
message: Scalars['String'];
|
|
1207
|
-
clientMutationId?: Maybe<Scalars['ID']>;
|
|
1208
|
-
};
|
|
1209
1195
|
export declare type CardCoverMedia = {
|
|
1210
1196
|
__typename?: 'CardCoverMedia';
|
|
1211
1197
|
attachmentMediaApiId?: Maybe<Scalars['ID']>;
|
|
@@ -1961,7 +1947,8 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
1961
1947
|
id: Scalars['ID'];
|
|
1962
1948
|
weight: Scalars['Int'];
|
|
1963
1949
|
comparatorValue: Scalars['Float'];
|
|
1964
|
-
|
|
1950
|
+
metricDefinitionId: Scalars['ID'];
|
|
1951
|
+
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
1965
1952
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
1966
1953
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
1967
1954
|
};
|
|
@@ -2024,7 +2011,6 @@ export declare type CompassMetricDefinitionsQuery = {
|
|
|
2024
2011
|
cloudId: Scalars['ID'];
|
|
2025
2012
|
first?: Maybe<Scalars['Int']>;
|
|
2026
2013
|
after?: Maybe<Scalars['String']>;
|
|
2027
|
-
names?: Maybe<Array<Scalars['String']>>;
|
|
2028
2014
|
};
|
|
2029
2015
|
export declare type CompassMetricDefinitionsQueryResult = CompassMetricDefinitionsConnection | QueryError;
|
|
2030
2016
|
export declare type CompassMetricSource = {
|
|
@@ -2412,6 +2398,139 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2412
2398
|
errors?: Maybe<Array<MutationError>>;
|
|
2413
2399
|
node?: Maybe<Scalars['Int']>;
|
|
2414
2400
|
};
|
|
2401
|
+
export declare type ConfluenceAbstractPage = {
|
|
2402
|
+
id?: Maybe<Scalars['ID']>;
|
|
2403
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2404
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2405
|
+
title?: Maybe<Scalars['String']>;
|
|
2406
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2407
|
+
};
|
|
2408
|
+
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2409
|
+
__typename?: 'ConfluenceBlogPost';
|
|
2410
|
+
blogPostId: Scalars['ID'];
|
|
2411
|
+
id?: Maybe<Scalars['ID']>;
|
|
2412
|
+
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2413
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2414
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2415
|
+
title?: Maybe<Scalars['String']>;
|
|
2416
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2417
|
+
};
|
|
2418
|
+
export declare type ConfluenceBlogPostLinks = {
|
|
2419
|
+
__typename?: 'ConfluenceBlogPostLinks';
|
|
2420
|
+
base?: Maybe<Scalars['String']>;
|
|
2421
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2422
|
+
};
|
|
2423
|
+
export declare type ConfluenceComment = {
|
|
2424
|
+
__typename?: 'ConfluenceComment';
|
|
2425
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
2426
|
+
container?: Maybe<ConfluenceAbstractPage>;
|
|
2427
|
+
id?: Maybe<Scalars['ID']>;
|
|
2428
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
2429
|
+
name?: Maybe<Scalars['String']>;
|
|
2430
|
+
};
|
|
2431
|
+
export declare type ConfluenceCommentLinks = {
|
|
2432
|
+
__typename?: 'ConfluenceCommentLinks';
|
|
2433
|
+
base?: Maybe<Scalars['String']>;
|
|
2434
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2435
|
+
};
|
|
2436
|
+
export declare enum ConfluenceContentStatus {
|
|
2437
|
+
Any = "ANY",
|
|
2438
|
+
Archived = "ARCHIVED",
|
|
2439
|
+
Current = "CURRENT",
|
|
2440
|
+
Deleted = "DELETED",
|
|
2441
|
+
Draft = "DRAFT",
|
|
2442
|
+
Historical = "HISTORICAL",
|
|
2443
|
+
Trashed = "TRASHED"
|
|
2444
|
+
}
|
|
2445
|
+
export declare enum ConfluenceContentType {
|
|
2446
|
+
Attachment = "ATTACHMENT",
|
|
2447
|
+
BlogPost = "BLOG_POST",
|
|
2448
|
+
Comment = "COMMENT",
|
|
2449
|
+
Page = "PAGE"
|
|
2450
|
+
}
|
|
2451
|
+
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2452
|
+
__typename?: 'ConfluencePage';
|
|
2453
|
+
id?: Maybe<Scalars['ID']>;
|
|
2454
|
+
links?: Maybe<ConfluencePageLinks>;
|
|
2455
|
+
pageId: Scalars['ID'];
|
|
2456
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2457
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2458
|
+
title?: Maybe<Scalars['String']>;
|
|
2459
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2460
|
+
};
|
|
2461
|
+
export declare type ConfluencePageLinks = {
|
|
2462
|
+
__typename?: 'ConfluencePageLinks';
|
|
2463
|
+
base?: Maybe<Scalars['String']>;
|
|
2464
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2465
|
+
};
|
|
2466
|
+
export declare type ConfluenceQueryApi = {
|
|
2467
|
+
__typename?: 'ConfluenceQueryApi';
|
|
2468
|
+
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2469
|
+
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2470
|
+
confluencePage?: Maybe<ConfluenceAbstractPage>;
|
|
2471
|
+
confluencePageWithFilters?: Maybe<ConfluenceAbstractPage>;
|
|
2472
|
+
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2473
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2474
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2475
|
+
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2476
|
+
};
|
|
2477
|
+
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2478
|
+
id: Scalars['ID'];
|
|
2479
|
+
};
|
|
2480
|
+
export declare type ConfluenceQueryApiConfluenceCommentsArgs = {
|
|
2481
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2482
|
+
};
|
|
2483
|
+
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2484
|
+
id: Scalars['ID'];
|
|
2485
|
+
};
|
|
2486
|
+
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
2487
|
+
id: Scalars['ID'];
|
|
2488
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2489
|
+
};
|
|
2490
|
+
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
2491
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2492
|
+
};
|
|
2493
|
+
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
2494
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2495
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2496
|
+
};
|
|
2497
|
+
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
2498
|
+
id: Scalars['ID'];
|
|
2499
|
+
};
|
|
2500
|
+
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
2501
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2502
|
+
};
|
|
2503
|
+
export declare type ConfluenceSpace = {
|
|
2504
|
+
__typename?: 'ConfluenceSpace';
|
|
2505
|
+
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2506
|
+
id?: Maybe<Scalars['ID']>;
|
|
2507
|
+
key?: Maybe<Scalars['String']>;
|
|
2508
|
+
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2509
|
+
name?: Maybe<Scalars['String']>;
|
|
2510
|
+
spaceId?: Maybe<Scalars['ID']>;
|
|
2511
|
+
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2512
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
2513
|
+
};
|
|
2514
|
+
export declare type ConfluenceSpaceIcon = {
|
|
2515
|
+
__typename?: 'ConfluenceSpaceIcon';
|
|
2516
|
+
height?: Maybe<Scalars['Int']>;
|
|
2517
|
+
isDefault?: Maybe<Scalars['Boolean']>;
|
|
2518
|
+
path?: Maybe<Scalars['String']>;
|
|
2519
|
+
width?: Maybe<Scalars['Int']>;
|
|
2520
|
+
};
|
|
2521
|
+
export declare type ConfluenceSpaceLinks = {
|
|
2522
|
+
__typename?: 'ConfluenceSpaceLinks';
|
|
2523
|
+
base?: Maybe<Scalars['String']>;
|
|
2524
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2525
|
+
};
|
|
2526
|
+
export declare enum ConfluenceSpaceStatus {
|
|
2527
|
+
Archived = "ARCHIVED",
|
|
2528
|
+
Current = "CURRENT"
|
|
2529
|
+
}
|
|
2530
|
+
export declare enum ConfluenceSpaceType {
|
|
2531
|
+
Global = "GLOBAL",
|
|
2532
|
+
Personal = "PERSONAL"
|
|
2533
|
+
}
|
|
2415
2534
|
export declare type ConnectAppScope = {
|
|
2416
2535
|
__typename?: 'ConnectAppScope';
|
|
2417
2536
|
scopeId: Scalars['ID'];
|
|
@@ -2555,7 +2674,8 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
2555
2674
|
};
|
|
2556
2675
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
2557
2676
|
weight: Scalars['Int'];
|
|
2558
|
-
|
|
2677
|
+
metricDefinitionId: Scalars['ID'];
|
|
2678
|
+
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
2559
2679
|
comparatorValue: Scalars['Float'];
|
|
2560
2680
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2561
2681
|
};
|
|
@@ -3793,6 +3913,23 @@ export declare type DevOpsToolConnection = {
|
|
|
3793
3913
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3794
3914
|
pageInfo: PageInfo;
|
|
3795
3915
|
};
|
|
3916
|
+
export declare type DevOpsToolContainer = {
|
|
3917
|
+
__typename?: 'DevOpsToolContainer';
|
|
3918
|
+
id: Scalars['ID'];
|
|
3919
|
+
displayName: Scalars['String'];
|
|
3920
|
+
url: Scalars['String'];
|
|
3921
|
+
};
|
|
3922
|
+
export declare type DevOpsToolContainerConnection = {
|
|
3923
|
+
__typename?: 'DevOpsToolContainerConnection';
|
|
3924
|
+
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
3925
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
3926
|
+
pageInfo: PageInfo;
|
|
3927
|
+
};
|
|
3928
|
+
export declare type DevOpsToolContainerEdge = {
|
|
3929
|
+
__typename?: 'DevOpsToolContainerEdge';
|
|
3930
|
+
cursor: Scalars['String'];
|
|
3931
|
+
node?: Maybe<DevOpsToolContainer>;
|
|
3932
|
+
};
|
|
3796
3933
|
export declare enum DevOpsToolContainerType {
|
|
3797
3934
|
Repository = "REPOSITORY",
|
|
3798
3935
|
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
@@ -3808,6 +3945,23 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3808
3945
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3809
3946
|
webUrl: Scalars['URL'];
|
|
3810
3947
|
};
|
|
3948
|
+
export declare type DevOpsToolNamespace = {
|
|
3949
|
+
__typename?: 'DevOpsToolNamespace';
|
|
3950
|
+
id: Scalars['ID'];
|
|
3951
|
+
displayName: Scalars['String'];
|
|
3952
|
+
canCreateContainer: Scalars['Boolean'];
|
|
3953
|
+
};
|
|
3954
|
+
export declare type DevOpsToolNamespaceConnection = {
|
|
3955
|
+
__typename?: 'DevOpsToolNamespaceConnection';
|
|
3956
|
+
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
3957
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
3958
|
+
pageInfo: PageInfo;
|
|
3959
|
+
};
|
|
3960
|
+
export declare type DevOpsToolNamespaceEdge = {
|
|
3961
|
+
__typename?: 'DevOpsToolNamespaceEdge';
|
|
3962
|
+
cursor: Scalars['String'];
|
|
3963
|
+
node?: Maybe<DevOpsToolNamespace>;
|
|
3964
|
+
};
|
|
3811
3965
|
export declare type DevOpsToolSupportedContainerType = {
|
|
3812
3966
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
3813
3967
|
category: DevOpsToolCategory;
|
|
@@ -3824,12 +3978,28 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3824
3978
|
export declare type DevOpsTools = {
|
|
3825
3979
|
__typename?: 'DevOpsTools';
|
|
3826
3980
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3981
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3982
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3827
3983
|
};
|
|
3828
3984
|
export declare type DevOpsToolsToolsArgs = {
|
|
3829
3985
|
cloudId: Scalars['ID'];
|
|
3830
3986
|
first?: Maybe<Scalars['Int']>;
|
|
3831
3987
|
after?: Maybe<Scalars['String']>;
|
|
3832
3988
|
};
|
|
3989
|
+
export declare type DevOpsToolsNamespacesArgs = {
|
|
3990
|
+
cloudId: Scalars['ID'];
|
|
3991
|
+
toolId: Scalars['String'];
|
|
3992
|
+
first?: Maybe<Scalars['Int']>;
|
|
3993
|
+
after?: Maybe<Scalars['String']>;
|
|
3994
|
+
};
|
|
3995
|
+
export declare type DevOpsToolsContainersArgs = {
|
|
3996
|
+
cloudId: Scalars['ID'];
|
|
3997
|
+
toolId: Scalars['String'];
|
|
3998
|
+
namespaceId: Scalars['String'];
|
|
3999
|
+
query?: Maybe<Scalars['String']>;
|
|
4000
|
+
first?: Maybe<Scalars['Int']>;
|
|
4001
|
+
after?: Maybe<Scalars['String']>;
|
|
4002
|
+
};
|
|
3833
4003
|
export declare type DevStatus = {
|
|
3834
4004
|
__typename?: 'DevStatus';
|
|
3835
4005
|
activity: DevStatusActivity;
|
|
@@ -3881,6 +4051,7 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
3881
4051
|
export declare type EcosystemQuery = {
|
|
3882
4052
|
__typename?: 'EcosystemQuery';
|
|
3883
4053
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4054
|
+
hasPermissionToConsentInContext?: Maybe<PermissionToConsentInContext>;
|
|
3884
4055
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
3885
4056
|
};
|
|
3886
4057
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -3889,6 +4060,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
3889
4060
|
before?: Maybe<Scalars['String']>;
|
|
3890
4061
|
after?: Maybe<Scalars['String']>;
|
|
3891
4062
|
};
|
|
4063
|
+
export declare type EcosystemQueryHasPermissionToConsentInContextArgs = {
|
|
4064
|
+
installationContext: Scalars['ID'];
|
|
4065
|
+
environmentKey: Scalars['String'];
|
|
4066
|
+
appId: Scalars['ID'];
|
|
4067
|
+
};
|
|
3892
4068
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
3893
4069
|
appId: Scalars['ID'];
|
|
3894
4070
|
};
|
|
@@ -3931,6 +4107,7 @@ export declare type EventSource = {
|
|
|
3931
4107
|
id: Scalars['ID'];
|
|
3932
4108
|
externalEventSourceId: Scalars['ID'];
|
|
3933
4109
|
eventType: CompassEventType;
|
|
4110
|
+
forgeAppId?: Maybe<Scalars['ID']>;
|
|
3934
4111
|
};
|
|
3935
4112
|
export declare type Extension = {
|
|
3936
4113
|
__typename?: 'Extension';
|
|
@@ -5406,11 +5583,11 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
5406
5583
|
node: JiraGrantTypeValue;
|
|
5407
5584
|
cursor: Scalars['String'];
|
|
5408
5585
|
};
|
|
5409
|
-
export declare type JiraGroup = {
|
|
5586
|
+
export declare type JiraGroup = Node & {
|
|
5410
5587
|
__typename?: 'JiraGroup';
|
|
5411
|
-
id
|
|
5412
|
-
groupId
|
|
5413
|
-
name
|
|
5588
|
+
id: Scalars['ID'];
|
|
5589
|
+
groupId: Scalars['String'];
|
|
5590
|
+
name: Scalars['String'];
|
|
5414
5591
|
};
|
|
5415
5592
|
export declare type JiraGroupConnection = {
|
|
5416
5593
|
__typename?: 'JiraGroupConnection';
|
|
@@ -5508,6 +5685,7 @@ export declare type JiraIssueConnection = {
|
|
|
5508
5685
|
__typename?: 'JiraIssueConnection';
|
|
5509
5686
|
totalCount?: Maybe<Scalars['Int']>;
|
|
5510
5687
|
pageInfo: PageInfo;
|
|
5688
|
+
jql?: Maybe<Scalars['String']>;
|
|
5511
5689
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
5512
5690
|
};
|
|
5513
5691
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
@@ -6684,6 +6862,17 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
6684
6862
|
before?: Maybe<Scalars['String']>;
|
|
6685
6863
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6686
6864
|
};
|
|
6865
|
+
export declare type JiraPermissionConfiguration = {
|
|
6866
|
+
__typename?: 'JiraPermissionConfiguration';
|
|
6867
|
+
tag: JiraPermissionTagEnum;
|
|
6868
|
+
message?: Maybe<JiraPermissionMessageExtension>;
|
|
6869
|
+
documentation?: Maybe<JiraPermissionDocumentationExtension>;
|
|
6870
|
+
};
|
|
6871
|
+
export declare type JiraPermissionDocumentationExtension = {
|
|
6872
|
+
__typename?: 'JiraPermissionDocumentationExtension';
|
|
6873
|
+
text: Scalars['String'];
|
|
6874
|
+
url: Scalars['String'];
|
|
6875
|
+
};
|
|
6687
6876
|
export declare type JiraPermissionGrant = {
|
|
6688
6877
|
__typename?: 'JiraPermissionGrant';
|
|
6689
6878
|
grantType: JiraGrantTypeKey;
|
|
@@ -6703,12 +6892,13 @@ export declare type JiraPermissionGrantEdge = {
|
|
|
6703
6892
|
export declare type JiraPermissionGrantHolder = {
|
|
6704
6893
|
__typename?: 'JiraPermissionGrantHolder';
|
|
6705
6894
|
permission: JiraProjectPermission;
|
|
6895
|
+
configuration?: Maybe<JiraPermissionConfiguration>;
|
|
6706
6896
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
6707
6897
|
};
|
|
6708
6898
|
export declare type JiraPermissionGrantValue = {
|
|
6709
6899
|
__typename?: 'JiraPermissionGrantValue';
|
|
6710
6900
|
id: Scalars['ID'];
|
|
6711
|
-
value
|
|
6901
|
+
value?: Maybe<JiraGrantTypeValue>;
|
|
6712
6902
|
};
|
|
6713
6903
|
export declare type JiraPermissionGrantValueConnection = {
|
|
6714
6904
|
__typename?: 'JiraPermissionGrantValueConnection';
|
|
@@ -6732,6 +6922,15 @@ export declare type JiraPermissionLevel = {
|
|
|
6732
6922
|
group?: Maybe<JiraGroup>;
|
|
6733
6923
|
role?: Maybe<JiraRole>;
|
|
6734
6924
|
};
|
|
6925
|
+
export declare type JiraPermissionMessageExtension = {
|
|
6926
|
+
__typename?: 'JiraPermissionMessageExtension';
|
|
6927
|
+
type: JiraPermissionMessageTypeEnum;
|
|
6928
|
+
text: Scalars['String'];
|
|
6929
|
+
};
|
|
6930
|
+
export declare enum JiraPermissionMessageTypeEnum {
|
|
6931
|
+
Information = "INFORMATION",
|
|
6932
|
+
Warning = "WARNING"
|
|
6933
|
+
}
|
|
6735
6934
|
export declare type JiraPermissionScheme = Node & {
|
|
6736
6935
|
__typename?: 'JiraPermissionScheme';
|
|
6737
6936
|
id: Scalars['ID'];
|
|
@@ -6747,6 +6946,10 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
|
|
|
6747
6946
|
success: Scalars['Boolean'];
|
|
6748
6947
|
errors?: Maybe<Array<MutationError>>;
|
|
6749
6948
|
};
|
|
6949
|
+
export declare type JiraPermissionSchemeConfiguration = {
|
|
6950
|
+
__typename?: 'JiraPermissionSchemeConfiguration';
|
|
6951
|
+
isEditable: Scalars['Boolean'];
|
|
6952
|
+
};
|
|
6750
6953
|
export declare type JiraPermissionSchemeGrantGroup = {
|
|
6751
6954
|
__typename?: 'JiraPermissionSchemeGrantGroup';
|
|
6752
6955
|
category: JiraProjectPermissionCategory;
|
|
@@ -6755,11 +6958,11 @@ export declare type JiraPermissionSchemeGrantGroup = {
|
|
|
6755
6958
|
export declare type JiraPermissionSchemeGrantInput = {
|
|
6756
6959
|
permissionKey: Scalars['String'];
|
|
6757
6960
|
grantType: JiraGrantTypeKeyEnum;
|
|
6758
|
-
grantValue
|
|
6961
|
+
grantValue?: Maybe<Scalars['ID']>;
|
|
6759
6962
|
};
|
|
6760
6963
|
export declare type JiraPermissionSchemeRemoveGrantInput = {
|
|
6761
6964
|
schemeId: Scalars['ID'];
|
|
6762
|
-
|
|
6965
|
+
grantIds: Array<Scalars['Long']>;
|
|
6763
6966
|
};
|
|
6764
6967
|
export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
6765
6968
|
__typename?: 'JiraPermissionSchemeRemoveGrantPayload';
|
|
@@ -6769,9 +6972,14 @@ export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
|
6769
6972
|
export declare type JiraPermissionSchemeView = {
|
|
6770
6973
|
__typename?: 'JiraPermissionSchemeView';
|
|
6771
6974
|
scheme: JiraPermissionScheme;
|
|
6975
|
+
configuration: JiraPermissionSchemeConfiguration;
|
|
6772
6976
|
grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
|
|
6773
6977
|
};
|
|
6774
6978
|
export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
|
|
6979
|
+
export declare enum JiraPermissionTagEnum {
|
|
6980
|
+
Deprecated = "DEPRECATED",
|
|
6981
|
+
New = "NEW"
|
|
6982
|
+
}
|
|
6775
6983
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
6776
6984
|
__typename?: 'JiraPlatformAttachment';
|
|
6777
6985
|
id: Scalars['ID'];
|
|
@@ -7066,6 +7274,7 @@ export declare type JiraQuery = {
|
|
|
7066
7274
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
7067
7275
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
7068
7276
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7277
|
+
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7069
7278
|
version?: Maybe<JiraVersionResult>;
|
|
7070
7279
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7071
7280
|
};
|
|
@@ -7141,6 +7350,11 @@ export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
|
|
|
7141
7350
|
before?: Maybe<Scalars['String']>;
|
|
7142
7351
|
schemeId: Scalars['ID'];
|
|
7143
7352
|
permissionKey: Scalars['String'];
|
|
7353
|
+
grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
|
|
7354
|
+
};
|
|
7355
|
+
export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
7356
|
+
schemeId: Scalars['ID'];
|
|
7357
|
+
permissionKey: Scalars['String'];
|
|
7144
7358
|
};
|
|
7145
7359
|
export declare type JiraQueryVersionArgs = {
|
|
7146
7360
|
id: Scalars['ID'];
|
|
@@ -7816,7 +8030,8 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
7816
8030
|
};
|
|
7817
8031
|
export declare type JiraServiceManagementTeamResponder = {
|
|
7818
8032
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
7819
|
-
|
|
8033
|
+
teamId?: Maybe<Scalars['String']>;
|
|
8034
|
+
teamName?: Maybe<Scalars['String']>;
|
|
7820
8035
|
};
|
|
7821
8036
|
export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
7822
8037
|
__typename?: 'JiraServiceManagementUserApproverPrincipal';
|
|
@@ -8182,6 +8397,15 @@ export declare type JiraVersion = Node & {
|
|
|
8182
8397
|
description?: Maybe<Scalars['String']>;
|
|
8183
8398
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
8184
8399
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
8400
|
+
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
8401
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
8402
|
+
};
|
|
8403
|
+
export declare type JiraVersionIssuesArgs = {
|
|
8404
|
+
first?: Maybe<Scalars['Int']>;
|
|
8405
|
+
after?: Maybe<Scalars['String']>;
|
|
8406
|
+
last?: Maybe<Scalars['Int']>;
|
|
8407
|
+
before?: Maybe<Scalars['String']>;
|
|
8408
|
+
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
8185
8409
|
};
|
|
8186
8410
|
export declare type JiraVersionConnection = {
|
|
8187
8411
|
__typename?: 'JiraVersionConnection';
|
|
@@ -8216,6 +8440,15 @@ export declare type JiraVersionEdge = {
|
|
|
8216
8440
|
node?: Maybe<JiraVersion>;
|
|
8217
8441
|
cursor: Scalars['String'];
|
|
8218
8442
|
};
|
|
8443
|
+
export declare enum JiraVersionIssuesFilter {
|
|
8444
|
+
All = "ALL",
|
|
8445
|
+
Todo = "TODO",
|
|
8446
|
+
InProgress = "IN_PROGRESS",
|
|
8447
|
+
Done = "DONE",
|
|
8448
|
+
UnreviewedCode = "UNREVIEWED_CODE",
|
|
8449
|
+
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
8450
|
+
FailingBuild = "FAILING_BUILD"
|
|
8451
|
+
}
|
|
8219
8452
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
8220
8453
|
export declare enum JiraVersionStatus {
|
|
8221
8454
|
Released = "RELEASED",
|
|
@@ -8705,6 +8938,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
8705
8938
|
export declare type Mutation = {
|
|
8706
8939
|
__typename?: 'Mutation';
|
|
8707
8940
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
8941
|
+
shepherd?: Maybe<ShepherdMutation>;
|
|
8708
8942
|
createApp?: Maybe<CreateAppResponse>;
|
|
8709
8943
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
8710
8944
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -8734,7 +8968,7 @@ export declare type Mutation = {
|
|
|
8734
8968
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
8735
8969
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
8736
8970
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
8737
|
-
|
|
8971
|
+
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
8738
8972
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8739
8973
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8740
8974
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -8763,48 +8997,48 @@ export declare type Mutation = {
|
|
|
8763
8997
|
jira?: Maybe<JiraMutation>;
|
|
8764
8998
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
8765
8999
|
appStorage?: Maybe<AppStorageMutation>;
|
|
8766
|
-
|
|
8767
|
-
|
|
8768
|
-
|
|
8769
|
-
|
|
8770
|
-
|
|
8771
|
-
|
|
8772
|
-
|
|
8773
|
-
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
8774
|
-
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
8775
|
-
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
8776
|
-
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
8777
|
-
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
8778
|
-
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
9000
|
+
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
9001
|
+
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
9002
|
+
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
9003
|
+
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
9004
|
+
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
9005
|
+
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
9006
|
+
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
8779
9007
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
8780
9008
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
8781
9009
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
8782
9010
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
8783
|
-
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
8784
9011
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
8785
|
-
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
8786
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
8787
|
-
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
8788
|
-
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
8789
|
-
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
8790
|
-
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
8791
|
-
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
8792
|
-
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
8793
|
-
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
8794
|
-
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
8795
|
-
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
8796
|
-
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
8797
9012
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
8798
9013
|
deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
|
|
9014
|
+
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
9015
|
+
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
9016
|
+
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
9017
|
+
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
9018
|
+
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
9019
|
+
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
9020
|
+
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
9021
|
+
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
8799
9022
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
8800
9023
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
8801
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
8802
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
8803
9024
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
8804
9025
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
8805
9026
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
8806
9027
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
8807
9028
|
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
9029
|
+
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
9030
|
+
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
9031
|
+
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
9032
|
+
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
9033
|
+
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
9034
|
+
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
9035
|
+
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
9036
|
+
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9037
|
+
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9038
|
+
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
9039
|
+
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9040
|
+
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9041
|
+
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
8808
9042
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
8809
9043
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
8810
9044
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -8909,8 +9143,8 @@ export declare type MutationCreateCardParentArgs = {
|
|
|
8909
9143
|
export declare type MutationRankCardParentArgs = {
|
|
8910
9144
|
input: CardParentRankInput;
|
|
8911
9145
|
};
|
|
8912
|
-
export declare type
|
|
8913
|
-
input?: Maybe<
|
|
9146
|
+
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9147
|
+
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
8914
9148
|
};
|
|
8915
9149
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
8916
9150
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
@@ -8990,29 +9224,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
8990
9224
|
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
8991
9225
|
input: UpdateDeveloperLogAccessInput;
|
|
8992
9226
|
};
|
|
8993
|
-
export declare type
|
|
8994
|
-
input:
|
|
9227
|
+
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9228
|
+
input: UpdatePolarisTermsConsentInput;
|
|
8995
9229
|
};
|
|
8996
|
-
export declare type
|
|
9230
|
+
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
8997
9231
|
id: Scalars['ID'];
|
|
8998
|
-
input: UpdatePolarisViewInput;
|
|
8999
9232
|
};
|
|
9000
|
-
export declare type
|
|
9001
|
-
|
|
9002
|
-
input: UpdatePolarisViewRankInput;
|
|
9233
|
+
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
9234
|
+
hash: Scalars['String'];
|
|
9003
9235
|
};
|
|
9004
|
-
export declare type
|
|
9005
|
-
|
|
9236
|
+
export declare type MutationResolvePolarisObjectArgs = {
|
|
9237
|
+
input: ResolvePolarisObjectInput;
|
|
9006
9238
|
};
|
|
9007
|
-
export declare type
|
|
9008
|
-
input:
|
|
9239
|
+
export declare type MutationInvokePolarisObjectArgs = {
|
|
9240
|
+
input: InvokePolarisObjectInput;
|
|
9009
9241
|
};
|
|
9010
|
-
export declare type
|
|
9011
|
-
input:
|
|
9242
|
+
export declare type MutationCreatePolarisCommentArgs = {
|
|
9243
|
+
input: CreatePolarisCommentInput;
|
|
9012
9244
|
};
|
|
9013
|
-
export declare type
|
|
9245
|
+
export declare type MutationUpdatePolarisCommentArgs = {
|
|
9246
|
+
input: UpdatePolarisCommentInput;
|
|
9247
|
+
};
|
|
9248
|
+
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
9249
|
+
input: CreatePolarisStandardFieldInput;
|
|
9250
|
+
};
|
|
9251
|
+
export declare type MutationCreatePolarisCalculatedFieldArgs = {
|
|
9252
|
+
input: CreatePolarisCalculatedField;
|
|
9253
|
+
};
|
|
9254
|
+
export declare type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
9255
|
+
input: UpdatePolarisCalculatedFieldInput;
|
|
9256
|
+
};
|
|
9257
|
+
export declare type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
9258
|
+
input: UpdatePolarisFieldDescriptionInput;
|
|
9259
|
+
};
|
|
9260
|
+
export declare type MutationDeletePolarisFieldArgs = {
|
|
9014
9261
|
id: Scalars['ID'];
|
|
9015
9262
|
};
|
|
9263
|
+
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9264
|
+
input: UpdatePolarisFieldOptionWeightInput;
|
|
9265
|
+
};
|
|
9266
|
+
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9267
|
+
input: DeletePolarisFieldOptionInput;
|
|
9268
|
+
};
|
|
9016
9269
|
export declare type MutationCreatePolarisDecorationArgs = {
|
|
9017
9270
|
input: CreatePolarisDecorationInput;
|
|
9018
9271
|
};
|
|
@@ -9024,6 +9277,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
9024
9277
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
9025
9278
|
id: Scalars['ID'];
|
|
9026
9279
|
};
|
|
9280
|
+
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9281
|
+
project: Scalars['ID'];
|
|
9282
|
+
idea: Scalars['ID'];
|
|
9283
|
+
update: UpdatePolarisIdeaInput;
|
|
9284
|
+
};
|
|
9027
9285
|
export declare type MutationCreatePolarisInsightArgs = {
|
|
9028
9286
|
input: CreatePolarisInsightInput;
|
|
9029
9287
|
};
|
|
@@ -9034,26 +9292,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
|
|
|
9034
9292
|
export declare type MutationDeletePolarisInsightArgs = {
|
|
9035
9293
|
id: Scalars['ID'];
|
|
9036
9294
|
};
|
|
9037
|
-
export declare type
|
|
9038
|
-
input:
|
|
9295
|
+
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9296
|
+
input: CopyPolarisInsightsInput;
|
|
9039
9297
|
};
|
|
9040
|
-
export declare type
|
|
9041
|
-
|
|
9298
|
+
export declare type MutationArchivePolarisInsightsArgs = {
|
|
9299
|
+
project: Scalars['ID'];
|
|
9300
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9042
9301
|
};
|
|
9043
|
-
export declare type
|
|
9044
|
-
|
|
9302
|
+
export declare type MutationUnarchivePolarisInsightsArgs = {
|
|
9303
|
+
project: Scalars['ID'];
|
|
9304
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9045
9305
|
};
|
|
9046
|
-
export declare type
|
|
9047
|
-
input:
|
|
9306
|
+
export declare type MutationCreatePolarisPlayArgs = {
|
|
9307
|
+
input: CreatePolarisPlayInput;
|
|
9048
9308
|
};
|
|
9049
|
-
export declare type
|
|
9050
|
-
input:
|
|
9309
|
+
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
9310
|
+
input: CreatePolarisPlayContribution;
|
|
9051
9311
|
};
|
|
9052
|
-
export declare type
|
|
9312
|
+
export declare type MutationUpdatePolarisPlayContributionArgs = {
|
|
9053
9313
|
id: Scalars['ID'];
|
|
9314
|
+
input: UpdatePolarisPlayContribution;
|
|
9054
9315
|
};
|
|
9055
|
-
export declare type
|
|
9056
|
-
|
|
9316
|
+
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
9317
|
+
id: Scalars['ID'];
|
|
9318
|
+
};
|
|
9319
|
+
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9320
|
+
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9057
9321
|
};
|
|
9058
9322
|
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
9059
9323
|
input: ConfigurePolarisRefreshInput;
|
|
@@ -9064,68 +9328,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
|
9064
9328
|
export declare type MutationSetPolarisProjectOnboardedArgs = {
|
|
9065
9329
|
input: SetPolarisProjectOnboardedInput;
|
|
9066
9330
|
};
|
|
9067
|
-
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9068
|
-
input: UpdatePolarisTermsConsentInput;
|
|
9069
|
-
};
|
|
9070
|
-
export declare type MutationInvokePolarisObjectArgs = {
|
|
9071
|
-
input: InvokePolarisObjectInput;
|
|
9072
|
-
};
|
|
9073
|
-
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9074
|
-
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9075
|
-
};
|
|
9076
9331
|
export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
9077
9332
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
9078
9333
|
};
|
|
9079
|
-
export declare type
|
|
9080
|
-
input:
|
|
9081
|
-
};
|
|
9082
|
-
export declare type MutationUpdatePolarisCommentArgs = {
|
|
9083
|
-
input: UpdatePolarisCommentInput;
|
|
9084
|
-
};
|
|
9085
|
-
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9086
|
-
input: CopyPolarisInsightsInput;
|
|
9087
|
-
};
|
|
9088
|
-
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9089
|
-
project: Scalars['ID'];
|
|
9090
|
-
idea: Scalars['ID'];
|
|
9091
|
-
update: UpdatePolarisIdeaInput;
|
|
9092
|
-
};
|
|
9093
|
-
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9094
|
-
input: UpdatePolarisFieldOptionWeightInput;
|
|
9095
|
-
};
|
|
9096
|
-
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9097
|
-
input: DeletePolarisFieldOptionInput;
|
|
9334
|
+
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
9335
|
+
input: RefreshPolarisSnippetsInput;
|
|
9098
9336
|
};
|
|
9099
|
-
export declare type
|
|
9100
|
-
|
|
9101
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9337
|
+
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9338
|
+
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9102
9339
|
};
|
|
9103
|
-
export declare type
|
|
9104
|
-
|
|
9105
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9340
|
+
export declare type MutationCreatePolarisViewArgs = {
|
|
9341
|
+
input: CreatePolarisViewInput;
|
|
9106
9342
|
};
|
|
9107
|
-
export declare type
|
|
9343
|
+
export declare type MutationUpdatePolarisViewArgs = {
|
|
9108
9344
|
id: Scalars['ID'];
|
|
9345
|
+
input: UpdatePolarisViewInput;
|
|
9109
9346
|
};
|
|
9110
|
-
export declare type
|
|
9111
|
-
|
|
9347
|
+
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
9348
|
+
id: Scalars['ID'];
|
|
9349
|
+
input: UpdatePolarisViewRankInput;
|
|
9112
9350
|
};
|
|
9113
|
-
export declare type
|
|
9114
|
-
|
|
9351
|
+
export declare type MutationDeletePolarisViewArgs = {
|
|
9352
|
+
id: Scalars['ID'];
|
|
9115
9353
|
};
|
|
9116
|
-
export declare type
|
|
9117
|
-
input:
|
|
9354
|
+
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9355
|
+
input: CreatePolarisViewSetInput;
|
|
9118
9356
|
};
|
|
9119
|
-
export declare type
|
|
9120
|
-
|
|
9121
|
-
input: UpdatePolarisPlayContribution;
|
|
9357
|
+
export declare type MutationUpdatePolarisViewSetArgs = {
|
|
9358
|
+
input: UpdatePolarisViewSetInput;
|
|
9122
9359
|
};
|
|
9123
|
-
export declare type
|
|
9360
|
+
export declare type MutationDeletePolarisViewSetArgs = {
|
|
9124
9361
|
id: Scalars['ID'];
|
|
9125
9362
|
};
|
|
9126
|
-
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9127
|
-
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9128
|
-
};
|
|
9129
9363
|
export declare type MutationCreateAppTunnelsArgs = {
|
|
9130
9364
|
input: CreateAppTunnelsInput;
|
|
9131
9365
|
};
|
|
@@ -9226,6 +9460,14 @@ export declare type NadelHydrationArgument = {
|
|
|
9226
9460
|
name: Scalars['String'];
|
|
9227
9461
|
value: Scalars['String'];
|
|
9228
9462
|
};
|
|
9463
|
+
export declare type NadelHydrationFromArgument = {
|
|
9464
|
+
name: Scalars['String'];
|
|
9465
|
+
valueFromField?: Maybe<Scalars['String']>;
|
|
9466
|
+
valueFromArg?: Maybe<Scalars['String']>;
|
|
9467
|
+
};
|
|
9468
|
+
export declare enum NadelHydrationTemplate {
|
|
9469
|
+
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
9470
|
+
}
|
|
9229
9471
|
export declare type NewCardParent = {
|
|
9230
9472
|
summary: Scalars['String'];
|
|
9231
9473
|
issueTypeId: Scalars['ID'];
|
|
@@ -9387,6 +9629,11 @@ export declare type Payload = {
|
|
|
9387
9629
|
success: Scalars['Boolean'];
|
|
9388
9630
|
errors?: Maybe<Array<MutationError>>;
|
|
9389
9631
|
};
|
|
9632
|
+
export declare type PermissionToConsentInContext = {
|
|
9633
|
+
__typename?: 'PermissionToConsentInContext';
|
|
9634
|
+
isAllowed: Scalars['Boolean'];
|
|
9635
|
+
userType?: Maybe<Scalars['String']>;
|
|
9636
|
+
};
|
|
9390
9637
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
9391
9638
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
9392
9639
|
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
@@ -9942,6 +10189,15 @@ export declare type PolarisIssueLinkType = {
|
|
|
9942
10189
|
merge: Scalars['Int'];
|
|
9943
10190
|
datapoint: Scalars['Int'];
|
|
9944
10191
|
};
|
|
10192
|
+
export declare type PolarisMatrixAxis = {
|
|
10193
|
+
__typename?: 'PolarisMatrixAxis';
|
|
10194
|
+
dimension?: Maybe<Scalars['String']>;
|
|
10195
|
+
field?: Maybe<PolarisIdeaField>;
|
|
10196
|
+
};
|
|
10197
|
+
export declare type PolarisMatrixConfig = {
|
|
10198
|
+
__typename?: 'PolarisMatrixConfig';
|
|
10199
|
+
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
10200
|
+
};
|
|
9945
10201
|
export declare type PolarisPlay = {
|
|
9946
10202
|
__typename?: 'PolarisPlay';
|
|
9947
10203
|
id: Scalars['ID'];
|
|
@@ -10124,6 +10380,17 @@ export declare type PolarisTermsConsent = {
|
|
|
10124
10380
|
requiresMarketingConsent: Scalars['Boolean'];
|
|
10125
10381
|
locale: Scalars['String'];
|
|
10126
10382
|
};
|
|
10383
|
+
export declare type PolarisTimelineConfig = {
|
|
10384
|
+
__typename?: 'PolarisTimelineConfig';
|
|
10385
|
+
startDateField?: Maybe<PolarisIdeaField>;
|
|
10386
|
+
dueDateField?: Maybe<PolarisIdeaField>;
|
|
10387
|
+
mode?: Maybe<PolarisTimelineMode>;
|
|
10388
|
+
};
|
|
10389
|
+
export declare enum PolarisTimelineMode {
|
|
10390
|
+
Months = "MONTHS",
|
|
10391
|
+
Quarters = "QUARTERS",
|
|
10392
|
+
Years = "YEARS"
|
|
10393
|
+
}
|
|
10127
10394
|
export declare type PolarisValueDecoration = {
|
|
10128
10395
|
__typename?: 'PolarisValueDecoration';
|
|
10129
10396
|
emoji?: Maybe<Scalars['String']>;
|
|
@@ -10155,6 +10422,7 @@ export declare type PolarisView = {
|
|
|
10155
10422
|
__typename?: 'PolarisView';
|
|
10156
10423
|
id: Scalars['ID'];
|
|
10157
10424
|
name: Scalars['String'];
|
|
10425
|
+
emoji?: Maybe<Scalars['String']>;
|
|
10158
10426
|
description?: Maybe<Scalars['JSON']>;
|
|
10159
10427
|
projectId: Scalars['Int'];
|
|
10160
10428
|
viewSetId: Scalars['ID'];
|
|
@@ -10165,12 +10433,12 @@ export declare type PolarisView = {
|
|
|
10165
10433
|
visualizationType: PolarisVisualizationType;
|
|
10166
10434
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
10167
10435
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
10168
|
-
x?: Maybe<PolarisIdeaField>;
|
|
10169
|
-
y?: Maybe<PolarisIdeaField>;
|
|
10170
10436
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
10171
10437
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
10172
10438
|
sort?: Maybe<Array<PolarisSortField>>;
|
|
10173
10439
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
10440
|
+
timelineConfig?: Maybe<PolarisTimelineConfig>;
|
|
10441
|
+
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
10174
10442
|
userJql?: Maybe<Scalars['String']>;
|
|
10175
10443
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
10176
10444
|
rank: Scalars['Int'];
|
|
@@ -10257,7 +10525,9 @@ export declare type PolarisViewTableColumnSizeInput = {
|
|
|
10257
10525
|
export declare enum PolarisVisualizationType {
|
|
10258
10526
|
Table = "TABLE",
|
|
10259
10527
|
Board = "BOARD",
|
|
10260
|
-
Twoxtwo = "TWOXTWO"
|
|
10528
|
+
Twoxtwo = "TWOXTWO",
|
|
10529
|
+
Matrix = "MATRIX",
|
|
10530
|
+
Timeline = "TIMELINE"
|
|
10261
10531
|
}
|
|
10262
10532
|
export declare type ProjectAvatars = {
|
|
10263
10533
|
__typename?: 'ProjectAvatars';
|
|
@@ -10271,12 +10541,15 @@ export declare type Query = {
|
|
|
10271
10541
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
10272
10542
|
echo?: Maybe<Scalars['String']>;
|
|
10273
10543
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
10544
|
+
node?: Maybe<Node>;
|
|
10545
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
10274
10546
|
activities?: Maybe<Activities>;
|
|
10275
10547
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
10276
10548
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10277
10549
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10278
10550
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
10279
10551
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
10552
|
+
shepherd?: Maybe<ShepherdQuery>;
|
|
10280
10553
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
10281
10554
|
apps?: Maybe<AppConnection>;
|
|
10282
10555
|
app?: Maybe<App>;
|
|
@@ -10311,7 +10584,6 @@ export declare type Query = {
|
|
|
10311
10584
|
jira?: Maybe<JiraQuery>;
|
|
10312
10585
|
appLogs?: Maybe<AppLogConnection>;
|
|
10313
10586
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
10314
|
-
node?: Maybe<Node>;
|
|
10315
10587
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
10316
10588
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
10317
10589
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
@@ -10356,6 +10628,9 @@ export declare type Query = {
|
|
|
10356
10628
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
10357
10629
|
extensionByKey?: Maybe<Extension>;
|
|
10358
10630
|
};
|
|
10631
|
+
export declare type QueryNodeArgs = {
|
|
10632
|
+
id: Scalars['ID'];
|
|
10633
|
+
};
|
|
10359
10634
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
10360
10635
|
id: Scalars['ID'];
|
|
10361
10636
|
cloudId: Scalars['ID'];
|
|
@@ -10496,9 +10771,6 @@ export declare type QueryAppLogLinesArgs = {
|
|
|
10496
10771
|
after?: Maybe<Scalars['String']>;
|
|
10497
10772
|
invocation: Scalars['ID'];
|
|
10498
10773
|
};
|
|
10499
|
-
export declare type QueryNodeArgs = {
|
|
10500
|
-
id: Scalars['ID'];
|
|
10501
|
-
};
|
|
10502
10774
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
10503
10775
|
contextIds: Array<Scalars['ID']>;
|
|
10504
10776
|
appId: Scalars['ID'];
|
|
@@ -11181,6 +11453,18 @@ export declare type SetExternalAuthCredentialsPayload = Payload & {
|
|
|
11181
11453
|
success: Scalars['Boolean'];
|
|
11182
11454
|
errors?: Maybe<Array<MutationError>>;
|
|
11183
11455
|
};
|
|
11456
|
+
export declare type SetIssueMediaVisibilityInput = {
|
|
11457
|
+
boardId: Scalars['ID'];
|
|
11458
|
+
isVisible?: Maybe<Scalars['Boolean']>;
|
|
11459
|
+
};
|
|
11460
|
+
export declare type SetIssueMediaVisibilityOutput = MutationResponse & {
|
|
11461
|
+
__typename?: 'SetIssueMediaVisibilityOutput';
|
|
11462
|
+
boardScope?: Maybe<BoardScope>;
|
|
11463
|
+
statusCode: Scalars['Int'];
|
|
11464
|
+
success: Scalars['Boolean'];
|
|
11465
|
+
message: Scalars['String'];
|
|
11466
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
11467
|
+
};
|
|
11184
11468
|
export declare type SetPolarisProjectOnboardedInput = {
|
|
11185
11469
|
projectId: Scalars['ID'];
|
|
11186
11470
|
value: Scalars['Boolean'];
|
|
@@ -11221,6 +11505,81 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
11221
11505
|
success: Scalars['Boolean'];
|
|
11222
11506
|
message: Scalars['String'];
|
|
11223
11507
|
};
|
|
11508
|
+
export declare type ShepherdAlert = {
|
|
11509
|
+
__typename?: 'ShepherdAlert';
|
|
11510
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
11511
|
+
createdOn: Scalars['DateTime'];
|
|
11512
|
+
id: Scalars['ID'];
|
|
11513
|
+
orgId: Scalars['ID'];
|
|
11514
|
+
status: ShepherdAlertStatus;
|
|
11515
|
+
title: Scalars['String'];
|
|
11516
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
11517
|
+
};
|
|
11518
|
+
export declare enum ShepherdAlertSeverity {
|
|
11519
|
+
Critical = "CRITICAL",
|
|
11520
|
+
High = "HIGH",
|
|
11521
|
+
Low = "LOW",
|
|
11522
|
+
Medium = "MEDIUM"
|
|
11523
|
+
}
|
|
11524
|
+
export declare enum ShepherdAlertStatus {
|
|
11525
|
+
InProgress = "IN_PROGRESS",
|
|
11526
|
+
Triaged = "TRIAGED",
|
|
11527
|
+
Untriaged = "UNTRIAGED"
|
|
11528
|
+
}
|
|
11529
|
+
export declare type ShepherdAppInfo = {
|
|
11530
|
+
__typename?: 'ShepherdAppInfo';
|
|
11531
|
+
apiVersion: Scalars['Int'];
|
|
11532
|
+
};
|
|
11533
|
+
export declare type ShepherdCreateAlertInput = {
|
|
11534
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
11535
|
+
orgId: Scalars['ID'];
|
|
11536
|
+
status?: Maybe<ShepherdAlertStatus>;
|
|
11537
|
+
title: Scalars['String'];
|
|
11538
|
+
};
|
|
11539
|
+
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
11540
|
+
__typename?: 'ShepherdCreateAlertPayload';
|
|
11541
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11542
|
+
node?: Maybe<ShepherdAlert>;
|
|
11543
|
+
success: Scalars['Boolean'];
|
|
11544
|
+
};
|
|
11545
|
+
export declare type ShepherdMutation = {
|
|
11546
|
+
__typename?: 'ShepherdMutation';
|
|
11547
|
+
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
11548
|
+
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
11549
|
+
};
|
|
11550
|
+
export declare type ShepherdMutationCreateAlertArgs = {
|
|
11551
|
+
input: ShepherdCreateAlertInput;
|
|
11552
|
+
};
|
|
11553
|
+
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
11554
|
+
id: Scalars['ID'];
|
|
11555
|
+
input: ShepherdUpdateAlertInput;
|
|
11556
|
+
};
|
|
11557
|
+
export declare type ShepherdQuery = {
|
|
11558
|
+
__typename?: 'ShepherdQuery';
|
|
11559
|
+
shepherdAlert?: Maybe<ShepherdAlert>;
|
|
11560
|
+
shepherdAlerts?: Maybe<Array<ShepherdAlert>>;
|
|
11561
|
+
shepherdAppInfo: ShepherdAppInfo;
|
|
11562
|
+
shepherdUser?: Maybe<ShepherdUser>;
|
|
11563
|
+
};
|
|
11564
|
+
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
11565
|
+
id: Scalars['ID'];
|
|
11566
|
+
};
|
|
11567
|
+
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
11568
|
+
orgId: Scalars['ID'];
|
|
11569
|
+
};
|
|
11570
|
+
export declare type ShepherdUpdateAlertInput = {
|
|
11571
|
+
status?: Maybe<ShepherdAlertStatus>;
|
|
11572
|
+
};
|
|
11573
|
+
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
11574
|
+
__typename?: 'ShepherdUpdateAlertPayload';
|
|
11575
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11576
|
+
node?: Maybe<ShepherdAlert>;
|
|
11577
|
+
success: Scalars['Boolean'];
|
|
11578
|
+
};
|
|
11579
|
+
export declare type ShepherdUser = {
|
|
11580
|
+
__typename?: 'ShepherdUser';
|
|
11581
|
+
aid: Scalars['ID'];
|
|
11582
|
+
};
|
|
11224
11583
|
export declare type SoftwareBoard = {
|
|
11225
11584
|
__typename?: 'SoftwareBoard';
|
|
11226
11585
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -11470,6 +11829,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
11470
11829
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
11471
11830
|
addComment?: Maybe<SupportRequestComment>;
|
|
11472
11831
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
11832
|
+
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
11473
11833
|
};
|
|
11474
11834
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
11475
11835
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -11477,6 +11837,12 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
11477
11837
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
11478
11838
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
11479
11839
|
};
|
|
11840
|
+
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
11841
|
+
emails: Array<Scalars['String']>;
|
|
11842
|
+
organizationId?: Maybe<Scalars['String']>;
|
|
11843
|
+
sen?: Maybe<Scalars['String']>;
|
|
11844
|
+
operation: SupportRequestNamedContactOperation;
|
|
11845
|
+
};
|
|
11480
11846
|
export declare type SupportRequestCatalogQueryApi = {
|
|
11481
11847
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
11482
11848
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -11554,6 +11920,10 @@ export declare type SupportRequestLastComment = {
|
|
|
11554
11920
|
offset: Scalars['Int'];
|
|
11555
11921
|
values: Array<SupportRequestComment>;
|
|
11556
11922
|
};
|
|
11923
|
+
export declare enum SupportRequestNamedContactOperation {
|
|
11924
|
+
Add = "ADD",
|
|
11925
|
+
Remove = "REMOVE"
|
|
11926
|
+
}
|
|
11557
11927
|
export declare type SupportRequestNamedContactRelation = {
|
|
11558
11928
|
__typename?: 'SupportRequestNamedContactRelation';
|
|
11559
11929
|
orgId?: Maybe<Scalars['String']>;
|
|
@@ -11754,7 +12124,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
11754
12124
|
name: Scalars['String'];
|
|
11755
12125
|
uuid: Scalars['String'];
|
|
11756
12126
|
owner?: Maybe<User>;
|
|
11757
|
-
url
|
|
12127
|
+
url?: Maybe<Scalars['String']>;
|
|
11758
12128
|
};
|
|
11759
12129
|
export declare type TownsquareGoalConnection = {
|
|
11760
12130
|
__typename?: 'TownsquareGoalConnection';
|
|
@@ -11775,7 +12145,7 @@ export declare type TownsquareProject = Node & {
|
|
|
11775
12145
|
name: Scalars['String'];
|
|
11776
12146
|
uuid: Scalars['String'];
|
|
11777
12147
|
owner?: Maybe<User>;
|
|
11778
|
-
url
|
|
12148
|
+
url?: Maybe<Scalars['String']>;
|
|
11779
12149
|
};
|
|
11780
12150
|
export declare type TownsquareProjectConnection = {
|
|
11781
12151
|
__typename?: 'TownsquareProjectConnection';
|
|
@@ -11934,6 +12304,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
11934
12304
|
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
11935
12305
|
id: Scalars['ID'];
|
|
11936
12306
|
weight?: Maybe<Scalars['Int']>;
|
|
12307
|
+
metricDefinitionId?: Maybe<Scalars['ID']>;
|
|
11937
12308
|
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
11938
12309
|
comparatorValue?: Maybe<Scalars['Float']>;
|
|
11939
12310
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
@@ -12179,6 +12550,13 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
12179
12550
|
errors?: Maybe<Array<MutationError>>;
|
|
12180
12551
|
node?: Maybe<PolarisInsight>;
|
|
12181
12552
|
};
|
|
12553
|
+
export declare type UpdatePolarisMatrixAxis = {
|
|
12554
|
+
dimension: Scalars['String'];
|
|
12555
|
+
field: Scalars['ID'];
|
|
12556
|
+
};
|
|
12557
|
+
export declare type UpdatePolarisMatrixConfig = {
|
|
12558
|
+
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
12559
|
+
};
|
|
12182
12560
|
export declare type UpdatePolarisPlayContribution = {
|
|
12183
12561
|
amount?: Maybe<Scalars['Int']>;
|
|
12184
12562
|
comment?: Maybe<Scalars['ID']>;
|
|
@@ -12210,9 +12588,15 @@ export declare type UpdatePolarisTermsConsentPayload = Payload & {
|
|
|
12210
12588
|
success: Scalars['Boolean'];
|
|
12211
12589
|
errors?: Maybe<Array<MutationError>>;
|
|
12212
12590
|
};
|
|
12591
|
+
export declare type UpdatePolarisTimelineConfig = {
|
|
12592
|
+
startDateField?: Maybe<Scalars['ID']>;
|
|
12593
|
+
dueDateField?: Maybe<Scalars['ID']>;
|
|
12594
|
+
mode?: Maybe<PolarisTimelineMode>;
|
|
12595
|
+
};
|
|
12213
12596
|
export declare type UpdatePolarisViewInput = {
|
|
12214
12597
|
view?: Maybe<Scalars['ID']>;
|
|
12215
12598
|
name?: Maybe<Scalars['String']>;
|
|
12599
|
+
emoji?: Maybe<Scalars['String']>;
|
|
12216
12600
|
description?: Maybe<Scalars['JSON']>;
|
|
12217
12601
|
jql?: Maybe<Scalars['String']>;
|
|
12218
12602
|
userJql?: Maybe<Scalars['String']>;
|
|
@@ -12222,13 +12606,13 @@ export declare type UpdatePolarisViewInput = {
|
|
|
12222
12606
|
groupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
12223
12607
|
verticalGroupBy?: Maybe<Scalars['ID']>;
|
|
12224
12608
|
verticalGroupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
12225
|
-
x?: Maybe<Scalars['ID']>;
|
|
12226
|
-
y?: Maybe<Scalars['ID']>;
|
|
12227
12609
|
sort?: Maybe<Array<PolarisSortFieldInput>>;
|
|
12228
12610
|
filter?: Maybe<Array<PolarisViewFilterInput>>;
|
|
12229
12611
|
hidden?: Maybe<Array<Scalars['ID']>>;
|
|
12230
12612
|
lastViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12231
12613
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12614
|
+
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
12615
|
+
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
12232
12616
|
};
|
|
12233
12617
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
12234
12618
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -12290,7 +12674,7 @@ export declare type UserGrant = {
|
|
|
12290
12674
|
id: Scalars['ID'];
|
|
12291
12675
|
accountId: Scalars['ID'];
|
|
12292
12676
|
oauthClientId: Scalars['ID'];
|
|
12293
|
-
appId
|
|
12677
|
+
appId?: Maybe<Scalars['ID']>;
|
|
12294
12678
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
12295
12679
|
scopes: Array<Maybe<AppHostServiceScope>>;
|
|
12296
12680
|
};
|