@forge/cli-shared 5.5.3-next.1 → 5.5.3-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.
@@ -3223,6 +3223,19 @@ export declare type CompassAttentionItemQuery = {
3223
3223
  first?: InputMaybe<Scalars['Int']['input']>;
3224
3224
  };
3225
3225
  export declare type CompassAttentionItemQueryResult = CompassAttentionItemConnection | QueryError;
3226
+ export declare type CompassBooleanField = CompassField & {
3227
+ __typename?: 'CompassBooleanField';
3228
+ booleanValue?: Maybe<Scalars['Boolean']['output']>;
3229
+ definition?: Maybe<CompassFieldDefinition>;
3230
+ };
3231
+ export declare type CompassBooleanFieldDefinitionOptions = {
3232
+ __typename?: 'CompassBooleanFieldDefinitionOptions';
3233
+ booleanDefault: Scalars['Boolean']['output'];
3234
+ booleanValues?: Maybe<Array<Scalars['Boolean']['output']>>;
3235
+ };
3236
+ export declare type CompassBooleanFieldValueInput = {
3237
+ booleanValue: Scalars['Boolean']['input'];
3238
+ };
3226
3239
  export declare type CompassBuildEvent = CompassEvent & {
3227
3240
  __typename?: 'CompassBuildEvent';
3228
3241
  buildProperties: CompassBuildEventProperties;
@@ -5121,19 +5134,21 @@ export declare type CompassFieldDefinition = {
5121
5134
  options: CompassFieldDefinitionOptions;
5122
5135
  type: CompassFieldType;
5123
5136
  };
5124
- export declare type CompassFieldDefinitionOptions = CompassEnumFieldDefinitionOptions;
5137
+ export declare type CompassFieldDefinitionOptions = CompassBooleanFieldDefinitionOptions | CompassEnumFieldDefinitionOptions;
5125
5138
  export declare type CompassFieldDefinitions = {
5126
5139
  __typename?: 'CompassFieldDefinitions';
5127
5140
  definitions: Array<CompassFieldDefinition>;
5128
5141
  };
5129
5142
  export declare type CompassFieldDefinitionsResult = CompassFieldDefinitions | QueryError;
5130
5143
  export declare enum CompassFieldType {
5144
+ Boolean = "BOOLEAN",
5131
5145
  Date = "DATE",
5132
5146
  Enum = "ENUM",
5133
5147
  Number = "NUMBER",
5134
5148
  Text = "TEXT"
5135
5149
  }
5136
5150
  export declare type CompassFieldValueInput = {
5151
+ boolean?: InputMaybe<CompassBooleanFieldValueInput>;
5137
5152
  enum?: InputMaybe<CompassEnumFieldValueInput>;
5138
5153
  };
5139
5154
  export declare type CompassFilteredComponentsCount = {
@@ -17192,6 +17207,57 @@ export declare type DevAiGetSupportedReposArgs = {
17192
17207
  repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
17193
17208
  workspaceId: Scalars['ID']['input'];
17194
17209
  };
17210
+ export declare type DevAiAutodevLog = {
17211
+ id: Scalars['ID']['output'];
17212
+ status?: Maybe<DevAiAutodevLogStatus>;
17213
+ timestamp?: Maybe<Scalars['DateTime']['output']>;
17214
+ };
17215
+ export declare type DevAiAutodevLogConnection = {
17216
+ __typename?: 'DevAiAutodevLogConnection';
17217
+ edges?: Maybe<Array<Maybe<DevAiAutodevLogEdge>>>;
17218
+ pageInfo: PageInfo;
17219
+ };
17220
+ export declare type DevAiAutodevLogEdge = {
17221
+ __typename?: 'DevAiAutodevLogEdge';
17222
+ cursor: Scalars['String']['output'];
17223
+ node?: Maybe<DevAiAutodevLog>;
17224
+ };
17225
+ export declare type DevAiAutodevLogGroup = {
17226
+ __typename?: 'DevAiAutodevLogGroup';
17227
+ id: Scalars['ID']['output'];
17228
+ logs?: Maybe<DevAiAutodevLogConnection>;
17229
+ phase?: Maybe<DevAiAutodevLogGroupPhase>;
17230
+ startTime?: Maybe<Scalars['DateTime']['output']>;
17231
+ status?: Maybe<DevAiAutodevLogGroupStatus>;
17232
+ };
17233
+ export declare type DevAiAutodevLogGroupConnection = {
17234
+ __typename?: 'DevAiAutodevLogGroupConnection';
17235
+ edges?: Maybe<Array<Maybe<DevAiAutodevLogGroupEdge>>>;
17236
+ pageInfo: PageInfo;
17237
+ };
17238
+ export declare type DevAiAutodevLogGroupEdge = {
17239
+ __typename?: 'DevAiAutodevLogGroupEdge';
17240
+ cursor: Scalars['String']['output'];
17241
+ node?: Maybe<DevAiAutodevLogGroup>;
17242
+ };
17243
+ export declare enum DevAiAutodevLogGroupPhase {
17244
+ CodeGenerating = "CODE_GENERATING",
17245
+ CodeReview = "CODE_REVIEW",
17246
+ CodeReGenerating = "CODE_RE_GENERATING",
17247
+ PlanGenerating = "PLAN_GENERATING",
17248
+ PlanReview = "PLAN_REVIEW",
17249
+ PlanReGenerating = "PLAN_RE_GENERATING"
17250
+ }
17251
+ export declare enum DevAiAutodevLogGroupStatus {
17252
+ Completed = "COMPLETED",
17253
+ Failed = "FAILED",
17254
+ InProgress = "IN_PROGRESS"
17255
+ }
17256
+ export declare enum DevAiAutodevLogStatus {
17257
+ Completed = "COMPLETED",
17258
+ Failed = "FAILED",
17259
+ InProgress = "IN_PROGRESS"
17260
+ }
17195
17261
  export declare type DevAiAutofixConfiguration = {
17196
17262
  __typename?: 'DevAiAutofixConfiguration';
17197
17263
  autofixScans?: Maybe<DevAiAutofixScansConnection>;
@@ -17334,6 +17400,14 @@ export declare type DevAiCancelRunningAutofixScanInput = {
17334
17400
  repoUrl: Scalars['URL']['input'];
17335
17401
  workspaceId: Scalars['ID']['input'];
17336
17402
  };
17403
+ export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
17404
+ __typename?: 'DevAiGenericAutodevLog';
17405
+ attributes?: Maybe<Scalars['JSON']['output']>;
17406
+ id: Scalars['ID']['output'];
17407
+ kind?: Maybe<Scalars['String']['output']>;
17408
+ status?: Maybe<DevAiAutodevLogStatus>;
17409
+ timestamp?: Maybe<Scalars['DateTime']['output']>;
17410
+ };
17337
17411
  export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension & {
17338
17412
  __typename?: 'DevAiGenericMutationErrorExtension';
17339
17413
  errorType?: Maybe<Scalars['String']['output']>;
@@ -17362,6 +17436,13 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
17362
17436
  export declare type DevAiMutationsTriggerAutofixScanArgs = {
17363
17437
  input: DevAiTriggerAutofixScanInput;
17364
17438
  };
17439
+ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
17440
+ __typename?: 'DevAiPlaintextAutodevLog';
17441
+ id: Scalars['ID']['output'];
17442
+ message?: Maybe<Scalars['String']['output']>;
17443
+ status?: Maybe<DevAiAutodevLogStatus>;
17444
+ timestamp?: Maybe<Scalars['DateTime']['output']>;
17445
+ };
17365
17446
  export declare type DevAiRunAutofixScanInput = {
17366
17447
  repoUrl: Scalars['URL']['input'];
17367
17448
  restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28891,10 +28972,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
28891
28972
  lastModified?: InputMaybe<GraphStoreSortInput>;
28892
28973
  };
28893
28974
  export declare type GraphStoreFocusAreaHasProjectSortInput = {
28894
- createdAt?: InputMaybe<GraphStoreSortInput>;
28895
- fromAti?: InputMaybe<GraphStoreSortInput>;
28896
28975
  lastModified?: InputMaybe<GraphStoreSortInput>;
28897
- toAti?: InputMaybe<GraphStoreSortInput>;
28898
28976
  };
28899
28977
  export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
28900
28978
  __typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
@@ -33531,12 +33609,10 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
33531
33609
  };
33532
33610
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
33533
33611
  export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
33534
- export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & HasTotal & {
33612
+ export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
33535
33613
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
33536
33614
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
33537
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
33538
33615
  pageInfo: PageInfo;
33539
- totalCount?: Maybe<Scalars['Int']['output']>;
33540
33616
  };
33541
33617
  export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
33542
33618
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectEdge';
@@ -33546,12 +33622,10 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
33546
33622
  lastUpdated: Scalars['DateTime']['output'];
33547
33623
  node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectUnion>;
33548
33624
  };
