@forge/cli-shared 4.1.0-next.0 → 4.1.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.
@@ -1432,6 +1432,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
1432
1432
  GetNotificationLogs?: Maybe<AquaOutgoingEmailLogsQueryResult>;
1433
1433
  };
1434
1434
  export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
1435
+ filterActionable?: InputMaybe<Scalars['Boolean']['input']>;
1435
1436
  fromTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
1436
1437
  notificationActionType?: InputMaybe<Scalars['String']['input']>;
1437
1438
  notificationType?: InputMaybe<Scalars['String']['input']>;
@@ -3070,6 +3071,7 @@ export declare type CompassCatalogMutationApi = {
3070
3071
  unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
3071
3072
  updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
3072
3073
  updateComponent?: Maybe<UpdateCompassComponentPayload>;
3074
+ updateComponentApi?: Maybe<UpdateComponentApiPayload>;
3073
3075
  updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
3074
3076
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
3075
3077
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
@@ -3245,6 +3247,10 @@ export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
3245
3247
  export declare type CompassCatalogMutationApiUpdateComponentArgs = {
3246
3248
  input: UpdateCompassComponentInput;
3247
3249
  };
3250
+ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
3251
+ cloudId: Scalars['ID']['input'];
3252
+ input: UpdateComponentApiInput;
3253
+ };
3248
3254
  export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
3249
3255
  input: UpdateCompassComponentDataManagerMetadataInput;
3250
3256
  };
