@forge/cli-shared 3.4.0-next.1 → 3.4.0-next.3

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.
@@ -354,6 +354,7 @@ export declare type App = {
354
354
  environments: Array<AppEnvironment>;
355
355
  environmentByKey?: Maybe<AppEnvironment>;
356
356
  tags?: Maybe<Array<Scalars['String']>>;
357
+ ensureCollaborator: Scalars['Boolean'];
357
358
  marketplaceApp?: Maybe<MarketplaceApp>;
358
359
  };
359
360
  export declare type AppEnvironmentByKeyArgs = {
@@ -372,6 +373,14 @@ export declare type AppConnection = {
372
373
  pageInfo: PageInfo;
373
374
  totalCount?: Maybe<Scalars['Int']>;
374
375
  };
376
+ export declare type AppContributor = {
377
+ __typename?: 'AppContributor';
378
+ accountId: Scalars['String'];
379
+ publicName: Scalars['String'];
380
+ email?: Maybe<Scalars['String']>;
381
+ status: Scalars['String'];
382
+ isOwner?: Maybe<Scalars['Boolean']>;
383
+ };
375
384
  export declare enum AppContributorRole {
376
385
  Admin = "ADMIN"
377
386
  }
@@ -1006,7 +1015,7 @@ export declare type AriGraphRelationshipNode = {
1006
1015
  id: Scalars['ID'];
1007
1016
  data?: Maybe<AriGraphRelationshipNodeData>;
1008
1017
  };
1009
- export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue;
1018
+ export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam;
1010
1019
  export declare type AriGraphRelationshipsErrorReference = {
1011
1020
  __typename?: 'AriGraphRelationshipsErrorReference';
1012
1021
  from?: Maybe<Scalars['ID']>;
@@ -6129,6 +6138,7 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
6129
6138
  identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
6130
6139
  introducedDate?: Maybe<Scalars['DateTime']>;
6131
6140
  securityContainerId?: Maybe<Scalars['ID']>;
6141
+ securityContainer?: Maybe<ThirdPartyEntity>;
6132
6142
  additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
6133
6143
  linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
6134
6144
  };
@@ -6819,6 +6829,7 @@ export declare type EcosystemMutation = {
6819
6829
  __typename?: 'EcosystemMutation';
6820
6830
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
6821
6831
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
6832
+ removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
6822
6833
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
6823
6834
  updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
6824
6835
  forgeAlerts?: Maybe<ForgeAlertsMutation>;
@@ -6829,6 +6840,9 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
6829
6840
  export declare type EcosystemMutationAddAppContributorArgs = {
6830
6841
  input: AddAppContributorInput;
6831
6842
  };
6843
+ export declare type EcosystemMutationRemoveAppContributorsArgs = {
6844
+ input: RemoveAppContributorsInput;
6845
+ };
6832
6846
  export declare type EcosystemMutationDeleteUserGrantArgs = {
6833
6847
  input: DeleteUserGrantInput;
6834
6848
  };
@@ -8762,6 +8776,18 @@ export declare type JiraComponentsFieldComponentsArgs = {
8762
8776
  last?: Maybe<Scalars['Int']>;
8763
8777
  before?: Maybe<Scalars['String']>;
8764
8778
  };
8779
+ export declare type JiraConnectDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
8780
+ __typename?: 'JiraConnectDateTimeField';
8781
+ id: Scalars['ID'];
8782
+ fieldId: Scalars['String'];
8783
+ aliasFieldId?: Maybe<Scalars['ID']>;
8784
+ type: Scalars['String'];
8785
+ name: Scalars['String'];
8786
+ description?: Maybe<Scalars['String']>;
8787
+ dateTime?: Maybe<Scalars['DateTime']>;
8788
+ fieldConfig?: Maybe<JiraFieldConfig>;
8789
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
8790
+ };
8765
8791
  export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
8766
8792
  __typename?: 'JiraConnectMultipleSelectField';
8767
8793
  id: Scalars['ID'];
@@ -9935,7 +9961,10 @@ export declare type JiraIssueLink = {
9935
9961
  id?: Maybe<Scalars['ID']>;
9936
9962
  issueLinkId?: Maybe<Scalars['ID']>;
9937
9963
  relatedBy?: Maybe<JiraIssueLinkTypeRelation>;
9964
+ type?: Maybe<JiraIssueLinkType>;
9938
9965
  issue?: Maybe<JiraIssue>;
9966
+ direction?: Maybe<JiraIssueLinkDirection>;
9967
+ relationName?: Maybe<Scalars['String']>;
9939
9968
  };
9940
9969
  export declare type JiraIssueLinkConnection = {
9941
9970
  __typename?: 'JiraIssueLinkConnection';
@@ -9988,6 +10017,14 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
9988
10017
  last?: Maybe<Scalars['Int']>;
9989
10018
  before?: Maybe<Scalars['String']>;
9990
10019
  };
10020
+ export declare type JiraIssueLinkType = Node & {
10021
+ __typename?: 'JiraIssueLinkType';
10022
+ id: Scalars['ID'];
10023
+ linkTypeId?: Maybe<Scalars['ID']>;
10024
+ linkTypeName?: Maybe<Scalars['String']>;
10025
+ inwards?: Maybe<Scalars['String']>;
10026
+ outwards?: Maybe<Scalars['String']>;
10027
+ };
9991
10028
  export declare type JiraIssueLinkTypeRelation = Node & {
9992
10029
  __typename?: 'JiraIssueLinkTypeRelation';
9993
10030
  id: Scalars['ID'];
@@ -10756,6 +10793,18 @@ export declare type JiraLabelsFieldPayload = Payload & {
10756
10793
  errors?: Maybe<Array<MutationError>>;
10757
10794
  field?: Maybe<JiraLabelsField>;
10758
10795
  };
10796
+ export declare type JiraLinkIssueToVersionRelatedWorkInput = {
10797
+ issueId?: Maybe<Scalars['ID']>;
10798
+ relatedWorkType: JiraVersionRelatedWorkType;
10799
+ relatedWorkId?: Maybe<Scalars['ID']>;
10800
+ versionId: Scalars['ID'];
10801
+ };
10802
+ export declare type JiraLinkIssueToVersionRelatedWorkPayload = Payload & {
10803
+ __typename?: 'JiraLinkIssueToVersionRelatedWorkPayload';
10804
+ success: Scalars['Boolean'];
10805
+ errors?: Maybe<Array<MutationError>>;
10806
+ relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
10807
+ };
10759
10808
  export declare type JiraLongRunningTaskProgress = {
10760
10809
  __typename?: 'JiraLongRunningTaskProgress';
10761
10810
  description?: Maybe<Scalars['String']>;
@@ -10923,6 +10972,7 @@ export declare type JiraMutation = {
10923
10972
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
10924
10973
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
10925
10974
  assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
10975
+ linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
10926
10976
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
10927
10977
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
10928
10978
  updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
@@ -10964,6 +11014,9 @@ export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
10964
11014
  export declare type JiraMutationAssignRelatedWorkToUserArgs = {
10965
11015
  input: JiraAssignRelatedWorkInput;
10966
11016
  };
11017
+ export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
11018
+ input: JiraLinkIssueToVersionRelatedWorkInput;
11019
+ };
10967
11020
  export declare type JiraMutationSetApplicationPropertiesArgs = {
10968
11021
  cloudId: Scalars['ID'];
10969
11022
  input: Array<JiraSetApplicationPropertyInput>;
@@ -11943,6 +11996,9 @@ export declare type JiraQuery = {
11943
11996
  issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
11944
11997
  issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
11945
11998
  favourites?: Maybe<JiraFavouriteConnection>;
11999
+ jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
12000
+ jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
12001
+ jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
11946
12002
  issueByKey?: Maybe<JiraIssue>;
11947
12003
  issueById?: Maybe<JiraIssue>;
11948
12004
  issue?: Maybe<JiraIssue>;
@@ -11975,6 +12031,9 @@ export declare type JiraQuery = {
11975
12031
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
11976
12032
  issueSearchStable?: Maybe<JiraIssueConnection>;
11977
12033
  devOps?: Maybe<JiraDevOpsQuery>;
12034
+ resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
12035
+ resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
12036
+ resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
11978
12037
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
11979
12038
  deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
11980
12039
  installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
@@ -12043,6 +12102,16 @@ export declare type JiraQueryFavouritesArgs = {
12043
12102
  last?: Maybe<Scalars['Int']>;
12044
12103
  before?: Maybe<Scalars['String']>;
12045
12104
  };
12105
+ export declare type JiraQueryJwmNavigationArgs = {
12106
+ cloudId: Scalars['ID'];
12107
+ };
12108
+ export declare type JiraQueryJwmNavigationByProjectIdArgs = {
12109
+ projectId: Scalars['ID'];
12110
+ };
12111
+ export declare type JiraQueryJwmNavigationByProjectKeyArgs = {
12112
+ cloudId: Scalars['ID'];
12113
+ projectKey: Scalars['String'];
12114
+ };
12046
12115
  export declare type JiraQueryIssueByKeyArgs = {
12047
12116
  key: Scalars['String'];
12048
12117
  cloudId: Scalars['ID'];
@@ -12175,6 +12244,20 @@ export declare type JiraQueryIssueSearchStableArgs = {
12175
12244
  last?: Maybe<Scalars['Int']>;
12176
12245
  before?: Maybe<Scalars['String']>;
12177
12246
  };
12247
+ export declare type JiraQueryResourceUsageMetricByIdArgs = {
12248
+ id: Scalars['ID'];
12249
+ };
12250
+ export declare type JiraQueryResourceUsageMetricArgs = {
12251
+ cloudId: Scalars['ID'];
12252
+ metricKey: Scalars['String'];
12253
+ };
12254
+ export declare type JiraQueryResourceUsageMetricsArgs = {
12255
+ cloudId: Scalars['ID'];
12256
+ first?: Maybe<Scalars['Int']>;
12257
+ after?: Maybe<Scalars['String']>;
12258
+ last?: Maybe<Scalars['Int']>;
12259
+ before?: Maybe<Scalars['String']>;
12260
+ };
12178
12261
  export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
12179
12262
  projectId: Scalars['ID'];
12180
12263
  };
@@ -12413,6 +12496,52 @@ export declare type JiraResolutionFieldResolutionsArgs = {
12413
12496
  before?: Maybe<Scalars['String']>;
12414
12497
  suggested?: Maybe<Scalars['Boolean']>;
12415
12498
  };
12499
+ export declare type JiraResourceUsageMetric = Node & {
12500
+ __typename?: 'JiraResourceUsageMetric';
12501
+ id: Scalars['ID'];
12502
+ key: Scalars['String'];
12503
+ warningValue?: Maybe<Scalars['Long']>;
12504
+ thresholdValue?: Maybe<Scalars['Long']>;
12505
+ values?: Maybe<JiraResourceUsageMetricValueConnection>;
12506
+ currentValue?: Maybe<Scalars['Long']>;
12507
+ };
12508
+ export declare type JiraResourceUsageMetricValuesArgs = {
12509
+ fromDate?: Maybe<Scalars['Date']>;
12510
+ toDate?: Maybe<Scalars['Date']>;
12511
+ first?: Maybe<Scalars['Int']>;
12512
+ after?: Maybe<Scalars['String']>;
12513
+ last?: Maybe<Scalars['Int']>;
12514
+ before?: Maybe<Scalars['String']>;
12515
+ };
12516
+ export declare type JiraResourceUsageMetricConnection = {
12517
+ __typename?: 'JiraResourceUsageMetricConnection';
12518
+ totalCount?: Maybe<Scalars['Int']>;
12519
+ pageInfo: PageInfo;
12520
+ edges?: Maybe<Array<Maybe<JiraResourceUsageMetricEdge>>>;
12521
+ nodes?: Maybe<Array<Maybe<JiraResourceUsageMetric>>>;
12522
+ };
12523
+ export declare type JiraResourceUsageMetricEdge = {
12524
+ __typename?: 'JiraResourceUsageMetricEdge';
12525
+ node?: Maybe<JiraResourceUsageMetric>;
12526
+ cursor: Scalars['String'];
12527
+ };
12528
+ export declare type JiraResourceUsageMetricValue = {
12529
+ __typename?: 'JiraResourceUsageMetricValue';
12530
+ date?: Maybe<Scalars['Date']>;
12531
+ value?: Maybe<Scalars['Long']>;
12532
+ };
12533
+ export declare type JiraResourceUsageMetricValueConnection = {
12534
+ __typename?: 'JiraResourceUsageMetricValueConnection';
12535
+ totalCount?: Maybe<Scalars['Int']>;
12536
+ pageInfo: PageInfo;
12537
+ edges?: Maybe<Array<Maybe<JiraResourceUsageMetricValueEdge>>>;
12538
+ nodes?: Maybe<Array<Maybe<JiraResourceUsageMetricValue>>>;
12539
+ };
12540
+ export declare type JiraResourceUsageMetricValueEdge = {
12541
+ __typename?: 'JiraResourceUsageMetricValueEdge';
12542
+ node?: Maybe<JiraResourceUsageMetricValue>;
12543
+ cursor: Scalars['String'];
12544
+ };
12416
12545
  export declare enum JiraReviewState {
12417
12546
  Review = "REVIEW",
12418
12547
  Approval = "APPROVAL",
@@ -13799,6 +13928,7 @@ export declare type JiraVersionRelatedWorkConfluenceReleaseNotes = JiraVersionRe
13799
13928
  addedOn?: Maybe<Scalars['DateTime']>;
13800
13929
  addedBy?: Maybe<User>;
13801
13930
  assignee?: Maybe<User>;
13931
+ issue?: Maybe<JiraIssue>;
13802
13932
  };
13803
13933
  export declare type JiraVersionRelatedWorkConnection = {
13804
13934
  __typename?: 'JiraVersionRelatedWorkConnection';
@@ -13819,6 +13949,7 @@ export declare type JiraVersionRelatedWorkGenericLink = JiraVersionRelatedWorkV2
13819
13949
  addedOn?: Maybe<Scalars['DateTime']>;
13820
13950
  addedBy?: Maybe<User>;
13821
13951
  assignee?: Maybe<User>;
13952
+ issue?: Maybe<JiraIssue>;
13822
13953
  };
13823
13954
  export declare type JiraVersionRelatedWorkNativeReleaseNotes = JiraVersionRelatedWorkV2 & {
13824
13955
  __typename?: 'JiraVersionRelatedWorkNativeReleaseNotes';
@@ -13826,6 +13957,7 @@ export declare type JiraVersionRelatedWorkNativeReleaseNotes = JiraVersionRelate
13826
13957
  category?: Maybe<Scalars['String']>;
13827
13958
  title?: Maybe<Scalars['String']>;
13828
13959
  assignee?: Maybe<User>;
13960
+ issue?: Maybe<JiraIssue>;
13829
13961
  };
13830
13962
  export declare enum JiraVersionRelatedWorkType {
13831
13963
  GenericLink = "GENERIC_LINK",
@@ -13836,6 +13968,7 @@ export declare type JiraVersionRelatedWorkV2 = {
13836
13968
  category?: Maybe<Scalars['String']>;
13837
13969
  title?: Maybe<Scalars['String']>;
13838
13970
  assignee?: Maybe<User>;
13971
+ issue?: Maybe<JiraIssue>;
13839
13972
  };
13840
13973
  export declare type JiraVersionRelatedWorkV2Connection = {
13841
13974
  __typename?: 'JiraVersionRelatedWorkV2Connection';
@@ -13937,6 +14070,42 @@ export declare type JiraWorkLogEdge = {
13937
14070
  node?: Maybe<JiraWorklog>;
13938
14071
  cursor: Scalars['String'];
13939
14072
  };
14073
+ export declare type JiraWorkManagementCreateOverviewInput = {
14074
+ name: Scalars['String'];
14075
+ theme?: Maybe<Scalars['String']>;
14076
+ projectIds: Array<Scalars['ID']>;
14077
+ };
14078
+ export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
14079
+ __typename?: 'JiraWorkManagementCreateOverviewPayload';
14080
+ success: Scalars['Boolean'];
14081
+ errors?: Maybe<Array<MutationError>>;
14082
+ jwmOverview?: Maybe<JiraWorkManagementOverview>;
14083
+ };
14084
+ export declare type JiraWorkManagementDeleteOverviewInput = {
14085
+ id: Scalars['ID'];
14086
+ };
14087
+ export declare type JiraWorkManagementDeleteOverviewPayload = Payload & {
14088
+ __typename?: 'JiraWorkManagementDeleteOverviewPayload';
14089
+ success: Scalars['Boolean'];
14090
+ errors?: Maybe<Array<MutationError>>;
14091
+ };
14092
+ export declare type JiraWorkManagementNavigation = {
14093
+ __typename?: 'JiraWorkManagementNavigation';
14094
+ recentProjects?: Maybe<JiraProjectConnection>;
14095
+ favoriteProjects?: Maybe<JiraProjectConnection>;
14096
+ };
14097
+ export declare type JiraWorkManagementNavigationRecentProjectsArgs = {
14098
+ first?: Maybe<Scalars['Int']>;
14099
+ after?: Maybe<Scalars['String']>;
14100
+ last?: Maybe<Scalars['Int']>;
14101
+ before?: Maybe<Scalars['String']>;
14102
+ };
14103
+ export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
14104
+ first?: Maybe<Scalars['Int']>;
14105
+ after?: Maybe<Scalars['String']>;
14106
+ last?: Maybe<Scalars['Int']>;
14107
+ before?: Maybe<Scalars['String']>;
14108
+ };
13940
14109
  export declare type JiraWorkManagementOverview = Node & {
13941
14110
  __typename?: 'JiraWorkManagementOverview';
13942
14111
  id: Scalars['ID'];
@@ -13977,6 +14146,18 @@ export declare type JiraWorkManagementProjectNavigationMetadata = {
13977
14146
  __typename?: 'JiraWorkManagementProjectNavigationMetadata';
13978
14147
  boardName: Scalars['String'];
13979
14148
  };
14149
+ export declare type JiraWorkManagementUpdateOverviewInput = {
14150
+ id: Scalars['ID'];
14151
+ name?: Maybe<Scalars['String']>;
14152
+ theme?: Maybe<Scalars['String']>;
14153
+ projectIds?: Maybe<Array<Scalars['ID']>>;
14154
+ };
14155
+ export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
14156
+ __typename?: 'JiraWorkManagementUpdateOverviewPayload';
14157
+ success: Scalars['Boolean'];
14158
+ errors?: Maybe<Array<MutationError>>;
14159
+ jwmOverview?: Maybe<JiraWorkManagementOverview>;
14160
+ };
13980
14161
  export declare type JiraWorklog = Node & {
13981
14162
  __typename?: 'JiraWorklog';
13982
14163
  id: Scalars['ID'];
@@ -14468,6 +14649,11 @@ export declare type MercuryCreateJobFunctionPayload = Payload & {
14468
14649
  statusCode: Scalars['Int'];
14469
14650
  message: Scalars['String'];
14470
14651
  };
14652
+ export declare type MercuryCreateOrgLevelInput = {
14653
+ name: Scalars['String'];
14654
+ level: MercuryLevelType;
14655
+ parentId?: Maybe<Scalars['ID']>;
14656
+ };
14471
14657
  export declare type MercuryCreateStrategyInput = {
14472
14658
  name: Scalars['String'];
14473
14659
  description?: Maybe<Scalars['String']>;
@@ -14484,10 +14670,14 @@ export declare type MercuryCreateTeamInput = {
14484
14670
  name: Scalars['String'];
14485
14671
  teamsServiceTeamId: Scalars['ID'];
14486
14672
  active?: Maybe<Scalars['Boolean']>;
14673
+ orgLevelId?: Maybe<Scalars['ID']>;
14487
14674
  };
14488
14675
  export declare type MercuryDeleteJobFunctionInput = {
14489
14676
  id: Scalars['ID'];
14490
14677
  };
14678
+ export declare type MercuryDeleteOrgLevelInput = {
14679
+ id: Scalars['ID'];
14680
+ };
14491
14681
  export declare type MercuryDeleteStrategyInput = {
14492
14682
  strategyId: Scalars['ID'];
14493
14683
  };
@@ -14521,7 +14711,7 @@ export declare type MercuryInterval = Node & {
14521
14711
  startDate: Scalars['Date'];
14522
14712
  endDate: Scalars['Date'];
14523
14713
  status: MercuryIntervalStatus;
14524
- nextPossibleStatuses: Array<MercuryIntervalStatus>;
14714
+ transitions: Array<MercuryIntervalTransition>;
14525
14715
  };
14526
14716
  export declare type MercuryIntervalConnection = {
14527
14717
  __typename?: 'MercuryIntervalConnection';
@@ -14556,6 +14746,10 @@ export declare type MercuryIntervalStatusTransitionMutationPayload = Payload & {
14556
14746
  statusCode: Scalars['Int'];
14557
14747
  message: Scalars['String'];
14558
14748
  };
14749
+ export declare type MercuryIntervalTransition = {
14750
+ __typename?: 'MercuryIntervalTransition';
14751
+ to: MercuryIntervalStatus;
14752
+ };
14559
14753
  export declare type MercuryJobFunction = Node & {
14560
14754
  __typename?: 'MercuryJobFunction';
14561
14755
  id: Scalars['ID'];
@@ -14581,6 +14775,16 @@ export declare type MercuryJobFunctionEdge = {
14581
14775
  cursor: Scalars['String'];
14582
14776
  node?: Maybe<MercuryJobFunction>;
14583
14777
  };
14778
+ export declare type MercuryLevel = {
14779
+ __typename?: 'MercuryLevel';
14780
+ type?: Maybe<MercuryLevelType>;
14781
+ };
14782
+ export declare enum MercuryLevelType {
14783
+ Organization = "ORGANIZATION",
14784
+ Division = "DIVISION",
14785
+ Department = "DEPARTMENT",
14786
+ Pillar = "PILLAR"
14787
+ }
14584
14788
  export declare type MercuryLinkGoalInput = {
14585
14789
  goalId: Scalars['ID'];
14586
14790
  };
@@ -14597,6 +14801,7 @@ export declare type MercuryMutationApi = {
14597
14801
  createTeam?: Maybe<MercuryTeamMutationPayload>;
14598
14802
  updateTeam?: Maybe<MercuryTeamMutationPayload>;
14599
14803
  deleteTeam?: Maybe<MercuryTeamDeletePayload>;
14804
+ updateOrgLevelOnTeam?: Maybe<MercuryTeamMutationPayload>;
14600
14805
  createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
14601
14806
  deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
14602
14807
  allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
@@ -14604,6 +14809,9 @@ export declare type MercuryMutationApi = {
14604
14809
  createInterval?: Maybe<MercuryIntervalMutationPayload>;
14605
14810
  updateInterval?: Maybe<MercuryIntervalMutationPayload>;
14606
14811
  transitionIntervalStatus?: Maybe<MercuryIntervalStatusTransitionMutationPayload>;
14812
+ createOrgLevel?: Maybe<MercuryOrgLevelMutationPayload>;
14813
+ updateOrgLevel?: Maybe<MercuryOrgLevelMutationPayload>;
14814
+ deleteOrgLevel?: Maybe<MercuryOrgLevelDeletePayload>;
14607
14815
  };
14608
14816
  export declare type MercuryMutationApiCreateStrategyArgs = {
14609
14817
  input: MercuryCreateStrategyInput;
@@ -14638,6 +14846,9 @@ export declare type MercuryMutationApiUpdateTeamArgs = {
14638
14846
  export declare type MercuryMutationApiDeleteTeamArgs = {
14639
14847
  input: MercuryDeleteTeamInput;
14640
14848
  };
14849
+ export declare type MercuryMutationApiUpdateOrgLevelOnTeamArgs = {
14850
+ input: MercuryUpdateOrgLevelOnTeamInput;
14851
+ };
14641
14852
  export declare type MercuryMutationApiCreateTeamAllocationArgs = {
14642
14853
  input: MercuryCreateTeamAllocationInput;
14643
14854
  };
@@ -14659,6 +14870,49 @@ export declare type MercuryMutationApiUpdateIntervalArgs = {
14659
14870
  export declare type MercuryMutationApiTransitionIntervalStatusArgs = {
14660
14871
  input: MercuryTransitionIntervalStatusInput;
14661
14872
  };
14873
+ export declare type MercuryMutationApiCreateOrgLevelArgs = {
14874
+ input: MercuryCreateOrgLevelInput;
14875
+ };
14876
+ export declare type MercuryMutationApiUpdateOrgLevelArgs = {
14877
+ input: MercuryUpdateOrgLevelInput;
14878
+ };
14879
+ export declare type MercuryMutationApiDeleteOrgLevelArgs = {
14880
+ input: MercuryDeleteOrgLevelInput;
14881
+ };
14882
+ export declare type MercuryOrgLevel = Node & {
14883
+ __typename?: 'MercuryOrgLevel';
14884
+ id: Scalars['ID'];
14885
+ name: Scalars['String'];
14886
+ level: MercuryLevel;
14887
+ parentId?: Maybe<Scalars['ID']>;
14888
+ };
14889
+ export declare type MercuryOrgLevelConnection = {
14890
+ __typename?: 'MercuryOrgLevelConnection';
14891
+ edges?: Maybe<Array<Maybe<MercuryOrgLevelEdge>>>;
14892
+ nodes?: Maybe<Array<Maybe<MercuryOrgLevel>>>;
14893
+ pageInfo: PageInfo;
14894
+ };
14895
+ export declare type MercuryOrgLevelDeletePayload = Payload & {
14896
+ __typename?: 'MercuryOrgLevelDeletePayload';
14897
+ deletedOrgLevelId?: Maybe<Scalars['ID']>;
14898
+ success: Scalars['Boolean'];
14899
+ errors?: Maybe<Array<MutationError>>;
14900
+ statusCode: Scalars['Int'];
14901
+ message: Scalars['String'];
14902
+ };
14903
+ export declare type MercuryOrgLevelEdge = {
14904
+ __typename?: 'MercuryOrgLevelEdge';
14905
+ cursor: Scalars['String'];
14906
+ node?: Maybe<MercuryOrgLevel>;
14907
+ };
14908
+ export declare type MercuryOrgLevelMutationPayload = Payload & {
14909
+ __typename?: 'MercuryOrgLevelMutationPayload';
14910
+ orgLevel?: Maybe<MercuryOrgLevel>;
14911
+ success: Scalars['Boolean'];
14912
+ errors?: Maybe<Array<MutationError>>;
14913
+ statusCode: Scalars['Int'];
14914
+ message: Scalars['String'];
14915
+ };
14662
14916
  export declare type MercuryQueryApi = {
14663
14917
  __typename?: 'MercuryQueryApi';
14664
14918
  strategies?: Maybe<MercuryStrategyConnection>;
@@ -14667,12 +14921,15 @@ export declare type MercuryQueryApi = {
14667
14921
  jobFunction?: Maybe<MercuryJobFunction>;
14668
14922
  jobFunctions?: Maybe<MercuryJobFunctionConnection>;
14669
14923
  teams?: Maybe<MercuryTeamConnection>;
14924
+ teamsByOrgLevel?: Maybe<MercuryTeamConnection>;
14670
14925
  team?: Maybe<MercuryTeam>;
14671
14926
  initiative?: Maybe<MercuryInitiative>;
14672
14927
  initiatives?: Maybe<MercuryInitiativeConnection>;
14673
14928
  teamAllocation?: Maybe<MercuryTeamAllocation>;
14674
14929
  intervals?: Maybe<MercuryIntervalConnection>;
14675
14930
  interval?: Maybe<MercuryInterval>;
14931
+ orgLevel?: Maybe<MercuryOrgLevel>;
14932
+ orgLevels?: Maybe<MercuryOrgLevelConnection>;
14676
14933
  };
14677
14934
  export declare type MercuryQueryApiStrategiesArgs = {
14678
14935
  first?: Maybe<Scalars['Int']>;
@@ -14692,6 +14949,11 @@ export declare type MercuryQueryApiTeamsArgs = {
14692
14949
  first?: Maybe<Scalars['Int']>;
14693
14950
  after?: Maybe<Scalars['String']>;
14694
14951
  };
14952
+ export declare type MercuryQueryApiTeamsByOrgLevelArgs = {
14953
+ orgLevelId: Scalars['ID'];
14954
+ first?: Maybe<Scalars['Int']>;
14955
+ after?: Maybe<Scalars['String']>;
14956
+ };
14695
14957
  export declare type MercuryQueryApiTeamArgs = {
14696
14958
  id: Scalars['ID'];
14697
14959
  };
@@ -14713,6 +14975,13 @@ export declare type MercuryQueryApiIntervalsArgs = {
14713
14975
  export declare type MercuryQueryApiIntervalArgs = {
14714
14976
  id: Scalars['ID'];
14715
14977
  };
14978
+ export declare type MercuryQueryApiOrgLevelArgs = {
14979
+ id: Scalars['ID'];
14980
+ };
14981
+ export declare type MercuryQueryApiOrgLevelsArgs = {
14982
+ first?: Maybe<Scalars['Int']>;
14983
+ after?: Maybe<Scalars['String']>;
14984
+ };
14716
14985
  export declare type MercuryRemoveGoalsFromStrategyInput = {
14717
14986
  strategyId: Scalars['ID'];
14718
14987
  goals?: Maybe<Array<MercuryLinkGoalInput>>;
@@ -14759,6 +15028,7 @@ export declare type MercuryTeam = Node & {
14759
15028
  teamsServiceTeamId: Scalars['ID'];
14760
15029
  name: Scalars['String'];
14761
15030
  active?: Maybe<Scalars['Boolean']>;
15031
+ orgLevelId?: Maybe<Scalars['ID']>;
14762
15032
  };
14763
15033
  export declare type MercuryTeamAllocation = {
14764
15034
  __typename?: 'MercuryTeamAllocation';
@@ -14862,6 +15132,15 @@ export declare type MercuryUpdateJobFunctionPayload = Payload & {
14862
15132
  statusCode: Scalars['Int'];
14863
15133
  message: Scalars['String'];
14864
15134
  };
15135
+ export declare type MercuryUpdateOrgLevelInput = {
15136
+ id: Scalars['ID'];
15137
+ name?: Maybe<Scalars['String']>;
15138
+ level?: Maybe<MercuryLevelType>;
15139
+ };
15140
+ export declare type MercuryUpdateOrgLevelOnTeamInput = {
15141
+ teamId: Scalars['ID'];
15142
+ orgLevelId?: Maybe<Scalars['ID']>;
15143
+ };
14865
15144
  export declare type MercuryUpdateStrategyInput = {
14866
15145
  strategyId: Scalars['ID'];
14867
15146
  name?: Maybe<Scalars['String']>;
@@ -15039,6 +15318,11 @@ export declare type Mutation = {
15039
15318
  deleteApp?: Maybe<DeleteAppResponse>;
15040
15319
  updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
15041
15320
  ecosystem?: Maybe<EcosystemMutation>;
15321
+ installApp?: Maybe<AppInstallationResponse>;
15322
+ uninstallApp?: Maybe<AppUninstallationResponse>;
15323
+ upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
15324
+ subscribeToApp?: Maybe<AppSubscribePayload>;
15325
+ unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
15042
15326
  updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
15043
15327
  createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
15044
15328
  updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
@@ -15050,12 +15334,10 @@ export declare type Mutation = {
15050
15334
  deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
15051
15335
  updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
15052
15336
  roadmaps?: Maybe<RoadmapsMutation>;
15337
+ createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
15338
+ updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
15339
+ deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
15053
15340
  virtualAgent?: Maybe<VirtualAgentMutationApi>;
15054
- installApp?: Maybe<AppInstallationResponse>;
15055
- uninstallApp?: Maybe<AppUninstallationResponse>;
15056
- upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
15057
- subscribeToApp?: Maybe<AppSubscribePayload>;
15058
- unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
15059
15341
  createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
15060
15342
  createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
15061
15343
  setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
@@ -15451,6 +15733,21 @@ export declare type MutationDeleteAppArgs = {
15451
15733
  export declare type MutationUpdateAtlassianOAuthClientArgs = {
15452
15734
  input: UpdateAtlassianOAuthClientInput;
15453
15735
  };
15736
+ export declare type MutationInstallAppArgs = {
15737
+ input: AppInstallationInput;
15738
+ };
15739
+ export declare type MutationUninstallAppArgs = {
15740
+ input: AppUninstallationInput;
15741
+ };
15742
+ export declare type MutationUpgradeAppArgs = {
15743
+ input: AppInstallationUpgradeInput;
15744
+ };
15745
+ export declare type MutationSubscribeToAppArgs = {
15746
+ input: AppSubscribeInput;
15747
+ };
15748
+ export declare type MutationUnsubscribeFromAppArgs = {
15749
+ input: AppUnsubscribeInput;
15750
+ };
15454
15751
  export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
15455
15752
  input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
15456
15753
  };
@@ -15481,20 +15778,15 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
15481
15778
  export declare type MutationUpdateDeveloperLogAccessArgs = {
15482
15779
  input: UpdateDeveloperLogAccessInput;
15483
15780
  };
15484
- export declare type MutationInstallAppArgs = {
15485
- input: AppInstallationInput;
15486
- };
15487
- export declare type MutationUninstallAppArgs = {
15488
- input: AppUninstallationInput;
15781
+ export declare type MutationCreateJwmOverviewArgs = {
15782
+ cloudId: Scalars['ID'];
15783
+ input: JiraWorkManagementCreateOverviewInput;
15489
15784
  };
15490
- export declare type MutationUpgradeAppArgs = {
15491
- input: AppInstallationUpgradeInput;
15785
+ export declare type MutationUpdateJwmOverviewArgs = {
15786
+ input: JiraWorkManagementUpdateOverviewInput;
15492
15787
  };
15493
- export declare type MutationSubscribeToAppArgs = {
15494
- input: AppSubscribeInput;
15495
- };
15496
- export declare type MutationUnsubscribeFromAppArgs = {
15497
- input: AppUnsubscribeInput;
15788
+ export declare type MutationDeleteJwmOverviewArgs = {
15789
+ input: JiraWorkManagementDeleteOverviewInput;
15498
15790
  };
15499
15791
  export declare type MutationCreateAppDeploymentUrlArgs = {
15500
15792
  input: CreateAppDeploymentUrlInput;
@@ -16850,9 +17142,10 @@ export declare enum PolarisViewFilterOperator {
16850
17142
  Gte = "GTE",
16851
17143
  Eq = "EQ",
16852
17144
  Neq = "NEQ",
16853
- StartWithin = "START_WITHIN",
16854
- EndWithin = "END_WITHIN",
16855
- RunningIn = "RUNNING_IN"
17145
+ StartBeforeNow = "START_BEFORE_NOW",
17146
+ StartAfterNow = "START_AFTER_NOW",
17147
+ EndBeforeNow = "END_BEFORE_NOW",
17148
+ EndAfterNow = "END_AFTER_NOW"
16856
17149
  }
16857
17150
  export declare type PolarisViewFilterValue = {
16858
17151
  __typename?: 'PolarisViewFilterValue';
@@ -17005,6 +17298,9 @@ export declare type Query = {
17005
17298
  apps?: Maybe<AppConnection>;
17006
17299
  app?: Maybe<App>;
17007
17300
  appHostServices?: Maybe<Array<AppHostService>>;
17301
+ appContributors: Array<AppContributor>;
17302
+ appInstallationTask?: Maybe<AppInstallationTask>;
17303
+ ecosystem?: Maybe<EcosystemQuery>;
17008
17304
  devOpsTools?: Maybe<DevOpsTools>;
17009
17305
  search?: Maybe<SearchQueryApi>;
17010
17306
  me: AuthenticationContext;
@@ -17026,8 +17322,6 @@ export declare type Query = {
17026
17322
  tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
17027
17323
  virtualAgent?: Maybe<VirtualAgentQueryApi>;
17028
17324
  jiraReleases?: Maybe<JiraReleases>;
17029
- appInstallationTask?: Maybe<AppInstallationTask>;
17030
- ecosystem?: Maybe<EcosystemQuery>;
17031
17325
  appDeployment?: Maybe<AppDeployment>;
17032
17326
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
17033
17327
  oauthClients?: Maybe<OAuthClientsQuery>;
@@ -17283,6 +17577,12 @@ export declare type QueryAppArgs = {
17283
17577
  export declare type QueryAppHostServicesArgs = {
17284
17578
  filter?: Maybe<AppServicesFilter>;
17285
17579
  };
17580
+ export declare type QueryAppContributorsArgs = {
17581
+ id: Scalars['ID'];
17582
+ };
17583
+ export declare type QueryAppInstallationTaskArgs = {
17584
+ id: Scalars['ID'];
17585
+ };
17286
17586
  export declare type QueryUserArgs = {
17287
17587
  accountId: Scalars['ID'];
17288
17588
  };
@@ -17350,9 +17650,6 @@ export declare type QueryTenantContextsArgs = {
17350
17650
  cloudIds?: Maybe<Array<Scalars['ID']>>;
17351
17651
  hostNames?: Maybe<Array<Scalars['String']>>;
17352
17652
  };
17353
- export declare type QueryAppInstallationTaskArgs = {
17354
- id: Scalars['ID'];
17355
- };
17356
17653
  export declare type QueryAppDeploymentArgs = {
17357
17654
  appId: Scalars['ID'];
17358
17655
  environmentKey: Scalars['String'];
@@ -17442,6 +17739,16 @@ export declare type Remote = {
17442
17739
  classifications?: Maybe<Array<Classification>>;
17443
17740
  locations?: Maybe<Array<Scalars['String']>>;
17444
17741
  };
17742
+ export declare type RemoveAppContributorsInput = {
17743
+ appId: Scalars['ID'];
17744
+ emails?: Maybe<Array<Scalars['String']>>;
17745
+ accountIds?: Maybe<Array<Scalars['String']>>;
17746
+ };
17747
+ export declare type RemoveAppContributorsResponsePayload = Payload & {
17748
+ __typename?: 'RemoveAppContributorsResponsePayload';
17749
+ success: Scalars['Boolean'];
17750
+ errors?: Maybe<Array<MutationError>>;
17751
+ };
17445
17752
  export declare type RemoveCompassComponentLabelsInput = {
17446
17753
  componentId: Scalars['ID'];
17447
17754
  labelNames: Array<Scalars['String']>;
@@ -18842,6 +19149,7 @@ export declare type ShepherdCreateSubscriptionPayload = Payload & {
18842
19149
  export declare type ShepherdCreateWebhookInput = {
18843
19150
  authToken?: Maybe<Scalars['String']>;
18844
19151
  callbackURL: Scalars['URL'];
19152
+ destinationType?: Maybe<ShepherdWebhookDestinationType>;
18845
19153
  status?: Maybe<ShepherdSubscriptionStatus>;
18846
19154
  type?: Maybe<ShepherdWebhookType>;
18847
19155
  };
@@ -18861,6 +19169,7 @@ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
18861
19169
  };
18862
19170
  export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
18863
19171
  __typename?: 'ShepherdEmailSubscription';
19172
+ ari: Scalars['ID'];
18864
19173
  createdBy: Scalars['String'];
18865
19174
  createdOn: Scalars['DateTime'];
18866
19175
  email: Scalars['String'];
@@ -18895,6 +19204,7 @@ export declare type ShepherdMutation = {
18895
19204
  createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
18896
19205
  createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
18897
19206
  deleteSubscription?: Maybe<ShepherdSubscriptionMutationPayload>;
19207
+ subscription?: Maybe<ShepherdSubscriptionMutations>;
18898
19208
  testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
18899
19209
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
18900
19210
  updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
@@ -18952,6 +19262,7 @@ export declare type ShepherdQuery = {
18952
19262
  shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
18953
19263
  shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
18954
19264
  shepherdUser?: Maybe<ShepherdUser>;
19265
+ subscriptions?: Maybe<ShepherdSubscriptionsResult>;
18955
19266
  };
18956
19267
  export declare type ShepherdQueryShepherdActivityArgs = {
18957
19268
  actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
@@ -18978,6 +19289,9 @@ export declare type ShepherdQueryShepherdSubscriptionsArgs = {
18978
19289
  export declare type ShepherdQueryShepherdUserArgs = {
18979
19290
  id?: Maybe<Scalars['ID']>;
18980
19291
  };
19292
+ export declare type ShepherdQuerySubscriptionsArgs = {
19293
+ workspace: Scalars['ID'];
19294
+ };
18981
19295
  export declare enum ShepherdQueryErrorType {
18982
19296
  NoProductAccess = "NO_PRODUCT_ACCESS",
18983
19297
  Unauthorized = "UNAUTHORIZED"
@@ -18997,6 +19311,7 @@ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
18997
19311
  };
18998
19312
  export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
18999
19313
  __typename?: 'ShepherdSlackSubscription';
19314
+ ari: Scalars['ID'];
19000
19315
  callbackURL: Scalars['String'];
19001
19316
  channelId: Scalars['String'];
19002
19317
  createdBy: Scalars['String'];
@@ -19019,6 +19334,7 @@ export declare type ShepherdSubjectInput = {
19019
19334
  containerAri: Scalars['String'];
19020
19335
  };
19021
19336
  export declare type ShepherdSubscription = {
19337
+ ari: Scalars['ID'];
19022
19338
  createdBy: Scalars['String'];
19023
19339
  createdOn: Scalars['DateTime'];
19024
19340
  id: Scalars['ID'];
@@ -19030,6 +19346,13 @@ export declare type ShepherdSubscriptionConnection = {
19030
19346
  __typename?: 'ShepherdSubscriptionConnection';
19031
19347
  edges?: Maybe<Array<Maybe<ShepherdSubscriptionEdge>>>;
19032
19348
  };
19349
+ export declare type ShepherdSubscriptionCreateInput = {
19350
+ slack?: Maybe<ShepherdCreateSlackInput>;
19351
+ webhook?: Maybe<ShepherdCreateWebhookInput>;
19352
+ };
19353
+ export declare type ShepherdSubscriptionDeleteInput = {
19354
+ hardDelete?: Maybe<Scalars['Boolean']>;
19355
+ };
19033
19356
  export declare type ShepherdSubscriptionEdge = {
19034
19357
  cursor?: Maybe<Scalars['String']>;
19035
19358
  node?: Maybe<ShepherdSubscription>;
@@ -19040,10 +19363,36 @@ export declare type ShepherdSubscriptionMutationPayload = Payload & {
19040
19363
  node?: Maybe<ShepherdSubscription>;
19041
19364
  success: Scalars['Boolean'];
19042
19365
  };
19366
+ export declare type ShepherdSubscriptionMutations = {
19367
+ __typename?: 'ShepherdSubscriptionMutations';
19368
+ create?: Maybe<ShepherdSubscriptionMutationPayload>;
19369
+ delete?: Maybe<ShepherdSubscriptionMutationPayload>;
19370
+ test?: Maybe<ShepherdSubscriptionMutationPayload>;
19371
+ update?: Maybe<ShepherdSubscriptionMutationPayload>;
19372
+ };
19373
+ export declare type ShepherdSubscriptionMutationsCreateArgs = {
19374
+ input: ShepherdSubscriptionCreateInput;
19375
+ workspace: Scalars['ID'];
19376
+ };
19377
+ export declare type ShepherdSubscriptionMutationsDeleteArgs = {
19378
+ input?: Maybe<ShepherdSubscriptionDeleteInput>;
19379
+ subscriptionAri: Scalars['ID'];
19380
+ };
19381
+ export declare type ShepherdSubscriptionMutationsTestArgs = {
19382
+ subscriptionAri: Scalars['ID'];
19383
+ };
19384
+ export declare type ShepherdSubscriptionMutationsUpdateArgs = {
19385
+ input: ShepherdSubscriptionUpdateInput;
19386
+ subscriptionAri: Scalars['ID'];
19387
+ };
19043
19388
  export declare enum ShepherdSubscriptionStatus {
19044
19389
  Active = "ACTIVE",
19045
19390
  Inactive = "INACTIVE"
19046
19391
  }
19392
+ export declare type ShepherdSubscriptionUpdateInput = {
19393
+ slack?: Maybe<ShepherdUpdateSlackInput>;
19394
+ webhook?: Maybe<ShepherdUpdateWebhookInput>;
19395
+ };
19047
19396
  export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
19048
19397
  export declare type ShepherdTestSubscriptionPayload = Payload & {
19049
19398
  __typename?: 'ShepherdTestSubscriptionPayload';
@@ -19104,6 +19453,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
19104
19453
  };
19105
19454
  export declare type ShepherdUpdateWebhookInput = {
19106
19455
  callbackURL?: Maybe<Scalars['URL']>;
19456
+ destinationType?: Maybe<ShepherdWebhookDestinationType>;
19107
19457
  status?: Maybe<ShepherdSubscriptionStatus>;
19108
19458
  type?: Maybe<ShepherdWebhookType>;
19109
19459
  };
@@ -19117,6 +19467,10 @@ export declare type ShepherdWebhookConnection = {
19117
19467
  __typename?: 'ShepherdWebhookConnection';
19118
19468
  edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
19119
19469
  };
19470
+ export declare enum ShepherdWebhookDestinationType {
19471
+ Default = "DEFAULT",
19472
+ MicrosoftTeams = "MICROSOFT_TEAMS"
19473
+ }
19120
19474
  export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
19121
19475
  __typename?: 'ShepherdWebhookEdge';
19122
19476
  cursor?: Maybe<Scalars['String']>;
@@ -19124,10 +19478,12 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
19124
19478
  };
19125
19479
  export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
19126
19480
  __typename?: 'ShepherdWebhookSubscription';
19481
+ ari: Scalars['ID'];
19127
19482
  authToken: Scalars['String'];
19128
19483
  callbackURL: Scalars['String'];
19129
19484
  createdBy: Scalars['String'];
19130
19485
  createdOn: Scalars['DateTime'];
19486
+ destinationType: ShepherdWebhookDestinationType;
19131
19487
  id: Scalars['ID'];
19132
19488
  status: ShepherdSubscriptionStatus;
19133
19489
  type?: Maybe<ShepherdWebhookType>;
@@ -19971,6 +20327,7 @@ export declare type TestingPerformance = {
19971
20327
  __typename?: 'TestingPerformance';
19972
20328
  myActivities: TestingMyActivity;
19973
20329
  };
20330
+ export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
19974
20331
  export declare type ThirdPartyRepositoryInput = {
19975
20332
  id: Scalars['ID'];
19976
20333
  webUrl?: Maybe<Scalars['String']>;
@@ -20990,6 +21347,7 @@ export declare type VirtualAgentIntentProjection = Node & {
20990
21347
  __typename?: 'VirtualAgentIntentProjection';
20991
21348
  id: Scalars['ID'];
20992
21349
  name: Scalars['String'];
21350
+ description?: Maybe<Scalars['String']>;
20993
21351
  questionProjections?: Maybe<VirtualAgentIntentQuestionProjectionsConnection>;
20994
21352
  };
20995
21353
  export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {