@forge/cli-shared 4.1.0-next.1 → 4.2.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1790,7 +1790,6 @@ export declare type Backlog = {
1790
1790
  extension?: Maybe<BacklogExtension>;
1791
1791
  labels: Array<Maybe<Scalars['String']['output']>>;
1792
1792
  requestColumnMigration: Scalars['Boolean']['output'];
1793
- viewConfig?: Maybe<ViewConfig>;
1794
1793
  };
1795
1794
  export declare type BacklogCardsArgs = {
1796
1795
  cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -2635,6 +2634,7 @@ export declare type CcpTransactionAccount = CommerceTransactionAccount & {
2635
2634
  __typename?: 'CcpTransactionAccount';
2636
2635
  experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
2637
2636
  id: Scalars['ID']['output'];
2637
+ isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
2638
2638
  isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
2639
2639
  isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
2640
2640
  key?: Maybe<Scalars['String']['output']>;
@@ -2837,6 +2837,7 @@ export declare type CommerceSubscription = {
2837
2837
  };
2838
2838
  export declare type CommerceTransactionAccount = {
2839
2839
  experienceCapabilities?: Maybe<CommerceTransactionAccountExperienceCapabilities>;
2840
+ isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
2840
2841
  isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
2841
2842
  isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
2842
2843
  key?: Maybe<Scalars['String']['output']>;
@@ -3071,6 +3072,7 @@ export declare type CompassCatalogMutationApi = {
3071
3072
  unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
3072
3073
  updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
3073
3074
  updateComponent?: Maybe<UpdateCompassComponentPayload>;
3075
+ updateComponentApi?: Maybe<UpdateComponentApiPayload>;
3074
3076
  updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
3075
3077
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
3076
3078
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
@@ -3246,6 +3248,10 @@ export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
3246
3248
  export declare type CompassCatalogMutationApiUpdateComponentArgs = {
3247
3249
  input: UpdateCompassComponentInput;
3248
3250
  };
3251
+ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
3252
+ cloudId: Scalars['ID']['input'];
3253
+ input: UpdateComponentApiInput;
3254
+ };
3249
3255
  export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
3250
3256
  input: UpdateCompassComponentDataManagerMetadataInput;
3251
3257
  };
@@ -3439,6 +3445,7 @@ export declare type CompassChangeMetadata = {
3439
3445
  export declare type CompassComponent = Node & {
3440
3446
  __typename?: 'CompassComponent';
3441
3447
  announcements?: Maybe<Array<CompassAnnouncement>>;
3448
+ api?: Maybe<CompassComponentApi>;
3442
3449
  applicableScorecards?: Maybe<Array<CompassScorecard>>;
3443
3450
  changeMetadata: CompassChangeMetadata;
3444
3451
  customFields?: Maybe<Array<CompassCustomField>>;
@@ -3474,12 +3481,149 @@ export declare type CompassComponentRelationshipsArgs = {
3474
3481
  export declare type CompassComponentScorecardScoreArgs = {
3475
3482
  query?: InputMaybe<CompassComponentScorecardScoreQuery>;
3476
3483
  };
3484
+ export declare type CompassComponentApi = {
3485
+ __typename?: 'CompassComponentApi';
3486
+ changelog: CompassComponentApiChangelogConnection;
3487
+ componentId: Scalars['String']['output'];
3488
+ createdAt: Scalars['String']['output'];
3489
+ defaultTag: Scalars['String']['output'];
3490
+ deletedAt?: Maybe<Scalars['String']['output']>;
3491
+ historicSpecTags: CompassComponentSpecTagConnection;
3492
+ id: Scalars['String']['output'];
3493
+ latestDefaultSpec?: Maybe<CompassComponentSpec>;
3494
+ latestSpecForTag?: Maybe<CompassComponentSpec>;
3495
+ latestSpecWithErrorForTag?: Maybe<CompassComponentSpec>;
3496
+ path?: Maybe<Scalars['String']['output']>;
3497
+ repo?: Maybe<CompassComponentApiRepo>;
3498
+ repoId?: Maybe<Scalars['String']['output']>;
3499
+ spec?: Maybe<CompassComponentSpec>;
3500
+ stats: CompassComponentApiStats;
3501
+ status: Scalars['String']['output'];
3502
+ tags: CompassComponentSpecTagConnection;
3503
+ updatedAt: Scalars['String']['output'];
3504
+ };
3505
+ export declare type CompassComponentApiChangelogArgs = {
3506
+ after?: InputMaybe<Scalars['String']['input']>;
3507
+ before?: InputMaybe<Scalars['String']['input']>;
3508
+ first?: InputMaybe<Scalars['Int']['input']>;
3509
+ last?: InputMaybe<Scalars['Int']['input']>;
3510
+ };
3511
+ export declare type CompassComponentApiHistoricSpecTagsArgs = {
3512
+ after?: InputMaybe<Scalars['String']['input']>;
3513
+ before?: InputMaybe<Scalars['String']['input']>;
3514
+ first?: InputMaybe<Scalars['Int']['input']>;
3515
+ last?: InputMaybe<Scalars['Int']['input']>;
3516
+ query: CompassComponentApiHistoricSpecTagsQuery;
3517
+ };
3518
+ export declare type CompassComponentApiLatestSpecForTagArgs = {
3519
+ tagName: Scalars['String']['input'];
3520
+ };
3521
+ export declare type CompassComponentApiLatestSpecWithErrorForTagArgs = {
3522
+ tagName?: InputMaybe<Scalars['String']['input']>;
3523
+ };
3524
+ export declare type CompassComponentApiSpecArgs = {
3525
+ id: Scalars['String']['input'];
3526
+ };
3527
+ export declare type CompassComponentApiTagsArgs = {
3528
+ after?: InputMaybe<Scalars['String']['input']>;
3529
+ before?: InputMaybe<Scalars['String']['input']>;
3530
+ first?: InputMaybe<Scalars['Int']['input']>;
3531
+ last?: InputMaybe<Scalars['Int']['input']>;
3532
+ };
3533
+ export declare type CompassComponentApiChangelog = {
3534
+ __typename?: 'CompassComponentApiChangelog';
3535
+ baseSpec?: Maybe<CompassComponentSpec>;
3536
+ effectiveAt: Scalars['String']['output'];
3537
+ endpointChanges: Array<CompassComponentApiEndpointChange>;
3538
+ headSpec?: Maybe<CompassComponentSpec>;
3539
+ markdown: Scalars['String']['output'];
3540
+ };
3541
+ export declare type CompassComponentApiChangelogConnection = {
3542
+ __typename?: 'CompassComponentApiChangelogConnection';
3543
+ edges: Array<CompassComponentApiChangelogEdge>;
3544
+ nodes: Array<CompassComponentApiChangelog>;
3545
+ pageInfo: PageInfo;
3546
+ };
3547
+ export declare type CompassComponentApiChangelogEdge = {
3548
+ __typename?: 'CompassComponentApiChangelogEdge';
3549
+ cursor: Scalars['String']['output'];
3550
+ node: CompassComponentApiChangelog;
3551
+ };
3552
+ export declare type CompassComponentApiEndpointChange = {
3553
+ __typename?: 'CompassComponentApiEndpointChange';
3554
+ changeType?: Maybe<Scalars['String']['output']>;
3555
+ changelog?: Maybe<Array<Scalars['String']['output']>>;
3556
+ method: Scalars['String']['output'];
3557
+ path: Scalars['String']['output'];
3558
+ };
3559
+ export declare type CompassComponentApiHistoricSpecTagsQuery = {
3560
+ tagName: Scalars['String']['input'];
3561
+ };
3562
+ export declare type CompassComponentApiRepo = {
3563
+ __typename?: 'CompassComponentApiRepo';
3564
+ provider: Scalars['String']['output'];
3565
+ repoUrl: Scalars['String']['output'];
3566
+ };
3567
+ export declare type CompassComponentApiRepoUpdate = {
3568
+ provider: Scalars['String']['input'];
3569
+ repoUrl: Scalars['String']['input'];
3570
+ };
3571
+ export declare type CompassComponentApiStats = {
3572
+ __typename?: 'CompassComponentApiStats';
3573
+ endpointChanges: CompassComponentApiStatsEndpointChangesConnection;
3574
+ };
3575
+ export declare type CompassComponentApiStatsEndpointChangesArgs = {
3576
+ after?: InputMaybe<Scalars['String']['input']>;
3577
+ before?: InputMaybe<Scalars['String']['input']>;
3578
+ first?: InputMaybe<Scalars['Int']['input']>;
3579
+ last?: InputMaybe<Scalars['Int']['input']>;
3580
+ };
3581
+ export declare type CompassComponentApiStatsEndpointChange = {
3582
+ __typename?: 'CompassComponentApiStatsEndpointChange';
3583
+ added: Scalars['Int']['output'];
3584
+ changed: Scalars['Int']['output'];
3585
+ firstWeekDay: Scalars['String']['output'];
3586
+ removed: Scalars['Int']['output'];
3587
+ };
3588
+ export declare type CompassComponentApiStatsEndpointChangeEdge = {
3589
+ __typename?: 'CompassComponentApiStatsEndpointChangeEdge';
3590
+ cursor: Scalars['String']['output'];
3591
+ node: CompassComponentApiStatsEndpointChange;
3592
+ };
3593
+ export declare type CompassComponentApiStatsEndpointChangesConnection = {
3594
+ __typename?: 'CompassComponentApiStatsEndpointChangesConnection';
3595
+ edges: Array<CompassComponentApiStatsEndpointChangeEdge>;
3596
+ nodes: Array<CompassComponentApiStatsEndpointChange>;
3597
+ pageInfo: PageInfo;
3598
+ };
3477
3599
  export declare type CompassComponentDataManager = {
3478
3600
  __typename?: 'CompassComponentDataManager';
3479
3601
  ecosystemAppId: Scalars['ID']['output'];
3480
3602
  externalSourceURL?: Maybe<Scalars['URL']['output']>;
3481
3603
  lastSyncEvent?: Maybe<ComponentSyncEvent>;
3482
3604
  };
3605
+ export declare type CompassComponentEndpoint = {
3606
+ __typename?: 'CompassComponentEndpoint';
3607
+ checksum: Scalars['String']['output'];
3608
+ id: Scalars['String']['output'];
3609
+ method: Scalars['String']['output'];
3610
+ originalPath: Scalars['String']['output'];
3611
+ path: Scalars['String']['output'];
3612
+ readUrl: Scalars['String']['output'];
3613
+ summary: Scalars['String']['output'];
3614
+ updatedAt: Scalars['String']['output'];
3615
+ };
3616
+ export declare type CompassComponentEndpointConnection = {
3617
+ __typename?: 'CompassComponentEndpointConnection';
3618
+ edges: Array<CompassComponentEndpointEdge>;
3619
+ nodes: Array<CompassComponentEndpoint>;
3620
+ pageInfo: PageInfo;
3621
+ };
3622
+ export declare type CompassComponentEndpointEdge = {
3623
+ __typename?: 'CompassComponentEndpointEdge';
3624
+ cursor: Scalars['String']['output'];
3625
+ node: CompassComponentEndpoint;
3626
+ };
3483
3627
  export declare type CompassComponentLabel = {
3484
3628
  __typename?: 'CompassComponentLabel';
3485
3629
  name?: Maybe<Scalars['String']['output']>;
@@ -3540,6 +3684,59 @@ export declare type CompassComponentScorecardRelationshipResult = CompassCompone
3540
3684
  export declare type CompassComponentScorecardScoreQuery = {
3541
3685
  scorecardId: Scalars['ID']['input'];
3542
3686
  };
3687
+ export declare type CompassComponentSpec = {
3688
+ __typename?: 'CompassComponentSpec';
3689
+ api?: Maybe<CompassComponentApi>;
3690
+ checksum: Scalars['String']['output'];
3691
+ componentId: Scalars['String']['output'];
3692
+ createdAt: Scalars['String']['output'];
3693
+ endpoint?: Maybe<CompassComponentEndpoint>;
3694
+ endpoints: CompassComponentEndpointConnection;
3695
+ id: Scalars['String']['output'];
3696
+ metadataReadUrl?: Maybe<Scalars['String']['output']>;
3697
+ openapiVersion: Scalars['String']['output'];
3698
+ processingData: CompassComponentSpecProcessingData;
3699
+ status: Scalars['String']['output'];
3700
+ updatedAt: Scalars['String']['output'];
3701
+ };
3702
+ export declare type CompassComponentSpecEndpointArgs = {
3703
+ method: Scalars['String']['input'];
3704
+ path: Scalars['String']['input'];
3705
+ };
3706
+ export declare type CompassComponentSpecEndpointsArgs = {
3707
+ after?: InputMaybe<Scalars['String']['input']>;
3708
+ before?: InputMaybe<Scalars['String']['input']>;
3709
+ first?: InputMaybe<Scalars['Int']['input']>;
3710
+ last?: InputMaybe<Scalars['Int']['input']>;
3711
+ };
3712
+ export declare type CompassComponentSpecProcessingData = {
3713
+ __typename?: 'CompassComponentSpecProcessingData';
3714
+ errors?: Maybe<Array<Scalars['String']['output']>>;
3715
+ warnings?: Maybe<Array<Scalars['String']['output']>>;
3716
+ };
3717
+ export declare type CompassComponentSpecTag = {
3718
+ __typename?: 'CompassComponentSpecTag';
3719
+ api?: Maybe<CompassComponentApi>;
3720
+ createdAt: Scalars['String']['output'];
3721
+ effectiveAt: Scalars['String']['output'];
3722
+ id: Scalars['String']['output'];
3723
+ name: Scalars['String']['output'];
3724
+ overwrittenAt?: Maybe<Scalars['String']['output']>;
3725
+ overwrittenBy?: Maybe<Scalars['String']['output']>;
3726
+ spec?: Maybe<CompassComponentSpec>;
3727
+ updatedAt: Scalars['String']['output'];
3728
+ };
3729
+ export declare type CompassComponentSpecTagConnection = {
3730
+ __typename?: 'CompassComponentSpecTagConnection';
3731
+ edges: Array<CompassComponentSpecTagEdge>;
3732
+ nodes: Array<CompassComponentSpecTag>;
3733
+ pageInfo: PageInfo;
3734
+ };
3735
+ export declare type CompassComponentSpecTagEdge = {
3736
+ __typename?: 'CompassComponentSpecTagEdge';
3737
+ cursor: Scalars['String']['output'];
3738
+ node: CompassComponentSpecTag;
3739
+ };
3543
3740
  export declare type CompassComponentStats = {
3544
3741
  __typename?: 'CompassComponentStats';
3545
3742
  failing: Scalars['Int']['output'];
@@ -4836,6 +5033,12 @@ export declare enum CompassPullRequestStatus {
4836
5033
  Overdue = "OVERDUE",
4837
5034
  Rejected = "REJECTED"
4838
5035
  }
5036
+ export declare enum CompassPullRequestStatusForStatusInTimeRangeFilter {
5037
+ Created = "CREATED",
5038
+ FirstReviewed = "FIRST_REVIEWED",
5039
+ Merged = "MERGED",
5040
+ Rejected = "REJECTED"
5041
+ }
4839
5042
  export declare type CompassPullRequestsQuery = {
4840
5043
  matchAnyCurrentStatus?: InputMaybe<Array<CompassPullRequestStatus>>;
4841
5044
  matchAnyFilters?: InputMaybe<Array<CompassPullRequestsQueryFilter>>;
@@ -9427,6 +9630,7 @@ export declare type DevAiAutofixConfiguration = {
9427
9630
  openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
9428
9631
  primaryLanguage?: Maybe<Scalars['String']['output']>;
9429
9632
  repoUrl?: Maybe<Scalars['URL']['output']>;
9633
+ targetCoveragePercentage?: Maybe<Scalars['Int']['output']>;
9430
9634
  };
9431
9635
  export declare type DevAiAutofixConfigurationConnection = {
9432
9636
  __typename?: 'DevAiAutofixConfigurationConnection';
@@ -10116,6 +10320,7 @@ export declare type DevOpsOperationsIncidentDetails = {
10116
10320
  description?: Maybe<Scalars['String']['output']>;
10117
10321
  id: Scalars['ID']['output'];
10118
10322
  linkedPostIncidentReviews?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkConnection>;
10323
+ providerId?: Maybe<Scalars['String']['output']>;
10119
10324
  severity?: Maybe<DevOpsOperationsIncidentSeverity>;
10120
10325
  status?: Maybe<DevOpsOperationsIncidentStatus>;
10121
10326
  summary?: Maybe<Scalars['String']['output']>;
@@ -10678,9 +10883,13 @@ export declare type DevOpsSummarisedFeatureFlags = {
10678
10883
  export declare type DevOpsSupportedActions = {
10679
10884
  __typename?: 'DevOpsSupportedActions';
10680
10885
  associate?: Maybe<Scalars['Boolean']['output']>;
10886
+ associateEntity?: Maybe<Scalars['Boolean']['output']>;
10681
10887
  checkAuth?: Maybe<Scalars['Boolean']['output']>;
10682
10888
  disassociate?: Maybe<Scalars['Boolean']['output']>;
10889
+ disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
10683
10890
  listContainers?: Maybe<Scalars['Boolean']['output']>;
10891
+ onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
10892
+ onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
10684
10893
  searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
10685
10894
  searchContainers?: Maybe<Scalars['Boolean']['output']>;
10686
10895
  syncStatus?: Maybe<Scalars['Boolean']['output']>;
@@ -25639,6 +25848,7 @@ export declare type HamsSubscription = CommerceSubscription & {
25639
25848
  export declare type HamsTransactionAccount = CommerceTransactionAccount & {
25640
25849
  __typename?: 'HamsTransactionAccount';
25641
25850
  experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
25851
+ isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
25642
25852
  isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
25643
25853
  isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
25644
25854
  key?: Maybe<Scalars['String']['output']>;
@@ -26044,7 +26254,7 @@ export declare type HelpCenterQueryApi = {
26044
26254
  helpCenterById?: Maybe<HelpCenterQueryResult>;
26045
26255
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
26046
26256
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
26047
- helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
26257
+ helpCenters?: Maybe<HelpCenterQueryResultConnection>;
26048
26258
  helpCentersList?: Maybe<HelpCentersListQueryResult>;
26049
26259
  helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
26050
26260
  mediaConfig?: Maybe<HelpCenterMediaConfig>;
@@ -26064,6 +26274,9 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
26064
26274
  topicId: Scalars['ID']['input'];
26065
26275
  };
26066
26276
  export declare type HelpCenterQueryApiHelpCentersArgs = {
26277
+ after?: InputMaybe<Scalars['String']['input']>;
26278
+ first?: InputMaybe<Scalars['Int']['input']>;
26279
+ sortOrder: HelpCenterSortOrder;
26067
26280
  workspaceAri: Scalars['ID']['input'];
26068
26281
  };
26069
26282
  export declare type HelpCenterQueryApiHelpCentersListArgs = {
@@ -26467,7 +26680,6 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
26467
26680
  export declare type HelpLayoutHeroElementData = {
26468
26681
  __typename?: 'HelpLayoutHeroElementData';
26469
26682
  homePageTitle?: Maybe<Scalars['String']['output']>;
26470
- useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
26471
26683
  userLanguageTag?: Maybe<Scalars['String']['output']>;
26472
26684
  };
26473
26685
  export declare type HelpLayoutHeroElementInput = {
@@ -28265,8 +28477,11 @@ export declare type JiraAppNavigationConfig = {
28265
28477
  };
28266
28478
  export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
28267
28479
  __typename?: 'JiraAppNavigationItem';
28480
+ appId?: Maybe<Scalars['String']['output']>;
28481
+ appType?: Maybe<JiraAppType>;
28268
28482
  canRemove?: Maybe<Scalars['Boolean']['output']>;
28269
28483
  canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
28484
+ envLabel?: Maybe<Scalars['String']['output']>;
28270
28485
  iconUrl?: Maybe<Scalars['String']['output']>;
28271
28486
  id: Scalars['ID']['output'];
28272
28487
  isDefault?: Maybe<Scalars['Boolean']['output']>;
@@ -28288,6 +28503,10 @@ export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig &
28288
28503
  styleClass?: Maybe<Scalars['String']['output']>;
28289
28504
  url?: Maybe<Scalars['String']['output']>;
28290
28505
  };
28506
+ export declare enum JiraAppType {
28507
+ Connect = "CONNECT",
28508
+ Forge = "FORGE"
28509
+ }
28291
28510
  export declare type JiraAppUiModifications = {
28292
28511
  __typename?: 'JiraAppUiModifications';
28293
28512
  appEnvId: Scalars['String']['output'];
@@ -28681,6 +28900,13 @@ export declare type JiraAvatar = {
28681
28900
  small?: Maybe<Scalars['String']['output']>;
28682
28901
  xsmall?: Maybe<Scalars['String']['output']>;
28683
28902
  };
28903
+ export declare type JiraBackgroundUploadToken = {
28904
+ __typename?: 'JiraBackgroundUploadToken';
28905
+ targetCollection?: Maybe<Scalars['String']['output']>;
28906
+ token?: Maybe<Scalars['String']['output']>;
28907
+ tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
28908
+ };
28909
+ export declare type JiraBackgroundUploadTokenResult = JiraBackgroundUploadToken | QueryError;
28684
28910
  export declare type JiraBitbucketDevOpsProvider = JiraDevOpsProvider & {
28685
28911
  __typename?: 'JiraBitbucketDevOpsProvider';
28686
28912
  capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
@@ -28789,19 +29015,6 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
28789
29015
  RemoveAll = "REMOVE_ALL",
28790
29016
  Replace = "REPLACE"
28791
29017
  }
28792
- export declare type JiraBulkEditResponse = {
28793
- __typename?: 'JiraBulkEditResponse';
28794
- bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
28795
- mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
28796
- totalIssues?: Maybe<Scalars['Int']['output']>;
28797
- };
28798
- export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
28799
- after?: InputMaybe<Scalars['String']['input']>;
28800
- before?: InputMaybe<Scalars['String']['input']>;
28801
- first?: InputMaybe<Scalars['Int']['input']>;
28802
- last?: InputMaybe<Scalars['Int']['input']>;
28803
- search?: InputMaybe<JiraBulkEditFieldsSearch>;
28804
- };
28805
29018
  export declare type JiraBulkOperationInput = {
28806
29019
  bulkEditInput?: InputMaybe<JiraBulkEditInput>;
28807
29020
  bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
@@ -28841,17 +29054,6 @@ export declare type JiraBulkTransitionEdge = {
28841
29054
  cursor: Scalars['String']['output'];
28842
29055
  node?: Maybe<JiraBulkTransition>;
28843
29056
  };
28844
- export declare type JiraBulkTransitionResponse = {
28845
- __typename?: 'JiraBulkTransitionResponse';
28846
- bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
28847
- mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
28848
- };
28849
- export declare type JiraBulkTransitionResponseBulkTransitionsArgs = {
28850
- after?: InputMaybe<Scalars['String']['input']>;
28851
- before?: InputMaybe<Scalars['String']['input']>;
28852
- first?: InputMaybe<Scalars['Int']['input']>;
28853
- last?: InputMaybe<Scalars['Int']['input']>;
28854
- };
28855
29057
  export declare type JiraBulkTransitionScreenConnection = {
28856
29058
  __typename?: 'JiraBulkTransitionScreenConnection';
28857
29059
  edges?: Maybe<Array<Maybe<JiraBulkTransitionScreenEdge>>>;
@@ -32185,6 +32387,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
32185
32387
  JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
32186
32388
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
32187
32389
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
32390
+ JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
32188
32391
  JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
32189
32392
  JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
32190
32393
  JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
@@ -32197,7 +32400,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
32197
32400
  JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
32198
32401
  JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
32199
32402
  JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
32403
+ JiraPeopleField?: InputMaybe<Array<JiraUpdatePeopleFieldInput>>;
32200
32404
  JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
32405
+ JiraProjectField?: InputMaybe<Array<JiraUpdateProjectFieldInput>>;
32201
32406
  JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
32202
32407
  JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
32203
32408
  JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
@@ -33426,6 +33631,7 @@ export declare type JiraMutation = {
33426
33631
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
33427
33632
  saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
33428
33633
  saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
33634
+ scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
33429
33635
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
33430
33636
  setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
33431
33637
  setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
@@ -33682,6 +33888,13 @@ export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
33682
33888
  export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
33683
33889
  input: JiraVersionIssueTableColumnHiddenStateInput;
33684
33890
  };
33891
+ export declare type JiraMutationScheduleCalendarIssueArgs = {
33892
+ configuration: JiraCalendarViewConfigurationInput;
33893
+ endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
33894
+ issueId: Scalars['ID']['input'];
33895
+ scope?: InputMaybe<JiraViewScopeInput>;
33896
+ startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
33897
+ };
33685
33898
  export declare type JiraMutationSetApplicationPropertiesArgs = {
33686
33899
  cloudId: Scalars['ID']['input'];
33687
33900
  input: Array<JiraSetApplicationPropertyInput>;
@@ -34473,6 +34686,16 @@ export declare type JiraPeopleFieldInput = {
34473
34686
  fieldId: Scalars['ID']['input'];
34474
34687
  users: Array<JiraUserInput>;
34475
34688
  };
34689
+ export declare type JiraPeopleFieldOperationInput = {
34690
+ ids: Array<Scalars['ID']['input']>;
34691
+ operation: JiraMultiValueFieldOperations;
34692
+ };
34693
+ export declare type JiraPeopleFieldPayload = Payload & {
34694
+ __typename?: 'JiraPeopleFieldPayload';
34695
+ errors?: Maybe<Array<MutationError>>;
34696
+ field?: Maybe<JiraPeopleField>;
34697
+ success: Scalars['Boolean']['output'];
34698
+ };
34476
34699
  export declare type JiraPermission = {
34477
34700
  __typename?: 'JiraPermission';
34478
34701
  hasPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -34764,6 +34987,8 @@ export declare type JiraProject = Node & {
34764
34987
  intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
34765
34988
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
34766
34989
  issueTypes?: Maybe<JiraIssueTypeConnection>;
34990
+ jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
34991
+ jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
34767
34992
  jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
34768
34993
  key: Scalars['String']['output'];
34769
34994
  lastUpdated?: Maybe<Scalars['DateTime']['output']>;
@@ -34782,6 +35007,7 @@ export declare type JiraProject = Node & {
34782
35007
  projectId?: Maybe<Scalars['String']['output']>;
34783
35008
  projectStyle?: Maybe<JiraProjectStyle>;
34784
35009
  projectType?: Maybe<JiraProjectType>;
35010
+ projectTypeName?: Maybe<Scalars['String']['output']>;
34785
35011
  projectUrl?: Maybe<Scalars['String']['output']>;
34786
35012
  repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
34787
35013
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
@@ -35159,6 +35385,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
35159
35385
  export declare type JiraProjectFieldProjectsArgs = {
35160
35386
  after?: InputMaybe<Scalars['String']['input']>;
35161
35387
  before?: InputMaybe<Scalars['String']['input']>;
35388
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
35162
35389
  first?: InputMaybe<Scalars['Int']['input']>;
35163
35390
  last?: InputMaybe<Scalars['Int']['input']>;
35164
35391
  recent?: InputMaybe<Scalars['Boolean']['input']>;
@@ -35415,6 +35642,7 @@ export declare type JiraQuery = {
35415
35642
  atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
35416
35643
  attachmentByAri?: Maybe<JiraPlatformAttachment>;
35417
35644
  attachmentSearch?: Maybe<JiraAttachmentConnection>;
35645
+ backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
35418
35646
  booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
35419
35647
  bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
35420
35648
  bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
@@ -35466,8 +35694,6 @@ export declare type JiraQuery = {
35466
35694
  issueSearchView?: Maybe<JiraIssueSearchView>;
35467
35695
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
35468
35696
  issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
35469
- jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
35470
- jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
35471
35697
  jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
35472
35698
  jiraCalendar?: Maybe<JiraCalendar>;
35473
35699
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
@@ -35612,6 +35838,10 @@ export declare type JiraQueryAttachmentSearchArgs = {
35612
35838
  last?: InputMaybe<Scalars['Int']['input']>;
35613
35839
  projectKeys: Array<Scalars['String']['input']>;
35614
35840
  };
35841
+ export declare type JiraQueryBackgroundUploadTokenArgs = {
35842
+ cloudId: Scalars['ID']['input'];
35843
+ durationInSeconds: Scalars['Int']['input'];
35844
+ };
35615
35845
  export declare type JiraQueryBooleanUserPropertyArgs = {
35616
35846
  accountId?: InputMaybe<Scalars['ID']['input']>;
35617
35847
  cloudId: Scalars['ID']['input'];
@@ -35847,12 +36077,6 @@ export declare type JiraQueryIssuesByKeyArgs = {
35847
36077
  cloudId: Scalars['ID']['input'];
35848
36078
  keys: Array<Scalars['String']['input']>;
35849
36079
  };
35850
- export declare type JiraQueryJiraBulkEditFieldsArgs = {
35851
- issueIds: Array<Scalars['ID']['input']>;
35852
- };
35853
- export declare type JiraQueryJiraBulkEditTransitionsArgs = {
35854
- issueIds: Array<Scalars['ID']['input']>;
35855
- };
35856
36080
  export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
35857
36081
  input: Array<JiraBulkTransitionScreenInput>;
35858
36082
  };
@@ -36517,6 +36741,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
36517
36741
  resolution?: Maybe<JiraResolution>;
36518
36742
  resolutions?: Maybe<JiraResolutionConnection>;
36519
36743
  resolutionsForTransition?: Maybe<JiraResolutionConnection>;
36744
+ selectedResolutionForTransition?: Maybe<JiraResolution>;
36520
36745
  type: Scalars['String']['output'];
36521
36746
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
36522
36747
  };
@@ -36539,6 +36764,9 @@ export declare type JiraResolutionFieldResolutionsForTransitionArgs = {
36539
36764
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
36540
36765
  transitionId: Scalars['String']['input'];
36541
36766
  };
36767
+ export declare type JiraResolutionFieldSelectedResolutionForTransitionArgs = {
36768
+ transitionId: Scalars['String']['input'];
36769
+ };
36542
36770
  export declare type JiraResolutionFieldOperationInput = {
36543
36771
  id?: InputMaybe<Scalars['ID']['input']>;
36544
36772
  operation: JiraSingleValueFieldOperations;
@@ -36785,6 +37013,12 @@ export declare type JiraScaledConfigurationPermissions = {
36785
37013
  hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
36786
37014
  userPermissions?: Maybe<JiraScaledConfigurationPermission>;
36787
37015
  };
37016
+ export declare type JiraScheduleCalendarIssuePayload = Payload & {
37017
+ __typename?: 'JiraScheduleCalendarIssuePayload';
37018
+ errors?: Maybe<Array<MutationError>>;
37019
+ issue?: Maybe<JiraIssue>;
37020
+ success: Scalars['Boolean']['output'];
37021
+ };
36788
37022
  export declare type JiraScmRepository = {
36789
37023
  __typename?: 'JiraScmRepository';
36790
37024
  entityUrl?: Maybe<Scalars['URL']['output']>;
@@ -38184,16 +38418,25 @@ export declare enum JiraSoftwareSimpleNavigationItemEnum {
38184
38418
  }
38185
38419
  export declare type JiraSprint = Node & {
38186
38420
  __typename?: 'JiraSprint';
38421
+ boardId?: Maybe<Scalars['Long']['output']>;
38187
38422
  boardName?: Maybe<Scalars['String']['output']>;
38188
38423
  completionDate?: Maybe<Scalars['DateTime']['output']>;
38189
38424
  endDate?: Maybe<Scalars['DateTime']['output']>;
38190
38425
  goal?: Maybe<Scalars['String']['output']>;
38191
38426
  id: Scalars['ID']['output'];
38192
38427
  name?: Maybe<Scalars['String']['output']>;
38428
+ projects?: Maybe<JiraProjectConnection>;
38193
38429
  sprintId: Scalars['String']['output'];
38430
+ sprintProgress?: Maybe<JiraSprintProgress>;
38194
38431
  startDate?: Maybe<Scalars['DateTime']['output']>;
38195
38432
  state?: Maybe<JiraSprintState>;
38196
38433
  };
38434
+ export declare type JiraSprintProjectsArgs = {
38435
+ after?: InputMaybe<Scalars['String']['input']>;
38436
+ before?: InputMaybe<Scalars['String']['input']>;
38437
+ first?: InputMaybe<Scalars['Int']['input']>;
38438
+ last?: InputMaybe<Scalars['Int']['input']>;
38439
+ };
38197
38440
  export declare type JiraSprintConnection = {
38198
38441
  __typename?: 'JiraSprintConnection';
38199
38442
  edges?: Maybe<Array<Maybe<JiraSprintEdge>>>;
@@ -38269,6 +38512,17 @@ export declare type JiraSprintMutationPayload = Payload & {
38269
38512
  jiraSprint?: Maybe<JiraSprint>;
38270
38513
  success: Scalars['Boolean']['output'];
38271
38514
  };
38515
+ export declare type JiraSprintProgress = {
38516
+ __typename?: 'JiraSprintProgress';
38517
+ estimationType?: Maybe<Scalars['String']['output']>;
38518
+ statusCategoryProgress?: Maybe<JiraStatusCategoryProgressConnection>;
38519
+ };
38520
+ export declare type JiraSprintProgressStatusCategoryProgressArgs = {
38521
+ after?: InputMaybe<Scalars['String']['input']>;
38522
+ before?: InputMaybe<Scalars['String']['input']>;
38523
+ first?: InputMaybe<Scalars['Int']['input']>;
38524
+ last?: InputMaybe<Scalars['Int']['input']>;
38525
+ };
38272
38526
  export declare enum JiraSprintState {
38273
38527
  Active = "ACTIVE",
38274
38528
  Closed = "CLOSED",
@@ -38316,6 +38570,23 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
38316
38570
  type: Scalars['String']['output'];
38317
38571
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
38318
38572
  };
38573
+ export declare type JiraStatusCategoryProgress = {
38574
+ __typename?: 'JiraStatusCategoryProgress';
38575
+ statusCategory?: Maybe<JiraStatusCategory>;
38576
+ value?: Maybe<Scalars['Float']['output']>;
38577
+ };
38578
+ export declare type JiraStatusCategoryProgressConnection = {
38579
+ __typename?: 'JiraStatusCategoryProgressConnection';
38580
+ edges?: Maybe<Array<Maybe<JiraStatusCategoryProgressEdge>>>;
38581
+ errors?: Maybe<Array<QueryError>>;
38582
+ pageInfo: PageInfo;
38583
+ totalCount?: Maybe<Scalars['Int']['output']>;
38584
+ };
38585
+ export declare type JiraStatusCategoryProgressEdge = {
38586
+ __typename?: 'JiraStatusCategoryProgressEdge';
38587
+ cursor: Scalars['String']['output'];
38588
+ node?: Maybe<JiraStatusCategoryProgress>;
38589
+ };
38319
38590
  export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
38320
38591
  __typename?: 'JiraStatusField';
38321
38592
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -38890,6 +39161,10 @@ export declare type JiraUpdateParentFieldInput = {
38890
39161
  id: Scalars['ID']['input'];
38891
39162
  operation: JiraParentFieldOperationInput;
38892
39163
  };
39164
+ export declare type JiraUpdatePeopleFieldInput = {
39165
+ id: Scalars['ID']['input'];
39166
+ operations: Array<JiraPeopleFieldOperationInput>;
39167
+ };
38893
39168
  export declare type JiraUpdatePriorityFieldInput = {
38894
39169
  id: Scalars['ID']['input'];
38895
39170
  operation: JiraPriorityFieldOperationInput;
@@ -40349,20 +40624,27 @@ export declare enum JsmChatChannelType {
40349
40624
  }
40350
40625
  export declare type JsmChatCreateChannelInput = {
40351
40626
  aaid: Scalars['String']['input'];
40352
- activationId: Scalars['String']['input'];
40353
40627
  channelName: Scalars['String']['input'];
40354
40628
  channelType: JsmChatChannelType;
40355
40629
  isVirtualAgent?: InputMaybe<Scalars['Boolean']['input']>;
40356
40630
  isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
40357
- projectId: Scalars['String']['input'];
40358
40631
  requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
40359
- siteId: Scalars['String']['input'];
40360
40632
  };
40361
40633
  export declare type JsmChatCreateChannelOutput = {
40362
40634
  __typename?: 'JsmChatCreateChannelOutput';
40363
40635
  message: Scalars['String']['output'];
40364
40636
  status: Scalars['Boolean']['output'];
40365
40637
  };
40638
+ export declare type JsmChatCreateCommentInput = {
40639
+ jiraIssueAri: Scalars['ID']['input'];
40640
+ message: Scalars['String']['input'];
40641
+ messageSource: Scalars['String']['input'];
40642
+ };
40643
+ export declare type JsmChatCreateCommentOutput = {
40644
+ __typename?: 'JsmChatCreateCommentOutput';
40645
+ message: Scalars['String']['output'];
40646
+ status: Scalars['Boolean']['output'];
40647
+ };
40366
40648
  export declare type JsmChatDisconnectJiraProjectInput = {
40367
40649
  activationId: Scalars['ID']['input'];
40368
40650
  projectId: Scalars['ID']['input'];
@@ -40374,11 +40656,6 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
40374
40656
  message: Scalars['String']['output'];
40375
40657
  status: Scalars['Boolean']['output'];
40376
40658
  };
40377
- export declare type JsmChatGetSlackChatConfigInput = {
40378
- activationId: Scalars['ID']['input'];
40379
- projectId: Scalars['ID']['input'];
40380
- siteId: Scalars['ID']['input'];
40381
- };
40382
40659
  export declare type JsmChatInitializeConfigRequest = {
40383
40660
  activationId: Scalars['ID']['input'];
40384
40661
  projectId: Scalars['ID']['input'];
@@ -40388,21 +40665,32 @@ export declare type JsmChatInitializeConfigResponse = {
40388
40665
  __typename?: 'JsmChatInitializeConfigResponse';
40389
40666
  nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40390
40667
  };
40668
+ export declare type JsmChatInitializeNativeConfigResponse = {
40669
+ __typename?: 'JsmChatInitializeNativeConfigResponse';
40670
+ nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
40671
+ };
40391
40672
  export declare type JsmChatMutation = {
40392
40673
  __typename?: 'JsmChatMutation';
40393
40674
  createChannel: JsmChatCreateChannelOutput;
40675
+ createComment?: Maybe<JsmChatCreateCommentOutput>;
40394
40676
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
40395
40677
  updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
40396
40678
  updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
40397
40679
  };
40398
40680
  export declare type JsmChatMutationCreateChannelArgs = {
40399
40681
  input?: InputMaybe<JsmChatCreateChannelInput>;
40682
+ jiraProjectAri: Scalars['ID']['input'];
40683
+ };
40684
+ export declare type JsmChatMutationCreateCommentArgs = {
40685
+ input: JsmChatCreateCommentInput;
40400
40686
  };
40401
40687
  export declare type JsmChatMutationDisconnectJiraProjectArgs = {
40402
40688
  input: JsmChatDisconnectJiraProjectInput;
40403
40689
  };
40404
40690
  export declare type JsmChatMutationUpdateChannelSettingsArgs = {
40405
40691
  input: JsmChatUpdateChannelSettingsInput;
40692
+ jiraProjectAri: Scalars['ID']['input'];
40693
+ slackChannelAri?: InputMaybe<Scalars['ID']['input']>;
40406
40694
  };
40407
40695
  export declare type JsmChatMutationUpdateProjectSettingsArgs = {
40408
40696
  input: JsmChatUpdateProjectSettingsInput;
@@ -40429,13 +40717,17 @@ export declare type JsmChatQuery = {
40429
40717
  __typename?: 'JsmChatQuery';
40430
40718
  getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
40431
40719
  initializeConfig: JsmChatInitializeConfigResponse;
40720
+ initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
40432
40721
  };
40433
40722
  export declare type JsmChatQueryGetSlackChatConfigArgs = {
40434
- input: JsmChatGetSlackChatConfigInput;
40723
+ jiraProjectAri: Scalars['ID']['input'];
40435
40724
  };
40436
40725
  export declare type JsmChatQueryInitializeConfigArgs = {
40437
40726
  input: JsmChatInitializeConfigRequest;
40438
40727
  };
40728
+ export declare type JsmChatQueryInitializeNativeConfigArgs = {
40729
+ jiraProjectAri: Scalars['ID']['input'];
40730
+ };
40439
40731
  export declare type JsmChatSlackConfig = {
40440
40732
  __typename?: 'JsmChatSlackConfig';
40441
40733
  botUserId?: Maybe<Scalars['String']['output']>;
@@ -40449,14 +40741,9 @@ export declare type JsmChatSlackConfig = {
40449
40741
  uninstalled?: Maybe<Scalars['Boolean']['output']>;
40450
40742
  };
40451
40743
  export declare type JsmChatUpdateChannelSettingsInput = {
40452
- activationId: Scalars['String']['input'];
40453
- channelId: Scalars['String']['input'];
40454
- isDeflectionChannel: Scalars['Boolean']['input'];
40455
- projectId: Scalars['String']['input'];
40456
- requestTypeIds: Array<Scalars['String']['input']>;
40457
- siteId: Scalars['String']['input'];
40458
- teamId: Scalars['String']['input'];
40459
- tenantId?: InputMaybe<Scalars['String']['input']>;
40744
+ isDeflectionChannel?: InputMaybe<Scalars['Boolean']['input']>;
40745
+ isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
40746
+ requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
40460
40747
  };
40461
40748
  export declare type JsmChatUpdateChannelSettingsOutput = {
40462
40749
  __typename?: 'JsmChatUpdateChannelSettingsOutput';
@@ -40532,9 +40819,14 @@ export declare type KnowledgeDiscoveryEntity = {
40532
40819
  id: Scalars['ID']['output'];
40533
40820
  };
40534
40821
  export declare enum KnowledgeDiscoveryEntityType {
40535
- Document = "DOCUMENT",
40536
- Keyword = "KEYWORD",
40537
- Topic = "TOPIC"
40822
+ ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
40823
+ ConfluenceDocument = "CONFLUENCE_DOCUMENT",
40824
+ ConfluencePage = "CONFLUENCE_PAGE",
40825
+ ConfluenceSpace = "CONFLUENCE_SPACE",
40826
+ JiraProject = "JIRA_PROJECT",
40827
+ KeyPhrase = "KEY_PHRASE",
40828
+ Topic = "TOPIC",
40829
+ User = "USER"
40538
40830
  }
40539
40831
  export declare type KnowledgeDiscoveryKeyPhrase = {
40540
40832
  __typename?: 'KnowledgeDiscoveryKeyPhrase';
@@ -40561,12 +40853,19 @@ export declare type KnowledgeDiscoveryMutationApi = {
40561
40853
  export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
40562
40854
  input: KnowledgeDiscoveryCreateDefinitionInput;
40563
40855
  };
40856
+ export declare type KnowledgeDiscoveryPageInfo = {
40857
+ __typename?: 'KnowledgeDiscoveryPageInfo';
40858
+ endCursor?: Maybe<Scalars['String']['output']>;
40859
+ hasNextPage: Scalars['Boolean']['output'];
40860
+ hasPreviousPage: Scalars['Boolean']['output'];
40861
+ startCursor?: Maybe<Scalars['String']['output']>;
40862
+ };
40564
40863
  export declare type KnowledgeDiscoveryQueryApi = {
40565
40864
  __typename?: 'KnowledgeDiscoveryQueryApi';
40566
40865
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
40567
40866
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
40568
40867
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
40569
- relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntityConnection>;
40868
+ relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
40570
40869
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
40571
40870
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
40572
40871
  };
@@ -40590,10 +40889,10 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
40590
40889
  export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
40591
40890
  after?: InputMaybe<Scalars['String']['input']>;
40592
40891
  cloudId?: InputMaybe<Scalars['String']['input']>;
40593
- entityType: Scalars['String']['input'];
40892
+ entityId: Scalars['String']['input'];
40893
+ entityType: KnowledgeDiscoveryEntityType;
40594
40894
  first?: InputMaybe<Scalars['Int']['input']>;
40595
- id: Scalars['String']['input'];
40596
- relatedEntityType: Scalars['String']['input'];
40895
+ relatedEntityType: KnowledgeDiscoveryEntityType;
40597
40896
  workspaceId?: InputMaybe<Scalars['String']['input']>;
40598
40897
  };
40599
40898
  export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
@@ -40606,18 +40905,12 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
40606
40905
  id: Scalars['String']['input'];
40607
40906
  workspaceId?: InputMaybe<Scalars['String']['input']>;
40608
40907
  };
40908
+ export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
40609
40909
  export declare type KnowledgeDiscoveryRelatedEntityConnection = {
40610
40910
  __typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
40611
- edges?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityEdge>>>;
40612
- nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryRelatedEntityResult>>>;
40613
- pageInfo: PageInfo;
40614
- };
40615
- export declare type KnowledgeDiscoveryRelatedEntityEdge = {
40616
- __typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
40617
- edgeCursor: Scalars['String']['output'];
40618
- node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
40911
+ nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
40912
+ pageInfo: KnowledgeDiscoveryPageInfo;
40619
40913
  };
40620
- export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
40621
40914
  export declare enum KnowledgeDiscoverySearchQueryClassification {
40622
40915
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
40623
40916
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
@@ -40772,9 +41065,6 @@ export declare enum MarketplaceAppPaymentModel {
40772
41065
  PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
40773
41066
  PaidViaPartner = "PAID_VIA_PARTNER"
40774
41067
  }
40775
- export declare enum MarketplaceAppPermission {
40776
- ManageAppDetails = "MANAGE_APP_DETAILS"
40777
- }
40778
41068
  export declare type MarketplaceAppPrograms = {
40779
41069
  __typename?: 'MarketplaceAppPrograms';
40780
41070
  bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
@@ -41384,14 +41674,6 @@ export declare type MarketplaceTieredPricing = {
41384
41674
  tierType: MarketplacePricingTierType;
41385
41675
  tiersMode: MarketplacePricingTierMode;
41386
41676
  };
41387
- export declare type MarketplaceUser = {
41388
- __typename?: 'MarketplaceUser';
41389
- appPermissions: Array<MarketplaceAppPermission>;
41390
- id: Scalars['ID']['output'];
41391
- };
41392
- export declare type MarketplaceUserAppPermissionsArgs = {
41393
- appId: Scalars['ID']['input'];
41394
- };
41395
41677
  export declare type MarketplaceWorkflowAppDeployment = MarketplaceAppDeployment & {
41396
41678
  __typename?: 'MarketplaceWorkflowAppDeployment';
41397
41679
  compatibleProducts: Array<CompatibleAtlassianProduct>;
@@ -41443,9 +41725,24 @@ export declare type MercuryCreateGoalUpdateWithMetricInput = {
41443
41725
  };
41444
41726
  export declare type MercuryCreateGoalUpdateWithMetricPayload = {
41445
41727
  __typename?: 'MercuryCreateGoalUpdateWithMetricPayload';
41446
- atlasGoalAri: Scalars['String']['output'];
41447
- atlasGoalId: Scalars['ID']['output'];
41448
41728
  errors?: Maybe<Array<MutationError>>;
41729
+ goalUpdate?: Maybe<MercuryGoalUpdate>;
41730
+ success: Scalars['Boolean']['output'];
41731
+ };
41732
+ export declare type MercuryEditGoalInput = {
41733
+ description?: InputMaybe<Scalars['String']['input']>;
41734
+ goalAri: Scalars['String']['input'];
41735
+ goalStatus?: InputMaybe<MercuryGoalStatus>;
41736
+ metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41737
+ name?: InputMaybe<Scalars['String']['input']>;
41738
+ owner?: InputMaybe<Scalars['String']['input']>;
41739
+ startDate?: InputMaybe<Scalars['Date']['input']>;
41740
+ targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
41741
+ };
41742
+ export declare type MercuryEditGoalPayload = Payload & {
41743
+ __typename?: 'MercuryEditGoalPayload';
41744
+ errors?: Maybe<Array<MutationError>>;
41745
+ goal?: Maybe<MercuryGoal>;
41449
41746
  success: Scalars['Boolean']['output'];
41450
41747
  };
41451
41748
  export declare type MercuryFocusArea = Node & {
@@ -41572,6 +41869,12 @@ export declare type MercuryGoal = {
41572
41869
  id: Scalars['ID']['output'];
41573
41870
  metric?: Maybe<MercuryMetric>;
41574
41871
  };
41872
+ export declare type MercuryGoalAggregatedStatusCount = {
41873
+ __typename?: 'MercuryGoalAggregatedStatusCount';
41874
+ krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
41875
+ latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
41876
+ subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
41877
+ };
41575
41878
  export declare type MercuryGoalConnection = {
41576
41879
  __typename?: 'MercuryGoalConnection';
41577
41880
  edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
@@ -41586,11 +41889,21 @@ export declare type MercuryGoalEdge = {
41586
41889
  export declare type MercuryGoalMutationApi = {
41587
41890
  __typename?: 'MercuryGoalMutationApi';
41588
41891
  createGoal: MercuryCreateGoalPayload;
41892
+ createGoalUpdateWithMetric: MercuryCreateGoalUpdateWithMetricPayload;
41893
+ editGoal: MercuryEditGoalPayload;
41589
41894
  };
41590
41895
  export declare type MercuryGoalMutationApiCreateGoalArgs = {
41591
41896
  cloudId: Scalars['ID']['input'];
41592
41897
  input: MercuryCreateGoalInput;
41593
41898
  };
41899
+ export declare type MercuryGoalMutationApiCreateGoalUpdateWithMetricArgs = {
41900
+ cloudId: Scalars['ID']['input'];
41901
+ input: MercuryCreateGoalUpdateWithMetricInput;
41902
+ };
41903
+ export declare type MercuryGoalMutationApiEditGoalArgs = {
41904
+ cloudId: Scalars['ID']['input'];
41905
+ input: MercuryEditGoalInput;
41906
+ };
41594
41907
  export declare enum MercuryGoalPhase {
41595
41908
  Done = "DONE",
41596
41909
  InProgress = "IN_PROGRESS",
@@ -41606,6 +41919,17 @@ export declare enum MercuryGoalStatus {
41606
41919
  Paused = "PAUSED",
41607
41920
  Pending = "PENDING"
41608
41921
  }
41922
+ export declare type MercuryGoalStatusCount = {
41923
+ __typename?: 'MercuryGoalStatusCount';
41924
+ atRisk?: Maybe<Scalars['Int']['output']>;
41925
+ cancelled?: Maybe<Scalars['Int']['output']>;
41926
+ done?: Maybe<Scalars['Int']['output']>;
41927
+ offTrack?: Maybe<Scalars['Int']['output']>;
41928
+ onTrack?: Maybe<Scalars['Int']['output']>;
41929
+ paused?: Maybe<Scalars['Int']['output']>;
41930
+ pending?: Maybe<Scalars['Int']['output']>;
41931
+ total?: Maybe<Scalars['Int']['output']>;
41932
+ };
41609
41933
  export declare type MercuryGoalTargetDateInput = {
41610
41934
  date?: InputMaybe<Scalars['Date']['input']>;
41611
41935
  targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
@@ -41619,6 +41943,17 @@ export declare enum MercuryGoalType {
41619
41943
  Goal = "GOAL",
41620
41944
  KeyResult = "KEY_RESULT"
41621
41945
  }
41946
+ export declare type MercuryGoalUpdate = {
41947
+ __typename?: 'MercuryGoalUpdate';
41948
+ atlasGoalId: Scalars['ID']['output'];
41949
+ atlasGoalUpdateAri: Scalars['String']['output'];
41950
+ atlasGoalUpdateId: Scalars['ID']['output'];
41951
+ };
41952
+ export declare type MercuryGoalsAggregatedStatusCount = {
41953
+ __typename?: 'MercuryGoalsAggregatedStatusCount';
41954
+ current?: Maybe<MercuryGoalStatusCount>;
41955
+ previous?: Maybe<MercuryGoalStatusCount>;
41956
+ };
41622
41957
  export declare type MercuryMetric = {
41623
41958
  __typename?: 'MercuryMetric';
41624
41959
  metricType?: Maybe<MercuryMetricType>;
@@ -41626,19 +41961,18 @@ export declare type MercuryMetric = {
41626
41961
  };
41627
41962
  export declare type MercuryMetricScoring = {
41628
41963
  __typename?: 'MercuryMetricScoring';
41629
- baseline?: Maybe<Scalars['BigDecimal']['output']>;
41630
- current?: Maybe<Scalars['BigDecimal']['output']>;
41631
- target?: Maybe<Scalars['BigDecimal']['output']>;
41964
+ currentValue?: Maybe<Scalars['BigDecimal']['output']>;
41965
+ startValue?: Maybe<Scalars['BigDecimal']['output']>;
41966
+ targetValue?: Maybe<Scalars['BigDecimal']['output']>;
41632
41967
  };
41633
41968
  export declare type MercuryMetricScoringInput = {
41634
- baseline?: InputMaybe<Scalars['BigDecimal']['input']>;
41635
- current?: InputMaybe<Scalars['BigDecimal']['input']>;
41636
- target?: InputMaybe<Scalars['BigDecimal']['input']>;
41969
+ startValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41970
+ targetValue?: InputMaybe<Scalars['BigDecimal']['input']>;
41637
41971
  };
41638
41972
  export declare enum MercuryMetricType {
41639
41973
  Currency = "CURRENCY",
41640
41974
  Number = "NUMBER",
41641
- Percent = "PERCENT"
41975
+ Percentage = "PERCENTAGE"
41642
41976
  }
41643
41977
  export declare type MercuryQueryApi = {
41644
41978
  __typename?: 'MercuryQueryApi';
@@ -41835,7 +42169,6 @@ export declare type Mutation = {
41835
42169
  setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
41836
42170
  setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
41837
42171
  setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
41838
- setViewConfig?: Maybe<SetViewConfigOutput>;
41839
42172
  shepherd?: Maybe<ShepherdMutation>;
41840
42173
  splitIssue?: Maybe<SplitIssueOutput>;
41841
42174
  startSprint?: Maybe<SprintResponse>;
@@ -42180,9 +42513,6 @@ export declare type MutationSetSwimlaneStrategyArgs = {
42180
42513
  export declare type MutationSetUserSwimlaneStrategyArgs = {
42181
42514
  input?: InputMaybe<SetSwimlaneStrategyInput>;
42182
42515
  };
42183
- export declare type MutationSetViewConfigArgs = {
42184
- input?: InputMaybe<SetViewConfigInput>;
42185
- };
42186
42516
  export declare type MutationSplitIssueArgs = {
42187
42517
  input?: InputMaybe<SplitIssueInput>;
42188
42518
  };
@@ -44449,7 +44779,7 @@ export declare type Properties = {
44449
44779
  updatedValues?: Maybe<Scalars['String']['output']>;
44450
44780
  };
44451
44781
  export declare type PullRequestStatusInTimeRangeQueryFilter = {
44452
- status: CompassPullRequestStatus;
44782
+ status: CompassPullRequestStatusForStatusInTimeRangeFilter;
44453
44783
  timeRange: CompassQueryTimeRange;
44454
44784
  };
44455
44785
  export declare type Query = {
@@ -44551,7 +44881,6 @@ export declare type Query = {
44551
44881
  marketplacePartner?: Maybe<MarketplacePartner>;
44552
44882
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
44553
44883
  marketplaceStore: MarketplaceStoreQueryApi;
44554
- marketplaceUser?: Maybe<MarketplaceUser>;
44555
44884
  me: AuthenticationContext;
44556
44885
  mercury?: Maybe<MercuryQueryApi>;
44557
44886
  migration: MigrationQuery;
@@ -44594,6 +44923,7 @@ export declare type Query = {
44594
44923
  signup?: Maybe<SignupQueryApi>;
44595
44924
  smarts?: Maybe<SmartsQueryApi>;
44596
44925
  softwareBoards?: Maybe<BoardScopeConnection>;
44926
+ squadNameById?: Maybe<SupportInquirySquad>;
44597
44927
  suggestions?: Maybe<AutoSuggestionApi>;
44598
44928
  surfacePlatform: SurfacePlatformQueryApi;
44599
44929
  team?: Maybe<TeamQuery>;
@@ -46373,6 +46703,7 @@ export declare type SearchAnalyticsInput = {
46373
46703
  queryVersion?: InputMaybe<Scalars['Int']['input']>;
46374
46704
  searchReferrerId?: InputMaybe<Scalars['String']['input']>;
46375
46705
  searchSessionId?: InputMaybe<Scalars['String']['input']>;
46706
+ sourceProduct?: InputMaybe<Scalars['String']['input']>;
46376
46707
  };
46377
46708
  export declare type SearchBoardFilter = {
46378
46709
  negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
@@ -46466,6 +46797,9 @@ export declare type SearchDefaultResult = SearchResult & {
46466
46797
  type: SearchResultType;
46467
46798
  url: Scalars['URL']['output'];
46468
46799
  };
46800
+ export declare type SearchExperimentContextInput = {
46801
+ experimentId?: InputMaybe<Scalars['String']['input']>;
46802
+ };
46469
46803
  export declare type SearchExternalContainerFilter = {
46470
46804
  type: Scalars['String']['input'];
46471
46805
  values: Array<Scalars['String']['input']>;
@@ -46491,6 +46825,10 @@ export declare type SearchFilterInput = {
46491
46825
  locations: Array<Scalars['String']['input']>;
46492
46826
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
46493
46827
  };
46828
+ export declare type SearchInterleaverScrapingResult = {
46829
+ __typename?: 'SearchInterleaverScrapingResult';
46830
+ rerankerRequestInJSON: Scalars['String']['output'];
46831
+ };
46494
46832
  export declare enum SearchIssueStatusCategory {
46495
46833
  Done = "DONE",
46496
46834
  Open = "OPEN"
@@ -46499,6 +46837,7 @@ export declare type SearchItemConnection = {
46499
46837
  __typename?: 'SearchItemConnection';
46500
46838
  abTest?: Maybe<SearchAbTest>;
46501
46839
  edges: Array<SearchResultItemEdge>;
46840
+ interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
46502
46841
  pageInfo: PageInfo;
46503
46842
  totalCount?: Maybe<Scalars['Int']['output']>;
46504
46843
  };
@@ -46539,6 +46878,7 @@ export declare type SearchQueryApiSearchArgs = {
46539
46878
  before?: InputMaybe<Scalars['String']['input']>;
46540
46879
  enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
46541
46880
  experience: Scalars['String']['input'];
46881
+ experimentContext?: InputMaybe<SearchExperimentContextInput>;
46542
46882
  filters: SearchFilterInput;
46543
46883
  first?: InputMaybe<Scalars['Int']['input']>;
46544
46884
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -46580,6 +46920,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
46580
46920
  export declare type SearchResultBitbucketRepository = SearchResult & {
46581
46921
  __typename?: 'SearchResultBitbucketRepository';
46582
46922
  description: Scalars['String']['output'];
46923
+ fullRepoName: Scalars['String']['output'];
46583
46924
  iconUrl?: Maybe<Scalars['URL']['output']>;
46584
46925
  id: Scalars['ID']['output'];
46585
46926
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
@@ -46731,6 +47072,8 @@ export declare type SearchResultTrelloBoard = SearchResult & {
46731
47072
  };
46732
47073
  export declare type SearchResultTrelloCard = SearchResult & {
46733
47074
  __typename?: 'SearchResultTrelloCard';
47075
+ boardName?: Maybe<Scalars['String']['output']>;
47076
+ commentsCount: Scalars['Int']['output'];
46734
47077
  description: Scalars['String']['output'];
46735
47078
  iconUrl?: Maybe<Scalars['URL']['output']>;
46736
47079
  id: Scalars['ID']['output'];
@@ -46750,6 +47093,7 @@ export declare enum SearchResultType {
46750
47093
  Document = "document",
46751
47094
  Embed = "embed",
46752
47095
  Filter = "filter",
47096
+ Folder = "folder",
46753
47097
  Goal = "goal",
46754
47098
  Issue = "issue",
46755
47099
  Learning = "learning",
@@ -46931,19 +47275,6 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
46931
47275
  strategy: SwimlaneStrategy;
46932
47276
  success: Scalars['Boolean']['output'];
46933
47277
  };
46934
- export declare type SetViewConfigInput = {
46935
- description?: InputMaybe<Scalars['JSON']['input']>;
46936
- id: Scalars['ID']['input'];
46937
- };
46938
- export declare type SetViewConfigOutput = MutationResponse & {
46939
- __typename?: 'SetViewConfigOutput';
46940
- clientMutationId?: Maybe<Scalars['ID']['output']>;
46941
- message: Scalars['String']['output'];
46942
- modifiedAt?: Maybe<Scalars['DateTime']['output']>;
46943
- statusCode: Scalars['Int']['output'];
46944
- success: Scalars['Boolean']['output'];
46945
- viewConfig?: Maybe<ViewConfig>;
46946
- };
46947
47278
  export declare enum ShepherdActionType {
46948
47279
  Activate = "ACTIVATE",
46949
47280
  Archive = "ARCHIVE",
@@ -47485,8 +47816,12 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
47485
47816
  export declare type ShepherdDetectionResourceExclusion = {
47486
47817
  __typename?: 'ShepherdDetectionResourceExclusion';
47487
47818
  ari: Scalars['ID']['output'];
47819
+ classificationId?: Maybe<Scalars['ID']['output']>;
47820
+ containerTitle?: Maybe<Scalars['String']['output']>;
47488
47821
  createdBy?: Maybe<Scalars['ID']['output']>;
47822
+ createdByUser?: Maybe<User>;
47489
47823
  createdOn?: Maybe<Scalars['DateTime']['output']>;
47824
+ resourceTitle?: Maybe<Scalars['String']['output']>;
47490
47825
  resourceUrl?: Maybe<Scalars['String']['output']>;
47491
47826
  };
47492
47827
  export declare enum ShepherdDetectionScanningFrequency {
@@ -47770,8 +48105,10 @@ export declare enum ShepherdRemediationActionType {
47770
48105
  EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
47771
48106
  ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
47772
48107
  ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
48108
+ ExportDspRemediation = "EXPORT_DSP_REMEDIATION",
47773
48109
  ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
47774
48110
  JiraGlobalPermissionsRemediation = "JIRA_GLOBAL_PERMISSIONS_REMEDIATION",
48111
+ KeyOwnerRemediation = "KEY_OWNER_REMEDIATION",
47775
48112
  LimitJiraPermissionsRemediation = "LIMIT_JIRA_PERMISSIONS_REMEDIATION",
47776
48113
  ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
47777
48114
  ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
@@ -47779,6 +48116,7 @@ export declare enum ShepherdRemediationActionType {
47779
48116
  PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
47780
48117
  RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
47781
48118
  ReviewAccessRemediation = "REVIEW_ACCESS_REMEDIATION",
48119
+ ReviewApiKeysRemediation = "REVIEW_API_KEYS_REMEDIATION",
47782
48120
  ReviewApiTokensRemediation = "REVIEW_API_TOKENS_REMEDIATION",
47783
48121
  ReviewAuditLogRemediation = "REVIEW_AUDIT_LOG_REMEDIATION",
47784
48122
  ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
@@ -48424,6 +48762,11 @@ export declare type Subscription = {
48424
48762
  testing?: Maybe<TestingSubscription>;
48425
48763
  trello: TrelloSubscriptionApi;
48426
48764
  };
48765
+ export declare type SupportInquirySquad = {
48766
+ __typename?: 'SupportInquirySquad';
48767
+ id: Scalars['ID']['output'];
48768
+ squadName?: Maybe<Scalars['String']['output']>;
48769
+ };
48427
48770
  export declare type SupportRequest = {
48428
48771
  __typename?: 'SupportRequest';
48429
48772
  activities: SupportRequestActivities;
@@ -51048,7 +51391,7 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
51048
51391
  export declare type UnifiedAccount = {
51049
51392
  __typename?: 'UnifiedAccount';
51050
51393
  aaid: Scalars['ID']['output'];
51051
- connectedProductsRefereceId?: Maybe<Scalars['String']['output']>;
51394
+ connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
51052
51395
  parentAccountEmailId?: Maybe<Scalars['String']['output']>;
51053
51396
  parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51054
51397
  };
@@ -51087,12 +51430,12 @@ export declare type UnifiedForumsUser = {
51087
51430
  export declare type UnifiedLinkedAccount = {
51088
51431
  __typename?: 'UnifiedLinkedAccount';
51089
51432
  aaid: Scalars['ID']['output'];
51090
- connectedProductsRefereceId?: Maybe<Scalars['String']['output']>;
51433
+ connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
51091
51434
  parentAccountInternalId?: Maybe<Scalars['String']['output']>;
51092
51435
  };
51093
51436
  export declare type UnifiedLinkedAccountInput = {
51094
51437
  aaid: Scalars['String']['input'];
51095
- connectedProductsRefereceId?: InputMaybe<Scalars['String']['input']>;
51438
+ connectedProductsReferenceId?: InputMaybe<Scalars['String']['input']>;
51096
51439
  parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
51097
51440
  };
51098
51441
  export declare type UnifiedLinkedCreateAccountSuccess = {
@@ -51105,6 +51448,7 @@ export declare type UnifiedMutation = {
51105
51448
  createLinkedAccount: UnifiedLinkedCreateAccountUnion;
51106
51449
  createParentAccount: UnifiedCreateAccountUnion;
51107
51450
  createUnifiedProfile: UnifiedCreateProfileUnion;
51451
+ createUnifiedSystem: UnifiedSystemCreateAccountUnion;
51108
51452
  };
51109
51453
  export declare type UnifiedMutationCreateLinkedAccountArgs = {
51110
51454
  input: UnifiedLinkedAccountInput;
@@ -51115,6 +51459,9 @@ export declare type UnifiedMutationCreateParentAccountArgs = {
51115
51459
  export declare type UnifiedMutationCreateUnifiedProfileArgs = {
51116
51460
  input: UnifiedProfileInput;
51117
51461
  };
51462
+ export declare type UnifiedMutationCreateUnifiedSystemArgs = {
51463
+ input: UnifiedSystemInput;
51464
+ };
51118
51465
  export declare type UnifiedParentAccount = {
51119
51466
  __typename?: 'UnifiedParentAccount';
51120
51467
  parentAccountEmailId?: Maybe<Scalars['String']['output']>;
@@ -51200,6 +51547,16 @@ export declare type UnifiedQueryProfilesSuccess = {
51200
51547
  data: Array<UnifiedProfile>;
51201
51548
  };
51202
51549
  export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
51550
+ export declare type UnifiedSystemCreateAccountSuccess = {
51551
+ __typename?: 'UnifiedSystemCreateAccountSuccess';
51552
+ data: UnifiedProfile;
51553
+ };
51554
+ export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
51555
+ export declare type UnifiedSystemInput = {
51556
+ aaid: Scalars['String']['input'];
51557
+ parentAccountEmailId: Scalars['String']['input'];
51558
+ unifiedProfileUsername: Scalars['String']['input'];
51559
+ };
51203
51560
  export declare type UnifiedUserCertificateDataRes = {
51204
51561
  __typename?: 'UnifiedUserCertificateDataRes';
51205
51562
  activeDate: Scalars['String']['output'];
@@ -51420,6 +51777,19 @@ export declare type UpdateCompassUserDefinedParametersPayload = Payload & {
51420
51777
  success: Scalars['Boolean']['output'];
51421
51778
  userParameterDetails?: Maybe<CompassUserDefinedParameters>;
51422
51779
  };
51780
+ export declare type UpdateComponentApiInput = {
51781
+ componentId: Scalars['String']['input'];
51782
+ defaultTag?: InputMaybe<Scalars['String']['input']>;
51783
+ path?: InputMaybe<Scalars['String']['input']>;
51784
+ repo?: InputMaybe<CompassComponentApiRepoUpdate>;
51785
+ status?: InputMaybe<Scalars['String']['input']>;
51786
+ };
51787
+ export declare type UpdateComponentApiPayload = {
51788
+ __typename?: 'UpdateComponentApiPayload';
51789
+ api?: Maybe<CompassComponentApi>;
51790
+ errors?: Maybe<Array<Scalars['String']['output']>>;
51791
+ success: Scalars['Boolean']['output'];
51792
+ };
51423
51793
  export declare type UpdateCustomFilterInput = {
51424
51794
  boardId: Scalars['ID']['input'];
51425
51795
  description?: InputMaybe<Scalars['String']['input']>;
@@ -51813,12 +52183,6 @@ export declare type UserInstallationRulesPayload = Payload & {
51813
52183
  rule?: Maybe<UserInstallationRuleValue>;
51814
52184
  success: Scalars['Boolean']['output'];
51815
52185
  };
51816
- export declare type ViewConfig = {
51817
- __typename?: 'ViewConfig';
51818
- description?: Maybe<Scalars['JSON']['output']>;
51819
- id: Scalars['ID']['output'];
51820
- modifiedAt?: Maybe<Scalars['DateTime']['output']>;
51821
- };
51822
52186
  export declare type VirtualAgentChannelConfig = {
51823
52187
  __typename?: 'VirtualAgentChannelConfig';
51824
52188
  jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;