@forge/cli-shared 2.1.5-next.1 → 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
@@ -1,5 +1,34 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.1.5-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f5eb8e0]
8
+ - @forge/manifest@2.5.0-next.5
9
+
10
+ ## 2.1.5-next.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [4de9850]
15
+ - @forge/manifest@2.5.0-next.4
16
+
17
+ ## 2.1.5-next.3
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [dec8066]
22
+ - @forge/manifest@2.5.0-next.3
23
+
24
+ ## 2.1.5-next.2
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [755e35e]
29
+ - Updated dependencies [f013199]
30
+ - @forge/manifest@2.5.0-next.2
31
+
3
32
  ## 2.1.5-next.1
4
33
 
5
34
  ### 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;
@@ -5508,6 +5664,7 @@ export declare type JiraIssueConnection = {
5508
5664
  __typename?: 'JiraIssueConnection';
5509
5665
  totalCount?: Maybe<Scalars['Int']>;
5510
5666
  pageInfo: PageInfo;
5667
+ jql?: Maybe<Scalars['String']>;
5511
5668
  edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
5512
5669
  };
5513
5670
  export declare type JiraIssueDeploymentEnvironment = {
@@ -8182,6 +8339,15 @@ export declare type JiraVersion = Node & {
8182
8339
  description?: Maybe<Scalars['String']>;
8183
8340
  startDate?: Maybe<Scalars['DateTime']>;
8184
8341
  releaseDate?: Maybe<Scalars['DateTime']>;
8342
+ warningConfig?: Maybe<JiraVersionWarningConfig>;
8343
+ issues?: Maybe<JiraIssueConnection>;
8344
+ };
8345
+ export declare type JiraVersionIssuesArgs = {
8346
+ first?: Maybe<Scalars['Int']>;
8347
+ after?: Maybe<Scalars['String']>;
8348
+ last?: Maybe<Scalars['Int']>;
8349
+ before?: Maybe<Scalars['String']>;
8350
+ filter?: Maybe<JiraVersionIssuesFilter>;
8185
8351
  };
8186
8352
  export declare type JiraVersionConnection = {
8187
8353
  __typename?: 'JiraVersionConnection';
@@ -8216,6 +8382,15 @@ export declare type JiraVersionEdge = {
8216
8382
  node?: Maybe<JiraVersion>;
8217
8383
  cursor: Scalars['String'];
8218
8384
  };
8385
+ export declare enum JiraVersionIssuesFilter {
8386
+ All = "ALL",
8387
+ Todo = "TODO",
8388
+ InProgress = "IN_PROGRESS",
8389
+ Done = "DONE",
8390
+ UnreviewedCode = "UNREVIEWED_CODE",
8391
+ OpenPullRequest = "OPEN_PULL_REQUEST",
8392
+ FailingBuild = "FAILING_BUILD"
8393
+ }
8219
8394
  export declare type JiraVersionResult = JiraVersion | QueryError;
8220
8395
  export declare enum JiraVersionStatus {
8221
8396
  Released = "RELEASED",
@@ -8763,48 +8938,48 @@ export declare type Mutation = {
8763
8938
  jira?: Maybe<JiraMutation>;
8764
8939
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
8765
8940
  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>;
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>;
8779
8948
  createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
8780
8949
  createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
8781
8950
  updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
8782
8951
  updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
8783
- resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
8784
8952
  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
8953
  updatePolarisFieldOptionWeight?: Maybe<UpdatePolarisFieldOptionWeightPayload>;
8798
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>;
8799
8963
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
8800
8964
  unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
8801
- createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
8802
- deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
8803
8965
  createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
8804
8966
  createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
8805
8967
  updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
8806
8968
  deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
8807
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>;
8808
8983
  createAppTunnels?: Maybe<CreateAppTunnelResponse>;
8809
8984
  deleteAppTunnels?: Maybe<GenericMutationResponse>;
8810
8985
  invokeExtension?: Maybe<InvokeExtensionResponse>;
@@ -8990,29 +9165,48 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
8990
9165
  export declare type MutationUpdateDeveloperLogAccessArgs = {
8991
9166
  input: UpdateDeveloperLogAccessInput;
8992
9167
  };
8993
- export declare type MutationCreatePolarisViewArgs = {
8994
- input: CreatePolarisViewInput;
9168
+ export declare type MutationUpdatePolarisTermsConsentArgs = {
9169
+ input: UpdatePolarisTermsConsentInput;
8995
9170
  };
8996
- export declare type MutationUpdatePolarisViewArgs = {
9171
+ export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
8997
9172
  id: Scalars['ID'];
8998
- input: UpdatePolarisViewInput;
8999
9173
  };
9000
- export declare type MutationUpdatePolarisViewRankV2Args = {
9001
- id: Scalars['ID'];
9002
- input: UpdatePolarisViewRankInput;
9174
+ export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
9175
+ hash: Scalars['String'];
9003
9176
  };
9004
- export declare type MutationDeletePolarisViewArgs = {
9005
- id: Scalars['ID'];
9177
+ export declare type MutationResolvePolarisObjectArgs = {
9178
+ input: ResolvePolarisObjectInput;
9006
9179
  };
9007
- export declare type MutationCreatePolarisViewSetArgs = {
9008
- input: CreatePolarisViewSetInput;
9180
+ export declare type MutationInvokePolarisObjectArgs = {
9181
+ input: InvokePolarisObjectInput;
9009
9182
  };
9010
- export declare type MutationUpdatePolarisViewSetArgs = {
9011
- input: UpdatePolarisViewSetInput;
9183
+ export declare type MutationCreatePolarisCommentArgs = {
9184
+ input: CreatePolarisCommentInput;
9012
9185
  };
9013
- export declare type MutationDeletePolarisViewSetArgs = {
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 = {
9014
9202
  id: Scalars['ID'];
9015
9203
  };
9204
+ export declare type MutationUpdatePolarisFieldOptionWeightArgs = {
9205
+ input: UpdatePolarisFieldOptionWeightInput;
9206
+ };
9207
+ export declare type MutationDeletePolarisFieldOptionArgs = {
9208
+ input: DeletePolarisFieldOptionInput;
9209
+ };
9016
9210
  export declare type MutationCreatePolarisDecorationArgs = {
9017
9211
  input: CreatePolarisDecorationInput;
9018
9212
  };
@@ -9024,6 +9218,11 @@ export declare type MutationUpdatePolarisDecorationArgs = {
9024
9218
  export declare type MutationDeletePolarisDecorationArgs = {
9025
9219
  id: Scalars['ID'];
9026
9220
  };
9221
+ export declare type MutationUpdatePolarisIdeaArgs = {
9222
+ project: Scalars['ID'];
9223
+ idea: Scalars['ID'];
9224
+ update: UpdatePolarisIdeaInput;
9225
+ };
9027
9226
  export declare type MutationCreatePolarisInsightArgs = {
9028
9227
  input: CreatePolarisInsightInput;
9029
9228
  };
@@ -9034,26 +9233,32 @@ export declare type MutationUpdatePolarisInsightArgs = {
9034
9233
  export declare type MutationDeletePolarisInsightArgs = {
9035
9234
  id: Scalars['ID'];
9036
9235
  };
9037
- export declare type MutationCreatePolarisStandardFieldArgs = {
9038
- input: CreatePolarisStandardFieldInput;
9236
+ export declare type MutationCopyPolarisInsightsArgs = {
9237
+ input: CopyPolarisInsightsInput;
9039
9238
  };
9040
- export declare type MutationCreatePolarisCalculatedFieldArgs = {
9041
- input: CreatePolarisCalculatedField;
9239
+ export declare type MutationArchivePolarisInsightsArgs = {
9240
+ project: Scalars['ID'];
9241
+ containers?: Maybe<Array<Scalars['ID']>>;
9042
9242
  };
9043
- export declare type MutationUpdatePolarisCalculatedFieldArgs = {
9044
- input: UpdatePolarisCalculatedFieldInput;
9243
+ export declare type MutationUnarchivePolarisInsightsArgs = {
9244
+ project: Scalars['ID'];
9245
+ containers?: Maybe<Array<Scalars['ID']>>;
9045
9246
  };
9046
- export declare type MutationUpdatePolarisFieldDescriptionArgs = {
9047
- input: UpdatePolarisFieldDescriptionInput;
9247
+ export declare type MutationCreatePolarisPlayArgs = {
9248
+ input: CreatePolarisPlayInput;
9048
9249
  };
9049
- export declare type MutationResolvePolarisObjectArgs = {
9050
- input: ResolvePolarisObjectInput;
9250
+ export declare type MutationCreatePolarisPlayContributionArgs = {
9251
+ input: CreatePolarisPlayContribution;
9051
9252
  };
9052
- export declare type MutationDeletePolarisFieldArgs = {
9253
+ export declare type MutationUpdatePolarisPlayContributionArgs = {
9053
9254
  id: Scalars['ID'];
9255
+ input: UpdatePolarisPlayContribution;
9054
9256
  };
9055
- export declare type MutationRefreshPolarisSnippetsArgs = {
9056
- input: RefreshPolarisSnippetsInput;
9257
+ export declare type MutationDeletePolarisPlayContributionArgs = {
9258
+ id: Scalars['ID'];
9259
+ };
9260
+ export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
9261
+ input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
9057
9262
  };
9058
9263
  export declare type MutationConfigurePolarisRefreshArgs = {
9059
9264
  input: ConfigurePolarisRefreshInput;
@@ -9064,68 +9269,38 @@ export declare type MutationApplyPolarisProjectTemplateArgs = {
9064
9269
  export declare type MutationSetPolarisProjectOnboardedArgs = {
9065
9270
  input: SetPolarisProjectOnboardedInput;
9066
9271
  };
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
9272
  export declare type MutationSetPolarisSelectedDeliveryProjectArgs = {
9077
9273
  input: SetPolarisSelectedDeliveryProjectInput;
9078
9274
  };
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;
9275
+ export declare type MutationRefreshPolarisSnippetsArgs = {
9276
+ input: RefreshPolarisSnippetsInput;
9098
9277
  };
9099
- export declare type MutationArchivePolarisInsightsArgs = {
9100
- project: Scalars['ID'];
9101
- containers?: Maybe<Array<Scalars['ID']>>;
9278
+ export declare type MutationSetPolarisSnippetPropertiesConfigArgs = {
9279
+ input: SetPolarisSnippetPropertiesConfigInput;
9102
9280
  };
9103
- export declare type MutationUnarchivePolarisInsightsArgs = {
9104
- project: Scalars['ID'];
9105
- containers?: Maybe<Array<Scalars['ID']>>;
9281
+ export declare type MutationCreatePolarisViewArgs = {
9282
+ input: CreatePolarisViewInput;
9106
9283
  };
9107
- export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
9284
+ export declare type MutationUpdatePolarisViewArgs = {
9108
9285
  id: Scalars['ID'];
9286
+ input: UpdatePolarisViewInput;
9109
9287
  };
9110
- export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
9111
- hash: Scalars['String'];
9288
+ export declare type MutationUpdatePolarisViewRankV2Args = {
9289
+ id: Scalars['ID'];
9290
+ input: UpdatePolarisViewRankInput;
9112
9291
  };
9113
- export declare type MutationCreatePolarisPlayArgs = {
9114
- input: CreatePolarisPlayInput;
9292
+ export declare type MutationDeletePolarisViewArgs = {
9293
+ id: Scalars['ID'];
9115
9294
  };
9116
- export declare type MutationCreatePolarisPlayContributionArgs = {
9117
- input: CreatePolarisPlayContribution;
9295
+ export declare type MutationCreatePolarisViewSetArgs = {
9296
+ input: CreatePolarisViewSetInput;
9118
9297
  };
9119
- export declare type MutationUpdatePolarisPlayContributionArgs = {
9120
- id: Scalars['ID'];
9121
- input: UpdatePolarisPlayContribution;
9298
+ export declare type MutationUpdatePolarisViewSetArgs = {
9299
+ input: UpdatePolarisViewSetInput;
9122
9300
  };
9123
- export declare type MutationDeletePolarisPlayContributionArgs = {
9301
+ export declare type MutationDeletePolarisViewSetArgs = {
9124
9302
  id: Scalars['ID'];
9125
9303
  };
9126
- export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
9127
- input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
9128
- };
9129
9304
  export declare type MutationCreateAppTunnelsArgs = {
9130
9305
  input: CreateAppTunnelsInput;
9131
9306
  };
@@ -9226,6 +9401,14 @@ export declare type NadelHydrationArgument = {
9226
9401
  name: Scalars['String'];
9227
9402
  value: Scalars['String'];
9228
9403
  };
9404
+ export declare type NadelHydrationFromArgument = {
9405
+ name: Scalars['String'];
9406
+ valueFromField?: Maybe<Scalars['String']>;
9407
+ valueFromArg?: Maybe<Scalars['String']>;
9408
+ };
9409
+ export declare enum NadelHydrationTemplate {
9410
+ NadelPlaceholder = "NADEL_PLACEHOLDER"
9411
+ }
9229
9412
  export declare type NewCardParent = {
9230
9413
  summary: Scalars['String'];
9231
9414
  issueTypeId: Scalars['ID'];
@@ -10271,6 +10454,7 @@ export declare type Query = {
10271
10454
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
10272
10455
  echo?: Maybe<Scalars['String']>;
10273
10456
  diagnostics?: Maybe<Scalars['JSON']>;
10457
+ confluence?: Maybe<ConfluenceQueryApi>;
10274
10458
  activities?: Maybe<Activities>;
10275
10459
  devOpsMetrics?: Maybe<DevOpsMetrics>;
10276
10460
  jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -11754,7 +11938,7 @@ export declare type TownsquareGoal = Node & {
11754
11938
  name: Scalars['String'];
11755
11939
  uuid: Scalars['String'];
11756
11940
  owner?: Maybe<User>;
11757
- url: Scalars['String'];
11941
+ url?: Maybe<Scalars['String']>;
11758
11942
  };
11759
11943
  export declare type TownsquareGoalConnection = {
11760
11944
  __typename?: 'TownsquareGoalConnection';
@@ -11775,7 +11959,7 @@ export declare type TownsquareProject = Node & {
11775
11959
  name: Scalars['String'];
11776
11960
  uuid: Scalars['String'];
11777
11961
  owner?: Maybe<User>;
11778
- url: Scalars['String'];
11962
+ url?: Maybe<Scalars['String']>;
11779
11963
  };
11780
11964
  export declare type TownsquareProjectConnection = {
11781
11965
  __typename?: 'TownsquareProjectConnection';
@@ -12290,7 +12474,7 @@ export declare type UserGrant = {
12290
12474
  id: Scalars['ID'];
12291
12475
  accountId: Scalars['ID'];
12292
12476
  oauthClientId: Scalars['ID'];
12293
- appId: Scalars['ID'];
12477
+ appId?: Maybe<Scalars['ID']>;
12294
12478
  appDetails?: Maybe<UserGrantAppDetails>;
12295
12479
  scopes: Array<Maybe<AppHostServiceScope>>;
12296
12480
  };