@forge/cli-shared 3.4.1-next.0 → 3.4.1-next.1

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.
@@ -5667,7 +5667,8 @@ export declare type DevOps = {
5667
5667
  entitiesByAssociations?: Maybe<DevOpsEntities>;
5668
5668
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
5669
5669
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
5670
- dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
5670
+ providers?: Maybe<DevOpsProviders>;
5671
+ providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
5671
5672
  ariGraph?: Maybe<AriGraph>;
5672
5673
  toolchain?: Maybe<Toolchain>;
5673
5674
  };
@@ -5680,9 +5681,14 @@ export declare type DevOpsSummarisedDeploymentsArgs = {
5680
5681
  export declare type DevOpsSummarisedEntitiesArgs = {
5681
5682
  ids: Array<Scalars['ID']>;
5682
5683
  };
5683
- export declare type DevOpsDataDepotProvidersArgs = {
5684
+ export declare type DevOpsProvidersArgs = {
5685
+ id: Scalars['ID'];
5686
+ providerTypes?: Maybe<Array<DevOpsProviderType>>;
5687
+ };
5688
+ export declare type DevOpsProvidersByIdsArgs = {
5684
5689
  id: Scalars['ID'];
5685
- providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
5690
+ providerIds?: Maybe<Array<Scalars['String']>>;
5691
+ providerTypes?: Maybe<Array<DevOpsProviderType>>;
5686
5692
  };
5687
5693
  export declare type DevOpsAvatar = {
5688
5694
  __typename?: 'DevOpsAvatar';
@@ -5694,11 +5700,20 @@ export declare type DevOpsBranchInfo = {
5694
5700
  name?: Maybe<Scalars['String']>;
5695
5701
  url?: Maybe<Scalars['String']>;
5696
5702
  };
5703
+ export declare type DevOpsBuildProvider = DevOpsDataProvider & {
5704
+ __typename?: 'DevOpsBuildProvider';
5705
+ id: Scalars['ID'];
5706
+ name?: Maybe<Scalars['String']>;
5707
+ homeUrl?: Maybe<Scalars['URL']>;
5708
+ logoUrl?: Maybe<Scalars['URL']>;
5709
+ documentationUrl?: Maybe<Scalars['URL']>;
5710
+ appInstallationId?: Maybe<Scalars['ID']>;
5711
+ };
5697
5712
  export declare type DevOpsContainerRelationshipEntityPropertyInput = {
5698
5713
  key: Scalars['String'];
5699
5714
  value: Scalars['JSON'];
5700
5715
  };
5701
- export declare type DevOpsDataDepotProvider = {
5716
+ export declare type DevOpsDataProvider = {
5702
5717
  id: Scalars['ID'];
5703
5718
  name?: Maybe<Scalars['String']>;
5704
5719
  homeUrl?: Maybe<Scalars['URL']>;
@@ -5706,32 +5721,23 @@ export declare type DevOpsDataDepotProvider = {
5706
5721
  documentationUrl?: Maybe<Scalars['URL']>;
5707
5722
  appInstallationId?: Maybe<Scalars['ID']>;
5708
5723
  };
5709
- export declare enum DevOpsDataDepotProviderType {
5710
- DevInfo = "DEV_INFO",
5711
- Build = "BUILD",
5712
- Deployment = "DEPLOYMENT",
5713
- FeatureFlag = "FEATURE_FLAG",
5714
- RemoteLinks = "REMOTE_LINKS",
5715
- Security = "SECURITY"
5716
- }
5717
- export declare type DevOpsDataDepotProviders = {
5718
- __typename?: 'DevOpsDataDepotProviders';
5719
- securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
5720
- };
5721
- export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
5722
- __typename?: 'DevOpsDataDepotSecurityProvider';
5724
+ export declare type DevOpsDeploymentProvider = DevOpsDataProvider & {
5725
+ __typename?: 'DevOpsDeploymentProvider';
5723
5726
  id: Scalars['ID'];
5724
5727
  name?: Maybe<Scalars['String']>;
5725
5728
  homeUrl?: Maybe<Scalars['URL']>;
5726
5729
  logoUrl?: Maybe<Scalars['URL']>;
5727
5730
  documentationUrl?: Maybe<Scalars['URL']>;
5728
5731
  appInstallationId?: Maybe<Scalars['ID']>;
5729
- linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
5730
5732
  };
5731
- export declare type DevOpsDataDepotSecurityProviderLinkedSecurityWorkspacesArgs = {
5732
- first?: Maybe<Scalars['Int']>;
5733
- after?: Maybe<Scalars['String']>;
5734
- type?: Maybe<Scalars['String']>;
5733
+ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
5734
+ __typename?: 'DevOpsDevInfoProvider';
5735
+ id: Scalars['ID'];
5736
+ name?: Maybe<Scalars['String']>;
5737
+ homeUrl?: Maybe<Scalars['URL']>;
5738
+ logoUrl?: Maybe<Scalars['URL']>;
5739
+ documentationUrl?: Maybe<Scalars['URL']>;
5740
+ appInstallationId?: Maybe<Scalars['ID']>;
5735
5741
  };
5736
5742
  export declare type DevOpsEntities = {
5737
5743
  __typename?: 'DevOpsEntities';
@@ -5801,13 +5807,14 @@ export declare type DevOpsFeatureFlagEdge = {
5801
5807
  cursor?: Maybe<Scalars['String']>;
5802
5808
  node?: Maybe<DevOpsFeatureFlag>;
5803
5809
  };
5804
- export declare type DevOpsFeatureFlagProvider = {
5810
+ export declare type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
5805
5811
  __typename?: 'DevOpsFeatureFlagProvider';
5806
5812
  id: Scalars['ID'];
5807
5813
  name?: Maybe<Scalars['String']>;
5808
5814
  homeUrl?: Maybe<Scalars['URL']>;
5809
5815
  logoUrl?: Maybe<Scalars['URL']>;
5810
5816
  documentationUrl?: Maybe<Scalars['URL']>;
5817
+ appInstallationId?: Maybe<Scalars['ID']>;
5811
5818
  createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5812
5819
  connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
5813
5820
  };
@@ -6016,9 +6023,22 @@ export declare type DevOpsProviderLinks = {
6016
6023
  home?: Maybe<Scalars['URL']>;
6017
6024
  listDeploymentsTemplate?: Maybe<Scalars['URL']>;
6018
6025
  };
6026
+ export declare enum DevOpsProviderType {
6027
+ DevInfo = "DEV_INFO",
6028
+ Build = "BUILD",
6029
+ Deployment = "DEPLOYMENT",
6030
+ FeatureFlag = "FEATURE_FLAG",
6031
+ RemoteLinks = "REMOTE_LINKS",
6032
+ Security = "SECURITY"
6033
+ }
6019
6034
  export declare type DevOpsProviders = {
6020
6035
  __typename?: 'DevOpsProviders';
6036
+ buildProviders?: Maybe<Array<Maybe<DevOpsBuildProvider>>>;
6037
+ deploymentProviders?: Maybe<Array<Maybe<DevOpsDeploymentProvider>>>;
6038
+ devInfoProviders?: Maybe<Array<Maybe<DevOpsDevInfoProvider>>>;
6021
6039
  featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
6040
+ remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
6041
+ securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
6022
6042
  };
6023
6043
  export declare enum DevOpsPullRequestApprovalStatus {
6024
6044
  Approved = "APPROVED",
@@ -6059,6 +6079,15 @@ export declare enum DevOpsRelationshipCertaintyFilter {
6059
6079
  Implicit = "IMPLICIT",
6060
6080
  All = "ALL"
6061
6081
  }
6082
+ export declare type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
6083
+ __typename?: 'DevOpsRemoteLinksProvider';
6084
+ id: Scalars['ID'];
6085
+ name?: Maybe<Scalars['String']>;
6086
+ homeUrl?: Maybe<Scalars['URL']>;
6087
+ logoUrl?: Maybe<Scalars['URL']>;
6088
+ documentationUrl?: Maybe<Scalars['URL']>;
6089
+ appInstallationId?: Maybe<Scalars['ID']>;
6090
+ };
6062
6091
  export declare enum DevOpsRepositoryHostingProviderFilter {
6063
6092
  BitbucketCloud = "BITBUCKET_CLOUD",
6064
6093
  ThirdParty = "THIRD_PARTY",
@@ -6071,6 +6100,28 @@ export declare type DevOpsReviewer = {
6071
6100
  userId?: Maybe<Scalars['ID']>;
6072
6101
  user?: Maybe<User>;
6073
6102
  };
6103
+ export declare type DevOpsSecurityProvider = DevOpsDataProvider & {
6104
+ __typename?: 'DevOpsSecurityProvider';
6105
+ id: Scalars['ID'];
6106
+ name?: Maybe<Scalars['String']>;
6107
+ homeUrl?: Maybe<Scalars['URL']>;
6108
+ logoUrl?: Maybe<Scalars['URL']>;
6109
+ documentationUrl?: Maybe<Scalars['URL']>;
6110
+ appInstallationId?: Maybe<Scalars['ID']>;
6111
+ linkedWorkspaces?: Maybe<AriGraphRelationshipConnection>;
6112
+ linkedContainers?: Maybe<AriGraphRelationshipConnection>;
6113
+ };
6114
+ export declare type DevOpsSecurityProviderLinkedWorkspacesArgs = {
6115
+ first?: Maybe<Scalars['Int']>;
6116
+ after?: Maybe<Scalars['String']>;
6117
+ type?: Maybe<Scalars['String']>;
6118
+ };
6119
+ export declare type DevOpsSecurityProviderLinkedContainersArgs = {
6120
+ first?: Maybe<Scalars['Int']>;
6121
+ after?: Maybe<Scalars['String']>;
6122
+ type?: Maybe<Scalars['String']>;
6123
+ jiraProjectId: Scalars['ID'];
6124
+ };
6074
6125
  export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
6075
6126
  __typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
6076
6127
  content?: Maybe<Scalars['String']>;
@@ -6086,8 +6137,7 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
6086
6137
  status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
6087
6138
  identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
6088
6139
  introducedDate?: Maybe<Scalars['DateTime']>;
6089
- securityContainerId?: Maybe<Scalars['ID']>;
6090
- securityContainer?: Maybe<ThirdPartyEntity>;
6140
+ securityContainer?: Maybe<ThirdPartySecurityContainer>;
6091
6141
  additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
6092
6142
  linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
6093
6143
  };
@@ -6398,9 +6448,11 @@ export declare type DevOpsTool = Node & {
6398
6448
  containerRelationshipType?: Maybe<Scalars['ID']>;
6399
6449
  recommended: Scalars['Boolean'];
6400
6450
  integration?: Maybe<DevOpsToolIntegration>;
6451
+ installed?: Maybe<Scalars['Boolean']>;
6401
6452
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
6402
6453
  auth?: Maybe<DevOpsToolAuth>;
6403
6454
  containerRelationships?: Maybe<AriGraphRelationshipConnection>;
6455
+ provider?: Maybe<DevOpsDataProvider>;
6404
6456
  jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
6405
6457
  };
6406
6458
  export declare type DevOpsToolNamespacesArgs = {
@@ -6415,6 +6467,10 @@ export declare type DevOpsToolContainerRelationshipsArgs = {
6415
6467
  after?: Maybe<Scalars['String']>;
6416
6468
  sort?: Maybe<AriGraphRelationshipsSort>;
6417
6469
  };
6470
+ export declare type DevOpsToolProviderArgs = {
6471
+ id: Scalars['ID'];
6472
+ providerTypes?: Maybe<Array<DevOpsProviderType>>;
6473
+ };
6418
6474
  export declare type DevOpsToolJiraProjectRelationshipsArgs = {
6419
6475
  jiraProjectId?: Maybe<Scalars['ID']>;
6420
6476
  first?: Maybe<Scalars['Int']>;
@@ -6672,6 +6728,7 @@ export declare type DevOpsTools = {
6672
6728
  tools?: Maybe<DevOpsToolConnection>;
6673
6729
  tool?: Maybe<DevOpsTool>;
6674
6730
  integration?: Maybe<DevOpsToolIntegration>;
6731
+ isInstalled?: Maybe<Scalars['Boolean']>;
6675
6732
  namespace?: Maybe<DevOpsToolNamespace>;
6676
6733
  container?: Maybe<DevOpsToolContainer>;
6677
6734
  navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
@@ -6696,6 +6753,9 @@ export declare type DevOpsToolsToolArgs = {
6696
6753
  export declare type DevOpsToolsIntegrationArgs = {
6697
6754
  id: Scalars['ID'];
6698
6755
  };
6756
+ export declare type DevOpsToolsIsInstalledArgs = {
6757
+ id: Scalars['ID'];
6758
+ };
6699
6759
  export declare type DevOpsToolsNamespaceArgs = {
6700
6760
  id: Scalars['ID'];
6701
6761
  };
@@ -10944,6 +11004,7 @@ export declare type JiraMutation = {
10944
11004
  updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
10945
11005
  updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
10946
11006
  updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
11007
+ saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
10947
11008
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
10948
11009
  devOps?: Maybe<JiraDevOpsMutation>;
10949
11010
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
@@ -11030,6 +11091,9 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
11030
11091
  export declare type JiraMutationUpdateVersionReleaseDateArgs = {
11031
11092
  input: JiraUpdateVersionReleaseDateInput;
11032
11093
  };
11094
+ export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
11095
+ input: JiraVersionIssueTableColumnHiddenStateInput;
11096
+ };
11033
11097
  export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
11034
11098
  id: Scalars['ID'];
11035
11099
  input: JiraReplaceIssueSearchViewFieldSetsInput;
@@ -11571,6 +11635,7 @@ export declare type JiraProject = Node & {
11571
11635
  action?: Maybe<JiraProjectAction>;
11572
11636
  virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
11573
11637
  isFavourite?: Maybe<Scalars['Boolean']>;
11638
+ lead?: Maybe<User>;
11574
11639
  devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
11575
11640
  devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
11576
11641
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
@@ -13759,6 +13824,7 @@ export declare type JiraVersion = Node & {
13759
13824
  nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13760
13825
  releaseNotes?: Maybe<JiraAdf>;
13761
13826
  devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
13827
+ versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
13762
13828
  canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
13763
13829
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13764
13830
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
@@ -13857,6 +13923,25 @@ export declare type JiraVersionEdge = {
13857
13923
  node?: Maybe<JiraVersion>;
13858
13924
  cursor: Scalars['String'];
13859
13925
  };
13926
+ export declare enum JiraVersionIssueTableColumn {
13927
+ IssueAssignee = "ISSUE_ASSIGNEE",
13928
+ IssueStatus = "ISSUE_STATUS",
13929
+ DevelopmentStatus = "DEVELOPMENT_STATUS",
13930
+ BuildStatus = "BUILD_STATUS",
13931
+ DeploymentStatus = "DEPLOYMENT_STATUS",
13932
+ FeatureFlagStatus = "FEATURE_FLAG_STATUS",
13933
+ MoreAction = "MORE_ACTION"
13934
+ }
13935
+ export declare type JiraVersionIssueTableColumnHiddenStateInput = {
13936
+ hiddenColumns: Array<JiraVersionIssueTableColumn>;
13937
+ versionId: Scalars['ID'];
13938
+ };
13939
+ export declare type JiraVersionIssueTableColumnHiddenStatePayload = Payload & {
13940
+ __typename?: 'JiraVersionIssueTableColumnHiddenStatePayload';
13941
+ success: Scalars['Boolean'];
13942
+ errors?: Maybe<Array<MutationError>>;
13943
+ version?: Maybe<JiraVersion>;
13944
+ };
13860
13945
  export declare enum JiraVersionIssuesFilter {
13861
13946
  All = "ALL",
13862
13947
  Todo = "TODO",
@@ -14657,12 +14742,21 @@ export declare type MercuryDeleteOrgLevelInput = {
14657
14742
  export declare type MercuryDeleteStrategyInput = {
14658
14743
  strategyId: Scalars['ID'];
14659
14744
  };
14745
+ export declare type MercuryDeleteTeamAllocationEntriesInput = {
14746
+ id: Scalars['ID'];
14747
+ teamAllocationEntries: Array<MercuryTeamAllocationDeleteEntryInput>;
14748
+ };
14660
14749
  export declare type MercuryDeleteTeamAllocationInput = {
14661
14750
  id: Scalars['ID'];
14662
14751
  };
14663
14752
  export declare type MercuryDeleteTeamInput = {
14664
14753
  teamId: Scalars['ID'];
14665
14754
  };
14755
+ export declare type MercuryDepartment = {
14756
+ __typename?: 'MercuryDepartment';
14757
+ id: Scalars['ID'];
14758
+ name?: Maybe<Scalars['String']>;
14759
+ };
14666
14760
  export declare type MercuryInitiative = {
14667
14761
  __typename?: 'MercuryInitiative';
14668
14762
  name?: Maybe<Scalars['String']>;
@@ -14780,6 +14874,7 @@ export declare type MercuryMutationApi = {
14780
14874
  updateOrgLevelOnTeam?: Maybe<MercuryTeamMutationPayload>;
14781
14875
  createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
14782
14876
  deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
14877
+ deleteTeamAllocationEntries?: Maybe<MercuryTeamAllocationMutationPayload>;
14783
14878
  allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
14784
14879
  transitionTeamAllocationStatus?: Maybe<MercuryTeamAllocationStatusTransitionMutationPayload>;
14785
14880
  createInterval?: Maybe<MercuryIntervalMutationPayload>;
@@ -14831,6 +14926,9 @@ export declare type MercuryMutationApiCreateTeamAllocationArgs = {
14831
14926
  export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
14832
14927
  input: MercuryDeleteTeamAllocationInput;
14833
14928
  };
14929
+ export declare type MercuryMutationApiDeleteTeamAllocationEntriesArgs = {
14930
+ input: MercuryDeleteTeamAllocationEntriesInput;
14931
+ };
14834
14932
  export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
14835
14933
  input: MercuryAllocateTeamCapacityInput;
14836
14934
  };
@@ -14889,6 +14987,11 @@ export declare type MercuryOrgLevelMutationPayload = Payload & {
14889
14987
  statusCode: Scalars['Int'];
14890
14988
  message: Scalars['String'];
14891
14989
  };
14990
+ export declare type MercuryPillar = {
14991
+ __typename?: 'MercuryPillar';
14992
+ id: Scalars['ID'];
14993
+ name?: Maybe<Scalars['String']>;
14994
+ };
14892
14995
  export declare type MercuryQueryApi = {
14893
14996
  __typename?: 'MercuryQueryApi';
14894
14997
  strategies?: Maybe<MercuryStrategyConnection>;
@@ -14907,6 +15010,7 @@ export declare type MercuryQueryApi = {
14907
15010
  teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
14908
15011
  intervals?: Maybe<MercuryIntervalConnection>;
14909
15012
  interval?: Maybe<MercuryInterval>;
15013
+ activeInterval?: Maybe<MercuryInterval>;
14910
15014
  orgLevel?: Maybe<MercuryOrgLevel>;
14911
15015
  orgLevels?: Maybe<MercuryOrgLevelConnection>;
14912
15016
  };
@@ -14972,6 +15076,7 @@ export declare type MercuryQueryApiOrgLevelArgs = {
14972
15076
  id: Scalars['ID'];
14973
15077
  };
14974
15078
  export declare type MercuryQueryApiOrgLevelsArgs = {
15079
+ levelType?: Maybe<MercuryLevelType>;
14975
15080
  first?: Maybe<Scalars['Int']>;
14976
15081
  after?: Maybe<Scalars['String']>;
14977
15082
  };
@@ -15022,6 +15127,9 @@ export declare type MercuryTeam = Node & {
15022
15127
  name: Scalars['String'];
15023
15128
  active?: Maybe<Scalars['Boolean']>;
15024
15129
  orgLevelId?: Maybe<Scalars['ID']>;
15130
+ allocationStatusForActiveInterval?: Maybe<MercuryTeamAllocationStatus>;
15131
+ pillar?: Maybe<MercuryPillar>;
15132
+ department?: Maybe<MercuryDepartment>;
15025
15133
  };
15026
15134
  export declare type MercuryTeamAllocation = {
15027
15135
  __typename?: 'MercuryTeamAllocation';
@@ -15030,7 +15138,7 @@ export declare type MercuryTeamAllocation = {
15030
15138
  teamId: Scalars['ID'];
15031
15139
  teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
15032
15140
  status: MercuryTeamAllocationStatus;
15033
- nextPossibleStatuses: Array<MercuryTeamAllocationStatus>;
15141
+ transitions: Array<MercuryTeamAllocationTransition>;
15034
15142
  };
15035
15143
  export declare type MercuryTeamAllocationConnection = {
15036
15144
  __typename?: 'MercuryTeamAllocationConnection';
@@ -15038,6 +15146,10 @@ export declare type MercuryTeamAllocationConnection = {
15038
15146
  nodes?: Maybe<Array<Maybe<MercuryTeamAllocation>>>;
15039
15147
  pageInfo: PageInfo;
15040
15148
  };
15149
+ export declare type MercuryTeamAllocationDeleteEntryInput = {
15150
+ initiativeId: Scalars['String'];
15151
+ craftTypeId: Scalars['ID'];
15152
+ };
15041
15153
  export declare type MercuryTeamAllocationDeletePayload = Payload & {
15042
15154
  __typename?: 'MercuryTeamAllocationDeletePayload';
15043
15155
  deletedTeamAllocationId?: Maybe<Scalars['ID']>;
@@ -15083,6 +15195,10 @@ export declare type MercuryTeamAllocationStatusTransitionMutationPayload = Paylo
15083
15195
  statusCode: Scalars['Int'];
15084
15196
  message: Scalars['String'];
15085
15197
  };
15198
+ export declare type MercuryTeamAllocationTransition = {
15199
+ __typename?: 'MercuryTeamAllocationTransition';
15200
+ to: MercuryTeamAllocationStatus;
15201
+ };
15086
15202
  export declare type MercuryTeamConnection = {
15087
15203
  __typename?: 'MercuryTeamConnection';
15088
15204
  edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
@@ -15396,6 +15512,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
15396
15512
  relatedContexts?: Maybe<Array<Scalars['String']>>;
15397
15513
  relatedContextIds?: Maybe<Array<Scalars['String']>>;
15398
15514
  featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
15515
+ description?: Maybe<Scalars['JSON']>;
15399
15516
  };
15400
15517
  export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
15401
15518
  input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
@@ -17094,6 +17211,7 @@ export declare type PolarisView = {
17094
17211
  projectId: Scalars['Int'];
17095
17212
  viewSetId: Scalars['ID'];
17096
17213
  tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
17214
+ fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
17097
17215
  fields: Array<PolarisIdeaField>;
17098
17216
  jql?: Maybe<Scalars['String']>;
17099
17217
  immutable?: Maybe<Scalars['Boolean']>;
@@ -17117,6 +17235,7 @@ export declare type PolarisView = {
17117
17235
  sortMode: PolarisViewSortMode;
17118
17236
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
17119
17237
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
17238
+ layoutType?: Maybe<PolarisViewLayoutType>;
17120
17239
  };
17121
17240
  export declare type PolarisViewJqlArgs = {
17122
17241
  filter?: Maybe<PolarisFilterInput>;
@@ -17124,6 +17243,26 @@ export declare type PolarisViewJqlArgs = {
17124
17243
  export declare type PolarisViewCommentsArgs = {
17125
17244
  limit?: Maybe<Scalars['Int']>;
17126
17245
  };
17246
+ export declare type PolarisViewFieldRollup = {
17247
+ __typename?: 'PolarisViewFieldRollup';
17248
+ field: PolarisIdeaField;
17249
+ rollup: PolarisViewFieldRollupType;
17250
+ };
17251
+ export declare type PolarisViewFieldRollupInput = {
17252
+ field: Scalars['ID'];
17253
+ rollup: PolarisViewFieldRollupType;
17254
+ };
17255
+ export declare enum PolarisViewFieldRollupType {
17256
+ Avg = "AVG",
17257
+ Count = "COUNT",
17258
+ Empty = "EMPTY",
17259
+ Filled = "FILLED",
17260
+ Max = "MAX",
17261
+ Median = "MEDIAN",
17262
+ Min = "MIN",
17263
+ Range = "RANGE",
17264
+ Sum = "SUM"
17265
+ }
17127
17266
  export declare type PolarisViewFilter = {
17128
17267
  __typename?: 'PolarisViewFilter';
17129
17268
  kind: PolarisViewFilterKind;
@@ -17170,6 +17309,10 @@ export declare type PolarisViewLastViewed = {
17170
17309
  aaid: Scalars['String'];
17171
17310
  account?: Maybe<User>;
17172
17311
  };
17312
+ export declare enum PolarisViewLayoutType {
17313
+ Detailed = "DETAILED",
17314
+ Compact = "COMPACT"
17315
+ }
17173
17316
  export declare type PolarisViewSet = {
17174
17317
  __typename?: 'PolarisViewSet';
17175
17318
  id: Scalars['ID'];
@@ -19032,6 +19175,18 @@ export declare type ShepherdAlertEdge = {
19032
19175
  cursor?: Maybe<Scalars['String']>;
19033
19176
  node?: Maybe<ShepherdAlert>;
19034
19177
  };
19178
+ export declare type ShepherdAlertQueries = {
19179
+ __typename?: 'ShepherdAlertQueries';
19180
+ byAri?: Maybe<ShepherdAlertResult>;
19181
+ byWorkspace?: Maybe<ShepherdAlertsResult>;
19182
+ };
19183
+ export declare type ShepherdAlertQueriesByAriArgs = {
19184
+ id: Scalars['ID'];
19185
+ };
19186
+ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
19187
+ aaid?: Maybe<Scalars['ID']>;
19188
+ workspaceId: Scalars['ID'];
19189
+ };
19035
19190
  export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
19036
19191
  export declare enum ShepherdAlertSeverity {
19037
19192
  Critical = "CRITICAL",
@@ -19070,6 +19225,7 @@ export declare enum ShepherdAlertTemplateType {
19070
19225
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
19071
19226
  JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
19072
19227
  OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
19228
+ PasswordResetCompletedUser = "PASSWORD_RESET_COMPLETED_USER",
19073
19229
  RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
19074
19230
  TokenCreated = "TOKEN_CREATED",
19075
19231
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
@@ -19176,7 +19332,6 @@ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
19176
19332
  };
19177
19333
  export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
19178
19334
  __typename?: 'ShepherdEmailSubscription';
19179
- ari: Scalars['ID'];
19180
19335
  createdBy: Scalars['String'];
19181
19336
  createdOn: Scalars['DateTime'];
19182
19337
  email: Scalars['String'];
@@ -19216,6 +19371,7 @@ export declare type ShepherdMutation = {
19216
19371
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
19217
19372
  updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
19218
19373
  updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
19374
+ workspace?: Maybe<ShepherdWorkspaceMutations>;
19219
19375
  };
19220
19376
  export declare type ShepherdMutationCreateAlertArgs = {
19221
19377
  input: ShepherdCreateAlertInput;
@@ -19261,6 +19417,7 @@ export declare type ShepherdOrganization = {
19261
19417
  export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
19262
19418
  export declare type ShepherdQuery = {
19263
19419
  __typename?: 'ShepherdQuery';
19420
+ alert?: Maybe<ShepherdAlertQueries>;
19264
19421
  shepherdActivity?: Maybe<ShepherdActivityResult>;
19265
19422
  shepherdAlert?: Maybe<ShepherdAlertResult>;
19266
19423
  shepherdAlerts?: Maybe<ShepherdAlertsResult>;
@@ -19298,7 +19455,7 @@ export declare type ShepherdQueryShepherdUserArgs = {
19298
19455
  id?: Maybe<Scalars['ID']>;
19299
19456
  };
19300
19457
  export declare type ShepherdQuerySubscriptionsArgs = {
19301
- workspace: Scalars['ID'];
19458
+ workspaceId: Scalars['ID'];
19302
19459
  };
19303
19460
  export declare type ShepherdQueryWorkspaceArgs = {
19304
19461
  cloudId?: Maybe<Scalars['ID']>;
@@ -19326,7 +19483,6 @@ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
19326
19483
  };
19327
19484
  export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
19328
19485
  __typename?: 'ShepherdSlackSubscription';
19329
- ari: Scalars['ID'];
19330
19486
  callbackURL: Scalars['String'];
19331
19487
  channelId: Scalars['String'];
19332
19488
  createdBy: Scalars['String'];
@@ -19349,7 +19505,6 @@ export declare type ShepherdSubjectInput = {
19349
19505
  containerAri: Scalars['String'];
19350
19506
  };
19351
19507
  export declare type ShepherdSubscription = {
19352
- ari: Scalars['ID'];
19353
19508
  createdBy: Scalars['String'];
19354
19509
  createdOn: Scalars['DateTime'];
19355
19510
  id: Scalars['ID'];
@@ -19387,18 +19542,18 @@ export declare type ShepherdSubscriptionMutations = {
19387
19542
  };
19388
19543
  export declare type ShepherdSubscriptionMutationsCreateArgs = {
19389
19544
  input: ShepherdSubscriptionCreateInput;
19390
- workspace: Scalars['ID'];
19545
+ workspaceId: Scalars['ID'];
19391
19546
  };
19392
19547
  export declare type ShepherdSubscriptionMutationsDeleteArgs = {
19548
+ id: Scalars['ID'];
19393
19549
  input?: Maybe<ShepherdSubscriptionDeleteInput>;
19394
- subscriptionAri: Scalars['ID'];
19395
19550
  };
19396
19551
  export declare type ShepherdSubscriptionMutationsTestArgs = {
19397
- subscriptionAri: Scalars['ID'];
19552
+ id: Scalars['ID'];
19398
19553
  };
19399
19554
  export declare type ShepherdSubscriptionMutationsUpdateArgs = {
19555
+ id: Scalars['ID'];
19400
19556
  input: ShepherdSubscriptionUpdateInput;
19401
- subscriptionAri: Scalars['ID'];
19402
19557
  };
19403
19558
  export declare enum ShepherdSubscriptionStatus {
19404
19559
  Active = "ACTIVE",
@@ -19493,7 +19648,6 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
19493
19648
  };
19494
19649
  export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
19495
19650
  __typename?: 'ShepherdWebhookSubscription';
19496
- ari: Scalars['ID'];
19497
19651
  authToken: Scalars['String'];
19498
19652
  callbackURL: Scalars['String'];
19499
19653
  createdBy: Scalars['String'];
@@ -19512,9 +19666,10 @@ export declare enum ShepherdWebhookType {
19512
19666
  }
19513
19667
  export declare type ShepherdWorkspace = {
19514
19668
  __typename?: 'ShepherdWorkspace';
19515
- ari: Scalars['ID'];
19516
19669
  cloudId: Scalars['ID'];
19670
+ id: Scalars['ID'];
19517
19671
  orgId: Scalars['ID'];
19672
+ shouldOnboard?: Maybe<Scalars['Boolean']>;
19518
19673
  };
19519
19674
  export declare type ShepherdWorkspaceConnection = {
19520
19675
  __typename?: 'ShepherdWorkspaceConnection';
@@ -19524,7 +19679,24 @@ export declare type ShepherdWorkspaceEdge = {
19524
19679
  __typename?: 'ShepherdWorkspaceEdge';
19525
19680
  node?: Maybe<ShepherdWorkspace>;
19526
19681
  };
19682
+ export declare type ShepherdWorkspaceMutationPayload = Payload & {
19683
+ __typename?: 'ShepherdWorkspaceMutationPayload';
19684
+ errors?: Maybe<Array<MutationError>>;
19685
+ node?: Maybe<ShepherdWorkspace>;
19686
+ success: Scalars['Boolean'];
19687
+ };
19688
+ export declare type ShepherdWorkspaceMutations = {
19689
+ __typename?: 'ShepherdWorkspaceMutations';
19690
+ update?: Maybe<ShepherdWorkspaceMutationPayload>;
19691
+ };
19692
+ export declare type ShepherdWorkspaceMutationsUpdateArgs = {
19693
+ id: Scalars['ID'];
19694
+ input: ShepherdWorkspaceUpdateInput;
19695
+ };
19527
19696
  export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
19697
+ export declare type ShepherdWorkspaceUpdateInput = {
19698
+ shouldOnboard: Scalars['Boolean'];
19699
+ };
19528
19700
  export declare type SmartsContext = {
19529
19701
  userId: Scalars['String'];
19530
19702
  tenantId: Scalars['String'];
@@ -19627,6 +19799,7 @@ export declare type SoftwareCard = {
19627
19799
  priority?: Maybe<CardPriority>;
19628
19800
  dueDate?: Maybe<Scalars['String']>;
19629
19801
  fixVersionsIds: Array<Scalars['ID']>;
19802
+ canSplitIssue: Scalars['Boolean'];
19630
19803
  };
19631
19804
  export declare type SoftwareCardChildrenInfo = {
19632
19805
  __typename?: 'SoftwareCardChildrenInfo';
@@ -20357,7 +20530,6 @@ export declare type TestingPerformance = {
20357
20530
  __typename?: 'TestingPerformance';
20358
20531
  myActivities: TestingMyActivity;
20359
20532
  };
20360
- export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
20361
20533
  export declare type ThirdPartyRepositoryInput = {
20362
20534
  id: Scalars['ID'];
20363
20535
  webUrl?: Maybe<Scalars['String']>;
@@ -20717,6 +20889,7 @@ export declare type TrelloBoard = {
20717
20889
  id: Scalars['ID'];
20718
20890
  lastActivityAt?: Maybe<Scalars['DateTime']>;
20719
20891
  name: Scalars['String'];
20892
+ objectId: Scalars['String'];
20720
20893
  prefs: TrelloBoardPrefs;
20721
20894
  shortLink: Scalars['TrelloShortLink'];
20722
20895
  viewer?: Maybe<TrelloBoardViewer>;
@@ -21258,6 +21431,7 @@ export declare type UpdatePolarisViewInput = {
21258
21431
  jql?: Maybe<Scalars['String']>;
21259
21432
  userJql?: Maybe<Scalars['String']>;
21260
21433
  tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSizeInput>>;
21434
+ fieldRollups?: Maybe<Array<PolarisViewFieldRollupInput>>;
21261
21435
  fields?: Maybe<Array<Scalars['ID']>>;
21262
21436
  groupBy?: Maybe<Scalars['ID']>;
21263
21437
  groupValues?: Maybe<Array<PolarisGroupValueInput>>;
@@ -21273,6 +21447,7 @@ export declare type UpdatePolarisViewInput = {
21273
21447
  sortMode?: Maybe<PolarisViewSortMode>;
21274
21448
  hideEmptyGroups?: Maybe<Scalars['Boolean']>;
21275
21449
  enabledAutoSave?: Maybe<Scalars['Boolean']>;
21450
+ layoutType?: Maybe<PolarisViewLayoutType>;
21276
21451
  };
21277
21452
  export declare type UpdatePolarisViewPayload = Payload & {
21278
21453
  __typename?: 'UpdatePolarisViewPayload';
@@ -21417,6 +21592,12 @@ export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
21417
21592
  errors?: Maybe<Array<MutationError>>;
21418
21593
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
21419
21594
  };
21595
+ export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
21596
+ __typename?: 'VirtualAgentDeleteIntentRuleProjectionPayload';
21597
+ id: Scalars['ID'];
21598
+ success: Scalars['Boolean'];
21599
+ errors?: Maybe<Array<MutationError>>;
21600
+ };
21420
21601
  export declare type VirtualAgentIntentProjection = Node & {
21421
21602
  __typename?: 'VirtualAgentIntentProjection';
21422
21603
  id: Scalars['ID'];
@@ -21471,6 +21652,9 @@ export declare type VirtualAgentMutationApi = {
21471
21652
  __typename?: 'VirtualAgentMutationApi';
21472
21653
  updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
21473
21654
  createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
21655
+ updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
21656
+ updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
21657
+ deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
21474
21658
  };
21475
21659
  export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
21476
21660
  input: VirtualAgentUpdateConfigurationInput;
@@ -21479,6 +21663,17 @@ export declare type VirtualAgentMutationApiCreateIntentRuleProjectionArgs = {
21479
21663
  virtualAgentConfigurationId: Scalars['ID'];
21480
21664
  input: VirtualAgentCreateIntentRuleProjectionInput;
21481
21665
  };
21666
+ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
21667
+ virtualAgentIntentRuleProjectionId: Scalars['ID'];
21668
+ input: VirtualAgentUpdateIntentRuleProjectionInput;
21669
+ };
21670
+ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsArgs = {
21671
+ virtualAgentIntentRuleProjectionId: Scalars['ID'];
21672
+ input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
21673
+ };
21674
+ export declare type VirtualAgentMutationApiDeleteIntentRuleProjectionArgs = {
21675
+ virtualAgentIntentRuleProjectionId: Scalars['ID'];
21676
+ };
21482
21677
  export declare type VirtualAgentQueryApi = {
21483
21678
  __typename?: 'VirtualAgentQueryApi';
21484
21679
  virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
@@ -21508,6 +21703,36 @@ export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
21508
21703
  errors?: Maybe<Array<MutationError>>;
21509
21704
  virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
21510
21705
  };
21706
+ export declare type VirtualAgentUpdateIntentRuleProjectionInput = {
21707
+ isEnabled?: Maybe<Scalars['Boolean']>;
21708
+ name?: Maybe<Scalars['String']>;
21709
+ description?: Maybe<Scalars['String']>;
21710
+ };
21711
+ export declare type VirtualAgentUpdateIntentRuleProjectionPayload = Payload & {
21712
+ __typename?: 'VirtualAgentUpdateIntentRuleProjectionPayload';
21713
+ success: Scalars['Boolean'];
21714
+ errors?: Maybe<Array<MutationError>>;
21715
+ intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
21716
+ };
21717
+ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsInput = {
21718
+ name?: Maybe<Scalars['String']>;
21719
+ description?: Maybe<Scalars['String']>;
21720
+ addedQuestions?: Maybe<Array<Scalars['String']>>;
21721
+ updatedQuestions?: Maybe<Array<VirtualAgentUpdatedQuestionInput>>;
21722
+ deletedQuestions?: Maybe<Array<Scalars['ID']>>;
21723
+ };
21724
+ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Payload & {
21725
+ __typename?: 'VirtualAgentUpdateIntentRuleProjectionQuestionsPayload';
21726
+ success: Scalars['Boolean'];
21727
+ errors?: Maybe<Array<MutationError>>;
21728
+ intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
21729
+ createdAndUpdatedQuestions?: Maybe<Array<VirtualAgentIntentQuestionProjection>>;
21730
+ deletedQuestions?: Maybe<Array<Scalars['ID']>>;
21731
+ };
21732
+ export declare type VirtualAgentUpdatedQuestionInput = {
21733
+ id: Scalars['ID'];
21734
+ question: Scalars['String'];
21735
+ };
21511
21736
  export declare type WatchMarketplaceAppPayload = Payload & {
21512
21737
  __typename?: 'WatchMarketplaceAppPayload';
21513
21738
  success: Scalars['Boolean'];