33549
- export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & HasTotal & {
33625
+ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & {
33550
33626
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseConnection';
33551
33627
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseEdge>>>;
33552
- isExactCount?: Maybe<Scalars['Boolean']['output']>;
33553
33628
  pageInfo: PageInfo;
33554
- totalCount?: Maybe<Scalars['Int']['output']>;
33555
33629
  };
33556
33630
  export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
33557
33631
  __typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseEdge';
@@ -36458,21 +36532,27 @@ export declare type GrowthUnifiedProfileInput = {
36458
36532
  onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
36459
36533
  };
36460
36534
  export declare enum GrowthUnifiedProfileJtbd {
36535
+ AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
36461
36536
  Budgets = "BUDGETS",
36462
36537
  CdWrtng = "CD_WRTNG",
36538
+ CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
36539
+ ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
36463
36540
  EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
36464
36541
  ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
36465
36542
  ImproveWorkflow = "IMPROVE_WORKFLOW",
36466
36543
  LaunchCampaigns = "LAUNCH_CAMPAIGNS",
36467
36544
  ManageTasks = "MANAGE_TASKS",
36545
+ ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
36468
36546
  MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
36469
36547
  MarketingContent = "MARKETING_CONTENT",
36470
36548
  PlanAndManage = "PLAN_AND_MANAGE",
36471
36549
  PrioritizeWork = "PRIORITIZE_WORK",
36472
36550
  ProjectPlanning = "PROJECT_PLANNING",
36551
+ ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
36473
36552
  ProjectProgress = "PROJECT_PROGRESS",
36474
36553
  Stakeholders = "STAKEHOLDERS",
36475
36554
  StrategiesAndGoals = "STRATEGIES_AND_GOALS",
36555
+ SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
36476
36556
  TrackingRprtng = "TRACKING_RPRTNG",
36477
36557
  TrackBugs = "TRACK_BUGS",
36478
36558
  UseKanbanBoard = "USE_KANBAN_BOARD"
@@ -36911,6 +36991,7 @@ export declare type HelpCenterMutationApi = {
36911
36991
  deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
36912
36992
  deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
36913
36993
  updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
36994
+ updateHelpCenterPermissions?: Maybe<HelpCenterPermissionsPayload>;
36914
36995
  updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
36915
36996
  updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
36916
36997
  updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
@@ -36933,6 +37014,9 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
36933
37014
  export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
36934
37015
  input: HelpCenterUpdateInput;
36935
37016
  };
37017
+ export declare type HelpCenterMutationApiUpdateHelpCenterPermissionsArgs = {
37018
+ input: HelpCenterPermissionsInput;
37019
+ };
36936
37020
  export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
36937
37021
  input: HelpCenterAnnouncementInput;
36938
37022
  };
@@ -36962,8 +37046,19 @@ export declare type HelpCenterNameInput = {
36962
37046
  };
36963
37047
  export declare type HelpCenterPermissions = {
36964
37048
  __typename?: 'HelpCenterPermissions';
36965
- allowedGroups?: Maybe<Array<Scalars['String']['output']>>;
36966
- helpCenterAccessControl?: Maybe<HelpCenterAccessControlType>;
37049
+ accessControlType: HelpCenterAccessControlType;
37050
+ allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
37051
+ };
37052
+ export declare type HelpCenterPermissionsInput = {
37053
+ accessControlType: HelpCenterAccessControlType;
37054
+ addedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
37055
+ deletedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
37056
+ helpCenterAri: Scalars['String']['input'];
37057
+ };
37058
+ export declare type HelpCenterPermissionsPayload = Payload & {
37059
+ __typename?: 'HelpCenterPermissionsPayload';
37060
+ errors?: Maybe<Array<MutationError>>;
37061
+ success: Scalars['Boolean']['output'];
36967
37062
  };
36968
37063
  export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
36969
37064
  export declare type HelpCenterPortal = {
@@ -38652,7 +38747,6 @@ export declare type InvocationResponsePayload = {
38652
38747
  export declare type InvokeAuxEffectsInput = {
38653
38748
  contextIds: Array<Scalars['ID']['input']>;
38654
38749
  entryPoint?: InputMaybe<Scalars['String']['input']>;
38655
- extensionDetails?: InputMaybe<ExtensionDetailsInput>;
38656
38750
  extensionId?: InputMaybe<Scalars['ID']['input']>;
38657
38751
  payload: AuxEffectsInvocationPayload;
38658
38752
  };
@@ -38665,7 +38759,6 @@ export declare type InvokeAuxEffectsResponse = Payload & {
38665
38759
  export declare type InvokeExtensionInput = {
38666
38760
  contextIds: Array<Scalars['ID']['input']>;
38667
38761
  entryPoint?: InputMaybe<Scalars['String']['input']>;
38668
- extensionDetails?: InputMaybe<ExtensionDetailsInput>;
38669
38762
  extensionId?: InputMaybe<Scalars['ID']['input']>;
38670
38763
  payload: Scalars['JSON']['input'];
38671
38764
  schema?: InputMaybe<Scalars['String']['input']>;
@@ -39102,6 +39195,14 @@ export declare enum JiraActionType {
39102
39195
  CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
39103
39196
  }
39104
39197
  export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
39198
+ export declare type JiraActivityConfiguration = {
39199
+ __typename?: 'JiraActivityConfiguration';
39200
+ id: Scalars['ID']['output'];
39201
+ issueType?: Maybe<JiraIssueType>;
39202
+ name?: Maybe<Scalars['String']['output']>;
39203
+ project?: Maybe<JiraProject>;
39204
+ requestType?: Maybe<JiraServiceManagementRequestType>;
39205
+ };
39105
39206
  export declare type JiraAddFieldsToProjectInput = {
39106
39207
  cloudId: Scalars['ID']['input'];
39107
39208
  fieldIds: Array<Scalars['ID']['input']>;
@@ -39788,6 +39889,7 @@ export declare type JiraAutodevJob = {
39788
39889
  gitDiff?: Maybe<Scalars['String']['output']>;
39789
39890
  id: Scalars['ID']['output'];
39790
39891
  issueAri?: Maybe<Scalars['ID']['output']>;
39892
+ logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
39791
39893
  phase?: Maybe<JiraAutodevPhase>;
39792
39894
  plan?: Maybe<JiraAutodevPlan>;
39793
39895
  progressText?: Maybe<Scalars['String']['output']>;
@@ -40244,6 +40346,7 @@ export declare type JiraCalendar = {
40244
40346
  startDateField?: Maybe<JiraIssueField>;
40245
40347
  unscheduledIssues?: Maybe<JiraIssueConnection>;
40246
40348
  versions?: Maybe<JiraVersionConnection>;
40349
+ versionsV2?: Maybe<JiraScenarioVersionLikeConnection>;
40247
40350
  };
40248
40351
  export declare type JiraCalendarCrossProjectVersionsArgs = {
40249
40352
  after?: InputMaybe<Scalars['String']['input']>;
@@ -40299,6 +40402,13 @@ export declare type JiraCalendarVersionsArgs = {
40299
40402
  input?: InputMaybe<JiraCalendarVersionsInput>;
40300
40403
  last?: InputMaybe<Scalars['Int']['input']>;
40301
40404
  };
40405
+ export declare type JiraCalendarVersionsV2Args = {
40406
+ after?: InputMaybe<Scalars['String']['input']>;
40407
+ before?: InputMaybe<Scalars['String']['input']>;
40408
+ first?: InputMaybe<Scalars['Int']['input']>;
40409
+ input?: InputMaybe<JiraCalendarVersionsInput>;
40410
+ last?: InputMaybe<Scalars['Int']['input']>;
40411
+ };
40302
40412
  export declare type JiraCalendarCrossProjectVersionsInput = {
40303
40413
  activeWithin?: InputMaybe<JiraDateTimeWindow>;
40304
40414
  searchString?: InputMaybe<Scalars['String']['input']>;
@@ -41323,6 +41433,13 @@ export declare type JiraContainerNavigationQueryInput = {
41323
41433
  scopeId?: InputMaybe<Scalars['ID']['input']>;
41324
41434
  };
41325
41435
  export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
41436
+ export declare type JiraCreateActivityConfigurationInput = {
41437
+ id: Scalars['ID']['input'];
41438
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
41439
+ name: Scalars['String']['input'];
41440
+ projectId?: InputMaybe<Scalars['ID']['input']>;
41441
+ requestTypeId?: InputMaybe<Scalars['ID']['input']>;
41442
+ };
41326
41443
  export declare type JiraCreateAppNavigationItemInput = {
41327
41444
  appId: Scalars['ID']['input'];
41328
41445
  scopeId: Scalars['ID']['input'];
@@ -41418,6 +41535,7 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
41418
41535
  success: Scalars['Boolean']['output'];
41419
41536
  };
41420
41537
  export declare type JiraCreateJourneyConfigurationInput = {
41538
+ createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
41421
41539
  name: Scalars['String']['input'];
41422
41540
  parentIssue: JiraJourneyParentIssueInput;
41423
41541
  trigger: JiraJourneyTriggerInput;
@@ -41667,6 +41785,10 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
41667
41785
  type: Scalars['String']['output'];
41668
41786
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
41669
41787
  };
41788
+ export declare type JiraDateScenarioValueField = {
41789
+ __typename?: 'JiraDateScenarioValueField';
41790
+ date?: Maybe<Scalars['DateTime']['output']>;
41791
+ };
41670
41792
  export declare type JiraDateTimeFieldInput = {
41671
41793
  dateTime: JiraDateTimeInput;
41672
41794
  fieldId: Scalars['ID']['input'];
@@ -43304,6 +43426,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
43304
43426
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
43305
43427
  mediaReadToken?: Maybe<JiraMediaReadToken>;
43306
43428
  mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
43429
+ parentIssueField?: Maybe<JiraParentIssueField>;
43307
43430
  planScenarioValues?: Maybe<JiraScenarioIssueValues>;
43308
43431
  postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
43309
43432
  priorityField?: Maybe<JiraPriorityField>;
@@ -44457,6 +44580,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
44457
44580
  JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44458
44581
  JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
44459
44582
  JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
44583
+ JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44460
44584
  JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
44461
44585
  JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
44462
44586
  JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
@@ -44657,11 +44781,13 @@ export declare type JiraJqlHistoryEdge = {
44657
44781
  };
44658
44782
  export declare type JiraJourneyConfiguration = Node & {
44659
44783
  __typename?: 'JiraJourneyConfiguration';
44784
+ activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
44660
44785
  createdAt?: Maybe<Scalars['DateTime']['output']>;
44661
44786
  createdBy?: Maybe<User>;
44662
44787
  id: Scalars['ID']['output'];
44663
44788
  name?: Maybe<Scalars['String']['output']>;
44664
44789
  parentIssue?: Maybe<JiraJourneyParentIssue>;
44790
+ status?: Maybe<JiraJourneyStatus>;
44665
44791
  trigger?: Maybe<JiraJourneyTrigger>;
44666
44792
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
44667
44793
  updatedBy?: Maybe<User>;
@@ -44681,7 +44807,7 @@ export declare type JiraJourneyConfigurationEdge = {
44681
44807
  };
44682
44808
  export declare type JiraJourneyParentIssue = {
44683
44809
  __typename?: 'JiraJourneyParentIssue';
44684
- projectId: Scalars['ID']['output'];
44810
+ project?: Maybe<JiraProject>;
44685
44811
  value?: Maybe<JiraJourneyParentIssueValueType>;
44686
44812
  };
44687
44813
  export declare type JiraJourneyParentIssueInput = {
@@ -44693,6 +44819,12 @@ export declare enum JiraJourneyParentIssueType {
44693
44819
  Request = "REQUEST"
44694
44820
  }
44695
44821
  export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
44822
+ export declare enum JiraJourneyStatus {
44823
+ Archived = "ARCHIVED",
44824
+ Disabled = "DISABLED",
44825
+ Draft = "DRAFT",
44826
+ Published = "PUBLISHED"
44827
+ }
44696
44828
  export declare type JiraJourneyTrigger = {
44697
44829
  __typename?: 'JiraJourneyTrigger';
44698
44830
  type: JiraJourneyTriggerType;
@@ -45798,6 +45930,7 @@ export declare type JiraMutation = {
45798
45930
  moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
45799
45931
  moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
45800
45932
  orderFormatingRule?: Maybe<JiraOrderFormattingRulePayload>;
45933
+ publishJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45801
45934
  rankIssues?: Maybe<JiraRankMutationPayload>;
45802
45935
  rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
45803
45936
  removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
@@ -45841,6 +45974,8 @@ export declare type JiraMutation = {
45841
45974
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
45842
45975
  updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
45843
45976
  updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
45977
+ updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45978
+ updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45844
45979
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45845
45980
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
45846
45981
  updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
@@ -46090,6 +46225,10 @@ export declare type JiraMutationMoveJiraVersionToStartArgs = {
46090
46225
  export declare type JiraMutationOrderFormatingRuleArgs = {
46091
46226
  input: JiraOrderFormattingRuleInput;
46092
46227
  };
46228
+ export declare type JiraMutationPublishJiraJourneyConfigurationArgs = {
46229
+ cloudId: Scalars['ID']['input'];
46230
+ input: JiraPublishJourneyConfigurationInput;
46231
+ };
46093
46232
  export declare type JiraMutationRankIssuesArgs = {
46094
46233
  rankInput: JiraRankMutationInput;
46095
46234
  };
@@ -46236,6 +46375,14 @@ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
46236
46375
  export declare type JiraMutationUpdateIssueTypeFieldArgs = {
46237
46376
  input: JiraUpdateIssueTypeFieldInput;
46238
46377
  };
46378
+ export declare type JiraMutationUpdateJiraJourneyActivityConfigurationArgs = {
46379
+ cloudId: Scalars['ID']['input'];
46380
+ input: JiraUpdateJourneyActivityConfigurationInput;
46381
+ };
46382
+ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
46383
+ cloudId: Scalars['ID']['input'];
46384
+ input: JiraUpdateJourneyConfigurationInput;
46385
+ };
46239
46386
  export declare type JiraMutationUpdateJiraVersionArgs = {
46240
46387
  input: JiraVersionUpdateMutationInput;
46241
46388
  };
@@ -47180,6 +47327,7 @@ export declare type JiraPlan = Node & {
47180
47327
  id: Scalars['ID']['output'];
47181
47328
  isReadOnly?: Maybe<Scalars['Boolean']['output']>;
47182
47329
  lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
47330
+ owner?: Maybe<User>;
47183
47331
  planId?: Maybe<Scalars['Long']['output']>;
47184
47332
  planStatus?: Maybe<JiraPlanStatus>;
47185
47333
  planUrl?: Maybe<Scalars['URL']['output']>;
@@ -47349,6 +47497,7 @@ export declare type JiraProject = Node & {
47349
47497
  hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
47350
47498
  id: Scalars['ID']['output'];
47351
47499
  intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
47500
+ isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
47352
47501
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
47353
47502
  issueTypes?: Maybe<JiraIssueTypeConnection>;
47354
47503
  jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
@@ -47394,6 +47543,7 @@ export declare type JiraProject = Node & {
47394
47543
  versions?: Maybe<JiraVersionConnection>;
47395
47544
  versionsV2?: Maybe<JiraVersionConnectionResult>;
47396
47545
  virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
47546
+ virtualAgentLiveIntentsCount?: Maybe<VirtualAgentLiveIntentCountResponse>;
47397
47547
  webUrl?: Maybe<Scalars['URL']['output']>;
47398
47548
  };
47399
47549
  export declare type JiraProjectActionArgs = {
@@ -48078,6 +48228,10 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
48078
48228
  helpCenterId: Scalars['ID']['input'];
48079
48229
  helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
48080
48230
  };
48231
+ export declare type JiraPublishJourneyConfigurationInput = {
48232
+ id: Scalars['ID']['input'];
48233
+ version: Scalars['Long']['input'];
48234
+ };
48081
48235
  export declare type JiraPullRequestReviewer = {
48082
48236
  __typename?: 'JiraPullRequestReviewer';
48083
48237
  avatar?: Maybe<JiraAvatar>;
@@ -48230,6 +48384,7 @@ export declare type JiraQuery = {
48230
48384
  notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
48231
48385
  permission?: Maybe<JiraPermission>;
48232
48386
  permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
48387
+ planById?: Maybe<JiraPlan>;
48233
48388
  postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
48234
48389
  projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
48235
48390
  projectCleanupRecommendations?: Maybe<JiraProjectCleanupRecommendationConnection>;
@@ -48913,6 +49068,9 @@ export declare type JiraQueryPermissionSchemeGrantsArgs = {
48913
49068
  permissionKey?: InputMaybe<Scalars['String']['input']>;
48914
49069
  schemeId: Scalars['ID']['input'];
48915
49070
  };
49071
+ export declare type JiraQueryPlanByIdArgs = {
49072
+ id: Scalars['ID']['input'];
49073
+ };
48916
49074
  export declare type JiraQueryPostIncidentReviewLinksByIdsArgs = {
48917
49075
  ids: Array<Scalars['ID']['input']>;
48918
49076
  };
@@ -49761,6 +49919,41 @@ export declare enum JiraScenarioType {
49761
49919
  Deletedfromjira = "DELETEDFROMJIRA",
49762
49920
  Updated = "UPDATED"
49763
49921
  }
49922
+ export declare type JiraScenarioVersion = JiraScenarioVersionLike & Node & {
49923
+ __typename?: 'JiraScenarioVersion';
49924
+ crossProjectVersion?: Maybe<Scalars['String']['output']>;
49925
+ id: Scalars['ID']['output'];
49926
+ planScenarioValues?: Maybe<JiraVersionPlanScenarioValues>;
49927
+ };
49928
+ export declare type JiraScenarioVersionCrossProjectVersionArgs = {
49929
+ viewId?: InputMaybe<Scalars['ID']['input']>;
49930
+ };
49931
+ export declare type JiraScenarioVersionPlanScenarioValuesArgs = {
49932
+ viewId?: InputMaybe<Scalars['ID']['input']>;
49933
+ };
49934
+ export declare type JiraScenarioVersionLike = {
49935
+ crossProjectVersion?: Maybe<Scalars['String']['output']>;
49936
+ id: Scalars['ID']['output'];
49937
+ planScenarioValues?: Maybe<JiraVersionPlanScenarioValues>;
49938
+ };
49939
+ export declare type JiraScenarioVersionLikeCrossProjectVersionArgs = {
49940
+ viewId?: InputMaybe<Scalars['ID']['input']>;
49941
+ };
49942
+ export declare type JiraScenarioVersionLikePlanScenarioValuesArgs = {
49943
+ viewId?: InputMaybe<Scalars['ID']['input']>;
49944
+ };
49945
+ export declare type JiraScenarioVersionLikeConnection = {
49946
+ __typename?: 'JiraScenarioVersionLikeConnection';
49947
+ edges?: Maybe<Array<Maybe<JiraScenarioVersionLikeEdge>>>;
49948
+ errors?: Maybe<Array<QueryError>>;
49949
+ pageInfo: PageInfo;
49950
+ totalCount?: Maybe<Scalars['Int']['output']>;
49951
+ };
49952
+ export declare type JiraScenarioVersionLikeEdge = {
49953
+ __typename?: 'JiraScenarioVersionLikeEdge';
49954
+ cursor: Scalars['String']['output'];
49955
+ node?: Maybe<JiraScenarioVersionLike>;
49956
+ };
49764
49957
  export declare type JiraScheduleCalendarIssuePayload = Payload & {
49765
49958
  __typename?: 'JiraScheduleCalendarIssuePayload';
49766
49959
  errors?: Maybe<Array<MutationError>>;
@@ -52207,6 +52400,24 @@ export declare type JiraUpdateIssueTypeFieldInput = {
52207
52400
  id: Scalars['ID']['input'];
52208
52401
  operation: JiraIssueTypeFieldOperationInput;
52209
52402
  };
52403
+ export declare type JiraUpdateJourneyActivityConfigurationInput = {
52404
+ createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
52405
+ id: Scalars['ID']['input'];
52406
+ version: Scalars['Long']['input'];
52407
+ };
52408
+ export declare type JiraUpdateJourneyConfigurationInput = {
52409
+ id: Scalars['ID']['input'];
52410
+ name?: InputMaybe<Scalars['String']['input']>;
52411
+ parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
52412
+ trigger?: InputMaybe<JiraJourneyTriggerInput>;
52413
+ version: Scalars['Long']['input'];
52414
+ };
52415
+ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
52416
+ __typename?: 'JiraUpdateJourneyConfigurationPayload';
52417
+ errors?: Maybe<Array<MutationError>>;
52418
+ jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
52419
+ success: Scalars['Boolean']['output'];
52420
+ };
52210
52421
  export declare type JiraUpdateLabelsFieldInput = {
52211
52422
  id: Scalars['ID']['input'];
52212
52423
  operations: Array<JiraLabelsFieldOperationInput>;
@@ -52633,7 +52844,7 @@ export declare type JiraUserSegmentation = {
52633
52844
  role?: Maybe<Scalars['String']['output']>;
52634
52845
  teamType?: Maybe<Scalars['String']['output']>;
52635
52846
  };
52636
- export declare type JiraVersion = JiraSelectableValue & Node & {
52847
+ export declare type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node & {
52637
52848
  __typename?: 'JiraVersion';
52638
52849
  approvers?: Maybe<JiraVersionApproverConnection>;
52639
52850
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
@@ -52978,8 +53189,10 @@ export declare type JiraVersionPlanScenarioValues = {
52978
53189
  description?: Maybe<Scalars['String']['output']>;
52979
53190
  name?: Maybe<Scalars['String']['output']>;
52980
53191
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
53192
+ releaseDateValue?: Maybe<JiraDateScenarioValueField>;
52981
53193
  scenarioType?: Maybe<JiraScenarioType>;
52982
53194
  startDate?: Maybe<Scalars['DateTime']['output']>;
53195
+ startDateValue?: Maybe<JiraDateScenarioValueField>;
52983
53196
  };
52984
53197
  export declare type JiraVersionRelatedWork = {
52985
53198
  __typename?: 'JiraVersionRelatedWork';
@@ -53881,7 +54094,6 @@ export declare type JsmChatCreateConversationAnalyticsOutput = {
53881
54094
  status?: Maybe<Scalars['String']['output']>;
53882
54095
  };
53883
54096
  export declare type JsmChatCreateConversationInput = {
53884
- authorId: Scalars['String']['input'];
53885
54097
  channelExperienceId: JsmChatChannelExperienceId;
53886
54098
  conversationContextAri: Scalars['ID']['input'];
53887
54099
  isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
@@ -54624,6 +54836,17 @@ export declare type JswWorkingDaysConfig = {
54624
54836
  timeZoneEditModel?: Maybe<JswTimeZoneEditModel>;
54625
54837
  weekDays?: Maybe<JswWeekDaysConfig>;
54626
54838
  };
54839
+ export declare type KnowledgeBaseArticleCountError = {
54840
+ __typename?: 'KnowledgeBaseArticleCountError';
54841
+ container: Scalars['ID']['output'];
54842
+ extensions: Array<QueryErrorExtension>;
54843
+ message: Scalars['String']['output'];
54844
+ };
54845
+ export declare type KnowledgeBaseArticleCountSource = {
54846
+ __typename?: 'KnowledgeBaseArticleCountSource';
54847
+ container: Scalars['ID']['output'];
54848
+ count: Scalars['Int']['output'];
54849
+ };
54627
54850
  export declare type KnowledgeBaseLinkResponse = {
54628
54851
  __typename?: 'KnowledgeBaseLinkResponse';
54629
54852
  knowledgeBaseSource?: Maybe<KnowledgeBaseSource>;
@@ -54757,8 +54980,8 @@ export declare type KnowledgeDiscoveryAutoDefinition = {
54757
54980
  export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
54758
54981
  export declare type KnowledgeDiscoveryBookmark = {
54759
54982
  __typename?: 'KnowledgeDiscoveryBookmark';
54983
+ id: Scalars['ID']['output'];
54760
54984
  properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
54761
- url?: Maybe<Scalars['String']['output']>;
54762
54985
  };
54763
54986
  export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
54764
54987
  __typename?: 'KnowledgeDiscoveryBookmarkCollisionFailureMetadata';
@@ -54930,6 +55153,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
54930
55153
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
54931
55154
  deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
54932
55155
  updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
55156
+ updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
54933
55157
  };
54934
55158
  export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
54935
55159
  input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
@@ -54943,6 +55167,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
54943
55167
  export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
54944
55168
  input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
54945
55169
  };
55170
+ export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
55171
+ input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
55172
+ };
54946
55173
  export declare type KnowledgeDiscoveryPageInfo = {
54947
55174
  __typename?: 'KnowledgeDiscoveryPageInfo';
54948
55175
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -54960,6 +55187,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
54960
55187
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
54961
55188
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
54962
55189
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
55190
+ searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
54963
55191
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
54964
55192
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
54965
55193
  };
@@ -54982,7 +55210,6 @@ export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
54982
55210
  export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
54983
55211
  cloudId: Scalars['String']['input'];
54984
55212
  keyPhrase: Scalars['String']['input'];
54985
- workspaceId?: InputMaybe<Scalars['String']['input']>;
54986
55213
  };
54987
55214
  export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
54988
55215
  confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
@@ -55018,6 +55245,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
55018
55245
  relatedEntityType: KnowledgeDiscoveryEntityType;
55019
55246
  workspaceId?: InputMaybe<Scalars['String']['input']>;
55020
55247
  };
55248
+ export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
55249
+ orgId: Scalars['String']['input'];
55250
+ teamName: Scalars['String']['input'];
55251
+ workspaceId: Scalars['String']['input'];
55252
+ };
55021
55253
  export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
55022
55254
  locale: Scalars['String']['input'];
55023
55255
  query: Scalars['String']['input'];
@@ -55029,6 +55261,14 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
55029
55261
  workspaceId?: InputMaybe<Scalars['String']['input']>;
55030
55262
  };
55031
55263
  export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
55264
+ export declare type KnowledgeDiscoveryRelatedEntityAction = {
55265
+ action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
55266
+ relatedEntityId: Scalars['ID']['input'];
55267
+ };
55268
+ export declare enum KnowledgeDiscoveryRelatedEntityActionType {
55269
+ Delete = "DELETE",
55270
+ Persist = "PERSIST"
55271
+ }
55032
55272
  export declare type KnowledgeDiscoveryRelatedEntityConnection = {
55033
55273
  __typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
55034
55274
  nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
@@ -55047,6 +55287,11 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
55047
55287
  transformedQuery: Scalars['String']['output'];
55048
55288
  };
55049
55289
  export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
55290
+ export declare type KnowledgeDiscoveryTeam = {
55291
+ __typename?: 'KnowledgeDiscoveryTeam';
55292
+ id: Scalars['String']['output'];
55293
+ };
55294
+ export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
55050
55295
  export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
55051
55296
  __typename?: 'KnowledgeDiscoveryTopic';
55052
55297
  description: Scalars['String']['output'];
@@ -55080,6 +55325,19 @@ export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkPayload = Payload &
55080
55325
  errors?: Maybe<Array<MutationError>>;
55081
55326
  success: Scalars['Boolean']['output'];
55082
55327
  };
55328
+ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesInput = {
55329
+ actions?: InputMaybe<Array<InputMaybe<KnowledgeDiscoveryRelatedEntityAction>>>;
55330
+ cloudId?: InputMaybe<Scalars['String']['input']>;
55331
+ entity: Scalars['ID']['input'];
55332
+ entityType: KnowledgeDiscoveryEntityType;
55333
+ relatedEntityType: KnowledgeDiscoveryEntityType;
55334
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
55335
+ };
55336
+ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
55337
+ __typename?: 'KnowledgeDiscoveryUpdateRelatedEntitiesPayload';
55338
+ errors?: Maybe<Array<MutationError>>;
55339
+ success: Scalars['Boolean']['output'];
55340
+ };
55083
55341
  export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
55084
55342
  __typename?: 'KnowledgeDiscoveryUser';
55085
55343
  id: Scalars['ID']['output'];
@@ -55608,7 +55866,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
55608
55866
  versionNumber?: InputMaybe<Scalars['String']['input']>;
55609
55867
  };
55610
55868
  export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
55611
- appId?: InputMaybe<Scalars['ID']['input']>;
55869
+ appKey?: InputMaybe<Scalars['ID']['input']>;
55612
55870
  appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
55613
55871
  buildNumber: Scalars['ID']['input'];
55614
55872
  };
@@ -55635,6 +55893,10 @@ export declare type MarketplaceConsoleDeploymentInstruction = {
55635
55893
  body: Scalars['String']['output'];
55636
55894
  screenshots: MarketplaceConsoleListingScreenshot;
55637
55895
  };
55896
+ export declare type MarketplaceConsoleDeploymentInstructionInput = {
55897
+ body?: InputMaybe<Scalars['String']['input']>;
55898
+ screenshotImageUrl?: InputMaybe<Scalars['String']['input']>;
55899
+ };
55638
55900
  export declare type MarketplaceConsoleDevSpace = {
55639
55901
  __typename?: 'MarketplaceConsoleDevSpace';
55640
55902
  id: Scalars['ID']['output'];
@@ -55875,6 +56137,13 @@ export declare type MarketplaceConsoleLink = {
55875
56137
  title?: Maybe<Scalars['String']['output']>;
55876
56138
  type?: Maybe<Scalars['String']['output']>;
55877
56139
  };
56140
+ export declare type MarketplaceConsoleListingHighLightInput = {
56141
+ caption?: InputMaybe<Scalars['String']['input']>;
56142
+ screenshotUrl: Scalars['String']['input'];
56143
+ summary: Scalars['String']['input'];
56144
+ thumbnailUrl: Scalars['String']['input'];
56145
+ title: Scalars['String']['input'];
56146
+ };
55878
56147
  export declare type MarketplaceConsoleListingHighLights = {
55879
56148
  __typename?: 'MarketplaceConsoleListingHighLights';
55880
56149
  caption?: Maybe<Scalars['String']['output']>;
@@ -55887,6 +56156,51 @@ export declare type MarketplaceConsoleListingScreenshot = {
55887
56156
  caption?: Maybe<Scalars['String']['output']>;
55888
56157
  imageId: Scalars['String']['output'];
55889
56158
  };
56159
+ export declare type MarketplaceConsoleListingScreenshotInput = {
56160
+ caption?: InputMaybe<Scalars['String']['input']>;
56161
+ imageUrl: Scalars['String']['input'];
56162
+ };
56163
+ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
56164
+ appKey: Scalars['ID']['input'];
56165
+ appSoftwareId: Scalars['ID']['input'];
56166
+ appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
56167
+ binaryUrl?: InputMaybe<Scalars['String']['input']>;
56168
+ buildNumber: Scalars['ID']['input'];
56169
+ categories?: InputMaybe<Array<Scalars['String']['input']>>;
56170
+ communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
56171
+ compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
56172
+ dataCenterReviewIssueKey?: InputMaybe<Scalars['String']['input']>;
56173
+ deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
56174
+ documentationUrl?: InputMaybe<Scalars['String']['input']>;
56175
+ eulaUrl?: InputMaybe<Scalars['String']['input']>;
56176
+ forumsUrl?: InputMaybe<Scalars['String']['input']>;
56177
+ googleAnalytics4Id?: InputMaybe<Scalars['String']['input']>;
56178
+ googleAnalyticsId?: InputMaybe<Scalars['String']['input']>;
56179
+ heroImageUrl?: InputMaybe<Scalars['String']['input']>;
56180
+ highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
56181
+ isBeta?: InputMaybe<Scalars['Boolean']['input']>;
56182
+ isSupported?: InputMaybe<Scalars['Boolean']['input']>;
56183
+ issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
56184
+ keywords?: InputMaybe<Array<Scalars['String']['input']>>;
56185
+ learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
56186
+ licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
56187
+ logoUrl?: InputMaybe<Scalars['String']['input']>;
56188
+ moreDetails?: InputMaybe<Scalars['String']['input']>;
56189
+ name?: InputMaybe<Scalars['String']['input']>;
56190
+ paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
56191
+ privacyUrl?: InputMaybe<Scalars['String']['input']>;
56192
+ productId: Scalars['ID']['input'];
56193
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
56194
+ releaseSummary?: InputMaybe<Scalars['String']['input']>;
56195
+ screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
56196
+ segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
56197
+ sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
56198
+ storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
56199
+ summary?: InputMaybe<Scalars['String']['input']>;
56200
+ supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
56201
+ tagLine?: InputMaybe<Scalars['String']['input']>;
56202
+ youtubeId?: InputMaybe<Scalars['String']['input']>;
56203
+ };
55890
56204
  export declare type MarketplaceConsoleMutationApi = {
55891
56205
  __typename?: 'MarketplaceConsoleMutationApi';
55892
56206
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
@@ -55896,6 +56210,7 @@ export declare type MarketplaceConsoleMutationApi = {
55896
56210
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
55897
56211
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
55898
56212
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
56213
+ makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
55899
56214
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55900
56215
  };
55901
56216
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
@@ -55923,6 +56238,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
55923
56238
  editions: Array<MarketplaceConsoleEditionInput>;
55924
56239
  product: MarketplaceConsoleEditionsInput;
55925
56240
  };
56241
+ export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
56242
+ makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
56243
+ };
55926
56244
  export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
55927
56245
  url: Scalars['String']['input'];
55928
56246
  };
@@ -59266,6 +59584,7 @@ export declare type MutationKnowledgeBaseArgs = {
59266
59584
  cloudId: Scalars['ID']['input'];
59267
59585
  };
59268
59586
  export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
59587
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
59269
59588
  input: KnowledgeBaseSpacePermissionUpdateViewInput;
59270
59589
  };
59271
59590
  export declare type MutationMoveSprintDownArgs = {
@@ -61938,6 +62257,7 @@ export declare type Query = {
61938
62257
  devOpsServices?: Maybe<DevOpsServiceConnection>;
61939
62258
  devOpsServicesById?: Maybe<Array<DevOpsService>>;
61940
62259
  devOpsTools?: Maybe<DevOpsTools>;
62260
+ devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
61941
62261
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
61942
62262
  developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
61943
62263
  diagnostics?: Maybe<Scalars['JSON']['output']>;
@@ -62028,6 +62348,7 @@ export declare type Query = {
62028
62348
  pricings: ContentPlatformPricingSearchConnection;
62029
62349
  productListing?: Maybe<ProductListingResult>;
62030
62350
  productListings: Array<ProductListingResult>;
62351
+ radar_healthcheck: Scalars['String']['output'];
62031
62352
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
62032
62353
  releaseNotes: ContentPlatformReleaseNotesConnection;
62033
62354
  repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
@@ -63177,6 +63498,10 @@ export declare type QueryDevOpsServicesArgs = {
63177
63498
  export declare type QueryDevOpsServicesByIdArgs = {
63178
63499
  ids: Array<Scalars['ID']['input']>;
63179
63500
  };
63501
+ export declare type QueryDevai_AutodevJobLogGroupsArgs = {
63502
+ cloudId: Scalars['ID']['input'];
63503
+ jobId: Scalars['ID']['input'];
63504
+ };
63180
63505
  export declare type QueryDeveloperLogAccessArgs = {
63181
63506
  appId: Scalars['ID']['input'];
63182
63507
  contextIds: Array<Scalars['ID']['input']>;
@@ -63398,6 +63723,9 @@ export declare type QueryProductListingsArgs = {
63398
63723
  ids: Array<Scalars['ID']['input']>;
63399
63724
  locales?: InputMaybe<Array<Scalars['ID']['input']>>;
63400
63725
  };
63726
+ export declare type QueryRadar_HealthcheckArgs = {
63727
+ cloudId: Scalars['ID']['input'];
63728
+ };
63401
63729
  export declare type QueryReleaseNoteArgs = {
63402
63730
  id: Scalars['String']['input'];
63403
63731
  publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
@@ -66020,16 +66348,11 @@ export declare type ShepherdClassificationsConnection = {
66020
66348
  export declare type ShepherdClassificationsQueries = {
66021
66349
  __typename?: 'ShepherdClassificationsQueries';
66022
66350
  byResource?: Maybe<ShepherdClassificationsResult>;
66023
- bySpace?: Maybe<ShepherdClassificationsResult>;
66024
66351
  };
66025
66352
  export declare type ShepherdClassificationsQueriesByResourceArgs = {
66026
66353
  aris: Array<Scalars['ID']['input']>;
66027
66354
  workspaceId: Scalars['ID']['input'];
66028
66355
  };
66029
- export declare type ShepherdClassificationsQueriesBySpaceArgs = {
66030
- spaceAris: Array<Scalars['ID']['input']>;
66031
- workspaceId: Scalars['ID']['input'];
66032
- };
66033
66356
  export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
66034
66357
  export declare type ShepherdCreateAlertInput = {
66035
66358
  assignee?: InputMaybe<Scalars['ID']['input']>;
@@ -66388,6 +66711,7 @@ export declare type ShepherdMutation = {
66388
66711
  createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
66389
66712
  createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
66390
66713
  deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
66714
+ redaction?: Maybe<ShepherdRedactionMutations>;
66391
66715
  subscription?: Maybe<ShepherdSubscriptionMutations>;
66392
66716
  unlinkAlertResources?: Maybe<ShepherdUpdateAlertPayload>;
66393
66717
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
@@ -66486,6 +66810,50 @@ export declare enum ShepherdRateThresholdValue {
66486
66810
  Low = "LOW",
66487
66811
  Medium = "MEDIUM"
66488
66812
  }
66813
+ export declare type ShepherdRedactedContent = {
66814
+ __typename?: 'ShepherdRedactedContent';
66815
+ contentId: Scalars['ID']['output'];
66816
+ status: ShepherdRedactedContentStatus;
66817
+ };
66818
+ export declare enum ShepherdRedactedContentStatus {
66819
+ Redacted = "REDACTED",
66820
+ RedactionFailed = "REDACTION_FAILED",
66821
+ RedactionPending = "REDACTION_PENDING"
66822
+ }
66823
+ export declare type ShepherdRedaction = Node & {
66824
+ __typename?: 'ShepherdRedaction';
66825
+ createdOn: Scalars['DateTime']['output'];
66826
+ id: Scalars['ID']['output'];
66827
+ redactedContent: Array<ShepherdRedactedContent>;
66828
+ resource: Scalars['ID']['output'];
66829
+ status: ShepherdRedactionStatus;
66830
+ updatedOn?: Maybe<Scalars['DateTime']['output']>;
66831
+ };
66832
+ export declare type ShepherdRedactionInput = {
66833
+ alertId: Scalars['ID']['input'];
66834
+ redactions: Array<Scalars['ID']['input']>;
66835
+ removeHistory: Scalars['Boolean']['input'];
66836
+ timestamp: Scalars['String']['input'];
66837
+ };
66838
+ export declare type ShepherdRedactionMutations = {
66839
+ __typename?: 'ShepherdRedactionMutations';
66840
+ redact?: Maybe<ShepherdRedactionPayload>;
66841
+ };
66842
+ export declare type ShepherdRedactionMutationsRedactArgs = {
66843
+ input: ShepherdRedactionInput;
66844
+ };
66845
+ export declare type ShepherdRedactionPayload = Payload & {
66846
+ __typename?: 'ShepherdRedactionPayload';
66847
+ errors?: Maybe<Array<MutationError>>;
66848
+ node?: Maybe<ShepherdRedaction>;
66849
+ success: Scalars['Boolean']['output'];
66850
+ };
66851
+ export declare enum ShepherdRedactionStatus {
66852
+ Failed = "FAILED",
66853
+ PartiallyRedacted = "PARTIALLY_REDACTED",
66854
+ Pending = "PENDING",
66855
+ Redacted = "REDACTED"
66856
+ }
66489
66857
  export declare type ShepherdRelatedAlertType = {
66490
66858
  __typename?: 'ShepherdRelatedAlertType';
66491
66859
  product?: Maybe<ShepherdAtlassianProduct>;
@@ -69100,6 +69468,7 @@ export declare type TrelloBoardUpdated = {
69100
69468
  prefs?: Maybe<TrelloBoardPrefs>;
69101
69469
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
69102
69470
  url?: Maybe<Scalars['URL']['output']>;
69471
+ workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
69103
69472
  };
69104
69473
  export declare type TrelloBoardViewer = {
69105
69474
  __typename?: 'TrelloBoardViewer';
@@ -69122,6 +69491,11 @@ export declare type TrelloBoardViewerSidebar = {
69122
69491
  __typename?: 'TrelloBoardViewerSidebar';
69123
69492
  show?: Maybe<Scalars['Boolean']['output']>;
69124
69493
  };
69494
+ export declare type TrelloBoardWorkspaceUpdated = {
69495
+ __typename?: 'TrelloBoardWorkspaceUpdated';
69496
+ id?: Maybe<Scalars['ID']['output']>;
69497
+ objectId?: Maybe<Scalars['ID']['output']>;
69498
+ };
69125
69499
  export declare type TrelloCard = Node & {
69126
69500
  __typename?: 'TrelloCard';
69127
69501
  attachments?: Maybe<TrelloAttachmentConnection>;
@@ -69761,16 +70135,16 @@ export declare type TrelloPlannerCalendarEventsArgs = {
69761
70135
  export declare type TrelloPlannerCalendarAccount = Node & {
69762
70136
  __typename?: 'TrelloPlannerCalendarAccount';
69763
70137
  accountType: TrelloSupportedPlannerProviders;
69764
- allCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
69765
70138
  displayName: Scalars['String']['output'];
69766
70139
  enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
69767
70140
  id: Scalars['ID']['output'];
70141
+ providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
69768
70142
  };
69769
- export declare type TrelloPlannerCalendarAccountAllCalendarsArgs = {
70143
+ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
69770
70144
  after?: InputMaybe<Scalars['String']['input']>;
69771
70145
  first?: InputMaybe<Scalars['Int']['input']>;
69772
70146
  };
69773
- export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
70147
+ export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
69774
70148
  after?: InputMaybe<Scalars['String']['input']>;
69775
70149
  first?: InputMaybe<Scalars['Int']['input']>;
69776
70150
  };
@@ -69928,7 +70302,6 @@ export declare type TrelloProviderCalendarInterface = {
69928
70302
  };
69929
70303
  export declare type TrelloQueryApi = {
69930
70304
  __typename?: 'TrelloQueryApi';
69931
- allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
69932
70305
  board?: Maybe<TrelloBoard>;
69933
70306
  boardByShortLink?: Maybe<TrelloBoard>;
69934
70307
  card?: Maybe<TrelloCard>;
@@ -69939,17 +70312,13 @@ export declare type TrelloQueryApi = {
69939
70312
  list?: Maybe<TrelloList>;
69940
70313
  member?: Maybe<TrelloMember>;
69941
70314
  plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
70315
+ providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
69942
70316
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
69943
70317
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
69944
70318
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
69945
70319
  templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
69946
70320
  workspace?: Maybe<TrelloWorkspace>;
69947
70321
  };
69948
- export declare type TrelloQueryApiAllPlannerCalendarsByAccountIdArgs = {
69949
- after?: InputMaybe<Scalars['String']['input']>;
69950
- first?: InputMaybe<Scalars['Int']['input']>;
69951
- id: Scalars['ID']['input'];
69952
- };
69953
70322
  export declare type TrelloQueryApiBoardArgs = {
69954
70323
  id: Scalars['ID']['input'];
69955
70324
  };
@@ -69981,6 +70350,11 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
69981
70350
  first?: InputMaybe<Scalars['Int']['input']>;
69982
70351
  id: Scalars['ID']['input'];
69983
70352
  };
70353
+ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
70354
+ after?: InputMaybe<Scalars['String']['input']>;
70355
+ first?: InputMaybe<Scalars['Int']['input']>;
70356
+ id: Scalars['ID']['input'];
70357
+ };
69984
70358
  export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
69985
70359
  ids: Array<Scalars['ID']['input']>;
69986
70360
  };
@@ -71463,6 +71837,7 @@ export declare type VirtualAgentConfiguration = Node & {
71463
71837
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
71464
71838
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
71465
71839
  isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
71840
+ liveIntentsCount?: Maybe<Scalars['Int']['output']>;
71466
71841
  respondToQueries: Scalars['Boolean']['output'];
71467
71842
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
71468
71843
  virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
@@ -71748,6 +72123,11 @@ export declare type VirtualAgentJsmChatContext = {
71748
72123
  errorMessage?: Maybe<Scalars['String']['output']>;
71749
72124
  slackSetupLink?: Maybe<Scalars['String']['output']>;
71750
72125
  };
72126
+ export declare type VirtualAgentLiveIntentCountResponse = {
72127
+ __typename?: 'VirtualAgentLiveIntentCountResponse';
72128
+ containerId: Scalars['ID']['output'];
72129
+ liveIntentsCount: Scalars['Int']['output'];
72130
+ };
71751
72131
  export declare type VirtualAgentMutationApi = {
71752
72132
  __typename?: 'VirtualAgentMutationApi';
71753
72133
  createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
@@ -72257,6 +72637,11 @@ export declare enum WorkSuggestionsEnvironmentType {
72257
72637
  export declare type WorkSuggestionsInput = {
72258
72638
  targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
72259
72639
  };
72640
+ export declare type WorkSuggestionsIssueStatus = {
72641
+ __typename?: 'WorkSuggestionsIssueStatus';
72642
+ category?: Maybe<Scalars['String']['output']>;
72643
+ name?: Maybe<Scalars['String']['output']>;
72644
+ };
72260
72645
  export declare type WorkSuggestionsJiraAssignee = {
72261
72646
  __typename?: 'WorkSuggestionsJiraAssignee';
72262
72647
  name?: Maybe<Scalars['String']['output']>;
@@ -72459,8 +72844,10 @@ export declare type WorkSuggestionsStuckIssueTask = WorkSuggestionsPeriscopeTask
72459
72844
  __typename?: 'WorkSuggestionsStuckIssueTask';
72460
72845
  assignee?: Maybe<WorkSuggestionsJiraAssignee>;
72461
72846
  id: Scalars['String']['output'];
72847
+ issueKey?: Maybe<Scalars['String']['output']>;
72462
72848
  orderScore?: Maybe<WorkSuggestionsOrderScore>;
72463
72849
  priority?: Maybe<WorkSuggestionsPriority>;
72850
+ status?: Maybe<WorkSuggestionsIssueStatus>;
72464
72851
  stuckData?: Maybe<WorkSuggestionsStuckData>;
72465
72852
  title: Scalars['String']['output'];
72466
72853
  url: Scalars['String']['output'];