@forge/cli-shared 2.1.5-next.3 → 2.1.5-next.7
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",
|
|
@@ -2412,6 +2411,139 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2412
2411
|
errors?: Maybe<Array<MutationError>>;
|
|
2413
2412
|
node?: Maybe<Scalars['Int']>;
|
|
2414
2413
|
};
|
|
2414
|
+
export declare type ConfluenceAbstractPage = {
|
|
2415
|
+
id?: Maybe<Scalars['ID']>;
|
|
2416
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2417
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2418
|
+
title?: Maybe<Scalars['String']>;
|
|
2419
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2420
|
+
};
|
|
2421
|
+
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2422
|
+
__typename?: 'ConfluenceBlogPost';
|
|
2423
|
+
blogPostId: Scalars['ID'];
|
|
2424
|
+
id?: Maybe<Scalars['ID']>;
|
|
2425
|
+
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2426
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2427
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2428
|
+
title?: Maybe<Scalars['String']>;
|
|
2429
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2430
|
+
};
|
|
2431
|
+
export declare type ConfluenceBlogPostLinks = {
|
|
2432
|
+
__typename?: 'ConfluenceBlogPostLinks';
|
|
2433
|
+
base?: Maybe<Scalars['String']>;
|
|
2434
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2435
|
+
};
|
|
2436
|
+
export declare type ConfluenceComment = {
|
|
2437
|
+
__typename?: 'ConfluenceComment';
|
|
2438
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
2439
|
+
container?: Maybe<ConfluenceAbstractPage>;
|
|
2440
|
+
id?: Maybe<Scalars['ID']>;
|
|
2441
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
2442
|
+
name?: Maybe<Scalars['String']>;
|
|
2443
|
+
};
|
|
2444
|
+
export declare type ConfluenceCommentLinks = {
|
|
2445
|
+
__typename?: 'ConfluenceCommentLinks';
|
|
2446
|
+
base?: Maybe<Scalars['String']>;
|
|
2447
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2448
|
+
};
|
|
2449
|
+
export declare enum ConfluenceContentStatus {
|
|
2450
|
+
Any = "ANY",
|
|
2451
|
+
Archived = "ARCHIVED",
|
|
2452
|
+
Current = "CURRENT",
|
|
2453
|
+
Deleted = "DELETED",
|
|
2454
|
+
Draft = "DRAFT",
|
|
2455
|
+
Historical = "HISTORICAL",
|
|
2456
|
+
Trashed = "TRASHED"
|
|
2457
|
+
}
|
|
2458
|
+
export declare enum ConfluenceContentType {
|
|
2459
|
+
Attachment = "ATTACHMENT",
|
|
2460
|
+
BlogPost = "BLOG_POST",
|
|
2461
|
+
Comment = "COMMENT",
|
|
2462
|
+
Page = "PAGE"
|
|
2463
|
+
}
|
|
2464
|
+
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2465
|
+
__typename?: 'ConfluencePage';
|
|
2466
|
+
id?: Maybe<Scalars['ID']>;
|
|
2467
|
+
links?: Maybe<ConfluencePageLinks>;
|
|
2468
|
+
pageId: Scalars['ID'];
|
|
2469
|
+
space?: Maybe<ConfluenceSpace>;
|
|
2470
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
2471
|
+
title?: Maybe<Scalars['String']>;
|
|
2472
|
+
type?: Maybe<ConfluenceContentType>;
|
|
2473
|
+
};
|
|
2474
|
+
export declare type ConfluencePageLinks = {
|
|
2475
|
+
__typename?: 'ConfluencePageLinks';
|
|
2476
|
+
base?: Maybe<Scalars['String']>;
|
|
2477
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2478
|
+
};
|
|
2479
|
+
export declare type ConfluenceQueryApi = {
|
|
2480
|
+
__typename?: 'ConfluenceQueryApi';
|
|
2481
|
+
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2482
|
+
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2483
|
+
confluencePage?: Maybe<ConfluenceAbstractPage>;
|
|
2484
|
+
confluencePageWithFilters?: Maybe<ConfluenceAbstractPage>;
|
|
2485
|
+
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2486
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2487
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2488
|
+
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2489
|
+
};
|
|
2490
|
+
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2491
|
+
id: Scalars['ID'];
|
|
2492
|
+
};
|
|
2493
|
+
export declare type ConfluenceQueryApiConfluenceCommentsArgs = {
|
|
2494
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2495
|
+
};
|
|
2496
|
+
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2497
|
+
id: Scalars['ID'];
|
|
2498
|
+
};
|
|
2499
|
+
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
2500
|
+
id: Scalars['ID'];
|
|
2501
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2502
|
+
};
|
|
2503
|
+
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
2504
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2505
|
+
};
|
|
2506
|
+
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
2507
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2508
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2509
|
+
};
|
|
2510
|
+
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
2511
|
+
id: Scalars['ID'];
|
|
2512
|
+
};
|
|
2513
|
+
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
2514
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2515
|
+
};
|
|
2516
|
+
export declare type ConfluenceSpace = {
|
|
2517
|
+
__typename?: 'ConfluenceSpace';
|
|
2518
|
+
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2519
|
+
id?: Maybe<Scalars['ID']>;
|
|
2520
|
+
key?: Maybe<Scalars['String']>;
|
|
2521
|
+
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2522
|
+
name?: Maybe<Scalars['String']>;
|
|
2523
|
+
spaceId?: Maybe<Scalars['ID']>;
|
|
2524
|
+
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2525
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
2526
|
+
};
|
|
2527
|
+
export declare type ConfluenceSpaceIcon = {
|
|
2528
|
+
__typename?: 'ConfluenceSpaceIcon';
|
|
2529
|
+
height?: Maybe<Scalars['Int']>;
|
|
2530
|
+
isDefault?: Maybe<Scalars['Boolean']>;
|
|
2531
|
+
path?: Maybe<Scalars['String']>;
|
|
2532
|
+
width?: Maybe<Scalars['Int']>;
|
|
2533
|
+
};
|
|
2534
|
+
export declare type ConfluenceSpaceLinks = {
|
|
2535
|
+
__typename?: 'ConfluenceSpaceLinks';
|
|
2536
|
+
base?: Maybe<Scalars['String']>;
|
|
2537
|
+
webUi?: Maybe<Scalars['String']>;
|
|
2538
|
+
};
|
|
2539
|
+
export declare enum ConfluenceSpaceStatus {
|
|
2540
|
+
Archived = "ARCHIVED",
|
|
2541
|
+
Current = "CURRENT"
|
|
2542
|
+
}
|
|
2543
|
+
export declare enum ConfluenceSpaceType {
|
|
2544
|
+
Global = "GLOBAL",
|
|
2545
|
+
Personal = "PERSONAL"
|
|
2546
|
+
}
|
|
2415
2547
|
export declare type ConnectAppScope = {
|
|
2416
2548
|
__typename?: 'ConnectAppScope';
|
|
2417
2549
|
scopeId: Scalars['ID'];
|
|
@@ -3793,6 +3925,23 @@ export declare type DevOpsToolConnection = {
|
|
|
3793
3925
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3794
3926
|
pageInfo: PageInfo;
|
|
3795
3927
|
};
|
|
3928
|
+
export declare type DevOpsToolContainer = {
|
|
3929
|
+
__typename?: 'DevOpsToolContainer';
|
|
3930
|
+
id: Scalars['ID'];
|
|
3931
|
+
displayName: Scalars['String'];
|
|
3932
|
+
url: Scalars['String'];
|
|
3933
|
+
};
|
|
3934
|
+
export declare type DevOpsToolContainerConnection = {
|
|
3935
|
+
__typename?: 'DevOpsToolContainerConnection';
|
|
3936
|
+
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
3937
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
3938
|
+
pageInfo: PageInfo;
|
|
3939
|
+
};
|
|
3940
|
+
export declare type DevOpsToolContainerEdge = {
|
|
3941
|
+
__typename?: 'DevOpsToolContainerEdge';
|
|
3942
|
+
cursor: Scalars['String'];
|
|
3943
|
+
node?: Maybe<DevOpsToolContainer>;
|
|
3944
|
+
};
|
|
3796
3945
|
export declare enum DevOpsToolContainerType {
|
|
3797
3946
|
Repository = "REPOSITORY",
|
|
3798
3947
|
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
@@ -3808,6 +3957,23 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3808
3957
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3809
3958
|
webUrl: Scalars['URL'];
|
|
3810
3959
|
};
|
|
3960
|
+
export declare type DevOpsToolNamespace = {
|
|
3961
|
+
__typename?: 'DevOpsToolNamespace';
|
|
3962
|
+
id: Scalars['ID'];
|
|
3963
|
+
displayName: Scalars['String'];
|
|
3964
|
+
canCreateContainer: Scalars['Boolean'];
|
|
3965
|
+
};
|
|
3966
|
+
export declare type DevOpsToolNamespaceConnection = {
|
|
3967
|
+
__typename?: 'DevOpsToolNamespaceConnection';
|
|
3968
|
+
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
3969
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
3970
|
+
pageInfo: PageInfo;
|
|
3971
|
+
};
|
|
3972
|
+
export declare type DevOpsToolNamespaceEdge = {
|
|
3973
|
+
__typename?: 'DevOpsToolNamespaceEdge';
|
|
3974
|
+
cursor: Scalars['String'];
|
|
3975
|
+
node?: Maybe<DevOpsToolNamespace>;
|
|
3976
|
+
};
|
|
3811
3977
|
export declare type DevOpsToolSupportedContainerType = {
|
|
3812
3978
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
3813
3979
|
category: DevOpsToolCategory;
|
|
@@ -3824,12 +3990,28 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3824
3990
|
export declare type DevOpsTools = {
|
|
3825
3991
|
__typename?: 'DevOpsTools';
|
|
3826
3992
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3993
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3994
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3827
3995
|
};
|
|
3828
3996
|
export declare type DevOpsToolsToolsArgs = {
|
|
3829
3997
|
cloudId: Scalars['ID'];
|
|
3830
3998
|
first?: Maybe<Scalars['Int']>;
|
|
3831
3999
|
after?: Maybe<Scalars['String']>;
|
|
3832
4000
|
};
|
|
4001
|
+
export declare type DevOpsToolsNamespacesArgs = {
|
|
4002
|
+
cloudId: Scalars['ID'];
|
|
4003
|
+
toolId: Scalars['String'];
|
|
4004
|
+
first?: Maybe<Scalars['Int']>;
|
|
4005
|
+
after?: Maybe<Scalars['String']>;
|
|
4006
|
+
};
|
|
4007
|
+
export declare type DevOpsToolsContainersArgs = {
|
|
4008
|
+
cloudId: Scalars['ID'];
|
|
4009
|
+
toolId: Scalars['String'];
|
|
4010
|
+
namespaceId: Scalars['String'];
|
|
4011
|
+
query?: Maybe<Scalars['String']>;
|
|
4012
|
+
first?: Maybe<Scalars['Int']>;
|
|
4013
|
+
after?: Maybe<Scalars['String']>;
|
|
4014
|
+
};
|
|
3833
4015
|
export declare type DevStatus = {
|
|
3834
4016
|
__typename?: 'DevStatus';
|
|
3835
4017
|
activity: DevStatusActivity;
|
|
@@ -3881,6 +4063,7 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
3881
4063
|
export declare type EcosystemQuery = {
|
|
3882
4064
|
__typename?: 'EcosystemQuery';
|
|
3883
4065
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4066
|
+
hasPermissionToConsentInContext?: Maybe<PermissionToConsentInContext>;
|
|
3884
4067
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
3885
4068
|
};
|
|
3886
4069
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -3889,6 +4072,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
3889
4072
|
before?: Maybe<Scalars['String']>;
|
|
3890
4073
|
after?: Maybe<Scalars['String']>;
|
|
3891
4074
|
};
|
|
4075
|
+
export declare type EcosystemQueryHasPermissionToConsentInContextArgs = {
|
|
4076
|
+
installationContext: Scalars['ID'];
|
|
4077
|
+
environmentKey: Scalars['String'];
|
|
4078
|
+
appId: Scalars['ID'];
|
|
4079
|
+
};
|
|
3892
4080
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
3893
4081
|
appId: Scalars['ID'];
|
|
3894
4082
|
};
|
|
@@ -5406,11 +5594,11 @@ export declare type JiraGrantTypeValueEdge = {
|
|
|
5406
5594
|
node: JiraGrantTypeValue;
|
|
5407
5595
|
cursor: Scalars['String'];
|
|
5408
5596
|
};
|
|
5409
|
-
export declare type JiraGroup = {
|
|
5597
|
+
export declare type JiraGroup = Node & {
|
|
5410
5598
|
__typename?: 'JiraGroup';
|
|
5411
|
-
id
|
|
5412
|
-
groupId
|
|
5413
|
-
name
|
|
5599
|
+
id: Scalars['ID'];
|
|
5600
|
+
groupId: Scalars['String'];
|
|
5601
|
+
name: Scalars['String'];
|
|
5414
5602
|
};
|
|
5415
5603
|
export declare type JiraGroupConnection = {
|
|
5416
5604
|
__typename?: 'JiraGroupConnection';
|
|
@@ -6685,6 +6873,17 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
6685
6873
|
before?: Maybe<Scalars['String']>;
|
|
6686
6874
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6687
6875
|
};
|
|
6876
|
+
export declare type JiraPermissionConfiguration = {
|
|
6877
|
+
__typename?: 'JiraPermissionConfiguration';
|
|
6878
|
+
tag: JiraPermissionTagEnum;
|
|
6879
|
+
message?: Maybe<JiraPermissionMessageExtension>;
|
|
6880
|
+
documentation?: Maybe<JiraPermissionDocumentationExtension>;
|
|
6881
|
+
};
|
|
6882
|
+
export declare type JiraPermissionDocumentationExtension = {
|
|
6883
|
+
__typename?: 'JiraPermissionDocumentationExtension';
|
|
6884
|
+
text: Scalars['String'];
|
|
6885
|
+
url: Scalars['String'];
|
|
6886
|
+
};
|
|
6688
6887
|
export declare type JiraPermissionGrant = {
|
|
6689
6888
|
__typename?: 'JiraPermissionGrant';
|
|
6690
6889
|
grantType: JiraGrantTypeKey;
|
|
@@ -6704,12 +6903,13 @@ export declare type JiraPermissionGrantEdge = {
|
|
|
6704
6903
|
export declare type JiraPermissionGrantHolder = {
|
|
6705
6904
|
__typename?: 'JiraPermissionGrantHolder';
|
|
6706
6905
|
permission: JiraProjectPermission;
|
|
6906
|
+
configuration?: Maybe<JiraPermissionConfiguration>;
|
|
6707
6907
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
6708
6908
|
};
|
|
6709
6909
|
export declare type JiraPermissionGrantValue = {
|
|
6710
6910
|
__typename?: 'JiraPermissionGrantValue';
|
|
6711
6911
|
id: Scalars['ID'];
|
|
6712
|
-
value
|
|
6912
|
+
value?: Maybe<JiraGrantTypeValue>;
|
|
6713
6913
|
};
|
|
6714
6914
|
export declare type JiraPermissionGrantValueConnection = {
|
|
6715
6915
|
__typename?: 'JiraPermissionGrantValueConnection';
|
|
@@ -6733,6 +6933,15 @@ export declare type JiraPermissionLevel = {
|
|
|
6733
6933
|
group?: Maybe<JiraGroup>;
|
|
6734
6934
|
role?: Maybe<JiraRole>;
|
|
6735
6935
|
};
|
|
6936
|
+
export declare type JiraPermissionMessageExtension = {
|
|
6937
|
+
__typename?: 'JiraPermissionMessageExtension';
|
|
6938
|
+
type: JiraPermissionMessageTypeEnum;
|
|
6939
|
+
text: Scalars['String'];
|
|
6940
|
+
};
|
|
6941
|
+
export declare enum JiraPermissionMessageTypeEnum {
|
|
6942
|
+
Information = "INFORMATION",
|
|
6943
|
+
Warning = "WARNING"
|
|
6944
|
+
}
|
|
6736
6945
|
export declare type JiraPermissionScheme = Node & {
|
|
6737
6946
|
__typename?: 'JiraPermissionScheme';
|
|
6738
6947
|
id: Scalars['ID'];
|
|
@@ -6748,6 +6957,10 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
|
|
|
6748
6957
|
success: Scalars['Boolean'];
|
|
6749
6958
|
errors?: Maybe<Array<MutationError>>;
|
|
6750
6959
|
};
|
|
6960
|
+
export declare type JiraPermissionSchemeConfiguration = {
|
|
6961
|
+
__typename?: 'JiraPermissionSchemeConfiguration';
|
|
6962
|
+
isEditable: Scalars['Boolean'];
|
|
6963
|
+
};
|
|
6751
6964
|
export declare type JiraPermissionSchemeGrantGroup = {
|
|
6752
6965
|
__typename?: 'JiraPermissionSchemeGrantGroup';
|
|
6753
6966
|
category: JiraProjectPermissionCategory;
|
|
@@ -6756,11 +6969,11 @@ export declare type JiraPermissionSchemeGrantGroup = {
|
|
|
6756
6969
|
export declare type JiraPermissionSchemeGrantInput = {
|
|
6757
6970
|
permissionKey: Scalars['String'];
|
|
6758
6971
|
grantType: JiraGrantTypeKeyEnum;
|
|
6759
|
-
grantValue
|
|
6972
|
+
grantValue?: Maybe<Scalars['ID']>;
|
|
6760
6973
|
};
|
|
6761
6974
|
export declare type JiraPermissionSchemeRemoveGrantInput = {
|
|
6762
6975
|
schemeId: Scalars['ID'];
|
|
6763
|
-
|
|
6976
|
+
grantIds: Array<Scalars['Long']>;
|
|
6764
6977
|
};
|
|
6765
6978
|
export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
6766
6979
|
__typename?: 'JiraPermissionSchemeRemoveGrantPayload';
|
|
@@ -6770,9 +6983,14 @@ export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
|
6770
6983
|
export declare type JiraPermissionSchemeView = {
|
|
6771
6984
|
__typename?: 'JiraPermissionSchemeView';
|
|
6772
6985
|
scheme: JiraPermissionScheme;
|
|
6986
|
+
configuration: JiraPermissionSchemeConfiguration;
|
|
6773
6987
|
grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
|
|
6774
6988
|
};
|
|
6775
6989
|
export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
|
|
6990
|
+
export declare enum JiraPermissionTagEnum {
|
|
6991
|
+
Deprecated = "DEPRECATED",
|
|
6992
|
+
New = "NEW"
|
|
6993
|
+
}
|
|
6776
6994
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
6777
6995
|
__typename?: 'JiraPlatformAttachment';
|
|
6778
6996
|
id: Scalars['ID'];
|
|
@@ -7067,6 +7285,7 @@ export declare type JiraQuery = {
|
|
|
7067
7285
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
7068
7286
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
7069
7287
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7288
|
+
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7070
7289
|
version?: Maybe<JiraVersionResult>;
|
|
7071
7290
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7072
7291
|
};
|
|
@@ -7142,6 +7361,11 @@ export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
|
|
|
7142
7361
|
before?: Maybe<Scalars['String']>;
|
|
7143
7362
|
schemeId: Scalars['ID'];
|
|
7144
7363
|
permissionKey: Scalars['String'];
|
|
7364
|
+
grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
|
|
7365
|
+
};
|
|
7366
|
+
export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
7367
|
+
schemeId: Scalars['ID'];
|
|
7368
|
+
permissionKey: Scalars['String'];
|
|
7145
7369
|
};
|
|
7146
7370
|
export declare type JiraQueryVersionArgs = {
|
|
7147
7371
|
id: Scalars['ID'];
|
|
@@ -8782,48 +9006,48 @@ export declare type Mutation = {
|
|
|
8782
9006
|
jira?: Maybe<JiraMutation>;
|
|
8783
9007
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
8784
9008
|
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>;
|
|
9009
|
+
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
9010
|
+
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
9011
|
+
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
9012
|
+
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
9013
|
+
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
9014
|
+
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
9015
|
+
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
8798
9016
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
8799
9017
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
8800
9018
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
8801
9019
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
8802
|
-
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
8803
9020
|
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
9021
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
8817
9022
|
deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
|
|
9023
|
+
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
9024
|
+
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
9025
|
+
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
9026
|
+
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
9027
|
+
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
9028
|
+
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
9029
|
+
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
9030
|
+
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
8818
9031
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
8819
9032
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
8820
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
8821
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
8822
9033
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
8823
9034
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
8824
9035
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
8825
9036
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
8826
9037
|
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
9038
|
+
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
9039
|
+
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
9040
|
+
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
9041
|
+
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
9042
|
+
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
9043
|
+
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
9044
|
+
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
9045
|
+
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9046
|
+
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9047
|
+
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
9048
|
+
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9049
|
+
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9050
|
+
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
8827
9051
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
8828
9052
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
8829
9053
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -9009,29 +9233,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
9009
9233
|
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
9010
9234
|
input: UpdateDeveloperLogAccessInput;
|
|
9011
9235
|
};
|
|
9012
|
-
export declare type
|
|
9013
|
-
input:
|
|
9236
|
+
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9237
|
+
input: UpdatePolarisTermsConsentInput;
|
|
9014
9238
|
};
|
|
9015
|
-
export declare type
|
|
9239
|
+
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
9016
9240
|
id: Scalars['ID'];
|
|
9017
|
-
input: UpdatePolarisViewInput;
|
|
9018
9241
|
};
|
|
9019
|
-
export declare type
|
|
9020
|
-
|
|
9021
|
-
input: UpdatePolarisViewRankInput;
|
|
9242
|
+
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
9243
|
+
hash: Scalars['String'];
|
|
9022
9244
|
};
|
|
9023
|
-
export declare type
|
|
9024
|
-
|
|
9245
|
+
export declare type MutationResolvePolarisObjectArgs = {
|
|
9246
|
+
input: ResolvePolarisObjectInput;
|
|
9025
9247
|
};
|
|
9026
|
-
export declare type
|
|
9027
|
-
input:
|
|
9248
|
+
export declare type MutationInvokePolarisObjectArgs = {
|
|
9249
|
+
input: InvokePolarisObjectInput;
|
|
9028
9250
|
};
|
|
9029
|
-
export declare type
|
|
9030
|
-
input:
|
|
9251
|
+
export declare type MutationCreatePolarisCommentArgs = {
|
|
9252
|
+
input: CreatePolarisCommentInput;
|
|
9031
9253
|
};
|
|
9032
|
-
export declare type
|
|
9254
|
+
export declare type MutationUpdatePolarisCommentArgs = {
|
|
9255
|
+
input: UpdatePolarisCommentInput;
|
|
9256
|
+
};
|
|
9257
|
+
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
9258
|
+
input: CreatePolarisStandardFieldInput;
|
|
9259
|
+
};
|
|
9260
|
+
export declare type MutationCreatePolarisCalculatedFieldArgs = {
|
|
9261
|
+
input: CreatePolarisCalculatedField;
|
|
9262
|
+
};
|
|
9263
|
+
export declare type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
9264
|
+
input: UpdatePolarisCalculatedFieldInput;
|
|
9265
|
+
};
|
|
9266
|
+
export declare type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
9267
|
+
input: UpdatePolarisFieldDescriptionInput;
|
|
9268
|
+
};
|
|
9269
|
+
export declare type MutationDeletePolarisFieldArgs = {
|
|
9033
9270
|
id: Scalars['ID'];
|
|
9034
9271
|
};
|
|
9272
|
+
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9273
|
+
input: UpdatePolarisFieldOptionWeightInput;
|
|
9274
|
+
};
|
|
9275
|
+
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9276
|
+
input: DeletePolarisFieldOptionInput;
|
|
9277
|
+
};
|
|
9035
9278
|
export declare type MutationCreatePolarisDecorationArgs = {
|
|
9036
9279
|
input: CreatePolarisDecorationInput;
|
|
9037
9280
|
};
|
|
@@ -9043,6 +9286,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
9043
9286
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
9044
9287
|
id: Scalars['ID'];
|
|
9045
9288
|
};
|
|
9289
|
+
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9290
|
+
project: Scalars['ID'];
|
|
9291
|
+
idea: Scalars['ID'];
|
|
9292
|
+
update: UpdatePolarisIdeaInput;
|
|
9293
|
+
};
|
|
9046
9294
|
export declare type MutationCreatePolarisInsightArgs = {
|
|
9047
9295
|
input: CreatePolarisInsightInput;
|
|
9048
9296
|
};
|
|
@@ -9053,26 +9301,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
|
|
|
9053
9301
|
export declare type MutationDeletePolarisInsightArgs = {
|
|
9054
9302
|
id: Scalars['ID'];
|
|
9055
9303
|
};
|
|
9056
|
-
export declare type
|
|
9057
|
-
input:
|
|
9304
|
+
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9305
|
+
input: CopyPolarisInsightsInput;
|
|
9058
9306
|
};
|
|
9059
|
-
export declare type
|
|
9060
|
-
|
|
9307
|
+
export declare type MutationArchivePolarisInsightsArgs = {
|
|
9308
|
+
project: Scalars['ID'];
|
|
9309
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9061
9310
|
};
|
|
9062
|
-
export declare type
|
|
9063
|
-
|
|
9311
|
+
export declare type MutationUnarchivePolarisInsightsArgs = {
|
|
9312
|
+
project: Scalars['ID'];
|
|
9313
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9064
9314
|
};
|
|
9065
|
-
export declare type
|
|
9066
|
-
input:
|
|
9315
|
+
export declare type MutationCreatePolarisPlayArgs = {
|
|
9316
|
+
input: CreatePolarisPlayInput;
|
|
9067
9317
|
};
|
|
9068
|
-
export declare type
|
|
9069
|
-
input:
|
|
9318
|
+
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
9319
|
+
input: CreatePolarisPlayContribution;
|
|
9070
9320
|
};
|
|
9071
|
-
export declare type
|
|
9321
|
+
export declare type MutationUpdatePolarisPlayContributionArgs = {
|
|
9072
9322
|
id: Scalars['ID'];
|
|
9323
|
+
input: UpdatePolarisPlayContribution;
|
|
9073
9324
|
};
|
|
9074
|
-
export declare type
|
|
9075
|
-
|
|
9325
|
+
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
9326
|
+
id: Scalars['ID'];
|
|
9327
|
+
};
|
|
9328
|
+
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9329
|
+
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9076
9330
|
};
|
|
9077
9331
|
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
9078
9332
|
input: ConfigurePolarisRefreshInput;
|
|
@@ -9083,68 +9337,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
|
9083
9337
|
export declare type MutationSetPolarisProjectOnboardedArgs = {
|
|
9084
9338
|
input: SetPolarisProjectOnboardedInput;
|
|
9085
9339
|
};
|
|
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
9340
|
export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
9096
9341
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
9097
9342
|
};
|
|
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;
|
|
9343
|
+
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
9344
|
+
input: RefreshPolarisSnippetsInput;
|
|
9117
9345
|
};
|
|
9118
|
-
export declare type
|
|
9119
|
-
|
|
9120
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9346
|
+
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9347
|
+
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9121
9348
|
};
|
|
9122
|
-
export declare type
|
|
9123
|
-
|
|
9124
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9349
|
+
export declare type MutationCreatePolarisViewArgs = {
|
|
9350
|
+
input: CreatePolarisViewInput;
|
|
9125
9351
|
};
|
|
9126
|
-
export declare type
|
|
9352
|
+
export declare type MutationUpdatePolarisViewArgs = {
|
|
9127
9353
|
id: Scalars['ID'];
|
|
9354
|
+
input: UpdatePolarisViewInput;
|
|
9128
9355
|
};
|
|
9129
|
-
export declare type
|
|
9130
|
-
|
|
9356
|
+
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
9357
|
+
id: Scalars['ID'];
|
|
9358
|
+
input: UpdatePolarisViewRankInput;
|
|
9131
9359
|
};
|
|
9132
|
-
export declare type
|
|
9133
|
-
|
|
9360
|
+
export declare type MutationDeletePolarisViewArgs = {
|
|
9361
|
+
id: Scalars['ID'];
|
|
9134
9362
|
};
|
|
9135
|
-
export declare type
|
|
9136
|
-
input:
|
|
9363
|
+
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9364
|
+
input: CreatePolarisViewSetInput;
|
|
9137
9365
|
};
|
|
9138
|
-
export declare type
|
|
9139
|
-
|
|
9140
|
-
input: UpdatePolarisPlayContribution;
|
|
9366
|
+
export declare type MutationUpdatePolarisViewSetArgs = {
|
|
9367
|
+
input: UpdatePolarisViewSetInput;
|
|
9141
9368
|
};
|
|
9142
|
-
export declare type
|
|
9369
|
+
export declare type MutationDeletePolarisViewSetArgs = {
|
|
9143
9370
|
id: Scalars['ID'];
|
|
9144
9371
|
};
|
|
9145
|
-
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9146
|
-
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9147
|
-
};
|
|
9148
9372
|
export declare type MutationCreateAppTunnelsArgs = {
|
|
9149
9373
|
input: CreateAppTunnelsInput;
|
|
9150
9374
|
};
|
|
@@ -9245,6 +9469,14 @@ export declare type NadelHydrationArgument = {
|
|
|
9245
9469
|
name: Scalars['String'];
|
|
9246
9470
|
value: Scalars['String'];
|
|
9247
9471
|
};
|
|
9472
|
+
export declare type NadelHydrationFromArgument = {
|
|
9473
|
+
name: Scalars['String'];
|
|
9474
|
+
valueFromField?: Maybe<Scalars['String']>;
|
|
9475
|
+
valueFromArg?: Maybe<Scalars['String']>;
|
|
9476
|
+
};
|
|
9477
|
+
export declare enum NadelHydrationTemplate {
|
|
9478
|
+
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
9479
|
+
}
|
|
9248
9480
|
export declare type NewCardParent = {
|
|
9249
9481
|
summary: Scalars['String'];
|
|
9250
9482
|
issueTypeId: Scalars['ID'];
|
|
@@ -9406,6 +9638,11 @@ export declare type Payload = {
|
|
|
9406
9638
|
success: Scalars['Boolean'];
|
|
9407
9639
|
errors?: Maybe<Array<MutationError>>;
|
|
9408
9640
|
};
|
|
9641
|
+
export declare type PermissionToConsentInContext = {
|
|
9642
|
+
__typename?: 'PermissionToConsentInContext';
|
|
9643
|
+
isAllowed: Scalars['Boolean'];
|
|
9644
|
+
userType?: Maybe<Scalars['String']>;
|
|
9645
|
+
};
|
|
9409
9646
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
9410
9647
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
9411
9648
|
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
@@ -10290,6 +10527,7 @@ export declare type Query = {
|
|
|
10290
10527
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
10291
10528
|
echo?: Maybe<Scalars['String']>;
|
|
10292
10529
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
10530
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
10293
10531
|
activities?: Maybe<Activities>;
|
|
10294
10532
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
10295
10533
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|