@forge/cli-shared 2.1.5-next.4 → 2.1.5-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -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'];
|
|
@@ -3808,6 +3940,23 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3808
3940
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3809
3941
|
webUrl: Scalars['URL'];
|
|
3810
3942
|
};
|
|
3943
|
+
export declare type DevOpsToolNamespace = {
|
|
3944
|
+
__typename?: 'DevOpsToolNamespace';
|
|
3945
|
+
id: Scalars['ID'];
|
|
3946
|
+
displayName: Scalars['String'];
|
|
3947
|
+
canCreateContainer: Scalars['Boolean'];
|
|
3948
|
+
};
|
|
3949
|
+
export declare type DevOpsToolNamespaceConnection = {
|
|
3950
|
+
__typename?: 'DevOpsToolNamespaceConnection';
|
|
3951
|
+
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
3952
|
+
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
3953
|
+
pageInfo: PageInfo;
|
|
3954
|
+
};
|
|
3955
|
+
export declare type DevOpsToolNamespaceEdge = {
|
|
3956
|
+
__typename?: 'DevOpsToolNamespaceEdge';
|
|
3957
|
+
cursor: Scalars['String'];
|
|
3958
|
+
node?: Maybe<DevOpsToolNamespace>;
|
|
3959
|
+
};
|
|
3811
3960
|
export declare type DevOpsToolSupportedContainerType = {
|
|
3812
3961
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
3813
3962
|
category: DevOpsToolCategory;
|
|
@@ -3824,12 +3973,19 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3824
3973
|
export declare type DevOpsTools = {
|
|
3825
3974
|
__typename?: 'DevOpsTools';
|
|
3826
3975
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3976
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3827
3977
|
};
|
|
3828
3978
|
export declare type DevOpsToolsToolsArgs = {
|
|
3829
3979
|
cloudId: Scalars['ID'];
|
|
3830
3980
|
first?: Maybe<Scalars['Int']>;
|
|
3831
3981
|
after?: Maybe<Scalars['String']>;
|
|
3832
3982
|
};
|
|
3983
|
+
export declare type DevOpsToolsNamespacesArgs = {
|
|
3984
|
+
cloudId: Scalars['ID'];
|
|
3985
|
+
toolId: Scalars['String'];
|
|
3986
|
+
first?: Maybe<Scalars['Int']>;
|
|
3987
|
+
after?: Maybe<Scalars['String']>;
|
|
3988
|
+
};
|
|
3833
3989
|
export declare type DevStatus = {
|
|
3834
3990
|
__typename?: 'DevStatus';
|
|
3835
3991
|
activity: DevStatusActivity;
|
|
@@ -8782,48 +8938,48 @@ export declare type Mutation = {
|
|
|
8782
8938
|
jira?: Maybe<JiraMutation>;
|
|
8783
8939
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
8784
8940
|
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>;
|
|
8941
|
+
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
8942
|
+
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
8943
|
+
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
8944
|
+
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
8945
|
+
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
8946
|
+
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
8947
|
+
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
8798
8948
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
8799
8949
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
8800
8950
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
8801
8951
|
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
8802
|
-
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
8803
8952
|
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
8953
|
updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
|
|
8817
8954
|
deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
|
|
8955
|
+
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
8956
|
+
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
8957
|
+
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
8958
|
+
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
8959
|
+
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
8960
|
+
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
8961
|
+
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
8962
|
+
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
8818
8963
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
8819
8964
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
8820
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
8821
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
8822
8965
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
8823
8966
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
8824
8967
|
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
8825
8968
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
8826
8969
|
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
8970
|
+
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
8971
|
+
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
8972
|
+
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
8973
|
+
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
8974
|
+
refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
|
|
8975
|
+
setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
|
|
8976
|
+
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
8977
|
+
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
8978
|
+
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
8979
|
+
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
8980
|
+
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
8981
|
+
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
8982
|
+
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
8827
8983
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
8828
8984
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
8829
8985
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -9009,29 +9165,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
9009
9165
|
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
9010
9166
|
input: UpdateDeveloperLogAccessInput;
|
|
9011
9167
|
};
|
|
9012
|
-
export declare type
|
|
9013
|
-
input:
|
|
9168
|
+
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
9169
|
+
input: UpdatePolarisTermsConsentInput;
|
|
9014
9170
|
};
|
|
9015
|
-
export declare type
|
|
9171
|
+
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
9016
9172
|
id: Scalars['ID'];
|
|
9017
|
-
input: UpdatePolarisViewInput;
|
|
9018
9173
|
};
|
|
9019
|
-
export declare type
|
|
9020
|
-
|
|
9021
|
-
input: UpdatePolarisViewRankInput;
|
|
9174
|
+
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
9175
|
+
hash: Scalars['String'];
|
|
9022
9176
|
};
|
|
9023
|
-
export declare type
|
|
9024
|
-
|
|
9177
|
+
export declare type MutationResolvePolarisObjectArgs = {
|
|
9178
|
+
input: ResolvePolarisObjectInput;
|
|
9025
9179
|
};
|
|
9026
|
-
export declare type
|
|
9027
|
-
input:
|
|
9180
|
+
export declare type MutationInvokePolarisObjectArgs = {
|
|
9181
|
+
input: InvokePolarisObjectInput;
|
|
9028
9182
|
};
|
|
9029
|
-
export declare type
|
|
9030
|
-
input:
|
|
9183
|
+
export declare type MutationCreatePolarisCommentArgs = {
|
|
9184
|
+
input: CreatePolarisCommentInput;
|
|
9031
9185
|
};
|
|
9032
|
-
export declare type
|
|
9186
|
+
export declare type MutationUpdatePolarisCommentArgs = {
|
|
9187
|
+
input: UpdatePolarisCommentInput;
|
|
9188
|
+
};
|
|
9189
|
+
export declare type MutationCreatePolarisStandardFieldArgs = {
|
|
9190
|
+
input: CreatePolarisStandardFieldInput;
|
|
9191
|
+
};
|
|
9192
|
+
export declare type MutationCreatePolarisCalculatedFieldArgs = {
|
|
9193
|
+
input: CreatePolarisCalculatedField;
|
|
9194
|
+
};
|
|
9195
|
+
export declare type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
9196
|
+
input: UpdatePolarisCalculatedFieldInput;
|
|
9197
|
+
};
|
|
9198
|
+
export declare type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
9199
|
+
input: UpdatePolarisFieldDescriptionInput;
|
|
9200
|
+
};
|
|
9201
|
+
export declare type MutationDeletePolarisFieldArgs = {
|
|
9033
9202
|
id: Scalars['ID'];
|
|
9034
9203
|
};
|
|
9204
|
+
export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
|
|
9205
|
+
input: UpdatePolarisFieldOptionWeightInput;
|
|
9206
|
+
};
|
|
9207
|
+
export declare type MutationDeletePolarisFieldOptionArgs = {
|
|
9208
|
+
input: DeletePolarisFieldOptionInput;
|
|
9209
|
+
};
|
|
9035
9210
|
export declare type MutationCreatePolarisDecorationArgs = {
|
|
9036
9211
|
input: CreatePolarisDecorationInput;
|
|
9037
9212
|
};
|
|
@@ -9043,6 +9218,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
9043
9218
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
9044
9219
|
id: Scalars['ID'];
|
|
9045
9220
|
};
|
|
9221
|
+
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
9222
|
+
project: Scalars['ID'];
|
|
9223
|
+
idea: Scalars['ID'];
|
|
9224
|
+
update: UpdatePolarisIdeaInput;
|
|
9225
|
+
};
|
|
9046
9226
|
export declare type MutationCreatePolarisInsightArgs = {
|
|
9047
9227
|
input: CreatePolarisInsightInput;
|
|
9048
9228
|
};
|
|
@@ -9053,26 +9233,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
|
|
|
9053
9233
|
export declare type MutationDeletePolarisInsightArgs = {
|
|
9054
9234
|
id: Scalars['ID'];
|
|
9055
9235
|
};
|
|
9056
|
-
export declare type
|
|
9057
|
-
input:
|
|
9236
|
+
export declare type MutationCopyPolarisInsightsArgs = {
|
|
9237
|
+
input: CopyPolarisInsightsInput;
|
|
9058
9238
|
};
|
|
9059
|
-
export declare type
|
|
9060
|
-
|
|
9239
|
+
export declare type MutationArchivePolarisInsightsArgs = {
|
|
9240
|
+
project: Scalars['ID'];
|
|
9241
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9061
9242
|
};
|
|
9062
|
-
export declare type
|
|
9063
|
-
|
|
9243
|
+
export declare type MutationUnarchivePolarisInsightsArgs = {
|
|
9244
|
+
project: Scalars['ID'];
|
|
9245
|
+
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9064
9246
|
};
|
|
9065
|
-
export declare type
|
|
9066
|
-
input:
|
|
9247
|
+
export declare type MutationCreatePolarisPlayArgs = {
|
|
9248
|
+
input: CreatePolarisPlayInput;
|
|
9067
9249
|
};
|
|
9068
|
-
export declare type
|
|
9069
|
-
input:
|
|
9250
|
+
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
9251
|
+
input: CreatePolarisPlayContribution;
|
|
9070
9252
|
};
|
|
9071
|
-
export declare type
|
|
9253
|
+
export declare type MutationUpdatePolarisPlayContributionArgs = {
|
|
9254
|
+
id: Scalars['ID'];
|
|
9255
|
+
input: UpdatePolarisPlayContribution;
|
|
9256
|
+
};
|
|
9257
|
+
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
9072
9258
|
id: Scalars['ID'];
|
|
9073
9259
|
};
|
|
9074
|
-
export declare type
|
|
9075
|
-
input
|
|
9260
|
+
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9261
|
+
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9076
9262
|
};
|
|
9077
9263
|
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
9078
9264
|
input: ConfigurePolarisRefreshInput;
|
|
@@ -9083,68 +9269,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
|
9083
9269
|
export declare type MutationSetPolarisProjectOnboardedArgs = {
|
|
9084
9270
|
input: SetPolarisProjectOnboardedInput;
|
|
9085
9271
|
};
|
|
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
9272
|
export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
9096
9273
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
9097
9274
|
};
|
|
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;
|
|
9275
|
+
export declare type MutationRefreshPolarisSnippetsArgs = {
|
|
9276
|
+
input: RefreshPolarisSnippetsInput;
|
|
9117
9277
|
};
|
|
9118
|
-
export declare type
|
|
9119
|
-
|
|
9120
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9278
|
+
export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
|
|
9279
|
+
input: SetPolarisSnippetPropertiesConfigInput;
|
|
9121
9280
|
};
|
|
9122
|
-
export declare type
|
|
9123
|
-
|
|
9124
|
-
containers?: Maybe<Array<Scalars['ID']>>;
|
|
9281
|
+
export declare type MutationCreatePolarisViewArgs = {
|
|
9282
|
+
input: CreatePolarisViewInput;
|
|
9125
9283
|
};
|
|
9126
|
-
export declare type
|
|
9284
|
+
export declare type MutationUpdatePolarisViewArgs = {
|
|
9127
9285
|
id: Scalars['ID'];
|
|
9286
|
+
input: UpdatePolarisViewInput;
|
|
9128
9287
|
};
|
|
9129
|
-
export declare type
|
|
9130
|
-
|
|
9288
|
+
export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
9289
|
+
id: Scalars['ID'];
|
|
9290
|
+
input: UpdatePolarisViewRankInput;
|
|
9131
9291
|
};
|
|
9132
|
-
export declare type
|
|
9133
|
-
|
|
9292
|
+
export declare type MutationDeletePolarisViewArgs = {
|
|
9293
|
+
id: Scalars['ID'];
|
|
9134
9294
|
};
|
|
9135
|
-
export declare type
|
|
9136
|
-
input:
|
|
9295
|
+
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9296
|
+
input: CreatePolarisViewSetInput;
|
|
9137
9297
|
};
|
|
9138
|
-
export declare type
|
|
9139
|
-
|
|
9140
|
-
input: UpdatePolarisPlayContribution;
|
|
9298
|
+
export declare type MutationUpdatePolarisViewSetArgs = {
|
|
9299
|
+
input: UpdatePolarisViewSetInput;
|
|
9141
9300
|
};
|
|
9142
|
-
export declare type
|
|
9301
|
+
export declare type MutationDeletePolarisViewSetArgs = {
|
|
9143
9302
|
id: Scalars['ID'];
|
|
9144
9303
|
};
|
|
9145
|
-
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
9146
|
-
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
9147
|
-
};
|
|
9148
9304
|
export declare type MutationCreateAppTunnelsArgs = {
|
|
9149
9305
|
input: CreateAppTunnelsInput;
|
|
9150
9306
|
};
|
|
@@ -10298,6 +10454,7 @@ export declare type Query = {
|
|
|
10298
10454
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
10299
10455
|
echo?: Maybe<Scalars['String']>;
|
|
10300
10456
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
10457
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
10301
10458
|
activities?: Maybe<Activities>;
|
|
10302
10459
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
10303
10460
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|