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

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
  };
@@ -2230,6 +2236,11 @@ export declare type AvpProductWorkspaceMapEntry = {
2230
2236
  product: Scalars['String']['input'];
2231
2237
  workspaceId: Scalars['ID']['input'];
2232
2238
  };
2239
+ export declare type AvpRecentDashboard = {
2240
+ __typename?: 'AVPRecentDashboard';
2241
+ dashboard: AvpDashboard;
2242
+ lastViewedByUserAt?: Maybe<Scalars['String']['output']>;
2243
+ };
2233
2244
  export declare enum AvpRefreshMethod {
2234
2245
  RefreshAuto = "REFRESH_AUTO",
2235
2246
  RefreshLoad = "REFRESH_LOAD",
@@ -7095,6 +7106,18 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
7095
7106
  teamAri?: Maybe<Scalars['ID']['output']>;
7096
7107
  teamName?: Maybe<Scalars['String']['output']>;
7097
7108
  };
7109
+ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7110
+ confidence?: InputMaybe<Scalars['Float']['input']>;
7111
+ description?: InputMaybe<Scalars['String']['input']>;
7112
+ serviceName?: InputMaybe<Scalars['String']['input']>;
7113
+ source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
7114
+ teamAri?: InputMaybe<Scalars['ID']['input']>;
7115
+ teamName?: InputMaybe<Scalars['String']['input']>;
7116
+ };
7117
+ export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
7118
+ Manual = "MANUAL",
7119
+ Rovo = "ROVO"
7120
+ }
7098
7121
  export declare type AgentWorkspaceEditShiftInput = {
7099
7122
  agentId: Scalars['ID']['input'];
7100
7123
  newEndTime: Scalars['DateTime']['input'];
@@ -7135,6 +7158,11 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7135
7158
  issueARI: Scalars['ID']['output'];
7136
7159
  recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7137
7160
  };
7161
+ export declare type AgentWorkspaceMutationError = {
7162
+ __typename?: 'AgentWorkspaceMutationError';
7163
+ code?: Maybe<Scalars['String']['output']>;
7164
+ message: Scalars['String']['output'];
7165
+ };
7138
7166
  export declare type AgentWorkspacePageInfo = {
7139
7167
  __typename?: 'AgentWorkspacePageInfo';
7140
7168
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -7324,6 +7352,12 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
7324
7352
  hasPreviousPage: Scalars['Boolean']['output'];
7325
7353
  startCursor?: Maybe<Scalars['String']['output']>;
7326
7354
  };
