@forge/cli-shared 8.25.0-next.4 → 8.25.0-next.5-experimental-44b7a12

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.
@@ -434,6 +434,46 @@ export declare type AiOpsIncidentSuggestedRcaWithAutomation = AiOpsIncidentSugge
434
434
  suggestedAutomationRules?: Maybe<Array<AiOpsIncidentSuggestedAutomationRule>>;
435
435
  title?: Maybe<Scalars['String']['output']>;
436
436
  };
437
+ export declare type AiOpsIncidentSuggestedResource = {
438
+ __typename?: 'AIOpsIncidentSuggestedResource';
439
+ link?: Maybe<Scalars['String']['output']>;
440
+ resourceGroupType?: Maybe<AiOpsIncidentSuggestedResourceGroupType>;
441
+ resourceId?: Maybe<Scalars['String']['output']>;
442
+ resourceKey?: Maybe<Scalars['String']['output']>;
443
+ score?: Maybe<Scalars['Float']['output']>;
444
+ summary?: Maybe<Scalars['String']['output']>;
445
+ type?: Maybe<AiOpsIncidentSuggestedResourceType>;
446
+ };
447
+ export declare enum AiOpsIncidentSuggestedResourceGroupType {
448
+ Articles_3P = "ARTICLES_3P",
449
+ Atlas = "ATLAS",
450
+ Chat = "CHAT",
451
+ Confluence = "CONFLUENCE",
452
+ Incident = "INCIDENT",
453
+ Issues = "ISSUES",
454
+ Pir = "PIR"
455
+ }
456
+ export declare enum AiOpsIncidentSuggestedResourceType {
457
+ Atlas = "ATLAS",
458
+ DevopsDeployment = "DEVOPS_DEPLOYMENT",
459
+ DevopsFf = "DEVOPS_FF",
460
+ GDocs = "G_DOCS",
461
+ Incident = "INCIDENT",
462
+ JiraIssue = "JIRA_ISSUE",
463
+ Kb = "KB",
464
+ Pir = "PIR",
465
+ Sharepoint = "SHAREPOINT",
466
+ Slack = "SLACK"
467
+ }
468
+ export declare type AiOpsIncidentSuggestedResourcesInProgress = {
469
+ __typename?: 'AIOpsIncidentSuggestedResourcesInProgress';
470
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
471
+ };
472
+ export declare type AiOpsIncidentSuggestedResourcesResponse = {
473
+ __typename?: 'AIOpsIncidentSuggestedResourcesResponse';
474
+ resources?: Maybe<Array<AiOpsIncidentSuggestedResource>>;
475
+ };
476
+ export declare type AiOpsIncidentSuggestedResourcesResult = AiOpsIncidentSuggestedResourcesInProgress | AiOpsIncidentSuggestedResourcesResponse;
437
477
  export declare type AiOpsIncidentSuggestedResponders = AiOpsIncidentSuggestedAction & {
438
478
  __typename?: 'AIOpsIncidentSuggestedResponders';
439
479
  currentResponders?: Maybe<Array<AiOpsIncidentSuggestedUser>>;
@@ -7648,6 +7688,10 @@ export declare type AgentWorkspaceCancelRoutingTableGenerationPayload = {
7648
7688
  generationId: Scalars['ID']['output'];
7649
7689
  status: AgentWorkspaceRoutingTableGenerationStatus;
7650
7690
  };
7691
+ export declare type AgentWorkspaceCancelSmartRoutingDryRunInput = {
7692
+ cloudId: Scalars['ID']['input'];
7693
+ projectKey: Scalars['String']['input'];
7694
+ };
7651
7695
  export declare type AgentWorkspaceCapacityConnection = {
7652
7696
  __typename?: 'AgentWorkspaceCapacityConnection';
7653
7697
  edges: Array<AgentWorkspaceAgentCapacityEdge>;
@@ -7698,6 +7742,14 @@ export declare type AgentWorkspaceCapacitySummary = {
7698
7742
  totalUnassignedWorkItems: Scalars['Int']['output'];
7699
7743
  totalUtilizationPercent: Scalars['Float']['output'];
7700
7744
  };
7745
+ export declare type AgentWorkspaceConfusionMatrix = {
7746
+ __typename?: 'AgentWorkspaceConfusionMatrix';
7747
+ falseNegatives: Scalars['Int']['output'];
7748
+ falsePositives: Scalars['Int']['output'];
7749
+ total: Scalars['Int']['output'];
7750
+ trueNegatives: Scalars['Int']['output'];
7751
+ truePositives: Scalars['Int']['output'];
7752
+ };
7701
7753
  export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
7702
7754
  agentId: Scalars['ID']['input'];
7703
7755
  coveringShiftId: Scalars['ID']['input'];
@@ -7789,6 +7841,12 @@ export declare type AgentWorkspaceCreateTeamFromGroupInput = {
7789
7841
  export declare type AgentWorkspaceCreateWfoSummaryViewInput = {
7790
7842
  projectAri: Scalars['ID']['input'];
7791
7843
  };
7844
+ export declare type AgentWorkspaceCreateWfoSummaryViewPayload = {
7845
+ __typename?: 'AgentWorkspaceCreateWfoSummaryViewPayload';
7846
+ errors?: Maybe<Array<MutationError>>;
7847
+ success: Scalars['Boolean']['output'];
7848
+ summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
7849
+ };
7792
7850
  export declare enum AgentWorkspaceDayOfWeek {
7793
7851
  Friday = "FRIDAY",
7794
7852
  Monday = "MONDAY",
@@ -8577,10 +8635,57 @@ export declare type AgentWorkspaceSmartRoutingConfig = {
8577
8635
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
8578
8636
  enabled: Scalars['Boolean']['output'];
8579
8637
  serviceFieldId?: Maybe<Scalars['String']['output']>;
8638
+ serviceFieldName?: Maybe<Scalars['String']['output']>;
8580
8639
  serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8581
8640
  setupVersion: Scalars['Int']['output'];
8582
8641
  warning?: Maybe<Scalars['String']['output']>;
8583
8642
  };
8643
+ export declare type AgentWorkspaceSmartRoutingDryRun = {
8644
+ __typename?: 'AgentWorkspaceSmartRoutingDryRun';
8645
+ actualSampleSize: Scalars['Int']['output'];
8646
+ endedAt?: Maybe<Scalars['DateTime']['output']>;
8647
+ errorCode?: Maybe<Scalars['String']['output']>;
8648
+ errorCount: Scalars['Int']['output'];
8649
+ processedCount: Scalars['Int']['output'];
8650
+ progressPct: Scalars['Int']['output'];
8651
+ requestedSampleSize: Scalars['Int']['output'];
8652
+ result?: Maybe<AgentWorkspaceSmartRoutingDryRunResult>;
8653
+ runId: Scalars['ID']['output'];
8654
+ startedAt: Scalars['DateTime']['output'];
8655
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
8656
+ totalCount: Scalars['Int']['output'];
8657
+ };
8658
+ export declare type AgentWorkspaceSmartRoutingDryRunResult = {
8659
+ __typename?: 'AgentWorkspaceSmartRoutingDryRunResult';
8660
+ accuracy?: Maybe<Scalars['Float']['output']>;
8661
+ configCoverage?: Maybe<Scalars['Float']['output']>;
8662
+ excludedCount: Scalars['Int']['output'];
8663
+ matrix: AgentWorkspaceConfusionMatrix;
8664
+ perService: Array<AgentWorkspaceSmartRoutingPerServiceStat>;
8665
+ precision?: Maybe<Scalars['Float']['output']>;
8666
+ recall?: Maybe<Scalars['Float']['output']>;
8667
+ sampleSize: Scalars['Int']['output'];
8668
+ volumeCoverage?: Maybe<Scalars['Float']['output']>;
8669
+ };
8670
+ export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
8671
+ Cancelled = "CANCELLED",
8672
+ Cancelling = "CANCELLING",
8673
+ Completed = "COMPLETED",
8674
+ Failed = "FAILED",
8675
+ Pending = "PENDING",
8676
+ Running = "RUNNING",
8677
+ Timeout = "TIMEOUT"
8678
+ }
8679
+ export declare type AgentWorkspaceSmartRoutingPerServiceStat = {
8680
+ __typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
8681
+ covered: Scalars['Boolean']['output'];
8682
+ falseNegatives: Scalars['Int']['output'];
8683
+ falsePositives: Scalars['Int']['output'];
8684
+ observed: Scalars['Int']['output'];
8685
+ serviceId: Scalars['ID']['output'];
8686
+ trueNegatives: Scalars['Int']['output'];
8687
+ truePositives: Scalars['Int']['output'];
8688
+ };
8584
8689
  export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
8585
8690
  AffectedServices = "AFFECTED_SERVICES",
8586
8691
  Asset = "ASSET",
@@ -8627,6 +8732,16 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
8627
8732
  generationId: Scalars['ID']['output'];
8628
8733
  status: AgentWorkspaceRoutingTableGenerationStatus;
8629
8734
  };
8735
+ export declare type AgentWorkspaceStartSmartRoutingDryRunInput = {
8736
+ cloudId: Scalars['ID']['input'];
8737
+ projectKey: Scalars['String']['input'];
8738
+ sampleSize?: InputMaybe<Scalars['Int']['input']>;
8739
+ };
8740
+ export declare type AgentWorkspaceStartSmartRoutingDryRunPayload = {
8741
+ __typename?: 'AgentWorkspaceStartSmartRoutingDryRunPayload';
8742
+ runId: Scalars['ID']['output'];
8743
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
8744
+ };
8630
8745
  export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
8631
8746
  cloudId: Scalars['ID']['input'];
8632
8747
  draftId?: InputMaybe<Scalars['ID']['input']>;
@@ -8634,6 +8749,7 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
8634
8749
  fieldId: Scalars['String']['input'];
8635
8750
  projectKey: Scalars['String']['input'];
8636
8751
  selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
8752
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
8637
8753
  serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8638
8754
  };
8639
8755
  export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
@@ -8782,6 +8898,7 @@ export declare type AgentWorkspaceUpdateRoutingConfigInput = {
8782
8898
  enabled: Scalars['Boolean']['input'];
8783
8899
  projectKey: Scalars['String']['input'];
8784
8900
  serviceFieldId?: InputMaybe<Scalars['String']['input']>;
8901
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
8785
8902
  serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8786
8903
  };
8787
8904
  export declare type AgentWorkspaceUpdateScheduleInput = {
@@ -8876,9 +8993,23 @@ export declare type AgentWorkspaceWfoSummaryView = {
8876
8993
  dashboardId?: Maybe<Scalars['ID']['output']>;
8877
8994
  viewId: Scalars['ID']['output'];
8878
8995
  };
8996
+ export declare type AgentWorkspaceWfoSummaryViewByProjectKeyInput = {
8997
+ cloudId: Scalars['ID']['input'];
8998
+ projectKey: Scalars['String']['input'];
8999
+ };
9000
+ export declare type AgentWorkspaceWfoSummaryViewByProjectKeyResult = {
9001
+ __typename?: 'AgentWorkspaceWfoSummaryViewByProjectKeyResult';
9002
+ errors?: Maybe<Array<QueryError>>;
9003
+ summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
9004
+ };
8879
9005
  export declare type AgentWorkspaceWfoSummaryViewQueryInput = {
8880
9006
  projectAri: Scalars['ID']['input'];
8881
9007
  };
9008
+ export declare type AgentWorkspaceWfoSummaryViewResult = {
9009
+ __typename?: 'AgentWorkspaceWfoSummaryViewResult';
9010
+ errors?: Maybe<Array<QueryError>>;
9011
+ summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
9012
+ };
8882
9013
  export declare type AgentWorkspaceWorkloadJqlConfig = {
8883
9014
  __typename?: 'AgentWorkspaceWorkloadJqlConfig';
8884
9015
  jql: Scalars['String']['output'];
@@ -8958,13 +9089,32 @@ export declare enum AiCoreApiRsaJobStatus {
8958
9089
  Failed = "FAILED",
8959
9090
  InProgress = "IN_PROGRESS"
8960
9091
  }
9092
+ export declare enum AiCoreApiRsaKbGapHealth {
9093
+ Missing = "MISSING",
9094
+ Outdated = "OUTDATED",
9095
+ Weak = "WEAK"
9096
+ }
9097
+ export declare type AiCoreApiRsaKbGapItem = {
9098
+ __typename?: 'AiCoreApiRsaKbGapItem';
9099
+ health: AiCoreApiRsaKbGapHealth;
9100
+ relatedWorkItemCount: Scalars['Int']['output'];
9101
+ requestType?: Maybe<Scalars['String']['output']>;
9102
+ requestTypeId?: Maybe<Scalars['String']['output']>;
9103
+ suggestedTopic?: Maybe<Scalars['String']['output']>;
9104
+ };
9105
+ export declare type AiCoreApiRsaKbGapResult = {
9106
+ __typename?: 'AiCoreApiRsaKbGapResult';
9107
+ items: Array<AiCoreApiRsaKbGapItem>;
9108
+ };
8961
9109
  export declare enum AiCoreApiRsaQueryType {
8962
9110
  Assisted = "ASSISTED",
8963
9111
  Employee = "EMPLOYEE",
8964
9112
  Funnel = "FUNNEL",
9113
+ KbGap = "KB_GAP",
8965
9114
  Resolved = "RESOLVED",
8966
9115
  RtDistribution = "RT_DISTRIBUTION",
8967
- SkillGap = "SKILL_GAP"
9116
+ SkillGap = "SKILL_GAP",
9117
+ Ttr = "TTR"
8968
9118
  }
8969
9119
  export declare type AiCoreApiRsaReportInput = {
8970
9120
  cloudId?: InputMaybe<Scalars['ID']['input']>;
@@ -8985,11 +9135,13 @@ export declare type AiCoreApiRsaReportPayload = {
8985
9135
  errorCode?: Maybe<Scalars['String']['output']>;
8986
9136
  errorMessage?: Maybe<Scalars['String']['output']>;
8987
9137
  funnel?: Maybe<AiCoreApiRsaFunnelResult>;
9138
+ kbGap?: Maybe<AiCoreApiRsaKbGapResult>;
8988
9139
  resolved?: Maybe<AiCoreApiRsaResolvedResult>;
8989
9140
  rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
8990
9141
  skillGap?: Maybe<AiCoreApiRsaSkillGapResult>;
8991
9142
  status: AiCoreApiRsaJobStatus;
8992
9143
  truncated?: Maybe<Scalars['Boolean']['output']>;
9144
+ ttr?: Maybe<AiCoreApiRsaTtrResult>;
8993
9145
  };
8994
9146
  export declare enum AiCoreApiRsaReportType {
8995
9147
  Insight = "INSIGHT",
@@ -9054,6 +9206,10 @@ export declare type AiCoreApiRsaSkillTicketsPayload = {
9054
9206
  status: AiCoreApiRsaJobStatus;
9055
9207
  };
9056
9208
  export declare type AiCoreApiRsaSkillTicketsResult = AiCoreApiRsaSkillTicketsPayload | QueryError;
9209
+ export declare type AiCoreApiRsaTtrResult = {
9210
+ __typename?: 'AiCoreApiRsaTtrResult';
9211
+ averageTimeToResolutionSeconds?: Maybe<Scalars['Float']['output']>;
9212
+ };
9057
9213
  export declare type AiCoreApiVsaQuestions = {
9058
9214
  __typename?: 'AiCoreApiVSAQuestions';
9059
9215
  projectAri: Scalars['ID']['output'];
@@ -17049,6 +17205,7 @@ export declare type CcpEntitlementRelatesToEntitlementsArgs = {
17049
17205
  };
17050
17206
  export declare type CcpEntitlementDisplayInfo = {
17051
17207
  __typename?: 'CcpEntitlementDisplayInfo';
17208
+ entitlementCustomName?: Maybe<Scalars['String']['output']>;
17052
17209
  provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
17053
17210
  };
17054
17211
  export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
@@ -34874,7 +35031,9 @@ export declare type ConfluenceSpacePermissionPageInfo = {
34874
35031
  export declare type ConfluenceSpacePermissionTransitionTaskProgress = {
34875
35032
  __typename?: 'ConfluenceSpacePermissionTransitionTaskProgress';
34876
35033
  currentStep?: Maybe<ConfluenceSpacePermissionTransitionTaskStep>;
35034
+ estimatedCompletionTime?: Maybe<Scalars['String']['output']>;
34877
35035
  progressPercentage?: Maybe<Scalars['Int']['output']>;
35036
+ startedAt?: Maybe<Scalars['String']['output']>;
34878
35037
  taskId: Scalars['ID']['output'];
34879
35038
  taskType: ConfluenceSpacePermissionTransitionTaskType;
34880
35039
  };
@@ -37617,6 +37776,7 @@ export declare type ConvoAiSkill = {
37617
37776
  color?: Maybe<Scalars['String']['output']>;
37618
37777
  description?: Maybe<Scalars['String']['output']>;
37619
37778
  displayName?: Maybe<Scalars['String']['output']>;
37779
+ helpText?: Maybe<Scalars['String']['output']>;
37620
37780
  iconKey?: Maybe<Scalars['String']['output']>;
37621
37781
  iconUrl?: Maybe<Scalars['String']['output']>;
37622
37782
  id: Scalars['ID']['output'];
@@ -42395,6 +42555,7 @@ export declare type DevAiAutodevNextAssociatedWorkstream = {
42395
42555
  };
42396
42556
  export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
42397
42557
  cloudId: Scalars['ID']['input'];
42558
+ repository?: InputMaybe<Scalars['String']['input']>;
42398
42559
  state: DevAiAutodevNextCompleteWorkItemRefinementState;
42399
42560
  workItemBody?: InputMaybe<Scalars['String']['input']>;
42400
42561
  workItemId: Scalars['ID']['input'];
@@ -43175,16 +43336,23 @@ export declare enum DevAiResourceType {
43175
43336
  DevaiStandard = "DEVAI_STANDARD",
43176
43337
  DevaiStandardAndJira = "DEVAI_STANDARD_AND_JIRA",
43177
43338
  DevaiStandardAndJiraAndConfluence = "DEVAI_STANDARD_AND_JIRA_AND_CONFLUENCE",
43339
+ DevaiStandardAndJiraTrial = "DEVAI_STANDARD_AND_JIRA_TRIAL",
43340
+ DevaiStandardAndJiraTrialAndConfluence = "DEVAI_STANDARD_AND_JIRA_TRIAL_AND_CONFLUENCE",
43178
43341
  DevaiStandardTrial = "DEVAI_STANDARD_TRIAL",
43179
43342
  DevaiStandardTrialAndJira = "DEVAI_STANDARD_TRIAL_AND_JIRA",
43343
+ DevaiStandardTrialAndJiraTrial = "DEVAI_STANDARD_TRIAL_AND_JIRA_TRIAL",
43180
43344
  Jira = "JIRA",
43181
43345
  JiraAndConfluence = "JIRA_AND_CONFLUENCE",
43346
+ JiraTrial = "JIRA_TRIAL",
43347
+ JiraTrialAndConfluence = "JIRA_TRIAL_AND_CONFLUENCE",
43182
43348
  NoActiveProduct = "NO_ACTIVE_PRODUCT",
43183
43349
  RovoDevBeta = "ROVO_DEV_BETA",
43184
43350
  RovoDevEverywhere = "ROVO_DEV_EVERYWHERE",
43185
43351
  RovoDevStandard = "ROVO_DEV_STANDARD",
43186
43352
  RovoDevStandardAndJira = "ROVO_DEV_STANDARD_AND_JIRA",
43187
43353
  RovoDevStandardAndJiraAndConfluence = "ROVO_DEV_STANDARD_AND_JIRA_AND_CONFLUENCE",
43354
+ RovoDevStandardAndJiraTrial = "ROVO_DEV_STANDARD_AND_JIRA_TRIAL",
43355
+ RovoDevStandardAndJiraTrialAndConfluence = "ROVO_DEV_STANDARD_AND_JIRA_TRIAL_AND_CONFLUENCE",
43188
43356
  RovoDevStandardTrial = "ROVO_DEV_STANDARD_TRIAL"
43189
43357
  }
43190
43358
  export declare type DevAiRovoAgent = {
@@ -43265,6 +43433,7 @@ export declare type DevAiRovoDevBulkSessionResult = {
43265
43433
  export declare type DevAiRovoDevCreatePullRequestInput = {
43266
43434
  branchName?: InputMaybe<Scalars['String']['input']>;
43267
43435
  codeChanges?: InputMaybe<Scalars['String']['input']>;
43436
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
43268
43437
  sessionAri: Scalars['ID']['input'];
43269
43438
  };
43270
43439
  export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
@@ -113607,6 +113776,7 @@ export declare type HelpCenterPageCreateInput = {
113607
113776
  clonePageAri?: InputMaybe<Scalars['String']['input']>;
113608
113777
  description?: InputMaybe<Scalars['String']['input']>;
113609
113778
  helpCenterAri: Scalars['String']['input'];
113779
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
113610
113780
  name: Scalars['String']['input'];
113611
113781
  pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
113612
113782
  };
@@ -113663,6 +113833,7 @@ export declare enum HelpCenterPageType {
113663
113833
  export declare type HelpCenterPageUpdateInput = {
113664
113834
  description?: InputMaybe<Scalars['String']['input']>;
113665
113835
  helpCenterPageAri: Scalars['String']['input'];
113836
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
113666
113837
  name: Scalars['String']['input'];
113667
113838
  pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
113668
113839
  };
@@ -132848,6 +133019,7 @@ export declare enum JiraPlaybookStepRunStatus {
132848
133019
  }
132849
133020
  export declare enum JiraPlaybookStepType {
132850
133021
  AutomationRule = "AUTOMATION_RULE",
133022
+ Checklist = "CHECKLIST",
132851
133023
  InstructionalRule = "INSTRUCTIONAL_RULE",
132852
133024
  Task = "TASK"
132853
133025
  }
@@ -145799,6 +145971,7 @@ export declare type JsmConversationEdge = {
145799
145971
  };
145800
145972
  export declare type JsmConversationHelpseekerSettings = {
145801
145973
  __typename?: 'JsmConversationHelpseekerSettings';
145974
+ activationState?: Maybe<JsmConversationActivationState>;
145802
145975
  availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
145803
145976
  };
145804
145977
  export declare type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
@@ -155738,6 +155911,7 @@ export declare enum MercuryEntityType {
155738
155911
  Comment = "COMMENT",
155739
155912
  FocusArea = "FOCUS_AREA",
155740
155913
  FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
155914
+ OrganizationStatusUpdate = "ORGANIZATION_STATUS_UPDATE",
155741
155915
  Program = "PROGRAM",
155742
155916
  ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
155743
155917
  Risk = "RISK",
@@ -158864,6 +159038,7 @@ export declare type MercuryPlan = Node & {
158864
159038
  focusAreaLinks: MercuryPlanFocusAreaLinks;
158865
159039
  id: Scalars['ID']['output'];
158866
159040
  isSystemManaged: Scalars['Boolean']['output'];
159041
+ memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
158867
159042
  organizationId: Scalars['ID']['output'];
158868
159043
  startDate: Scalars['Date']['output'];
158869
159044
  type: MercuryPlanType;
@@ -158894,6 +159069,7 @@ export declare type MercuryPlanFocusAreaLink = {
158894
159069
  __typename?: 'MercuryPlanFocusAreaLink';
158895
159070
  focusArea?: Maybe<MercuryFocusArea>;
158896
159071
  id: Scalars['ID']['output'];
159072
+ memberCountAllocations: Array<MercuryPlanMemberCountAllocationByPlanAndFocusArea>;
158897
159073
  };
158898
159074
  export declare type MercuryPlanFocusAreaLinkConnection = {
158899
159075
  __typename?: 'MercuryPlanFocusAreaLinkConnection';
@@ -158910,6 +159086,49 @@ export declare type MercuryPlanFocusAreaLinks = {
158910
159086
  __typename?: 'MercuryPlanFocusAreaLinks';
158911
159087
  focusAreaLinks: MercuryPlanFocusAreaLinkConnection;
158912
159088
  };
159089
+ export declare type MercuryPlanMemberCountAllocation = MercuryPlanMemberCountAllocationByPlanAndFocusArea & {
159090
+ __typename?: 'MercuryPlanMemberCountAllocation';
159091
+ fiscalMonth: Scalars['Int']['output'];
159092
+ fiscalYear: Scalars['Int']['output'];
159093
+ focusAreaId: Scalars['ID']['output'];
159094
+ id: Scalars['ID']['output'];
159095
+ memberCount: Scalars['BigDecimal']['output'];
159096
+ period: Scalars['Date']['output'];
159097
+ planId: Scalars['ID']['output'];
159098
+ };
159099
+ export declare type MercuryPlanMemberCountAllocationByPlanAndFocusArea = {
159100
+ fiscalMonth: Scalars['Int']['output'];
159101
+ fiscalYear: Scalars['Int']['output'];
159102
+ focusAreaId: Scalars['ID']['output'];
159103
+ memberCount: Scalars['BigDecimal']['output'];
159104
+ period: Scalars['Date']['output'];
159105
+ planId: Scalars['ID']['output'];
159106
+ };
159107
+ export declare type MercuryPlanMemberCountAllocationComputedByPlan = {
159108
+ __typename?: 'MercuryPlanMemberCountAllocationComputedByPlan';
159109
+ fiscalMonth: Scalars['Int']['output'];
159110
+ fiscalYear: Scalars['Int']['output'];
159111
+ memberCount: Scalars['BigDecimal']['output'];
159112
+ period: Scalars['Date']['output'];
159113
+ planId: Scalars['ID']['output'];
159114
+ };
159115
+ export declare type MercuryPlanMemberCountAllocationComputedByPlanAndFocusArea = MercuryPlanMemberCountAllocationByPlanAndFocusArea & {
159116
+ __typename?: 'MercuryPlanMemberCountAllocationComputedByPlanAndFocusArea';
159117
+ fiscalMonth: Scalars['Int']['output'];
159118
+ fiscalYear: Scalars['Int']['output'];
159119
+ focusAreaId: Scalars['ID']['output'];
159120
+ memberCount: Scalars['BigDecimal']['output'];
159121
+ period: Scalars['Date']['output'];
159122
+ planId: Scalars['ID']['output'];
159123
+ };
159124
+ export declare type MercuryPlanMemberCountAllocationInput = {
159125
+ memberCount: Scalars['BigDecimal']['input'];
159126
+ period: Scalars['Date']['input'];
159127
+ };
159128
+ export declare type MercuryPlanMemberCountAllocationToFocusAreaInput = {
159129
+ focusAreaId: Scalars['ID']['input'];
159130
+ memberCountAllocations: Array<MercuryPlanMemberCountAllocationInput>;
159131
+ };
158913
159132
  export declare enum MercuryPlanType {
158914
159133
  Baseline = "BASELINE",
158915
159134
  Draft = "DRAFT"
@@ -158918,6 +159137,7 @@ export declare type MercuryPlansMutationApi = {
158918
159137
  __typename?: 'MercuryPlansMutationApi';
158919
159138
  createDraftPlan?: Maybe<MercuryCreateDraftPlanPayload>;
158920
159139
  linkFocusAreasToPlan?: Maybe<MercuryLinkFocusAreasToPlanPayload>;
159140
+ setPlanMemberCountAllocations?: Maybe<MercurySetMemberCountAllocationsPayload>;
158921
159141
  unlinkFocusAreasFromPlan?: Maybe<MercuryUnlinkFocusAreasFromPlanPayload>;
158922
159142
  };
158923
159143
  export declare type MercuryPlansMutationApiCreateDraftPlanArgs = {
@@ -158926,6 +159146,9 @@ export declare type MercuryPlansMutationApiCreateDraftPlanArgs = {
158926
159146
  export declare type MercuryPlansMutationApiLinkFocusAreasToPlanArgs = {
158927
159147
  input: MercuryLinkFocusAreasToPlanInput;
158928
159148
  };
159149
+ export declare type MercuryPlansMutationApiSetPlanMemberCountAllocationsArgs = {
159150
+ input: MercurySetMemberCountAllocationsInput;
159151
+ };
158929
159152
  export declare type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
158930
159153
  input: MercuryUnlinkFocusAreasFromPlanInput;
158931
159154
  };
@@ -160253,6 +160476,17 @@ export declare type MercurySetGlobalPlanAuthorityOrgLevelPayload = Payload & {
160253
160476
  planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
160254
160477
  success: Scalars['Boolean']['output'];
160255
160478
  };
160479
+ export declare type MercurySetMemberCountAllocationsInput = {
160480
+ memberCountAllocations: Array<MercuryPlanMemberCountAllocationToFocusAreaInput>;
160481
+ planId: Scalars['ID']['input'];
160482
+ };
160483
+ export declare type MercurySetMemberCountAllocationsPayload = Payload & {
160484
+ __typename?: 'MercurySetMemberCountAllocationsPayload';
160485
+ errors?: Maybe<Array<MutationError>>;
160486
+ memberCountAllocationTotals?: Maybe<Array<MercuryPlanMemberCountAllocationComputedByPlan>>;
160487
+ memberCountAllocations?: Maybe<Array<MercuryPlanMemberCountAllocation>>;
160488
+ success: Scalars['Boolean']['output'];
160489
+ };
160256
160490
  export declare type MercurySetOrganizationCustomFieldInput = {
160257
160491
  coreField?: InputMaybe<MercuryCustomFieldInput>;
160258
160492
  customFieldDefinitionId: Scalars['ID']['input'];
@@ -162305,12 +162539,13 @@ export declare type Mutation = {
162305
162539
  agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
162306
162540
  agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
162307
162541
  agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
162542
+ agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
162308
162543
  agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
162309
162544
  agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
162310
162545
  agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
162311
162546
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
162312
162547
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
162313
- agentWorkspace_createWfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
162548
+ agentWorkspace_createWfoSummaryView?: Maybe<AgentWorkspaceCreateWfoSummaryViewPayload>;
162314
162549
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
162315
162550
  agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
162316
162551
  agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
@@ -162328,6 +162563,7 @@ export declare type Mutation = {
162328
162563
  agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
162329
162564
  agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
162330
162565
  agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
162566
+ agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
162331
162567
  agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
162332
162568
  agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
162333
162569
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
@@ -164145,6 +164381,9 @@ export declare type MutationAgentWorkspace_BulkUpsertDraftedRoutingTableEntriesA
164145
164381
  export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
164146
164382
  input: AgentWorkspaceCancelRoutingTableGenerationInput;
164147
164383
  };
164384
+ export declare type MutationAgentWorkspace_CancelSmartRoutingDryRunArgs = {
164385
+ input: AgentWorkspaceCancelSmartRoutingDryRunInput;
164386
+ };
164148
164387
  export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
164149
164388
  input: AgentWorkspaceCreateAndLinkTeamsInput;
164150
164389
  };
@@ -164216,6 +164455,9 @@ export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
164216
164455
  export declare type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
164217
164456
  input: AgentWorkspaceStartGenerateRoutingTableInputV2;
164218
164457
  };
164458
+ export declare type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
164459
+ input: AgentWorkspaceStartSmartRoutingDryRunInput;
164460
+ };
164219
164461
  export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
164220
164462
  input: AgentWorkspaceSubmitDraftedRoutingTableInput;
164221
164463
  };
@@ -172523,13 +172765,15 @@ export declare type Query = {
172523
172765
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
172524
172766
  agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
172525
172767
  agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
172768
+ agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
172526
172769
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
172527
172770
  agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
172528
172771
  agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
172529
172772
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
172530
172773
  agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
172531
172774
  agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
172532
- agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
172775
+ agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
172776
+ agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
172533
172777
  agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
172534
172778
  agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
172535
172779
  agent_sessionQuery?: Maybe<AgentSessionConnection>;
@@ -172545,6 +172789,7 @@ export declare type Query = {
172545
172789
  aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
172546
172790
  aiops_entityDetail?: Maybe<AiOpsEntityDetailResult>;
172547
172791
  aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
172792
+ aiops_incidentSuggestedResourcesAsync?: Maybe<AiOpsIncidentSuggestedResourcesResult>;
172548
172793
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
172549
172794
  aiops_incidentSuggestionAsync?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
172550
172795
  aiops_incidentTimelineIcc?: Maybe<AiOpsIncidentTimelineIccResponse>;
@@ -175669,6 +175914,7 @@ export declare type Query = {
175669
175914
  radar_aiConnectorById?: Maybe<RadarAiConnector>;
175670
175915
  radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
175671
175916
  radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
175917
+ radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
175672
175918
  radar_connectors?: Maybe<Array<RadarConnector>>;
175673
175919
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
175674
175920
  radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
@@ -176774,6 +177020,10 @@ export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
176774
177020
  export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
176775
177021
  projectAri: Scalars['ID']['input'];
176776
177022
  };
177023
+ export declare type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
177024
+ cloudId: Scalars['ID']['input'];
177025
+ projectKey: Scalars['String']['input'];
177026
+ };
176777
177027
  export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
176778
177028
  input: AgentWorkspaceTeamCapacitiesInput;
176779
177029
  };
@@ -176801,6 +177051,9 @@ export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
176801
177051
  export declare type QueryAgentWorkspace_WfoSummaryViewArgs = {
176802
177052
  input: AgentWorkspaceWfoSummaryViewQueryInput;
176803
177053
  };
177054
+ export declare type QueryAgentWorkspace_WfoSummaryViewByProjectKeyArgs = {
177055
+ input: AgentWorkspaceWfoSummaryViewByProjectKeyInput;
177056
+ };
176804
177057
  export declare type QueryAgentWorkspace_WorkloadJqlConfigArgs = {
176805
177058
  projectAri: Scalars['ID']['input'];
176806
177059
  };
@@ -176873,6 +177126,10 @@ export declare type QueryAiops_IncidentRelatedAlertsArgs = {
176873
177126
  cloudId: Scalars['ID']['input'];
176874
177127
  filter: AiOpsIncidentRelatedAlertsInput;
176875
177128
  };
177129
+ export declare type QueryAiops_IncidentSuggestedResourcesAsyncArgs = {
177130
+ cloudId: Scalars['ID']['input'];
177131
+ issueKeyOrId: Scalars['String']['input'];
177132
+ };
176876
177133
  export declare type QueryAiops_IncidentSuggestionArgs = {
176877
177134
  cloudId: Scalars['ID']['input'];
176878
177135
  issueKey: Scalars['String']['input'];
@@ -196729,6 +196986,10 @@ export declare type QueryRadar_AiConnectorsArgs = {
196729
196986
  export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
196730
196987
  cloudId: Scalars['ID']['input'];
196731
196988
  };
196989
+ export declare type QueryRadar_BenchmarksArgs = {
196990
+ cloudId: Scalars['ID']['input'];
196991
+ entityAri?: InputMaybe<Scalars['ID']['input']>;
196992
+ };
196732
196993
  export declare type QueryRadar_ConnectorsArgs = {
196733
196994
  cloudId: Scalars['ID']['input'];
196734
196995
  };
@@ -221760,6 +222021,7 @@ export declare type SpaViewModel = {
221760
222021
  isAnonymous?: Maybe<Scalars['Boolean']['output']>;
221761
222022
  isNewUser?: Maybe<Scalars['Boolean']['output']>;
221762
222023
  isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
222024
+ isWelcomeMessageCustomized?: Maybe<Scalars['Boolean']['output']>;
221763
222025
  resourceContexts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
221764
222026
  resourceKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
221765
222027
  showEditButton?: Maybe<Scalars['Boolean']['output']>;
@@ -227269,6 +227531,7 @@ export declare type TeamV2 = Node & {
227269
227531
  export declare type TeamV2GoalsArgs = {
227270
227532
  after?: InputMaybe<Scalars['String']['input']>;
227271
227533
  first?: Scalars['Int']['input'];
227534
+ scopeId: Scalars['ID']['input'];
227272
227535
  };
227273
227536
  export declare type TeamV2MembersArgs = {
227274
227537
  after?: InputMaybe<Scalars['String']['input']>;
@@ -227278,6 +227541,7 @@ export declare type TeamV2MembersArgs = {
227278
227541
  export declare type TeamV2ProjectsArgs = {
227279
227542
  after?: InputMaybe<Scalars['String']['input']>;
227280
227543
  first?: Scalars['Int']['input'];
227544
+ scopeId: Scalars['ID']['input'];
227281
227545
  };
227282
227546
  export declare type TeamWithMembershipSyncPayload = Payload & {
227283
227547
  __typename?: 'TeamWithMembershipSyncPayload';
@@ -235086,6 +235350,7 @@ export declare type TrelloMember = Node & {
235086
235350
  boardStars?: Maybe<TrelloMemberBoardStarConnection>;
235087
235351
  boards?: Maybe<TrelloMemberBoardConnection>;
235088
235352
  boardsV2?: Maybe<TrelloMemberBaseBoardConnection>;
235353
+ cards?: Maybe<TrelloCardConnection>;
235089
235354
  confirmed?: Maybe<Scalars['Boolean']['output']>;
235090
235355
  enterprise?: Maybe<TrelloEnterprise>;
235091
235356
  fullName?: Maybe<Scalars['String']['output']>;
@@ -235134,6 +235399,12 @@ export declare type TrelloMemberBoardsV2Args = {
235134
235399
  filter?: InputMaybe<TrelloMemberBoardFilter>;
235135
235400
  first?: InputMaybe<Scalars['Int']['input']>;
235136
235401
  };
235402
+ export declare type TrelloMemberCardsArgs = {
235403
+ after?: InputMaybe<Scalars['String']['input']>;
235404
+ filter?: InputMaybe<TrelloMemberCardsFilter>;
235405
+ first?: InputMaybe<Scalars['Int']['input']>;
235406
+ sort?: InputMaybe<TrelloMemberCardsSort>;
235407
+ };
235137
235408
  export declare type TrelloMemberNotificationsArgs = {
235138
235409
  after?: InputMaybe<Scalars['String']['input']>;
235139
235410
  filter?: InputMaybe<TrelloNotificationFilter>;
@@ -235229,6 +235500,30 @@ export declare type TrelloMemberBoardStarEdge = {
235229
235500
  objectId: Scalars['String']['output'];
235230
235501
  position: Scalars['Float']['output'];
235231
235502
  };
235503
+ export declare enum TrelloMemberCardsActiveSince {
235504
+ Day = "DAY",
235505
+ Month = "MONTH",
235506
+ Week = "WEEK",
235507
+ Year = "YEAR"
235508
+ }
235509
+ export declare enum TrelloMemberCardsDue {
235510
+ Day = "DAY",
235511
+ Month = "MONTH",
235512
+ None = "NONE",
235513
+ Overdue = "OVERDUE",
235514
+ Week = "WEEK"
235515
+ }
235516
+ export declare type TrelloMemberCardsFilter = {
235517
+ activeSince?: InputMaybe<TrelloMemberCardsActiveSince>;
235518
+ boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
235519
+ due?: InputMaybe<TrelloMemberCardsDue>;
235520
+ dueComplete?: InputMaybe<Scalars['Boolean']['input']>;
235521
+ search?: InputMaybe<Scalars['String']['input']>;
235522
+ };
235523
+ export declare enum TrelloMemberCardsSort {
235524
+ Board = "BOARD",
235525
+ Due = "DUE"
235526
+ }
235232
235527
  export declare type TrelloMemberConnection = {
235233
235528
  __typename?: 'TrelloMemberConnection';
235234
235529
  edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
@@ -235487,6 +235782,17 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
235487
235782
  card?: Maybe<TrelloActionCardEntity>;
235488
235783
  memberCreator?: Maybe<TrelloActionMemberEntity>;
235489
235784
  };
235785
+ export declare type TrelloMoveListInput = {
235786
+ boardId?: InputMaybe<Scalars['ID']['input']>;
235787
+ listId: Scalars['ID']['input'];
235788
+ position: TrelloPosition;
235789
+ };
235790
+ export declare type TrelloMoveListPayload = Payload & {
235791
+ __typename?: 'TrelloMoveListPayload';
235792
+ errors?: Maybe<Array<MutationError>>;
235793
+ list?: Maybe<TrelloList>;
235794
+ success: Scalars['Boolean']['output'];
235795
+ };
235490
235796
  export declare type TrelloMovePlannerCalendarEventInput = {
235491
235797
  sourceEvent: TrelloMovePlannerCalendarEventSourceOptions;
235492
235798
  targetPlannerCalendar: TrelloMovePlannerCalendarEventTargetOptions;
@@ -235569,6 +235875,7 @@ export declare type TrelloMutationApi = {
235569
235875
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
235570
235876
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
235571
235877
  moveCard?: Maybe<TrelloMoveCardPayload>;
235878
+ moveList?: Maybe<TrelloMoveListPayload>;
235572
235879
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
235573
235880
  pinCard?: Maybe<TrelloPinCardPayload>;
235574
235881
  proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
@@ -235823,6 +236130,9 @@ export declare type TrelloMutationApiMergeCardsArgs = {
235823
236130
  export declare type TrelloMutationApiMoveCardArgs = {
235824
236131
  input: TrelloMoveCardInput;
235825
236132
  };
236133
+ export declare type TrelloMutationApiMoveListArgs = {
236134
+ input: TrelloMoveListInput;
236135
+ };
235826
236136
  export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
235827
236137
  input: TrelloMovePlannerCalendarEventInput;
235828
236138
  };