@forge/cli-shared 8.23.0-next.2 → 8.23.0-next.4

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.
@@ -315,6 +315,10 @@ export declare enum AiOpsInvestigationStatus {
315
315
  InProgress = "IN_PROGRESS",
316
316
  New = "NEW"
317
317
  }
318
+ export declare enum AiOpsRcaMode {
319
+ Deep = "DEEP",
320
+ Fast = "FAST"
321
+ }
318
322
  export declare type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
319
323
  __typename?: 'AIOpsRelatedAlert';
320
324
  alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
@@ -372,7 +376,9 @@ export declare enum AiOpsRelatedAlertStatus {
372
376
  Snoozed = "SNOOZED"
373
377
  }
374
378
  export declare type AiOpsTriggerInvestigationInput = {
379
+ agentic?: InputMaybe<Scalars['Boolean']['input']>;
375
380
  inScopeServiceIds: Array<Scalars['ID']['input']>;
381
+ rcaMode?: InputMaybe<AiOpsRcaMode>;
376
382
  sourceEntityId: Scalars['ID']['input'];
377
383
  sourceEntityType: AiOpsInvestigationSourceEntityType;
378
384
  };
@@ -1970,6 +1976,7 @@ export declare type AvpMetricsConfigurationFilterInput = {
1970
1976
  dimension: Scalars['String']['input'];
1971
1977
  operands: Array<Scalars['String']['input']>;
1972
1978
  product: Scalars['String']['input'];
1979
+ withNullValue?: InputMaybe<Scalars['Boolean']['input']>;
1973
1980
  };
1974
1981
  export declare type AvpMetricsConfigurationInput = {
1975
1982
  dimensions?: InputMaybe<Array<AvpMetricsConfigurationDimensionInput>>;
@@ -1990,6 +1997,7 @@ export declare type AvpMetricsFilter = {
1990
1997
  dimension: Scalars['String']['output'];
1991
1998
  operands: Array<Scalars['String']['output']>;
1992
1999
  product: Scalars['String']['output'];
2000
+ withNullValue?: Maybe<Scalars['Boolean']['output']>;
1993
2001
  };
1994
2002
  export declare type AvpMoveCanvasElementInput = {
1995
2003
  dashboardAri: Scalars['ID']['input'];
@@ -2230,6 +2238,11 @@ export declare type AvpProductWorkspaceMapEntry = {
2230
2238
  product: Scalars['String']['input'];
2231
2239
  workspaceId: Scalars['ID']['input'];
2232
2240
  };
2241
+ export declare type AvpRecentDashboard = {
2242
+ __typename?: 'AVPRecentDashboard';
2243
+ dashboard: AvpDashboard;
2244
+ lastViewedByUserAt?: Maybe<Scalars['String']['output']>;
2245
+ };
2233
2246
  export declare enum AvpRefreshMethod {
2234
2247
  RefreshAuto = "REFRESH_AUTO",
2235
2248
  RefreshLoad = "REFRESH_LOAD",
@@ -7095,6 +7108,18 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
7095
7108
  teamAri?: Maybe<Scalars['ID']['output']>;
7096
7109
  teamName?: Maybe<Scalars['String']['output']>;
7097
7110
  };
7111
+ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7112
+ confidence?: InputMaybe<Scalars['Float']['input']>;
7113
+ description?: InputMaybe<Scalars['String']['input']>;
7114
+ serviceName?: InputMaybe<Scalars['String']['input']>;
7115
+ source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
7116
+ teamAri?: InputMaybe<Scalars['ID']['input']>;
7117
+ teamName?: InputMaybe<Scalars['String']['input']>;
7118
+ };
7119
+ export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
7120
+ Manual = "MANUAL",
7121
+ Rovo = "ROVO"
7122
+ }
7098
7123
  export declare type AgentWorkspaceEditShiftInput = {
7099
7124
  agentId: Scalars['ID']['input'];
7100
7125
  newEndTime: Scalars['DateTime']['input'];
@@ -7135,6 +7160,11 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7135
7160
  issueARI: Scalars['ID']['output'];
7136
7161
  recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7137
7162
  };
7163
+ export declare type AgentWorkspaceMutationError = {
7164
+ __typename?: 'AgentWorkspaceMutationError';
7165
+ code?: Maybe<Scalars['String']['output']>;
7166
+ message: Scalars['String']['output'];
7167
+ };
7138
7168
  export declare type AgentWorkspacePageInfo = {
7139
7169
  __typename?: 'AgentWorkspacePageInfo';
7140
7170
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -7324,6 +7354,12 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
7324
7354
  hasPreviousPage: Scalars['Boolean']['output'];
7325
7355
  startCursor?: Maybe<Scalars['String']['output']>;
7326
7356
  };