@@ -3438,6 +3444,7 @@ export declare type CompassChangeMetadata = {
3438
3444
  export declare type CompassComponent = Node & {
3439
3445
  __typename?: 'CompassComponent';
3440
3446
  announcements?: Maybe<Array<CompassAnnouncement>>;
3447
+ api?: Maybe<CompassComponentApi>;
3441
3448
  applicableScorecards?: Maybe<Array<CompassScorecard>>;
3442
3449
  changeMetadata: CompassChangeMetadata;
3443
3450
  customFields?: Maybe<Array<CompassCustomField>>;
@@ -3473,12 +3480,149 @@ export declare type CompassComponentRelationshipsArgs = {
3473
3480
  export declare type CompassComponentScorecardScoreArgs = {
3474
3481
  query?: InputMaybe<CompassComponentScorecardScoreQuery>;
3475
3482
  };
3483
+ export declare type CompassComponentApi = {
3484
+ __typename?: 'CompassComponentApi';
3485
+ changelog: CompassComponentApiChangelogConnection;
3486
+ componentId: Scalars['String']['output'];
3487
+ createdAt: Scalars['String']['output'];
3488
+ defaultTag: Scalars['String']['output'];
3489
+ deletedAt?: Maybe<Scalars['String']['output']>;
3490
+ historicSpecTags: CompassComponentSpecTagConnection;
3491
+ id: Scalars['String']['output'];
3492
+ latestDefaultSpec?: Maybe<CompassComponentSpec>;
3493
+ latestSpecForTag?: Maybe<CompassComponentSpec>;
3494
+ latestSpecWithErrorForTag?: Maybe<CompassComponentSpec>;
3495
+ path?: Maybe<Scalars['String']['output']>;
3496
+ repo?: Maybe<CompassComponentApiRepo>;
3497
+ repoId?: Maybe<Scalars['String']['output']>;
3498
+ spec?: Maybe<CompassComponentSpec>;
3499
+ stats: CompassComponentApiStats;
3500
+ status: Scalars['String']['output'];
3501
+ tags: CompassComponentSpecTagConnection;
3502
+ updatedAt: Scalars['String']['output'];
3503
+ };
3504
+ export declare type CompassComponentApiChangelogArgs = {
3505
+ after?: InputMaybe<Scalars['String']['input']>;
3506
+ before?: InputMaybe<Scalars['String']['input']>;
3507
+ first?: InputMaybe<Scalars['Int']['input']>;
3508
+ last?: InputMaybe<Scalars['Int']['input']>;
3509
+ };
3510
+ export declare type CompassComponentApiHistoricSpecTagsArgs = {
3511
+ after?: InputMaybe<Scalars['String']['input']>;
3512
+ before?: InputMaybe<Scalars['String']['input']>;
3513
+ first?: InputMaybe<Scalars['Int']['input']>;
3514
+ last?: InputMaybe<Scalars['Int']['input']>;
3515
+ query: CompassComponentApiHistoricSpecTagsQuery;
3516
+ };
3517
+ export declare type CompassComponentApiLatestSpecForTagArgs = {
3518
+ tagName: Scalars['String']['input'];
3519
+ };
3520
+ export declare type CompassComponentApiLatestSpecWithErrorForTagArgs = {
3521
+ tagName?: InputMaybe<Scalars['String']['input']>;
3522
+ };
3523
+ export declare type CompassComponentApiSpecArgs = {
3524
+ id: Scalars['String']['input'];
3525
+ };
3526
+ export declare type CompassComponentApiTagsArgs = {
3527
+ after?: InputMaybe<Scalars['String']['input']>;
3528
+ before?: InputMaybe<Scalars['String']['input']>;
3529
+ first?: InputMaybe<Scalars['Int']['input']>;
3530
+ last?: InputMaybe<Scalars['Int']['input']>;
3531
+ };
3532
+ export declare type CompassComponentApiChangelog = {
3533
+ __typename?: 'CompassComponentApiChangelog';
3534
+ baseSpec?: Maybe<CompassComponentSpec>;
3535
+ effectiveAt: Scalars['String']['output'];
3536
+ endpointChanges: Array<CompassComponentApiEndpointChange>;
3537
+ headSpec?: Maybe<CompassComponentSpec>;
3538
+ markdown: Scalars['String']['output'];
3539
+ };
3540
+ export declare type CompassComponentApiChangelogConnection = {
3541
+ __typename?: 'CompassComponentApiChangelogConnection';
3542
+ edges: Array<CompassComponentApiChangelogEdge>;
3543
+ nodes: Array<CompassComponentApiChangelog>;
3544
+ pageInfo: PageInfo;
3545
+ };
3546
+ export declare type CompassComponentApiChangelogEdge = {
3547
+ __typename?: 'CompassComponentApiChangelogEdge';
3548
+ cursor: Scalars['String']['output'];
3549
+ node: CompassComponentApiChangelog;
3550
+ };
3551
+ export declare type CompassComponentApiEndpointChange = {
3552
+ __typename?: 'CompassComponentApiEndpointChange';
3553
+ changeType?: Maybe<Scalars['String']['output']>;
3554
+ changelog?: Maybe<Array<Scalars['String']['output']>>;
3555
+ method: Scalars['String']['output'];
3556
+ path: Scalars['String']['output'];
3557
+ };
3558
+ export declare type CompassComponentApiHistoricSpecTagsQuery = {
3559
+ tagName: Scalars['String']['input'];
3560
+ };
3561
+ export declare type CompassComponentApiRepo = {
3562
+ __typename?: 'CompassComponentApiRepo';
3563
+ provider: Scalars['String']['output'];
3564
+ repoUrl: Scalars['String']['output'];
3565
+ };
3566
+ export declare type CompassComponentApiRepoUpdate = {
3567
+ provider: Scalars['String']['input'];
3568
+ repoUrl: Scalars['String']['input'];
3569
+ };
3570
+ export declare type CompassComponentApiStats = {
3571
+ __typename?: 'CompassComponentApiStats';
3572
+ endpointChanges: CompassComponentApiStatsEndpointChangesConnection;
3573
+ };
3574
+ export declare type CompassComponentApiStatsEndpointChangesArgs = {
3575
+ after?: InputMaybe<Scalars['String']['input']>;
3576
+ before?: InputMaybe<Scalars['String']['input']>;
3577
+ first?: InputMaybe<Scalars['Int']['input']>;
3578
+ last?: InputMaybe<Scalars['Int']['input']>;
3579
+ };
3580
+ export declare type CompassComponentApiStatsEndpointChange = {
3581
+ __typename?: 'CompassComponentApiStatsEndpointChange';
3582
+ added: Scalars['Int']['output'];
3583
+ changed: Scalars['Int']['output'];
3584
+ firstWeekDay: Scalars['String']['output'];
3585
+ removed: Scalars['Int']['output'];
3586
+ };
3587
+ export declare type CompassComponentApiStatsEndpointChangeEdge = {
3588
+ __typename?: 'CompassComponentApiStatsEndpointChangeEdge';
3589
+ cursor: Scalars['String']['output'];
3590
+ node: CompassComponentApiStatsEndpointChange;
3591
+ };
3592
+ export declare type CompassComponentApiStatsEndpointChangesConnection = {
3593
+ __typename?: 'CompassComponentApiStatsEndpointChangesConnection';
3594
+ edges: Array<CompassComponentApiStatsEndpointChangeEdge>;
3595
+ nodes: Array<CompassComponentApiStatsEndpointChange>;
3596
+ pageInfo: PageInfo;
3597
+ };
3476
3598
  export declare type CompassComponentDataManager = {
3477
3599
  __typename?: 'CompassComponentDataManager';
3478
3600
  ecosystemAppId: Scalars['ID']['output'];
3479
3601
  externalSourceURL?: Maybe<Scalars['URL']['output']>;
3480
3602
  lastSyncEvent?: Maybe<ComponentSyncEvent>;
3481
3603
  };
3604
+ export declare type CompassComponentEndpoint = {
3605
+ __typename?: 'CompassComponentEndpoint';
3606
+ checksum: Scalars['String']['output'];
3607
+ id: Scalars['String']['output'];
3608
+ method: Scalars['String']['output'];
3609
+ originalPath: Scalars['String']['output'];
3610
+ path: Scalars['String']['output'];
3611
+ readUrl: Scalars['String']['output'];
3612
+ summary: Scalars['String']['output'];
3613
+ updatedAt: Scalars['String']['output'];
3614
+ };
3615
+ export declare type CompassComponentEndpointConnection = {
3616
+ __typename?: 'CompassComponentEndpointConnection';
3617
+ edges: Array<CompassComponentEndpointEdge>;
3618
+ nodes: Array<CompassComponentEndpoint>;
3619
+ pageInfo: PageInfo;
3620
+ };
3621
+ export declare type CompassComponentEndpointEdge = {
3622
+ __typename?: 'CompassComponentEndpointEdge';
3623
+ cursor: Scalars['String']['output'];
3624
+ node: CompassComponentEndpoint;
3625
+ };
3482
3626
  export declare type CompassComponentLabel = {
3483
3627
  __typename?: 'CompassComponentLabel';
3484
3628
  name?: Maybe<Scalars['String']['output']>;
@@ -3539,6 +3683,59 @@ export declare type CompassComponentScorecardRelationshipResult = CompassCompone
3539
3683
  export declare type CompassComponentScorecardScoreQuery = {
3540
3684
  scorecardId: Scalars['ID']['input'];
3541
3685
  };
3686
+ export declare type CompassComponentSpec = {
3687
+ __typename?: 'CompassComponentSpec';
3688
+ api?: Maybe<CompassComponentApi>;
3689
+ checksum: Scalars['String']['output'];
3690
+ componentId: Scalars['String']['output'];
3691
+ createdAt: Scalars['String']['output'];
3692
+ endpoint?: Maybe<CompassComponentEndpoint>;
3693
+ endpoints: CompassComponentEndpointConnection;
3694
+ id: Scalars['String']['output'];
3695
+ metadataReadUrl?: Maybe<Scalars['String']['output']>;
3696
+ openapiVersion: Scalars['String']['output'];
3697
+ processingData: CompassComponentSpecProcessingData;
3698
+ status: Scalars['String']['output'];
3699
+ updatedAt: Scalars['String']['output'];
3700
+ };
3701
+ export declare type CompassComponentSpecEndpointArgs = {
3702
+ method: Scalars['String']['input'];
3703
+ path: Scalars['String']['input'];
3704
+ };
3705
+ export declare type CompassComponentSpecEndpointsArgs = {
3706
+ after?: InputMaybe<Scalars['String']['input']>;
3707
+ before?: InputMaybe<Scalars['String']['input']>;
3708
+ first?: InputMaybe<Scalars['Int']['input']>;
3709
+ last?: InputMaybe<Scalars['Int']['input']>;
3710
+ };
3711
+ export declare type CompassComponentSpecProcessingData = {
3712
+ __typename?: 'CompassComponentSpecProcessingData';
3713
+ errors?: Maybe<Array<Scalars['String']['output']>>;
3714
+ warnings?: Maybe<Array<Scalars['String']['output']>>;
3715
+ };
3716
+ export declare type CompassComponentSpecTag = {
3717
+ __typename?: 'CompassComponentSpecTag';
3718
+ api?: Maybe<CompassComponentApi>;
3719
+ createdAt: Scalars['String']['output'];
3720
+ effectiveAt: Scalars['String']['output'];
3721
+ id: Scalars['String']['output'];
3722
+ name: Scalars['String']['output'];
3723
+ overwrittenAt?: Maybe<Scalars['String']['output']>;
3724
+ overwrittenBy?: Maybe<Scalars['String']['output']>;
3725
+ spec?: Maybe<CompassComponentSpec>;
3726
+ updatedAt: Scalars['String']['output'];
3727
+ };
3728
+ export declare type CompassComponentSpecTagConnection = {
3729
+ __typename?: 'CompassComponentSpecTagConnection';
3730
+ edges: Array<CompassComponentSpecTagEdge>;
3731
+ nodes: Array<CompassComponentSpecTag>;
3732
+ pageInfo: PageInfo;
3733
+ };
3734
+ export declare type CompassComponentSpecTagEdge = {
3735
+ __typename?: 'CompassComponentSpecTagEdge';
3736
+ cursor: Scalars['String']['output'];
3737
+ node: CompassComponentSpecTag;
3738
+ };
3542
3739
  export declare type CompassComponentStats = {
3543
3740
  __typename?: 'CompassComponentStats';
3544
3741
  failing: Scalars['Int']['output'];
@@ -4383,6 +4580,7 @@ export declare type CompassFilteredComponentsCount = {
4383
4580
  export declare type CompassFilteredComponentsCountQuery = {
4384
4581
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
4385
4582
  labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
4583
+ ownerIds?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
4386
4584
  types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
4387
4585
  };
4388
4586
  export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
@@ -4814,8 +5012,11 @@ export declare type CompassPullRequestInputProperties = {
4814
5012
  status: CompassCreatePullRequestStatus;
4815
5013
  };
4816
5014
  export declare enum CompassPullRequestQuerySortName {
5015
+ CycleTime = "CYCLE_TIME",
5016
+ OpenToFirstReview = "OPEN_TO_FIRST_REVIEW",
4817
5017
  PrClosedTime = "PR_CLOSED_TIME",
4818
- PrCreatedTime = "PR_CREATED_TIME"
5018
+ PrCreatedTime = "PR_CREATED_TIME",
5019
+ ReviewTime = "REVIEW_TIME"
4819
5020
  }
4820
5021
  export declare type CompassPullRequestStats = {
4821
5022
  __typename?: 'CompassPullRequestStats';
@@ -4831,6 +5032,12 @@ export declare enum CompassPullRequestStatus {
4831
5032
  Overdue = "OVERDUE",
4832
5033
  Rejected = "REJECTED"
4833
5034
  }
5035
+ export declare enum CompassPullRequestStatusForStatusInTimeRangeFilter {
5036
+ Created = "CREATED",
5037
+ FirstReviewed = "FIRST_REVIEWED",
5038
+ Merged = "MERGED",
5039
+ Rejected = "REJECTED"
5040
+ }
4834
5041
  export declare type CompassPullRequestsQuery = {
4835
5042
  matchAnyCurrentStatus?: InputMaybe<Array<CompassPullRequestStatus>>;
4836
5043
  matchAnyFilters?: InputMaybe<Array<CompassPullRequestsQueryFilter>>;
@@ -9411,9 +9618,18 @@ export declare type DevAiAutofixConfigurationsArgs = {
9411
9618
  };
9412
9619
  export declare type DevAiAutofixConfiguration = {
9413
9620
  __typename?: 'DevAiAutofixConfiguration';
9621
+ canEdit?: Maybe<Scalars['Boolean']['output']>;
9622
+ codeCoverageCommand?: Maybe<Scalars['String']['output']>;
9623
+ codeCoverageReportPath?: Maybe<Scalars['String']['output']>;
9414
9624
  id: Scalars['ID']['output'];
9415
9625
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
9626
+ isScanning?: Maybe<Scalars['Boolean']['output']>;
9416
9627
  lastScan?: Maybe<Scalars['DateTime']['output']>;
9628
+ openPullRequestsCount?: Maybe<Scalars['Int']['output']>;
9629
+ openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
9630
+ primaryLanguage?: Maybe<Scalars['String']['output']>;
9631
+ repoUrl?: Maybe<Scalars['URL']['output']>;
9632
+ targetCoveragePercentage?: Maybe<Scalars['Int']['output']>;
9417
9633
  };
9418
9634
  export declare type DevAiAutofixConfigurationConnection = {
9419
9635
  __typename?: 'DevAiAutofixConfigurationConnection';
@@ -9432,21 +9648,56 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
9432
9648
  };
9433
9649
  export declare type DevAiMutations = {
9434
9650
  __typename?: 'DevAiMutations';
9651
+ setAutofixConfigurationForRepository?: Maybe<DevAiSetAutofixConfigurationForRepositoryPayload>;
9652
+ setAutofixEnabledStateForRepository?: Maybe<DevAiSetIsAutofixEnabledForRepositoryPayload>;
9435
9653
  triggerAutofixScan?: Maybe<DevAiTriggerAutofixScanPayload>;
9436
9654
  };
9655
+ export declare type DevAiMutationsSetAutofixConfigurationForRepositoryArgs = {
9656
+ input: DevAiSetAutofixConfigurationForRepositoryInput;
9657
+ };
9658
+ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
9659
+ input: DevAiSetAutofixEnabledStateForRepositoryInput;
9660
+ };
9437
9661
  export declare type DevAiMutationsTriggerAutofixScanArgs = {
9438
9662
  input: DevAiTriggerAutofixScanInput;
9439
9663
  };
9664
+ export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
9665
+ codeCoverageCommand: Scalars['String']['input'];
9666
+ codeCoverageReportPath: Scalars['String']['input'];
9667
+ coveragePercentage: Scalars['Int']['input'];
9668
+ primaryLanguage: Scalars['String']['input'];
9669
+ repoUrl: Scalars['URL']['input'];
9670
+ workspaceId: Scalars['ID']['input'];
9671
+ };
9672
+ export declare type DevAiSetAutofixConfigurationForRepositoryPayload = Payload & {
9673
+ __typename?: 'DevAiSetAutofixConfigurationForRepositoryPayload';
9674
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9675
+ errors?: Maybe<Array<MutationError>>;
9676
+ success: Scalars['Boolean']['output'];
9677
+ };
9678
+ export declare type DevAiSetAutofixEnabledStateForRepositoryInput = {
9679
+ isEnabled: Scalars['Boolean']['input'];
9680
+ repoUrl: Scalars['URL']['input'];
9681
+ workspaceId: Scalars['ID']['input'];
9682
+ };
9683
+ export declare type DevAiSetIsAutofixEnabledForRepositoryPayload = Payload & {
9684
+ __typename?: 'DevAiSetIsAutofixEnabledForRepositoryPayload';
9685
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9686
+ errors?: Maybe<Array<MutationError>>;
9687
+ success: Scalars['Boolean']['output'];
9688
+ };
9440
9689
  export declare type DevAiTriggerAutofixScanInput = {
9441
9690
  codeCoverageCommand: Scalars['String']['input'];
9442
9691
  codeCoverageReportPath: Scalars['String']['input'];
9443
9692
  coveragePercentage: Scalars['Int']['input'];
9444
9693
  primaryLanguage: Scalars['String']['input'];
9445
9694
  repoUrl: Scalars['URL']['input'];
9695
+ reviewerUserId?: InputMaybe<Scalars['ID']['input']>;
9446
9696
  workspaceId: Scalars['ID']['input'];
9447
9697
  };
9448
9698
  export declare type DevAiTriggerAutofixScanPayload = Payload & {
9449
9699
  __typename?: 'DevAiTriggerAutofixScanPayload';
9700
+ configuration?: Maybe<DevAiAutofixConfiguration>;
9450
9701
  errors?: Maybe<Array<MutationError>>;
9451
9702
  success: Scalars['Boolean']['output'];
9452
9703
  };
@@ -10630,9 +10881,13 @@ export declare type DevOpsSummarisedFeatureFlags = {
10630
10881
  export declare type DevOpsSupportedActions = {
10631
10882
  __typename?: 'DevOpsSupportedActions';
10632
10883
  associate?: Maybe<Scalars['Boolean']['output']>;
10884
+ associateEntity?: Maybe<Scalars['Boolean']['output']>;
10633
10885
  checkAuth?: Maybe<Scalars['Boolean']['output']>;
10634
10886
  disassociate?: Maybe<Scalars['Boolean']['output']>;
10887
+ disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
10635
10888
  listContainers?: Maybe<Scalars['Boolean']['output']>;
10889
+ onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
10890
+ onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
10636
10891
  searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
10637
10892
  searchContainers?: Maybe<Scalars['Boolean']['output']>;
10638
10893
  syncStatus?: Maybe<Scalars['Boolean']['output']>;
@@ -25996,7 +26251,7 @@ export declare type HelpCenterQueryApi = {
25996
26251
  helpCenterById?: Maybe<HelpCenterQueryResult>;
25997
26252
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
25998
26253
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
25999
- helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
26254
+ helpCenters?: Maybe<HelpCenterQueryResultConnection>;
26000
26255
  helpCentersList?: Maybe<HelpCentersListQueryResult>;
26001
26256
  helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
26002
26257
  mediaConfig?: Maybe<HelpCenterMediaConfig>;
@@ -26016,6 +26271,9 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
26016
26271
  topicId: Scalars['ID']['input'];
26017
26272
  };
26018
26273
  export declare type HelpCenterQueryApiHelpCentersArgs = {
26274
+ after?: InputMaybe<Scalars['String']['input']>;
26275
+ first?: InputMaybe<Scalars['Int']['input']>;
26276
+ sortOrder: HelpCenterSortOrder;
26019
26277
  workspaceAri: Scalars['ID']['input'];
26020
26278
  };
26021
26279
  export declare type HelpCenterQueryApiHelpCentersListArgs = {
@@ -26419,7 +26677,6 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
26419
26677
  export declare type HelpLayoutHeroElementData = {
26420
26678
  __typename?: 'HelpLayoutHeroElementData';
26421
26679
  homePageTitle?: Maybe<Scalars['String']['output']>;
26422
- useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
26423
26680
  userLanguageTag?: Maybe<Scalars['String']['output']>;
26424
26681
  };
26425
26682
  export declare type HelpLayoutHeroElementInput = {
@@ -27429,17 +27686,21 @@ export declare type InsightsNextBestTaskEdge = {
27429
27686
  export declare type InsightsPullRequestNeedsWorkDetails = {
27430
27687
  __typename?: 'InsightsPullRequestNeedsWorkDetails';
27431
27688
  commentCount: Scalars['Int']['output'];
27689
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27432
27690
  lastUpdated: Scalars['String']['output'];
27433
27691
  needsWorkCount: Scalars['Int']['output'];
27434
27692
  repositoryName?: Maybe<Scalars['String']['output']>;
27693
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27435
27694
  };
27436
27695
  export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
27437
27696
  __typename?: 'InsightsPullRequestNeedsWorkTask';
27438
27697
  commentCount: Scalars['Int']['output'];
27698
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27439
27699
  id: Scalars['String']['output'];
27440
27700
  lastUpdated: Scalars['String']['output'];
27441
27701
  needsWorkCount: Scalars['Int']['output'];
27442
27702
  repositoryName?: Maybe<Scalars['String']['output']>;
27703
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27443
27704
  title: Scalars['String']['output'];
27444
27705
  url: Scalars['String']['output'];
27445
27706
  };
@@ -27447,16 +27708,20 @@ export declare type InsightsPullRequestReviewDetails = {
27447
27708
  __typename?: 'InsightsPullRequestReviewDetails';
27448
27709
  approvalsCount: Scalars['Int']['output'];
27449
27710
  commentCount: Scalars['Int']['output'];
27711
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27450
27712
  lastUpdated: Scalars['String']['output'];
27451
27713
  repositoryName?: Maybe<Scalars['String']['output']>;
27714
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27452
27715
  };
27453
27716
  export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
27454
27717
  __typename?: 'InsightsPullRequestReviewTask';
27455
27718
  approvalsCount: Scalars['Int']['output'];
27456
27719
  commentCount: Scalars['Int']['output'];
27720
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
27457
27721
  id: Scalars['String']['output'];
27458
27722
  lastUpdated: Scalars['String']['output'];
27459
27723
  repositoryName?: Maybe<Scalars['String']['output']>;
27724
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
27460
27725
  title: Scalars['String']['output'];
27461
27726
  url: Scalars['String']['output'];
27462
27727
  };
@@ -28209,6 +28474,7 @@ export declare type JiraAppNavigationConfig = {
28209
28474
  };
28210
28475
  export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
28211
28476
  __typename?: 'JiraAppNavigationItem';
28477
+ appType?: Maybe<JiraAppType>;
28212
28478
  canRemove?: Maybe<Scalars['Boolean']['output']>;
28213
28479
  canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
28214
28480
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -28232,6 +28498,10 @@ export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig &
28232
28498
  styleClass?: Maybe<Scalars['String']['output']>;
28233
28499
  url?: Maybe<Scalars['String']['output']>;
28234
28500
  };
28501
+ export declare enum JiraAppType {
28502
+ Connect = "CONNECT",
28503
+ Forge = "FORGE"
28504
+ }
28235
28505
  export declare type JiraAppUiModifications = {
28236
28506
  __typename?: 'JiraAppUiModifications';
28237
28507
  appEnvId: Scalars['String']['output'];
@@ -31153,6 +31423,7 @@ export declare type JiraIssue = Node & {
31153
31423
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
31154
31424
  linkedDesigns?: Maybe<GraphJiraDesignConnection>;
31155
31425
  mediaReadToken?: Maybe<JiraMediaReadToken>;
31426
+ mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
31156
31427
  postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
31157
31428
  priorityField?: Maybe<JiraPriorityField>;
31158
31429
  projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
@@ -31368,7 +31639,9 @@ export declare type JiraIssueBulkOperationsMetadata = {
31368
31639
  __typename?: 'JiraIssueBulkOperationsMetadata';
31369
31640
  maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
31370
31641
  };
31371
- export declare type JiraIssueCommandPaletteAction = JiraIssueCommandPaletteUpdateFieldAction | JiraIssueGenericCommandPaletteAction;
31642
+ export declare type JiraIssueCommandPaletteAction = {
31643
+ id: Scalars['ID']['output'];
31644
+ };
31372
31645
  export declare type JiraIssueCommandPaletteActionConnection = {
31373
31646
  __typename?: 'JiraIssueCommandPaletteActionConnection';
31374
31647
  edges?: Maybe<Array<Maybe<JiraIssueCommandPaletteActionEdge>>>;
@@ -31386,9 +31659,10 @@ export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = Que
31386
31659
  errorType?: Maybe<Scalars['String']['output']>;
31387
31660
  statusCode?: Maybe<Scalars['Int']['output']>;
31388
31661
  };
31389
- export declare type JiraIssueCommandPaletteUpdateFieldAction = {
31662
+ export declare type JiraIssueCommandPaletteUpdateFieldAction = JiraIssueCommandPaletteAction & Node & {
31390
31663
  __typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
31391
31664
  field: JiraIssueField;
31665
+ id: Scalars['ID']['output'];
31392
31666
  };
31393
31667
  export declare type JiraIssueCommitDevSummary = {
31394
31668
  __typename?: 'JiraIssueCommitDevSummary';
@@ -31596,9 +31870,10 @@ export declare type JiraIssueFieldsInput = {
31596
31870
  timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
31597
31871
  urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
31598
31872
  };
31599
- export declare type JiraIssueGenericCommandPaletteAction = {
31873
+ export declare type JiraIssueGenericCommandPaletteAction = JiraIssueCommandPaletteAction & Node & {
31600
31874
  __typename?: 'JiraIssueGenericCommandPaletteAction';
31601
31875
  actionName: Scalars['String']['output'];
31876
+ id: Scalars['ID']['output'];
31602
31877
  };
31603
31878
  export declare type JiraIssueHierarchyConfigData = {
31604
31879
  __typename?: 'JiraIssueHierarchyConfigData';
@@ -32124,6 +32399,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
32124
32399
  JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
32125
32400
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
32126
32401
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
32402
+ JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
32127
32403
  JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
32128
32404
  JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
32129
32405
  JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
@@ -32136,7 +32412,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
32136
32412
  JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
32137
32413
  JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
32138
32414
  JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
32415
+ JiraPeopleField?: InputMaybe<Array<JiraUpdatePeopleFieldInput>>;
32139
32416
  JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
32417
+ JiraProjectField?: InputMaybe<Array<JiraUpdateProjectFieldInput>>;
32140
32418
  JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
32141
32419
  JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
32142
32420
  JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
@@ -33365,6 +33643,7 @@ export declare type JiraMutation = {
33365
33643
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
33366
33644
  saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
33367
33645
  saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
33646
+ scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
33368
33647
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
33369
33648
  setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
33370
33649
  setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
@@ -33621,6 +33900,13 @@ export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
33621
33900
  export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
33622
33901
  input: JiraVersionIssueTableColumnHiddenStateInput;
33623
33902
  };
33903
+ export declare type JiraMutationScheduleCalendarIssueArgs = {
33904
+ configuration: JiraCalendarViewConfigurationInput;
33905
+ endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
33906
+ issueId: Scalars['ID']['input'];
33907
+ scope?: InputMaybe<JiraViewScopeInput>;
33908
+ startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
33909
+ };
33624
33910
  export declare type JiraMutationSetApplicationPropertiesArgs = {
33625
33911
  cloudId: Scalars['ID']['input'];
33626
33912
  input: Array<JiraSetApplicationPropertyInput>;
@@ -34412,6 +34698,16 @@ export declare type JiraPeopleFieldInput = {
34412
34698
  fieldId: Scalars['ID']['input'];
34413
34699
  users: Array<JiraUserInput>;
34414
34700
  };
34701
+ export declare type JiraPeopleFieldOperationInput = {
34702
+ ids: Array<Scalars['ID']['input']>;
34703
+ operation: JiraMultiValueFieldOperations;
34704
+ };
34705
+ export declare type JiraPeopleFieldPayload = Payload & {
34706
+ __typename?: 'JiraPeopleFieldPayload';
34707
+ errors?: Maybe<Array<MutationError>>;
34708
+ field?: Maybe<JiraPeopleField>;
34709
+ success: Scalars['Boolean']['output'];
34710
+ };
34415
34711
  export declare type JiraPermission = {
34416
34712
  __typename?: 'JiraPermission';
34417
34713
  hasPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -34721,6 +35017,7 @@ export declare type JiraProject = Node & {
34721
35017
  projectId?: Maybe<Scalars['String']['output']>;
34722
35018
  projectStyle?: Maybe<JiraProjectStyle>;
34723
35019
  projectType?: Maybe<JiraProjectType>;
35020
+ projectTypeName?: Maybe<Scalars['String']['output']>;
34724
35021
  projectUrl?: Maybe<Scalars['String']['output']>;
34725
35022
  repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
34726
35023
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -36456,6 +36753,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
36456
36753
  resolution?: Maybe<JiraResolution>;
36457
36754
  resolutions?: Maybe<JiraResolutionConnection>;
36458
36755
  resolutionsForTransition?: Maybe<JiraResolutionConnection>;
36756
+ selectedResolutionForTransition?: Maybe<JiraResolution>;
36459
36757
  type: Scalars['String']['output'];
36460
36758
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
36461
36759
  };
@@ -36478,6 +36776,9 @@ export declare type JiraResolutionFieldResolutionsForTransitionArgs = {
36478
36776
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
36479
36777
  transitionId: Scalars['String']['input'];
36480
36778
  };
36779
+ export declare type JiraResolutionFieldSelectedResolutionForTransitionArgs = {
36780
+ transitionId: Scalars['String']['input'];
36781
+ };
36481
36782
  export declare type JiraResolutionFieldOperationInput = {
36482
36783
  id?: InputMaybe<Scalars['ID']['input']>;
36483
36784
  operation: JiraSingleValueFieldOperations;
@@ -36724,6 +37025,12 @@ export declare type JiraScaledConfigurationPermissions = {
36724
37025
  hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
36725
37026
  userPermissions?: Maybe<JiraScaledConfigurationPermission>;
36726
37027
  };
37028
+ export declare type JiraScheduleCalendarIssuePayload = Payload & {
37029
+ __typename?: 'JiraScheduleCalendarIssuePayload';
37030
+ errors?: Maybe<Array<MutationError>>;
37031
+ issue?: Maybe<JiraIssue>;
37032
+ success: Scalars['Boolean']['output'];
37033
+ };
36727
37034
  export declare type JiraScmRepository = {
36728
37035
  __typename?: 'JiraScmRepository';
36729
37036
  entityUrl?: Maybe<Scalars['URL']['output']>;
@@ -38829,6 +39136,10 @@ export declare type JiraUpdateParentFieldInput = {
38829
39136
  id: Scalars['ID']['input'];
38830
39137
  operation: JiraParentFieldOperationInput;
38831
39138
  };
39139
+ export declare type JiraUpdatePeopleFieldInput = {
39140
+ id: Scalars['ID']['input'];
39141
+ operations: Array<JiraPeopleFieldOperationInput>;
39142
+ };
38832
39143
  export declare type JiraUpdatePriorityFieldInput = {
38833
39144
  id: Scalars['ID']['input'];
38834
39145
  operation: JiraPriorityFieldOperationInput;
@@ -40282,6 +40593,36 @@ export declare type JsmChatChannelSettings = {
40282
40593
  isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
40283
40594
  isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
40284
40595
  };
40596
+ export declare enum JsmChatChannelType {
40597
+ Agent = "AGENT",
40598
+ Request = "REQUEST"
40599
+ }
40600
+ export declare type JsmChatCreateChannelInput = {
40601
+ aaid: Scalars['String']['input'];
40602
+ activationId: Scalars['String']['input'];
40603
+ channelName: Scalars['String']['input'];
40604
+ channelType: JsmChatChannelType;
40605
+ isVirtualAgent?: InputMaybe<Scalars['Boolean']['input']>;
40606
+ isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
40607
+ projectId: Scalars['String']['input'];
40608
+ requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
40609
+ siteId: Scalars['String']['input'];
40610
+ };
40611
+ export declare type JsmChatCreateChannelOutput = {
40612
+ __typename?: 'JsmChatCreateChannelOutput';
40613
+ message: Scalars['String']['output'];
40614
+ status: Scalars['Boolean']['output'];
40615
+ };
40616
+ export declare type JsmChatCreateCommentInput = {
40617
+ jiraIssueAri: Scalars['ID']['input'];
40618
+ message: Scalars['String']['input'];
40619
+ messageSource: Scalars['String']['input'];
40620
+ };
40621
+ export declare type JsmChatCreateCommentOutput = {
40622
+ __typename?: 'JsmChatCreateCommentOutput';
40623
+ message: Scalars['String']['output'];
40624
+ status: Scalars['Boolean']['output'];
40625
+ };
40285
40626
  export declare type JsmChatDisconnectJiraProjectInput = {
40286
40627
  activationId: Scalars['ID']['input'];
40287
40628
  projectId: Scalars['ID']['input'];
@@ -40293,11 +40634,6 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
40293
40634
  message: Scalars['String']['output'];
40294
40635
  status: Scalars['Boolean']['output'];
40295
40636
  };
40296
- export declare type JsmChatGetSlackChatConfigInput = {
40297
- activationId: Scalars['ID']['input'];
40298
- projectId: Scalars['ID']['input'];
40299
- siteId: Scalars['ID']['input'];
40300
- };
40301
40637
  export declare type JsmChatInitializeConfigRequest = {
40302
40638
  activationId: Scalars['ID']['input'];
40303
40639
  projectId: Scalars['ID']['input'];
@@ -40307,12 +40643,24 @@ export declare type JsmChatInitializeConfigResponse = {
40307
40643
  __typename?: 'JsmChatInitializeConfigResponse';
40308
40644
  nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40309
40645
  };
40646
+ export declare type JsmChatInitializeNativeConfigResponse = {
40647
+ __typename?: 'JsmChatInitializeNativeConfigResponse';
40648
+ nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40649
+ };
40310
40650
  export declare type JsmChatMutation = {
40311
40651
  __typename?: 'JsmChatMutation';
40652
+ createChannel: JsmChatCreateChannelOutput;
40653
+ createComment?: Maybe<JsmChatCreateCommentOutput>;
40312
40654
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
40313
40655
  updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
40314
40656
  updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
40315
40657
  };
40658
+ export declare type JsmChatMutationCreateChannelArgs = {
40659
+ input?: InputMaybe<JsmChatCreateChannelInput>;
40660
+ };
40661
+ export declare type JsmChatMutationCreateCommentArgs = {
40662
+ input: JsmChatCreateCommentInput;
40663
+ };
40316
40664
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40317
40665
  input: JsmChatDisconnectJiraProjectInput;
40318
40666
  };
@@ -40344,13 +40692,17 @@ export declare type JsmChatQuery = {
40344
40692
  __typename?: 'JsmChatQuery';
40345
40693
  getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
40346
40694
  initializeConfig: JsmChatInitializeConfigResponse;
40695
+ initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
40347
40696
  };
40348
40697
  export declare type JsmChatQueryGetSlackChatConfigArgs = {
40349
- input: JsmChatGetSlackChatConfigInput;
40698
+ jiraProjectAri: Scalars['ID']['input'];
40350
40699
  };
40351
40700
  export declare type JsmChatQueryInitializeConfigArgs = {
40352
40701
  input: JsmChatInitializeConfigRequest;
40353
40702
  };
40703
+ export declare type JsmChatQueryInitializeNativeConfigArgs = {
40704
+ jiraProjectAri: Scalars['ID']['input'];
40705
+ };
40354
40706
  export declare type JsmChatSlackConfig = {
40355
40707
  __typename?: 'JsmChatSlackConfig';
40356
40708
  botUserId?: Maybe<Scalars['String']['output']>;
@@ -40447,10 +40799,33 @@ export declare type KnowledgeDiscoveryEntity = {
40447
40799
  id: Scalars['ID']['output'];
40448
40800
  };
40449
40801
  export declare enum KnowledgeDiscoveryEntityType {
40450
- Document = "DOCUMENT",
40451
- Keyword = "KEYWORD",
40452
- Topic = "TOPIC"
40802
+ ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
40803
+ ConfluenceDocument = "CONFLUENCE_DOCUMENT",
40804
+ ConfluencePage = "CONFLUENCE_PAGE",
40805
+ ConfluenceSpace = "CONFLUENCE_SPACE",
40806
+ JiraProject = "JIRA_PROJECT",
40807
+ KeyPhrase = "KEY_PHRASE",
40808
+ Topic = "TOPIC",
40809
+ User = "USER"
40810
+ }
40811
+ export declare type KnowledgeDiscoveryKeyPhrase = {
40812
+ __typename?: 'KnowledgeDiscoveryKeyPhrase';
40813
+ keyPhrase: Scalars['String']['output'];
40814
+ };
40815
+ export declare type KnowledgeDiscoveryKeyPhraseConnection = {
40816
+ __typename?: 'KnowledgeDiscoveryKeyPhraseConnection';
40817
+ nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryKeyPhrase>>>;
40818
+ pageInfo: PageInfo;
40819
+ };
40820
+ export declare type KnowledgeDiscoveryKeyPhraseInputText = {
40821
+ format: KnowledgeDiscoveryKeyPhraseInputTextFormat;
40822
+ text: Scalars['String']['input'];
40823
+ };
40824
+ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
40825
+ Adf = "ADF",
40826
+ Plain = "PLAIN"
40453
40827
  }
40828
+ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
40454
40829
  export declare type KnowledgeDiscoveryMutationApi = {
40455
40830
  __typename?: 'KnowledgeDiscoveryMutationApi';
40456
40831
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
@@ -40458,11 +40833,19 @@ export declare type KnowledgeDiscoveryMutationApi = {
40458
40833
  export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
40459
40834
  input: KnowledgeDiscoveryCreateDefinitionInput;
40460
40835
  };
40836
+ export declare type KnowledgeDiscoveryPageInfo = {
40837
+ __typename?: 'KnowledgeDiscoveryPageInfo';
40838
+ endCursor?: Maybe<Scalars['String']['output']>;
40839
+ hasNextPage: Scalars['Boolean']['output'];
40840
+ hasPreviousPage: Scalars['Boolean']['output'];
40841
+ startCursor?: Maybe<Scalars['String']['output']>;
40842
+ };
40461
40843
  export declare type KnowledgeDiscoveryQueryApi = {
40462
40844
  __typename?: 'KnowledgeDiscoveryQueryApi';
40463
40845
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
40464
40846
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
40465
- relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
40847
+ keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
40848
+ relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
40466
40849
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
40467
40850
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
40468
40851
  };
@@ -40474,13 +40857,22 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
40474
40857
  keyPhrase: Scalars['String']['input'];
40475
40858
  workspaceId: Scalars['String']['input'];
40476
40859
  };
40860
+ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
40861
+ after?: InputMaybe<Scalars['String']['input']>;
40862
+ cloudId?: InputMaybe<Scalars['String']['input']>;
40863
+ entityAri?: InputMaybe<Scalars['String']['input']>;
40864
+ first?: InputMaybe<Scalars['Int']['input']>;
40865
+ inputText?: InputMaybe<KnowledgeDiscoveryKeyPhraseInputText>;
40866
+ limited?: InputMaybe<Scalars['Boolean']['input']>;
40867
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
40868
+ };
40477
40869
  export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
40478
40870
  after?: InputMaybe<Scalars['String']['input']>;
40479
40871
  cloudId?: InputMaybe<Scalars['String']['input']>;
40480
- entityType: Scalars['String']['input'];
40872
+ entityId: Scalars['String']['input'];
40873
+ entityType: KnowledgeDiscoveryEntityType;
40481
40874
  first?: InputMaybe<Scalars['Int']['input']>;
40482
- id: Scalars['String']['input'];
40483
- relatedEntityType: Scalars['String']['input'];
40875
+ relatedEntityType: KnowledgeDiscoveryEntityType;
40484
40876
  workspaceId?: InputMaybe<Scalars['String']['input']>;
40485
40877
  };
40486
40878
  export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
@@ -40493,18 +40885,12 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
40493
40885
  id: Scalars['String']['input'];
40494
40886
  workspaceId?: InputMaybe<Scalars['String']['input']>;
40495
40887
  };
40888
+ export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
40496
40889
  export declare type KnowledgeDiscoveryRelatedEntityConnection = {
40497
40890
  __typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
40498
- edges?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityEdge>>>;
40499
- nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityResult>>>;
40500
- pageInfo: PageInfo;
40891
+ nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
40892
+ pageInfo: KnowledgeDiscoveryPageInfo;
40501
40893
  };
40502
- export declare type KnowledgeDiscoveryRelatedEntityEdge = {
40503
- __typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
40504
- edgeCursor: Scalars['String']['output'];
40505
- node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
40506
- };
40507
- export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
40508
40894
  export declare enum KnowledgeDiscoverySearchQueryClassification {
40509
40895
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
40510
40896
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
@@ -40659,9 +41045,6 @@ export declare enum MarketplaceAppPaymentModel {
40659
41045
  PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
40660
41046
  PaidViaPartner = "PAID_VIA_PARTNER"
40661
41047
  }
40662
- export declare enum MarketplaceAppPermission {
40663
- ManageAppDetails = "MANAGE_APP_DETAILS"
40664
- }
40665
41048
  export declare type MarketplaceAppPrograms = {
40666
41049
  __typename?: 'MarketplaceAppPrograms';
40667
41050
  bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
@@ -41271,14 +41654,6 @@ export declare type MarketplaceTieredPricing = {
41271
41654
  tierType: MarketplacePricingTierType;
41272
41655
  tiersMode: MarketplacePricingTierMode;
41273
41656
  };
41274
- export declare type MarketplaceUser = {
41275
- __typename?: 'MarketplaceUser';
41276
- appPermissions: Array<MarketplaceAppPermission>;
41277
- id: Scalars['ID']['output'];
41278
- };
41279
- export declare type MarketplaceUserAppPermissionsArgs = {
41280
- appId: Scalars['ID']['input'];
41281
- };
41282
41657
  export declare type MarketplaceWorkflowAppDeployment = MarketplaceAppDeployment & {
41283
41658
  __typename?: 'MarketplaceWorkflowAppDeployment';
41284
41659
  compatibleProducts: Array<CompatibleAtlassianProduct>;
@@ -41330,9 +41705,24 @@ export declare type MercuryCreateGoalUpdateWithMetricInput = {
41330
41705
  };
41331
41706
  export declare type MercuryCreateGoalUpdateWithMetricPayload = {
41332
41707
  __typename?: 'MercuryCreateGoalUpdateWithMetricPayload';
41333
- atlasGoalAri: Scalars['String']['output'];
41334
- atlasGoalId: Scalars['ID']['output'];
41335
41708
  errors?: Maybe<Array<MutationError>>;
41709
+ goalUpdate?: Maybe<MercuryGoalUpdate>;
41710
+ success: Scalars['Boolean']['output'];
41711
+ };
41712
+ export declare type MercuryEditGoalInput = {
41713
+ description?: InputMaybe<Scalars['String']['input']>;
41714
+ goalAri: Scalars['String']['input'];
41715
+ goalStatus?: InputMaybe<MercuryGoalStatus>;
41716
+ metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41717
+ name?: InputMaybe<Scalars['String']['input']>;
41718
+ owner?: InputMaybe<Scalars['String']['input']>;
41719
+ startDate?: InputMaybe<Scalars['Date']['input']>;
41720
+ targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
41721
+ };
41722
+ export declare type MercuryEditGoalPayload = Payload & {
41723
+ __typename?: 'MercuryEditGoalPayload';
41724
+ errors?: Maybe<Array<MutationError>>;
41725
+ goal?: Maybe<MercuryGoal>;
41336
41726
  success: Scalars['Boolean']['output'];
41337
41727
  };
41338
41728
  export declare type MercuryFocusArea = Node & {
@@ -41459,6 +41849,12 @@ export declare type MercuryGoal = {
41459
41849
  id: Scalars['ID']['output'];
41460
41850
  metric?: Maybe<MercuryMetric>;
41461
41851
  };
41852
+ export declare type MercuryGoalAggregatedStatusCount = {
41853
+ __typename?: 'MercuryGoalAggregatedStatusCount';
41854
+ krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
41855
+ latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
41856
+ subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
41857
+ };
41462
41858
  export declare type MercuryGoalConnection = {
41463
41859
  __typename?: 'MercuryGoalConnection';
41464
41860
  edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
@@ -41473,11 +41869,21 @@ export declare type MercuryGoalEdge = {
41473
41869
  export declare type MercuryGoalMutationApi = {
41474
41870
  __typename?: 'MercuryGoalMutationApi';
41475
41871
  createGoal: MercuryCreateGoalPayload;
41872
+ createGoalUpdateWithMetric: MercuryCreateGoalUpdateWithMetricPayload;
41873
+ editGoal: MercuryEditGoalPayload;
41476
41874
  };
41477
41875
  export declare type MercuryGoalMutationApiCreateGoalArgs = {
41478
41876
  cloudId: Scalars['ID']['input'];
41479
41877
  input: MercuryCreateGoalInput;
41480
41878
  };
41879
+ export declare type MercuryGoalMutationApiCreateGoalUpdateWithMetricArgs = {
41880
+ cloudId: Scalars['ID']['input'];
41881
+ input: MercuryCreateGoalUpdateWithMetricInput;
41882
+ };
41883
+ export declare type MercuryGoalMutationApiEditGoalArgs = {
41884
+ cloudId: Scalars['ID']['input'];
41885
+ input: MercuryEditGoalInput;
41886
+ };
41481
41887
  export declare enum MercuryGoalPhase {
41482
41888
  Done = "DONE",
41483
41889
  InProgress = "IN_PROGRESS",
@@ -41493,6 +41899,17 @@ export declare enum MercuryGoalStatus {
41493
41899
  Paused = "PAUSED",
41494
41900
  Pending = "PENDING"
41495
41901
  }
41902
+ export declare type MercuryGoalStatusCount = {
41903
+ __typename?: 'MercuryGoalStatusCount';
41904
+ atRisk?: Maybe<Scalars['Int']['output']>;
41905
+ cancelled?: Maybe<Scalars['Int']['output']>;
41906
+ done?: Maybe<Scalars['Int']['output']>;
41907
+ offTrack?: Maybe<Scalars['Int']['output']>;
41908
+ onTrack?: Maybe<Scalars['Int']['output']>;
41909
+ paused?: Maybe<Scalars['Int']['output']>;
41910
+ pending?: Maybe<Scalars['Int']['output']>;
41911
+ total?: Maybe<Scalars['Int']['output']>;
41912
+ };
41496
41913
  export declare type MercuryGoalTargetDateInput = {
41497
41914
  date?: InputMaybe<Scalars['Date']['input']>;
41498
41915
  targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
@@ -41506,6 +41923,17 @@ export declare enum MercuryGoalType {
41506
41923
  Goal = "GOAL",
41507
41924
  KeyResult = "KEY_RESULT"
41508
41925
  }
41926
+ export declare type MercuryGoalUpdate = {
41927
+ __typename?: 'MercuryGoalUpdate';
41928
+ atlasGoalId: Scalars['ID']['output'];
41929
+ atlasGoalUpdateAri: Scalars['String']['output'];
41930
+ atlasGoalUpdateId: Scalars['ID']['output'];
41931
+ };
41932
+ export declare type MercuryGoalsAggregatedStatusCount = {
41933
+ __typename?: 'MercuryGoalsAggregatedStatusCount';
41934
+ current?: Maybe<MercuryGoalStatusCount>;
41935
+ previous?: Maybe<MercuryGoalStatusCount>;
41936
+ };
41509
41937
  export declare type MercuryMetric = {
41510
41938
  __typename?: 'MercuryMetric';
41511
41939
  metricType?: Maybe<MercuryMetricType>;
@@ -41513,19 +41941,18 @@ export declare type MercuryMetric = {
41513
41941
  };
41514
41942
  export declare type MercuryMetricScoring = {
41515
41943
  __typename?: 'MercuryMetricScoring';
41516
- baseline?: Maybe<Scalars['BigDecimal']['output']>;
41517
- current?: Maybe<Scalars['BigDecimal']['output']>;
41518
- target?: Maybe<Scalars['BigDecimal']['output']>;
41944
+ currentValue?: Maybe<Scalars['BigDecimal']['output']>;
41945
+ startValue?: Maybe<Scalars['BigDecimal']['output']>;
41946
+ targetValue?: Maybe<Scalars['BigDecimal']['output']>;
41519
41947
  };
41520
41948
  export declare type MercuryMetricScoringInput = {
41521
- baseline?: InputMaybe<Scalars['BigDecimal']['input']>;
41522
- current?: InputMaybe<Scalars['BigDecimal']['input']>;
41523
- target?: InputMaybe<Scalars['BigDecimal']['input']>;
41949
+ startValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41950
+ targetValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41524
41951
  };
41525
41952
  export declare enum MercuryMetricType {
41526
41953
  Currency = "CURRENCY",
41527
41954
  Number = "NUMBER",
41528
- Percent = "PERCENT"
41955
+ Percentage = "PERCENTAGE"
41529
41956
  }
41530
41957
  export declare type MercuryQueryApi = {
41531
41958
  __typename?: 'MercuryQueryApi';
@@ -44336,7 +44763,7 @@ export declare type Properties = {
44336
44763
  updatedValues?: Maybe<Scalars['String']['output']>;
44337
44764
  };
44338
44765
  export declare type PullRequestStatusInTimeRangeQueryFilter = {
44339
- status: CompassPullRequestStatus;
44766
+ status: CompassPullRequestStatusForStatusInTimeRangeFilter;
44340
44767
  timeRange: CompassQueryTimeRange;
44341
44768
  };
44342
44769
  export declare type Query = {
@@ -44438,7 +44865,6 @@ export declare type Query = {
44438
44865
  marketplacePartner?: Maybe<MarketplacePartner>;
44439
44866
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
44440
44867
  marketplaceStore: MarketplaceStoreQueryApi;
44441
- marketplaceUser?: Maybe<MarketplaceUser>;
44442
44868
  me: AuthenticationContext;
44443
44869
  mercury?: Maybe<MercuryQueryApi>;
44444
44870
  migration: MigrationQuery;
@@ -44481,6 +44907,7 @@ export declare type Query = {
44481
44907
  signup?: Maybe<SignupQueryApi>;
44482
44908
  smarts?: Maybe<SmartsQueryApi>;
44483
44909
  softwareBoards?: Maybe<BoardScopeConnection>;
44910
+ squadNameById?: Maybe<SupportInquirySquad>;
44484
44911
  suggestions?: Maybe<AutoSuggestionApi>;
44485
44912
  surfacePlatform: SurfacePlatformQueryApi;
44486
44913
  team?: Maybe<TeamQuery>;
@@ -46260,6 +46687,7 @@ export declare type SearchAnalyticsInput = {
46260
46687
  queryVersion?: InputMaybe<Scalars['Int']['input']>;
46261
46688
  searchReferrerId?: InputMaybe<Scalars['String']['input']>;
46262
46689
  searchSessionId?: InputMaybe<Scalars['String']['input']>;
46690
+ sourceProduct?: InputMaybe<Scalars['String']['input']>;
46263
46691
  };
46264
46692
  export declare type SearchBoardFilter = {
46265
46693
  negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
@@ -46353,6 +46781,9 @@ export declare type SearchDefaultResult = SearchResult & {
46353
46781
  type: SearchResultType;
46354
46782
  url: Scalars['URL']['output'];
46355
46783
  };
46784
+ export declare type SearchExperimentContextInput = {
46785
+ experimentId?: InputMaybe<Scalars['String']['input']>;
46786
+ };
46356
46787
  export declare type SearchExternalContainerFilter = {
46357
46788
  type: Scalars['String']['input'];
46358
46789
  values: Array<Scalars['String']['input']>;
@@ -46378,6 +46809,10 @@ export declare type SearchFilterInput = {
46378
46809
  locations: Array<Scalars['String']['input']>;
46379
46810
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
46380
46811
  };
46812
+ export declare type SearchInterleaverScrapingResult = {
46813
+ __typename?: 'SearchInterleaverScrapingResult';
46814
+ rerankerRequestInJSON: Scalars['String']['output'];
46815
+ };
46381
46816
  export declare enum SearchIssueStatusCategory {
46382
46817
  Done = "DONE",
46383
46818
  Open = "OPEN"
@@ -46386,6 +46821,7 @@ export declare type SearchItemConnection = {
46386
46821
  __typename?: 'SearchItemConnection';
46387
46822
  abTest?: Maybe<SearchAbTest>;
46388
46823
  edges: Array<SearchResultItemEdge>;
46824
+ interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
46389
46825
  pageInfo: PageInfo;
46390
46826
  totalCount?: Maybe<Scalars['Int']['output']>;
46391
46827
  };
@@ -46426,6 +46862,7 @@ export declare type SearchQueryApiSearchArgs = {
46426
46862
  before?: InputMaybe<Scalars['String']['input']>;
46427
46863
  enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
46428
46864
  experience: Scalars['String']['input'];
46865
+ experimentContext?: InputMaybe<SearchExperimentContextInput>;
46429
46866
  filters: SearchFilterInput;
46430
46867
  first?: InputMaybe<Scalars['Int']['input']>;
46431
46868
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -46467,6 +46904,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
46467
46904
  export declare type SearchResultBitbucketRepository = SearchResult & {
46468
46905
  __typename?: 'SearchResultBitbucketRepository';
46469
46906
  description: Scalars['String']['output'];
46907
+ fullRepoName: Scalars['String']['output'];
46470
46908
  iconUrl?: Maybe<Scalars['URL']['output']>;
46471
46909
  id: Scalars['ID']['output'];
46472
46910
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
@@ -46495,6 +46933,7 @@ export declare type SearchResultGoogleDocument = SearchResult & {
46495
46933
  excerpt?: Maybe<Scalars['String']['output']>;
46496
46934
  iconUrl?: Maybe<Scalars['URL']['output']>;
46497
46935
  id: Scalars['ID']['output'];
46936
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
46498
46937
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
46499
46938
  title: Scalars['String']['output'];
46500
46939
  type: SearchResultType;
@@ -46599,6 +47038,7 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
46599
47038
  excerpt?: Maybe<Scalars['String']['output']>;
46600
47039
  iconUrl?: Maybe<Scalars['URL']['output']>;
46601
47040
  id: Scalars['ID']['output'];
47041
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
46602
47042
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
46603
47043
  title: Scalars['String']['output'];
46604
47044
  type: SearchResultType;
@@ -46616,6 +47056,8 @@ export declare type SearchResultTrelloBoard = SearchResult & {
46616
47056
  };
46617
47057
  export declare type SearchResultTrelloCard = SearchResult & {
46618
47058
  __typename?: 'SearchResultTrelloCard';
47059
+ boardName?: Maybe<Scalars['String']['output']>;
47060
+ commentsCount: Scalars['Int']['output'];
46619
47061
  description: Scalars['String']['output'];
46620
47062
  iconUrl?: Maybe<Scalars['URL']['output']>;
46621
47063
  id: Scalars['ID']['output'];
@@ -46635,6 +47077,7 @@ export declare enum SearchResultType {
46635
47077
  Document = "document",
46636
47078
  Embed = "embed",
46637
47079
  Filter = "filter",
47080
+ Folder = "folder",
46638
47081
  Goal = "goal",
46639
47082
  Issue = "issue",
46640
47083
  Learning = "learning",
@@ -47003,6 +47446,7 @@ export declare type ShepherdAlertEdge = {
47003
47446
  };
47004
47447
  export declare type ShepherdAlertMetaData = {
47005
47448
  __typename?: 'ShepherdAlertMetaData';
47449
+ dspList?: Maybe<ShepherdDspListMetadata>;
47006
47450
  siteContainerResourceCount?: Maybe<Scalars['Int']['output']>;
47007
47451
  };
47008
47452
  export declare type ShepherdAlertQueries = {
@@ -47326,6 +47770,7 @@ export declare type ShepherdDescriptionTemplate = {
47326
47770
  __typename?: 'ShepherdDescriptionTemplate';
47327
47771
  extendedText?: Maybe<Scalars['JSON']['output']>;
47328
47772
  investigationText?: Maybe<Scalars['JSON']['output']>;
47773
+ remediationActions?: Maybe<Array<ShepherdRemediationAction>>;
47329
47774
  remediationText?: Maybe<Scalars['JSON']['output']>;
47330
47775
  text?: Maybe<Scalars['JSON']['output']>;
47331
47776
  type?: Maybe<ShepherdAlertTemplateType>;
@@ -47368,8 +47813,12 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
47368
47813
  export declare type ShepherdDetectionResourceExclusion = {
47369
47814
  __typename?: 'ShepherdDetectionResourceExclusion';
47370
47815
  ari: Scalars['ID']['output'];
47816
+ classificationId?: Maybe<Scalars['ID']['output']>;
47817
+ containerTitle?: Maybe<Scalars['String']['output']>;
47371
47818
  createdBy?: Maybe<Scalars['ID']['output']>;
47819
+ createdByUser?: Maybe<User>;
47372
47820
  createdOn?: Maybe<Scalars['DateTime']['output']>;
47821
+ resourceTitle?: Maybe<Scalars['String']['output']>;
47373
47822
  resourceUrl?: Maybe<Scalars['String']['output']>;
47374
47823
  };
47375
47824
  export declare enum ShepherdDetectionScanningFrequency {
@@ -47417,6 +47866,11 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
47417
47866
  node?: Maybe<ShepherdDetectionSetting>;
47418
47867
  success: Scalars['Boolean']['output'];
47419
47868
  };
47869
+ export declare type ShepherdDspListMetadata = {
47870
+ __typename?: 'ShepherdDspListMetadata';
47871
+ isSwitched?: Maybe<Scalars['Boolean']['output']>;
47872
+ type?: Maybe<Scalars['String']['output']>;
47873
+ };
47420
47874
  export declare type ShepherdExclusionContentInfo = {
47421
47875
  __typename?: 'ShepherdExclusionContentInfo';
47422
47876
  ari?: Maybe<Scalars['String']['output']>;
@@ -47627,6 +48081,61 @@ export declare type ShepherdRelatedAlertType = {
47627
48081
  template?: Maybe<ShepherdAlertTemplateType>;
47628
48082
  title?: Maybe<ShepherdAlertTitle>;
47629
48083
  };
48084
+ export declare type ShepherdRemediationAction = {
48085
+ __typename?: 'ShepherdRemediationAction';
48086
+ description?: Maybe<Scalars['String']['output']>;
48087
+ linkHref?: Maybe<Scalars['String']['output']>;
48088
+ linkText?: Maybe<Scalars['String']['output']>;
48089
+ type: ShepherdRemediationActionType;
48090
+ };
48091
+ export declare enum ShepherdRemediationActionType {
48092
+ AnonAccessDspRemediation = "ANON_ACCESS_DSP_REMEDIATION",
48093
+ ApplyClassificationRemediation = "APPLY_CLASSIFICATION_REMEDIATION",
48094
+ AppsAccessDspRemediation = "APPS_ACCESS_DSP_REMEDIATION",
48095
+ ArchiveRestoreClassificationRemediation = "ARCHIVE_RESTORE_CLASSIFICATION_REMEDIATION",
48096
+ BlockchainExplorerRemediation = "BLOCKCHAIN_EXPLORER_REMEDIATION",
48097
+ BlockIpAllowlistRemediation = "BLOCK_IP_ALLOWLIST_REMEDIATION",
48098
+ ClassificationLevelChangeRemediation = "CLASSIFICATION_LEVEL_CHANGE_REMEDIATION",
48099
+ ConfluenceAnonAccessRemediation = "CONFLUENCE_ANON_ACCESS_REMEDIATION",
48100
+ DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
48101
+ DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
48102
+ EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
48103
+ ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
48104
+ ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
48105
+ ExportDspRemediation = "EXPORT_DSP_REMEDIATION",
48106
+ ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
48107
+ JiraGlobalPermissionsRemediation = "JIRA_GLOBAL_PERMISSIONS_REMEDIATION",
48108
+ KeyOwnerRemediation = "KEY_OWNER_REMEDIATION",
48109
+ LimitJiraPermissionsRemediation = "LIMIT_JIRA_PERMISSIONS_REMEDIATION",
48110
+ ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
48111
+ ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
48112
+ ManageDspRemediation = "MANAGE_DSP_REMEDIATION",
48113
+ PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
48114
+ RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
48115
+ ReviewAccessRemediation = "REVIEW_ACCESS_REMEDIATION",
48116
+ ReviewApiKeysRemediation = "REVIEW_API_KEYS_REMEDIATION",
48117
+ ReviewApiTokensRemediation = "REVIEW_API_TOKENS_REMEDIATION",
48118
+ ReviewAuditLogRemediation = "REVIEW_AUDIT_LOG_REMEDIATION",
48119
+ ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
48120
+ ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
48121
+ ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
48122
+ ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
48123
+ ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
48124
+ ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
48125
+ ReviewSamlRemediation = "REVIEW_SAML_REMEDIATION",
48126
+ ReviewScimRemediation = "REVIEW_SCIM_REMEDIATION",
48127
+ ReviewTunnelsConfigurationRemediation = "REVIEW_TUNNELS_CONFIGURATION_REMEDIATION",
48128
+ ReviewTunnelsRemediation = "REVIEW_TUNNELS_REMEDIATION",
48129
+ RevokeAccessRemediation = "REVOKE_ACCESS_REMEDIATION",
48130
+ RevokeApiKeyRemediation = "REVOKE_API_KEY_REMEDIATION",
48131
+ RevokeApiTokensRemediation = "REVOKE_API_TOKENS_REMEDIATION",
48132
+ SpacePermissionsRemediation = "SPACE_PERMISSIONS_REMEDIATION",
48133
+ SuspendActorRemediation = "SUSPEND_ACTOR_REMEDIATION",
48134
+ SuspendSubjectRemediation = "SUSPEND_SUBJECT_REMEDIATION",
48135
+ TurnOffJiraPermissionsRemediation = "TURN_OFF_JIRA_PERMISSIONS_REMEDIATION",
48136
+ TwoStepPolicyRemediation = "TWO_STEP_POLICY_REMEDIATION",
48137
+ ViewSpacePermissionsRemediation = "VIEW_SPACE_PERMISSIONS_REMEDIATION"
48138
+ }
47630
48139
  export declare type ShepherdResourceActivity = {
47631
48140
  __typename?: 'ShepherdResourceActivity';
47632
48141
  action: ShepherdActionType;
@@ -48250,6 +48759,11 @@ export declare type Subscription = {
48250
48759
  testing?: Maybe<TestingSubscription>;
48251
48760
  trello: TrelloSubscriptionApi;
48252
48761
  };
48762
+ export declare type SupportInquirySquad = {
48763
+ __typename?: 'SupportInquirySquad';
48764
+ id: Scalars['ID']['output'];
48765
+ squadName?: Maybe<Scalars['String']['output']>;
48766
+ };
48253
48767
  export declare type SupportRequest = {
48254
48768
  __typename?: 'SupportRequest';
48255
48769
  activities: SupportRequestActivities;
@@ -49093,7 +49607,7 @@ export declare type ToolchainAssociateEntityInput = {
49093
49607
  fromId: Scalars['ID']['input'];
49094
49608
  toEntityUrl: Scalars['URL']['input'];
49095
49609
  };
49096
- export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
49610
+ export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService | ThirdPartySecurityContainer;
49097
49611
  export declare type ToolchainAssociatedEntity = DevOpsDesign;
49098
49612
  export declare type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
49099
49613
  __typename?: 'ToolchainCheck3LOAuth';
@@ -50874,18 +51388,13 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
50874
51388
  export declare type UnifiedAccount = {
50875
51389
  __typename?: 'UnifiedAccount';
50876
51390
  aaid: Scalars['ID']['output'];
50877
- conpAaid?: Maybe<Scalars['String']['output']>;
50878
- uaIid?: Maybe<Scalars['String']['output']>;
50879
- upIid?: Maybe<Scalars['String']['output']>;
50880
- };
50881
- export declare type UnifiedAccountInput = {
50882
- aaid: Scalars['String']['input'];
50883
- conpAaid?: InputMaybe<Scalars['String']['input']>;
50884
- upIid?: InputMaybe<Scalars['String']['input']>;
51391
+ connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
51392
+ parentAccountEmailId?: Maybe<Scalars['String']['output']>;
51393
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
50885
51394
  };
50886
51395
  export declare type UnifiedCreateAccountSuccess = {
50887
51396
  __typename?: 'UnifiedCreateAccountSuccess';
50888
- data: UnifiedAccount;
51397
+ data: UnifiedParentAccount;
50889
51398
  };
50890
51399
  export declare type UnifiedCreateAccountUnion = UnifiedCreateAccountSuccess | UnifiedError;
50891
51400
  export declare type UnifiedCreateProfileSuccess = {
@@ -50915,61 +51424,95 @@ export declare type UnifiedForumsUser = {
50915
51424
  totalLoginsRecorded: Scalars['String']['output'];
50916
51425
  totalPosts: Scalars['Int']['output'];
50917
51426
  };
51427
+ export declare type UnifiedLinkedAccount = {
51428
+ __typename?: 'UnifiedLinkedAccount';
51429
+ aaid: Scalars['ID']['output'];
51430
+ connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
51431
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51432
+ };
51433
+ export declare type UnifiedLinkedAccountInput = {
51434
+ aaid: Scalars['String']['input'];
51435
+ connectedProductsReferenceId?: InputMaybe<Scalars['String']['input']>;
51436
+ parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
51437
+ };
51438
+ export declare type UnifiedLinkedCreateAccountSuccess = {
51439
+ __typename?: 'UnifiedLinkedCreateAccountSuccess';
51440
+ data: UnifiedLinkedAccount;
51441
+ };
51442
+ export declare type UnifiedLinkedCreateAccountUnion = UnifiedError | UnifiedLinkedCreateAccountSuccess;
50918
51443
  export declare type UnifiedMutation = {
50919
51444
  __typename?: 'UnifiedMutation';
50920
- createAccount: UnifiedCreateAccountUnion;
50921
- createProfile: UnifiedCreateProfileUnion;
51445
+ createLinkedAccount: UnifiedLinkedCreateAccountUnion;
51446
+ createParentAccount: UnifiedCreateAccountUnion;
51447
+ createUnifiedProfile: UnifiedCreateProfileUnion;
50922
51448
  };
50923
- export declare type UnifiedMutationCreateAccountArgs = {
50924
- input: UnifiedAccountInput;
51449
+ export declare type UnifiedMutationCreateLinkedAccountArgs = {
51450
+ input: UnifiedLinkedAccountInput;
50925
51451
  };
50926
- export declare type UnifiedMutationCreateProfileArgs = {
51452
+ export declare type UnifiedMutationCreateParentAccountArgs = {
51453
+ input: UnifiedParentAccountInput;
51454
+ };
51455
+ export declare type UnifiedMutationCreateUnifiedProfileArgs = {
50927
51456
  input: UnifiedProfileInput;
50928
51457
  };
51458
+ export declare type UnifiedParentAccount = {
51459
+ __typename?: 'UnifiedParentAccount';
51460
+ parentAccountEmailId?: Maybe<Scalars['String']['output']>;
51461
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51462
+ };
51463
+ export declare type UnifiedParentAccountInput = {
51464
+ parentAccountEmailId?: InputMaybe<Scalars['String']['input']>;
51465
+ };
50929
51466
  export declare type UnifiedProfile = {
50930
51467
  __typename?: 'UnifiedProfile';
50931
- aaids: Array<UnifiedAccount>;
50932
51468
  bio?: Maybe<Scalars['String']['output']>;
50933
- communityId?: Maybe<Scalars['String']['output']>;
50934
51469
  company?: Maybe<Scalars['String']['output']>;
50935
- learningId?: Maybe<Scalars['String']['output']>;
51470
+ forumsId?: Maybe<Scalars['String']['output']>;
51471
+ learnId?: Maybe<Scalars['String']['output']>;
50936
51472
  linkedinUrl?: Maybe<Scalars['String']['output']>;
50937
- name?: Maybe<Scalars['String']['output']>;
51473
+ location?: Maybe<Scalars['String']['output']>;
51474
+ parentAccountInternalId?: Maybe<Scalars['String']['output']>;
50938
51475
  photoUrl?: Maybe<Scalars['String']['output']>;
51476
+ publicName?: Maybe<Scalars['String']['output']>;
50939
51477
  role?: Maybe<Scalars['String']['output']>;
50940
- uaEmailId?: Maybe<Scalars['String']['output']>;
50941
- uaIid?: Maybe<Scalars['String']['output']>;
50942
- upIid: Scalars['ID']['output'];
50943
- upUsername?: Maybe<Scalars['String']['output']>;
51478
+ unifiedProfleInternalId: Scalars['ID']['output'];
51479
+ unifiedProfleUsername?: Maybe<Scalars['String']['output']>;
50944
51480
  websiteUrl?: Maybe<Scalars['String']['output']>;
50945
51481
  };
50946
51482
  export declare type UnifiedProfileInput = {
50947
- aaid: Scalars['String']['input'];
50948
51483
  bio?: InputMaybe<Scalars['String']['input']>;
50949
- communityId?: InputMaybe<Scalars['String']['input']>;
50950
51484
  company?: InputMaybe<Scalars['String']['input']>;
50951
- learningId?: InputMaybe<Scalars['String']['input']>;
51485
+ forumsId?: InputMaybe<Scalars['String']['input']>;
51486
+ learnId?: InputMaybe<Scalars['String']['input']>;
50952
51487
  linkedinUrl?: InputMaybe<Scalars['String']['input']>;
50953
- name?: InputMaybe<Scalars['String']['input']>;
51488
+ location?: InputMaybe<Scalars['String']['input']>;
51489
+ parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
50954
51490
  photoUrl?: InputMaybe<Scalars['String']['input']>;
51491
+ publicName?: InputMaybe<Scalars['String']['input']>;
50955
51492
  role?: InputMaybe<Scalars['String']['input']>;
50956
- uaEmailId?: InputMaybe<Scalars['String']['input']>;
51493
+ unifiedProfleUsername?: InputMaybe<Scalars['String']['input']>;
51494
+ updatedAt?: InputMaybe<Scalars['String']['input']>;
50957
51495
  websiteUrl?: InputMaybe<Scalars['String']['input']>;
50958
51496
  };
50959
51497
  export declare type UnifiedQuery = {
50960
51498
  __typename?: 'UnifiedQuery';
50961
- account: UnifiedQueryAccountUnion;
50962
51499
  forumSnapshot: UnifiedQueryForumSnapshotUnion;
50963
- profile: UnifiedQueryProfileUnion;
50964
- profiles: UnifiedQueryProfilesUnion;
51500
+ learningCertification: UnifiedQueryLearningCertificationUnion;
51501
+ unifiedAccount: UnifiedQueryAccountUnion;
51502
+ unifiedAccounts: UnifiedQueryAccountUnion;
51503
+ unifiedProfile: UnifiedQueryProfileUnion;
51504
+ unifiedProfiles: UnifiedQueryProfilesUnion;
51505
+ };
51506
+ export declare type UnifiedQueryForumSnapshotArgs = {
51507
+ aaid: Scalars['String']['input'];
50965
51508
  };
50966
- export declare type UnifiedQueryAccountArgs = {
51509
+ export declare type UnifiedQueryLearningCertificationArgs = {
50967
51510
  aaid: Scalars['String']['input'];
50968
51511
  };
50969
- export declare type UnifiedQueryForumSnapshotArgs = {
51512
+ export declare type UnifiedQueryUnifiedAccountArgs = {
50970
51513
  aaid: Scalars['String']['input'];
50971
51514
  };
50972
- export declare type UnifiedQueryProfileArgs = {
51515
+ export declare type UnifiedQueryUnifiedProfileArgs = {
50973
51516
  aaid: Scalars['String']['input'];
50974
51517
  };
50975
51518
  export declare type UnifiedQueryAccountSuccess = {
@@ -50982,6 +51525,11 @@ export declare type UnifiedQueryForumSnapshotSuccess = {
50982
51525
  data: UnifiedForumsUser;
50983
51526
  };
50984
51527
  export declare type UnifiedQueryForumSnapshotUnion = UnifiedError | UnifiedQueryForumSnapshotSuccess;
51528
+ export declare type UnifiedQueryLearningCertificationSuccess = {
51529
+ __typename?: 'UnifiedQueryLearningCertificationSuccess';
51530
+ data: Array<UnifiedUserCertificateDataRes>;
51531
+ };
51532
+ export declare type UnifiedQueryLearningCertificationUnion = UnifiedError | UnifiedQueryLearningCertificationSuccess;
50985
51533
  export declare type UnifiedQueryProfileSuccess = {
50986
51534
  __typename?: 'UnifiedQueryProfileSuccess';
50987
51535
  data: UnifiedProfile;
@@ -50992,6 +51540,16 @@ export declare type UnifiedQueryProfilesSuccess = {
50992
51540
  data: Array<UnifiedProfile>;
50993
51541
  };
50994
51542
  export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
51543
+ export declare type UnifiedUserCertificateDataRes = {
51544
+ __typename?: 'UnifiedUserCertificateDataRes';
51545
+ activeDate: Scalars['String']['output'];
51546
+ expireDate: Scalars['String']['output'];
51547
+ imageUrl: Scalars['String']['output'];
51548
+ inactiveDate: Scalars['String']['output'];
51549
+ name: Scalars['String']['output'];
51550
+ nameAbbr: Scalars['String']['output'];
51551
+ status: Scalars['String']['output'];
51552
+ };
50995
51553
  export declare type UnlinkExternalSourceInput = {
50996
51554
  cloudId: Scalars['ID']['input'];
50997
51555
  ecosystemAppId: Scalars['ID']['input'];
@@ -51202,6 +51760,19 @@ export declare type UpdateCompassUserDefinedParametersPayload = Payload & {
51202
51760
  success: Scalars['Boolean']['output'];
51203
51761
  userParameterDetails?: Maybe<CompassUserDefinedParameters>;
51204
51762
  };
51763
+ export declare type UpdateComponentApiInput = {
51764
+ componentId: Scalars['String']['input'];
51765
+ defaultTag?: InputMaybe<Scalars['String']['input']>;
51766
+ path?: InputMaybe<Scalars['String']['input']>;
51767
+ repo?: InputMaybe<CompassComponentApiRepoUpdate>;
51768
+ status?: InputMaybe<Scalars['String']['input']>;
51769
+ };
51770
+ export declare type UpdateComponentApiPayload = {
51771
+ __typename?: 'UpdateComponentApiPayload';
51772
+ api?: Maybe<CompassComponentApi>;
51773
+ errors?: Maybe<Array<Scalars['String']['output']>>;
51774
+ success: Scalars['Boolean']['output'];
51775
+ };
51205
51776
  export declare type UpdateCustomFilterInput = {
51206
51777
  boardId: Scalars['ID']['input'];
51207
51778
  description?: InputMaybe<Scalars['String']['input']>;