@forge/cli-shared 2.1.5-next.4 → 2.1.5-next.8
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
|
};
|
|
@@ -2412,6 +2399,139 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2412
2399
|
errors?: Maybe<Array<MutationError>>;
|
|
2413
2400
|
node?: Maybe<Scalars['Int']>;
|
|
2414
2401
|
};
|
|
2402
|
+
export declare type ConfluenceAbstractPage = {
|
|
2403
|
+
id?: Maybe<Scalars['ID']>;
|
|
2404
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2405
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2406
|
+
title?: Maybe<Scalars['String']>;
|
|
2407
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2408
|
+
};
|
|
2409
|
+
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2410
|
+
__typename?: 'ConfluenceBlogPost';
|
|
2411
|
+
blogPostId: Scalars['ID'];
|
|
2412
|
+
id?: Maybe<Scalars['ID']>;
|
|
2413
|
+
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2414
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2415
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2416
|
+
title?: Maybe<Scalars['String']>;
|
|
2417
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2418
|
+
};
|
|
2419
|
+
export declare type ConfluenceBlogPostLinks = {
|
|
2420
|
+
__typename?: 'ConfluenceBlogPostLinks';
|
|
2421
|
+
base?: Maybe<Scalars['String']>;
|
|
2422
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2423
|
+
};
|
|
2424
|
+
export declare type ConfluenceComment = {
|
|
2425
|
+
__typename?: 'ConfluenceComment';
|
|
2426
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
2427
|
+
container?: Maybe<ConfluenceAbstractPage>;
|
|
2428
|
+
id?: Maybe<Scalars['ID']>;
|
|
2429
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
2430
|
+
name?: Maybe<Scalars['String']>;
|
|
2431
|
+
};
|
|
2432
|
+
export declare type ConfluenceCommentLinks = {
|
|
2433
|
+
__typename?: 'ConfluenceCommentLinks';
|
|
2434
|
+
base?: Maybe<Scalars['String']>;
|
|
2435
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2436
|
+
};
|
|
2437
|
+
export declare enum ConfluenceContentStatus {
|
|
2438
|
+
Any = "ANY",
|
|
2439
|
+
Archived = "ARCHIVED",
|
|
2440
|
+
Current = "CURRENT",
|
|
2441
|
+
Deleted = "DELETED",
|
|
2442
|
+
Draft = "DRAFT",
|
|
2443
|
+
Historical = "HISTORICAL",
|
|
2444
|
+
Trashed = "TRASHED"
|
|
2445
|
+
}
|
|
2446
|
+
export declare enum ConfluenceContentType {
|
|
2447
|
+
Attachment = "ATTACHMENT",
|
|
2448
|
+
BlogPost = "BLOG_POST",
|
|
2449
|
+
Comment = "COMMENT",
|
|
2450
|
+
Page = "PAGE"
|
|
2451
|
+
}
|
|
2452
|
+
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2453
|
+
__typename?: 'ConfluencePage';
|
|
2454
|
+
id?: Maybe<Scalars['ID']>;
|
|
2455
|
+
links?: Maybe<ConfluencePageLinks>;
|
|
2456
|
+
pageId: Scalars['ID'];
|
|
2457
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2458
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2459
|
+
title?: Maybe<Scalars['String']>;
|
|
2460
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2461
|
+
};
|
|
2462
|
+
export declare type ConfluencePageLinks = {
|
|
2463
|
+
__typename?: 'ConfluencePageLinks';
|
|
2464
|
+
base?: Maybe<Scalars['String']>;
|
|
2465
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2466
|
+
};
|
|
2467
|
+
export declare type ConfluenceQueryApi = {
|
|
2468
|
+
__typename?: 'ConfluenceQueryApi';
|
|
2469
|
+
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2470
|
+
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2471
|
+
confluencePage?: Maybe<ConfluenceAbstractPage>;
|
|
2472
|
+
confluencePageWithFilters?: Maybe<ConfluenceAbstractPage>;
|
|
2473
|
+
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2474
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2475
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2476
|
+
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2477
|
+
};
|
|
2478
|
+
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2479
|
+
id: Scalars['ID'];
|
|
2480
|
+
};
|
|
2481
|
+
export declare type ConfluenceQueryApiConfluenceCommentsArgs = {
|
|
2482
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2483
|
+
};
|
|
2484
|
+
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2485
|
+
id: Scalars['ID'];
|
|
2486
|
+
};
|
|
2487
|
+
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
2488
|
+
id: Scalars['ID'];
|
|
2489
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2490
|
+
};
|
|
2491
|
+
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
2492
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2493
|
+
};
|
|
2494
|
+
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
2495
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2496
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2497
|
+
};
|
|
2498
|
+
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
2499
|
+
id: Scalars['ID'];
|
|
2500
|
+
};
|
|
2501
|
+
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
2502
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2503
|
+
};
|
|
2504
|
+
export declare type ConfluenceSpace = {
|
|
2505
|
+
__typename?: 'ConfluenceSpace';
|
|
2506
|
+
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2507
|
+
id?: Maybe<Scalars['ID']>;
|
|
2508
|
+
key?: Maybe<Scalars['String']>;
|
|
2509
|
+
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2510
|
+
name?: Maybe<Scalars['String']>;
|
|
2511
|
+
spaceId?: Maybe<Scalars['ID']>;
|
|
2512
|
+
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2513
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
2514
|
+
};
|
|
2515
|
+
export declare type ConfluenceSpaceIcon = {
|
|
2516
|
+
__typename?: 'ConfluenceSpaceIcon';
|
|
2517
|
+
height?: Maybe<Scalars['Int']>;
|
|
2518
|
+
isDefault?: Maybe<Scalars['Boolean']>;
|
|
2519
|
+
path?: Maybe<Scalars['String']>;
|
|
2520
|
+
width?: Maybe<Scalars['Int']>;
|
|
2521
|
+
};
|
|
2522
|
+
export declare type ConfluenceSpaceLinks = {
|
|
2523
|
+
__typename?: 'ConfluenceSpaceLinks';
|
|
2524
|
+
base?: Maybe<Scalars['String']>;
|
|
2525
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2526
|
+
};
|
|
2527
|
+
export declare enum ConfluenceSpaceStatus {
|
|
2528
|
+
Archived = "ARCHIVED",
|
|
2529
|
+
Current = "CURRENT"
|
|
2530
|
+
}
|
|
2531
|
+
export declare enum ConfluenceSpaceType {
|
|
2532
|
+
Global = "GLOBAL",
|
|
2533
|
+
Personal = "PERSONAL"
|
|
2534
|
+
}
|
|
2415
2535
|
export declare type ConnectAppScope = {
|
|
2416
2536
|
__typename?: 'ConnectAppScope';
|
|
2417
2537
|
scopeId: Scalars['ID'];
|
|
@@ -2555,7 +2675,8 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
2555
2675
|
};
|
|
2556
2676
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
2557
2677
|
weight: Scalars['Int'];
|
|
2558
|
-
|
|
2678
|
+
metricDefinitionId: Scalars['ID'];
|
|
2679
|
+
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
2559
2680
|
comparatorValue: Scalars['Float'];
|
|
2560
2681
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2561
2682
|
};
|
|
@@ -3793,6 +3914,23 @@ export declare type DevOpsToolConnection = {
|
|
|
3793
3914
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3794
3915
|
pageInfo: PageInfo;
|
|
3795
3916
|
};
|
|
3917
|
+
export declare type DevOpsToolContainer = {
|
|
3918
|
+
__typename?: 'DevOpsToolContainer';
|
|
3919
|
+
id: Scalars['ID'];
|
|
3920
|
+
displayName: Scalars['String'];
|
|
3921
|
+
url: Scalars['String'];
|
|
3922
|
+
};
|
|
3923
|
+
export declare type DevOpsToolContainerConnection = {
|
|
3924
|
+
__typename?: 'DevOpsToolContainerConnection';
|
|
3925
|
+
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
3926
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
3927
|
+
pageInfo: PageInfo;
|
|
3928
|
+
};
|
|
3929
|
+
export declare type DevOpsToolContainerEdge = {
|
|
3930
|
+
__typename?: 'DevOpsToolContainerEdge';
|
|
3931
|
+
cursor: Scalars['String'];
|
|
3932
|
+
node?: Maybe<DevOpsToolContainer>;
|
|
3933
|
+
};
|
|
3796
3934
|
export declare enum DevOpsToolContainerType {
|
|
3797
3935
|
Repository = "REPOSITORY",
|
|
3798
3936
|
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
@@ -3808,6 +3946,23 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3808
3946
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3809
3947
|
webUrl: Scalars['URL'];
|
|
3810
3948
|
};
|
|
3949
|
+
export declare type DevOpsToolNamespace = {
|
|
3950
|
+
__typename?: 'DevOpsToolNamespace';
|
|
3951
|
+
id: Scalars['ID'];
|
|
3952
|
+
displayName: Scalars['String'];
|
|
3953
|
+
canCreateContainer: Scalars['Boolean'];
|
|
3954
|
+
};
|
|
3955
|
+
export declare type DevOpsToolNamespaceConnection = {
|
|
3956
|
+
__typename?: 'DevOpsToolNamespaceConnection';
|
|
3957
|
+
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
3958
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
3959
|
+
pageInfo: PageInfo;
|
|
3960
|
+
};
|
|
3961
|
+
export declare type DevOpsToolNamespaceEdge = {
|
|
3962
|
+
__typename?: 'DevOpsToolNamespaceEdge';
|
|
3963
|
+
cursor: Scalars['String'];
|
|
3964
|
+
node?: Maybe<DevOpsToolNamespace>;
|
|
3965
|
+
};
|
|
3811
3966
|
export declare type DevOpsToolSupportedContainerType = {
|
|
3812
3967
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
3813
3968
|
category: DevOpsToolCategory;
|
|
@@ -3824,12 +3979,28 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3824
3979
|
export declare type DevOpsTools = {
|
|
3825
3980
|
__typename?: 'DevOpsTools';
|
|
3826
3981
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3982
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3983
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3827
3984
|
};
|
|
3828
3985
|
export declare type DevOpsToolsToolsArgs = {
|
|
3829
3986
|
cloudId: Scalars['ID'];
|
|
3830
3987
|
first?: Maybe<Scalars['Int']>;
|
|
3831
3988
|
after?: Maybe<Scalars['String']>;
|
|
3832
3989
|
};
|
|
3990
|
+
export declare type DevOpsToolsNamespacesArgs = {
|
|
3991
|
+
cloudId: Scalars['ID'];
|
|
3992
|
+
toolId: Scalars['String'];
|
|
3993
|
+
first?: Maybe<Scalars['Int']>;
|
|
3994
|
+
after?: Maybe<Scalars['String']>;
|
|
3995
|
+
};
|
|
3996
|
+
export declare type DevOpsToolsContainersArgs = {
|
|
3997
|
+
cloudId: Scalars['ID'];
|
|
3998
|
+
toolId: Scalars['String'];
|
|
3999
|
+
namespaceId: Scalars['String'];
|
|
4000
|
+
query?: Maybe<Scalars['String']>;
|
|
4001
|
+
first?: Maybe<Scalars['Int']>;
|
|
4002
|
+
after?: Maybe<Scalars['String']>;
|
|
4003
|
+
};
|
|
3833
4004
|
export declare type DevStatus = {
|
|
3834
4005
|
__typename?: 'DevStatus';
|
|
3835
4006
|
activity: DevStatusActivity;
|
|
@@ -3881,6 +4052,7 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
3881
4052
|
export declare type EcosystemQuery = {
|
|
3882
4053
|
__typename?: 'EcosystemQuery';
|
|
3883
4054
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4055
|
+
hasPermissionToConsentInContext?: Maybe<PermissionToConsentInContext>;
|
|
3884
4056
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
3885
4057
|
};
|
|
3886
4058
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -3889,6 +4061,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
3889
4061
|
before?: Maybe<Scalars['String']>;
|
|
3890
4062
|
after?: Maybe<Scalars['String']>;
|
|
3891
4063
|
};
|
|
4064
|
+
export declare type EcosystemQueryHasPermissionToConsentInContextArgs = {
|
|
4065
|
+
installationContext: Scalars['ID'];
|
|
4066
|
+
environmentKey: Scalars['String'];
|
|
4067
|
+
appId: Scalars['ID'];
|
|
4068
|
+
};
|
|
3892
4069
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
3893
4070
|
appId: Scalars['ID'];
|
|
3894
4071
|
};
|
|
@@ -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';
|
|
@@ -6685,6 +6862,17 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
6685
6862
|
before?: Maybe<Scalars['String']>;
|
|
6686
6863
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6687
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
|
+
};
|
|
6688
6876
|
export declare type JiraPermissionGrant = {
|
|
6689
6877
|
__typename?: 'JiraPermissionGrant';
|
|
6690
6878
|
grantType: JiraGrantTypeKey;
|
|
@@ -6704,12 +6892,13 @@ export declare type JiraPermissionGrantEdge = {
|
|
|
6704
6892
|
export declare type JiraPermissionGrantHolder = {
|
|
6705
6893
|
__typename?: 'JiraPermissionGrantHolder';
|
|
6706
6894
|
permission: JiraProjectPermission;
|
|
6895
|
+
configuration?: Maybe<JiraPermissionConfiguration>;
|
|
6707
6896
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
6708
6897
|
};
|
|
6709
6898
|
export declare type JiraPermissionGrantValue = {
|
|
6710
6899
|
__typename?: 'JiraPermissionGrantValue';
|
|
6711
6900
|
id: Scalars['ID'];
|
|
6712
|
-
value
|
|
6901
|
+
value?: Maybe<JiraGrantTypeValue>;
|
|
6713
6902
|
};
|
|
6714
6903
|
export declare type JiraPermissionGrantValueConnection = {
|
|
6715
6904
|
__typename?: 'JiraPermissionGrantValueConnection';
|
|
@@ -6733,6 +6922,15 @@ export declare type JiraPermissionLevel = {
|
|
|
6733
6922
|
group?: Maybe<JiraGroup>;
|
|
6734
6923
|
role?: Maybe<JiraRole>;
|
|
6735
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
|
+
}
|
|
6736
6934
|
export declare type JiraPermissionScheme = Node & {
|
|
6737
6935
|
__typename?: 'JiraPermissionScheme';
|
|
6738
6936
|
id: Scalars['ID'];
|
|
@@ -6748,6 +6946,10 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
|
|
|
6748
6946
|
success: Scalars['Boolean'];
|
|
6749
6947
|
errors?: Maybe<Array<MutationError>>;
|
|
6750
6948
|
};
|
|
6949
|
+
export declare type JiraPermissionSchemeConfiguration = {
|
|
6950
|
+
__typename?: 'JiraPermissionSchemeConfiguration';
|
|
6951
|
+
isEditable: Scalars['Boolean'];
|
|
6952
|
+
};
|
|
6751
6953
|
export declare type JiraPermissionSchemeGrantGroup = {
|
|
6752
6954
|
__typename?: 'JiraPermissionSchemeGrantGroup';
|
|
6753
6955
|
category: JiraProjectPermissionCategory;
|
|
@@ -6756,11 +6958,11 @@ export declare type JiraPermissionSchemeGrantGroup = {
|
|
|
6756
6958
|
export declare type JiraPermissionSchemeGrantInput = {
|
|
6757
6959
|
permissionKey: Scalars['String'];
|
|
6758
6960
|
grantType: JiraGrantTypeKeyEnum;
|
|
6759
|
-
grantValue
|
|
6961
|
+
grantValue?: Maybe<Scalars['ID']>;
|
|
6760
6962
|
};
|
|
6761
6963
|
export declare type JiraPermissionSchemeRemoveGrantInput = {
|
|
6762
6964
|
schemeId: Scalars['ID'];
|
|
6763
|
-
|
|
6965
|
+
grantIds: Array<Scalars['Long']>;
|
|
6764
6966
|
};
|
|
6765
6967
|
export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
6766
6968
|
__typename?: 'JiraPermissionSchemeRemoveGrantPayload';
|
|
@@ -6770,9 +6972,14 @@ export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
|
6770
6972
|
export declare type JiraPermissionSchemeView = {
|
|
6771
6973
|
__typename?: 'JiraPermissionSchemeView';
|
|
6772
6974
|
scheme: JiraPermissionScheme;
|
|
6975
|
+
configuration: JiraPermissionSchemeConfiguration;
|
|
6773
6976
|
grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
|
|
6774
6977
|
};
|
|
6775
6978
|
export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
|
|
6979
|
+
export declare enum JiraPermissionTagEnum {
|
|
6980
|
+
Deprecated = "DEPRECATED",
|
|
6981
|
+
New = "NEW"
|
|
6982
|
+
}
|
|
6776
6983
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
6777
6984
|
__typename?: 'JiraPlatformAttachment';
|
|
6778
6985
|
id: Scalars['ID'];
|
|
@@ -7067,6 +7274,7 @@ export declare type JiraQuery = {
|
|
|
7067
7274
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
7068
7275
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
7069
7276
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7277
|
+
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7070
7278
|
version?: Maybe<JiraVersionResult>;
|
|
7071
7279
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7072
7280
|
};
|
|
@@ -7142,6 +7350,11 @@ export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
|
|
|
7142
7350
|
before?: Maybe<Scalars['String']>;
|
|
7143
7351
|
schemeId: Scalars['ID'];
|
|
7144
7352
|
permissionKey: Scalars['String'];
|
|
7353
|
+
grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
|
|
7354
|
+
};
|
|
7355
|
+
export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
7356
|
+
schemeId: Scalars['ID'];
|
|
7357
|
+
permissionKey: Scalars['String'];
|
|
7145
7358
|
};
|
|
7146
7359
|
export declare type JiraQueryVersionArgs = {
|
|
7147
7360
|
id: Scalars['ID'];
|
|
@@ -7817,7 +8030,8 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
7817
8030
|
};
|
|
7818
8031
|
export declare type JiraServiceManagementTeamResponder = {
|
|
7819
8032
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
7820
|
-
|
|
8033
|
+
teamId?: Maybe<Scalars['String']>;
|
|
8034
|
+
teamName?: Maybe<Scalars['String']>;
|
|
7821
8035
|
};
|
|
7822
8036
|
export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
7823
8037
|
__typename?: 'JiraServiceManagementUserApproverPrincipal';
|
|
@@ -8724,6 +8938,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
8724
8938
|
export declare type Mutation = {
|
|
8725
8939
|
__typename?: 'Mutation';
|
|
8726
8940
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
8941
|
+
shepherd?: Maybe<ShepherdMutation>;
|
|
8727
8942
|
createApp?: Maybe<CreateAppResponse>;
|
|
8728
8943
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
8729
8944
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -8753,7 +8968,7 @@ export declare type Mutation = {
|
|
|
8753
8968
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
8754
8969
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
8755
8970
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
8756
|
-
|
|
8971
|
+
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
8757
8972
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8758
8973
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8759
8974
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -8782,48 +8997,48 @@ export declare type Mutation = {
|
|
|
8782
8997
|
jira?: Maybe<JiraMutation>;
|
|
8783
8998
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
8784
8999
|
appStorage?: Maybe<AppStorageMutation>;
|
|
8785
|
-
|
|
8786
|
-
|
|
8787
|
-
|
|
8788
|
-
|
|
8789
|
-
|
|
8790
|
-
|
|
8791
|
-
|
|
8792
|
-
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
8793
|
-
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
8794
|
-
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
8795
|
-
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
8796
|
-
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
8797
|
-
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>;
|
|
8798
9007
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
8799
9008
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
8800
9009
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
8801
9010
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
8802
|
-
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
8803
9011
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
8804
|
-
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
8805
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
8806
|
-
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
8807
|
-
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
8808
|
-
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
8809
|
-
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
8810
|
-
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
8811
|
-
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
8812
|
-
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
8813
|
-
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
8814
|
-
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
8815
|
-
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
8816
9012
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
8817
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>;
|
|
8818
9022
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
8819
9023
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
8820
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
8821
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
8822
9024
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
8823
9025
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
8824
9026
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
8825
9027
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
8826
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>;
|
|
8827
9042
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
8828
9043
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
8829
9044
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -8928,8 +9143,8 @@ export declare type MutationCreateCardParentArgs = {
|
|
|
8928
9143
|
export declare type MutationRankCardParentArgs = {
|
|
8929
9144
|
input: CardParentRankInput;
|
|
8930
9145
|
};
|
|
8931
|
-
export declare type
|
|
8932
|
-
input?: Maybe<
|
|
9146
|
+
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9147
|
+
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
8933
9148
|
};
|
|
8934
9149
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
8935
9150
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
@@ -9009,29 +9224,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
9009
9224
|
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
9010
9225
|
input: UpdateDeveloperLogAccessInput;
|
|
9011
9226
|
};
|
|
9012
|
-
export declare type
|
|
9013
|
-
input:
|
|
9227
|
+
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9228
|
+
input: UpdatePolarisTermsConsentInput;
|
|
9014
9229
|
};
|
|
9015
|
-
export declare type
|
|
9230
|
+
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
9016
9231
|
id: Scalars['ID'];
|
|
9017
|
-
input: UpdatePolarisViewInput;
|
|
9018
9232
|
};
|
|
9019
|
-
export declare type
|
|
9020
|
-
|
|
9021
|
-
input: UpdatePolarisViewRankInput;
|
|
9233
|
+
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
9234
|
+
hash: Scalars['String'];
|
|
9022
9235
|
};
|
|
9023
|
-
export declare type
|
|
9024
|
-
|
|
9236
|
+
export declare type MutationResolvePolarisObjectArgs = {
|
|
9237
|
+
input: ResolvePolarisObjectInput;
|
|
9025
9238
|
};
|
|
9026
|
-
export declare type
|
|
9027
|
-
input:
|
|
9239
|
+
export declare type MutationInvokePolarisObjectArgs = {
|
|
9240
|
+
input: InvokePolarisObjectInput;
|
|
9028
9241
|
};
|
|
9029
|
-
export declare type
|
|
9030
|
-
input:
|
|
9242
|
+
export declare type MutationCreatePolarisCommentArgs = {
|
|
9243
|
+
input: CreatePolarisCommentInput;
|
|
9031
9244
|
};
|
|
9032
|
-
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 = {
|
|
9033
9261
|
id: Scalars['ID'];
|
|
9034
9262
|
};
|
|
9263
|
+
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9264
|
+
input: UpdatePolarisFieldOptionWeightInput;
|
|
9265
|
+
};
|
|
9266
|
+
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9267
|
+
input: DeletePolarisFieldOptionInput;
|
|
9268
|
+
};
|
|
9035
9269
|
export declare type MutationCreatePolarisDecorationArgs = {
|
|
9036
9270
|
input: CreatePolarisDecorationInput;
|
|
9037
9271
|
};
|
|
@@ -9043,6 +9277,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
9043
9277
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
9044
9278
|
id: Scalars['ID'];
|
|
9045
9279
|
};
|
|
9280
|
+
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9281
|
+
project: Scalars['ID'];
|
|
9282
|
+
idea: Scalars['ID'];
|
|
9283
|
+
update: UpdatePolarisIdeaInput;
|
|
9284
|
+
};
|
|
9046
9285
|
export declare type MutationCreatePolarisInsightArgs = {
|
|
9047
9286
|
input: CreatePolarisInsightInput;
|
|
9048
9287
|
};
|
|
@@ -9053,26 +9292,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
|
|
|
9053
9292
|
export declare type MutationDeletePolarisInsightArgs = {
|
|
9054
9293
|
id: Scalars['ID'];
|
|
9055
9294
|
};
|
|
9056
|
-
export declare type
|
|
9057
|
-
input:
|
|
9295
|
+
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9296
|
+
input: CopyPolarisInsightsInput;
|
|
9058
9297
|
};
|
|
9059
|
-
export declare type
|
|
9060
|
-
|
|
9298
|
+
export declare type MutationArchivePolarisInsightsArgs = {
|
|
9299
|
+
project: Scalars['ID'];
|
|
9300
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9061
9301
|
};
|
|
9062
|
-
export declare type
|
|
9063
|
-
|
|
9302
|
+
export declare type MutationUnarchivePolarisInsightsArgs = {
|
|
9303
|
+
project: Scalars['ID'];
|
|
9304
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9064
9305
|
};
|
|
9065
|
-
export declare type
|
|
9066
|
-
input:
|
|
9306
|
+
export declare type MutationCreatePolarisPlayArgs = {
|
|
9307
|
+
input: CreatePolarisPlayInput;
|
|
9067
9308
|
};
|
|
9068
|
-
export declare type
|
|
9069
|
-
input:
|
|
9309
|
+
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
9310
|
+
input: CreatePolarisPlayContribution;
|
|
9070
9311
|
};
|
|
9071
|
-
export declare type
|
|
9312
|
+
export declare type MutationUpdatePolarisPlayContributionArgs = {
|
|
9072
9313
|
id: Scalars['ID'];
|
|
9314
|
+
input: UpdatePolarisPlayContribution;
|
|
9073
9315
|
};
|
|
9074
|
-
export declare type
|
|
9075
|
-
|
|
9316
|
+
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
9317
|
+
id: Scalars['ID'];
|
|
9318
|
+
};
|
|
9319
|
+
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9320
|
+
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9076
9321
|
};
|
|
9077
9322
|
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
9078
9323
|
input: ConfigurePolarisRefreshInput;
|
|
@@ -9083,68 +9328,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
|
9083
9328
|
export declare type MutationSetPolarisProjectOnboardedArgs = {
|
|
9084
9329
|
input: SetPolarisProjectOnboardedInput;
|
|
9085
9330
|
};
|
|
9086
|
-
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9087
|
-
input: UpdatePolarisTermsConsentInput;
|
|
9088
|
-
};
|
|
9089
|
-
export declare type MutationInvokePolarisObjectArgs = {
|
|
9090
|
-
input: InvokePolarisObjectInput;
|
|
9091
|
-
};
|
|
9092
|
-
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9093
|
-
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9094
|
-
};
|
|
9095
9331
|
export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
9096
9332
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
9097
9333
|
};
|
|
9098
|
-
export declare type
|
|
9099
|
-
input:
|
|
9100
|
-
};
|
|
9101
|
-
export declare type MutationUpdatePolarisCommentArgs = {
|
|
9102
|
-
input: UpdatePolarisCommentInput;
|
|
9103
|
-
};
|
|
9104
|
-
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9105
|
-
input: CopyPolarisInsightsInput;
|
|
9106
|
-
};
|
|
9107
|
-
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9108
|
-
project: Scalars['ID'];
|
|
9109
|
-
idea: Scalars['ID'];
|
|
9110
|
-
update: UpdatePolarisIdeaInput;
|
|
9111
|
-
};
|
|
9112
|
-
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9113
|
-
input: UpdatePolarisFieldOptionWeightInput;
|
|
9114
|
-
};
|
|
9115
|
-
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9116
|
-
input: DeletePolarisFieldOptionInput;
|
|
9334
|
+
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
9335
|
+
input: RefreshPolarisSnippetsInput;
|
|
9117
9336
|
};
|
|
9118
|
-
export declare type
|
|
9119
|
-
|
|
9120
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9337
|
+
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9338
|
+
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9121
9339
|
};
|
|
9122
|
-
export declare type
|
|
9123
|
-
|
|
9124
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9340
|
+
export declare type MutationCreatePolarisViewArgs = {
|
|
9341
|
+
input: CreatePolarisViewInput;
|
|
9125
9342
|
};
|
|
9126
|
-
export declare type
|
|
9343
|
+
export declare type MutationUpdatePolarisViewArgs = {
|
|
9127
9344
|
id: Scalars['ID'];
|
|
9345
|
+
input: UpdatePolarisViewInput;
|
|
9128
9346
|
};
|
|
9129
|
-
export declare type
|
|
9130
|
-
|
|
9347
|
+
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
9348
|
+
id: Scalars['ID'];
|
|
9349
|
+
input: UpdatePolarisViewRankInput;
|
|
9131
9350
|
};
|
|
9132
|
-
export declare type
|
|
9133
|
-
|
|
9351
|
+
export declare type MutationDeletePolarisViewArgs = {
|
|
9352
|
+
id: Scalars['ID'];
|
|
9134
9353
|
};
|
|
9135
|
-
export declare type
|
|
9136
|
-
input:
|
|
9354
|
+
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9355
|
+
input: CreatePolarisViewSetInput;
|
|
9137
9356
|
};
|
|
9138
|
-
export declare type
|
|
9139
|
-
|
|
9140
|
-
input: UpdatePolarisPlayContribution;
|
|
9357
|
+
export declare type MutationUpdatePolarisViewSetArgs = {
|
|
9358
|
+
input: UpdatePolarisViewSetInput;
|
|
9141
9359
|
};
|
|
9142
|
-
export declare type
|
|
9360
|
+
export declare type MutationDeletePolarisViewSetArgs = {
|
|
9143
9361
|
id: Scalars['ID'];
|
|
9144
9362
|
};
|
|
9145
|
-
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9146
|
-
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9147
|
-
};
|
|
9148
9363
|
export declare type MutationCreateAppTunnelsArgs = {
|
|
9149
9364
|
input: CreateAppTunnelsInput;
|
|
9150
9365
|
};
|
|
@@ -9414,6 +9629,11 @@ export declare type Payload = {
|
|
|
9414
9629
|
success: Scalars['Boolean'];
|
|
9415
9630
|
errors?: Maybe<Array<MutationError>>;
|
|
9416
9631
|
};
|
|
9632
|
+
export declare type PermissionToConsentInContext = {
|
|
9633
|
+
__typename?: 'PermissionToConsentInContext';
|
|
9634
|
+
isAllowed: Scalars['Boolean'];
|
|
9635
|
+
userType?: Maybe<Scalars['String']>;
|
|
9636
|
+
};
|
|
9417
9637
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
9418
9638
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
9419
9639
|
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
@@ -9969,6 +10189,15 @@ export declare type PolarisIssueLinkType = {
|
|
|
9969
10189
|
merge: Scalars['Int'];
|
|
9970
10190
|
datapoint: Scalars['Int'];
|
|
9971
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
|
+
};
|
|
9972
10201
|
export declare type PolarisPlay = {
|
|
9973
10202
|
__typename?: 'PolarisPlay';
|
|
9974
10203
|
id: Scalars['ID'];
|
|
@@ -10151,6 +10380,17 @@ export declare type PolarisTermsConsent = {
|
|
|
10151
10380
|
requiresMarketingConsent: Scalars['Boolean'];
|
|
10152
10381
|
locale: Scalars['String'];
|
|
10153
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
|
+
}
|
|
10154
10394
|
export declare type PolarisValueDecoration = {
|
|
10155
10395
|
__typename?: 'PolarisValueDecoration';
|
|
10156
10396
|
emoji?: Maybe<Scalars['String']>;
|
|
@@ -10182,6 +10422,7 @@ export declare type PolarisView = {
|
|
|
10182
10422
|
__typename?: 'PolarisView';
|
|
10183
10423
|
id: Scalars['ID'];
|
|
10184
10424
|
name: Scalars['String'];
|
|
10425
|
+
emoji?: Maybe<Scalars['String']>;
|
|
10185
10426
|
description?: Maybe<Scalars['JSON']>;
|
|
10186
10427
|
projectId: Scalars['Int'];
|
|
10187
10428
|
viewSetId: Scalars['ID'];
|
|
@@ -10192,12 +10433,12 @@ export declare type PolarisView = {
|
|
|
10192
10433
|
visualizationType: PolarisVisualizationType;
|
|
10193
10434
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
10194
10435
|
verticalGroupBy?: Maybe<PolarisIdeaField>;
|
|
10195
|
-
x?: Maybe<PolarisIdeaField>;
|
|
10196
|
-
y?: Maybe<PolarisIdeaField>;
|
|
10197
10436
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
10198
10437
|
verticalGroupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
10199
10438
|
sort?: Maybe<Array<PolarisSortField>>;
|
|
10200
10439
|
hidden?: Maybe<Array<PolarisIdeaField>>;
|
|
10440
|
+
timelineConfig?: Maybe<PolarisTimelineConfig>;
|
|
10441
|
+
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
10201
10442
|
userJql?: Maybe<Scalars['String']>;
|
|
10202
10443
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
10203
10444
|
rank: Scalars['Int'];
|
|
@@ -10284,7 +10525,9 @@ export declare type PolarisViewTableColumnSizeInput = {
|
|
|
10284
10525
|
export declare enum PolarisVisualizationType {
|
|
10285
10526
|
Table = "TABLE",
|
|
10286
10527
|
Board = "BOARD",
|
|
10287
|
-
Twoxtwo = "TWOXTWO"
|
|
10528
|
+
Twoxtwo = "TWOXTWO",
|
|
10529
|
+
Matrix = "MATRIX",
|
|
10530
|
+
Timeline = "TIMELINE"
|
|
10288
10531
|
}
|
|
10289
10532
|
export declare type ProjectAvatars = {
|
|
10290
10533
|
__typename?: 'ProjectAvatars';
|
|
@@ -10298,12 +10541,15 @@ export declare type Query = {
|
|
|
10298
10541
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
10299
10542
|
echo?: Maybe<Scalars['String']>;
|
|
10300
10543
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
10544
|
+
node?: Maybe<Node>;
|
|
10545
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
10301
10546
|
activities?: Maybe<Activities>;
|
|
10302
10547
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
10303
10548
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10304
10549
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10305
10550
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
10306
10551
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
10552
|
+
shepherd?: Maybe<ShepherdQuery>;
|
|
10307
10553
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
10308
10554
|
apps?: Maybe<AppConnection>;
|
|
10309
10555
|
app?: Maybe<App>;
|
|
@@ -10338,7 +10584,6 @@ export declare type Query = {
|
|
|
10338
10584
|
jira?: Maybe<JiraQuery>;
|
|
10339
10585
|
appLogs?: Maybe<AppLogConnection>;
|
|
10340
10586
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
10341
|
-
node?: Maybe<Node>;
|
|
10342
10587
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
10343
10588
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
10344
10589
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
@@ -10383,6 +10628,9 @@ export declare type Query = {
|
|
|
10383
10628
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
10384
10629
|
extensionByKey?: Maybe<Extension>;
|
|
10385
10630
|
};
|
|
10631
|
+
export declare type QueryNodeArgs = {
|
|
10632
|
+
id: Scalars['ID'];
|
|
10633
|
+
};
|
|
10386
10634
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
10387
10635
|
id: Scalars['ID'];
|
|
10388
10636
|
cloudId: Scalars['ID'];
|
|
@@ -10523,9 +10771,6 @@ export declare type QueryAppLogLinesArgs = {
|
|
|
10523
10771
|
after?: Maybe<Scalars['String']>;
|
|
10524
10772
|
invocation: Scalars['ID'];
|
|
10525
10773
|
};
|
|
10526
|
-
export declare type QueryNodeArgs = {
|
|
10527
|
-
id: Scalars['ID'];
|
|
10528
|
-
};
|
|
10529
10774
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
10530
10775
|
contextIds: Array<Scalars['ID']>;
|
|
10531
10776
|
appId: Scalars['ID'];
|
|
@@ -11208,6 +11453,18 @@ export declare type SetExternalAuthCredentialsPayload = Payload & {
|
|
|
11208
11453
|
success: Scalars['Boolean'];
|
|
11209
11454
|
errors?: Maybe<Array<MutationError>>;
|
|
11210
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
|
+
};
|
|
11211
11468
|
export declare type SetPolarisProjectOnboardedInput = {
|
|
11212
11469
|
projectId: Scalars['ID'];
|
|
11213
11470
|
value: Scalars['Boolean'];
|
|
@@ -11248,6 +11505,81 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
11248
11505
|
success: Scalars['Boolean'];
|
|
11249
11506
|
message: Scalars['String'];
|
|
11250
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
|
+
};
|
|
11251
11583
|
export declare type SoftwareBoard = {
|
|
11252
11584
|
__typename?: 'SoftwareBoard';
|
|
11253
11585
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -11497,6 +11829,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
11497
11829
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
11498
11830
|
addComment?: Maybe<SupportRequestComment>;
|
|
11499
11831
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
11832
|
+
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
11500
11833
|
};
|
|
11501
11834
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
11502
11835
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -11504,6 +11837,12 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
11504
11837
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
11505
11838
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
11506
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
|
+
};
|
|
11507
11846
|
export declare type SupportRequestCatalogQueryApi = {
|
|
11508
11847
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
11509
11848
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -11581,6 +11920,10 @@ export declare type SupportRequestLastComment = {
|
|
|
11581
11920
|
offset: Scalars['Int'];
|
|
11582
11921
|
values: Array<SupportRequestComment>;
|
|
11583
11922
|
};
|
|
11923
|
+
export declare enum SupportRequestNamedContactOperation {
|
|
11924
|
+
Add = "ADD",
|
|
11925
|
+
Remove = "REMOVE"
|
|
11926
|
+
}
|
|
11584
11927
|
export declare type SupportRequestNamedContactRelation = {
|
|
11585
11928
|
__typename?: 'SupportRequestNamedContactRelation';
|
|
11586
11929
|
orgId?: Maybe<Scalars['String']>;
|
|
@@ -11961,6 +12304,7 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
11961
12304
|
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
11962
12305
|
id: Scalars['ID'];
|
|
11963
12306
|
weight?: Maybe<Scalars['Int']>;
|
|
12307
|
+
metricDefinitionId?: Maybe<Scalars['ID']>;
|
|
11964
12308
|
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
11965
12309
|
comparatorValue?: Maybe<Scalars['Float']>;
|
|
11966
12310
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
@@ -12206,6 +12550,13 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
12206
12550
|
errors?: Maybe<Array<MutationError>>;
|
|
12207
12551
|
node?: Maybe<PolarisInsight>;
|
|
12208
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
|
+
};
|
|
12209
12560
|
export declare type UpdatePolarisPlayContribution = {
|
|
12210
12561
|
amount?: Maybe<Scalars['Int']>;
|
|
12211
12562
|
comment?: Maybe<Scalars['ID']>;
|
|
@@ -12237,9 +12588,15 @@ export declare type UpdatePolarisTermsConsentPayload = Payload & {
|
|
|
12237
12588
|
success: Scalars['Boolean'];
|
|
12238
12589
|
errors?: Maybe<Array<MutationError>>;
|
|
12239
12590
|
};
|
|
12591
|
+
export declare type UpdatePolarisTimelineConfig = {
|
|
12592
|
+
startDateField?: Maybe<Scalars['ID']>;
|
|
12593
|
+
dueDateField?: Maybe<Scalars['ID']>;
|
|
12594
|
+
mode?: Maybe<PolarisTimelineMode>;
|
|
12595
|
+
};
|
|
12240
12596
|
export declare type UpdatePolarisViewInput = {
|
|
12241
12597
|
view?: Maybe<Scalars['ID']>;
|
|
12242
12598
|
name?: Maybe<Scalars['String']>;
|
|
12599
|
+
emoji?: Maybe<Scalars['String']>;
|
|
12243
12600
|
description?: Maybe<Scalars['JSON']>;
|
|
12244
12601
|
jql?: Maybe<Scalars['String']>;
|
|
12245
12602
|
userJql?: Maybe<Scalars['String']>;
|
|
@@ -12249,13 +12606,13 @@ export declare type UpdatePolarisViewInput = {
|
|
|
12249
12606
|
groupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
12250
12607
|
verticalGroupBy?: Maybe<Scalars['ID']>;
|
|
12251
12608
|
verticalGroupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
12252
|
-
x?: Maybe<Scalars['ID']>;
|
|
12253
|
-
y?: Maybe<Scalars['ID']>;
|
|
12254
12609
|
sort?: Maybe<Array<PolarisSortFieldInput>>;
|
|
12255
12610
|
filter?: Maybe<Array<PolarisViewFilterInput>>;
|
|
12256
12611
|
hidden?: Maybe<Array<Scalars['ID']>>;
|
|
12257
12612
|
lastViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12258
12613
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12614
|
+
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
12615
|
+
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
12259
12616
|
};
|
|
12260
12617
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
12261
12618
|
__typename?: 'UpdatePolarisViewPayload';
|