@forge/cli-shared 2.3.1-next.8 → 2.3.2-next.0

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,36 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.3.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ba674590]
8
+ - @forge/manifest@3.5.0-next.0
9
+
10
+ ## 2.3.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [64dd525]
15
+ - Updated dependencies [8e2c90f]
16
+ - Updated dependencies [1c6c578]
17
+ - Updated dependencies [8b4fede]
18
+ - Updated dependencies [54bf134]
19
+ - Updated dependencies [10f147f]
20
+ - Updated dependencies [2484683]
21
+ - Updated dependencies [1a8a4bb]
22
+ - Updated dependencies [e0a44d4]
23
+ - Updated dependencies [19820d3]
24
+ - Updated dependencies [1ca8bbc]
25
+ - @forge/manifest@3.4.0
26
+
27
+ ## 2.3.1-next.9
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies [19820d3]
32
+ - @forge/manifest@3.4.0-next.9
33
+
3
34
  ## 2.3.1-next.8
4
35
 
5
36
  ### Patch Changes
@@ -245,7 +245,7 @@ export declare type ActivityObject = {
245
245
  contributors?: Maybe<Array<ActivitiesContributor>>;
246
246
  data?: Maybe<ActivityObjectData>;
247
247
  };
248
- export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
248
+ export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
249
249
  export declare enum ActivityObjectType {
250
250
  Site = "SITE",
251
251
  Project = "PROJECT",
@@ -311,7 +311,9 @@ export declare enum ApiGroup {
311
311
  DevopsService = "DEVOPS_SERVICE",
312
312
  DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
313
313
  Teams = "TEAMS",
314
- ContentPlatformApi = "CONTENT_PLATFORM_API"
314
+ ContentPlatformApi = "CONTENT_PLATFORM_API",
315
+ Identity = "IDENTITY",
316
+ DevopsAriGraph = "DEVOPS_ARI_GRAPH"
315
317
  }
316
318
  export declare type App = {
317
319
  __typename?: 'App';
@@ -853,6 +855,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
853
855
  success: Scalars['Boolean'];
854
856
  errors?: Maybe<Array<MutationError>>;
855
857
  };
858
+ export declare type AriGraph = {
859
+ __typename?: 'AriGraph';
860
+ relationship?: Maybe<AriGraphRelationship>;
861
+ relationships?: Maybe<AriGraphRelationshipConnection>;
862
+ };
863
+ export declare type AriGraphRelationshipArgs = {
864
+ from: Scalars['ID'];
865
+ type: Scalars['ID'];
866
+ to: Scalars['ID'];
867
+ };
868
+ export declare type AriGraphRelationshipsArgs = {
869
+ filter: AriGraphRelationshipsFilter;
870
+ first?: Maybe<Scalars['Int']>;
871
+ after?: Maybe<Scalars['String']>;
872
+ };
873
+ export declare type AriGraphCreateRelationshipInput = {
874
+ from: Scalars['ID'];
875
+ to: Scalars['ID'];
876
+ type: Scalars['ID'];
877
+ };
878
+ export declare type AriGraphCreateRelationshipPayload = Payload & {
879
+ __typename?: 'AriGraphCreateRelationshipPayload';
880
+ success: Scalars['Boolean'];
881
+ errors?: Maybe<Array<MutationError>>;
882
+ };
883
+ export declare type AriGraphMutation = {
884
+ __typename?: 'AriGraphMutation';
885
+ createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
886
+ };
887
+ export declare type AriGraphMutationCreateRelationshipArgs = {
888
+ input: AriGraphCreateRelationshipInput;
889
+ };
890
+ export declare type AriGraphRelationship = {
891
+ __typename?: 'AriGraphRelationship';
892
+ from: AriGraphRelationshipNode;
893
+ type: Scalars['ID'];
894
+ to: AriGraphRelationshipNode;
895
+ lastUpdated: Scalars['DateTime'];
896
+ };
897
+ export declare type AriGraphRelationshipConnection = {
898
+ __typename?: 'AriGraphRelationshipConnection';
899
+ nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
900
+ edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
901
+ pageInfo: PageInfo;
902
+ };
903
+ export declare type AriGraphRelationshipEdge = {
904
+ __typename?: 'AriGraphRelationshipEdge';
905
+ cursor: Scalars['String'];
906
+ node: AriGraphRelationship;
907
+ };
908
+ export declare type AriGraphRelationshipNode = {
909
+ __typename?: 'AriGraphRelationshipNode';
910
+ id: Scalars['ID'];
911
+ data?: Maybe<DeploymentSummary>;
912
+ };
913
+ export declare type AriGraphRelationshipsFilter = {
914
+ type: Scalars['ID'];
915
+ from?: Maybe<Scalars['ID']>;
916
+ to?: Maybe<Scalars['ID']>;
917
+ };
856
918
  export declare type ArjConfiguration = {
857
919
  __typename?: 'ArjConfiguration';
858
920
  parentCustomFieldId?: Maybe<Scalars['String']>;
@@ -977,6 +1039,34 @@ export declare type AvatarInput = {
977
1039
  webUrl?: Maybe<Scalars['String']>;
978
1040
  description?: Maybe<Scalars['String']>;
979
1041
  };
1042
+ export declare type Avocado = {
1043
+ __typename?: 'Avocado';
1044
+ questionByAri?: Maybe<AvocadoQuestion>;
1045
+ answerByAri?: Maybe<AvocadoAnswer>;
1046
+ };
1047
+ export declare type AvocadoQuestionByAriArgs = {
1048
+ ari: Scalars['ID'];
1049
+ };
1050
+ export declare type AvocadoAnswerByAriArgs = {
1051
+ ari: Scalars['ID'];
1052
+ };
1053
+ export declare type AvocadoAnswer = Node & {
1054
+ __typename?: 'AvocadoAnswer';
1055
+ id: Scalars['ID'];
1056
+ text: Scalars['String'];
1057
+ siteName: Scalars['String'];
1058
+ url: Scalars['String'];
1059
+ iconUrl: Scalars['String'];
1060
+ question: AvocadoQuestion;
1061
+ };
1062
+ export declare type AvocadoQuestion = Node & {
1063
+ __typename?: 'AvocadoQuestion';
1064
+ id: Scalars['ID'];
1065
+ text: Scalars['String'];
1066
+ siteName: Scalars['String'];
1067
+ url: Scalars['String'];
1068
+ iconUrl: Scalars['String'];
1069
+ };
980
1070
  export declare type Backlog = {
981
1071
  __typename?: 'Backlog';
982
1072
  boardIssueListKey?: Maybe<Scalars['String']>;
@@ -3403,7 +3493,6 @@ export declare type ContainerEventObject = {
3403
3493
  attributes: Scalars['JSON'];
3404
3494
  };
3405
3495
  export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
3406
- export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
3407
3496
  export declare type ContentPlatformChunkBenefits = {
3408
3497
  __typename?: 'ContentPlatformChunkBenefits';
3409
3498
  title: Scalars['String'];
@@ -3444,16 +3533,6 @@ export declare type ContentPlatformContextApp = {
3444
3533
  icon?: Maybe<ContentPlatformImageAsset>;
3445
3534
  url?: Maybe<Scalars['String']>;
3446
3535
  };
3447
- export declare type ContentPlatformContextAppEntry = {
3448
- __typename?: 'ContentPlatformContextAppEntry';
3449
- contextId: Scalars['String'];
3450
- title: Scalars['String'];
3451
- preventProdPublishing?: Maybe<Scalars['Boolean']>;
3452
- appName: Scalars['String'];
3453
- parentProductContext: Array<ContentPlatformContextProductEntry>;
3454
- icon?: Maybe<ContentPlatformImageAssetEntry>;
3455
- url: Scalars['String'];
3456
- };
3457
3536
  export declare type ContentPlatformContextProduct = {
3458
3537
  __typename?: 'ContentPlatformContextProduct';
3459
3538
  contextId: Scalars['String'];
@@ -3493,15 +3572,6 @@ export declare type ContentPlatformContextTheme = {
3493
3572
  icon?: Maybe<ContentPlatformImageAsset>;
3494
3573
  url?: Maybe<Scalars['String']>;
3495
3574
  };
3496
- export declare type ContentPlatformContextThemeEntry = {
3497
- __typename?: 'ContentPlatformContextThemeEntry';
3498
- contextId: Scalars['String'];
3499
- title: Scalars['String'];
3500
- preventProdPublishing: Scalars['Boolean'];
3501
- hubName: Scalars['String'];
3502
- icon?: Maybe<ContentPlatformImageAssetEntry>;
3503
- url: Scalars['String'];
3504
- };
3505
3575
  export declare type ContentPlatformImageAsset = {
3506
3576
  __typename?: 'ContentPlatformImageAsset';
3507
3577
  title: Scalars['String'];
@@ -3527,13 +3597,6 @@ export declare type ContentPlatformImageComponent = {
3527
3597
  image: ContentPlatformImageAsset;
3528
3598
  contextReference: Array<ContentPlatformAnyContext>;
3529
3599
  };
3530
- export declare type ContentPlatformImageComponentEntry = {
3531
- __typename?: 'ContentPlatformImageComponentEntry';
3532
- name: Scalars['String'];
3533
- altTag: Scalars['String'];
3534
- image: ContentPlatformImageAssetEntry;
3535
- contextReference: Array<ContentPlatformAnyContextEntry>;
3536
- };
3537
3600
  export declare type ContentPlatformIntroToPractice = {
3538
3601
  __typename?: 'ContentPlatformIntroToPractice';
3539
3602
  title: Scalars['String'];
@@ -3592,35 +3655,6 @@ export declare type ContentPlatformReleaseNote = {
3592
3655
  benefitsList?: Maybe<Scalars['JSON']>;
3593
3656
  getStarted?: Maybe<Scalars['JSON']>;
3594
3657
  };
3595
- export declare type ContentPlatformReleaseNoteEntry = {
3596
- __typename?: 'ContentPlatformReleaseNoteEntry';
3597
- releaseNoteId: Scalars['String'];
3598
- fdIssueLink?: Maybe<Scalars['String']>;
3599
- fdIssueKey?: Maybe<Scalars['String']>;
3600
- title?: Maybe<Scalars['String']>;
3601
- changeTargetSchedule?: Maybe<Scalars['String']>;
3602
- announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
3603
- changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
3604
- changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
3605
- relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
3606
- affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
3607
- usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
3608
- description?: Maybe<Scalars['JSON']>;
3609
- featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
3610
- keyChanges?: Maybe<Scalars['JSON']>;
3611
- reasonForChange?: Maybe<Scalars['JSON']>;
3612
- prepareForChange?: Maybe<Scalars['JSON']>;
3613
- supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
3614
- relatedContentLinks?: Maybe<Array<Scalars['String']>>;
3615
- featureRolloutDate?: Maybe<Scalars['String']>;
3616
- changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
3617
- releaseNoteFlag?: Maybe<Scalars['String']>;
3618
- releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
3619
- updatedAt: Scalars['String'];
3620
- url: Scalars['String'];
3621
- benefitsList: Scalars['JSON'];
3622
- getStarted: Scalars['JSON'];
3623
- };
3624
3658
  export declare type ContentPlatformReleaseNoteFilterOptions = {
3625
3659
  fdIssueLinks?: Maybe<Array<Scalars['String']>>;
3626
3660
  contextId?: Maybe<Scalars['String']>;
@@ -3649,11 +3683,6 @@ export declare type ContentPlatformStatusOfChange = {
3649
3683
  label: Scalars['String'];
3650
3684
  description: Scalars['String'];
3651
3685
  };
3652
- export declare type ContentPlatformStatusOfChangeEntry = {
3653
- __typename?: 'ContentPlatformStatusOfChangeEntry';
3654
- label: Scalars['String'];
3655
- description: Scalars['String'];
3656
- };
3657
3686
  export declare type ContentPlatformTaxonomyAnnouncementPlan = {
3658
3687
  __typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
3659
3688
  title: Scalars['String'];
@@ -3669,31 +3698,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
3669
3698
  title: Scalars['String'];
3670
3699
  description: Scalars['String'];
3671
3700
  };
3672
- export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
3673
- __typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
3674
- title: Scalars['String'];
3675
- description: Scalars['String'];
3676
- };
3677
3701
  export declare type ContentPlatformTaxonomyUserRole = {
3678
3702
  __typename?: 'ContentPlatformTaxonomyUserRole';
3679
3703
  title: Scalars['String'];
3680
3704
  description: Scalars['String'];
3681
3705
  };
3682
- export declare type ContentPlatformTaxonomyUserRoleEntry = {
3683
- __typename?: 'ContentPlatformTaxonomyUserRoleEntry';
3684
- title: Scalars['String'];
3685
- description: Scalars['String'];
3686
- };
3687
3706
  export declare type ContentPlatformTypeOfChange = {
3688
3707
  __typename?: 'ContentPlatformTypeOfChange';
3689
3708
  label: Scalars['String'];
3690
3709
  icon: ContentPlatformImageAsset;
3691
3710
  };
3692
- export declare type ContentPlatformTypeOfChangeEntry = {
3693
- __typename?: 'ContentPlatformTypeOfChangeEntry';
3694
- label?: Maybe<Scalars['String']>;
3695
- icon?: Maybe<ContentPlatformImageAssetEntry>;
3696
- };
3697
3711
  export declare type ContentPlatformWhatPractice = {
3698
3712
  __typename?: 'ContentPlatformWhatPractice';
3699
3713
  title: Scalars['String'];
@@ -4440,6 +4454,7 @@ export declare type DeleteEventSourceInput = {
4440
4454
  cloudId: Scalars['ID'];
4441
4455
  externalEventSourceId: Scalars['ID'];
4442
4456
  eventType: CompassEventType;
4457
+ deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
4443
4458
  };
4444
4459
  export declare type DeleteEventSourcePayload = Payload & {
4445
4460
  __typename?: 'DeleteEventSourcePayload';
@@ -4582,6 +4597,7 @@ export declare type DetachEventSourcePayload = Payload & {
4582
4597
  export declare type DevOps = {
4583
4598
  __typename?: 'DevOps';
4584
4599
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
4600
+ ariGraph?: Maybe<AriGraph>;
4585
4601
  };
4586
4602
  export declare type DevOpsSummarisedDeploymentsArgs = {
4587
4603
  ids: Array<Scalars['ID']>;
@@ -4785,6 +4801,11 @@ export declare type DevOpsMetricsRollupType = {
4785
4801
  type: DevOpsMetricsRollupOption;
4786
4802
  percentile?: Maybe<Scalars['Int']>;
4787
4803
  };
4804
+ export declare type DevOpsMutation = {
4805
+ __typename?: 'DevOpsMutation';
4806
+ _empty?: Maybe<Scalars['String']>;
4807
+ ariGraph?: Maybe<AriGraphMutation>;
4808
+ };
4788
4809
  export declare type DevOpsProvider = {
4789
4810
  __typename?: 'DevOpsProvider';
4790
4811
  name?: Maybe<Scalars['String']>;
@@ -11296,7 +11317,7 @@ export declare type Mutation = {
11296
11317
  shepherd?: Maybe<ShepherdMutation>;
11297
11318
  createReleaseNote: ContentPlatformReleaseNote;
11298
11319
  publishReleaseNote: ContentPlatformReleaseNote;
11299
- updateReleaseNote: ContentPlatformReleaseNoteEntry;
11320
+ updateReleaseNote: ContentPlatformReleaseNote;
11300
11321
  createApp?: Maybe<CreateAppResponse>;
11301
11322
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
11302
11323
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -11330,6 +11351,7 @@ export declare type Mutation = {
11330
11351
  toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
11331
11352
  setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
11332
11353
  updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
11354
+ devOps?: Maybe<DevOpsMutation>;
11333
11355
  createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
11334
11356
  updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
11335
11357
  deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
@@ -13090,7 +13112,7 @@ export declare type Query = {
13090
13112
  shepherd?: Maybe<ShepherdQuery>;
13091
13113
  opsgenie?: Maybe<OpsgenieQuery>;
13092
13114
  releaseNotes: ContentPlatformReleaseNotesConnection;
13093
- releaseNote?: Maybe<ContentPlatformReleaseNote>;
13115
+ releaseNote: ContentPlatformReleaseNote;
13094
13116
  practicePages: ContentPlatformPracticePagesConnection;
13095
13117
  practicePage: ContentPlatformPracticePage;
13096
13118
  apps?: Maybe<AppConnection>;
@@ -13123,6 +13145,7 @@ export declare type Query = {
13123
13145
  opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
13124
13146
  jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
13125
13147
  codeInJira?: Maybe<CodeInJira>;
13148
+ avocado?: Maybe<Avocado>;
13126
13149
  devOpsService?: Maybe<DevOpsService>;
13127
13150
  devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
13128
13151
  devOpsServices?: Maybe<DevOpsServiceConnection>;
@@ -13632,6 +13655,10 @@ export declare type RoadmapAddItemResponse = {
13632
13655
  item?: Maybe<RoadmapItem>;
13633
13656
  matchesSource: Scalars['Boolean'];
13634
13657
  };
13658
+ export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
13659
+ create?: Maybe<RoadmapCreateLevelOneIssueType>;
13660
+ promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
13661
+ };
13635
13662
  export declare type RoadmapBoardConfiguration = {
13636
13663
  __typename?: 'RoadmapBoardConfiguration';
13637
13664
  jql?: Maybe<Scalars['String']>;
@@ -13662,6 +13689,10 @@ export declare type RoadmapContent = {
13662
13689
  configuration: RoadmapConfiguration;
13663
13690
  items: RoadmapItemConnection;
13664
13691
  };
13692
+ export declare type RoadmapCreateLevelOneIssueType = {
13693
+ epicTypeName: Scalars['String'];
13694
+ epicTypeDescription: Scalars['String'];
13695
+ };
13665
13696
  export declare type RoadmapCreationPreferences = {
13666
13697
  __typename?: 'RoadmapCreationPreferences';
13667
13698
  projectId?: Maybe<Scalars['Long']>;
@@ -13771,6 +13802,10 @@ export declare type RoadmapItemEdge = {
13771
13802
  cursor: Scalars['String'];
13772
13803
  node?: Maybe<RoadmapItem>;
13773
13804
  };
13805
+ export declare type RoadmapItemRankInput = {
13806
+ id: Scalars['ID'];
13807
+ position: RoadmapRankPosition;
13808
+ };
13774
13809
  export declare type RoadmapItemStatus = {
13775
13810
  __typename?: 'RoadmapItemStatus';
13776
13811
  id: Scalars['ID'];
@@ -13874,12 +13909,28 @@ export declare type RoadmapProjectValidation = {
13874
13909
  hasValidHierarchy: Scalars['Boolean'];
13875
13910
  isRoadmapFeatureEnabled: Scalars['Boolean'];
13876
13911
  };
13912
+ export declare type RoadmapPromoteLevelOneIssueType = {
13913
+ promoteItemTypeId: Scalars['ID'];
13914
+ };
13877
13915
  export declare type RoadmapQuickFilter = {
13878
13916
  __typename?: 'RoadmapQuickFilter';
13879
13917
  id: Scalars['ID'];
13880
13918
  name: Scalars['String'];
13881
13919
  query: Scalars['String'];
13882
13920
  };
13921
+ export declare enum RoadmapRankPosition {
13922
+ Before = "BEFORE",
13923
+ After = "AFTER"
13924
+ }
13925
+ export declare type RoadmapResolveHealthcheckInput = {
13926
+ actionId: Scalars['ID'];
13927
+ addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
13928
+ };
13929
+ export declare type RoadmapResolveHealthcheckPayload = Payload & {
13930
+ __typename?: 'RoadmapResolveHealthcheckPayload';
13931
+ success: Scalars['Boolean'];
13932
+ errors?: Maybe<Array<MutationError>>;
13933
+ };
13883
13934
  export declare type RoadmapSprint = {
13884
13935
  __typename?: 'RoadmapSprint';
13885
13936
  id: Scalars['ID'];
@@ -13926,7 +13977,7 @@ export declare type RoadmapUpdateItemInput = {
13926
13977
  dueDate?: Maybe<Scalars['Date']>;
13927
13978
  startDate?: Maybe<Scalars['Date']>;
13928
13979
  color?: Maybe<RoadmapPaletteColor>;
13929
- rank?: Maybe<RoadmapUpdateItemRank>;
13980
+ rank?: Maybe<RoadmapItemRankInput>;
13930
13981
  parentId?: Maybe<Scalars['ID']>;
13931
13982
  sprintId?: Maybe<Scalars['ID']>;
13932
13983
  clearFields?: Maybe<Array<Scalars['String']>>;
@@ -13937,10 +13988,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
13937
13988
  errors?: Maybe<Array<MutationError>>;
13938
13989
  output?: Maybe<RoadmapUpdateItemResponse>;
13939
13990
  };
13940
- export declare type RoadmapUpdateItemRank = {
13941
- beforeId?: Maybe<Scalars['ID']>;
13942
- afterId?: Maybe<Scalars['ID']>;
13943
- };
13944
13991
  export declare type RoadmapUpdateItemResponse = {
13945
13992
  __typename?: 'RoadmapUpdateItemResponse';
13946
13993
  item?: Maybe<RoadmapItem>;
@@ -13976,6 +14023,7 @@ export declare type RoadmapViewSettings = {
13976
14023
  export declare type RoadmapsMutation = {
13977
14024
  __typename?: 'RoadmapsMutation';
13978
14025
  toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
14026
+ resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
13979
14027
  addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
13980
14028
  updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
13981
14029
  addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
@@ -13984,6 +14032,10 @@ export declare type RoadmapsMutation = {
13984
14032
  export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
13985
14033
  input: RoadmapFeatureToggleInput;
13986
14034
  };
14035
+ export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
14036
+ sourceARI: Scalars['ID'];
14037
+ input: RoadmapResolveHealthcheckInput;
14038
+ };
13987
14039
  export declare type RoadmapsMutationAddRoadmapItemArgs = {
13988
14040
  sourceARI: Scalars['ID'];
13989
14041
  input: RoadmapAddItemInput;
@@ -14031,6 +14083,7 @@ export declare enum Scope {
14031
14083
  AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
14032
14084
  ManageDirectory = "MANAGE_DIRECTORY",
14033
14085
  ReadMe = "READ_ME",
14086
+ ReadAccount = "READ_ACCOUNT",
14034
14087
  ViewUserprofile = "VIEW_USERPROFILE",
14035
14088
  IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
14036
14089
  ReadCompassComponent = "READ_COMPASS_COMPONENT",
@@ -14410,6 +14463,7 @@ export declare type ShepherdCreateWebhookInput = {
14410
14463
  authToken?: Maybe<Scalars['String']>;
14411
14464
  callbackURL: Scalars['URL'];
14412
14465
  status?: Maybe<ShepherdSubscriptionStatus>;
14466
+ type?: Maybe<ShepherdWebhookType>;
14413
14467
  };
14414
14468
  export declare type ShepherdEmailConnection = {
14415
14469
  __typename?: 'ShepherdEmailConnection';
@@ -14545,6 +14599,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
14545
14599
  export declare type ShepherdUpdateWebhookInput = {
14546
14600
  callbackURL?: Maybe<Scalars['URL']>;
14547
14601
  status?: Maybe<ShepherdSubscriptionStatus>;
14602
+ type?: Maybe<ShepherdWebhookType>;
14548
14603
  };
14549
14604
  export declare type ShepherdUser = {
14550
14605
  __typename?: 'ShepherdUser';
@@ -14566,9 +14621,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
14566
14621
  createdOn: Scalars['DateTime'];
14567
14622
  id: Scalars['ID'];
14568
14623
  status: ShepherdSubscriptionStatus;
14624
+ type?: Maybe<ShepherdWebhookType>;
14569
14625
  updatedBy?: Maybe<Scalars['String']>;
14570
14626
  updatedOn?: Maybe<Scalars['DateTime']>;
14571
14627
  };
14628
+ export declare enum ShepherdWebhookType {
14629
+ Custom = "CUSTOM",
14630
+ Slack = "SLACK"
14631
+ }
14572
14632
  export declare type SoftwareBoard = {
14573
14633
  __typename?: 'SoftwareBoard';
14574
14634
  id?: Maybe<Scalars['ID']>;