@forge/cli-shared 8.23.0-next.6 → 8.23.0-next.6-experimental-f7c39e1

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.
@@ -7237,6 +7237,15 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7237
7237
  issueARI: Scalars['ID']['output'];
7238
7238
  recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7239
7239
  };
7240
+ export declare type AgentWorkspaceIssueRoutingHistory = {
7241
+ __typename?: 'AgentWorkspaceIssueRoutingHistory';
7242
+ events: AgentWorkspaceRoutingHistoryEventConnection;
7243
+ issueKey: Scalars['String']['output'];
7244
+ };
7245
+ export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
7246
+ after?: InputMaybe<Scalars['String']['input']>;
7247
+ first?: InputMaybe<Scalars['Int']['input']>;
7248
+ };
7240
7249
  export declare type AgentWorkspaceMutationError = {
7241
7250
  __typename?: 'AgentWorkspaceMutationError';
7242
7251
  code?: Maybe<Scalars['String']['output']>;
@@ -7321,6 +7330,36 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
7321
7330
  errors?: Maybe<Array<MutationError>>;
7322
7331
  success: Scalars['Boolean']['output'];
7323
7332
  };
7333
+ export declare type AgentWorkspaceRoutingHistoryEvent = {
7334
+ __typename?: 'AgentWorkspaceRoutingHistoryEvent';
7335
+ details: Array<Scalars['String']['output']>;
7336
+ headline: Scalars['String']['output'];
7337
+ id: Scalars['ID']['output'];
7338
+ kind: AgentWorkspaceRoutingHistoryEventKind;
7339
+ occurredAt: Scalars['DateTime']['output'];
7340
+ };
7341
+ export declare type AgentWorkspaceRoutingHistoryEventConnection = {
7342
+ __typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
7343
+ edges: Array<AgentWorkspaceRoutingHistoryEventEdge>;
7344
+ pageInfo: AgentWorkspaceRoutingHistoryPageInfo;
7345
+ };
7346
+ export declare type AgentWorkspaceRoutingHistoryEventEdge = {
7347
+ __typename?: 'AgentWorkspaceRoutingHistoryEventEdge';
7348
+ cursor: Scalars['String']['output'];
7349
+ node: AgentWorkspaceRoutingHistoryEvent;
7350
+ };
7351
+ export declare enum AgentWorkspaceRoutingHistoryEventKind {
7352
+ DeterminedService = "DETERMINED_SERVICE",
7353
+ Routed = "ROUTED",
7354
+ Skipped = "SKIPPED"
7355
+ }
7356
+ export declare type AgentWorkspaceRoutingHistoryPageInfo = {
7357
+ __typename?: 'AgentWorkspaceRoutingHistoryPageInfo';
7358
+ endCursor?: Maybe<Scalars['String']['output']>;
7359
+ hasNextPage: Scalars['Boolean']['output'];
7360
+ hasPreviousPage: Scalars['Boolean']['output'];
7361
+ startCursor?: Maybe<Scalars['String']['output']>;
7362
+ };
7324
7363
  export declare type AgentWorkspaceRoutingSetupState = {
7325
7364
  __typename?: 'AgentWorkspaceRoutingSetupState';
7326
7365
  hasCommittedTable: Scalars['Boolean']['output'];
@@ -36474,11 +36513,6 @@ export declare type CplsSearchCustomContributionTargetsInput = {
36474
36513
  query?: InputMaybe<Scalars['String']['input']>;
36475
36514
  };
36476
36515
  export declare type CplsSettings = CplsPlanSettings | QueryError;
36477
- export declare type CplsSuggestionsExistencePayload = {
36478
- __typename?: 'CplsSuggestionsExistencePayload';
36479
- hasSuggestions: Scalars['Boolean']['output'];
36480
- scopeId: Scalars['ID']['output'];
36481
- };
36482
36516
  export declare type CplsTimeCell = {
36483
36517
  __typename?: 'CplsTimeCell';
36484
36518
  endDate: Scalars['Date']['output'];
@@ -44071,6 +44105,7 @@ export declare type EcosystemQuery = {
44071
44105
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
44072
44106
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
44073
44107
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
44108
+ rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
44074
44109
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
44075
44110
  siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
44076
44111
  unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
@@ -44155,6 +44190,11 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
44155
44190
  appKey?: InputMaybe<Scalars['ID']['input']>;
44156
44191
  cloudAppId?: InputMaybe<Scalars['ID']['input']>;
44157
44192
  };
44193
+ export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
44194
+ appId: Scalars['ID']['input'];
44195
+ environmentId: Scalars['ID']['input'];
44196
+ targetVersionId?: InputMaybe<Scalars['ID']['input']>;
44197
+ };
44158
44198
  export declare type EcosystemQueryRollingReleasesArgs = {
44159
44199
  after?: InputMaybe<Scalars['String']['input']>;
44160
44200
  appId: Scalars['ID']['input'];
@@ -44223,6 +44263,12 @@ export declare type EcosystemRollingReleaseEdge = {
44223
44263
  cursor: Scalars['String']['output'];
44224
44264
  node?: Maybe<EcosystemRollingRelease>;
44225
44265
  };
44266
+ export declare type EcosystemRollingReleaseEligibility = {
44267
+ __typename?: 'EcosystemRollingReleaseEligibility';
44268
+ targetVersionId: Scalars['ID']['output'];
44269
+ totalEligibleInstallationCount: Scalars['Int']['output'];
44270
+ versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
44271
+ };
44226
44272
  export declare type EcosystemRollingReleasePageInfo = {
44227
44273
  __typename?: 'EcosystemRollingReleasePageInfo';
44228
44274
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -44283,6 +44329,14 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
44283
44329
  errors?: Maybe<Array<MutationError>>;
44284
44330
  success: Scalars['Boolean']['output'];
44285
44331
  };
44332
+ export declare type EcosystemVersionEligibilityBreakdown = {
44333
+ __typename?: 'EcosystemVersionEligibilityBreakdown';
44334
+ failingEligibilityRules: Array<Scalars['String']['output']>;
44335
+ installationCount: Scalars['Int']['output'];
44336
+ isEligible: Scalars['Boolean']['output'];
44337
+ semVer: Scalars['String']['output'];
44338
+ sourceVersionId: Scalars['ID']['output'];
44339
+ };
44286
44340
  export declare type EditSprintInput = {
44287
44341
  autoManaged?: InputMaybe<AutoManagedSprintSetting>;
44288
44342
  boardId: Scalars['ID']['input'];
@@ -45765,8 +45819,11 @@ export declare type ExternalMessageLink = {
45765
45819
  export declare type ExternalOrganisation = Node & {
45766
45820
  __typename?: 'ExternalOrganisation';
45767
45821
  associatedWith?: Maybe<ExternalAssociationConnection>;
45822
+ container?: Maybe<ExternalEntity>;
45823
+ containerId?: Maybe<Scalars['ID']['output']>;
45768
45824
  createdAt?: Maybe<Scalars['String']['output']>;
45769
45825
  createdBy?: Maybe<ExternalUser>;
45826
+ description?: Maybe<Scalars['String']['output']>;
45770
45827
  displayName?: Maybe<Scalars['String']['output']>;
45771
45828
  entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
45772
45829
  externalId?: Maybe<Scalars['String']['output']>;
@@ -49084,6 +49141,14 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
49084
49141
  contextAri: Scalars['ID']['input'];
49085
49142
  productAri: Scalars['ID']['input'];
49086
49143
  };
49144
+ export declare type GraphIntegrationCreateSkillInput = {
49145
+ contextAri: Scalars['ID']['input'];
49146
+ description: Scalars['String']['input'];
49147
+ displayName: Scalars['String']['input'];
49148
+ instructions: Scalars['String']['input'];
49149
+ name: Scalars['String']['input'];
49150
+ tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
49151
+ };
49087
49152
  export declare type GraphIntegrationDataConnector = {
49088
49153
  __typename?: 'GraphIntegrationDataConnector';
49089
49154
  connectorKey: Scalars['String']['output'];
@@ -49107,6 +49172,10 @@ export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
49107
49172
  connectorProviderKey: Scalars['String']['input'];
49108
49173
  contextAri: Scalars['ID']['input'];
49109
49174
  };
49175
+ export declare type GraphIntegrationDeleteSkillInput = {
49176
+ contextAri: Scalars['ID']['input'];
49177
+ skillAri: Scalars['ID']['input'];
49178
+ };
49110
49179
  export declare type GraphIntegrationDirectoryFilterDimension = {
49111
49180
  __typename?: 'GraphIntegrationDirectoryFilterDimension';
49112
49181
  displayName: Scalars['String']['output'];
@@ -49496,6 +49565,11 @@ export declare type GraphIntegrationSkillMetadata = {
49496
49565
  tools: Array<GraphIntegrationSkillTool>;
49497
49566
  version: Scalars['String']['output'];
49498
49567
  };
49568
+ export declare type GraphIntegrationSkillMutationPayload = Payload & {
49569
+ __typename?: 'GraphIntegrationSkillMutationPayload';
49570
+ errors?: Maybe<Array<MutationError>>;
49571
+ success: Scalars['Boolean']['output'];
49572
+ };
49499
49573
  export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
49500
49574
  __typename?: 'GraphIntegrationSkillProductItem';
49501
49575
  displayName: Scalars['String']['output'];
@@ -49511,6 +49585,11 @@ export declare type GraphIntegrationSkillTool = {
49511
49585
  source: GraphIntegrationSkillToolSource;
49512
49586
  type: GraphIntegrationSkillToolType;
49513
49587
  };
49588
+ export declare type GraphIntegrationSkillToolInput = {
49589
+ id: Scalars['String']['input'];
49590
+ source: GraphIntegrationSkillToolSource;
49591
+ type: GraphIntegrationSkillToolType;
49592
+ };
49514
49593
  export declare enum GraphIntegrationSkillToolSource {
49515
49594
  IntegrationsService = "INTEGRATIONS_SERVICE"
49516
49595
  }
@@ -49612,6 +49691,15 @@ export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
49612
49691
  connectorProviderPayload: Scalars['JSON']['input'];
49613
49692
  contextAri: Scalars['ID']['input'];
49614
49693
  };
49694
+ export declare type GraphIntegrationUpdateSkillInput = {
49695
+ contextAri: Scalars['ID']['input'];
49696
+ description?: InputMaybe<Scalars['String']['input']>;
49697
+ displayName?: InputMaybe<Scalars['String']['input']>;
49698
+ instructions?: InputMaybe<Scalars['String']['input']>;
49699
+ skillAri: Scalars['ID']['input'];
49700
+ tags?: InputMaybe<Array<Scalars['String']['input']>>;
49701
+ tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
49702
+ };
49615
49703
  export declare type GraphIssueAssociatedDesignPayload = Payload & {
49616
49704
  __typename?: 'GraphIssueAssociatedDesignPayload';
49617
49705
  errors?: Maybe<Array<MutationError>>;
@@ -113433,14 +113521,20 @@ export declare type JiraBoardView = JiraView & Node & {
113433
113521
  canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
113434
113522
  canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
113435
113523
  canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
113524
+ canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
113525
+ canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
113436
113526
  canEditIssues?: Maybe<Scalars['Boolean']['output']>;
113527
+ canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113528
+ canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113437
113529
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113438
113530
  canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
113531
+ canInlineRenameStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113439
113532
  canManageSprints?: Maybe<Scalars['Boolean']['output']>;
113440
113533
  canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
113441
113534
  canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
113442
113535
  canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
113443
113536
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
113537
+ canRenameStatuses?: Maybe<Scalars['Boolean']['output']>;
113444
113538
  canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
113445
113539
  canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
113446
113540
  cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
@@ -113793,6 +113887,7 @@ export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
113793
113887
  };
113794
113888
  export declare type JiraBoardViewStatusColumnMapping = {
113795
113889
  id?: InputMaybe<Scalars['ID']['input']>;
113890
+ maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
113796
113891
  name: Scalars['String']['input'];
113797
113892
  statusIds: Array<Scalars['ID']['input']>;
113798
113893
  };
@@ -125662,6 +125757,7 @@ export declare enum JiraNavigationItemTypeKey {
125662
125757
  Inbox = "INBOX",
125663
125758
  Incidents = "INCIDENTS",
125664
125759
  Issues = "ISSUES",
125760
+ Knowledge = "KNOWLEDGE",
125665
125761
  List = "LIST",
125666
125762
  OnCall = "ON_CALL",
125667
125763
  Pages = "PAGES",
@@ -128707,6 +128803,7 @@ export declare type JiraQuery = {
128707
128803
  jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
128708
128804
  jira_recommendedAgents?: Maybe<JiraActorConnection>;
128709
128805
  jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
128806
+ jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
128710
128807
  jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
128711
128808
  jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
128712
128809
  jqlBuilder?: Maybe<JiraJqlBuilder>;
@@ -129575,6 +129672,12 @@ export declare type JiraQueryJira_SemanticAgentRecommenderArgs = {
129575
129672
  text: Scalars['String']['input'];
129576
129673
  threshold?: InputMaybe<Scalars['Float']['input']>;
129577
129674
  };
129675
+ export declare type JiraQueryJira_SemanticAgentRecommenderV2Args = {
129676
+ after?: InputMaybe<Scalars['String']['input']>;
129677
+ cloudId: Scalars['ID']['input'];
129678
+ contextAri: Scalars['ID']['input'];
129679
+ first?: InputMaybe<Scalars['Int']['input']>;
129680
+ };
129578
129681
  export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
129579
129682
  cloudId: Scalars['ID']['input'];
129580
129683
  };
@@ -132805,6 +132908,46 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
132805
132908
  field?: Maybe<JiraServiceManagementSentimentField>;
132806
132909
  success: Scalars['Boolean']['output'];
132807
132910
  };
132911
+ export declare type JiraServiceManagementSla = {
132912
+ __typename?: 'JiraServiceManagementSla';
132913
+ completedCycles?: Maybe<JiraServiceManagementSlaCompletedCycleConnection>;
132914
+ displayFormat?: Maybe<Scalars['String']['output']>;
132915
+ error?: Maybe<JiraServiceManagementSlaError>;
132916
+ goalView?: Maybe<JiraServiceManagementSlaGoalView>;
132917
+ ongoingCycle?: Maybe<JiraServiceManagementSlaOngoingCycle>;
132918
+ timeMetricId?: Maybe<Scalars['String']['output']>;
132919
+ timeMetricName?: Maybe<Scalars['String']['output']>;
132920
+ timelineEvents?: Maybe<JiraServiceManagementSlaTimelineEventConnection>;
132921
+ };
132922
+ export declare type JiraServiceManagementSlaCompletedCyclesArgs = {
132923
+ after?: InputMaybe<Scalars['String']['input']>;
132924
+ first?: InputMaybe<Scalars['Int']['input']>;
132925
+ };
132926
+ export declare type JiraServiceManagementSlaTimelineEventsArgs = {
132927
+ after?: InputMaybe<Scalars['String']['input']>;
132928
+ first?: InputMaybe<Scalars['Int']['input']>;
132929
+ };
132930
+ export declare type JiraServiceManagementSlaCalendar = {
132931
+ __typename?: 'JiraServiceManagementSlaCalendar';
132932
+ calendarId?: Maybe<Scalars['String']['output']>;
132933
+ holidays?: Maybe<JiraServiceManagementSlaHolidayConnection>;
132934
+ kind?: Maybe<JiraServiceManagementSlaCalendarKind>;
132935
+ name?: Maybe<Scalars['String']['output']>;
132936
+ timezone?: Maybe<Scalars['String']['output']>;
132937
+ workingTimes?: Maybe<JiraServiceManagementSlaWorkingTimeConnection>;
132938
+ };
132939
+ export declare type JiraServiceManagementSlaCalendarHolidaysArgs = {
132940
+ after?: InputMaybe<Scalars['String']['input']>;
132941
+ first?: InputMaybe<Scalars['Int']['input']>;
132942
+ };
132943
+ export declare type JiraServiceManagementSlaCalendarWorkingTimesArgs = {
132944
+ after?: InputMaybe<Scalars['String']['input']>;
132945
+ first?: InputMaybe<Scalars['Int']['input']>;
132946
+ };
132947
+ export declare enum JiraServiceManagementSlaCalendarKind {
132948
+ Custom = "CUSTOM",
132949
+ Standard = "STANDARD"
132950
+ }
132808
132951
  export declare type JiraServiceManagementSlaCompleteGoal = {
132809
132952
  __typename?: 'JiraServiceManagementSlaCompleteGoal';
132810
132953
  breachTime?: Maybe<Scalars['String']['output']>;
@@ -132814,6 +132957,76 @@ export declare type JiraServiceManagementSlaCompleteGoal = {
132814
132957
  startTime?: Maybe<Scalars['String']['output']>;
132815
132958
  stopTime?: Maybe<Scalars['String']['output']>;
132816
132959
  };
132960
+ export declare type JiraServiceManagementSlaCompletedCycle = {
132961
+ __typename?: 'JiraServiceManagementSlaCompletedCycle';
132962
+ breachTime?: Maybe<Scalars['DateTime']['output']>;
132963
+ breached?: Maybe<Scalars['Boolean']['output']>;
132964
+ calendarName?: Maybe<Scalars['String']['output']>;
132965
+ elapsed?: Maybe<Scalars['String']['output']>;
132966
+ goalDuration?: Maybe<Scalars['String']['output']>;
132967
+ remaining?: Maybe<Scalars['String']['output']>;
132968
+ startTime?: Maybe<Scalars['DateTime']['output']>;
132969
+ stopTime?: Maybe<Scalars['DateTime']['output']>;
132970
+ };
132971
+ export declare type JiraServiceManagementSlaCompletedCycleConnection = {
132972
+ __typename?: 'JiraServiceManagementSlaCompletedCycleConnection';
132973
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaCompletedCycleEdge>>>;
132974
+ pageInfo: PageInfo;
132975
+ totalCount?: Maybe<Scalars['Int']['output']>;
132976
+ };
132977
+ export declare type JiraServiceManagementSlaCompletedCycleEdge = {
132978
+ __typename?: 'JiraServiceManagementSlaCompletedCycleEdge';
132979
+ cursor?: Maybe<Scalars['String']['output']>;
132980
+ node?: Maybe<JiraServiceManagementSlaCompletedCycle>;
132981
+ };
132982
+ export declare enum JiraServiceManagementSlaDayOfWeek {
132983
+ Friday = "FRIDAY",
132984
+ Monday = "MONDAY",
132985
+ Saturday = "SATURDAY",
132986
+ Sunday = "SUNDAY",
132987
+ Thursday = "THURSDAY",
132988
+ Tuesday = "TUESDAY",
132989
+ Wednesday = "WEDNESDAY"
132990
+ }
132991
+ export declare enum JiraServiceManagementSlaEmergencyLevel {
132992
+ Breached = "BREACHED",
132993
+ Important = "IMPORTANT",
132994
+ Urgent = "URGENT"
132995
+ }
132996
+ export declare type JiraServiceManagementSlaError = {
132997
+ __typename?: 'JiraServiceManagementSlaError';
132998
+ errorCode?: Maybe<JiraServiceManagementSlaErrorCode>;
132999
+ goalId?: Maybe<Scalars['String']['output']>;
133000
+ timeMetricId?: Maybe<Scalars['String']['output']>;
133001
+ };
133002
+ export declare enum JiraServiceManagementSlaErrorCode {
133003
+ GoalNotFound = "GOAL_NOT_FOUND",
133004
+ TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
133005
+ Unrecognized = "UNRECOGNIZED"
133006
+ }
133007
+ export declare type JiraServiceManagementSlaField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
133008
+ __typename?: 'JiraServiceManagementSlaField';
133009
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
133010
+ description?: Maybe<Scalars['String']['output']>;
133011
+ fieldConfig?: Maybe<JiraFieldConfig>;
133012
+ fieldId: Scalars['String']['output'];
133013
+ fieldOperations?: Maybe<JiraFieldOperation>;
133014
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
133015
+ id: Scalars['ID']['output'];
133016
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
133017
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
133018
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
133019
+ issue?: Maybe<JiraIssue>;
133020
+ name: Scalars['String']['output'];
133021
+ sla?: Maybe<JiraServiceManagementSla>;
133022
+ type: Scalars['String']['output'];
133023
+ };
133024
+ export declare type JiraServiceManagementSlaGoal = {
133025
+ __typename?: 'JiraServiceManagementSlaGoal';
133026
+ calendar?: Maybe<JiraServiceManagementSlaCalendar>;
133027
+ duration?: Maybe<Scalars['String']['output']>;
133028
+ goalId?: Maybe<Scalars['String']['output']>;
133029
+ };
132817
133030
  export declare type JiraServiceManagementSlaGoalDetailedView = {
132818
133031
  __typename?: 'JiraServiceManagementSlaGoalDetailedView';
132819
133032
  active?: Maybe<Scalars['Boolean']['output']>;
@@ -132836,6 +133049,33 @@ export declare type JiraServiceManagementSlaGoalDetailedView = {
132836
133049
  startTime?: Maybe<Scalars['String']['output']>;
132837
133050
  stopTime?: Maybe<Scalars['String']['output']>;
132838
133051
  };
133052
+ export declare type JiraServiceManagementSlaGoalView = {
133053
+ __typename?: 'JiraServiceManagementSlaGoalView';
133054
+ active?: Maybe<Scalars['Boolean']['output']>;
133055
+ calculatedAt?: Maybe<Scalars['String']['output']>;
133056
+ closed?: Maybe<Scalars['Boolean']['output']>;
133057
+ emergencyLevel?: Maybe<JiraServiceManagementSlaEmergencyLevel>;
133058
+ failed?: Maybe<Scalars['Boolean']['output']>;
133059
+ paused?: Maybe<Scalars['Boolean']['output']>;
133060
+ remainingTime?: Maybe<Scalars['String']['output']>;
133061
+ };
133062
+ export declare type JiraServiceManagementSlaHoliday = {
133063
+ __typename?: 'JiraServiceManagementSlaHoliday';
133064
+ date?: Maybe<Scalars['DateTime']['output']>;
133065
+ holidayId?: Maybe<Scalars['String']['output']>;
133066
+ recurring?: Maybe<Scalars['Boolean']['output']>;
133067
+ };
133068
+ export declare type JiraServiceManagementSlaHolidayConnection = {
133069
+ __typename?: 'JiraServiceManagementSlaHolidayConnection';
133070
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaHolidayEdge>>>;
133071
+ pageInfo: PageInfo;
133072
+ totalCount?: Maybe<Scalars['Int']['output']>;
133073
+ };
133074
+ export declare type JiraServiceManagementSlaHolidayEdge = {
133075
+ __typename?: 'JiraServiceManagementSlaHolidayEdge';
133076
+ cursor?: Maybe<Scalars['String']['output']>;
133077
+ node?: Maybe<JiraServiceManagementSlaHoliday>;
133078
+ };
132839
133079
  export declare type JiraServiceManagementSlaIssue = {
132840
133080
  __typename?: 'JiraServiceManagementSlaIssue';
132841
133081
  goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
@@ -132846,6 +133086,69 @@ export declare type JiraServiceManagementSlaIssueResult = {
132846
133086
  errors?: Maybe<Array<QueryError>>;
132847
133087
  slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
132848
133088
  };
133089
+ export declare type JiraServiceManagementSlaOngoingCycle = {
133090
+ __typename?: 'JiraServiceManagementSlaOngoingCycle';
133091
+ goal?: Maybe<JiraServiceManagementSlaGoal>;
133092
+ paused?: Maybe<Scalars['Boolean']['output']>;
133093
+ startTime?: Maybe<Scalars['DateTime']['output']>;
133094
+ };
133095
+ export declare type JiraServiceManagementSlaTimelineEvent = {
133096
+ __typename?: 'JiraServiceManagementSlaTimelineEvent';
133097
+ datetime?: Maybe<Scalars['DateTime']['output']>;
133098
+ types?: Maybe<JiraServiceManagementSlaTimelineEventTypeConnection>;
133099
+ };
133100
+ export declare type JiraServiceManagementSlaTimelineEventTypesArgs = {
133101
+ after?: InputMaybe<Scalars['String']['input']>;
133102
+ first?: InputMaybe<Scalars['Int']['input']>;
133103
+ };
133104
+ export declare type JiraServiceManagementSlaTimelineEventConnection = {
133105
+ __typename?: 'JiraServiceManagementSlaTimelineEventConnection';
133106
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventEdge>>>;
133107
+ pageInfo: PageInfo;
133108
+ totalCount?: Maybe<Scalars['Int']['output']>;
133109
+ };
133110
+ export declare type JiraServiceManagementSlaTimelineEventEdge = {
133111
+ __typename?: 'JiraServiceManagementSlaTimelineEventEdge';
133112
+ cursor?: Maybe<Scalars['String']['output']>;
133113
+ node?: Maybe<JiraServiceManagementSlaTimelineEvent>;
133114
+ };
133115
+ export declare enum JiraServiceManagementSlaTimelineEventType {
133116
+ Pause = "PAUSE",
133117
+ Restart = "RESTART",
133118
+ Start = "START",
133119
+ Stop = "STOP",
133120
+ Unpause = "UNPAUSE",
133121
+ Unrecognized = "UNRECOGNIZED"
133122
+ }
133123
+ export declare type JiraServiceManagementSlaTimelineEventTypeConnection = {
133124
+ __typename?: 'JiraServiceManagementSlaTimelineEventTypeConnection';
133125
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventTypeEdge>>>;
133126
+ pageInfo: PageInfo;
133127
+ totalCount?: Maybe<Scalars['Int']['output']>;
133128
+ };
133129
+ export declare type JiraServiceManagementSlaTimelineEventTypeEdge = {
133130
+ __typename?: 'JiraServiceManagementSlaTimelineEventTypeEdge';
133131
+ cursor?: Maybe<Scalars['String']['output']>;
133132
+ node?: Maybe<JiraServiceManagementSlaTimelineEventType>;
133133
+ };
133134
+ export declare type JiraServiceManagementSlaWorkingTime = {
133135
+ __typename?: 'JiraServiceManagementSlaWorkingTime';
133136
+ end?: Maybe<Scalars['DateTime']['output']>;
133137
+ start?: Maybe<Scalars['DateTime']['output']>;
133138
+ weekday?: Maybe<JiraServiceManagementSlaDayOfWeek>;
133139
+ workingTimeId?: Maybe<Scalars['String']['output']>;
133140
+ };
133141
+ export declare type JiraServiceManagementSlaWorkingTimeConnection = {
133142
+ __typename?: 'JiraServiceManagementSlaWorkingTimeConnection';
133143
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaWorkingTimeEdge>>>;
133144
+ pageInfo: PageInfo;
133145
+ totalCount?: Maybe<Scalars['Int']['output']>;
133146
+ };
133147
+ export declare type JiraServiceManagementSlaWorkingTimeEdge = {
133148
+ __typename?: 'JiraServiceManagementSlaWorkingTimeEdge';
133149
+ cursor?: Maybe<Scalars['String']['output']>;
133150
+ node?: Maybe<JiraServiceManagementSlaWorkingTime>;
133151
+ };
132849
133152
  export declare type JiraServiceManagementTeamResponder = {
132850
133153
  __typename?: 'JiraServiceManagementTeamResponder';
132851
133154
  teamId?: Maybe<Scalars['String']['output']>;
@@ -133087,7 +133390,7 @@ export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
133087
133390
  maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
133088
133391
  settings?: InputMaybe<JiraBoardViewSettings>;
133089
133392
  };
133090
- export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = {
133393
+ export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = Payload & {
133091
133394
  __typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
133092
133395
  boardView?: Maybe<JiraBoardView>;
133093
133396
  column?: Maybe<JiraBoardViewStatusColumn>;
@@ -142128,6 +142431,111 @@ export declare type LayerScreenLookAndFeel = {
142128
142431
  height?: Maybe<Scalars['String']['output']>;
142129
142432
  width?: Maybe<Scalars['String']['output']>;
142130
142433
  };
142434
+ export declare type LearningCertSort = {
142435
+ sortDirection?: InputMaybe<LearningSortOrder>;
142436
+ sortField?: InputMaybe<LearningCertSortField>;
142437
+ };
142438
+ export declare enum LearningCertSortField {
142439
+ ActiveDate = "ACTIVE_DATE",
142440
+ ExpireDate = "EXPIRE_DATE",
142441
+ Id = "ID",
142442
+ ImageUrl = "IMAGE_URL",
142443
+ Name = "NAME",
142444
+ NameAbbr = "NAME_ABBR",
142445
+ PublicUrl = "PUBLIC_URL",
142446
+ Status = "STATUS",
142447
+ Type = "TYPE"
142448
+ }
142449
+ export declare enum LearningCertStatus {
142450
+ Active = "ACTIVE",
142451
+ Expired = "EXPIRED"
142452
+ }
142453
+ export declare enum LearningCertType {
142454
+ Badge = "BADGE",
142455
+ Certification = "CERTIFICATION",
142456
+ Standing = "STANDING"
142457
+ }
142458
+ export declare type LearningCertmetricsCertificate = {
142459
+ __typename?: 'LearningCertmetricsCertificate';
142460
+ activeDate?: Maybe<Scalars['String']['output']>;
142461
+ expireDate?: Maybe<Scalars['String']['output']>;
142462
+ id?: Maybe<Scalars['String']['output']>;
142463
+ imageUrl?: Maybe<Scalars['String']['output']>;
142464
+ name?: Maybe<Scalars['String']['output']>;
142465
+ nameAbbr?: Maybe<Scalars['String']['output']>;
142466
+ publicUrl?: Maybe<Scalars['String']['output']>;
142467
+ status?: Maybe<LearningCertStatus>;
142468
+ type?: Maybe<LearningCertType>;
142469
+ };
142470
+ export declare type LearningCertmetricsCertificateConnection = {
142471
+ __typename?: 'LearningCertmetricsCertificateConnection';
142472
+ edges?: Maybe<Array<LearningCertmetricsCertificateEdge>>;
142473
+ pageInfo?: Maybe<LearningPageInfo>;
142474
+ totalCount?: Maybe<Scalars['Int']['output']>;
142475
+ };
142476
+ export declare type LearningCertmetricsCertificateEdge = {
142477
+ __typename?: 'LearningCertmetricsCertificateEdge';
142478
+ cursor: Scalars['String']['output'];
142479
+ node?: Maybe<LearningCertmetricsCertificate>;
142480
+ };
142481
+ export declare type LearningCertmetricsCertificateResult = LearningCertmetricsCertificateConnection | LearningQueryError;
142482
+ export declare type LearningConnectionQueryErrorExtension = LearningQueryErrorExtension & {
142483
+ __typename?: 'LearningConnectionQueryErrorExtension';
142484
+ errorType?: Maybe<Scalars['String']['output']>;
142485
+ statusCode?: Maybe<Scalars['Int']['output']>;
142486
+ };
142487
+ export declare type LearningLearner = {
142488
+ __typename?: 'LearningLearner';
142489
+ atlassianId: Scalars['String']['output'];
142490
+ certmetricsCertificates?: Maybe<LearningCertmetricsCertificateResult>;
142491
+ id: Scalars['ID']['output'];
142492
+ };
142493
+ export declare type LearningLearnerCertmetricsCertificatesArgs = {
142494
+ after?: InputMaybe<Scalars['String']['input']>;
142495
+ before?: InputMaybe<Scalars['String']['input']>;
142496
+ first?: InputMaybe<Scalars['Int']['input']>;
142497
+ last?: InputMaybe<Scalars['Int']['input']>;
142498
+ sorting?: InputMaybe<LearningCertSort>;
142499
+ status?: InputMaybe<LearningCertStatus>;
142500
+ type?: InputMaybe<Array<InputMaybe<LearningCertType>>>;
142501
+ };
142502
+ export declare type LearningPageInfo = {
142503
+ __typename?: 'LearningPageInfo';
142504
+ endCursor?: Maybe<Scalars['String']['output']>;
142505
+ hasNextPage: Scalars['Boolean']['output'];
142506
+ hasPreviousPage: Scalars['Boolean']['output'];
142507
+ startCursor?: Maybe<Scalars['String']['output']>;
142508
+ };
142509
+ export declare type LearningQuery = {
142510
+ __typename?: 'LearningQuery';
142511
+ learnerByAtlassianId?: Maybe<LearningLearner>;
142512
+ learnersByAtlassianIds?: Maybe<Array<Maybe<LearningLearner>>>;
142513
+ learnersByIds?: Maybe<Array<Maybe<LearningLearner>>>;
142514
+ };
142515
+ export declare type LearningQueryLearnerByAtlassianIdArgs = {
142516
+ atlassianId: Scalars['String']['input'];
142517
+ };
142518
+ export declare type LearningQueryLearnersByAtlassianIdsArgs = {
142519
+ atlassianIds: Array<Scalars['String']['input']>;
142520
+ };
142521
+ export declare type LearningQueryLearnersByIdsArgs = {
142522
+ ids: Array<Scalars['ID']['input']>;
142523
+ };
142524
+ export declare type LearningQueryError = {
142525
+ __typename?: 'LearningQueryError';
142526
+ extensions?: Maybe<Array<LearningQueryErrorExtension>>;
142527
+ id: Scalars['ID']['output'];
142528
+ identifier?: Maybe<Scalars['ID']['output']>;
142529
+ message?: Maybe<Scalars['String']['output']>;
142530
+ };
142531
+ export declare type LearningQueryErrorExtension = {
142532
+ errorType?: Maybe<Scalars['String']['output']>;
142533
+ statusCode?: Maybe<Scalars['Int']['output']>;
142534
+ };
142535
+ export declare enum LearningSortOrder {
142536
+ Asc = "ASC",
142537
+ Desc = "DESC"
142538
+ }
142131
142539
  export declare type License = {
142132
142540
  __typename?: 'License';
142133
142541
  billingPeriod?: Maybe<Scalars['String']['output']>;
@@ -152068,11 +152476,8 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
152068
152476
  after?: InputMaybe<Scalars['String']['input']>;
152069
152477
  benefitItemId: Scalars['ID']['input'];
152070
152478
  cloudId: Scalars['ID']['input'];
152071
- filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
152072
152479
  first?: InputMaybe<Scalars['Int']['input']>;
152073
- providerKey: Scalars['String']['input'];
152074
152480
  textQuery?: InputMaybe<Scalars['String']['input']>;
152075
- workContainerAri?: InputMaybe<Scalars['String']['input']>;
152076
152481
  };
152077
152482
  export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
152078
152483
  after?: InputMaybe<Scalars['String']['input']>;
@@ -155510,7 +155915,9 @@ export declare type Mutation = {
155510
155915
  graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
155511
155916
  graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
155512
155917
  graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
155918
+ graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
155513
155919
  graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
155920
+ graphIntegration_deleteSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
155514
155921
  graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
155515
155922
  graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
155516
155923
  graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
@@ -155519,6 +155926,7 @@ export declare type Mutation = {
155519
155926
  graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
155520
155927
  graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
155521
155928
  graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
155929
+ graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
155522
155930
  graphStore?: Maybe<GraphStoreMutation>;
155523
155931
  graphStoreV2?: Maybe<GraphStoreV2Mutation>;
155524
155932
  gravity_addReaction?: Maybe<GravityAddReactionPayload>;
@@ -158718,9 +159126,15 @@ export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
158718
159126
  export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
158719
159127
  input: GraphIntegrationCreateDataConnectorConnectionInput;
158720
159128
  };
159129
+ export declare type MutationGraphIntegration_CreateSkillArgs = {
159130
+ input: GraphIntegrationCreateSkillInput;
159131
+ };
158721
159132
  export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
158722
159133
  input: GraphIntegrationDeleteDataConnectorConnectionInput;
158723
159134
  };
159135
+ export declare type MutationGraphIntegration_DeleteSkillArgs = {
159136
+ input: GraphIntegrationDeleteSkillInput;
159137
+ };
158724
159138
  export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
158725
159139
  input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
158726
159140
  };
@@ -158745,6 +159159,9 @@ export declare type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdmin
158745
159159
  export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
158746
159160
  input: GraphIntegrationUpdateDataConnectorConnectionInput;
158747
159161
  };
159162
+ export declare type MutationGraphIntegration_UpdateSkillArgs = {
159163
+ input: GraphIntegrationUpdateSkillInput;
159164
+ };
158748
159165
  export declare type MutationGravity_AddReactionArgs = {
158749
159166
  cloudId: Scalars['ID']['input'];
158750
159167
  input: GravityAddReactionInput;
@@ -163863,6 +164280,7 @@ export declare type Query = {
163863
164280
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
163864
164281
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
163865
164282
  agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
164283
+ agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
163866
164284
  agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
163867
164285
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
163868
164286
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
@@ -163885,6 +164303,7 @@ export declare type Query = {
163885
164303
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
163886
164304
  agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
163887
164305
  agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
164306
+ agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
163888
164307
  agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
163889
164308
  agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<Array<AgentWorkspaceAgent>>;
163890
164309
  agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
@@ -164744,6 +165163,8 @@ export declare type Query = {
164744
165163
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
164745
165164
  labelSearch?: Maybe<LabelSearchResults>;
164746
165165
  latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
165166
+ learning?: Maybe<LearningQuery>;
165167
+ learning_healthCheck?: Maybe<Scalars['String']['output']>;
164747
165168
  license?: Maybe<License>;
164748
165169
  linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
164749
165170
  linksIncomingToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
@@ -165751,6 +166172,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
165751
166172
  cloudId: Scalars['String']['input'];
165752
166173
  input: AgentStudioSuggestConversationStartersInput;
165753
166174
  };
166175
+ export declare type QueryAgentStudio_TestConversationListByContainerIdArgs = {
166176
+ after?: InputMaybe<Scalars['String']['input']>;
166177
+ cloudId: Scalars['String']['input'];
166178
+ containerAri: Scalars['ID']['input'];
166179
+ experienceId: Scalars['String']['input'];
166180
+ filter?: InputMaybe<AgentStudioLiveConversationFilterInput>;
166181
+ first?: InputMaybe<Scalars['Int']['input']>;
166182
+ productType: AgentStudioProductType;
166183
+ };
165754
166184
  export declare type QueryAgentStudio_ToolIntegrationsArgs = {
165755
166185
  after?: InputMaybe<Scalars['String']['input']>;
165756
166186
  cloudId: Scalars['String']['input'];
@@ -165862,6 +166292,10 @@ export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
165862
166292
  export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
165863
166293
  projectAri: Scalars['ID']['input'];
165864
166294
  };
166295
+ export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
166296
+ cloudId: Scalars['ID']['input'];
166297
+ issueKey: Scalars['String']['input'];
166298
+ };
165865
166299
  export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
165866
166300
  cloudId: Scalars['ID']['input'];
165867
166301
  projectId: Scalars['ID']['input'];
@@ -204047,6 +204481,7 @@ export declare type TownsquareSetParentGoalPayload = {
204047
204481
  __typename?: 'TownsquareSetParentGoalPayload';
204048
204482
  goal?: Maybe<TownsquareGoal>;
204049
204483
  parentGoal?: Maybe<TownsquareGoal>;
204484
+ removedParentGoal?: Maybe<TownsquareGoal>;
204050
204485
  };
204051
204486
  export declare type TownsquareShareGoalUserInput = {
204052
204487
  accountId?: InputMaybe<Scalars['ID']['input']>;