7357
+ export declare type AgentWorkspaceService = {
7358
+ __typename?: 'AgentWorkspaceService';
7359
+ description?: Maybe<Scalars['String']['output']>;
7360
+ id: Scalars['ID']['output'];
7361
+ name?: Maybe<Scalars['String']['output']>;
7362
+ };
7327
7363
  export declare type AgentWorkspaceServiceBucket = {
7328
7364
  __typename?: 'AgentWorkspaceServiceBucket';
7329
7365
  sampleTickets: Array<AgentWorkspaceTicketSample>;
@@ -7355,6 +7391,18 @@ export declare type AgentWorkspaceServiceClusteringResult = {
7355
7391
  totalClusters: Scalars['Int']['output'];
7356
7392
  totalTickets: Scalars['Int']['output'];
7357
7393
  };
7394
+ export declare type AgentWorkspaceServiceConnection = {
7395
+ __typename?: 'AgentWorkspaceServiceConnection';
7396
+ edges?: Maybe<Array<AgentWorkspaceServiceEdge>>;
7397
+ errors?: Maybe<Array<QueryError>>;
7398
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
7399
+ pageInfo: PageInfo;
7400
+ };
7401
+ export declare type AgentWorkspaceServiceEdge = {
7402
+ __typename?: 'AgentWorkspaceServiceEdge';
7403
+ cursor: Scalars['String']['output'];
7404
+ node: AgentWorkspaceService;
7405
+ };
7358
7406
  export declare type AgentWorkspaceSetDefaultCapacityInput = {
7359
7407
  cloudId: Scalars['ID']['input'];
7360
7408
  defaultCapacity: Scalars['Int']['input'];
@@ -7495,6 +7543,16 @@ export declare type AgentWorkspaceSkillCategoryEdge = {
7495
7543
  cursor: Scalars['String']['output'];
7496
7544
  node: AgentWorkspaceSkillCategory;
7497
7545
  };
7546
+ export declare type AgentWorkspaceSkillCategoryUpdateInput = {
7547
+ categoryId: Scalars['ID']['input'];
7548
+ description?: InputMaybe<Scalars['String']['input']>;
7549
+ name: Scalars['String']['input'];
7550
+ };
7551
+ export declare type AgentWorkspaceSkillCategoryUpdatePayload = {
7552
+ __typename?: 'AgentWorkspaceSkillCategoryUpdatePayload';
7553
+ errors?: Maybe<Array<MutationError>>;
7554
+ success: Scalars['Boolean']['output'];
7555
+ };
7498
7556
  export declare type AgentWorkspaceSkillConnection = {
7499
7557
  __typename?: 'AgentWorkspaceSkillConnection';
7500
7558
  edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
@@ -7525,6 +7583,19 @@ export declare type AgentWorkspaceSkillServiceMapping = {
7525
7583
  serviceId: Scalars['ID']['output'];
7526
7584
  skill: AgentWorkspaceSkill;
7527
7585
  };
7586
+ export declare type AgentWorkspaceSkillUpdateInput = {
7587
+ category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
7588
+ categoryId?: InputMaybe<Scalars['ID']['input']>;
7589
+ description?: InputMaybe<Scalars['String']['input']>;
7590
+ name?: InputMaybe<Scalars['String']['input']>;
7591
+ skillId: Scalars['ID']['input'];
7592
+ };
7593
+ export declare type AgentWorkspaceSkillUpdatePayload = {
7594
+ __typename?: 'AgentWorkspaceSkillUpdatePayload';
7595
+ errors?: Maybe<Array<MutationError>>;
7596
+ skill?: Maybe<AgentWorkspaceSkill>;
7597
+ success: Scalars['Boolean']['output'];
7598
+ };
7528
7599
  export declare type AgentWorkspaceSmartRoutingConfig = {
7529
7600
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
7530
7601
  enabled: Scalars['Boolean']['output'];
@@ -7566,6 +7637,12 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
7566
7637
  rowsWritten: Scalars['Int']['output'];
7567
7638
  teamsNewlyConnected: Scalars['Int']['output'];
7568
7639
  };
7640
+ export declare type AgentWorkspaceTeam = {
7641
+ __typename?: 'AgentWorkspaceTeam';
7642
+ team?: Maybe<TeamV2>;
7643
+ teamARI: Scalars['ID']['output'];
7644
+ teamId?: Maybe<Scalars['ID']['output']>;
7645
+ };
7569
7646
  export declare type AgentWorkspaceTeamCapacitiesInput = {
7570
7647
  cloudId: Scalars['ID']['input'];
7571
7648
  projectKey: Scalars['String']['input'];
@@ -7579,6 +7656,13 @@ export declare type AgentWorkspaceTeamCapacityEntry = {
7579
7656
  capacity: Scalars['Int']['input'];
7580
7657
  teamId: Scalars['ID']['input'];
7581
7658
  };
7659
+ export declare type AgentWorkspaceTeamConnection = {
7660
+ __typename?: 'AgentWorkspaceTeamConnection';
7661
+ edges?: Maybe<Array<AgentWorkspaceTeamEdge>>;
7662
+ errors?: Maybe<Array<QueryError>>;
7663
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceTeam>>>;
7664
+ pageInfo: PageInfo;
7665
+ };
7582
7666
  export declare type AgentWorkspaceTeamCount = {
7583
7667
  __typename?: 'AgentWorkspaceTeamCount';
7584
7668
  count: Scalars['Int']['output'];
@@ -7589,6 +7673,11 @@ export declare type AgentWorkspaceTeamCreationFailure = {
7589
7673
  groupAri: Scalars['ID']['output'];
7590
7674
  message: Scalars['String']['output'];
7591
7675
  };
7676
+ export declare type AgentWorkspaceTeamEdge = {
7677
+ __typename?: 'AgentWorkspaceTeamEdge';
7678
+ cursor: Scalars['String']['output'];
7679
+ node: AgentWorkspaceTeam;
7680
+ };
7592
7681
  export declare type AgentWorkspaceTeamLinkFailure = {
7593
7682
  __typename?: 'AgentWorkspaceTeamLinkFailure';
7594
7683
  message: Scalars['String']['output'];
@@ -7711,6 +7800,34 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
7711
7800
  smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
7712
7801
  success: Scalars['Boolean']['output'];
7713
7802
  };
7803
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
7804
+ included?: InputMaybe<Scalars['Boolean']['input']>;
7805
+ projectAri: Scalars['ID']['input'];
7806
+ row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
7807
+ serviceId: Scalars['ID']['input'];
7808
+ };
7809
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
7810
+ __typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
7811
+ entry: AgentWorkspaceDraftedRoutingTableEntry;
7812
+ errors?: Maybe<Array<AgentWorkspaceMutationError>>;
7813
+ };
7814
+ export declare type AgentWorkspaceUser = {
7815
+ __typename?: 'AgentWorkspaceUser';
7816
+ accountId: Scalars['ID']['output'];
7817
+ user?: Maybe<User>;
7818
+ };
7819
+ export declare type AgentWorkspaceUserConnection = {
7820
+ __typename?: 'AgentWorkspaceUserConnection';
7821
+ edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
7822
+ errors?: Maybe<Array<QueryError>>;
7823
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceUser>>>;
7824
+ pageInfo: PageInfo;
7825
+ };
7826
+ export declare type AgentWorkspaceUserEdge = {
7827
+ __typename?: 'AgentWorkspaceUserEdge';
7828
+ cursor: Scalars['String']['output'];
7829
+ node: AgentWorkspaceUser;
7830
+ };
7714
7831
  export declare type AiCoreApiCsvExportInput = {
7715
7832
  cloudId?: InputMaybe<Scalars['ID']['input']>;
7716
7833
  fromDate?: InputMaybe<Scalars['String']['input']>;
@@ -31005,6 +31122,16 @@ export declare type ConfluencePatchCalendarPayload = Payload & {
31005
31122
  errors?: Maybe<Array<MutationError>>;
31006
31123
  success: Scalars['Boolean']['output'];
31007
31124
  };
31125
+ export declare type ConfluencePatchSpaceSettingsInput = {
31126
+ contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
31127
+ id: Scalars['ID']['input'];
31128
+ };
31129
+ export declare type ConfluencePatchSpaceSettingsPayload = Payload & {
31130
+ __typename?: 'ConfluencePatchSpaceSettingsPayload';
31131
+ confluenceSpaceSettings?: Maybe<ConfluenceSpaceSettings>;
31132
+ errors?: Maybe<Array<MutationError>>;
31133
+ success: Scalars['Boolean']['output'];
31134
+ };
31008
31135
  export declare type ConfluencePdfExportDownloadLink = {
31009
31136
  __typename?: 'ConfluencePdfExportDownloadLink';
31010
31137
  link?: Maybe<Scalars['String']['output']>;
@@ -32801,6 +32928,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
32801
32928
  }
32802
32929
  export declare type ConfluenceSpaceSettings = {
32803
32930
  __typename?: 'ConfluenceSpaceSettings';
32931
+ contentMode?: Maybe<ConfluenceGraphQlContentMode>;
32804
32932
  editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
32805
32933
  isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
32806
32934
  routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -37856,6 +37984,7 @@ export declare type CustomerServiceAiIssueSource = {
37856
37984
  status?: Maybe<Scalars['String']['output']>;
37857
37985
  summary?: Maybe<Scalars['String']['output']>;
37858
37986
  updated?: Maybe<Scalars['String']['output']>;
37987
+ url?: Maybe<Scalars['String']['output']>;
37859
37988
  };
37860
37989
  export declare type CustomerServiceAiNoteSource = {
37861
37990
  __typename?: 'CustomerServiceAiNoteSource';
@@ -40038,6 +40167,13 @@ export declare type DevAiAutodevNextAssignedWorkstreamTaskStats = {
40038
40167
  needsReviewOverdue: Scalars['Int']['output'];
40039
40168
  needsReviewTotal: Scalars['Int']['output'];
40040
40169
  };
40170
+ export declare type DevAiAutodevNextAssociatedWorkstream = {
40171
+ __typename?: 'DevAiAutodevNextAssociatedWorkstream';
40172
+ findWorkMode: Scalars['ID']['output'];
40173
+ id: Scalars['ID']['output'];
40174
+ name?: Maybe<Scalars['String']['output']>;
40175
+ status: Scalars['ID']['output'];
40176
+ };
40041
40177
  export declare type DevAiAutodevNextCreateWorkstreamInput = {
40042
40178
  cloudId: Scalars['ID']['input'];
40043
40179
  findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
@@ -40072,6 +40208,17 @@ export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
40072
40208
  errors?: Maybe<Array<MutationError>>;
40073
40209
  success: Scalars['Boolean']['output'];
40074
40210
  };
40211
+ export declare type DevAiAutodevNextJiraProjectAvailabilityPayload = {
40212
+ __typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
40213
+ results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
40214
+ };
40215
+ export declare type DevAiAutodevNextJiraProjectAvailabilityResult = {
40216
+ __typename?: 'DevAiAutodevNextJiraProjectAvailabilityResult';
40217
+ associatedWorkstreams: Array<DevAiAutodevNextAssociatedWorkstream>;
40218
+ available: Scalars['Boolean']['output'];
40219
+ projectAri: Scalars['ID']['output'];
40220
+ status: Scalars['ID']['output'];
40221
+ };
40075
40222
  export declare type DevAiAutodevNextMemberConnection = {
40076
40223
  __typename?: 'DevAiAutodevNextMemberConnection';
40077
40224
  edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
@@ -43676,6 +43823,7 @@ export declare type EcosystemQuery = {
43676
43823
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
43677
43824
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
43678
43825
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
43826
+ siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
43679
43827
  unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
43680
43828
  unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
43681
43829
  userAccess?: Maybe<UserAccess>;
@@ -43764,6 +43912,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
43764
43912
  environmentId?: InputMaybe<Scalars['ID']['input']>;
43765
43913
  first?: InputMaybe<Scalars['Int']['input']>;
43766
43914
  };
43915
+ export declare type EcosystemQuerySiteEntitlementsArgs = {
43916
+ cloudId: Scalars['ID']['input'];
43917
+ };
43767
43918
  export declare type EcosystemQueryUnitsByInstallationIdArgs = {
43768
43919
  installationIds: Array<Scalars['ID']['input']>;
43769
43920
  };
@@ -43839,6 +43990,16 @@ export declare enum EcosystemRollingReleaseStatus {
43839
43990
  Terminated = "TERMINATED",
43840
43991
  TimedOut = "TIMED_OUT"
43841
43992
  }
43993
+ export declare type EcosystemSiteEntitlement = {
43994
+ __typename?: 'EcosystemSiteEntitlement';
43995
+ entitlementId: Scalars['String']['output'];
43996
+ productKey?: Maybe<Scalars['String']['output']>;
43997
+ status?: Maybe<Scalars['String']['output']>;
43998
+ };
43999
+ export declare type EcosystemSiteEntitlementsResult = {
44000
+ __typename?: 'EcosystemSiteEntitlementsResult';
44001
+ entitlements: Array<EcosystemSiteEntitlement>;
44002
+ };
43842
44003
  export declare type EcosystemSubscription = {
43843
44004
  __typename?: 'EcosystemSubscription';
43844
44005
  realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
@@ -132051,6 +132212,7 @@ export declare type JiraServiceManagementPortal = {
132051
132212
  projectKey: Scalars['String']['output'];
132052
132213
  };
132053
132214
  export declare enum JiraServiceManagementPractice {
132215
+ CaseManagement = "CASE_MANAGEMENT",
132054
132216
  ChangeManagement = "CHANGE_MANAGEMENT",
132055
132217
  DeveloperEscalation = "DEVELOPER_ESCALATION",
132056
132218
  IncidentManagement = "INCIDENT_MANAGEMENT",
@@ -138233,6 +138395,30 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
138233
138395
  Pending = "PENDING",
138234
138396
  Waiting = "WAITING"
138235
138397
  }
138398
+ export declare type JsmChannelsRovoAgent = {
138399
+ __typename?: 'JsmChannelsRovoAgent';
138400
+ agentAri: Scalars['ID']['output'];
138401
+ agentId: Scalars['ID']['output'];
138402
+ channels: Array<JsmChannelsRovoAgentChannel>;
138403
+ description?: Maybe<Scalars['String']['output']>;
138404
+ iconUrl?: Maybe<Scalars['String']['output']>;
138405
+ name: Scalars['String']['output'];
138406
+ };
138407
+ export declare type JsmChannelsRovoAgentChannel = {
138408
+ __typename?: 'JsmChannelsRovoAgentChannel';
138409
+ containerAri: Scalars['ID']['output'];
138410
+ isEnabled: Scalars['Boolean']['output'];
138411
+ type: JsmChannelsRovoAgentChannelType;
138412
+ };
138413
+ export declare enum JsmChannelsRovoAgentChannelType {
138414
+ HelpCenter = "HELP_CENTER",
138415
+ Portal = "PORTAL"
138416
+ }
138417
+ export declare type JsmChannelsRovoAgentsByProjectQueryPayload = {
138418
+ __typename?: 'JsmChannelsRovoAgentsByProjectQueryPayload';
138419
+ rovoAgents: Array<JsmChannelsRovoAgent>;
138420
+ };
138421
+ export declare type JsmChannelsRovoAgentsByProjectResult = JsmChannelsRovoAgentsByProjectQueryPayload | QueryError;
138236
138422
  export declare type JsmChannelsRovoServiceAgentConfig = {
138237
138423
  __typename?: 'JsmChannelsRovoServiceAgentConfig';
138238
138424
  isRovoServiceEnabled: Scalars['Boolean']['output'];
@@ -139639,6 +139825,7 @@ export declare enum KitsuneFieldType {
139639
139825
  Creator = "CREATOR",
139640
139826
  Custom = "CUSTOM",
139641
139827
  Customer = "CUSTOMER",
139828
+ Parent = "PARENT",
139642
139829
  Reporter = "REPORTER",
139643
139830
  SourceCategory = "SOURCE_CATEGORY"
139644
139831
  }
@@ -140131,6 +140318,7 @@ export declare type KitsuneView = Node & {
140131
140318
  __typename?: 'KitsuneView';
140132
140319
  config?: Maybe<KitsuneViewConfig>;
140133
140320
  description?: Maybe<Scalars['String']['output']>;
140321
+ entityType: KitsuneEntityType;
140134
140322
  id: Scalars['ID']['output'];
140135
140323
  name: Scalars['String']['output'];
140136
140324
  type: KitsuneViewType;
@@ -145023,7 +145211,7 @@ export declare type MarketplaceStoreCapabilityItem = {
145023
145211
  };
145024
145212
  export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
145025
145213
  __typename?: 'MarketplaceStoreCapabilitySection';
145026
- capabilities?: Maybe<MarketplaceStoreCapabilities>;
145214
+ capabilityGroup?: Maybe<MarketplaceStoreCapabilities>;
145027
145215
  description?: Maybe<Scalars['String']['output']>;
145028
145216
  key: MarketplaceStoreLayoutSectionKeys;
145029
145217
  title: Scalars['String']['output'];
@@ -153921,7 +154109,7 @@ export declare type MercuryUpdateViewNameInput = {
153921
154109
  };
153922
154110
  export declare type MercuryUpdateViewOwnerInput = {
153923
154111
  id: Scalars['ID']['input'];
153924
- ownerId: Scalars['String']['input'];
154112
+ owner: Scalars['String']['input'];
153925
154113
  };
153926
154114
  export declare type MercuryUpdateViewSettingsInput = {
153927
154115
  id: Scalars['ID']['input'];
@@ -154417,7 +154605,10 @@ export declare type Mutation = {
154417
154605
  agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
154418
154606
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154419
154607
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
154608
+ agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
154609
+ agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
154420
154610
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154611
+ agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
154421
154612
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
154422
154613
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
154423
154614
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
@@ -154680,6 +154871,7 @@ export declare type Mutation = {
154680
154871
  confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
154681
154872
  confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
154682
154873
  confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
154874
+ confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
154683
154875
  confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
154684
154876
  confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
154685
154877
  confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
@@ -156033,9 +156225,18 @@ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
156033
156225
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
156034
156226
  input: AgentWorkspaceUpdateScheduleInput;
156035
156227
  };
156228
+ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
156229
+ input: AgentWorkspaceSkillUpdateInput;
156230
+ };
156231
+ export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
156232
+ input: AgentWorkspaceSkillCategoryUpdateInput;
156233
+ };
156036
156234
  export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
156037
156235
  input: AgentWorkspaceUpdateSmartRoutingConfigInput;
156038
156236
  };
156237
+ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
156238
+ input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
156239
+ };
156039
156240
  export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
156040
156241
  input: AiCoreApiCsvExportInput;
156041
156242
  };
@@ -157024,6 +157225,10 @@ export declare type MutationConfluence_PatchCalendarArgs = {
157024
157225
  cloudId: Scalars['ID']['input'];
157025
157226
  input: ConfluencePatchCalendarInput;
157026
157227
  };
157228
+ export declare type MutationConfluence_PatchSpaceSettingsArgs = {
157229
+ cloudId: Scalars['ID']['input'];
157230
+ input: ConfluencePatchSpaceSettingsInput;
157231
+ };
157027
157232
  export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
157028
157233
  cloudId: Scalars['ID']['input'];
157029
157234
  input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
@@ -158879,6 +159084,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
158879
159084
  export declare type MutationKitsune_CreateViewArgs = {
158880
159085
  config?: InputMaybe<KitsuneViewConfigInput>;
158881
159086
  description?: InputMaybe<Scalars['String']['input']>;
159087
+ entityType?: InputMaybe<KitsuneEntityType>;
158882
159088
  name: Scalars['String']['input'];
158883
159089
  parentId?: InputMaybe<Scalars['ID']['input']>;
158884
159090
  spaceAri: Scalars['ID']['input'];
@@ -163333,6 +163539,8 @@ export declare type Query = {
163333
163539
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
163334
163540
  agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
163335
163541
  agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
163542
+ agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
163543
+ agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
163336
163544
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
163337
163545
  agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
163338
163546
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
@@ -163354,6 +163562,8 @@ export declare type Query = {
163354
163562
  agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
163355
163563
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
163356
163564
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
163565
+ agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
163566
+ agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
163357
163567
  agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
163358
163568
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
163359
163569
  agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
@@ -163365,6 +163575,7 @@ export declare type Query = {
163365
163575
  agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
163366
163576
  agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
163367
163577
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
163578
+ agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
163368
163579
  agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
163369
163580
  agent_sessionQuery?: Maybe<AgentSessionConnection>;
163370
163581
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
@@ -163529,7 +163740,7 @@ export declare type Query = {
163529
163740
  avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
163530
163741
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
163531
163742
  avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
163532
- avp_getRecentDashboards?: Maybe<Array<AvpDashboard>>;
163743
+ avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
163533
163744
  avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
163534
163745
  avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
163535
163746
  avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
@@ -163902,6 +164113,7 @@ export declare type Query = {
163902
164113
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
163903
164114
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
163904
164115
  devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
164116
+ devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
163905
164117
  devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
163906
164118
  devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
163907
164119
  devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
@@ -164146,6 +164358,7 @@ export declare type Query = {
164146
164358
  jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
164147
164359
  jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
164148
164360
  jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
164361
+ jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
164149
164362
  jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
164150
164363
  jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
164151
164364
  jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
@@ -164473,6 +164686,7 @@ export declare type Query = {
164473
164686
  stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
164474
164687
  stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
164475
164688
  stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
164689
+ stakeholderComms_getLatestIncidentUpdateStatus?: Maybe<StakeholderCommsLatestIncidentUpdateStatus>;
164476
164690
  stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
164477
164691
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
164478
164692
  stakeholderComms_getOpsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
@@ -165231,6 +165445,19 @@ export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
165231
165445
  export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
165232
165446
  input: AgentWorkspaceAgentRebalancingRecommendationsInput;
165233
165447
  };
165448
+ export declare type QueryAgentWorkspace_AgentUsersInProjectArgs = {
165449
+ after?: InputMaybe<Scalars['String']['input']>;
165450
+ first?: InputMaybe<Scalars['Int']['input']>;
165451
+ projectId: Scalars['ID']['input'];
165452
+ query?: InputMaybe<Scalars['String']['input']>;
165453
+ };
165454
+ export declare type QueryAgentWorkspace_AgentsMappedToSkillsInProjectArgs = {
165455
+ after?: InputMaybe<Scalars['String']['input']>;
165456
+ first?: InputMaybe<Scalars['Int']['input']>;
165457
+ projectId: Scalars['ID']['input'];
165458
+ query?: InputMaybe<Scalars['String']['input']>;
165459
+ skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165460
+ };
165234
165461
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
165235
165462
  after?: InputMaybe<Scalars['String']['input']>;
165236
165463
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -165334,6 +165561,19 @@ export declare type QueryAgentWorkspace_SchedulesArgs = {
165334
165561
  projectKey?: InputMaybe<Scalars['String']['input']>;
165335
165562
  searchQuery?: InputMaybe<Scalars['String']['input']>;
165336
165563
  };
165564
+ export declare type QueryAgentWorkspace_ServicesArgs = {
165565
+ after?: InputMaybe<Scalars['String']['input']>;
165566
+ cloudId: Scalars['ID']['input'];
165567
+ first?: InputMaybe<Scalars['Int']['input']>;
165568
+ query?: InputMaybe<Scalars['String']['input']>;
165569
+ };
165570
+ export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
165571
+ after?: InputMaybe<Scalars['String']['input']>;
165572
+ first?: InputMaybe<Scalars['Int']['input']>;
165573
+ projectId: Scalars['ID']['input'];
165574
+ query?: InputMaybe<Scalars['String']['input']>;
165575
+ skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165576
+ };
165337
165577
  export declare type QueryAgentWorkspace_ShiftEditBoundsArgs = {
165338
165578
  input: AgentWorkspaceShiftEditBoundsInput;
165339
165579
  };
@@ -165391,6 +165631,12 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
165391
165631
  input: AgentWorkspaceTeamSchedulesQueryInput;
165392
165632
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
165393
165633
  };
165634
+ export declare type QueryAgentWorkspace_TeamsConnectedToProjectArgs = {
165635
+ after?: InputMaybe<Scalars['String']['input']>;
165636
+ first?: InputMaybe<Scalars['Int']['input']>;
165637
+ projectId: Scalars['ID']['input'];
165638
+ query?: InputMaybe<Scalars['String']['input']>;
165639
+ };
165394
165640
  export declare type QueryAgent_SessionAssociationQueryArgs = {
165395
165641
  after?: InputMaybe<Scalars['String']['input']>;
165396
165642
  aqlQuery?: InputMaybe<Scalars['String']['input']>;
@@ -167898,6 +168144,10 @@ export declare type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
167898
168144
  statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
167899
168145
  workstreamId: Scalars['ID']['input'];
167900
168146
  };
168147
+ export declare type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
168148
+ cloudId: Scalars['ID']['input'];
168149
+ projectAris: Array<Scalars['ID']['input']>;
168150
+ };
167901
168151
  export declare type QueryDevai_AutodevNextMyWorkItemsArgs = {
167902
168152
  after?: InputMaybe<Scalars['String']['input']>;
167903
168153
  cloudId: Scalars['ID']['input'];
@@ -168848,6 +169098,9 @@ export declare type QueryJsmChannels_GetResolutionPlanGraphArgs = {
168848
169098
  jiraProjectAri: Scalars['ID']['input'];
168849
169099
  planID: Scalars['ID']['input'];
168850
169100
  };
169101
+ export declare type QueryJsmChannels_GetRovoAgentsByProjectArgs = {
169102
+ jiraProjectAri: Scalars['ID']['input'];
169103
+ };
168851
169104
  export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
168852
169105
  jiraProjectAri: Scalars['ID']['input'];
168853
169106
  ticketId: Scalars['ID']['input'];
@@ -170066,6 +170319,10 @@ export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
170066
170319
  cloudId?: InputMaybe<Scalars['String']['input']>;
170067
170320
  incidentTemplateId: Scalars['String']['input'];
170068
170321
  };
170322
+ export declare type QueryStakeholderComms_GetLatestIncidentUpdateStatusArgs = {
170323
+ cloudId?: InputMaybe<Scalars['String']['input']>;
170324
+ incidentId: Scalars['String']['input'];
170325
+ };
170069
170326
  export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
170070
170327
  cloudId?: InputMaybe<Scalars['String']['input']>;
170071
170328
  };
@@ -172816,6 +173073,7 @@ export declare enum Scope {
172816
173073
  DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
172817
173074
  DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
172818
173075
  DeleteInsightJpd = "DELETE_INSIGHT_JPD",
173076
+ DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
172819
173077
  DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
172820
173078
  DeleteJswSprint = "DELETE_JSW_SPRINT",
172821
173079
  DeleteOrganization = "DELETE_ORGANIZATION",
@@ -173035,6 +173293,7 @@ export declare enum Scope {
173035
173293
  ReadFeedbackView = "READ_FEEDBACK_VIEW",
173036
173294
  ReadHomeTwgCli = "READ_HOME_TWG_CLI",
173037
173295
  ReadInsightJpd = "READ_INSIGHT_JPD",
173296
+ ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
173038
173297
  ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
173039
173298
  ReadJiraUser = "READ_JIRA_USER",
173040
173299
  ReadJiraWork = "READ_JIRA_WORK",
@@ -173191,6 +173450,7 @@ export declare enum Scope {
173191
173450
  WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
173192
173451
  WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
173193
173452
  WriteInsightJpd = "WRITE_INSIGHT_JPD",
173453
+ WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
173194
173454
  WriteJiraWork = "WRITE_JIRA_WORK",
173195
173455
  WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
173196
173456
  WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
@@ -173603,6 +173863,7 @@ export declare type SearchItemConnection = {
173603
173863
  isCachedResult?: Maybe<Scalars['Boolean']['output']>;
173604
173864
  pageInfo: PageInfo;
173605
173865
  queryInfo?: Maybe<SearchQueryInfo>;
173866
+ scrapingMetadata?: Maybe<SearchScrapingMetadata>;
173606
173867
  searchSessionId?: Maybe<Scalars['String']['output']>;
173607
173868
  totalCount?: Maybe<Scalars['Int']['output']>;
173608
173869
  totalCounts: Array<SearchProductCount>;
@@ -174097,6 +174358,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
174097
174358
  subtype?: Maybe<Scalars['String']['output']>;
174098
174359
  tabs?: Maybe<Array<SearchResultGraphTab>>;
174099
174360
  title: Scalars['String']['output'];
174361
+ topReaction?: Maybe<SearchSlackReaction>;
174100
174362
  type: SearchResultType;
174101
174363
  url: Scalars['String']['output'];
174102
174364
  workspaceName?: Maybe<Scalars['String']['output']>;
@@ -174431,6 +174693,18 @@ export declare type SearchSalesforceFilters = {
174431
174693
  owners?: InputMaybe<Array<Scalars['String']['input']>>;
174432
174694
  stage?: InputMaybe<Array<Scalars['String']['input']>>;
174433
174695
  };
174696
+ export declare type SearchScrapingMetadata = {
174697
+ __typename?: 'SearchScrapingMetadata';
174698
+ queryIntelligenceResultJson?: Maybe<Scalars['String']['output']>;
174699
+ searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
174700
+ searcherErrors?: Maybe<Array<SearchError>>;
174701
+ };
174702
+ export declare type SearchSlackReaction = {
174703
+ __typename?: 'SearchSlackReaction';
174704
+ count: Scalars['Int']['output'];
174705
+ emojiName: Scalars['String']['output'];
174706
+ emojiUrl?: Maybe<Scalars['String']['output']>;
174707
+ };
174434
174708
  export declare type SearchSortInput = {
174435
174709
  field: Scalars['String']['input'];
174436
174710
  key?: InputMaybe<Scalars['String']['input']>;
@@ -194716,6 +194990,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
194716
194990
  };
194717
194991
  export declare type SpaceSettings = {
194718
194992
  __typename?: 'SpaceSettings';
194993
+ contentMode?: Maybe<Scalars['String']['output']>;
194719
194994
  contentStateSettings: ContentStateSettings;
194720
194995
  customHeaderAndFooter: SpaceSettingsMetadata;
194721
194996
  editor?: Maybe<EditorVersionsMetadataDto>;
@@ -196321,6 +196596,11 @@ export declare type StakeholderCommsComponentUpdateInput = {
196321
196596
  pageId: Scalars['String']['input'];
196322
196597
  type?: InputMaybe<StakeholderCommsComponentType>;
196323
196598
  };
196599
+ export declare enum StakeholderCommsComponentUpdateStatus {
196600
+ Completed = "COMPLETED",
196601
+ NotApplicable = "NOT_APPLICABLE",
196602
+ Pending = "PENDING"
196603
+ }
196324
196604
  export declare type StakeholderCommsComponentUptimeDailyAggregate = {
196325
196605
  __typename?: 'StakeholderCommsComponentUptimeDailyAggregate';
196326
196606
  componentId: Scalars['String']['output'];
@@ -196690,6 +196970,11 @@ export declare type StakeholderCommsJsmProductDetail = {
196690
196970
  productKey?: Maybe<Scalars['String']['output']>;
196691
196971
  skuId?: Maybe<Scalars['String']['output']>;
196692
196972
  };
196973
+ export declare type StakeholderCommsLatestIncidentUpdateStatus = {
196974
+ __typename?: 'StakeholderCommsLatestIncidentUpdateStatus';
196975
+ incidentId: Scalars['String']['output'];
196976
+ overallStatus?: Maybe<StakeholderCommsComponentUpdateStatus>;
196977
+ };
196693
196978
  export declare type StakeholderCommsLicenseLimit = {
196694
196979
  __typename?: 'StakeholderCommsLicenseLimit';
196695
196980
  availableLimit?: Maybe<Scalars['Int']['output']>;
@@ -207218,6 +207503,7 @@ export declare type TrelloMutationApi = {
207218
207503
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
207219
207504
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
207220
207505
  updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
207506
+ updateCheckItem?: Maybe<TrelloUpdateCheckItemPayload>;
207221
207507
  updateChecklistName?: Maybe<TrelloUpdateChecklistPayload>;
207222
207508
  updateChecklistPosition?: Maybe<TrelloUpdateChecklistPayload>;
207223
207509
  updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
@@ -207563,6 +207849,9 @@ export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArg
207563
207849
  export declare type TrelloMutationApiUpdateCardRoleArgs = {
207564
207850
  input: TrelloUpdateCardRoleInput;
207565
207851
  };
207852
+ export declare type TrelloMutationApiUpdateCheckItemArgs = {
207853
+ input: TrelloUpdateCheckItemInput;
207854
+ };
207566
207855
  export declare type TrelloMutationApiUpdateChecklistNameArgs = {
207567
207856
  input: TrelloUpdateChecklistNameInput;
207568
207857
  };
@@ -209541,6 +209830,21 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
209541
209830
  errors?: Maybe<Array<MutationError>>;
209542
209831
  success: Scalars['Boolean']['output'];
209543
209832
  };
209833
+ export declare type TrelloUpdateCheckItemInput = {
209834
+ checkItemId: Scalars['ID']['input'];
209835
+ checklistId?: InputMaybe<Scalars['ID']['input']>;
209836
+ due?: InputMaybe<TrelloCheckItemDueInfoInput>;
209837
+ name?: InputMaybe<Scalars['String']['input']>;
209838
+ position?: InputMaybe<TrelloPosition>;
209839
+ state?: InputMaybe<TrelloCheckItemState>;
209840
+ userId?: InputMaybe<Scalars['ID']['input']>;
209841
+ };
209842
+ export declare type TrelloUpdateCheckItemPayload = Payload & {
209843
+ __typename?: 'TrelloUpdateCheckItemPayload';
209844
+ checkItem?: Maybe<TrelloCheckItem>;
209845
+ errors?: Maybe<Array<MutationError>>;
209846
+ success: Scalars['Boolean']['output'];
209847
+ };
209544
209848
  export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
209545
209849
  __typename?: 'TrelloUpdateCheckItemStateOnCardAction';
209546
209850
  appCreator?: Maybe<TrelloAppCreator>;