@forge/cli-shared 2.1.5-next.2 → 2.1.5-next.6

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
@@ -1,5 +1,33 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.5-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0e82242]
8
+ - @forge/manifest@2.5.0-next.6
9
+
10
+ ## 2.1.5-next.5
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [f5eb8e0]
15
+ - @forge/manifest@2.5.0-next.5
16
+
17
+ ## 2.1.5-next.4
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [4de9850]
22
+ - @forge/manifest@2.5.0-next.4
23
+
24
+ ## 2.1.5-next.3
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [dec8066]
29
+ - @forge/manifest@2.5.0-next.3
30
+
3
31
  ## 2.1.5-next.2
4
32
 
5
33
  ### Patch Changes
@@ -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;
@@ -3881,6 +4037,7 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
3881
4037
  export declare type EcosystemQuery = {
3882
4038
  __typename?: 'EcosystemQuery';
3883
4039
  userGrants?: Maybe<UserGrantConnection>;
4040
+ hasPermissionToConsentInContext?: Maybe<PermissionToConsentInContext>;
3884
4041
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
3885
4042
  };
3886
4043
  export declare type EcosystemQueryUserGrantsArgs = {
@@ -3889,6 +4046,11 @@ export declare type EcosystemQueryUserGrantsArgs = {
3889
4046
  before?: Maybe<Scalars['String']>;
3890
4047
  after?: Maybe<Scalars['String']>;
3891
4048
  };
4049
+ export declare type EcosystemQueryHasPermissionToConsentInContextArgs = {
4050
+ installationContext: Scalars['ID'];
4051
+ environmentKey: Scalars['String'];
4052
+ appId: Scalars['ID'];
4053
+ };
3892
4054
  export declare type EcosystemQueryForgeMetricsArgs = {
3893
4055
  appId: Scalars['ID'];
3894
4056
  };
@@ -5406,11 +5568,11 @@ export declare type JiraGrantTypeValueEdge = {
5406
5568
  node: JiraGrantTypeValue;
5407
5569
  cursor: Scalars['String'];
5408
5570
  };
5409
- export declare type JiraGroup = {
5571
+ export declare type JiraGroup = Node & {
5410
5572
  __typename?: 'JiraGroup';
5411
- id?: Maybe<Scalars['ID']>;
5412
- groupId?: Maybe<Scalars['String']>;
5413
- name?: Maybe<Scalars['String']>;
5573
+ id: Scalars['ID'];
5574
+ groupId: Scalars['String'];
5575
+ name: Scalars['String'];
5414
5576
  };
5415
5577
  export declare type JiraGroupConnection = {
5416
5578
  __typename?: 'JiraGroupConnection';
@@ -5508,6 +5670,7 @@ export declare type JiraIssueConnection = {
5508
5670
  __typename?: 'JiraIssueConnection';
5509
5671
  totalCount?: Maybe<Scalars['Int']>;
5510
5672
  pageInfo: PageInfo;
5673
+ jql?: Maybe<Scalars['String']>;
5511
5674
  edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
5512
5675
  };
5513
5676
  export declare type JiraIssueDeploymentEnvironment = {
@@ -8182,6 +8345,15 @@ export declare type JiraVersion = Node & {
8182
8345
  description?: Maybe<Scalars['String']>;
8183
8346
  startDate?: Maybe<Scalars['DateTime']>;
8184
8347
  releaseDate?: Maybe<Scalars['DateTime']>;
8348
+ warningConfig?: Maybe<JiraVersionWarningConfig>;
8349
+ issues?: Maybe<JiraIssueConnection>;
8350
+ };
8351
+ export declare type JiraVersionIssuesArgs = {
8352
+ first?: Maybe<Scalars['Int']>;
8353
+ after?: Maybe<Scalars['String']>;
8354
+ last?: Maybe<Scalars['Int']>;
8355
+ before?: Maybe<Scalars['String']>;
8356
+ filter?: Maybe<JiraVersionIssuesFilter>;
8185
8357
  };
8186
8358
  export declare type JiraVersionConnection = {
8187
8359
  __typename?: 'JiraVersionConnection';
@@ -8216,6 +8388,15 @@ export declare type JiraVersionEdge = {
8216
8388
  node?: Maybe<JiraVersion>;
8217
8389
  cursor: Scalars['String'];
8218
8390
  };
8391
+ export declare enum JiraVersionIssuesFilter {
8392
+ All = "ALL",
8393
+ Todo = "TODO",
8394
+ InProgress = "IN_PROGRESS",
8395
+ Done = "DONE",
8396
+ UnreviewedCode = "UNREVIEWED_CODE",
8397
+ OpenPullRequest = "OPEN_PULL_REQUEST",
8398
+ FailingBuild = "FAILING_BUILD"
8399
+ }
8219
8400
  export declare type JiraVersionResult = JiraVersion | QueryError;
8220
8401
  export declare enum JiraVersionStatus {
8221
8402
  Released = "RELEASED",
@@ -8763,48 +8944,48 @@ export declare type Mutation = {
8763
8944
  jira?: Maybe<JiraMutation>;
8764
8945
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
8765
8946
  appStorage?: Maybe<AppStorageMutation>;
8766
- createPolarisView?: Maybe<CreatePolarisViewPayload>;
8767
- updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
8768
- updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
8769
- deletePolarisView?: Maybe<DeletePolarisViewPayload>;
8770
- createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
8771
- updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
8772
- deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
8773
- createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
8774
- updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
8775
- deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
8776
- createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
8777
- updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
8778
- deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
8947
+ updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
8948
+ createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
8949
+ deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
8950
+ resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
8951
+ invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
8952
+ createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
8953
+ updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
8779
8954
  createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
8780
8955
  createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
8781
8956
  updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
8782
8957
  updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
8783
- resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
8784
8958
  deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
8785
- refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
8786
- configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
8787
- applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
8788
- setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
8789
- updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
8790
- invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
8791
- setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
8792
- setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
8793
- createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
8794
- updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
8795
- copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
8796
- updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
8797
8959
  updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
8798
8960
  deletePolarisFieldOption?: Maybe<DeletePolarisFieldOptionPayload>;
8961
+ createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
8962
+ updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
8963
+ deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
8964
+ updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
8965
+ createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
8966
+ updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
8967
+ deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
8968
+ copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
8799
8969
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
8800
8970
  unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
8801
- createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
8802
- deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
8803
8971
  createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
8804
8972
  createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
8805
8973
  updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
8806
8974
  deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
8807
8975
  createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
8976
+ configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
8977
+ applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
8978
+ setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
8979
+ setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
8980
+ refreshPolarisSnippets?: Maybe<RefreshPolarisSnippetsPayload>;
8981
+ setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
8982
+ createPolarisView?: Maybe<CreatePolarisViewPayload>;
8983
+ updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
8984
+ updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
8985
+ deletePolarisView?: Maybe<DeletePolarisViewPayload>;
8986
+ createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
8987
+ updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
8988
+ deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
8808
8989
  createAppTunnels?: Maybe<CreateAppTunnelResponse>;
8809
8990
  deleteAppTunnels?: Maybe<GenericMutationResponse>;
8810
8991
  invokeExtension?: Maybe<InvokeExtensionResponse>;
@@ -8990,29 +9171,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
8990
9171
  export declare type MutationUpdateDeveloperLogAccessArgs = {
8991
9172
  input: UpdateDeveloperLogAccessInput;
8992
9173
  };
8993
- export declare type MutationCreatePolarisViewArgs = {
8994
- input: CreatePolarisViewInput;
9174
+ export declare type MutationUpdatePolarisTermsConsentArgs = {
9175
+ input: UpdatePolarisTermsConsentInput;
8995
9176
  };
8996
- export declare type MutationUpdatePolarisViewArgs = {
9177
+ export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
8997
9178
  id: Scalars['ID'];
8998
- input: UpdatePolarisViewInput;
8999
9179
  };
9000
- export declare type MutationUpdatePolarisViewRankV2Args = {
9001
- id: Scalars['ID'];
9002
- input: UpdatePolarisViewRankInput;
9180
+ export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
9181
+ hash: Scalars['String'];
9003
9182
  };
9004
- export declare type MutationDeletePolarisViewArgs = {
9005
- id: Scalars['ID'];
9183
+ export declare type MutationResolvePolarisObjectArgs = {
9184
+ input: ResolvePolarisObjectInput;
9006
9185
  };
9007
- export declare type MutationCreatePolarisViewSetArgs = {
9008
- input: CreatePolarisViewSetInput;
9186
+ export declare type MutationInvokePolarisObjectArgs = {
9187
+ input: InvokePolarisObjectInput;
9009
9188
  };
9010
- export declare type MutationUpdatePolarisViewSetArgs = {
9011
- input: UpdatePolarisViewSetInput;
9189
+ export declare type MutationCreatePolarisCommentArgs = {
9190
+ input: CreatePolarisCommentInput;
9012
9191
  };
9013
- export declare type MutationDeletePolarisViewSetArgs = {
9192
+ export declare type MutationUpdatePolarisCommentArgs = {
9193
+ input: UpdatePolarisCommentInput;
9194
+ };
9195
+ export declare type MutationCreatePolarisStandardFieldArgs = {
9196
+ input: CreatePolarisStandardFieldInput;
9197
+ };
9198
+ export declare type MutationCreatePolarisCalculatedFieldArgs = {
9199
+ input: CreatePolarisCalculatedField;
9200
+ };
9201
+ export declare type MutationUpdatePolarisCalculatedFieldArgs = {
9202
+ input: UpdatePolarisCalculatedFieldInput;
9203
+ };
9204
+ export declare type MutationUpdatePolarisFieldDescriptionArgs = {
9205
+ input: UpdatePolarisFieldDescriptionInput;
9206
+ };
9207
+ export declare type MutationDeletePolarisFieldArgs = {
9014
9208
  id: Scalars['ID'];
9015
9209
  };
9210
+ export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
9211
+ input: UpdatePolarisFieldOptionWeightInput;
9212
+ };
9213
+ export declare type MutationDeletePolarisFieldOptionArgs = {
9214
+ input: DeletePolarisFieldOptionInput;
9215
+ };
9016
9216
  export declare type MutationCreatePolarisDecorationArgs = {
9017
9217
  input: CreatePolarisDecorationInput;
9018
9218
  };
@@ -9024,6 +9224,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
9024
9224
  export declare type MutationDeletePolarisDecorationArgs = {
9025
9225
  id: Scalars['ID'];
9026
9226
  };
9227
+ export declare type MutationUpdatePolarisIdeaArgs = {
9228
+ project: Scalars['ID'];
9229
+ idea: Scalars['ID'];
9230
+ update: UpdatePolarisIdeaInput;
9231
+ };
9027
9232
  export declare type MutationCreatePolarisInsightArgs = {
9028
9233
  input: CreatePolarisInsightInput;
9029
9234
  };
@@ -9034,26 +9239,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
9034
9239
  export declare type MutationDeletePolarisInsightArgs = {
9035
9240
  id: Scalars['ID'];
9036
9241
  };
9037
- export declare type MutationCreatePolarisStandardFieldArgs = {
9038
- input: CreatePolarisStandardFieldInput;
9242
+ export declare type MutationCopyPolarisInsightsArgs = {
9243
+ input: CopyPolarisInsightsInput;
9039
9244
  };
9040
- export declare type MutationCreatePolarisCalculatedFieldArgs = {
9041
- input: CreatePolarisCalculatedField;
9245
+ export declare type MutationArchivePolarisInsightsArgs = {
9246
+ project: Scalars['ID'];
9247
+ containers?: Maybe<Array<Scalars['ID']>>;
9042
9248
  };
9043
- export declare type MutationUpdatePolarisCalculatedFieldArgs = {
9044
- input: UpdatePolarisCalculatedFieldInput;
9249
+ export declare type MutationUnarchivePolarisInsightsArgs = {
9250
+ project: Scalars['ID'];
9251
+ containers?: Maybe<Array<Scalars['ID']>>;
9045
9252
  };
9046
- export declare type MutationUpdatePolarisFieldDescriptionArgs = {
9047
- input: UpdatePolarisFieldDescriptionInput;
9253
+ export declare type MutationCreatePolarisPlayArgs = {
9254
+ input: CreatePolarisPlayInput;
9048
9255
  };
9049
- export declare type MutationResolvePolarisObjectArgs = {
9050
- input: ResolvePolarisObjectInput;
9256
+ export declare type MutationCreatePolarisPlayContributionArgs = {
9257
+ input: CreatePolarisPlayContribution;
9051
9258
  };
9052
- export declare type MutationDeletePolarisFieldArgs = {
9259
+ export declare type MutationUpdatePolarisPlayContributionArgs = {
9053
9260
  id: Scalars['ID'];
9261
+ input: UpdatePolarisPlayContribution;
9054
9262
  };
9055
- export declare type MutationRefreshPolarisSnippetsArgs = {
9056
- input: RefreshPolarisSnippetsInput;
9263
+ export declare type MutationDeletePolarisPlayContributionArgs = {
9264
+ id: Scalars['ID'];
9265
+ };
9266
+ export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
9267
+ input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
9057
9268
  };
9058
9269
  export declare type MutationConfigurePolarisRefreshArgs = {
9059
9270
  input: ConfigurePolarisRefreshInput;
@@ -9064,68 +9275,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
9064
9275
  export declare type MutationSetPolarisProjectOnboardedArgs = {
9065
9276
  input: SetPolarisProjectOnboardedInput;
9066
9277
  };
9067
- export declare type MutationUpdatePolarisTermsConsentArgs = {
9068
- input: UpdatePolarisTermsConsentInput;
9069
- };
9070
- export declare type MutationInvokePolarisObjectArgs = {
9071
- input: InvokePolarisObjectInput;
9072
- };
9073
- export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
9074
- input: SetPolarisSnippetPropertiesConfigInput;
9075
- };
9076
9278
  export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
9077
9279
  input: SetPolarisSelectedDeliveryProjectInput;
9078
9280
  };
9079
- export declare type MutationCreatePolarisCommentArgs = {
9080
- input: CreatePolarisCommentInput;
9081
- };
9082
- export declare type MutationUpdatePolarisCommentArgs = {
9083
- input: UpdatePolarisCommentInput;
9084
- };
9085
- export declare type MutationCopyPolarisInsightsArgs = {
9086
- input: CopyPolarisInsightsInput;
9087
- };
9088
- export declare type MutationUpdatePolarisIdeaArgs = {
9089
- project: Scalars['ID'];
9090
- idea: Scalars['ID'];
9091
- update: UpdatePolarisIdeaInput;
9092
- };
9093
- export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
9094
- input: UpdatePolarisFieldOptionWeightInput;
9095
- };
9096
- export declare type MutationDeletePolarisFieldOptionArgs = {
9097
- input: DeletePolarisFieldOptionInput;
9281
+ export declare type MutationRefreshPolarisSnippetsArgs = {
9282
+ input: RefreshPolarisSnippetsInput;
9098
9283
  };
9099
- export declare type MutationArchivePolarisInsightsArgs = {
9100
- project: Scalars['ID'];
9101
- containers?: Maybe<Array<Scalars['ID']>>;
9284
+ export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
9285
+ input: SetPolarisSnippetPropertiesConfigInput;
9102
9286
  };
9103
- export declare type MutationUnarchivePolarisInsightsArgs = {
9104
- project: Scalars['ID'];
9105
- containers?: Maybe<Array<Scalars['ID']>>;
9287
+ export declare type MutationCreatePolarisViewArgs = {
9288
+ input: CreatePolarisViewInput;
9106
9289
  };
9107
- export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
9290
+ export declare type MutationUpdatePolarisViewArgs = {
9108
9291
  id: Scalars['ID'];
9292
+ input: UpdatePolarisViewInput;
9109
9293
  };
9110
- export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
9111
- hash: Scalars['String'];
9294
+ export declare type MutationUpdatePolarisViewRankV2Args = {
9295
+ id: Scalars['ID'];
9296
+ input: UpdatePolarisViewRankInput;
9112
9297
  };
9113
- export declare type MutationCreatePolarisPlayArgs = {
9114
- input: CreatePolarisPlayInput;
9298
+ export declare type MutationDeletePolarisViewArgs = {
9299
+ id: Scalars['ID'];
9115
9300
  };
9116
- export declare type MutationCreatePolarisPlayContributionArgs = {
9117
- input: CreatePolarisPlayContribution;
9301
+ export declare type MutationCreatePolarisViewSetArgs = {
9302
+ input: CreatePolarisViewSetInput;
9118
9303
  };
9119
- export declare type MutationUpdatePolarisPlayContributionArgs = {
9120
- id: Scalars['ID'];
9121
- input: UpdatePolarisPlayContribution;
9304
+ export declare type MutationUpdatePolarisViewSetArgs = {
9305
+ input: UpdatePolarisViewSetInput;
9122
9306
  };
9123
- export declare type MutationDeletePolarisPlayContributionArgs = {
9307
+ export declare type MutationDeletePolarisViewSetArgs = {
9124
9308
  id: Scalars['ID'];
9125
9309
  };
9126
- export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
9127
- input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
9128
- };
9129
9310
  export declare type MutationCreateAppTunnelsArgs = {
9130
9311
  input: CreateAppTunnelsInput;
9131
9312
  };
@@ -9226,6 +9407,14 @@ export declare type NadelHydrationArgument = {
9226
9407
  name: Scalars['String'];
9227
9408
  value: Scalars['String'];
9228
9409
  };
9410
+ export declare type NadelHydrationFromArgument = {
9411
+ name: Scalars['String'];
9412
+ valueFromField?: Maybe<Scalars['String']>;
9413
+ valueFromArg?: Maybe<Scalars['String']>;
9414
+ };
9415
+ export declare enum NadelHydrationTemplate {
9416
+ NadelPlaceholder = "NADEL_PLACEHOLDER"
9417
+ }
9229
9418
  export declare type NewCardParent = {
9230
9419
  summary: Scalars['String'];
9231
9420
  issueTypeId: Scalars['ID'];
@@ -9387,6 +9576,11 @@ export declare type Payload = {
9387
9576
  success: Scalars['Boolean'];
9388
9577
  errors?: Maybe<Array<MutationError>>;
9389
9578
  };
9579
+ export declare type PermissionToConsentInContext = {
9580
+ __typename?: 'PermissionToConsentInContext';
9581
+ isAllowed: Scalars['Boolean'];
9582
+ userType?: Maybe<Scalars['String']>;
9583
+ };
9390
9584
  export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
9391
9585
  export declare type PolarisAnonymousVisitorViewHash = {
9392
9586
  __typename?: 'PolarisAnonymousVisitorViewHash';
@@ -10271,6 +10465,7 @@ export declare type Query = {
10271
10465
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
10272
10466
  echo?: Maybe<Scalars['String']>;
10273
10467
  diagnostics?: Maybe<Scalars['JSON']>;
10468
+ confluence?: Maybe<ConfluenceQueryApi>;
10274
10469
  activities?: Maybe<Activities>;
10275
10470
  devOpsMetrics?: Maybe<DevOpsMetrics>;
10276
10471
  jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -12290,7 +12485,7 @@ export declare type UserGrant = {
12290
12485
  id: Scalars['ID'];
12291
12486
  accountId: Scalars['ID'];
12292
12487
  oauthClientId: Scalars['ID'];
12293
- appId: Scalars['ID'];
12488
+ appId?: Maybe<Scalars['ID']>;
12294
12489
  appDetails?: Maybe<UserGrantAppDetails>;
12295
12490
  scopes: Array<Maybe<AppHostServiceScope>>;
12296
12491
  };