7355
+ export declare type AgentWorkspaceService = {
7356
+ __typename?: 'AgentWorkspaceService';
7357
+ description?: Maybe<Scalars['String']['output']>;
7358
+ id: Scalars['ID']['output'];
7359
+ name?: Maybe<Scalars['String']['output']>;
7360
+ };
7327
7361
  export declare type AgentWorkspaceServiceBucket = {
7328
7362
  __typename?: 'AgentWorkspaceServiceBucket';
7329
7363
  sampleTickets: Array<AgentWorkspaceTicketSample>;
@@ -7355,6 +7389,18 @@ export declare type AgentWorkspaceServiceClusteringResult = {
7355
7389
  totalClusters: Scalars['Int']['output'];
7356
7390
  totalTickets: Scalars['Int']['output'];
7357
7391
  };
7392
+ export declare type AgentWorkspaceServiceConnection = {
7393
+ __typename?: 'AgentWorkspaceServiceConnection';
7394
+ edges?: Maybe<Array<AgentWorkspaceServiceEdge>>;
7395
+ errors?: Maybe<Array<QueryError>>;
7396
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
7397
+ pageInfo: PageInfo;
7398
+ };
7399
+ export declare type AgentWorkspaceServiceEdge = {
7400
+ __typename?: 'AgentWorkspaceServiceEdge';
7401
+ cursor: Scalars['String']['output'];
7402
+ node: AgentWorkspaceService;
7403
+ };
7358
7404
  export declare type AgentWorkspaceSetDefaultCapacityInput = {
7359
7405
  cloudId: Scalars['ID']['input'];
7360
7406
  defaultCapacity: Scalars['Int']['input'];
@@ -7495,6 +7541,16 @@ export declare type AgentWorkspaceSkillCategoryEdge = {
7495
7541
  cursor: Scalars['String']['output'];
7496
7542
  node: AgentWorkspaceSkillCategory;
7497
7543
  };
7544
+ export declare type AgentWorkspaceSkillCategoryUpdateInput = {
7545
+ categoryId: Scalars['ID']['input'];
7546
+ description?: InputMaybe<Scalars['String']['input']>;
7547
+ name: Scalars['String']['input'];
7548
+ };
7549
+ export declare type AgentWorkspaceSkillCategoryUpdatePayload = {
7550
+ __typename?: 'AgentWorkspaceSkillCategoryUpdatePayload';
7551
+ errors?: Maybe<Array<MutationError>>;
7552
+ success: Scalars['Boolean']['output'];
7553
+ };
7498
7554
  export declare type AgentWorkspaceSkillConnection = {
7499
7555
  __typename?: 'AgentWorkspaceSkillConnection';
7500
7556
  edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
@@ -7525,6 +7581,19 @@ export declare type AgentWorkspaceSkillServiceMapping = {
7525
7581
  serviceId: Scalars['ID']['output'];
7526
7582
  skill: AgentWorkspaceSkill;
7527
7583
  };
7584
+ export declare type AgentWorkspaceSkillUpdateInput = {
7585
+ category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
7586
+ categoryId?: InputMaybe<Scalars['ID']['input']>;
7587
+ description?: InputMaybe<Scalars['String']['input']>;
7588
+ name?: InputMaybe<Scalars['String']['input']>;
7589
+ skillId: Scalars['ID']['input'];
7590
+ };
7591
+ export declare type AgentWorkspaceSkillUpdatePayload = {
7592
+ __typename?: 'AgentWorkspaceSkillUpdatePayload';
7593
+ errors?: Maybe<Array<MutationError>>;
7594
+ skill?: Maybe<AgentWorkspaceSkill>;
7595
+ success: Scalars['Boolean']['output'];
7596
+ };
7528
7597
  export declare type AgentWorkspaceSmartRoutingConfig = {
7529
7598
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
7530
7599
  enabled: Scalars['Boolean']['output'];
@@ -7566,6 +7635,12 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
7566
7635
  rowsWritten: Scalars['Int']['output'];
7567
7636
  teamsNewlyConnected: Scalars['Int']['output'];
7568
7637
  };
7638
+ export declare type AgentWorkspaceTeam = {
7639
+ __typename?: 'AgentWorkspaceTeam';
7640
+ team?: Maybe<TeamV2>;
7641
+ teamARI: Scalars['ID']['output'];
7642
+ teamId?: Maybe<Scalars['ID']['output']>;
7643
+ };
7569
7644
  export declare type AgentWorkspaceTeamCapacitiesInput = {
7570
7645
  cloudId: Scalars['ID']['input'];
7571
7646
  projectKey: Scalars['String']['input'];
@@ -7579,6 +7654,13 @@ export declare type AgentWorkspaceTeamCapacityEntry = {
7579
7654
  capacity: Scalars['Int']['input'];
7580
7655
  teamId: Scalars['ID']['input'];
7581
7656
  };
7657
+ export declare type AgentWorkspaceTeamConnection = {
7658
+ __typename?: 'AgentWorkspaceTeamConnection';
7659
+ edges?: Maybe<Array<AgentWorkspaceTeamEdge>>;
7660
+ errors?: Maybe<Array<QueryError>>;
7661
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceTeam>>>;
7662
+ pageInfo: PageInfo;
7663
+ };
7582
7664
  export declare type AgentWorkspaceTeamCount = {
7583
7665
  __typename?: 'AgentWorkspaceTeamCount';
7584
7666
  count: Scalars['Int']['output'];
@@ -7589,6 +7671,11 @@ export declare type AgentWorkspaceTeamCreationFailure = {
7589
7671
  groupAri: Scalars['ID']['output'];
7590
7672
  message: Scalars['String']['output'];
7591
7673
  };
7674
+ export declare type AgentWorkspaceTeamEdge = {
7675
+ __typename?: 'AgentWorkspaceTeamEdge';
7676
+ cursor: Scalars['String']['output'];
7677
+ node: AgentWorkspaceTeam;
7678
+ };
7592
7679
  export declare type AgentWorkspaceTeamLinkFailure = {
7593
7680
  __typename?: 'AgentWorkspaceTeamLinkFailure';
7594
7681
  message: Scalars['String']['output'];
@@ -7711,6 +7798,34 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
7711
7798
  smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
7712
7799
  success: Scalars['Boolean']['output'];
7713
7800
  };
7801
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
7802
+ included?: InputMaybe<Scalars['Boolean']['input']>;
7803
+ projectAri: Scalars['ID']['input'];
7804
+ row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
7805
+ serviceId: Scalars['ID']['input'];
7806
+ };
7807
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
7808
+ __typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
7809
+ entry: AgentWorkspaceDraftedRoutingTableEntry;
7810
+ errors?: Maybe<Array<AgentWorkspaceMutationError>>;
7811
+ };
7812
+ export declare type AgentWorkspaceUser = {
7813
+ __typename?: 'AgentWorkspaceUser';
7814
+ accountId: Scalars['ID']['output'];
7815
+ user?: Maybe<User>;
7816
+ };
7817
+ export declare type AgentWorkspaceUserConnection = {
7818
+ __typename?: 'AgentWorkspaceUserConnection';
7819
+ edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
7820
+ errors?: Maybe<Array<QueryError>>;
7821
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceUser>>>;
7822
+ pageInfo: PageInfo;
7823
+ };
7824
+ export declare type AgentWorkspaceUserEdge = {
7825
+ __typename?: 'AgentWorkspaceUserEdge';
7826
+ cursor: Scalars['String']['output'];
7827
+ node: AgentWorkspaceUser;
7828
+ };
7714
7829
  export declare type AiCoreApiCsvExportInput = {
7715
7830
  cloudId?: InputMaybe<Scalars['ID']['input']>;
7716
7831
  fromDate?: InputMaybe<Scalars['String']['input']>;
@@ -31005,6 +31120,16 @@ export declare type ConfluencePatchCalendarPayload = Payload & {
31005
31120
  errors?: Maybe<Array<MutationError>>;
31006
31121
  success: Scalars['Boolean']['output'];
31007
31122
  };
31123
+ export declare type ConfluencePatchSpaceSettingsInput = {
31124
+ contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
31125
+ id: Scalars['ID']['input'];
31126
+ };
31127
+ export declare type ConfluencePatchSpaceSettingsPayload = Payload & {
31128
+ __typename?: 'ConfluencePatchSpaceSettingsPayload';
31129
+ confluenceSpaceSettings?: Maybe<ConfluenceSpaceSettings>;
31130
+ errors?: Maybe<Array<MutationError>>;
31131
+ success: Scalars['Boolean']['output'];
31132
+ };
31008
31133
  export declare type ConfluencePdfExportDownloadLink = {
31009
31134
  __typename?: 'ConfluencePdfExportDownloadLink';
31010
31135
  link?: Maybe<Scalars['String']['output']>;
@@ -32801,6 +32926,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
32801
32926
  }
32802
32927
  export declare type ConfluenceSpaceSettings = {
32803
32928
  __typename?: 'ConfluenceSpaceSettings';
32929
+ contentMode?: Maybe<ConfluenceGraphQlContentMode>;
32804
32930
  editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
32805
32931
  isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
32806
32932
  routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -37856,6 +37982,7 @@ export declare type CustomerServiceAiIssueSource = {
37856
37982
  status?: Maybe<Scalars['String']['output']>;
37857
37983
  summary?: Maybe<Scalars['String']['output']>;
37858
37984
  updated?: Maybe<Scalars['String']['output']>;
37985
+ url?: Maybe<Scalars['String']['output']>;
37859
37986
  };
37860
37987
  export declare type CustomerServiceAiNoteSource = {
37861
37988
  __typename?: 'CustomerServiceAiNoteSource';
@@ -40038,6 +40165,13 @@ export declare type DevAiAutodevNextAssignedWorkstreamTaskStats = {
40038
40165
  needsReviewOverdue: Scalars['Int']['output'];
40039
40166
  needsReviewTotal: Scalars['Int']['output'];
40040
40167
  };
40168
+ export declare type DevAiAutodevNextAssociatedWorkstream = {
40169
+ __typename?: 'DevAiAutodevNextAssociatedWorkstream';
40170
+ findWorkMode: Scalars['ID']['output'];
40171
+ id: Scalars['ID']['output'];
40172
+ name?: Maybe<Scalars['String']['output']>;
40173
+ status: Scalars['ID']['output'];
40174
+ };
40041
40175
  export declare type DevAiAutodevNextCreateWorkstreamInput = {
40042
40176
  cloudId: Scalars['ID']['input'];
40043
40177
  findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
@@ -40072,6 +40206,17 @@ export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
40072
40206
  errors?: Maybe<Array<MutationError>>;
40073
40207
  success: Scalars['Boolean']['output'];
40074
40208
  };
40209
+ export declare type DevAiAutodevNextJiraProjectAvailabilityPayload = {
40210
+ __typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
40211
+ results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
40212
+ };
40213
+ export declare type DevAiAutodevNextJiraProjectAvailabilityResult = {
40214
+ __typename?: 'DevAiAutodevNextJiraProjectAvailabilityResult';
40215
+ associatedWorkstreams: Array<DevAiAutodevNextAssociatedWorkstream>;
40216
+ available: Scalars['Boolean']['output'];
40217
+ projectAri: Scalars['ID']['output'];
40218
+ status: Scalars['ID']['output'];
40219
+ };
40075
40220
  export declare type DevAiAutodevNextMemberConnection = {
40076
40221
  __typename?: 'DevAiAutodevNextMemberConnection';
40077
40222
  edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
@@ -43676,6 +43821,7 @@ export declare type EcosystemQuery = {
43676
43821
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
43677
43822
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
43678
43823
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
43824
+ siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
43679
43825
  unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
43680
43826
  unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
43681
43827
  userAccess?: Maybe<UserAccess>;
@@ -43764,6 +43910,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
43764
43910
  environmentId?: InputMaybe<Scalars['ID']['input']>;
43765
43911
  first?: InputMaybe<Scalars['Int']['input']>;
43766
43912
  };
43913
+ export declare type EcosystemQuerySiteEntitlementsArgs = {
43914
+ cloudId: Scalars['ID']['input'];
43915
+ };
43767
43916
  export declare type EcosystemQueryUnitsByInstallationIdArgs = {
43768
43917
  installationIds: Array<Scalars['ID']['input']>;
43769
43918
  };
@@ -43839,6 +43988,16 @@ export declare enum EcosystemRollingReleaseStatus {
43839
43988
  Terminated = "TERMINATED",
43840
43989
  TimedOut = "TIMED_OUT"
43841
43990
  }
43991
+ export declare type EcosystemSiteEntitlement = {
43992
+ __typename?: 'EcosystemSiteEntitlement';
43993
+ entitlementId: Scalars['String']['output'];
43994
+ productKey?: Maybe<Scalars['String']['output']>;
43995
+ status?: Maybe<Scalars['String']['output']>;
43996
+ };
43997
+ export declare type EcosystemSiteEntitlementsResult = {
43998
+ __typename?: 'EcosystemSiteEntitlementsResult';
43999
+ entitlements: Array<EcosystemSiteEntitlement>;
44000
+ };
43842
44001
  export declare type EcosystemSubscription = {
43843
44002
  __typename?: 'EcosystemSubscription';
43844
44003
  realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
@@ -138233,6 +138392,30 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
138233
138392
  Pending = "PENDING",
138234
138393
  Waiting = "WAITING"
138235
138394
  }
138395
+ export declare type JsmChannelsRovoAgent = {
138396
+ __typename?: 'JsmChannelsRovoAgent';
138397
+ agentAri: Scalars['ID']['output'];
138398
+ agentId: Scalars['ID']['output'];
138399
+ channels: Array<JsmChannelsRovoAgentChannel>;
138400
+ description?: Maybe<Scalars['String']['output']>;
138401
+ iconUrl?: Maybe<Scalars['String']['output']>;
138402
+ name: Scalars['String']['output'];
138403
+ };
138404
+ export declare type JsmChannelsRovoAgentChannel = {
138405
+ __typename?: 'JsmChannelsRovoAgentChannel';
138406
+ containerAri: Scalars['ID']['output'];
138407
+ isEnabled: Scalars['Boolean']['output'];
138408
+ type: JsmChannelsRovoAgentChannelType;
138409
+ };
138410
+ export declare enum JsmChannelsRovoAgentChannelType {
138411
+ HelpCenter = "HELP_CENTER",
138412
+ Portal = "PORTAL"
138413
+ }
138414
+ export declare type JsmChannelsRovoAgentsByProjectQueryPayload = {
138415
+ __typename?: 'JsmChannelsRovoAgentsByProjectQueryPayload';
138416
+ rovoAgents: Array<JsmChannelsRovoAgent>;
138417
+ };
138418
+ export declare type JsmChannelsRovoAgentsByProjectResult = JsmChannelsRovoAgentsByProjectQueryPayload | QueryError;
138236
138419
  export declare type JsmChannelsRovoServiceAgentConfig = {
138237
138420
  __typename?: 'JsmChannelsRovoServiceAgentConfig';
138238
138421
  isRovoServiceEnabled: Scalars['Boolean']['output'];
@@ -139639,6 +139822,7 @@ export declare enum KitsuneFieldType {
139639
139822
  Creator = "CREATOR",
139640
139823
  Custom = "CUSTOM",
139641
139824
  Customer = "CUSTOMER",
139825
+ Parent = "PARENT",
139642
139826
  Reporter = "REPORTER",
139643
139827
  SourceCategory = "SOURCE_CATEGORY"
139644
139828
  }
@@ -140131,6 +140315,7 @@ export declare type KitsuneView = Node & {
140131
140315
  __typename?: 'KitsuneView';
140132
140316
  config?: Maybe<KitsuneViewConfig>;
140133
140317
  description?: Maybe<Scalars['String']['output']>;
140318
+ entityType: KitsuneEntityType;
140134
140319
  id: Scalars['ID']['output'];
140135
140320
  name: Scalars['String']['output'];
140136
140321
  type: KitsuneViewType;
@@ -145023,7 +145208,7 @@ export declare type MarketplaceStoreCapabilityItem = {
145023
145208
  };
145024
145209
  export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
145025
145210
  __typename?: 'MarketplaceStoreCapabilitySection';
145026
- capabilities?: Maybe<MarketplaceStoreCapabilities>;
145211
+ capabilityGroup?: Maybe<MarketplaceStoreCapabilities>;
145027
145212
  description?: Maybe<Scalars['String']['output']>;
145028
145213
  key: MarketplaceStoreLayoutSectionKeys;
145029
145214
  title: Scalars['String']['output'];
@@ -153921,7 +154106,7 @@ export declare type MercuryUpdateViewNameInput = {
153921
154106
  };
153922
154107
  export declare type MercuryUpdateViewOwnerInput = {
153923
154108
  id: Scalars['ID']['input'];
153924
- ownerId: Scalars['String']['input'];
154109
+ owner: Scalars['String']['input'];
153925
154110
  };
153926
154111
  export declare type MercuryUpdateViewSettingsInput = {
153927
154112
  id: Scalars['ID']['input'];
@@ -154417,7 +154602,10 @@ export declare type Mutation = {
154417
154602
  agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
154418
154603
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154419
154604
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
154605
+ agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
154606
+ agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
154420
154607
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154608
+ agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
154421
154609
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
154422
154610
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
154423
154611
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
@@ -154680,6 +154868,7 @@ export declare type Mutation = {
154680
154868
  confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
154681
154869
  confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
154682
154870
  confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
154871
+ confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
154683
154872
  confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
154684
154873
  confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
154685
154874
  confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
@@ -156033,9 +156222,18 @@ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
156033
156222
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
156034
156223
  input: AgentWorkspaceUpdateScheduleInput;
156035
156224
  };
156225
+ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
156226
+ input: AgentWorkspaceSkillUpdateInput;
156227
+ };
156228
+ export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
156229
+ input: AgentWorkspaceSkillCategoryUpdateInput;
156230
+ };
156036
156231
  export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
156037
156232
  input: AgentWorkspaceUpdateSmartRoutingConfigInput;
156038
156233
  };
156234
+ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
156235
+ input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
156236
+ };
156039
156237
  export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
156040
156238
  input: AiCoreApiCsvExportInput;
156041
156239
  };
@@ -157024,6 +157222,10 @@ export declare type MutationConfluence_PatchCalendarArgs = {
157024
157222
  cloudId: Scalars['ID']['input'];
157025
157223
  input: ConfluencePatchCalendarInput;
157026
157224
  };
157225
+ export declare type MutationConfluence_PatchSpaceSettingsArgs = {
157226
+ cloudId: Scalars['ID']['input'];
157227
+ input: ConfluencePatchSpaceSettingsInput;
157228
+ };
157027
157229
  export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
157028
157230
  cloudId: Scalars['ID']['input'];
157029
157231
  input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
@@ -158879,6 +159081,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
158879
159081
  export declare type MutationKitsune_CreateViewArgs = {
158880
159082
  config?: InputMaybe<KitsuneViewConfigInput>;
158881
159083
  description?: InputMaybe<Scalars['String']['input']>;
159084
+ entityType?: InputMaybe<KitsuneEntityType>;
158882
159085
  name: Scalars['String']['input'];
158883
159086
  parentId?: InputMaybe<Scalars['ID']['input']>;
158884
159087
  spaceAri: Scalars['ID']['input'];
@@ -163333,6 +163536,8 @@ export declare type Query = {
163333
163536
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
163334
163537
  agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
163335
163538
  agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
163539
+ agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
163540
+ agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
163336
163541
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
163337
163542
  agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
163338
163543
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
@@ -163354,6 +163559,8 @@ export declare type Query = {
163354
163559
  agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
163355
163560
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
163356
163561
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
163562
+ agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
163563
+ agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
163357
163564
  agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
163358
163565
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
163359
163566
  agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
@@ -163365,6 +163572,7 @@ export declare type Query = {
163365
163572
  agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
163366
163573
  agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
163367
163574
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
163575
+ agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
163368
163576
  agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
163369
163577
  agent_sessionQuery?: Maybe<AgentSessionConnection>;
163370
163578
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
@@ -163529,7 +163737,7 @@ export declare type Query = {
163529
163737
  avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
163530
163738
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
163531
163739
  avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
163532
- avp_getRecentDashboards?: Maybe<Array<AvpDashboard>>;
163740
+ avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
163533
163741
  avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
163534
163742
  avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
163535
163743
  avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
@@ -163902,6 +164110,7 @@ export declare type Query = {
163902
164110
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
163903
164111
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
163904
164112
  devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
164113
+ devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
163905
164114
  devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
163906
164115
  devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
163907
164116
  devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
@@ -164146,6 +164355,7 @@ export declare type Query = {
164146
164355
  jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
164147
164356
  jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
164148
164357
  jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
164358
+ jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
164149
164359
  jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
164150
164360
  jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
164151
164361
  jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
@@ -164473,6 +164683,7 @@ export declare type Query = {
164473
164683
  stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
164474
164684
  stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
164475
164685
  stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
164686
+ stakeholderComms_getLatestIncidentUpdateStatus?: Maybe<StakeholderCommsLatestIncidentUpdateStatus>;
164476
164687
  stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
164477
164688
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
164478
164689
  stakeholderComms_getOpsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
@@ -165231,6 +165442,19 @@ export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
165231
165442
  export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
165232
165443
  input: AgentWorkspaceAgentRebalancingRecommendationsInput;
165233
165444
  };
165445
+ export declare type QueryAgentWorkspace_AgentUsersInProjectArgs = {
165446
+ after?: InputMaybe<Scalars['String']['input']>;
165447
+ first?: InputMaybe<Scalars['Int']['input']>;
165448
+ projectId: Scalars['ID']['input'];
165449
+ query?: InputMaybe<Scalars['String']['input']>;
165450
+ };
165451
+ export declare type QueryAgentWorkspace_AgentsMappedToSkillsInProjectArgs = {
165452
+ after?: InputMaybe<Scalars['String']['input']>;
165453
+ first?: InputMaybe<Scalars['Int']['input']>;
165454
+ projectId: Scalars['ID']['input'];
165455
+ query?: InputMaybe<Scalars['String']['input']>;
165456
+ skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165457
+ };
165234
165458
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
165235
165459
  after?: InputMaybe<Scalars['String']['input']>;
165236
165460
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -165334,6 +165558,19 @@ export declare type QueryAgentWorkspace_SchedulesArgs = {
165334
165558
  projectKey?: InputMaybe<Scalars['String']['input']>;
165335
165559
  searchQuery?: InputMaybe<Scalars['String']['input']>;
165336
165560
  };
165561
+ export declare type QueryAgentWorkspace_ServicesArgs = {
165562
+ after?: InputMaybe<Scalars['String']['input']>;
165563
+ cloudId: Scalars['ID']['input'];
165564
+ first?: InputMaybe<Scalars['Int']['input']>;
165565
+ query?: InputMaybe<Scalars['String']['input']>;
165566
+ };
165567
+ export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
165568
+ after?: InputMaybe<Scalars['String']['input']>;
165569
+ first?: InputMaybe<Scalars['Int']['input']>;
165570
+ projectId: Scalars['ID']['input'];
165571
+ query?: InputMaybe<Scalars['String']['input']>;
165572
+ skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165573
+ };
165337
165574
  export declare type QueryAgentWorkspace_ShiftEditBoundsArgs = {
165338
165575
  input: AgentWorkspaceShiftEditBoundsInput;
165339
165576
  };
@@ -165391,6 +165628,12 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
165391
165628
  input: AgentWorkspaceTeamSchedulesQueryInput;
165392
165629
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
165393
165630
  };
165631
+ export declare type QueryAgentWorkspace_TeamsConnectedToProjectArgs = {
165632
+ after?: InputMaybe<Scalars['String']['input']>;
165633
+ first?: InputMaybe<Scalars['Int']['input']>;
165634
+ projectId: Scalars['ID']['input'];
165635
+ query?: InputMaybe<Scalars['String']['input']>;
165636
+ };
165394
165637
  export declare type QueryAgent_SessionAssociationQueryArgs = {
165395
165638
  after?: InputMaybe<Scalars['String']['input']>;
165396
165639
  aqlQuery?: InputMaybe<Scalars['String']['input']>;
@@ -167898,6 +168141,10 @@ export declare type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
167898
168141
  statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
167899
168142
  workstreamId: Scalars['ID']['input'];
167900
168143
  };
168144
+ export declare type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
168145
+ cloudId: Scalars['ID']['input'];
168146
+ projectAris: Array<Scalars['ID']['input']>;
168147
+ };
167901
168148
  export declare type QueryDevai_AutodevNextMyWorkItemsArgs = {
167902
168149
  after?: InputMaybe<Scalars['String']['input']>;
167903
168150
  cloudId: Scalars['ID']['input'];
@@ -168848,6 +169095,9 @@ export declare type QueryJsmChannels_GetResolutionPlanGraphArgs = {
168848
169095
  jiraProjectAri: Scalars['ID']['input'];
168849
169096
  planID: Scalars['ID']['input'];
168850
169097
  };
169098
+ export declare type QueryJsmChannels_GetRovoAgentsByProjectArgs = {
169099
+ jiraProjectAri: Scalars['ID']['input'];
169100
+ };
168851
169101
  export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
168852
169102
  jiraProjectAri: Scalars['ID']['input'];
168853
169103
  ticketId: Scalars['ID']['input'];
@@ -170066,6 +170316,10 @@ export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
170066
170316
  cloudId?: InputMaybe<Scalars['String']['input']>;
170067
170317
  incidentTemplateId: Scalars['String']['input'];
170068
170318
  };
170319
+ export declare type QueryStakeholderComms_GetLatestIncidentUpdateStatusArgs = {
170320
+ cloudId?: InputMaybe<Scalars['String']['input']>;
170321
+ incidentId: Scalars['String']['input'];
170322
+ };
170069
170323
  export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
170070
170324
  cloudId?: InputMaybe<Scalars['String']['input']>;
170071
170325
  };
@@ -172816,6 +173070,7 @@ export declare enum Scope {
172816
173070
  DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
172817
173071
  DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
172818
173072
  DeleteInsightJpd = "DELETE_INSIGHT_JPD",
173073
+ DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
172819
173074
  DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
172820
173075
  DeleteJswSprint = "DELETE_JSW_SPRINT",
172821
173076
  DeleteOrganization = "DELETE_ORGANIZATION",
@@ -173035,6 +173290,7 @@ export declare enum Scope {
173035
173290
  ReadFeedbackView = "READ_FEEDBACK_VIEW",
173036
173291
  ReadHomeTwgCli = "READ_HOME_TWG_CLI",
173037
173292
  ReadInsightJpd = "READ_INSIGHT_JPD",
173293
+ ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
173038
173294
  ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
173039
173295
  ReadJiraUser = "READ_JIRA_USER",
173040
173296
  ReadJiraWork = "READ_JIRA_WORK",
@@ -173191,6 +173447,7 @@ export declare enum Scope {
173191
173447
  WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
173192
173448
  WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
173193
173449
  WriteInsightJpd = "WRITE_INSIGHT_JPD",
173450
+ WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
173194
173451
  WriteJiraWork = "WRITE_JIRA_WORK",
173195
173452
  WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
173196
173453
  WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
@@ -173603,6 +173860,7 @@ export declare type SearchItemConnection = {
173603
173860
  isCachedResult?: Maybe<Scalars['Boolean']['output']>;
173604
173861
  pageInfo: PageInfo;
173605
173862
  queryInfo?: Maybe<SearchQueryInfo>;
173863
+ scrapingMetadata?: Maybe<SearchScrapingMetadata>;
173606
173864
  searchSessionId?: Maybe<Scalars['String']['output']>;
173607
173865
  totalCount?: Maybe<Scalars['Int']['output']>;
173608
173866
  totalCounts: Array<SearchProductCount>;
@@ -174097,6 +174355,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
174097
174355
  subtype?: Maybe<Scalars['String']['output']>;
174098
174356
  tabs?: Maybe<Array<SearchResultGraphTab>>;
174099
174357
  title: Scalars['String']['output'];
174358
+ topReaction?: Maybe<SearchSlackReaction>;
174100
174359
  type: SearchResultType;
174101
174360
  url: Scalars['String']['output'];
174102
174361
  workspaceName?: Maybe<Scalars['String']['output']>;
@@ -174431,6 +174690,18 @@ export declare type SearchSalesforceFilters = {
174431
174690
  owners?: InputMaybe<Array<Scalars['String']['input']>>;
174432
174691
  stage?: InputMaybe<Array<Scalars['String']['input']>>;
174433
174692
  };
174693
+ export declare type SearchScrapingMetadata = {
174694
+ __typename?: 'SearchScrapingMetadata';
174695
+ queryIntelligenceResultJson?: Maybe<Scalars['String']['output']>;
174696
+ searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
174697
+ searcherErrors?: Maybe<Array<SearchError>>;
174698
+ };
174699
+ export declare type SearchSlackReaction = {
174700
+ __typename?: 'SearchSlackReaction';
174701
+ count: Scalars['Int']['output'];
174702
+ emojiName: Scalars['String']['output'];
174703
+ emojiUrl?: Maybe<Scalars['String']['output']>;
174704
+ };
174434
174705
  export declare type SearchSortInput = {
174435
174706
  field: Scalars['String']['input'];
174436
174707
  key?: InputMaybe<Scalars['String']['input']>;
@@ -194716,6 +194987,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
194716
194987
  };
194717
194988
  export declare type SpaceSettings = {
194718
194989
  __typename?: 'SpaceSettings';
194990
+ contentMode?: Maybe<Scalars['String']['output']>;
194719
194991
  contentStateSettings: ContentStateSettings;
194720
194992
  customHeaderAndFooter: SpaceSettingsMetadata;
194721
194993
  editor?: Maybe<EditorVersionsMetadataDto>;
@@ -196321,6 +196593,11 @@ export declare type StakeholderCommsComponentUpdateInput = {
196321
196593
  pageId: Scalars['String']['input'];
196322
196594
  type?: InputMaybe<StakeholderCommsComponentType>;
196323
196595
  };
196596
+ export declare enum StakeholderCommsComponentUpdateStatus {
196597
+ Completed = "COMPLETED",
196598
+ NotApplicable = "NOT_APPLICABLE",
196599
+ Pending = "PENDING"
196600
+ }
196324
196601
  export declare type StakeholderCommsComponentUptimeDailyAggregate = {
196325
196602
  __typename?: 'StakeholderCommsComponentUptimeDailyAggregate';
196326
196603
  componentId: Scalars['String']['output'];
@@ -196690,6 +196967,11 @@ export declare type StakeholderCommsJsmProductDetail = {
196690
196967
  productKey?: Maybe<Scalars['String']['output']>;
196691
196968
  skuId?: Maybe<Scalars['String']['output']>;
196692
196969
  };
196970
+ export declare type StakeholderCommsLatestIncidentUpdateStatus = {
196971
+ __typename?: 'StakeholderCommsLatestIncidentUpdateStatus';
196972
+ incidentId: Scalars['String']['output'];
196973
+ overallStatus?: Maybe<StakeholderCommsComponentUpdateStatus>;
196974
+ };
196693
196975
  export declare type StakeholderCommsLicenseLimit = {
196694
196976
  __typename?: 'StakeholderCommsLicenseLimit';
196695
196977
  availableLimit?: Maybe<Scalars['Int']['output']>;
@@ -207218,6 +207500,7 @@ export declare type TrelloMutationApi = {
207218
207500
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
207219
207501
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
207220
207502
  updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
207503
+ updateCheckItem?: Maybe<TrelloUpdateCheckItemPayload>;
207221
207504
  updateChecklistName?: Maybe<TrelloUpdateChecklistPayload>;
207222
207505
  updateChecklistPosition?: Maybe<TrelloUpdateChecklistPayload>;
207223
207506
  updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
@@ -207563,6 +207846,9 @@ export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArg
207563
207846
  export declare type TrelloMutationApiUpdateCardRoleArgs = {
207564
207847
  input: TrelloUpdateCardRoleInput;
207565
207848
  };
207849
+ export declare type TrelloMutationApiUpdateCheckItemArgs = {
207850
+ input: TrelloUpdateCheckItemInput;
207851
+ };
207566
207852
  export declare type TrelloMutationApiUpdateChecklistNameArgs = {
207567
207853
  input: TrelloUpdateChecklistNameInput;
207568
207854
  };
@@ -209541,6 +209827,21 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
209541
209827
  errors?: Maybe<Array<MutationError>>;
209542
209828
  success: Scalars['Boolean']['output'];
209543
209829
  };
209830
+ export declare type TrelloUpdateCheckItemInput = {
209831
+ checkItemId: Scalars['ID']['input'];
209832
+ checklistId?: InputMaybe<Scalars['ID']['input']>;
209833
+ due?: InputMaybe<TrelloCheckItemDueInfoInput>;
209834
+ name?: InputMaybe<Scalars['String']['input']>;
209835
+ position?: InputMaybe<TrelloPosition>;
209836
+ state?: InputMaybe<TrelloCheckItemState>;
209837
+ userId?: InputMaybe<Scalars['ID']['input']>;
209838
+ };
209839
+ export declare type TrelloUpdateCheckItemPayload = Payload & {
209840
+ __typename?: 'TrelloUpdateCheckItemPayload';
209841
+ checkItem?: Maybe<TrelloCheckItem>;
209842
+ errors?: Maybe<Array<MutationError>>;
209843
+ success: Scalars['Boolean']['output'];
209844
+ };
209544
209845
  export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
209545
209846
  __typename?: 'TrelloUpdateCheckItemStateOnCardAction';
209546
209847
  appCreator?: Maybe<TrelloAppCreator>;