@forge/cli-shared 3.3.0-next.1 → 3.3.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.
@@ -335,7 +335,8 @@ export declare enum ApiGroup {
335
335
  Help = "HELP",
336
336
  VirtualAgent = "VIRTUAL_AGENT",
337
337
  CollaborationGraph = "COLLABORATION_GRAPH",
338
- DevopsThirdParty = "DEVOPS_THIRD_PARTY"
338
+ DevopsThirdParty = "DEVOPS_THIRD_PARTY",
339
+ CloudAdmin = "CLOUD_ADMIN"
339
340
  }
340
341
  export declare type App = {
341
342
  __typename?: 'App';
@@ -452,6 +453,7 @@ export declare type AppEnvironment = {
452
453
  scopes?: Maybe<Array<Scalars['String']>>;
453
454
  versions?: Maybe<AppEnvironmentVersionConnection>;
454
455
  oauthClient: AtlassianOAuthClient;
456
+ app?: Maybe<App>;
455
457
  variables?: Maybe<Array<AppEnvironmentVariable>>;
456
458
  installations?: Maybe<Array<AppInstallation>>;
457
459
  deployments?: Maybe<Array<AppDeployment>>;
@@ -918,9 +920,15 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
918
920
  };
919
921
  export declare type AriGraph = {
920
922
  __typename?: 'AriGraph';
923
+ hasRelationship?: Maybe<Scalars['Boolean']>;
921
924
  relationship?: Maybe<AriGraphRelationship>;
922
925
  relationships?: Maybe<AriGraphRelationshipConnection>;
923
926
  };
927
+ export declare type AriGraphHasRelationshipArgs = {
928
+ from?: Maybe<Scalars['ID']>;
929
+ type: Scalars['ID'];
930
+ to?: Maybe<Scalars['ID']>;
931
+ };
924
932
  export declare type AriGraphRelationshipArgs = {
925
933
  from: Scalars['ID'];
926
934
  type: Scalars['ID'];
@@ -2399,6 +2407,7 @@ export declare type CompassCreateMetricSourceInput = {
2399
2407
  url?: Maybe<Scalars['String']>;
2400
2408
  derived?: Maybe<Scalars['Boolean']>;
2401
2409
  externalConfiguration?: Maybe<CompassExternalMetricSourceConfigurationInput>;
2410
+ forgeAppId?: Maybe<Scalars['ID']>;
2402
2411
  };
2403
2412
  export declare type CompassCreateMetricSourcePayload = Payload & {
2404
2413
  __typename?: 'CompassCreateMetricSourcePayload';
@@ -4174,6 +4183,7 @@ export declare enum ConfluenceOperationTarget {
4174
4183
  }
4175
4184
  export declare type ConfluencePage = {
4176
4185
  __typename?: 'ConfluencePage';
4186
+ ancestors?: Maybe<Array<Maybe<ConfluencePage>>>;
4177
4187
  author?: Maybe<ConfluenceUserInfo>;
4178
4188
  body?: Maybe<ConfluenceBodies>;
4179
4189
  comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
@@ -4857,6 +4867,15 @@ export declare type CreateAppTunnelsInput = {
4857
4867
  tunnelDefinitions: TunnelDefinitionsInput;
4858
4868
  force?: Maybe<Scalars['Boolean']>;
4859
4869
  };
4870
+ export declare type CreateCardsOutput = {
4871
+ __typename?: 'CreateCardsOutput';
4872
+ boardScope?: Maybe<BoardScope>;
4873
+ newCards?: Maybe<Array<Maybe<SoftwareCard>>>;
4874
+ statusCode: Scalars['Int'];
4875
+ success: Scalars['Boolean'];
4876
+ message: Scalars['String'];
4877
+ clientMutationId?: Maybe<Scalars['ID']>;
4878
+ };
4860
4879
  export declare type CreateColumnInput = {
4861
4880
  boardId: Scalars['ID'];
4862
4881
  columnName: Scalars['String'];
@@ -5689,10 +5708,8 @@ export declare type DevOps = {
5689
5708
  __typename?: 'DevOps';
5690
5709
  entitiesByAssociations?: Maybe<DevOpsEntities>;
5691
5710
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
5692
- pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
5693
5711
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
5694
5712
  dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
5695
- securityVulnerabilityEntityDetails?: Maybe<Array<Maybe<DevOpsSecurityVulnerabilityDetails>>>;
5696
5713
  ariGraph?: Maybe<AriGraph>;
5697
5714
  toolchain?: Maybe<Toolchain>;
5698
5715
  };
@@ -5702,9 +5719,6 @@ export declare type DevOpsEntitiesByAssociationsArgs = {
5702
5719
  export declare type DevOpsSummarisedDeploymentsArgs = {
5703
5720
  ids: Array<Scalars['ID']>;
5704
5721
  };
5705
- export declare type DevOpsPullRequestEntityDetailsArgs = {
5706
- ids: Array<Scalars['ID']>;
5707
- };
5708
5722
  export declare type DevOpsSummarisedEntitiesArgs = {
5709
5723
  ids: Array<Scalars['ID']>;
5710
5724
  };
@@ -5712,9 +5726,6 @@ export declare type DevOpsDataDepotProvidersArgs = {
5712
5726
  id: Scalars['ID'];
5713
5727
  providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
5714
5728
  };
5715
- export declare type DevOpsSecurityVulnerabilityEntityDetailsArgs = {
5716
- ids: Array<Scalars['ID']>;
5717
- };
5718
5729
  export declare type DevOpsAvatar = {
5719
5730
  __typename?: 'DevOpsAvatar';
5720
5731
  url?: Maybe<Scalars['URL']>;
@@ -6064,6 +6075,7 @@ export declare type DevOpsPullRequestDetails = {
6064
6075
  repositoryUrl?: Maybe<Scalars['String']>;
6065
6076
  title?: Maybe<Scalars['String']>;
6066
6077
  commentCount?: Maybe<Scalars['Int']>;
6078
+ sanitizedAuthorId?: Maybe<Scalars['String']>;
6067
6079
  authorId?: Maybe<Scalars['ID']>;
6068
6080
  author?: Maybe<User>;
6069
6081
  reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
@@ -6097,6 +6109,7 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
6097
6109
  export declare type DevOpsReviewer = {
6098
6110
  __typename?: 'DevOpsReviewer';
6099
6111
  approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
6112
+ sanitizedUserId?: Maybe<Scalars['String']>;
6100
6113
  userId?: Maybe<Scalars['ID']>;
6101
6114
  user?: Maybe<User>;
6102
6115
  };
@@ -6117,6 +6130,12 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
6117
6130
  introducedDate?: Maybe<Scalars['DateTime']>;
6118
6131
  securityContainerId?: Maybe<Scalars['ID']>;
6119
6132
  additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
6133
+ linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
6134
+ };
6135
+ export declare type DevOpsSecurityVulnerabilityDetailsLinkedJiraIssuesArgs = {
6136
+ first?: Maybe<Scalars['Int']>;
6137
+ after?: Maybe<Scalars['String']>;
6138
+ type?: Maybe<Scalars['String']>;
6120
6139
  };
6121
6140
  export declare type DevOpsSecurityVulnerabilityIdentifier = {
6122
6141
  __typename?: 'DevOpsSecurityVulnerabilityIdentifier';
@@ -6693,6 +6712,7 @@ export declare type DevOpsTools = {
6693
6712
  __typename?: 'DevOpsTools';
6694
6713
  tools?: Maybe<DevOpsToolConnection>;
6695
6714
  tool?: Maybe<DevOpsTool>;
6715
+ integration?: Maybe<DevOpsToolIntegration>;
6696
6716
  namespace?: Maybe<DevOpsToolNamespace>;
6697
6717
  container?: Maybe<DevOpsToolContainer>;
6698
6718
  navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
@@ -6714,6 +6734,9 @@ export declare type DevOpsToolsToolsArgs = {
6714
6734
  export declare type DevOpsToolsToolArgs = {
6715
6735
  id: Scalars['ID'];
6716
6736
  };
6737
+ export declare type DevOpsToolsIntegrationArgs = {
6738
+ id: Scalars['ID'];
6739
+ };
6717
6740
  export declare type DevOpsToolsNamespaceArgs = {
6718
6741
  id: Scalars['ID'];
6719
6742
  };
@@ -6823,6 +6846,7 @@ export declare type EcosystemQuery = {
6823
6846
  appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
6824
6847
  appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
6825
6848
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
6849
+ appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
6826
6850
  forgeMetrics?: Maybe<ForgeMetricsQuery>;
6827
6851
  forgeAlerts?: Maybe<ForgeAlertsQuery>;
6828
6852
  };
@@ -6855,6 +6879,9 @@ export declare type EcosystemQueryAppInstallationsByAppArgs = {
6855
6879
  export declare type EcosystemQueryFortifiedMetricsArgs = {
6856
6880
  appKey: Scalars['ID'];
6857
6881
  };
6882
+ export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
6883
+ oauthClientIds: Array<Scalars['ID']>;
6884
+ };
6858
6885
  export declare type EcosystemQueryForgeMetricsArgs = {
6859
6886
  appId: Scalars['ID'];
6860
6887
  };
@@ -8866,6 +8893,11 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
8866
8893
  version?: Maybe<JiraVersion>;
8867
8894
  relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
8868
8895
  };
8896
+ export declare type JiraCreateShortcutInput = {
8897
+ projectId: Scalars['ID'];
8898
+ type: JiraProjectShortcutType;
8899
+ shortcutData: JiraShortcutDataInput;
8900
+ };
8869
8901
  export declare type JiraCustomFilter = JiraFilter & Node & {
8870
8902
  __typename?: 'JiraCustomFilter';
8871
8903
  id: Scalars['ID'];
@@ -8947,6 +8979,10 @@ export declare type JiraDefaultGrantTypeValue = Node & {
8947
8979
  id: Scalars['ID'];
8948
8980
  name: Scalars['String'];
8949
8981
  };
8982
+ export declare type JiraDeleteShortcutInput = {
8983
+ projectId: Scalars['ID'];
8984
+ shortcutId: Scalars['ID'];
8985
+ };
8950
8986
  export declare enum JiraDeploymentsFeaturePrecondition {
8951
8987
  NotAvailable = "NOT_AVAILABLE",
8952
8988
  DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
@@ -10893,6 +10929,7 @@ export declare type JiraMutation = {
10893
10929
  updateNumberField?: Maybe<JiraNumberFieldPayload>;
10894
10930
  updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
10895
10931
  updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
10932
+ updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
10896
10933
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
10897
10934
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
10898
10935
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
@@ -10906,6 +10943,9 @@ export declare type JiraMutation = {
10906
10943
  updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
10907
10944
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
10908
10945
  devOps?: Maybe<JiraDevOpsMutation>;
10946
+ createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
10947
+ updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
10948
+ deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
10909
10949
  };
10910
10950
  export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
10911
10951
  input: JiraUpdateReleaseNotesConfigurationInput;
@@ -10944,6 +10984,9 @@ export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
10944
10984
  export declare type JiraMutationUpdateSingleSelectFieldArgs = {
10945
10985
  input: JiraUpdateSingleSelectFieldInput;
10946
10986
  };
10987
+ export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
10988
+ input: JiraUpdateSingleLineTextFieldInput;
10989
+ };
10947
10990
  export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
10948
10991
  input: JiraPermissionSchemeAddGrantInput;
10949
10992
  };
@@ -10982,6 +11025,15 @@ export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
10982
11025
  id: Scalars['ID'];
10983
11026
  input: JiraReplaceIssueSearchViewFieldSetsInput;
10984
11027
  };
11028
+ export declare type JiraMutationCreateProjectShortcutArgs = {
11029
+ input: JiraCreateShortcutInput;
11030
+ };
11031
+ export declare type JiraMutationUpdateProjectShortcutArgs = {
11032
+ input: JiraUpdateShortcutInput;
11033
+ };
11034
+ export declare type JiraMutationDeleteProjectShortcutArgs = {
11035
+ input: JiraDeleteShortcutInput;
11036
+ };
10985
11037
  export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
10986
11038
  __typename?: 'JiraNumberField';
10987
11039
  id: Scalars['ID'];
@@ -11821,6 +11873,24 @@ export declare type JiraProjectRoleGrantTypeValue = Node & {
11821
11873
  id: Scalars['ID'];
11822
11874
  role: JiraRole;
11823
11875
  };
11876
+ export declare type JiraProjectShortcut = Node & {
11877
+ __typename?: 'JiraProjectShortcut';
11878
+ id: Scalars['ID'];
11879
+ name?: Maybe<Scalars['String']>;
11880
+ url?: Maybe<Scalars['String']>;
11881
+ type?: Maybe<JiraProjectShortcutType>;
11882
+ };
11883
+ export declare type JiraProjectShortcutPayload = Payload & {
11884
+ __typename?: 'JiraProjectShortcutPayload';
11885
+ shortcut?: Maybe<JiraProjectShortcut>;
11886
+ success: Scalars['Boolean'];
11887
+ errors?: Maybe<Array<MutationError>>;
11888
+ };
11889
+ export declare enum JiraProjectShortcutType {
11890
+ ShortcutLink = "SHORTCUT_LINK",
11891
+ Repository = "REPOSITORY",
11892
+ Unknown = "UNKNOWN"
11893
+ }
11824
11894
  export declare enum JiraProjectSortField {
11825
11895
  Name = "NAME",
11826
11896
  Key = "KEY",
@@ -13036,6 +13106,10 @@ export declare type JiraShareableEntityUserGrantInput = {
13036
13106
  id?: Maybe<Scalars['ID']>;
13037
13107
  userId: Scalars['ID'];
13038
13108
  };
13109
+ export declare type JiraShortcutDataInput = {
13110
+ name: Scalars['String'];
13111
+ url: Scalars['String'];
13112
+ };
13039
13113
  export declare type JiraSimilarIssues = {
13040
13114
  __typename?: 'JiraSimilarIssues';
13041
13115
  featureEnabled: Scalars['Boolean'];
@@ -13073,6 +13147,16 @@ export declare type JiraSingleLineTextField = Node & JiraIssueField & JiraIssueF
13073
13147
  fieldConfig?: Maybe<JiraFieldConfig>;
13074
13148
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
13075
13149
  };
13150
+ export declare type JiraSingleLineTextFieldOperationInput = {
13151
+ operation: JiraSingleValueFieldOperations;
13152
+ text?: Maybe<Scalars['String']>;
13153
+ };
13154
+ export declare type JiraSingleLineTextFieldPayload = Payload & {
13155
+ __typename?: 'JiraSingleLineTextFieldPayload';
13156
+ success: Scalars['Boolean'];
13157
+ errors?: Maybe<Array<MutationError>>;
13158
+ field?: Maybe<JiraSingleLineTextField>;
13159
+ };
13076
13160
  export declare type JiraSingleSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
13077
13161
  __typename?: 'JiraSingleSelectField';
13078
13162
  id: Scalars['ID'];
@@ -13458,6 +13542,15 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
13458
13542
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13459
13543
  version?: Maybe<JiraVersion>;
13460
13544
  };
13545
+ export declare type JiraUpdateShortcutInput = {
13546
+ projectId: Scalars['ID'];
13547
+ shortcutId: Scalars['ID'];
13548
+ shortcutData: JiraShortcutDataInput;
13549
+ };
13550
+ export declare type JiraUpdateSingleLineTextFieldInput = {
13551
+ id: Scalars['ID'];
13552
+ operation: JiraSingleLineTextFieldOperationInput;
13553
+ };
13461
13554
  export declare type JiraUpdateSingleSelectFieldInput = {
13462
13555
  id: Scalars['ID'];
13463
13556
  operation: JiraSingleSelectOperationInput;
@@ -13842,6 +13935,42 @@ export declare type JiraWorkLogEdge = {
13842
13935
  node?: Maybe<JiraWorklog>;
13843
13936
  cursor: Scalars['String'];
13844
13937
  };
13938
+ export declare type JiraWorkManagementOverview = Node & {
13939
+ __typename?: 'JiraWorkManagementOverview';
13940
+ id: Scalars['ID'];
13941
+ name?: Maybe<Scalars['String']>;
13942
+ author?: Maybe<User>;
13943
+ theme?: Maybe<Scalars['String']>;
13944
+ projects?: Maybe<JiraWorkManagementProjectConnection>;
13945
+ };
13946
+ export declare type JiraWorkManagementOverviewProjectsArgs = {
13947
+ first?: Maybe<Scalars['Int']>;
13948
+ after?: Maybe<Scalars['String']>;
13949
+ last?: Maybe<Scalars['Int']>;
13950
+ before?: Maybe<Scalars['String']>;
13951
+ };
13952
+ export declare type JiraWorkManagementOverviewConnection = {
13953
+ __typename?: 'JiraWorkManagementOverviewConnection';
13954
+ totalCount?: Maybe<Scalars['Int']>;
13955
+ pageInfo: PageInfo;
13956
+ edges?: Maybe<Array<Maybe<JiraWorkManagementOverviewEdge>>>;
13957
+ };
13958
+ export declare type JiraWorkManagementOverviewEdge = {
13959
+ __typename?: 'JiraWorkManagementOverviewEdge';
13960
+ node?: Maybe<JiraWorkManagementOverview>;
13961
+ cursor: Scalars['String'];
13962
+ };
13963
+ export declare type JiraWorkManagementProjectConnection = {
13964
+ __typename?: 'JiraWorkManagementProjectConnection';
13965
+ totalCount?: Maybe<Scalars['Int']>;
13966
+ pageInfo: PageInfo;
13967
+ edges?: Maybe<Array<Maybe<JiraWorkManagementProjectEdge>>>;
13968
+ };
13969
+ export declare type JiraWorkManagementProjectEdge = {
13970
+ __typename?: 'JiraWorkManagementProjectEdge';
13971
+ node?: Maybe<JiraProject>;
13972
+ cursor: Scalars['String'];
13973
+ };
13845
13974
  export declare type JiraWorkManagementProjectNavigationMetadata = {
13846
13975
  __typename?: 'JiraWorkManagementProjectNavigationMetadata';
13847
13976
  boardName: Scalars['String'];
@@ -14321,6 +14450,11 @@ export declare type MercuryAtlasGoal = Node & {
14321
14450
  __typename?: 'MercuryAtlasGoal';
14322
14451
  id: Scalars['ID'];
14323
14452
  };
14453
+ export declare type MercuryCreateIntervalInput = {
14454
+ name: Scalars['String'];
14455
+ startDate: Scalars['Date'];
14456
+ endDate: Scalars['Date'];
14457
+ };
14324
14458
  export declare type MercuryCreateJobFunctionInput = {
14325
14459
  name: Scalars['String'];
14326
14460
  };
@@ -14378,6 +14512,48 @@ export declare type MercuryInitiativeEdge = {
14378
14512
  cursor: Scalars['String'];
14379
14513
  node?: Maybe<MercuryInitiative>;
14380
14514
  };
14515
+ export declare type MercuryInterval = Node & {
14516
+ __typename?: 'MercuryInterval';
14517
+ id: Scalars['ID'];
14518
+ name: Scalars['String'];
14519
+ startDate: Scalars['Date'];
14520
+ endDate: Scalars['Date'];
14521
+ status: MercuryIntervalStatus;
14522
+ nextPossibleStatuses: Array<MercuryIntervalStatus>;
14523
+ };
14524
+ export declare type MercuryIntervalConnection = {
14525
+ __typename?: 'MercuryIntervalConnection';
14526
+ edges?: Maybe<Array<Maybe<MercuryIntervalEdge>>>;
14527
+ nodes?: Maybe<Array<Maybe<MercuryInterval>>>;
14528
+ pageInfo: PageInfo;
14529
+ };
14530
+ export declare type MercuryIntervalEdge = {
14531
+ __typename?: 'MercuryIntervalEdge';
14532
+ cursor: Scalars['String'];
14533
+ node?: Maybe<MercuryInterval>;
14534
+ };
14535
+ export declare type MercuryIntervalMutationPayload = Payload & {
14536
+ __typename?: 'MercuryIntervalMutationPayload';
14537
+ interval?: Maybe<MercuryInterval>;
14538
+ success: Scalars['Boolean'];
14539
+ errors?: Maybe<Array<MutationError>>;
14540
+ statusCode: Scalars['Int'];
14541
+ message: Scalars['String'];
14542
+ };
14543
+ export declare enum MercuryIntervalStatus {
14544
+ NotStarted = "NOT_STARTED",
14545
+ InProgress = "IN_PROGRESS",
14546
+ Done = "DONE",
14547
+ Frozen = "FROZEN"
14548
+ }
14549
+ export declare type MercuryIntervalStatusTransitionMutationPayload = Payload & {
14550
+ __typename?: 'MercuryIntervalStatusTransitionMutationPayload';
14551
+ interval?: Maybe<MercuryInterval>;
14552
+ success: Scalars['Boolean'];
14553
+ errors?: Maybe<Array<MutationError>>;
14554
+ statusCode: Scalars['Int'];
14555
+ message: Scalars['String'];
14556
+ };
14381
14557
  export declare type MercuryJobFunction = Node & {
14382
14558
  __typename?: 'MercuryJobFunction';
14383
14559
  id: Scalars['ID'];
@@ -14422,6 +14598,10 @@ export declare type MercuryMutationApi = {
14422
14598
  createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
14423
14599
  deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
14424
14600
  allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
14601
+ transitionTeamAllocationStatus?: Maybe<MercuryTeamAllocationStatusTransitionMutationPayload>;
14602
+ createInterval?: Maybe<MercuryIntervalMutationPayload>;
14603
+ updateInterval?: Maybe<MercuryIntervalMutationPayload>;
14604
+ transitionIntervalStatus?: Maybe<MercuryIntervalStatusTransitionMutationPayload>;
14425
14605
  };
14426
14606
  export declare type MercuryMutationApiCreateStrategyArgs = {
14427
14607
  input: MercuryCreateStrategyInput;
@@ -14457,13 +14637,25 @@ export declare type MercuryMutationApiDeleteTeamArgs = {
14457
14637
  input: MercuryDeleteTeamInput;
14458
14638
  };
14459
14639
  export declare type MercuryMutationApiCreateTeamAllocationArgs = {
14460
- input?: Maybe<MercuryCreateTeamAllocationInput>;
14640
+ input: MercuryCreateTeamAllocationInput;
14461
14641
  };
14462
14642
  export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
14463
- input?: Maybe<MercuryDeleteTeamAllocationInput>;
14643
+ input: MercuryDeleteTeamAllocationInput;
14464
14644
  };
14465
14645
  export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
14466
- input?: Maybe<MercuryAllocateTeamCapacityInput>;
14646
+ input: MercuryAllocateTeamCapacityInput;
14647
+ };
14648
+ export declare type MercuryMutationApiTransitionTeamAllocationStatusArgs = {
14649
+ input: MercuryTransitionTeamAllocationStatusInput;
14650
+ };
14651
+ export declare type MercuryMutationApiCreateIntervalArgs = {
14652
+ input: MercuryCreateIntervalInput;
14653
+ };
14654
+ export declare type MercuryMutationApiUpdateIntervalArgs = {
14655
+ input: MercuryUpdateIntervalInput;
14656
+ };
14657
+ export declare type MercuryMutationApiTransitionIntervalStatusArgs = {
14658
+ input: MercuryTransitionIntervalStatusInput;
14467
14659
  };
14468
14660
  export declare type MercuryQueryApi = {
14469
14661
  __typename?: 'MercuryQueryApi';
@@ -14477,6 +14669,8 @@ export declare type MercuryQueryApi = {
14477
14669
  initiative?: Maybe<MercuryInitiative>;
14478
14670
  initiatives?: Maybe<MercuryInitiativeConnection>;
14479
14671
  teamAllocation?: Maybe<MercuryTeamAllocation>;
14672
+ intervals?: Maybe<MercuryIntervalConnection>;
14673
+ interval?: Maybe<MercuryInterval>;
14480
14674
  };
14481
14675
  export declare type MercuryQueryApiStrategiesArgs = {
14482
14676
  first?: Maybe<Scalars['Int']>;
@@ -14508,6 +14702,14 @@ export declare type MercuryQueryApiInitiativesArgs = {
14508
14702
  };
14509
14703
  export declare type MercuryQueryApiTeamAllocationArgs = {
14510
14704
  teamId: Scalars['ID'];
14705
+ intervalId?: Maybe<Scalars['ID']>;
14706
+ };
14707
+ export declare type MercuryQueryApiIntervalsArgs = {
14708
+ first?: Maybe<Scalars['Int']>;
14709
+ after?: Maybe<Scalars['String']>;
14710
+ };
14711
+ export declare type MercuryQueryApiIntervalArgs = {
14712
+ id: Scalars['ID'];
14511
14713
  };
14512
14714
  export declare type MercuryRemoveGoalsFromStrategyInput = {
14513
14715
  strategyId: Scalars['ID'];
@@ -14559,8 +14761,11 @@ export declare type MercuryTeam = Node & {
14559
14761
  export declare type MercuryTeamAllocation = {
14560
14762
  __typename?: 'MercuryTeamAllocation';
14561
14763
  id: Scalars['ID'];
14764
+ intervalId?: Maybe<Scalars['ID']>;
14562
14765
  teamId: Scalars['ID'];
14563
- teamAllocationEntries: Array<Maybe<MercuryTeamAllocationEntry>>;
14766
+ teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
14767
+ status: MercuryTeamAllocationStatus;
14768
+ nextPossibleStatuses: Array<MercuryTeamAllocationStatus>;
14564
14769
  };
14565
14770
  export declare type MercuryTeamAllocationDeletePayload = Payload & {
14566
14771
  __typename?: 'MercuryTeamAllocationDeletePayload';
@@ -14589,6 +14794,19 @@ export declare type MercuryTeamAllocationMutationPayload = Payload & {
14589
14794
  statusCode: Scalars['Int'];
14590
14795
  message: Scalars['String'];
14591
14796
  };
14797
+ export declare enum MercuryTeamAllocationStatus {
14798
+ Active = "ACTIVE",
14799
+ Defrosted = "DEFROSTED",
14800
+ Submitted = "SUBMITTED"
14801
+ }
14802
+ export declare type MercuryTeamAllocationStatusTransitionMutationPayload = Payload & {
14803
+ __typename?: 'MercuryTeamAllocationStatusTransitionMutationPayload';
14804
+ teamAllocation: MercuryTeamAllocation;
14805
+ success: Scalars['Boolean'];
14806
+ errors?: Maybe<Array<MutationError>>;
14807
+ statusCode: Scalars['Int'];
14808
+ message: Scalars['String'];
14809
+ };
14592
14810
  export declare type MercuryTeamConnection = {
14593
14811
  __typename?: 'MercuryTeamConnection';
14594
14812
  edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
@@ -14616,6 +14834,20 @@ export declare type MercuryTeamMutationPayload = Payload & {
14616
14834
  statusCode: Scalars['Int'];
14617
14835
  message: Scalars['String'];
14618
14836
  };
14837
+ export declare type MercuryTransitionIntervalStatusInput = {
14838
+ id: Scalars['ID'];
14839
+ status: MercuryIntervalStatus;
14840
+ };
14841
+ export declare type MercuryTransitionTeamAllocationStatusInput = {
14842
+ id: Scalars['ID'];
14843
+ status: MercuryTeamAllocationStatus;
14844
+ };
14845
+ export declare type MercuryUpdateIntervalInput = {
14846
+ id: Scalars['ID'];
14847
+ name?: Maybe<Scalars['String']>;
14848
+ startDate?: Maybe<Scalars['Date']>;
14849
+ endDate?: Maybe<Scalars['Date']>;
14850
+ };
14619
14851
  export declare type MercuryUpdateJobFunctionInput = {
14620
14852
  id: Scalars['ID'];
14621
14853
  name: Scalars['String'];
@@ -14799,6 +15031,7 @@ export declare type Mutation = {
14799
15031
  toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
14800
15032
  setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
14801
15033
  planModeCardMove?: Maybe<MoveCardOutput>;
15034
+ planModeCardCreate?: Maybe<CreateCardsOutput>;
14802
15035
  createApp?: Maybe<CreateAppResponse>;
14803
15036
  updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
14804
15037
  deleteApp?: Maybe<DeleteAppResponse>;
@@ -15201,6 +15434,9 @@ export declare type MutationSetBoardEstimationTypeArgs = {
15201
15434
  export declare type MutationPlanModeCardMoveArgs = {
15202
15435
  input?: Maybe<PlanModeCardMoveInput>;
15203
15436
  };
15437
+ export declare type MutationPlanModeCardCreateArgs = {
15438
+ input?: Maybe<PlanModeCardCreateInput>;
15439
+ };
15204
15440
  export declare type MutationCreateAppArgs = {
15205
15441
  input: CreateAppInput;
15206
15442
  };
@@ -15359,6 +15595,14 @@ export declare type NadelHydrationFromArgument = {
15359
15595
  export declare enum NadelHydrationTemplate {
15360
15596
  NadelPlaceholder = "NADEL_PLACEHOLDER"
15361
15597
  }
15598
+ export declare type NewCard = {
15599
+ summary: Scalars['String'];
15600
+ issueTypeId: Scalars['ID'];
15601
+ parentId?: Maybe<Scalars['ID']>;
15602
+ fixVersions?: Maybe<Array<Scalars['ID']>>;
15603
+ assigneeId?: Maybe<Scalars['ID']>;
15604
+ labels?: Maybe<Array<Maybe<Scalars['String']>>>;
15605
+ };
15362
15606
  export declare type NewCardParent = {
15363
15607
  summary: Scalars['String'];
15364
15608
  issueTypeId: Scalars['ID'];
@@ -15370,6 +15614,9 @@ export declare type OAuthClientsAccountGrant = {
15370
15614
  __typename?: 'OAuthClientsAccountGrant';
15371
15615
  clientId?: Maybe<Scalars['String']>;
15372
15616
  scopes?: Maybe<Array<Scalars['String']>>;
15617
+ accountId?: Maybe<Scalars['String']>;
15618
+ scopeDetails?: Maybe<Array<Maybe<OAuthClientsScopeDetails>>>;
15619
+ appEnvironment?: Maybe<AppEnvironment>;
15373
15620
  };
15374
15621
  export declare type OAuthClientsAccountGrantConnection = {
15375
15622
  __typename?: 'OAuthClientsAccountGrantConnection';
@@ -15397,6 +15644,11 @@ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
15397
15644
  first?: Maybe<Scalars['Int']>;
15398
15645
  after?: Maybe<Scalars['String']>;
15399
15646
  };
15647
+ export declare type OAuthClientsScopeDetails = {
15648
+ __typename?: 'OAuthClientsScopeDetails';
15649
+ key: Scalars['String'];
15650
+ description?: Maybe<Scalars['String']>;
15651
+ };
15400
15652
  export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
15401
15653
  export declare type OpsgenieAlertCountByPriority = {
15402
15654
  __typename?: 'OpsgenieAlertCountByPriority';
@@ -15576,6 +15828,13 @@ export declare type PermissionToConsentByOauthId = {
15576
15828
  isAllowed: Scalars['Boolean'];
15577
15829
  isSiteAdmin: Scalars['Boolean'];
15578
15830
  };
15831
+ export declare type PlanModeCardCreateInput = {
15832
+ boardId: Scalars['ID'];
15833
+ destination: PlanModeDestination;
15834
+ newCards: Array<Maybe<NewCard>>;
15835
+ rankBeforeCardId?: Maybe<Scalars['Long']>;
15836
+ destinationId?: Maybe<Scalars['ID']>;
15837
+ };
15579
15838
  export declare type PlanModeCardMoveInput = {
15580
15839
  cardIds: Array<Scalars['ID']>;
15581
15840
  boardId: Scalars['ID'];
@@ -16556,6 +16815,8 @@ export declare type PolarisView = {
16556
16815
  lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
16557
16816
  collabServiceDelegation?: Maybe<PolarisDelegationToken>;
16558
16817
  sortMode: PolarisViewSortMode;
16818
+ hideEmptyGroups?: Maybe<Scalars['Boolean']>;
16819
+ enabledAutoSave?: Maybe<Scalars['Boolean']>;
16559
16820
  };
16560
16821
  export declare type PolarisViewJqlArgs = {
16561
16822
  filter?: Maybe<PolarisFilterInput>;
@@ -16577,7 +16838,8 @@ export declare type PolarisViewFilterInput = {
16577
16838
  export declare enum PolarisViewFilterKind {
16578
16839
  FieldIdentity = "FIELD_IDENTITY",
16579
16840
  FieldNumeric = "FIELD_NUMERIC",
16580
- Text = "TEXT"
16841
+ Text = "TEXT",
16842
+ Interval = "INTERVAL"
16581
16843
  }
16582
16844
  export declare enum PolarisViewFilterOperator {
16583
16845
  Lt = "LT",
@@ -16585,7 +16847,10 @@ export declare enum PolarisViewFilterOperator {
16585
16847
  Gt = "GT",
16586
16848
  Gte = "GTE",
16587
16849
  Eq = "EQ",
16588
- Neq = "NEQ"
16850
+ Neq = "NEQ",
16851
+ StartWithin = "START_WITHIN",
16852
+ EndWithin = "END_WITHIN",
16853
+ RunningIn = "RUNNING_IN"
16589
16854
  }
16590
16855
  export declare type PolarisViewFilterValue = {
16591
16856
  __typename?: 'PolarisViewFilterValue';
@@ -16754,6 +17019,8 @@ export declare type Query = {
16754
17019
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
16755
17020
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
16756
17021
  roadmaps?: Maybe<RoadmapsQuery>;
17022
+ jwmOverview?: Maybe<JiraWorkManagementOverview>;
17023
+ jwmOverviews?: Maybe<JiraWorkManagementOverviewConnection>;
16757
17024
  tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
16758
17025
  virtualAgent?: Maybe<VirtualAgentQueryApi>;
16759
17026
  jiraReleases?: Maybe<JiraReleases>;
@@ -17066,6 +17333,17 @@ export declare type QueryDeveloperLogAccessArgs = {
17066
17333
  export declare type QueryInstallationContextsWithLogAccessArgs = {
17067
17334
  appId: Scalars['ID'];
17068
17335
  };
17336
+ export declare type QueryJwmOverviewArgs = {
17337
+ id: Scalars['ID'];
17338
+ };
17339
+ export declare type QueryJwmOverviewsArgs = {
17340
+ cloudId: Scalars['ID'];
17341
+ accountId: Scalars['ID'];
17342
+ first?: Maybe<Scalars['Int']>;
17343
+ after?: Maybe<Scalars['String']>;
17344
+ last?: Maybe<Scalars['Int']>;
17345
+ before?: Maybe<Scalars['String']>;
17346
+ };
17069
17347
  export declare type QueryTenantContextsArgs = {
17070
17348
  cloudIds?: Maybe<Array<Scalars['ID']>>;
17071
17349
  hostNames?: Maybe<Array<Scalars['String']>>;
@@ -18386,10 +18664,11 @@ export declare enum ShepherdActionType {
18386
18664
  Create = "CREATE",
18387
18665
  Delete = "DELETE",
18388
18666
  Export = "EXPORT",
18667
+ Login = "LOGIN",
18389
18668
  Read = "READ",
18390
18669
  Update = "UPDATE"
18391
18670
  }
18392
- export declare type ShepherdActivity = ShepherdResourceActivity;
18671
+ export declare type ShepherdActivity = ShepherdLoginActivity | ShepherdResourceActivity;
18393
18672
  export declare type ShepherdActivityConnection = {
18394
18673
  __typename?: 'ShepherdActivityConnection';
18395
18674
  edges?: Maybe<Array<Maybe<ShepherdActivityEdge>>>;
@@ -18598,6 +18877,15 @@ export declare type ShepherdHighlight = ShepherdActivityHighlight;
18598
18877
  export declare type ShepherdHighlightInput = {
18599
18878
  activityHighlight?: Maybe<ShepherdActivityHighlightInput>;
18600
18879
  };
18880
+ export declare type ShepherdLoginActivity = {
18881
+ __typename?: 'ShepherdLoginActivity';
18882
+ actor: ShepherdUser;
18883
+ city?: Maybe<Scalars['String']>;
18884
+ country?: Maybe<Scalars['String']>;
18885
+ ip?: Maybe<Scalars['String']>;
18886
+ region?: Maybe<Scalars['String']>;
18887
+ time: Scalars['DateTime'];
18888
+ };
18601
18889
  export declare type ShepherdMutation = {
18602
18890
  __typename?: 'ShepherdMutation';
18603
18891
  createAlert?: Maybe<ShepherdCreateAlertPayload>;
@@ -20092,6 +20380,9 @@ export declare type UpdateAppDetailsInput = {
20092
20380
  appId: Scalars['ID'];
20093
20381
  name: Scalars['String'];
20094
20382
  description?: Maybe<Scalars['String']>;
20383
+ privacyPolicy?: Maybe<Scalars['String']>;
20384
+ contactLink?: Maybe<Scalars['String']>;
20385
+ avatarFileId?: Maybe<Scalars['String']>;
20095
20386
  };
20096
20387
  export declare type UpdateAppDetailsResponse = Payload & {
20097
20388
  __typename?: 'UpdateAppDetailsResponse';
@@ -20547,6 +20838,8 @@ export declare type UpdatePolarisViewInput = {
20547
20838
  timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
20548
20839
  matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
20549
20840
  sortMode?: Maybe<PolarisViewSortMode>;
20841
+ hideEmptyGroups?: Maybe<Scalars['Boolean']>;
20842
+ enabledAutoSave?: Maybe<Scalars['Boolean']>;
20550
20843
  };
20551
20844
  export declare type UpdatePolarisViewPayload = Payload & {
20552
20845
  __typename?: 'UpdatePolarisViewPayload';
@@ -20680,6 +20973,17 @@ export declare type VirtualAgentConfigurationIntentRuleProjectionArgs = {
20680
20973
  intentId: Scalars['String'];
20681
20974
  };
20682
20975
  export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
20976
+ export declare type VirtualAgentCreateIntentRuleProjectionInput = {
20977
+ name: Scalars['String'];
20978
+ description?: Maybe<Scalars['String']>;
20979
+ questions?: Maybe<Array<Scalars['String']>>;
20980
+ };
20981
+ export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
20982
+ __typename?: 'VirtualAgentCreateIntentRuleProjectionPayload';
20983
+ success: Scalars['Boolean'];
20984
+ errors?: Maybe<Array<MutationError>>;
20985
+ intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
20986
+ };
20683
20987
  export declare type VirtualAgentIntentProjection = Node & {
20684
20988
  __typename?: 'VirtualAgentIntentProjection';
20685
20989
  id: Scalars['ID'];
@@ -20732,10 +21036,15 @@ export declare type VirtualAgentIntentRuleProjectionsFilter = {
20732
21036
  export declare type VirtualAgentMutationApi = {
20733
21037
  __typename?: 'VirtualAgentMutationApi';
20734
21038
  updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
21039
+ createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
20735
21040
  };
20736
21041
  export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
20737
21042
  input: VirtualAgentUpdateConfigurationInput;
20738
21043
  };
21044
+ export declare type VirtualAgentMutationApiCreateIntentRuleProjectionArgs = {
21045
+ virtualAgentConfigurationId: Scalars['ID'];
21046
+ input: VirtualAgentCreateIntentRuleProjectionInput;
21047
+ };
20739
21048
  export declare type VirtualAgentQueryApi = {
20740
21049
  __typename?: 'VirtualAgentQueryApi';
20741
21050
  virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;