@forge/cli-shared 9.4.1-next.5 → 9.4.1-next.6

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.
@@ -2115,6 +2115,7 @@ export type AvpCopyDashboardInput = {
2115
2115
  dashboardAri: Scalars['ID']['input'];
2116
2116
  description?: InputMaybe<Scalars['String']['input']>;
2117
2117
  integrationId?: InputMaybe<AvpIntegrationId>;
2118
+ title?: InputMaybe<Scalars['String']['input']>;
2118
2119
  };
2119
2120
  export type AvpCopyDashboardPayload = Payload & {
2120
2121
  __typename?: 'AVPCopyDashboardPayload';
@@ -2616,6 +2617,7 @@ export declare enum AvpIntegrationId {
2616
2617
  AssetsVertical = "ASSETS_VERTICAL",
2617
2618
  AtlassianAnalytics = "ATLASSIAN_ANALYTICS",
2618
2619
  JiraDashboards = "JIRA_DASHBOARDS",
2620
+ JiraSpaceDashboardsBusiness = "JIRA_SPACE_DASHBOARDS_BUSINESS",
2619
2621
  JiraSpaceDashboardsKanban = "JIRA_SPACE_DASHBOARDS_KANBAN",
2620
2622
  JiraSpaceDashboardsScrum = "JIRA_SPACE_DASHBOARDS_SCRUM",
2621
2623
  JiraSummaryPage = "JIRA_SUMMARY_PAGE",
@@ -6936,6 +6938,14 @@ export declare enum AgentStudioCreateAgentPermissionMode {
6936
6938
  NoOne = "NO_ONE",
6937
6939
  Selected = "SELECTED"
6938
6940
  }
6941
+ export type AgentStudioCreateAgentTriggerInput = {
6942
+ automationConfig?: InputMaybe<Scalars['JSON']['input']>;
6943
+ };
6944
+ export type AgentStudioCreateAgentTriggerPayload = {
6945
+ __typename?: 'AgentStudioCreateAgentTriggerPayload';
6946
+ errors?: Maybe<Array<Maybe<MutationError>>>;
6947
+ success?: Maybe<Scalars['Boolean']['output']>;
6948
+ };
6939
6949
  export type AgentStudioCreateBatchEvaluationJobInput = {
6940
6950
  agentId: Scalars['String']['input'];
6941
6951
  agentVersionId: Scalars['String']['input'];
@@ -16249,6 +16259,21 @@ export declare enum AssetsVerticalDepreciationRuleErrorCode {
16249
16259
  UsefulLifeYearsInvalid = "USEFUL_LIFE_YEARS_INVALID",
16250
16260
  ValidationFailed = "VALIDATION_FAILED"
16251
16261
  }
16262
+ export type AssetsVerticalDepreciationRuleHardwareFilterOption = {
16263
+ __typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOption';
16264
+ objSchema?: Maybe<AssetsSchema>;
16265
+ objType?: Maybe<AssetsObjectType>;
16266
+ };
16267
+ export type AssetsVerticalDepreciationRuleHardwareFilterOptionConnection = {
16268
+ __typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOptionConnection';
16269
+ edges: Array<AssetsVerticalDepreciationRuleHardwareFilterOptionEdge>;
16270
+ pageInfo: PageInfo;
16271
+ };
16272
+ export type AssetsVerticalDepreciationRuleHardwareFilterOptionEdge = {
16273
+ __typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOptionEdge';
16274
+ cursor: Scalars['String']['output'];
16275
+ node: AssetsVerticalDepreciationRuleHardwareFilterOption;
16276
+ };
16252
16277
  export type AssetsVerticalDepreciationRuleMutationErrorExtension = MutationErrorExtension & {
16253
16278
  __typename?: 'AssetsVerticalDepreciationRuleMutationErrorExtension';
16254
16279
  code?: Maybe<AssetsVerticalDepreciationRuleErrorCode>;
@@ -16374,6 +16399,21 @@ export type AssetsVerticalHardwareObjectsTotalCount = {
16374
16399
  totalCount?: Maybe<Scalars['Int']['output']>;
16375
16400
  };
16376
16401
  export type AssetsVerticalHardwareObjectsTotalCountResult = AssetsVerticalHardwareObjectsTotalCount | QueryError;
16402
+ export type AssetsVerticalHardwareParentFilterOption = {
16403
+ __typename?: 'AssetsVerticalHardwareParentFilterOption';
16404
+ objSchema?: Maybe<AssetsSchema>;
16405
+ parentObjectType?: Maybe<AssetsObjectType>;
16406
+ };
16407
+ export type AssetsVerticalHardwareParentFilterOptionConnection = {
16408
+ __typename?: 'AssetsVerticalHardwareParentFilterOptionConnection';
16409
+ edges: Array<AssetsVerticalHardwareParentFilterOptionEdge>;
16410
+ pageInfo: PageInfo;
16411
+ };
16412
+ export type AssetsVerticalHardwareParentFilterOptionEdge = {
16413
+ __typename?: 'AssetsVerticalHardwareParentFilterOptionEdge';
16414
+ cursor: Scalars['String']['output'];
16415
+ node: AssetsVerticalHardwareParentFilterOption;
16416
+ };
16377
16417
  export type AssetsVerticalInsightCard = {
16378
16418
  __typename?: 'AssetsVerticalInsightCard';
16379
16419
  category: Scalars['String']['output'];
@@ -19816,6 +19856,7 @@ export type CcpPricingPlanItem = {
19816
19856
  prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
19817
19857
  tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
19818
19858
  tiersMode?: Maybe<CcpTiersMode>;
19859
+ transformQuantity?: Maybe<CcpTransformQuantity>;
19819
19860
  usageUpdateCadence?: Maybe<CcpUsageUpdateCadence>;
19820
19861
  };
19821
19862
  export type CcpPricingPlanRelationship = {
@@ -20722,6 +20763,15 @@ export declare enum CcpTransactionAccountType {
20722
20763
  Partner = "PARTNER",
20723
20764
  UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
20724
20765
  }
20766
+ export type CcpTransformQuantity = {
20767
+ __typename?: 'CcpTransformQuantity';
20768
+ divideBy?: Maybe<Scalars['Int']['output']>;
20769
+ round?: Maybe<CcpTransformQuantityRound>;
20770
+ };
20771
+ export declare enum CcpTransformQuantityRound {
20772
+ Down = "DOWN",
20773
+ Up = "UP"
20774
+ }
20725
20775
  export type CcpTrial = CommerceTrial & {
20726
20776
  __typename?: 'CcpTrial';
20727
20777
  endBehaviour?: Maybe<CcpTrialEndBehaviour>;
@@ -20972,6 +21022,7 @@ export type ChannelPlatformChatEntry = {
20972
21022
  chatStatus: ChannelPlatformChatStatus;
20973
21023
  initialConversationId: Scalars['String']['output'];
20974
21024
  issueId: Scalars['String']['output'];
21025
+ issueKey?: Maybe<Scalars['String']['output']>;
20975
21026
  latestConversationDisconnectReason?: Maybe<Scalars['String']['output']>;
20976
21027
  latestConversationId: Scalars['String']['output'];
20977
21028
  };
@@ -20984,11 +21035,6 @@ export declare enum ChannelPlatformChatStatus {
20984
21035
  Active = "ACTIVE",
20985
21036
  Closed = "CLOSED"
20986
21037
  }
20987
- export type ChannelPlatformCheckOtpVerifiedResponse = {
20988
- __typename?: 'ChannelPlatformCheckOtpVerifiedResponse';
20989
- success: Scalars['Boolean']['output'];
20990
- verified?: Maybe<Scalars['Boolean']['output']>;
20991
- };
20992
21038
  export type ChannelPlatformClientConfigDetailsResponse = {
20993
21039
  __typename?: 'ChannelPlatformClientConfigDetailsResponse';
20994
21040
  showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
@@ -21223,11 +21269,9 @@ export type ChannelPlatformSendOtpResponse = {
21223
21269
  export type ChannelPlatformSubmitRequestInput = {
21224
21270
  attributes?: InputMaybe<Scalars['JSON']['input']>;
21225
21271
  customerIdentifier?: InputMaybe<Scalars['String']['input']>;
21226
- issueId?: InputMaybe<Scalars['String']['input']>;
21227
21272
  metadata?: InputMaybe<Scalars['JSON']['input']>;
21228
21273
  name?: InputMaybe<Scalars['String']['input']>;
21229
21274
  payload?: InputMaybe<Scalars['JSON']['input']>;
21230
- resumeChat?: InputMaybe<Scalars['Boolean']['input']>;
21231
21275
  };
21232
21276
  export type ChannelPlatformSubmitRequestResponse = {
21233
21277
  __typename?: 'ChannelPlatformSubmitRequestResponse';
@@ -21270,7 +21314,6 @@ export type ChannelPlatformTranscriptEntry = {
21270
21314
  export type ChannelPlatformTranscriptRequest = {
21271
21315
  contactId?: InputMaybe<Scalars['String']['input']>;
21272
21316
  isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
21273
- issueId?: InputMaybe<Scalars['String']['input']>;
21274
21317
  role?: InputMaybe<ChannelPlatformRole>;
21275
21318
  startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
21276
21319
  };
@@ -22029,6 +22072,7 @@ export type CommerceExpAchPaymentMethodPaginatedEntitlementsArgs = {
22029
22072
  };
22030
22073
  export type CommerceExpActivateEntitlementInfo = {
22031
22074
  entitlementId?: InputMaybe<Scalars['String']['input']>;
22075
+ familyContainerId?: InputMaybe<Scalars['String']['input']>;
22032
22076
  offeringId: Scalars['String']['input'];
22033
22077
  resourceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22034
22078
  };
@@ -24759,6 +24803,7 @@ export type CommerceExpOrderBuilderInput = {
24759
24803
  orderBuilderType: CommerceExpOrderBuilderType;
24760
24804
  orderId?: InputMaybe<Scalars['String']['input']>;
24761
24805
  promotionsInput?: InputMaybe<CommerceExpPromotionsInput>;
24806
+ reactivationOrderInput?: InputMaybe<CommerceExpReactivationOrderInput>;
24762
24807
  transactionAccountId: Scalars['ID']['input'];
24763
24808
  unbundleCollectionOrderInput?: InputMaybe<CommerceExpUnbundleCollectionOrderInput>;
24764
24809
  undoScheduledDeactivationInput?: InputMaybe<CommerceExpUndoScheduledDeactivationInput>;
@@ -24774,6 +24819,7 @@ export declare enum CommerceExpOrderBuilderType {
24774
24819
  OpsgenieMigration = "OPSGENIE_MIGRATION",
24775
24820
  OptOutTrial = "OPT_OUT_TRIAL",
24776
24821
  Promotions = "PROMOTIONS",
24822
+ ReactivationOrder = "REACTIVATION_ORDER",
24777
24823
  UnbundleCollection = "UNBUNDLE_COLLECTION",
24778
24824
  UndoScheduledDeactivation = "UNDO_SCHEDULED_DEACTIVATION"
24779
24825
  }
@@ -25503,6 +25549,9 @@ export type CommerceExpRange = {
25503
25549
  upperBound?: Maybe<Scalars['Int']['output']>;
25504
25550
  };
25505
25551
  export type CommerceExpReEstimateQuoteResult = CommerceExpCcpQuote | CommerceExpErrorResponse;
25552
+ export type CommerceExpReactivationOrderInput = {
25553
+ entitlementId: Scalars['String']['input'];
25554
+ };
25506
25555
  export type CommerceExpRebillOptions = {
25507
25556
  __typename?: 'CommerceExpRebillOptions';
25508
25557
  billFromTimestamp?: Maybe<Scalars['Float']['output']>;
@@ -35110,6 +35159,7 @@ export type ConfluenceNbmScanSummary = {
35110
35159
  completedSpaces?: Maybe<Scalars['Int']['output']>;
35111
35160
  endTime?: Maybe<Scalars['String']['output']>;
35112
35161
  id: Scalars['ID']['output'];
35162
+ initiatorAccountId?: Maybe<Scalars['ID']['output']>;
35113
35163
  shouldDisplayOnUI: Scalars['Boolean']['output'];
35114
35164
  startTime?: Maybe<Scalars['String']['output']>;
35115
35165
  status?: Maybe<ConfluenceNbmScanStatus>;
@@ -35204,6 +35254,7 @@ export type ConfluenceNbmTransformationJobSummary = {
35204
35254
  __typename?: 'ConfluenceNbmTransformationJobSummary';
35205
35255
  endTime?: Maybe<Scalars['String']['output']>;
35206
35256
  id: Scalars['ID']['output'];
35257
+ initiatorAccountId?: Maybe<Scalars['ID']['output']>;
35207
35258
  runMode?: Maybe<ConfluenceNbmTransformationRunMode>;
35208
35259
  scanId?: Maybe<Scalars['ID']['output']>;
35209
35260
  shouldDisplayOnUI: Scalars['Boolean']['output'];
@@ -38506,6 +38557,26 @@ export type ConfluenceUpdateMarkdownModePayload = Payload & {
38506
38557
  success: Scalars['Boolean']['output'];
38507
38558
  title?: Maybe<Scalars['String']['output']>;
38508
38559
  };
38560
+ export declare enum ConfluenceUpdateModeChangeAsyncErrorCode {
38561
+ AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
38562
+ ExperimentDisabled = "EXPERIMENT_DISABLED",
38563
+ InternalError = "INTERNAL_ERROR",
38564
+ NotInRolesTransitionMode = "NOT_IN_ROLES_TRANSITION_MODE",
38565
+ PermissionDenied = "PERMISSION_DENIED"
38566
+ }
38567
+ export type ConfluenceUpdateModeChangeAsyncMutationErrorExtension = MutationErrorExtension & {
38568
+ __typename?: 'ConfluenceUpdateModeChangeAsyncMutationErrorExtension';
38569
+ code: ConfluenceUpdateModeChangeAsyncErrorCode;
38570
+ errorType?: Maybe<Scalars['String']['output']>;
38571
+ field?: Maybe<Scalars['String']['output']>;
38572
+ statusCode?: Maybe<Scalars['Int']['output']>;
38573
+ };
38574
+ export type ConfluenceUpdateModeChangeAsyncPayload = Payload & {
38575
+ __typename?: 'ConfluenceUpdateModeChangeAsyncPayload';
38576
+ errors?: Maybe<Array<MutationError>>;
38577
+ longTaskId?: Maybe<Scalars['ID']['output']>;
38578
+ success: Scalars['Boolean']['output'];
38579
+ };
38509
38580
  export declare enum ConfluenceUpdateModeChangeErrorCode {
38510
38581
  AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
38511
38582
  ExperimentDisabled = "EXPERIMENT_DISABLED",
@@ -40178,6 +40249,29 @@ export type ConvoAiAvailableSkillsResult = {
40178
40249
  pageInfo: PageInfo;
40179
40250
  totalCount: Scalars['Int']['output'];
40180
40251
  };
40252
+ export type ConvoAiConfluenceAgentSession = {
40253
+ __typename?: 'ConvoAiConfluenceAgentSession';
40254
+ agentAccountId?: Maybe<Scalars['ID']['output']>;
40255
+ agentId?: Maybe<Scalars['ID']['output']>;
40256
+ id: Scalars['ID']['output'];
40257
+ isRovo?: Maybe<Scalars['Boolean']['output']>;
40258
+ lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
40259
+ sessionAri?: Maybe<Scalars['ID']['output']>;
40260
+ startedAt?: Maybe<Scalars['Long']['output']>;
40261
+ state?: Maybe<Scalars['String']['output']>;
40262
+ title: Scalars['String']['output'];
40263
+ };
40264
+ export type ConvoAiConfluenceAgentSessionConnection = {
40265
+ __typename?: 'ConvoAiConfluenceAgentSessionConnection';
40266
+ errors?: Maybe<Array<QueryError>>;
40267
+ nodes: Array<ConvoAiConfluenceAgentSession>;
40268
+ pageInfo: ConvoAiConfluenceAgentSessionsPageInfo;
40269
+ };
40270
+ export type ConvoAiConfluenceAgentSessionsPageInfo = {
40271
+ __typename?: 'ConvoAiConfluenceAgentSessionsPageInfo';
40272
+ hasNextPage: Scalars['Boolean']['output'];
40273
+ nextCursor?: Maybe<Scalars['String']['output']>;
40274
+ };
40181
40275
  export type ConvoAiConfluenceSpaceRecommendation = {
40182
40276
  __typename?: 'ConvoAiConfluenceSpaceRecommendation';
40183
40277
  id: Scalars['ID']['output'];
@@ -44536,8 +44630,17 @@ export type CustomerServiceOmniInteractionMatchedIdentifier = {
44536
44630
  lastObservedDate?: Maybe<Scalars['DateTime']['output']>;
44537
44631
  lastWorkItemId?: Maybe<Scalars['ID']['output']>;
44538
44632
  recentMatchCount: Scalars['Int']['output'];
44633
+ recentObservations?: Maybe<Array<CustomerServiceOmniInteractionRecentObservation>>;
44539
44634
  };
44540
44635
  export type CustomerServiceOmniInteractionQueryResult = CustomerServiceOmniInteraction | QueryError;
44636
+ export type CustomerServiceOmniInteractionRecentObservation = {
44637
+ __typename?: 'CustomerServiceOmniInteractionRecentObservation';
44638
+ interactionId: Scalars['ID']['output'];
44639
+ observedDate: Scalars['DateTime']['output'];
44640
+ workItem?: Maybe<JiraIssue>;
44641
+ workItemAri?: Maybe<Scalars['ID']['output']>;
44642
+ workItemId?: Maybe<Scalars['ID']['output']>;
44643
+ };
44541
44644
  export type CustomerServiceOmniInteractionRelatedHelpseeker = {
44542
44645
  __typename?: 'CustomerServiceOmniInteractionRelatedHelpseeker';
44543
44646
  helpseeker?: Maybe<User>;
@@ -54376,7 +54479,7 @@ export type ForgeObservabilityFrontendLogContextInput = {
54376
54479
  appId: Scalars['ID']['input'];
54377
54480
  contextAri: Scalars['ID']['input'];
54378
54481
  extensionId: Scalars['ID']['input'];
54379
- installationId: Scalars['ID']['input'];
54482
+ installationId?: InputMaybe<Scalars['ID']['input']>;
54380
54483
  userAgent: Scalars['String']['input'];
54381
54484
  };
54382
54485
  export type ForgeObservabilityFrontendLogEntryInput = {
@@ -54418,6 +54521,7 @@ export type ForgeObservabilityPublishFrontendCustomMetricResponse = {
54418
54521
  };
54419
54522
  export type ForgeObservabilityPublishFrontendLogsInput = {
54420
54523
  context: ForgeObservabilityFrontendLogContextInput;
54524
+ installationId: Scalars['ID']['input'];
54421
54525
  logs: Array<ForgeObservabilityFrontendLogEntryInput>;
54422
54526
  };
54423
54527
  export type ForgeObservabilityPublishFrontendLogsResponse = {
@@ -55822,6 +55926,53 @@ export type GraphInferenceAiModelInput = {
55822
55926
  id: Scalars['String']['input'];
55823
55927
  reasoningLevel: Scalars['String']['input'];
55824
55928
  };
55929
+ export type GraphInferenceDecisionDetails = {
55930
+ __typename?: 'GraphInferenceDecisionDetails';
55931
+ decidedAt?: Maybe<Scalars['String']['output']>;
55932
+ kind: GraphInferenceDecisionKind;
55933
+ status?: Maybe<GraphInferenceDecisionStatus>;
55934
+ };
55935
+ export type GraphInferenceDecisionInsight = GraphInferenceInsight & {
55936
+ __typename?: 'GraphInferenceDecisionInsight';
55937
+ associatedEntities: Array<GraphInferenceInsightEntity>;
55938
+ confidenceScore?: Maybe<Scalars['Float']['output']>;
55939
+ content: Scalars['String']['output'];
55940
+ contentFormat: GraphInferenceInsightContentFormat;
55941
+ createdAt?: Maybe<Scalars['String']['output']>;
55942
+ decision: GraphInferenceDecisionDetails;
55943
+ id: Scalars['ID']['output'];
55944
+ inferenceAppId?: Maybe<Scalars['String']['output']>;
55945
+ inferenceAppVersion?: Maybe<Scalars['Int']['output']>;
55946
+ insightType: GraphInferenceInsightType;
55947
+ sources: Array<GraphInferenceInsightSource>;
55948
+ subtype?: Maybe<GraphInferenceInsightSubtype>;
55949
+ title: Scalars['String']['output'];
55950
+ updatedAt?: Maybe<Scalars['String']['output']>;
55951
+ };
55952
+ export declare enum GraphInferenceDecisionKind {
55953
+ Decided = "DECIDED",
55954
+ Open = "OPEN"
55955
+ }
55956
+ export declare enum GraphInferenceDecisionStatus {
55957
+ Accepted = "ACCEPTED",
55958
+ Proposed = "PROPOSED",
55959
+ Reversed = "REVERSED",
55960
+ Unknown = "UNKNOWN"
55961
+ }
55962
+ export type GraphInferenceDecisionSubtype = {
55963
+ __typename?: 'GraphInferenceDecisionSubtype';
55964
+ value: GraphInferenceDecisionSubtypeValue;
55965
+ };
55966
+ export declare enum GraphInferenceDecisionSubtypeValue {
55967
+ Commitment = "COMMITMENT",
55968
+ Design = "DESIGN",
55969
+ Other = "OTHER",
55970
+ Prioritization = "PRIORITIZATION",
55971
+ Process = "PROCESS",
55972
+ Scope = "SCOPE",
55973
+ Staffing = "STAFFING",
55974
+ Technical = "TECHNICAL"
55975
+ }
55825
55976
  export declare enum GraphInferenceDestinationMode {
55826
55977
  Graph = "GRAPH",
55827
55978
  Shadow = "SHADOW"
@@ -56053,6 +56204,12 @@ export type GraphInferenceInferenceAppMutationPayloadV3 = {
56053
56204
  errors: Array<GraphInferenceMutationErrorV3>;
56054
56205
  success: Scalars['Boolean']['output'];
56055
56206
  };
56207
+ export type GraphInferenceInferenceAppPermissions = {
56208
+ __typename?: 'GraphInferenceInferenceAppPermissions';
56209
+ canManage: Scalars['Boolean']['output'];
56210
+ canRunInference: Scalars['Boolean']['output'];
56211
+ canView: Scalars['Boolean']['output'];
56212
+ };
56056
56213
  export type GraphInferenceInferenceAppStoredAnchor = {
56057
56214
  __typename?: 'GraphInferenceInferenceAppStoredAnchor';
56058
56215
  ari: Scalars['String']['output'];
@@ -56065,6 +56222,7 @@ export type GraphInferenceInferenceAppStoredInferenceNode = {
56065
56222
  ari: Scalars['String']['output'];
56066
56223
  description?: Maybe<Scalars['String']['output']>;
56067
56224
  title: Scalars['String']['output'];
56225
+ url?: Maybe<Scalars['String']['output']>;
56068
56226
  };
56069
56227
  export type GraphInferenceInferenceAppStoredLinkedEntity = {
56070
56228
  __typename?: 'GraphInferenceInferenceAppStoredLinkedEntity';
@@ -56114,8 +56272,17 @@ export type GraphInferenceInferenceAppV3 = {
56114
56272
  };
56115
56273
  export type GraphInferenceInferenceEvalInput = {
56116
56274
  appId: Scalars['String']['input'];
56275
+ promptTemplate?: InputMaybe<Scalars['String']['input']>;
56117
56276
  sourceAri: Scalars['String']['input'];
56118
56277
  };
56278
+ export type GraphInferenceInferenceEvalPromptPreviewInput = {
56279
+ appId: Scalars['String']['input'];
56280
+ };
56281
+ export type GraphInferenceInferenceEvalPromptPreviewResponse = {
56282
+ __typename?: 'GraphInferenceInferenceEvalPromptPreviewResponse';
56283
+ promptTemplate: Scalars['String']['output'];
56284
+ promptVersion: Scalars['String']['output'];
56285
+ };
56119
56286
  export type GraphInferenceInferenceEvalResponse = {
56120
56287
  __typename?: 'GraphInferenceInferenceEvalResponse';
56121
56288
  appId: Scalars['String']['output'];
@@ -56131,6 +56298,7 @@ export type GraphInferenceInferenceEvalRunResponse = {
56131
56298
  result?: Maybe<Scalars['JSON']['output']>;
56132
56299
  runId: Scalars['ID']['output'];
56133
56300
  status: Scalars['String']['output'];
56301
+ tokenUsage?: Maybe<GraphInferenceInferenceEvalTokenUsage>;
56134
56302
  };
56135
56303
  export type GraphInferenceInferenceEvalStartResponse = {
56136
56304
  __typename?: 'GraphInferenceInferenceEvalStartResponse';
@@ -56139,6 +56307,19 @@ export type GraphInferenceInferenceEvalStartResponse = {
56139
56307
  runId: Scalars['ID']['output'];
56140
56308
  status: Scalars['String']['output'];
56141
56309
  };
56310
+ export type GraphInferenceInferenceEvalTokenUsage = {
56311
+ __typename?: 'GraphInferenceInferenceEvalTokenUsage';
56312
+ cachedReadTokens?: Maybe<Scalars['Long']['output']>;
56313
+ cachedReadTokensReportedProviderAttempts: Scalars['Int']['output'];
56314
+ cachedWriteTokens?: Maybe<Scalars['Long']['output']>;
56315
+ cachedWriteTokensReportedProviderAttempts: Scalars['Int']['output'];
56316
+ inputTokens: Scalars['Long']['output'];
56317
+ outputTokens: Scalars['Long']['output'];
56318
+ reportedProviderAttempts: Scalars['Int']['output'];
56319
+ thoughtTokens?: Maybe<Scalars['Long']['output']>;
56320
+ thoughtTokensReportedProviderAttempts: Scalars['Int']['output'];
56321
+ totalTokens: Scalars['Long']['output'];
56322
+ };
56142
56323
  export type GraphInferenceInferenceModelChoice = {
56143
56324
  __typename?: 'GraphInferenceInferenceModelChoice';
56144
56325
  id: Scalars['String']['output'];
@@ -56155,6 +56336,22 @@ export type GraphInferenceInferenceModelsResponse = {
56155
56336
  runtimeSelectionSupported: Scalars['Boolean']['output'];
56156
56337
  useCaseId: Scalars['String']['output'];
56157
56338
  };
56339
+ export type GraphInferenceInferencePreviewInput = {
56340
+ ai: GraphInferenceAiInput;
56341
+ explicitAnchorAris: Array<Scalars['String']['input']>;
56342
+ infer: Scalars['String']['input'];
56343
+ promptOverride?: InputMaybe<Scalars['String']['input']>;
56344
+ source: Scalars['String']['input'];
56345
+ sourceAri: Scalars['String']['input'];
56346
+ targetCapabilityIds: Array<Scalars['String']['input']>;
56347
+ };
56348
+ export type GraphInferenceInferencePreviewResponse = {
56349
+ __typename?: 'GraphInferenceInferencePreviewResponse';
56350
+ explicitAnchorAris: Array<Scalars['String']['output']>;
56351
+ result: Scalars['JSON']['output'];
56352
+ sourceAri: Scalars['String']['output'];
56353
+ status: Scalars['String']['output'];
56354
+ };
56158
56355
  export type GraphInferenceInferenceQualityBucket = {
56159
56356
  __typename?: 'GraphInferenceInferenceQualityBucket';
56160
56357
  bucketStart?: Maybe<Scalars['String']['output']>;
@@ -56268,6 +56465,54 @@ export type GraphInferenceInferredProjectViewer = {
56268
56465
  __typename?: 'GraphInferenceInferredProjectViewer';
56269
56466
  accountId: Scalars['String']['output'];
56270
56467
  };
56468
+ export type GraphInferenceInsight = {
56469
+ associatedEntities: Array<GraphInferenceInsightEntity>;
56470
+ confidenceScore?: Maybe<Scalars['Float']['output']>;
56471
+ content: Scalars['String']['output'];
56472
+ contentFormat: GraphInferenceInsightContentFormat;
56473
+ createdAt?: Maybe<Scalars['String']['output']>;
56474
+ id: Scalars['ID']['output'];
56475
+ inferenceAppId?: Maybe<Scalars['String']['output']>;
56476
+ inferenceAppVersion?: Maybe<Scalars['Int']['output']>;
56477
+ insightType: GraphInferenceInsightType;
56478
+ sources: Array<GraphInferenceInsightSource>;
56479
+ subtype?: Maybe<GraphInferenceInsightSubtype>;
56480
+ title: Scalars['String']['output'];
56481
+ updatedAt?: Maybe<Scalars['String']['output']>;
56482
+ };
56483
+ export declare enum GraphInferenceInsightContentFormat {
56484
+ PlainText = "PLAIN_TEXT"
56485
+ }
56486
+ export type GraphInferenceInsightDateRangeInput = {
56487
+ from?: InputMaybe<Scalars['String']['input']>;
56488
+ to?: InputMaybe<Scalars['String']['input']>;
56489
+ };
56490
+ export type GraphInferenceInsightEntity = {
56491
+ __typename?: 'GraphInferenceInsightEntity';
56492
+ entityType: GraphInferenceInsightTargetKind;
56493
+ id: Scalars['ID']['output'];
56494
+ };
56495
+ export type GraphInferenceInsightSource = {
56496
+ __typename?: 'GraphInferenceInsightSource';
56497
+ id: Scalars['ID']['output'];
56498
+ };
56499
+ export type GraphInferenceInsightSubtype = GraphInferenceDecisionSubtype;
56500
+ export declare enum GraphInferenceInsightTargetKind {
56501
+ InferredProject = "INFERRED_PROJECT",
56502
+ JiraWorkItem = "JIRA_WORK_ITEM",
56503
+ TownsquareGoal = "TOWNSQUARE_GOAL",
56504
+ TownsquareProject = "TOWNSQUARE_PROJECT"
56505
+ }
56506
+ export declare enum GraphInferenceInsightType {
56507
+ Decision = "DECISION",
56508
+ Momentum = "MOMENTUM",
56509
+ Risk = "RISK"
56510
+ }
56511
+ export type GraphInferenceInsightsResponse = {
56512
+ __typename?: 'GraphInferenceInsightsResponse';
56513
+ apiVersion: Scalars['String']['output'];
56514
+ insights: Array<GraphInferenceInsight>;
56515
+ };
56271
56516
  export type GraphInferenceJiraEntityContextCandidate = {
56272
56517
  __typename?: 'GraphInferenceJiraEntityContextCandidate';
56273
56518
  ari: Scalars['String']['output'];
@@ -56399,6 +56644,11 @@ export type GraphInferenceSimilarJiraItemsRoot = {
56399
56644
  __typename?: 'GraphInferenceSimilarJiraItemsRoot';
56400
56645
  ari: Scalars['String']['output'];
56401
56646
  };
56647
+ export type GraphInferenceTargetInsightsInput = {
56648
+ dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
56649
+ insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
56650
+ targetAri: Scalars['String']['input'];
56651
+ };
56402
56652
  export type GraphIntegrationActionAdminManagementActionConfiguration = {
56403
56653
  __typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
56404
56654
  readonly: Scalars['Boolean']['output'];
@@ -60524,8 +60774,12 @@ export type GraphStore = {
60524
60774
  dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
60525
60775
  dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
60526
60776
  dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
60777
+ dynamicRelationshipAssetToTeam?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection>;
60778
+ dynamicRelationshipAssetToTeamInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection>;
60527
60779
  dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
60528
60780
  dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
60781
+ entityAuthorisesAtlassianMemory?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection>;
60782
+ entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
60529
60783
  entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
60530
60784
  entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
60531
60785
  entityRepresentsConfluenceSpace?: Maybe<GraphStoreSimplifiedEntityRepresentsConfluenceSpaceConnection>;
@@ -60694,6 +60948,8 @@ export type GraphStore = {
60694
60948
  inferredDecisionImpactsEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseConnection>;
60695
60949
  inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
60696
60950
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
60951
+ inferredProjectHasRelatedEntity?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection>;
60952
+ inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
60697
60953
  inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
60698
60954
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
60699
60955
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
@@ -63688,6 +63944,22 @@ export type GraphStoreDynamicRelationshipAssetToRepoInverseArgs = {
63688
63944
  queryContext?: InputMaybe<Scalars['String']['input']>;
63689
63945
  sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
63690
63946
  };
63947
+ export type GraphStoreDynamicRelationshipAssetToTeamArgs = {
63948
+ after?: InputMaybe<Scalars['String']['input']>;
63949
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63950
+ first?: InputMaybe<Scalars['Int']['input']>;
63951
+ id: Scalars['ID']['input'];
63952
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63953
+ sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
63954
+ };
63955
+ export type GraphStoreDynamicRelationshipAssetToTeamInverseArgs = {
63956
+ after?: InputMaybe<Scalars['String']['input']>;
63957
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63958
+ first?: InputMaybe<Scalars['Int']['input']>;
63959
+ id: Scalars['ID']['input'];
63960
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63961
+ sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
63962
+ };
63691
63963
  export type GraphStoreDynamicRelationshipAssetToUserArgs = {
63692
63964
  after?: InputMaybe<Scalars['String']['input']>;
63693
63965
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -63704,6 +63976,22 @@ export type GraphStoreDynamicRelationshipAssetToUserInverseArgs = {
63704
63976
  queryContext?: InputMaybe<Scalars['String']['input']>;
63705
63977
  sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
63706
63978
  };
63979
+ export type GraphStoreEntityAuthorisesAtlassianMemoryArgs = {
63980
+ after?: InputMaybe<Scalars['String']['input']>;
63981
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63982
+ first?: InputMaybe<Scalars['Int']['input']>;
63983
+ id: Scalars['ID']['input'];
63984
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63985
+ sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
63986
+ };
63987
+ export type GraphStoreEntityAuthorisesAtlassianMemoryInverseArgs = {
63988
+ after?: InputMaybe<Scalars['String']['input']>;
63989
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
63990
+ first?: InputMaybe<Scalars['Int']['input']>;
63991
+ id: Scalars['ID']['input'];
63992
+ queryContext?: InputMaybe<Scalars['String']['input']>;
63993
+ sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
63994
+ };
63707
63995
  export type GraphStoreEntityIsRelatedToEntityArgs = {
63708
63996
  after?: InputMaybe<Scalars['String']['input']>;
63709
63997
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -65003,6 +65291,22 @@ export type GraphStoreInferredDecisionSourceLineageEntityInverseArgs = {
65003
65291
  queryContext?: InputMaybe<Scalars['String']['input']>;
65004
65292
  sort?: InputMaybe<GraphStoreInferredDecisionSourceLineageEntitySortInput>;
65005
65293
  };
65294
+ export type GraphStoreInferredProjectHasRelatedEntityArgs = {
65295
+ after?: InputMaybe<Scalars['String']['input']>;
65296
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
65297
+ first?: InputMaybe<Scalars['Int']['input']>;
65298
+ id: Scalars['ID']['input'];
65299
+ queryContext?: InputMaybe<Scalars['String']['input']>;
65300
+ sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
65301
+ };
65302
+ export type GraphStoreInferredProjectHasRelatedEntityInverseArgs = {
65303
+ after?: InputMaybe<Scalars['String']['input']>;
65304
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
65305
+ first?: InputMaybe<Scalars['Int']['input']>;
65306
+ id: Scalars['ID']['input'];
65307
+ queryContext?: InputMaybe<Scalars['String']['input']>;
65308
+ sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
65309
+ };
65006
65310
  export type GraphStoreInferredProjectLinksEntityArgs = {
65007
65311
  after?: InputMaybe<Scalars['String']['input']>;
65008
65312
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -71347,6 +71651,7 @@ export declare enum GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
71347
71651
  CommentMention = "COMMENT_MENTION",
71348
71652
  CommentReply = "COMMENT_REPLY",
71349
71653
  ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
71654
+ DelegateToAgent = "DELEGATE_TO_AGENT",
71350
71655
  IssueApproval = "ISSUE_APPROVAL",
71351
71656
  IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
71352
71657
  IssueBlockingMe = "ISSUE_BLOCKING_ME",
@@ -73590,6 +73895,7 @@ export declare enum GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendati
73590
73895
  CommentMention = "COMMENT_MENTION",
73591
73896
  CommentReply = "COMMENT_REPLY",
73592
73897
  ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
73898
+ DelegateToAgent = "DELEGATE_TO_AGENT",
73593
73899
  IssueApproval = "ISSUE_APPROVAL",
73594
73900
  IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
73595
73901
  IssueBlockingMe = "ISSUE_BLOCKING_ME",
@@ -75109,6 +75415,9 @@ export type GraphStoreDynamicRelationshipAssetToProjectSortInput = {
75109
75415
  export type GraphStoreDynamicRelationshipAssetToRepoSortInput = {
75110
75416
  lastModified?: InputMaybe<GraphStoreSortInput>;
75111
75417
  };
75418
+ export type GraphStoreDynamicRelationshipAssetToTeamSortInput = {
75419
+ lastModified?: InputMaybe<GraphStoreSortInput>;
75420
+ };
75112
75421
  export type GraphStoreDynamicRelationshipAssetToUserSortInput = {
75113
75422
  lastModified?: InputMaybe<GraphStoreSortInput>;
75114
75423
  };
@@ -75135,6 +75444,9 @@ export type GraphStoreDynamicRelationshipTypeEdge = {
75135
75444
  cursor: Scalars['String']['output'];
75136
75445
  node: GraphStoreDynamicRelationshipType;
75137
75446
  };
75447
+ export type GraphStoreEntityAuthorisesAtlassianMemorySortInput = {
75448
+ lastModified?: InputMaybe<GraphStoreSortInput>;
75449
+ };
75138
75450
  export type GraphStoreEntityIsRelatedToEntitySortInput = {
75139
75451
  lastModified?: InputMaybe<GraphStoreSortInput>;
75140
75452
  };
@@ -78888,22 +79200,12 @@ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
78888
79200
  export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
78889
79201
  lastModified?: InputMaybe<GraphStoreSortInput>;
78890
79202
  };
78891
- export type GraphStoreInferredEntityMetadata = GraphStoreInferredProjectMetadata;
78892
- export type GraphStoreInferredEntityResponse = {
78893
- __typename?: 'GraphStoreInferredEntityResponse';
78894
- entityType: Scalars['String']['output'];
78895
- id: Scalars['String']['output'];
78896
- metadata?: Maybe<GraphStoreInferredEntityMetadata>;
78897
- workspaceId: Scalars['String']['output'];
79203
+ export type GraphStoreInferredProjectHasRelatedEntitySortInput = {
79204
+ lastModified?: InputMaybe<GraphStoreSortInput>;
78898
79205
  };
78899
79206
  export type GraphStoreInferredProjectLinksEntitySortInput = {
78900
79207
  lastModified?: InputMaybe<GraphStoreSortInput>;
78901
79208
  };
78902
- export type GraphStoreInferredProjectMetadata = {
78903
- __typename?: 'GraphStoreInferredProjectMetadata';
78904
- summary?: Maybe<Scalars['String']['output']>;
78905
- title?: Maybe<Scalars['String']['output']>;
78906
- };
78907
79209
  export declare enum GraphStoreInferredProjectNodeInferredProjectStatusOutput {
78908
79210
  Active = "ACTIVE",
78909
79211
  Inactive = "INACTIVE",
@@ -81196,7 +81498,7 @@ export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseEdge = {
81196
81498
  node?: Maybe<GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
81197
81499
  };
81198
81500
  export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
81199
- export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage;
81501
+ export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
81200
81502
  export type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
81201
81503
  __typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
81202
81504
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
@@ -83795,6 +84097,34 @@ export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge = {
83795
84097
  };
83796
84098
  export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion = AssetsObject;
83797
84099
  export type GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion = BitbucketRepository;
84100
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection = HasPageInfo & {
84101
+ __typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection';
84102
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge>>>;
84103
+ pageInfo: PageInfo;
84104
+ };
84105
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge = {
84106
+ __typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamEdge';
84107
+ createdAt: Scalars['DateTime']['output'];
84108
+ cursor?: Maybe<Scalars['String']['output']>;
84109
+ id: Scalars['ID']['output'];
84110
+ lastUpdated: Scalars['DateTime']['output'];
84111
+ node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamUnion>;
84112
+ };
84113
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection = HasPageInfo & {
84114
+ __typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection';
84115
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge>>>;
84116
+ pageInfo: PageInfo;
84117
+ };
84118
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge = {
84119
+ __typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseEdge';
84120
+ createdAt: Scalars['DateTime']['output'];
84121
+ cursor?: Maybe<Scalars['String']['output']>;
84122
+ id: Scalars['ID']['output'];
84123
+ lastUpdated: Scalars['DateTime']['output'];
84124
+ node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseUnion>;
84125
+ };
84126
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseUnion = AssetsObject;
84127
+ export type GraphStoreSimplifiedDynamicRelationshipAssetToTeamUnion = TeamV2;
83798
84128
  export type GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection = HasPageInfo & {
83799
84129
  __typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection';
83800
84130
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge>>>;
@@ -83823,6 +84153,34 @@ export type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge = {
83823
84153
  };
83824
84154
  export type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion = AssetsObject;
83825
84155
  export type GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
84156
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection = HasPageInfo & {
84157
+ __typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection';
84158
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge>>>;
84159
+ pageInfo: PageInfo;
84160
+ };
84161
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge = {
84162
+ __typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryEdge';
84163
+ createdAt: Scalars['DateTime']['output'];
84164
+ cursor?: Maybe<Scalars['String']['output']>;
84165
+ id: Scalars['ID']['output'];
84166
+ lastUpdated: Scalars['DateTime']['output'];
84167
+ node?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryUnion>;
84168
+ };
84169
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection = HasPageInfo & {
84170
+ __typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection';
84171
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge>>>;
84172
+ pageInfo: PageInfo;
84173
+ };
84174
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge = {
84175
+ __typename?: 'GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseEdge';
84176
+ createdAt: Scalars['DateTime']['output'];
84177
+ cursor?: Maybe<Scalars['String']['output']>;
84178
+ id: Scalars['ID']['output'];
84179
+ lastUpdated: Scalars['DateTime']['output'];
84180
+ node?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseUnion>;
84181
+ };
84182
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
84183
+ export type GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryUnion = GraphStoreNodeResponse;
83826
84184
  export type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
83827
84185
  __typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
83828
84186
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
@@ -85713,6 +86071,34 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
85713
86071
  };
85714
86072
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
85715
86073
  export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
86074
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
86075
+ __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
86076
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
86077
+ pageInfo: PageInfo;
86078
+ };
86079
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge = {
86080
+ __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge';
86081
+ createdAt: Scalars['DateTime']['output'];
86082
+ cursor?: Maybe<Scalars['String']['output']>;
86083
+ id: Scalars['ID']['output'];
86084
+ lastUpdated: Scalars['DateTime']['output'];
86085
+ node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion>;
86086
+ };
86087
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection = HasPageInfo & {
86088
+ __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection';
86089
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge>>>;
86090
+ pageInfo: PageInfo;
86091
+ };
86092
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge = {
86093
+ __typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge';
86094
+ createdAt: Scalars['DateTime']['output'];
86095
+ cursor?: Maybe<Scalars['String']['output']>;
86096
+ id: Scalars['ID']['output'];
86097
+ lastUpdated: Scalars['DateTime']['output'];
86098
+ node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion>;
86099
+ };
86100
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
86101
+ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
85716
86102
  export type GraphStoreSimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
85717
86103
  __typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityConnection';
85718
86104
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityEdge>>>;
@@ -95649,6 +96035,8 @@ export type GraphStoreV2 = {
95649
96035
  customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
95650
96036
  customer360CustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseConnection>;
95651
96037
  cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
96038
+ entityAuthorisesAtlassianMemory?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection>;
96039
+ entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
95652
96040
  entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
95653
96041
  entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
95654
96042
  entityRepresentsConfluenceSpace?: Maybe<GraphStoreV2SimplifiedEntityRepresentsConfluenceSpaceConnection>;
@@ -96014,7 +96402,8 @@ export type GraphStoreV2 = {
96014
96402
  inferredDecisionLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseConnection>;
96015
96403
  inferredDecisionSourceLineageEntity?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection>;
96016
96404
  inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
96017
- inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
96405
+ inferredProjectHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection>;
96406
+ inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
96018
96407
  inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
96019
96408
  inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
96020
96409
  inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
@@ -98643,6 +99032,20 @@ export type GraphStoreV2CypherQueryV2Args = {
98643
99032
  queryContext?: InputMaybe<Scalars['String']['input']>;
98644
99033
  version?: InputMaybe<GraphStoreV2CypherQueryV2VersionEnum>;
98645
99034
  };
99035
+ export type GraphStoreV2EntityAuthorisesAtlassianMemoryArgs = {
99036
+ after?: InputMaybe<Scalars['String']['input']>;
99037
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99038
+ first?: InputMaybe<Scalars['Int']['input']>;
99039
+ id: Scalars['ID']['input'];
99040
+ sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
99041
+ };
99042
+ export type GraphStoreV2EntityAuthorisesAtlassianMemoryInverseArgs = {
99043
+ after?: InputMaybe<Scalars['String']['input']>;
99044
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
99045
+ first?: InputMaybe<Scalars['Int']['input']>;
99046
+ id: Scalars['ID']['input'];
99047
+ sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
99048
+ };
98646
99049
  export type GraphStoreV2EntityLinksEntityArgs = {
98647
99050
  after?: InputMaybe<Scalars['String']['input']>;
98648
99051
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -101204,8 +101607,19 @@ export type GraphStoreV2InferredDecisionSourceLineageEntityInverseArgs = {
101204
101607
  id: Scalars['ID']['input'];
101205
101608
  sort?: InputMaybe<GraphStoreV2InferredDecisionSourceLineageEntitySortInput>;
101206
101609
  };
101207
- export type GraphStoreV2InferredEntitiesArgs = {
101208
- ids: Array<Scalars['String']['input']>;
101610
+ export type GraphStoreV2InferredProjectHasRelatedEntityArgs = {
101611
+ after?: InputMaybe<Scalars['String']['input']>;
101612
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
101613
+ first?: InputMaybe<Scalars['Int']['input']>;
101614
+ id: Scalars['ID']['input'];
101615
+ sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
101616
+ };
101617
+ export type GraphStoreV2InferredProjectHasRelatedEntityInverseArgs = {
101618
+ after?: InputMaybe<Scalars['String']['input']>;
101619
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
101620
+ first?: InputMaybe<Scalars['Int']['input']>;
101621
+ id: Scalars['ID']['input'];
101622
+ sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
101209
101623
  };
101210
101624
  export type GraphStoreV2InferredProjectLinksEntityArgs = {
101211
101625
  after?: InputMaybe<Scalars['String']['input']>;
@@ -102869,6 +103283,7 @@ export declare enum GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
102869
103283
  CommentMention = "COMMENT_MENTION",
102870
103284
  CommentReply = "COMMENT_REPLY",
102871
103285
  ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
103286
+ DelegateToAgent = "DELEGATE_TO_AGENT",
102872
103287
  IssueApproval = "ISSUE_APPROVAL",
102873
103288
  IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
102874
103289
  IssueBlockingMe = "ISSUE_BLOCKING_ME",
@@ -103329,6 +103744,7 @@ export declare enum GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommenda
103329
103744
  CommentMention = "COMMENT_MENTION",
103330
103745
  CommentReply = "COMMENT_REPLY",
103331
103746
  ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
103747
+ DelegateToAgent = "DELEGATE_TO_AGENT",
103332
103748
  IssueApproval = "ISSUE_APPROVAL",
103333
103749
  IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
103334
103750
  IssueBlockingMe = "ISSUE_BLOCKING_ME",
@@ -104429,6 +104845,9 @@ export type GraphStoreV2DeleteRovoAgentHasJiraProjectAgentKnowledgeContextPayloa
104429
104845
  errors?: Maybe<Array<MutationError>>;
104430
104846
  success: Scalars['Boolean']['output'];
104431
104847
  };
104848
+ export type GraphStoreV2EntityAuthorisesAtlassianMemorySortInput = {
104849
+ lastModified?: InputMaybe<GraphStoreSortInput>;
104850
+ };
104432
104851
  export type GraphStoreV2EntityLinksEntitySortInput = {
104433
104852
  lastModified?: InputMaybe<GraphStoreSortInput>;
104434
104853
  };
@@ -105078,6 +105497,9 @@ export type GraphStoreV2InferredDecisionLinksEntitySortInput = {
105078
105497
  export type GraphStoreV2InferredDecisionSourceLineageEntitySortInput = {
105079
105498
  lastModified?: InputMaybe<GraphStoreSortInput>;
105080
105499
  };
105500
+ export type GraphStoreV2InferredProjectHasRelatedEntitySortInput = {
105501
+ lastModified?: InputMaybe<GraphStoreSortInput>;
105502
+ };
105081
105503
  export type GraphStoreV2InferredProjectLinksEntitySortInput = {
105082
105504
  lastModified?: InputMaybe<GraphStoreSortInput>;
105083
105505
  };
@@ -107116,7 +107538,7 @@ export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseEdge =
107116
107538
  node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
107117
107539
  };
107118
107540
  export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
107119
- export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage;
107541
+ export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
107120
107542
  export type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection = HasPageInfo & {
107121
107543
  __typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection';
107122
107544
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectEdge>>>;
@@ -111561,6 +111983,34 @@ export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseEdg
111561
111983
  };
111562
111984
  export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseUnion = Customer360Customer;
111563
111985
  export type GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemUnion = JiraIssue;
111986
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection = HasPageInfo & {
111987
+ __typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection';
111988
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge>>>;
111989
+ pageInfo: PageInfo;
111990
+ };
111991
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge = {
111992
+ __typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryEdge';
111993
+ createdAt: Scalars['DateTime']['output'];
111994
+ cursor?: Maybe<Scalars['String']['output']>;
111995
+ id: Scalars['ID']['output'];
111996
+ lastUpdated: Scalars['DateTime']['output'];
111997
+ node?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryUnion>;
111998
+ };
111999
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection = HasPageInfo & {
112000
+ __typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection';
112001
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge>>>;
112002
+ pageInfo: PageInfo;
112003
+ };
112004
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge = {
112005
+ __typename?: 'GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseEdge';
112006
+ createdAt: Scalars['DateTime']['output'];
112007
+ cursor?: Maybe<Scalars['String']['output']>;
112008
+ id: Scalars['ID']['output'];
112009
+ lastUpdated: Scalars['DateTime']['output'];
112010
+ node?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseUnion>;
112011
+ };
112012
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
112013
+ export type GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryUnion = GraphStoreNodeResponse;
111564
112014
  export type GraphStoreV2SimplifiedEntityLinksEntityConnection = HasPageInfo & {
111565
112015
  __typename?: 'GraphStoreV2SimplifiedEntityLinksEntityConnection';
111566
112016
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedEntityLinksEntityEdge>>>;
@@ -116703,6 +117153,34 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
116703
117153
  };
116704
117154
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
116705
117155
  export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
117156
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
117157
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
117158
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
117159
+ pageInfo: PageInfo;
117160
+ };
117161
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge = {
117162
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge';
117163
+ createdAt: Scalars['DateTime']['output'];
117164
+ cursor?: Maybe<Scalars['String']['output']>;
117165
+ id: Scalars['ID']['output'];
117166
+ lastUpdated: Scalars['DateTime']['output'];
117167
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion>;
117168
+ };
117169
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection = HasPageInfo & {
117170
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection';
117171
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge>>>;
117172
+ pageInfo: PageInfo;
117173
+ };
117174
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge = {
117175
+ __typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge';
117176
+ createdAt: Scalars['DateTime']['output'];
117177
+ cursor?: Maybe<Scalars['String']['output']>;
117178
+ id: Scalars['ID']['output'];
117179
+ lastUpdated: Scalars['DateTime']['output'];
117180
+ node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion>;
117181
+ };
117182
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
117183
+ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
116706
117184
  export type GraphStoreV2SimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
116707
117185
  __typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityConnection';
116708
117186
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityEdge>>>;
@@ -120300,7 +120778,6 @@ export type GravityViewArrangementPayload = Payload & {
120300
120778
  errors?: Maybe<Array<MutationError>>;
120301
120779
  success: Scalars['Boolean']['output'];
120302
120780
  };
120303
- export type GravityViewArrangementResult = GravityViewArrangement | QueryError;
120304
120781
  export declare enum GravityViewColorStyle {
120305
120782
  Background = "BACKGROUND",
120306
120783
  Highlight = "HIGHLIGHT"
@@ -120639,8 +121116,56 @@ export type GrowthRecRerankCandidate = {
120639
121116
  context?: InputMaybe<Scalars['JSON']['input']>;
120640
121117
  entityId: Scalars['String']['input'];
120641
121118
  };
121119
+ export type GrowthUnifiedProfileAccountCompanyRecord = {
121120
+ __typename?: 'GrowthUnifiedProfileAccountCompanyRecord';
121121
+ accountSegment?: Maybe<Scalars['String']['output']>;
121122
+ address?: Maybe<Scalars['String']['output']>;
121123
+ addressCity?: Maybe<Scalars['String']['output']>;
121124
+ addressCountry?: Maybe<Scalars['String']['output']>;
121125
+ addressState?: Maybe<Scalars['String']['output']>;
121126
+ annualRevenue?: Maybe<Scalars['Float']['output']>;
121127
+ businessName?: Maybe<Scalars['String']['output']>;
121128
+ companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
121129
+ companyId: Scalars['String']['output'];
121130
+ companySize?: Maybe<Scalars['String']['output']>;
121131
+ companyType?: Maybe<Scalars['String']['output']>;
121132
+ countryCode?: Maybe<Scalars['String']['output']>;
121133
+ createdDate?: Maybe<Scalars['String']['output']>;
121134
+ customerAccountId?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
121135
+ description?: Maybe<Scalars['String']['output']>;
121136
+ developersCount?: Maybe<Scalars['Int']['output']>;
121137
+ domain: Scalars['String']['output'];
121138
+ employeesRange?: Maybe<Scalars['String']['output']>;
121139
+ enrichmentSource?: Maybe<Scalars['String']['output']>;
121140
+ enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
121141
+ estimatedAnnualRevenue?: Maybe<Scalars['String']['output']>;
121142
+ industry?: Maybe<Scalars['String']['output']>;
121143
+ industryGroup?: Maybe<Scalars['String']['output']>;
121144
+ itAgentsCount?: Maybe<Scalars['Int']['output']>;
121145
+ knowledgeWorkersCount?: Maybe<Scalars['Int']['output']>;
121146
+ marketCap?: Maybe<Scalars['String']['output']>;
121147
+ naicsCode?: Maybe<Scalars['String']['output']>;
121148
+ numberOfEmployees?: Maybe<Scalars['Int']['output']>;
121149
+ phone?: Maybe<Scalars['String']['output']>;
121150
+ postalCode?: Maybe<Scalars['String']['output']>;
121151
+ recordNumber?: Maybe<Scalars['Int']['output']>;
121152
+ recordStatus?: Maybe<Scalars['String']['output']>;
121153
+ refreshDate?: Maybe<Scalars['String']['output']>;
121154
+ region?: Maybe<Scalars['String']['output']>;
121155
+ revenueCurrency?: Maybe<Scalars['String']['output']>;
121156
+ sector?: Maybe<Scalars['String']['output']>;
121157
+ sectorRaw?: Maybe<Scalars['String']['output']>;
121158
+ sicCode?: Maybe<Scalars['String']['output']>;
121159
+ sourceSequenceIso?: Maybe<Scalars['String']['output']>;
121160
+ stockTicker?: Maybe<Scalars['String']['output']>;
121161
+ subIndustry?: Maybe<Scalars['String']['output']>;
121162
+ techsUsed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
121163
+ website?: Maybe<Scalars['String']['output']>;
121164
+ };
120642
121165
  export type GrowthUnifiedProfileAccountProfileResult = {
120643
121166
  __typename?: 'GrowthUnifiedProfileAccountProfileResult';
121167
+ companyProductUsage?: Maybe<GrowthUnifiedProfileCompanyProductUsageRecord>;
121168
+ companyProfile?: Maybe<GrowthUnifiedProfileAccountCompanyRecord>;
120644
121169
  paidFeatureUsage: Array<GrowthUnifiedProfilePfuResult>;
120645
121170
  recommendations?: Maybe<GrowthUnifiedProfileUserRecommendations>;
120646
121171
  userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
@@ -120661,6 +121186,20 @@ export declare enum GrowthUnifiedProfileAnchorType {
120661
121186
  Pfm = "PFM",
120662
121187
  Seo = "SEO"
120663
121188
  }
121189
+ export type GrowthUnifiedProfileAvailableCollectionSegmentResult = {
121190
+ __typename?: 'GrowthUnifiedProfileAvailableCollectionSegmentResult';
121191
+ billingCycle?: Maybe<Scalars['String']['output']>;
121192
+ cannibalisationRiskSegment?: Maybe<Scalars['String']['output']>;
121193
+ collectionChargeElementsEstimate: Array<GrowthUnifiedProfileCollectionSegmentChargeElementResult>;
121194
+ collectionOfferingId?: Maybe<Scalars['String']['output']>;
121195
+ collectionPriceEstimate?: Maybe<Scalars['Float']['output']>;
121196
+ existingStandaloneApps: Array<GrowthUnifiedProfileCollectionSegmentStandaloneAppResult>;
121197
+ pricingSegment?: Maybe<Scalars['String']['output']>;
121198
+ totalStandalonePriceEstimate?: Maybe<Scalars['Float']['output']>;
121199
+ };
121200
+ export type GrowthUnifiedProfileAvailableCollectionSegmentsFilterInput = {
121201
+ collectionOfferingId?: InputMaybe<Scalars['String']['input']>;
121202
+ };
120664
121203
  export type GrowthUnifiedProfileAvgResourceEngagementSeries = {
120665
121204
  __typename?: 'GrowthUnifiedProfileAvgResourceEngagementSeries';
120666
121205
  date?: Maybe<Scalars['String']['output']>;
@@ -120702,6 +121241,19 @@ export declare enum GrowthUnifiedProfileChannel {
120702
121241
  PaidSearch = "PAID_SEARCH",
120703
121242
  PaidSocial = "PAID_SOCIAL"
120704
121243
  }
121244
+ export type GrowthUnifiedProfileCollectionSegmentChargeElementResult = {
121245
+ __typename?: 'GrowthUnifiedProfileCollectionSegmentChargeElementResult';
121246
+ element?: Maybe<Scalars['String']['output']>;
121247
+ unitCount?: Maybe<Scalars['Float']['output']>;
121248
+ };
121249
+ export type GrowthUnifiedProfileCollectionSegmentStandaloneAppResult = {
121250
+ __typename?: 'GrowthUnifiedProfileCollectionSegmentStandaloneAppResult';
121251
+ entitlementId?: Maybe<Scalars['String']['output']>;
121252
+ isAutoProvisionedUnactivated?: Maybe<Scalars['Boolean']['output']>;
121253
+ isInTrial?: Maybe<Scalars['Boolean']['output']>;
121254
+ isPaid?: Maybe<Scalars['Boolean']['output']>;
121255
+ product?: Maybe<Scalars['String']['output']>;
121256
+ };
120705
121257
  export type GrowthUnifiedProfileCompany = {
120706
121258
  __typename?: 'GrowthUnifiedProfileCompany';
120707
121259
  accountStatus?: Maybe<GrowthUnifiedProfileEnterpriseAccountStatus>;
@@ -120717,6 +121269,12 @@ export type GrowthUnifiedProfileCompany = {
120717
121269
  size?: Maybe<GrowthUnifiedProfileCompanySize>;
120718
121270
  type?: Maybe<GrowthUnifiedProfileCompanyType>;
120719
121271
  };
121272
+ export type GrowthUnifiedProfileCompanyProductUsageRecord = {
121273
+ __typename?: 'GrowthUnifiedProfileCompanyProductUsageRecord';
121274
+ domain: Scalars['String']['output'];
121275
+ productUsageAggregateMetrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductUsageMetric>>>;
121276
+ snapshotDay: Scalars['String']['output'];
121277
+ };
120720
121278
  export type GrowthUnifiedProfileCompanyProfile = {
120721
121279
  __typename?: 'GrowthUnifiedProfileCompanyProfile';
120722
121280
  companyType?: Maybe<GrowthUnifiedProfileEntryType>;
@@ -120850,12 +121408,16 @@ export type GrowthUnifiedProfileEntitlementContextTrialResult = {
120850
121408
  export type GrowthUnifiedProfileEntitlementProfileResult = {
120851
121409
  __typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
120852
121410
  autoProvisioningEditionParityDialogDismissed?: Maybe<Scalars['Boolean']['output']>;
121411
+ availableCollectionSegments: Array<GrowthUnifiedProfileAvailableCollectionSegmentResult>;
120853
121412
  entitlementId: Scalars['ID']['output'];
120854
121413
  firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
120855
121414
  lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
120856
121415
  paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
120857
121416
  trialHistory: Array<GrowthUnifiedProfileTrialHistoryResult>;
120858
121417
  };
121418
+ export type GrowthUnifiedProfileEntitlementProfileResultAvailableCollectionSegmentsArgs = {
121419
+ filter?: InputMaybe<GrowthUnifiedProfileAvailableCollectionSegmentsFilterInput>;
121420
+ };
120859
121421
  export type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
120860
121422
  filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
120861
121423
  };
@@ -121070,6 +121632,10 @@ export type GrowthUnifiedProfileMarketingUtmInput = {
121070
121632
  sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
121071
121633
  source?: InputMaybe<Scalars['String']['input']>;
121072
121634
  };
121635
+ export declare enum GrowthUnifiedProfileMetric {
121636
+ Mau = "MAU",
121637
+ MauVariation = "MAU_VARIATION"
121638
+ }
121073
121639
  export type GrowthUnifiedProfileNbpUserRecommendationProduct = {
121074
121640
  __typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
121075
121641
  key: Scalars['String']['output'];
@@ -121209,6 +121775,17 @@ export type GrowthUnifiedProfileProductNbe = {
121209
121775
  edition?: Maybe<GrowthUnifiedProfileProductEdition>;
121210
121776
  recommendationDate?: Maybe<Scalars['String']['output']>;
121211
121777
  };
121778
+ export type GrowthUnifiedProfileProductRecord = {
121779
+ __typename?: 'GrowthUnifiedProfileProductRecord';
121780
+ metric: GrowthUnifiedProfileMetric;
121781
+ platform?: Maybe<Scalars['String']['output']>;
121782
+ value: Scalars['Float']['output'];
121783
+ };
121784
+ export type GrowthUnifiedProfileProductUsageMetric = {
121785
+ __typename?: 'GrowthUnifiedProfileProductUsageMetric';
121786
+ metrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductRecord>>>;
121787
+ product: Scalars['String']['output'];
121788
+ };
121212
121789
  export type GrowthUnifiedProfileResult = {
121213
121790
  __typename?: 'GrowthUnifiedProfileResult';
121214
121791
  company?: Maybe<GrowthUnifiedProfileCompany>;
@@ -127858,6 +128435,22 @@ export type JiraBacklogViewGlobalConfig = {
127858
128435
  export type JiraBacklogViewInput = {
127859
128436
  jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
127860
128437
  };
128438
+ export type JiraBacklogViewIssueListCardList = JiraBacklogViewCardList & Node & {
128439
+ __typename?: 'JiraBacklogViewIssueListCardList';
128440
+ estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
128441
+ id: Scalars['ID']['output'];
128442
+ issues?: Maybe<JiraIssueConnection>;
128443
+ };
128444
+ export type JiraBacklogViewIssueListCardListEstimationDetailsArgs = {
128445
+ settings?: InputMaybe<JiraBacklogViewSettings>;
128446
+ };
128447
+ export type JiraBacklogViewIssueListCardListIssuesArgs = {
128448
+ after?: InputMaybe<Scalars['String']['input']>;
128449
+ before?: InputMaybe<Scalars['String']['input']>;
128450
+ first?: InputMaybe<Scalars['Int']['input']>;
128451
+ last?: InputMaybe<Scalars['Int']['input']>;
128452
+ settings?: InputMaybe<JiraBacklogViewSettings>;
128453
+ };
127861
128454
  export type JiraBacklogViewPermissions = {
127862
128455
  __typename?: 'JiraBacklogViewPermissions';
127863
128456
  canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
@@ -130257,6 +130850,7 @@ export declare enum JiraCollapsibleSection {
130257
130850
  IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
130258
130851
  IncidentSummaryServicedesk = "INCIDENT_SUMMARY_SERVICEDESK",
130259
130852
  IncidentTimelineServicedesk = "INCIDENT_TIMELINE_SERVICEDESK",
130853
+ JsmPreventionCenterOverviewSummaryServicedesk = "JSM_PREVENTION_CENTER_OVERVIEW_SUMMARY_SERVICEDESK",
130260
130854
  LinkedWorkItem = "LINKED_WORK_ITEM",
130261
130855
  ProformaForms = "PROFORMA_FORMS",
130262
130856
  SimilarIssues = "SIMILAR_ISSUES",
@@ -132889,6 +133483,29 @@ export type JiraField = {
132889
133483
  typeKey?: Maybe<Scalars['String']['output']>;
132890
133484
  typeName?: Maybe<Scalars['String']['output']>;
132891
133485
  };
133486
+ export type JiraFieldActionFieldResult = {
133487
+ __typename?: 'JiraFieldActionFieldResult';
133488
+ errorCode?: Maybe<Scalars['String']['output']>;
133489
+ errorMessage?: Maybe<Scalars['String']['output']>;
133490
+ fieldId: Scalars['String']['output'];
133491
+ status: JiraFieldSuggestionStatus;
133492
+ };
133493
+ export type JiraFieldActionInput = {
133494
+ agentSource: Scalars['String']['input'];
133495
+ fieldId: Scalars['String']['input'];
133496
+ fieldValue?: InputMaybe<Array<Scalars['String']['input']>>;
133497
+ routingContext?: InputMaybe<Scalars['String']['input']>;
133498
+ };
133499
+ export type JiraFieldActionResult = {
133500
+ __typename?: 'JiraFieldActionResult';
133501
+ fieldResults: Array<JiraFieldActionFieldResult>;
133502
+ status: JiraFieldActionStatus;
133503
+ };
133504
+ export declare enum JiraFieldActionStatus {
133505
+ Error = "ERROR",
133506
+ PartialSuccess = "PARTIAL_SUCCESS",
133507
+ Success = "SUCCESS"
133508
+ }
132892
133509
  export type JiraFieldAggregationByBoardQuery = {
132893
133510
  boardId: Scalars['Long']['input'];
132894
133511
  cloudId: Scalars['ID']['input'];
@@ -133408,6 +134025,17 @@ export declare enum JiraFieldStatusType {
133408
134025
  Active = "ACTIVE",
133409
134026
  Trashed = "TRASHED"
133410
134027
  }
134028
+ export declare enum JiraFieldSuggestionAction {
134029
+ Accept = "ACCEPT",
134030
+ Decline = "DECLINE"
134031
+ }
134032
+ export declare enum JiraFieldSuggestionStatus {
134033
+ Error = "ERROR",
134034
+ FieldValidationError = "FIELD_VALIDATION_ERROR",
134035
+ PermissionDenied = "PERMISSION_DENIED",
134036
+ StaleSuggestion = "STALE_SUGGESTION",
134037
+ Success = "SUCCESS"
134038
+ }
133411
134039
  export type JiraFieldToFieldConfigSchemeAssociationsInput = {
133412
134040
  fieldId: Scalars['ID']['input'];
133413
134041
  schemeIdsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -140351,6 +140979,7 @@ export type JiraMultipleVersionPickerFieldPayload = Payload & {
140351
140979
  };
140352
140980
  export type JiraMutation = {
140353
140981
  __typename?: 'JiraMutation';
140982
+ actionFieldSuggestions?: Maybe<JiraFieldActionResult>;
140354
140983
  activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
140355
140984
  activitySortPreference?: Maybe<JiraActivitySortPreferencePayload>;
140356
140985
  addAttachment?: Maybe<JiraAddAttachmentPayload>;
@@ -140476,6 +141105,7 @@ export type JiraMutation = {
140476
141105
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
140477
141106
  removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
140478
141107
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
141108
+ renameAttachment?: Maybe<JiraRenameAttachmentPayload>;
140479
141109
  renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
140480
141110
  replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
140481
141111
  requestCancelIssueExportTask?: Maybe<JiraIssueExportTaskCancellationResult>;
@@ -140616,6 +141246,12 @@ export type JiraMutation = {
140616
141246
  updateWorklog?: Maybe<JiraWorklogPayload>;
140617
141247
  userPreferences?: Maybe<JiraUserPreferencesMutation>;
140618
141248
  };
141249
+ export type JiraMutationActionFieldSuggestionsArgs = {
141250
+ action: JiraFieldSuggestionAction;
141251
+ cloudId: Scalars['ID']['input'];
141252
+ fields: Array<JiraFieldActionInput>;
141253
+ issueId: Scalars['ID']['input'];
141254
+ };
140619
141255
  export type JiraMutationActivitySortOrderArgs = {
140620
141256
  cloudId: Scalars['ID']['input'];
140621
141257
  orderBy: JiraIssueViewActivityFeedSortOrder;
@@ -141024,6 +141660,9 @@ export type JiraMutationRemovePostIncidentReviewLinkArgs = {
141024
141660
  export type JiraMutationRemoveRelatedWorkFromVersionArgs = {
141025
141661
  input: JiraRemoveRelatedWorkFromVersionInput;
141026
141662
  };
141663
+ export type JiraMutationRenameAttachmentArgs = {
141664
+ input: JiraRenameAttachmentInput;
141665
+ };
141027
141666
  export type JiraMutationRenameNavigationItemArgs = {
141028
141667
  input: JiraRenameNavigationItemInput;
141029
141668
  };
@@ -141633,6 +142272,7 @@ export declare enum JiraNextActionInteractionType {
141633
142272
  Interactive = "INTERACTIVE"
141634
142273
  }
141635
142274
  export declare enum JiraNotificationCategoryType {
142275
+ AgentStateChanged = "AGENT_STATE_CHANGED",
141636
142276
  CommentChanges = "COMMENT_CHANGES",
141637
142277
  IssueAssigned = "ISSUE_ASSIGNED",
141638
142278
  IssueChanges = "ISSUE_CHANGES",
@@ -141690,6 +142330,8 @@ export type JiraNotificationPreferenceInput = {
141690
142330
  };
141691
142331
  export type JiraNotificationPreferences = {
141692
142332
  __typename?: 'JiraNotificationPreferences';
142333
+ agentInputRequiredNotification?: Maybe<JiraNotificationPreference>;
142334
+ agentWorkCompletedNotification?: Maybe<JiraNotificationPreference>;
141693
142335
  commentCreated?: Maybe<JiraNotificationPreference>;
141694
142336
  commentDeleted?: Maybe<JiraNotificationPreference>;
141695
142337
  commentEdited?: Maybe<JiraNotificationPreference>;
@@ -141720,6 +142362,8 @@ export type JiraNotificationProjectPreferences = {
141720
142362
  project?: Maybe<JiraProject>;
141721
142363
  };
141722
142364
  export declare enum JiraNotificationType {
142365
+ AgentInputRequiredNotification = "AGENT_INPUT_REQUIRED_NOTIFICATION",
142366
+ AgentWorkCompletedNotification = "AGENT_WORK_COMPLETED_NOTIFICATION",
141723
142367
  CommentCreated = "COMMENT_CREATED",
141724
142368
  CommentDeleted = "COMMENT_DELETED",
141725
142369
  CommentEdited = "COMMENT_EDITED",
@@ -144311,6 +144955,7 @@ export type JiraProjectPolicyRuleViolationEdge = {
144311
144955
  };
144312
144956
  export type JiraProjectPolicyRuleViolationFilter = {
144313
144957
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
144958
+ entityAris?: InputMaybe<Array<Scalars['ID']['input']>>;
144314
144959
  ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
144315
144960
  };
144316
144961
  export type JiraProjectPolicyViolatingProjectsFilter = {
@@ -147232,6 +147877,18 @@ export type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
147232
147877
  export type JiraRemoveTimelineIssueLinkInput = {
147233
147878
  id: Scalars['ID']['input'];
147234
147879
  };
147880
+ export type JiraRenameAttachmentInput = {
147881
+ attachmentId: Scalars['ID']['input'];
147882
+ newFileName: Scalars['String']['input'];
147883
+ oldFileName?: InputMaybe<Scalars['String']['input']>;
147884
+ };
147885
+ export type JiraRenameAttachmentPayload = Payload & {
147886
+ __typename?: 'JiraRenameAttachmentPayload';
147887
+ attachmentId?: Maybe<Scalars['ID']['output']>;
147888
+ displayName?: Maybe<Scalars['String']['output']>;
147889
+ errors?: Maybe<Array<MutationError>>;
147890
+ success: Scalars['Boolean']['output'];
147891
+ };
147235
147892
  export type JiraRenameBoardViewStatusColumnInput = {
147236
147893
  columnId: Scalars['ID']['input'];
147237
147894
  name: Scalars['String']['input'];
@@ -149473,11 +150130,15 @@ export declare enum JiraServiceManagementSlaCalendarKind {
149473
150130
  export type JiraServiceManagementSlaCompleteGoal = {
149474
150131
  __typename?: 'JiraServiceManagementSlaCompleteGoal';
149475
150132
  breachTime?: Maybe<Scalars['String']['output']>;
150133
+ breachTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
149476
150134
  failed?: Maybe<Scalars['Boolean']['output']>;
149477
150135
  goalTime?: Maybe<Scalars['String']['output']>;
150136
+ goalTimeLong?: Maybe<Scalars['String']['output']>;
149478
150137
  remainingTime?: Maybe<Scalars['String']['output']>;
150138
+ remainingTimeLong?: Maybe<Scalars['String']['output']>;
149479
150139
  startTime?: Maybe<Scalars['String']['output']>;
149480
150140
  stopTime?: Maybe<Scalars['String']['output']>;
150141
+ stopTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
149481
150142
  };
149482
150143
  export type JiraServiceManagementSlaCompletedCycle = {
149483
150144
  __typename?: 'JiraServiceManagementSlaCompletedCycle';
@@ -149555,6 +150216,7 @@ export type JiraServiceManagementSlaGoalDetailedView = {
149555
150216
  __typename?: 'JiraServiceManagementSlaGoalDetailedView';
149556
150217
  active?: Maybe<Scalars['Boolean']['output']>;
149557
150218
  breachTime?: Maybe<Scalars['String']['output']>;
150219
+ breachTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
149558
150220
  calendarName?: Maybe<Scalars['String']['output']>;
149559
150221
  closed?: Maybe<Scalars['Boolean']['output']>;
149560
150222
  completeGoals?: Maybe<Array<JiraServiceManagementSlaCompleteGoal>>;
@@ -149572,6 +150234,7 @@ export type JiraServiceManagementSlaGoalDetailedView = {
149572
150234
  slaDisplayFormat?: Maybe<Scalars['String']['output']>;
149573
150235
  startTime?: Maybe<Scalars['String']['output']>;
149574
150236
  stopTime?: Maybe<Scalars['String']['output']>;
150237
+ stopTimeInEpochMillis?: Maybe<Scalars['Long']['output']>;
149575
150238
  };
149576
150239
  export type JiraServiceManagementSlaGoalView = {
149577
150240
  __typename?: 'JiraServiceManagementSlaGoalView';
@@ -155025,6 +155688,56 @@ export type JpdCreateViewInput = {
155025
155688
  viewType: JpdViewType;
155026
155689
  viewTypeConfig?: InputMaybe<JpdViewTypeConfigInput>;
155027
155690
  };
155691
+ export type JpdEmptyIntervalFilter = JpdFieldFilter & {
155692
+ __typename?: 'JpdEmptyIntervalFilter';
155693
+ field: Scalars['String']['output'];
155694
+ };
155695
+ export type JpdEmptyIntervalFilterInput = {
155696
+ field: Scalars['String']['input'];
155697
+ };
155698
+ export type JpdFieldExcludesFilter = JpdFieldFilter & {
155699
+ __typename?: 'JpdFieldExcludesFilter';
155700
+ field: Scalars['String']['output'];
155701
+ values: Array<JpdStringFilterValue>;
155702
+ };
155703
+ export type JpdFieldExcludesFilterInput = {
155704
+ field: Scalars['String']['input'];
155705
+ values: Array<JpdStringFilterValueInput>;
155706
+ };
155707
+ export type JpdFieldFilter = {
155708
+ field: Scalars['String']['output'];
155709
+ };
155710
+ export type JpdFieldIncludesFilter = JpdFieldFilter & {
155711
+ __typename?: 'JpdFieldIncludesFilter';
155712
+ field: Scalars['String']['output'];
155713
+ values: Array<JpdStringFilterValue>;
155714
+ };
155715
+ export type JpdFieldIncludesFilterInput = {
155716
+ field: Scalars['String']['input'];
155717
+ values: Array<JpdStringFilterValueInput>;
155718
+ };
155719
+ export type JpdFixedDateIntervalFilter = JpdFieldFilter & {
155720
+ __typename?: 'JpdFixedDateIntervalFilter';
155721
+ field: Scalars['String']['output'];
155722
+ values: Array<JpdFixedDateIntervalFilterValue>;
155723
+ };
155724
+ export type JpdFixedDateIntervalFilterInput = {
155725
+ field: Scalars['String']['input'];
155726
+ values: Array<JpdFixedDateIntervalFilterValueInput>;
155727
+ };
155728
+ export declare enum JpdFixedDateIntervalFilterOperator {
155729
+ ItemEndsAfter = "ITEM_ENDS_AFTER",
155730
+ ItemStartsBefore = "ITEM_STARTS_BEFORE"
155731
+ }
155732
+ export type JpdFixedDateIntervalFilterValue = {
155733
+ __typename?: 'JpdFixedDateIntervalFilterValue';
155734
+ operator: JpdFixedDateIntervalFilterOperator;
155735
+ value: Scalars['String']['output'];
155736
+ };
155737
+ export type JpdFixedDateIntervalFilterValueInput = {
155738
+ operator: JpdFixedDateIntervalFilterOperator;
155739
+ value: Scalars['String']['input'];
155740
+ };
155028
155741
  export type JpdInsightDeletedEvent = {
155029
155742
  __typename?: 'JpdInsightDeletedEvent';
155030
155743
  actorUserId: Scalars['ID']['output'];
@@ -155033,6 +155746,12 @@ export type JpdInsightDeletedEvent = {
155033
155746
  performedAt: Scalars['String']['output'];
155034
155747
  projectAri: Scalars['ID']['output'];
155035
155748
  };
155749
+ export declare enum JpdIntervalPeriod {
155750
+ Days = "DAYS",
155751
+ Months = "MONTHS",
155752
+ Weeks = "WEEKS",
155753
+ Years = "YEARS"
155754
+ }
155036
155755
  export type JpdMatrixViewConfig = {
155037
155756
  __typename?: 'JpdMatrixViewConfig';
155038
155757
  axes?: Maybe<JpdViewMatrixAxes>;
@@ -155056,6 +155775,32 @@ export type JpdMatrixViewConfigInput = {
155056
155775
  issueLayout?: InputMaybe<JpdViewIssueLayoutTypeSimple>;
155057
155776
  jql?: InputMaybe<Scalars['String']['input']>;
155058
155777
  };
155778
+ export type JpdNumericFilter = JpdFieldFilter & {
155779
+ __typename?: 'JpdNumericFilter';
155780
+ field: Scalars['String']['output'];
155781
+ values: Array<JpdNumericFilterValue>;
155782
+ };
155783
+ export type JpdNumericFilterInput = {
155784
+ field: Scalars['String']['input'];
155785
+ values: Array<JpdNumericFilterValueInput>;
155786
+ };
155787
+ export declare enum JpdNumericFilterOperator {
155788
+ Eq = "EQ",
155789
+ Gt = "GT",
155790
+ Gte = "GTE",
155791
+ Lt = "LT",
155792
+ Lte = "LTE",
155793
+ Neq = "NEQ"
155794
+ }
155795
+ export type JpdNumericFilterValue = {
155796
+ __typename?: 'JpdNumericFilterValue';
155797
+ operator: JpdNumericFilterOperator;
155798
+ value: Scalars['Float']['output'];
155799
+ };
155800
+ export type JpdNumericFilterValueInput = {
155801
+ operator: JpdNumericFilterOperator;
155802
+ value: Scalars['Float']['input'];
155803
+ };
155059
155804
  export type JpdPlayContributionDeletedEvent = {
155060
155805
  __typename?: 'JpdPlayContributionDeletedEvent';
155061
155806
  contributionAri: Scalars['ID']['output'];
@@ -155077,6 +155822,68 @@ export type JpdPlayParameters = {
155077
155822
  __typename?: 'JpdPlayParameters';
155078
155823
  maxSpend?: Maybe<Scalars['Int']['output']>;
155079
155824
  };
155825
+ export type JpdRelativeIntervalFilter = JpdFieldFilter & {
155826
+ __typename?: 'JpdRelativeIntervalFilter';
155827
+ field: Scalars['String']['output'];
155828
+ values: Array<JpdRelativeIntervalFilterValue>;
155829
+ };
155830
+ export type JpdRelativeIntervalFilterInput = {
155831
+ field: Scalars['String']['input'];
155832
+ values: Array<JpdRelativeIntervalFilterValueInput>;
155833
+ };
155834
+ export declare enum JpdRelativeIntervalFilterOperator {
155835
+ EndAfterNow = "END_AFTER_NOW",
155836
+ EndBeforeNow = "END_BEFORE_NOW",
155837
+ StartAfterNow = "START_AFTER_NOW",
155838
+ StartBeforeNow = "START_BEFORE_NOW"
155839
+ }
155840
+ export type JpdRelativeIntervalFilterValue = {
155841
+ __typename?: 'JpdRelativeIntervalFilterValue';
155842
+ operator: JpdRelativeIntervalFilterOperator;
155843
+ value: Scalars['Float']['output'];
155844
+ };
155845
+ export type JpdRelativeIntervalFilterValueInput = {
155846
+ operator: JpdRelativeIntervalFilterOperator;
155847
+ value: Scalars['Float']['input'];
155848
+ };
155849
+ export type JpdRollingDateIntervalFilter = JpdFieldFilter & {
155850
+ __typename?: 'JpdRollingDateIntervalFilter';
155851
+ field: Scalars['String']['output'];
155852
+ values: Array<JpdRollingDateIntervalFilterValue>;
155853
+ };
155854
+ export type JpdRollingDateIntervalFilterInput = {
155855
+ field: Scalars['String']['input'];
155856
+ values: Array<JpdRollingDateIntervalFilterValueInput>;
155857
+ };
155858
+ export declare enum JpdRollingDateIntervalFilterOperator {
155859
+ ItemEndsAfterPast = "ITEM_ENDS_AFTER_PAST",
155860
+ ItemStartsBeforeNext = "ITEM_STARTS_BEFORE_NEXT"
155861
+ }
155862
+ export type JpdRollingDateIntervalFilterValue = {
155863
+ __typename?: 'JpdRollingDateIntervalFilterValue';
155864
+ operator: JpdRollingDateIntervalFilterOperator;
155865
+ value: JpdRollingDateIntervalValue;
155866
+ };
155867
+ export type JpdRollingDateIntervalFilterValueInput = {
155868
+ operator: JpdRollingDateIntervalFilterOperator;
155869
+ value: JpdRollingDateIntervalValueInput;
155870
+ };
155871
+ export type JpdRollingDateIntervalValue = {
155872
+ __typename?: 'JpdRollingDateIntervalValue';
155873
+ number: Scalars['Int']['output'];
155874
+ period: JpdIntervalPeriod;
155875
+ };
155876
+ export type JpdRollingDateIntervalValueInput = {
155877
+ number: Scalars['Int']['input'];
155878
+ period: JpdIntervalPeriod;
155879
+ };
155880
+ export type JpdStringFilterValue = {
155881
+ __typename?: 'JpdStringFilterValue';
155882
+ value: Scalars['String']['output'];
155883
+ };
155884
+ export type JpdStringFilterValueInput = {
155885
+ value: Scalars['String']['input'];
155886
+ };
155080
155887
  export type JpdSubscriptions = {
155081
155888
  __typename?: 'JpdSubscriptions';
155082
155889
  onInsightCreated?: Maybe<PolarisInsight>;
@@ -155186,6 +155993,13 @@ export type JpdTableViewConfigInput = {
155186
155993
  rankingConfig?: InputMaybe<JpdViewRankingConfigInput>;
155187
155994
  swimlanes?: InputMaybe<JpdViewLayoutConfigInput>;
155188
155995
  };
155996
+ export type JpdTextFilter = {
155997
+ __typename?: 'JpdTextFilter';
155998
+ values: Array<JpdStringFilterValue>;
155999
+ };
156000
+ export type JpdTextFilterInput = {
156001
+ values: Array<JpdStringFilterValueInput>;
156002
+ };
155189
156003
  export type JpdTimelineViewConfig = {
155190
156004
  __typename?: 'JpdTimelineViewConfig';
155191
156005
  colorConfig?: Maybe<JpdViewColorConfigWithBold>;
@@ -155270,6 +156084,7 @@ export type JpdView = {
155270
156084
  emoji?: Maybe<Scalars['String']['output']>;
155271
156085
  globalViewId?: Maybe<Scalars['ID']['output']>;
155272
156086
  id: Scalars['ID']['output'];
156087
+ legacyId?: Maybe<Scalars['ID']['output']>;
155273
156088
  name: Scalars['String']['output'];
155274
156089
  ownerAaid?: Maybe<Scalars['String']['output']>;
155275
156090
  updatedAt?: Maybe<Scalars['String']['output']>;
@@ -155368,60 +156183,23 @@ export declare enum JpdViewFieldRollupType {
155368
156183
  Min = "MIN",
155369
156184
  Sum = "SUM"
155370
156185
  }
155371
- export type JpdViewFilterConjunct = {
155372
- __typename?: 'JpdViewFilterConjunct';
155373
- field?: Maybe<Scalars['String']['output']>;
155374
- filterType?: Maybe<JpdViewFilterConjunctType>;
155375
- values?: Maybe<Array<JpdViewFilterValue>>;
155376
- };
155377
- export type JpdViewFilterConjunctInput = {
155378
- field?: InputMaybe<Scalars['String']['input']>;
155379
- filterType?: InputMaybe<JpdViewFilterConjunctType>;
155380
- values?: InputMaybe<Array<JpdViewFilterValueInput>>;
155381
- };
155382
- export declare enum JpdViewFilterConjunctType {
155383
- FieldExcludes = "FIELD_EXCLUDES",
155384
- FieldHasValue = "FIELD_HAS_VALUE",
155385
- FieldIncludes = "FIELD_INCLUDES",
155386
- FieldNumeric = "FIELD_NUMERIC",
155387
- Interval = "INTERVAL",
155388
- Text = "TEXT"
155389
- }
155390
- export declare enum JpdViewFilterEnumType {
155391
- BoardColumn = "BOARD_COLUMN",
155392
- ViewGroup = "VIEW_GROUP"
155393
- }
155394
- export declare enum JpdViewFilterOperator {
155395
- Eq = "EQ",
155396
- Gt = "GT",
155397
- Gte = "GTE",
155398
- In = "IN",
155399
- IsEmpty = "IS_EMPTY",
155400
- IsNotEmpty = "IS_NOT_EMPTY",
155401
- Lt = "LT",
155402
- Lte = "LTE",
155403
- Neq = "NEQ",
155404
- NotIn = "NOT_IN"
155405
- }
155406
- export type JpdViewFilterValue = {
155407
- __typename?: 'JpdViewFilterValue';
155408
- enumValue?: Maybe<JpdViewFilterEnumType>;
155409
- numericValue?: Maybe<Scalars['Float']['output']>;
155410
- operator?: Maybe<JpdViewFilterOperator>;
155411
- stringValue?: Maybe<Scalars['String']['output']>;
155412
- };
155413
- export type JpdViewFilterValueInput = {
155414
- enumValue?: InputMaybe<JpdViewFilterEnumType>;
155415
- numericValue?: InputMaybe<Scalars['Float']['input']>;
155416
- operator?: InputMaybe<JpdViewFilterOperator>;
155417
- stringValue?: InputMaybe<Scalars['String']['input']>;
156186
+ export type JpdViewFilter = JpdEmptyIntervalFilter | JpdFieldExcludesFilter | JpdFieldIncludesFilter | JpdFixedDateIntervalFilter | JpdNumericFilter | JpdRelativeIntervalFilter | JpdRollingDateIntervalFilter | JpdTextFilter;
156187
+ export type JpdViewFilterInput = {
156188
+ emptyInterval?: InputMaybe<JpdEmptyIntervalFilterInput>;
156189
+ fieldExcludes?: InputMaybe<JpdFieldExcludesFilterInput>;
156190
+ fieldIncludes?: InputMaybe<JpdFieldIncludesFilterInput>;
156191
+ fixedDateInterval?: InputMaybe<JpdFixedDateIntervalFilterInput>;
156192
+ numeric?: InputMaybe<JpdNumericFilterInput>;
156193
+ relativeInterval?: InputMaybe<JpdRelativeIntervalFilterInput>;
156194
+ rollingDateInterval?: InputMaybe<JpdRollingDateIntervalFilterInput>;
156195
+ text?: InputMaybe<JpdTextFilterInput>;
155418
156196
  };
155419
156197
  export type JpdViewFilters = {
155420
156198
  __typename?: 'JpdViewFilters';
155421
- conjuncts?: Maybe<Array<JpdViewFilterConjunct>>;
156199
+ conjuncts?: Maybe<Array<JpdViewFilter>>;
155422
156200
  };
155423
156201
  export type JpdViewFiltersInput = {
155424
- conjuncts?: InputMaybe<Array<JpdViewFilterConjunctInput>>;
156202
+ conjuncts?: InputMaybe<Array<JpdViewFilterInput>>;
155425
156203
  };
155426
156204
  export declare enum JpdViewIssueLayoutTypeSimple {
155427
156205
  Compact = "COMPACT",
@@ -156143,6 +156921,136 @@ export type JsmAdaptiveLanguageQueryApi = {
156143
156921
  export type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
156144
156922
  projectAri: Scalars['ID']['input'];
156145
156923
  };
156924
+ export declare enum JsmAnalyticsAnomalyTrend {
156925
+ Drop = "DROP",
156926
+ Flat = "FLAT",
156927
+ Spike = "SPIKE"
156928
+ }
156929
+ export type JsmAnalyticsCause = {
156930
+ __typename?: 'JsmAnalyticsCause';
156931
+ chart: JsmAnalyticsChart;
156932
+ confidence: JsmAnalyticsConfidence;
156933
+ statement: JsmAnalyticsStatement;
156934
+ };
156935
+ export type JsmAnalyticsChart = {
156936
+ __typename?: 'JsmAnalyticsChart';
156937
+ additionalDescription?: Maybe<Scalars['String']['output']>;
156938
+ data: Array<Array<Scalars['JSON']['output']>>;
156939
+ description?: Maybe<Scalars['String']['output']>;
156940
+ headers: Array<JsmAnalyticsChartHeader>;
156941
+ isLast: Scalars['Boolean']['output'];
156942
+ label?: Maybe<Scalars['String']['output']>;
156943
+ total: Scalars['Int']['output'];
156944
+ };
156945
+ export type JsmAnalyticsChartHeader = {
156946
+ __typename?: 'JsmAnalyticsChartHeader';
156947
+ fieldType: JsmAnalyticsDataType;
156948
+ isNullable?: Maybe<Scalars['Boolean']['output']>;
156949
+ name: Scalars['String']['output'];
156950
+ };
156951
+ export declare enum JsmAnalyticsConfidence {
156952
+ High = "HIGH",
156953
+ Medium = "MEDIUM"
156954
+ }
156955
+ export declare enum JsmAnalyticsDataType {
156956
+ Datetime = "DATETIME",
156957
+ Day = "DAY",
156958
+ Integer = "INTEGER",
156959
+ Month = "MONTH",
156960
+ String = "STRING",
156961
+ Week = "WEEK",
156962
+ Year = "YEAR"
156963
+ }
156964
+ export declare enum JsmAnalyticsGranularity {
156965
+ Day = "DAY",
156966
+ Hour = "HOUR",
156967
+ Week = "WEEK"
156968
+ }
156969
+ export type JsmAnalyticsImpact = {
156970
+ __typename?: 'JsmAnalyticsImpact';
156971
+ deviation: JsmAnalyticsMetric;
156972
+ trend: JsmAnalyticsAnomalyTrend;
156973
+ };
156974
+ export type JsmAnalyticsInputOptions = {
156975
+ timeZone: Scalars['String']['input'];
156976
+ };
156977
+ export type JsmAnalyticsInsight = {
156978
+ __typename?: 'JsmAnalyticsInsight';
156979
+ category: JsmAnalyticsInsightCategory;
156980
+ causeOverview: JsmAnalyticsStatement;
156981
+ chart: JsmAnalyticsChart;
156982
+ generatedAt: Scalars['DateTime']['output'];
156983
+ id: Scalars['ID']['output'];
156984
+ impact: JsmAnalyticsImpact;
156985
+ likelyCauses: Array<JsmAnalyticsCause>;
156986
+ primaryMetric: JsmAnalyticsMetric;
156987
+ statement: JsmAnalyticsStatement;
156988
+ status: JsmAnalyticsInsightStatus;
156989
+ steps: Array<JsmAnalyticsStatement>;
156990
+ timeRange: JsmAnalyticsTimeRange;
156991
+ };
156992
+ export declare enum JsmAnalyticsInsightCategory {
156993
+ SlaTrend = "SLA_TREND",
156994
+ TicketTrend = "TICKET_TREND"
156995
+ }
156996
+ export type JsmAnalyticsInsightSection = {
156997
+ __typename?: 'JsmAnalyticsInsightSection';
156998
+ category: JsmAnalyticsInsightCategory;
156999
+ description: Scalars['String']['output'];
157000
+ displayOrder?: Maybe<Scalars['Int']['output']>;
157001
+ insights: Array<JsmAnalyticsInsight>;
157002
+ title: Scalars['String']['output'];
157003
+ };
157004
+ export declare enum JsmAnalyticsInsightStatus {
157005
+ Open = "OPEN",
157006
+ Resolved = "RESOLVED"
157007
+ }
157008
+ export type JsmAnalyticsInsightSummary = {
157009
+ __typename?: 'JsmAnalyticsInsightSummary';
157010
+ total: Scalars['Int']['output'];
157011
+ };
157012
+ export type JsmAnalyticsInsightsDetailInput = {
157013
+ insightId: Scalars['ID']['input'];
157014
+ options: JsmAnalyticsInputOptions;
157015
+ projectId: Scalars['String']['input'];
157016
+ };
157017
+ export type JsmAnalyticsInsightsQueryInput = {
157018
+ after?: InputMaybe<Scalars['String']['input']>;
157019
+ first?: InputMaybe<Scalars['Int']['input']>;
157020
+ options: JsmAnalyticsInputOptions;
157021
+ projectId: Scalars['String']['input'];
157022
+ };
157023
+ export type JsmAnalyticsInsightsQueryResponse = {
157024
+ __typename?: 'JsmAnalyticsInsightsQueryResponse';
157025
+ generatedAt: Scalars['DateTime']['output'];
157026
+ pageInfo: PageInfo;
157027
+ sections: Array<JsmAnalyticsInsightSection>;
157028
+ summary: JsmAnalyticsInsightSummary;
157029
+ timeRange: JsmAnalyticsTimeRange;
157030
+ };
157031
+ export type JsmAnalyticsMetric = {
157032
+ __typename?: 'JsmAnalyticsMetric';
157033
+ formatted?: Maybe<Scalars['String']['output']>;
157034
+ unit: JsmAnalyticsMetricUnit;
157035
+ value: Scalars['Float']['output'];
157036
+ };
157037
+ export declare enum JsmAnalyticsMetricUnit {
157038
+ Count = "COUNT",
157039
+ Duration = "DURATION",
157040
+ Percent = "PERCENT"
157041
+ }
157042
+ export type JsmAnalyticsStatement = {
157043
+ __typename?: 'JsmAnalyticsStatement';
157044
+ narrative: Scalars['String']['output'];
157045
+ title: Scalars['String']['output'];
157046
+ };
157047
+ export type JsmAnalyticsTimeRange = {
157048
+ __typename?: 'JsmAnalyticsTimeRange';
157049
+ end: Scalars['DateTime']['output'];
157050
+ granularity: JsmAnalyticsGranularity;
157051
+ start: Scalars['DateTime']['output'];
157052
+ timeZone: Scalars['String']['output'];
157053
+ };
156146
157054
  export declare enum JsmChannelsAuthMode {
156147
157055
  Application = "APPLICATION",
156148
157056
  Delegated = "DELEGATED"
@@ -156192,6 +157100,15 @@ export type JsmChannelsCustomPlanNodeAttribute = {
156192
157100
  key: Scalars['String']['output'];
156193
157101
  value: Scalars['String']['output'];
156194
157102
  };
157103
+ export type JsmChannelsDegradedMode = {
157104
+ __typename?: 'JsmChannelsDegradedMode';
157105
+ creditsResetAt?: Maybe<Scalars['Date']['output']>;
157106
+ status: JsmChannelsDegradedModeStatus;
157107
+ };
157108
+ export declare enum JsmChannelsDegradedModeStatus {
157109
+ CreditsExhausted = "CREDITS_EXHAUSTED",
157110
+ Normal = "NORMAL"
157111
+ }
156195
157112
  export type JsmChannelsEnabledRovoServiceToolsConfiguration = {
156196
157113
  __typename?: 'JsmChannelsEnabledRovoServiceToolsConfiguration';
156197
157114
  accountId?: Maybe<Scalars['String']['output']>;
@@ -156722,6 +157639,7 @@ export type JsmChannelsTaskAgentsResult = JsmChannelsTaskAgentsQueryPayload | Qu
156722
157639
  export type JsmChannelsTicketServiceAgentResolutionState = {
156723
157640
  __typename?: 'JsmChannelsTicketServiceAgentResolutionState';
156724
157641
  conversationId?: Maybe<Scalars['ID']['output']>;
157642
+ degradedMode: JsmChannelsDegradedMode;
156725
157643
  isLoading: Scalars['Boolean']['output'];
156726
157644
  message?: Maybe<Scalars['String']['output']>;
156727
157645
  plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
@@ -158728,6 +159646,17 @@ export type KeyValueHierarchyMap = {
158728
159646
  key?: Maybe<Scalars['String']['output']>;
158729
159647
  value?: Maybe<Scalars['String']['output']>;
158730
159648
  };
159649
+ export type KitsuneBackfillAutoTaggingInput = {
159650
+ fieldId: Scalars['ID']['input'];
159651
+ searchInput?: InputMaybe<KitsuneSearchFeedbackInput>;
159652
+ spaceAri?: InputMaybe<Scalars['ID']['input']>;
159653
+ };
159654
+ export type KitsuneBackfillAutoTaggingPayload = Payload & {
159655
+ __typename?: 'KitsuneBackfillAutoTaggingPayload';
159656
+ errors?: Maybe<Array<MutationError>>;
159657
+ job?: Maybe<KitsuneJob>;
159658
+ success: Scalars['Boolean']['output'];
159659
+ };
158731
159660
  export type KitsuneBooleanValue = {
158732
159661
  __typename?: 'KitsuneBooleanValue';
158733
159662
  _id: Scalars['ID']['output'];
@@ -160103,6 +161032,10 @@ export type KnowledgeBaseArticleEdge = {
160103
161032
  cursor?: Maybe<Scalars['String']['output']>;
160104
161033
  node?: Maybe<KnowledgeBaseArticle>;
160105
161034
  };
161035
+ export type KnowledgeBaseArticleHydrationInput = {
161036
+ articleAris: Array<Scalars['ID']['input']>;
161037
+ projectIdentifier: Scalars['String']['input'];
161038
+ };
160106
161039
  export type KnowledgeBaseArticleMetadata = {
160107
161040
  __typename?: 'KnowledgeBaseArticleMetadata';
160108
161041
  categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
@@ -160218,6 +161151,7 @@ export type KnowledgeBaseDataSourceStatusList = {
160218
161151
  entries: Array<KnowledgeBaseDataSourceStatusEntry>;
160219
161152
  };
160220
161153
  export type KnowledgeBaseDataSourceStatusResponse = KnowledgeBaseDataSourceStatusList | QueryError;
161154
+ export type KnowledgeBaseDataSourceSyncStatusResponse = KnowledgeBaseSyncCompleted | KnowledgeBaseSyncInProgress | QueryError;
160221
161155
  export declare enum KnowledgeBaseDataSourceType {
160222
161156
  Confluence = "CONFLUENCE",
160223
161157
  GoogleDrive = "GOOGLE_DRIVE",
@@ -160256,6 +161190,19 @@ export declare enum KnowledgeBaseHealthDashboardMetricErrorType {
160256
161190
  Transient = "TRANSIENT"
160257
161191
  }
160258
161192
  export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
161193
+ export type KnowledgeBaseHydrateArticlesConnection = {
161194
+ __typename?: 'KnowledgeBaseHydrateArticlesConnection';
161195
+ nodes?: Maybe<Array<KnowledgeBaseHydratedArticle>>;
161196
+ totalCount?: Maybe<Scalars['Int']['output']>;
161197
+ };
161198
+ export type KnowledgeBaseHydrateArticlesResponse = KnowledgeBaseHydrateArticlesConnection | QueryError;
161199
+ export type KnowledgeBaseHydratedArticle = {
161200
+ __typename?: 'KnowledgeBaseHydratedArticle';
161201
+ content?: Maybe<Scalars['String']['output']>;
161202
+ id: Scalars['ID']['output'];
161203
+ title?: Maybe<Scalars['String']['output']>;
161204
+ url?: Maybe<Scalars['String']['output']>;
161205
+ };
160259
161206
  export type KnowledgeBaseInaccessibleLinkedSource = {
160260
161207
  __typename?: 'KnowledgeBaseInaccessibleLinkedSource';
160261
161208
  sourceType?: Maybe<Scalars['String']['output']>;
@@ -160341,11 +161288,30 @@ export type KnowledgeBaseNotAvailableThirdPartyDataSource = {
160341
161288
  __typename?: 'KnowledgeBaseNotAvailableThirdPartyDataSource';
160342
161289
  notAvailableMarker?: Maybe<Scalars['Boolean']['output']>;
160343
161290
  };
161291
+ export type KnowledgeBaseOrgAdmin = {
161292
+ __typename?: 'KnowledgeBaseOrgAdmin';
161293
+ isOrgAdmin: Scalars['Boolean']['output'];
161294
+ };
161295
+ export type KnowledgeBaseOrgAdminResponse = KnowledgeBaseOrgAdmin | QueryError;
160344
161296
  export type KnowledgeBasePermissionUpdateRequest = {
160345
161297
  sourceARI?: InputMaybe<Scalars['ID']['input']>;
160346
161298
  sourceVisibility?: InputMaybe<Scalars['String']['input']>;
160347
161299
  viewPermission?: InputMaybe<Scalars['String']['input']>;
160348
161300
  };
161301
+ export type KnowledgeBasePermissions = {
161302
+ __typename?: 'KnowledgeBasePermissions';
161303
+ isOrgAdmin?: Maybe<KnowledgeBaseOrgAdminResponse>;
161304
+ isProjectAdmin?: Maybe<KnowledgeBaseProjectAdminResponse>;
161305
+ };
161306
+ export type KnowledgeBasePermissionsIsProjectAdminArgs = {
161307
+ projectId: Scalars['ID']['input'];
161308
+ };
161309
+ export type KnowledgeBasePermissionsResponse = KnowledgeBasePermissions | QueryError;
161310
+ export type KnowledgeBaseProjectAdmin = {
161311
+ __typename?: 'KnowledgeBaseProjectAdmin';
161312
+ isProjectAdmin: Scalars['Boolean']['output'];
161313
+ };
161314
+ export type KnowledgeBaseProjectAdminResponse = KnowledgeBaseProjectAdmin | QueryError;
160349
161315
  export type KnowledgeBaseQueryApi = {
160350
161316
  __typename?: 'KnowledgeBaseQueryApi';
160351
161317
  knowledgeBase?: Maybe<KnowledgeBaseResponse>;
@@ -160478,6 +161444,19 @@ export type KnowledgeBaseSuggestionFilters = {
160478
161444
  sourceType?: InputMaybe<Scalars['String']['input']>;
160479
161445
  sourceVisibility?: InputMaybe<Scalars['String']['input']>;
160480
161446
  };
161447
+ export type KnowledgeBaseSyncCompleted = {
161448
+ __typename?: 'KnowledgeBaseSyncCompleted';
161449
+ isFullSyncCompleted: Scalars['Boolean']['output'];
161450
+ };
161451
+ export type KnowledgeBaseSyncInProgress = {
161452
+ __typename?: 'KnowledgeBaseSyncInProgress';
161453
+ progress: KnowledgeBaseSyncProgress;
161454
+ };
161455
+ export type KnowledgeBaseSyncProgress = {
161456
+ __typename?: 'KnowledgeBaseSyncProgress';
161457
+ completed: Scalars['Int']['output'];
161458
+ total: Scalars['Int']['output'];
161459
+ };
160481
161460
  export type KnowledgeBaseThirdPartyArticle = {
160482
161461
  __typename?: 'KnowledgeBaseThirdPartyArticle';
160483
161462
  id: Scalars['ID']['output'];
@@ -163755,6 +164734,23 @@ export type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
163755
164734
  resourceUrl?: Maybe<Scalars['String']['output']>;
163756
164735
  success: Scalars['Boolean']['output'];
163757
164736
  };
164737
+ export type MarketplaceConsoleCreatePrivateOfferInput = {
164738
+ billingCycle: Scalars['String']['input'];
164739
+ currency: Scalars['String']['input'];
164740
+ customerOrgId: Scalars['ID']['input'];
164741
+ developerId: Scalars['ID']['input'];
164742
+ discountType: MarketplaceConsolePrivateOfferDiscountType;
164743
+ discountValue?: InputMaybe<Scalars['Int']['input']>;
164744
+ edition: Scalars['String']['input'];
164745
+ expiryDate: Scalars['String']['input'];
164746
+ hostingType: Scalars['String']['input'];
164747
+ listPriceCents?: InputMaybe<Scalars['Int']['input']>;
164748
+ productId: Scalars['ID']['input'];
164749
+ quantity?: InputMaybe<Scalars['Int']['input']>;
164750
+ requestId?: InputMaybe<Scalars['ID']['input']>;
164751
+ siteId?: InputMaybe<Scalars['ID']['input']>;
164752
+ termMonths?: InputMaybe<Scalars['Int']['input']>;
164753
+ };
163758
164754
  export type MarketplaceConsoleCreateVersionAssetsInput = {
163759
164755
  highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
163760
164756
  screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
@@ -164421,10 +165417,12 @@ export type MarketplaceConsoleMutationApi = {
164421
165417
  createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
164422
165418
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
164423
165419
  createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
165420
+ createPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
164424
165421
  deleteApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
164425
165422
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
164426
165423
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
164427
165424
  deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
165425
+ deletePrivateOffer?: Maybe<Scalars['Boolean']['output']>;
164428
165426
  editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
164429
165427
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
164430
165428
  makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
@@ -164433,6 +165431,7 @@ export type MarketplaceConsoleMutationApi = {
164433
165431
  refreshAppPublishWizardScreen?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
164434
165432
  regenerateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
164435
165433
  restartAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
165434
+ sharePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
164436
165435
  startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
164437
165436
  submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
164438
165437
  subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
@@ -164441,12 +165440,14 @@ export type MarketplaceConsoleMutationApi = {
164441
165440
  updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
164442
165441
  updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
164443
165442
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
165443
+ updatePrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
164444
165444
  updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
164445
165445
  updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
164446
165446
  updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
164447
165447
  upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
164448
165448
  upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
164449
165449
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
165450
+ withdrawPrivateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
164450
165451
  };
164451
165452
  export type MarketplaceConsoleMutationApiActivateEditionsArgs = {
164452
165453
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -164487,6 +165488,9 @@ export type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
164487
165488
  export type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
164488
165489
  app: MarketplaceConsoleAppInput;
164489
165490
  };
165491
+ export type MarketplaceConsoleMutationApiCreatePrivateOfferArgs = {
165492
+ input: MarketplaceConsoleCreatePrivateOfferInput;
165493
+ };
164490
165494
  export type MarketplaceConsoleMutationApiDeleteAppArgs = {
164491
165495
  deleteAppRequest: MarketplaceConsoleDeleteAppRequest;
164492
165496
  };
@@ -164500,6 +165504,9 @@ export type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
164500
165504
  export type MarketplaceConsoleMutationApiDeleteMakerContactArgs = {
164501
165505
  input: MarketplaceConsoleMakerContactDeleteInput;
164502
165506
  };
165507
+ export type MarketplaceConsoleMutationApiDeletePrivateOfferArgs = {
165508
+ offerId: Scalars['ID']['input'];
165509
+ };
164503
165510
  export type MarketplaceConsoleMutationApiEditAppVersionArgs = {
164504
165511
  editAppVersionRequest: MarketplaceConsoleEditAppVersionRequest;
164505
165512
  };
@@ -164533,6 +165540,9 @@ export type MarketplaceConsoleMutationApiRestartAppPublishWizardSessionArgs = {
164533
165540
  appSoftwareId: Scalars['ID']['input'];
164534
165541
  submissionId: Scalars['ID']['input'];
164535
165542
  };
165543
+ export type MarketplaceConsoleMutationApiSharePrivateOfferArgs = {
165544
+ offerId: Scalars['ID']['input'];
165545
+ };
164536
165546
  export type MarketplaceConsoleMutationApiStartAppPublishWizardSessionArgs = {
164537
165547
  appSoftwareId: Scalars['ID']['input'];
164538
165548
  input: MarketplaceConsoleStartAppPublishWizardInput;
@@ -164560,6 +165570,9 @@ export type MarketplaceConsoleMutationApiUpdateMakerAccountAndMakerListingArgs =
164560
165570
  export type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
164561
165571
  input: MarketplaceConsoleMakerContactUpdateInput;
164562
165572
  };
165573
+ export type MarketplaceConsoleMutationApiUpdatePrivateOfferArgs = {
165574
+ input: MarketplaceConsoleUpdatePrivateOfferInput;
165575
+ };
164563
165576
  export type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
164564
165577
  input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
164565
165578
  };
@@ -164578,6 +165591,9 @@ export type MarketplaceConsoleMutationApiUpsertProgramEnrollmentArgs = {
164578
165591
  export type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
164579
165592
  url: Scalars['String']['input'];
164580
165593
  };
165594
+ export type MarketplaceConsoleMutationApiWithdrawPrivateOfferArgs = {
165595
+ offerId: Scalars['ID']['input'];
165596
+ };
164581
165597
  export type MarketplaceConsoleMutationPartialSuccessResponse = {
164582
165598
  __typename?: 'MarketplaceConsoleMutationPartialSuccessResponse';
164583
165599
  developerId: Scalars['ID']['output'];
@@ -164770,6 +165786,52 @@ export type MarketplaceConsolePrivateListingsTokens = {
164770
165786
  latestConnectVersion?: Maybe<MarketplaceConsoleLatestConnectVersion>;
164771
165787
  tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
164772
165788
  };
165789
+ export type MarketplaceConsolePrivateOffer = {
165790
+ __typename?: 'MarketplaceConsolePrivateOffer';
165791
+ acceptedAt?: Maybe<Scalars['String']['output']>;
165792
+ actorAccountId: Scalars['String']['output'];
165793
+ assignedDeveloperUserId?: Maybe<Scalars['String']['output']>;
165794
+ billingCycle: Scalars['String']['output'];
165795
+ commerceCorrelationId?: Maybe<Scalars['String']['output']>;
165796
+ createdAt: Scalars['String']['output'];
165797
+ currency: Scalars['String']['output'];
165798
+ customerOrgId: Scalars['ID']['output'];
165799
+ developerId: Scalars['ID']['output'];
165800
+ discountType: MarketplaceConsolePrivateOfferDiscountType;
165801
+ discountValue?: Maybe<Scalars['Int']['output']>;
165802
+ edition: Scalars['String']['output'];
165803
+ expiryDate: Scalars['String']['output'];
165804
+ hostingType: Scalars['String']['output'];
165805
+ latest: Scalars['Int']['output'];
165806
+ legalTermsArtifact?: Maybe<Scalars['String']['output']>;
165807
+ listPriceCents?: Maybe<Scalars['Int']['output']>;
165808
+ offerId: Scalars['ID']['output'];
165809
+ productId: Scalars['ID']['output'];
165810
+ quantity?: Maybe<Scalars['Int']['output']>;
165811
+ requestId?: Maybe<Scalars['ID']['output']>;
165812
+ siteId?: Maybe<Scalars['ID']['output']>;
165813
+ status: MarketplaceConsolePrivateOfferStatus;
165814
+ termMonths?: Maybe<Scalars['Int']['output']>;
165815
+ updatedAt: Scalars['String']['output'];
165816
+ version: Scalars['Int']['output'];
165817
+ viewedAt?: Maybe<Scalars['String']['output']>;
165818
+ viewedByAccountId?: Maybe<Scalars['String']['output']>;
165819
+ withdrawReason?: Maybe<Scalars['String']['output']>;
165820
+ };
165821
+ export declare enum MarketplaceConsolePrivateOfferDiscountType {
165822
+ FixedAmount = "FIXED_AMOUNT",
165823
+ Percentage = "PERCENTAGE"
165824
+ }
165825
+ export declare enum MarketplaceConsolePrivateOfferStatus {
165826
+ Accepted = "ACCEPTED",
165827
+ Completed = "COMPLETED",
165828
+ Draft = "DRAFT",
165829
+ Expired = "EXPIRED",
165830
+ InProcess = "IN_PROCESS",
165831
+ Shared = "SHARED",
165832
+ Viewed = "VIEWED",
165833
+ Withdrawn = "WITHDRAWN"
165834
+ }
164773
165835
  export type MarketplaceConsoleProduct = {
164774
165836
  __typename?: 'MarketplaceConsoleProduct';
164775
165837
  appKey: Scalars['ID']['output'];
@@ -165003,6 +166065,8 @@ export type MarketplaceConsoleQueryApi = {
165003
166065
  offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
165004
166066
  parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
165005
166067
  parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
166068
+ privateOffer?: Maybe<MarketplaceConsolePrivateOffer>;
166069
+ privateOffers?: Maybe<Array<MarketplaceConsolePrivateOffer>>;
165006
166070
  product?: Maybe<MarketplaceConsoleProduct>;
165007
166071
  productLifecycleJobs?: Maybe<Array<MarketplaceConsoleProductLifecycleJob>>;
165008
166072
  productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
@@ -165106,6 +166170,15 @@ export type MarketplaceConsoleQueryApiOfferingsArgs = {
165106
166170
  export type MarketplaceConsoleQueryApiParentProductPricingArgs = {
165107
166171
  product: MarketplaceConsoleParentSoftwarePricingQueryInput;
165108
166172
  };
166173
+ export type MarketplaceConsoleQueryApiPrivateOfferArgs = {
166174
+ offerId: Scalars['ID']['input'];
166175
+ };
166176
+ export type MarketplaceConsoleQueryApiPrivateOffersArgs = {
166177
+ customerOrgId?: InputMaybe<Scalars['ID']['input']>;
166178
+ developerId: Scalars['ID']['input'];
166179
+ productId?: InputMaybe<Scalars['ID']['input']>;
166180
+ status?: InputMaybe<MarketplaceConsolePrivateOfferStatus>;
166181
+ };
165109
166182
  export type MarketplaceConsoleQueryApiProductArgs = {
165110
166183
  appKey: Scalars['ID']['input'];
165111
166184
  productId: Scalars['ID']['input'];
@@ -165265,6 +166338,25 @@ export type MarketplaceConsoleUpdateMakerListingInput = {
165265
166338
  developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
165266
166339
  makerName: Scalars['String']['input'];
165267
166340
  };
166341
+ export type MarketplaceConsoleUpdatePrivateOfferInput = {
166342
+ billingCycle: Scalars['String']['input'];
166343
+ currency: Scalars['String']['input'];
166344
+ customerOrgId: Scalars['ID']['input'];
166345
+ developerId: Scalars['ID']['input'];
166346
+ discountType: MarketplaceConsolePrivateOfferDiscountType;
166347
+ discountValue?: InputMaybe<Scalars['Int']['input']>;
166348
+ edition: Scalars['String']['input'];
166349
+ expiryDate: Scalars['String']['input'];
166350
+ hostingType: Scalars['String']['input'];
166351
+ listPriceCents?: InputMaybe<Scalars['Int']['input']>;
166352
+ offerId: Scalars['ID']['input'];
166353
+ productId: Scalars['ID']['input'];
166354
+ quantity?: InputMaybe<Scalars['Int']['input']>;
166355
+ requestId?: InputMaybe<Scalars['ID']['input']>;
166356
+ siteId?: InputMaybe<Scalars['ID']['input']>;
166357
+ termMonths?: InputMaybe<Scalars['Int']['input']>;
166358
+ version: Scalars['Int']['input'];
166359
+ };
165268
166360
  export type MarketplaceConsoleUpdateProductListingApprovalStatusInput = {
165269
166361
  productId: Scalars['ID']['input'];
165270
166362
  reason?: InputMaybe<Scalars['String']['input']>;
@@ -166029,6 +167121,7 @@ export type MarketplaceStoreDataRetention = {
166029
167121
  isDataRetentionSupported: Scalars['Boolean']['output'];
166030
167122
  isRetentionDurationIndefinite?: Maybe<Scalars['Boolean']['output']>;
166031
167123
  retentionDurationInDays?: Maybe<MarketplaceStoreRetentionDurationInDays>;
167124
+ retentionReason?: Maybe<Scalars['String']['output']>;
166032
167125
  };
166033
167126
  export type MarketplaceStoreDataTransfer = {
166034
167127
  __typename?: 'MarketplaceStoreDataTransfer';
@@ -167180,6 +168273,11 @@ export type MarketplaceStoreReviewNodeWithProductListing = MarketplaceStoreAppRe
167180
168273
  totalVotes?: Maybe<Scalars['Int']['output']>;
167181
168274
  transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
167182
168275
  };
168276
+ export type MarketplaceStoreReviewRatingCount = {
168277
+ __typename?: 'MarketplaceStoreReviewRatingCount';
168278
+ count: Scalars['Int']['output'];
168279
+ rating: Scalars['Int']['output'];
168280
+ };
167183
168281
  export type MarketplaceStoreReviewSummaryContent = {
167184
168282
  __typename?: 'MarketplaceStoreReviewSummaryContent';
167185
168283
  overallFeedback: Scalars['String']['output'];
@@ -167197,6 +168295,7 @@ export type MarketplaceStoreReviewsByUserResponse = {
167197
168295
  export type MarketplaceStoreReviewsResponse = {
167198
168296
  __typename?: 'MarketplaceStoreReviewsResponse';
167199
168297
  averageStars: Scalars['Float']['output'];
168298
+ countPerRating?: Maybe<Array<MarketplaceStoreReviewRatingCount>>;
167200
168299
  id: Scalars['ID']['output'];
167201
168300
  reviews: Array<Maybe<MarketplaceStoreReviewNode>>;
167202
168301
  totalCount: Scalars['Int']['output'];
@@ -167913,6 +169012,9 @@ export type MercuryAsk = Node & {
167913
169012
  owner?: Maybe<User>;
167914
169013
  ownerId?: Maybe<Scalars['ID']['output']>;
167915
169014
  priority: MercuryAskPriority;
169015
+ promoted?: Maybe<Scalars['Boolean']['output']>;
169016
+ promotedItem?: Maybe<MercuryAskPromotedItem>;
169017
+ promotedItemId?: Maybe<Scalars['ID']['output']>;
167916
169018
  proposedBy?: Maybe<User>;
167917
169019
  proposedDate?: Maybe<MercuryAskTargetDate>;
167918
169020
  receivingOrganization?: Maybe<MercuryOrganization>;
@@ -168022,7 +169124,7 @@ export type MercuryAskActivityHistoryConnection = {
168022
169124
  pageInfo: PageInfo;
168023
169125
  totalCount?: Maybe<Scalars['Int']['output']>;
168024
169126
  };
168025
- export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryOrganization | TeamV2 | TownsquareProject;
169127
+ export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryAsk | MercuryOrganization | TeamV2 | TownsquareProject;
168026
169128
  export type MercuryAskActivityHistoryEdge = {
168027
169129
  __typename?: 'MercuryAskActivityHistoryEdge';
168028
169130
  cursor: Scalars['String']['output'];
@@ -168184,10 +169286,12 @@ export type MercuryAskEdge = {
168184
169286
  export declare enum MercuryAskEventType {
168185
169287
  AcceptProposedDate = "ACCEPT_PROPOSED_DATE",
168186
169288
  Create = "CREATE",
169289
+ Duplicate = "DUPLICATE",
168187
169290
  RejectProposedDate = "REJECT_PROPOSED_DATE",
168188
169291
  Update = "UPDATE"
168189
169292
  }
168190
169293
  export declare enum MercuryAskField {
169294
+ Ask = "ASK",
168191
169295
  ConnectedWork = "CONNECTED_WORK",
168192
169296
  CustomCheckbox = "CUSTOM_CHECKBOX",
168193
169297
  CustomDate = "CUSTOM_DATE",
@@ -168246,6 +169350,7 @@ export declare enum MercuryAskPriority {
168246
169350
  Low = "LOW",
168247
169351
  Medium = "MEDIUM"
168248
169352
  }
169353
+ export type MercuryAskPromotedItem = JiraIssue | MercuryFocusArea;
168249
169354
  export type MercuryAskResult = MercuryAsk | QueryError;
168250
169355
  export declare enum MercuryAskStatusEnum {
168251
169356
  Accepted = "ACCEPTED",
@@ -168418,9 +169523,14 @@ export type MercuryBaselineRevision = Node & {
168418
169523
  createdDate?: Maybe<Scalars['DateTime']['output']>;
168419
169524
  endYearMonth: Scalars['String']['output'];
168420
169525
  financialVersion?: Maybe<MercuryFinancialVersion>;
169526
+ focusAreas?: Maybe<MercuryBaselineRevisionFocusAreaConnection>;
168421
169527
  id: Scalars['ID']['output'];
168422
169528
  startYearMonth: Scalars['String']['output'];
168423
169529
  };
169530
+ export type MercuryBaselineRevisionFocusAreasArgs = {
169531
+ after?: InputMaybe<Scalars['String']['input']>;
169532
+ first?: InputMaybe<Scalars['Int']['input']>;
169533
+ };
168424
169534
  export type MercuryBaselineRevisionConnection = {
168425
169535
  __typename?: 'MercuryBaselineRevisionConnection';
168426
169536
  edges?: Maybe<Array<MercuryBaselineRevisionEdge>>;
@@ -168432,6 +169542,17 @@ export type MercuryBaselineRevisionEdge = {
168432
169542
  cursor: Scalars['String']['output'];
168433
169543
  node?: Maybe<MercuryBaselineRevision>;
168434
169544
  };
169545
+ export type MercuryBaselineRevisionFocusAreaConnection = {
169546
+ __typename?: 'MercuryBaselineRevisionFocusAreaConnection';
169547
+ edges?: Maybe<Array<MercuryBaselineRevisionFocusAreaEdge>>;
169548
+ pageInfo: PageInfo;
169549
+ totalCount?: Maybe<Scalars['Int']['output']>;
169550
+ };
169551
+ export type MercuryBaselineRevisionFocusAreaEdge = {
169552
+ __typename?: 'MercuryBaselineRevisionFocusAreaEdge';
169553
+ cursor: Scalars['String']['output'];
169554
+ node?: Maybe<MercuryFocusArea>;
169555
+ };
168435
169556
  export type MercuryBenefitItem = Node & {
168436
169557
  __typename?: 'MercuryBenefitItem';
168437
169558
  benefitItemSummary?: Maybe<MercuryBenefitItemSummary>;
@@ -168567,20 +169688,30 @@ export type MercuryBooleanCustomField = MercuryCustomField & {
168567
169688
  updatedBy?: Maybe<User>;
168568
169689
  updatedDate: Scalars['DateTime']['output'];
168569
169690
  };
168570
- export type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & {
169691
+ export type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
168571
169692
  __typename?: 'MercuryBooleanCustomFieldDefinition';
169693
+ capability?: Maybe<MercuryFieldCapability>;
169694
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
168572
169695
  createdBy?: Maybe<User>;
168573
169696
  createdDate: Scalars['DateTime']['output'];
168574
169697
  description?: Maybe<Scalars['String']['output']>;
168575
169698
  fieldKind: MercuryCustomFieldKind;
169699
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
168576
169700
  id: Scalars['ID']['output'];
168577
169701
  name: Scalars['String']['output'];
168578
169702
  scope: MercuryCustomFieldDefinitionScope;
168579
169703
  searchKey?: Maybe<Scalars['String']['output']>;
169704
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
168580
169705
  updatedBy?: Maybe<User>;
168581
169706
  updatedDate: Scalars['DateTime']['output'];
168582
169707
  visibility: MercuryCustomFieldVisibility;
168583
169708
  };
169709
+ export type MercuryBooleanCustomFieldDefinitionConfigurationSettingsArgs = {
169710
+ typeId?: InputMaybe<Scalars['ID']['input']>;
169711
+ };
169712
+ export type MercuryBooleanCustomFieldDefinitionTypeFieldConfigurationArgs = {
169713
+ typeId: Scalars['ID']['input'];
169714
+ };
168584
169715
  export type MercuryBooleanCustomFieldInput = {
168585
169716
  booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
168586
169717
  };
@@ -169054,6 +170185,9 @@ export declare enum MercuryCommentSortOrder {
169054
170185
  export declare enum MercuryCommentType {
169055
170186
  Funds = "FUNDS"
169056
170187
  }
170188
+ export type MercuryConfiguration = {
170189
+ id: Scalars['ID']['output'];
170190
+ };
169057
170191
  export type MercuryCostItem = Node & {
169058
170192
  __typename?: 'MercuryCostItem';
169059
170193
  costItemSummary?: Maybe<MercuryCostItemSummary>;
@@ -169787,18 +170921,28 @@ export type MercuryCustomFieldBase = {
169787
170921
  providerKey: Scalars['String']['output'];
169788
170922
  };
169789
170923
  export type MercuryCustomFieldDefinition = {
170924
+ capability?: Maybe<MercuryFieldCapability>;
170925
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
169790
170926
  createdBy?: Maybe<User>;
169791
170927
  createdDate: Scalars['DateTime']['output'];
169792
170928
  description?: Maybe<Scalars['String']['output']>;
169793
170929
  fieldKind: MercuryCustomFieldKind;
170930
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
169794
170931
  id: Scalars['ID']['output'];
169795
170932
  name: Scalars['String']['output'];
169796
170933
  scope: MercuryCustomFieldDefinitionScope;
169797
170934
  searchKey?: Maybe<Scalars['String']['output']>;
170935
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
169798
170936
  updatedBy?: Maybe<User>;
169799
170937
  updatedDate: Scalars['DateTime']['output'];
169800
170938
  visibility: MercuryCustomFieldVisibility;
169801
170939
  };
170940
+ export type MercuryCustomFieldDefinitionConfigurationSettingsArgs = {
170941
+ typeId?: InputMaybe<Scalars['ID']['input']>;
170942
+ };
170943
+ export type MercuryCustomFieldDefinitionTypeFieldConfigurationArgs = {
170944
+ typeId: Scalars['ID']['input'];
170945
+ };
169802
170946
  export type MercuryCustomFieldDefinitionConnection = {
169803
170947
  __typename?: 'MercuryCustomFieldDefinitionConnection';
169804
170948
  edges?: Maybe<Array<MercuryCustomFieldDefinitionEdge>>;
@@ -169884,20 +171028,30 @@ export type MercuryDateCustomField = MercuryCustomField & {
169884
171028
  updatedBy?: Maybe<User>;
169885
171029
  updatedDate: Scalars['DateTime']['output'];
169886
171030
  };
169887
- export type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & {
171031
+ export type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
169888
171032
  __typename?: 'MercuryDateCustomFieldDefinition';
171033
+ capability?: Maybe<MercuryFieldCapability>;
171034
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
169889
171035
  createdBy?: Maybe<User>;
169890
171036
  createdDate: Scalars['DateTime']['output'];
169891
171037
  description?: Maybe<Scalars['String']['output']>;
169892
171038
  fieldKind: MercuryCustomFieldKind;
171039
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
169893
171040
  id: Scalars['ID']['output'];
169894
171041
  name: Scalars['String']['output'];
169895
171042
  scope: MercuryCustomFieldDefinitionScope;
169896
171043
  searchKey?: Maybe<Scalars['String']['output']>;
171044
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
169897
171045
  updatedBy?: Maybe<User>;
169898
171046
  updatedDate: Scalars['DateTime']['output'];
169899
171047
  visibility: MercuryCustomFieldVisibility;
169900
171048
  };
171049
+ export type MercuryDateCustomFieldDefinitionConfigurationSettingsArgs = {
171050
+ typeId?: InputMaybe<Scalars['ID']['input']>;
171051
+ };
171052
+ export type MercuryDateCustomFieldDefinitionTypeFieldConfigurationArgs = {
171053
+ typeId: Scalars['ID']['input'];
171054
+ };
169901
171055
  export type MercuryDateCustomFieldInput = {
169902
171056
  dateValue?: InputMaybe<Scalars['Date']['input']>;
169903
171057
  };
@@ -170431,12 +171585,25 @@ export type MercuryDismissedTownsquareProjectInsight = MercuryDismissedCompoundI
170431
171585
  dismissalType: MercuryDismissalType;
170432
171586
  insightData?: Maybe<TownsquareProject>;
170433
171587
  };
171588
+ export type MercuryDuplicateAskInput = {
171589
+ id: Scalars['ID']['input'];
171590
+ ownerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
171591
+ receivingOrganizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
171592
+ receivingTeamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
171593
+ };
171594
+ export type MercuryDuplicateAskPayload = Payload & {
171595
+ __typename?: 'MercuryDuplicateAskPayload';
171596
+ duplicateAskJobId: Scalars['ID']['output'];
171597
+ errors?: Maybe<Array<MutationError>>;
171598
+ success: Scalars['Boolean']['output'];
171599
+ };
170434
171600
  export declare enum MercuryEntityType {
170435
171601
  Ask = "ASK",
170436
171602
  ChangeProposal = "CHANGE_PROPOSAL",
170437
171603
  Comment = "COMMENT",
170438
171604
  FocusArea = "FOCUS_AREA",
170439
171605
  FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
171606
+ Organization = "ORGANIZATION",
170440
171607
  OrganizationStatusUpdate = "ORGANIZATION_STATUS_UPDATE",
170441
171608
  Program = "PROGRAM",
170442
171609
  ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
@@ -170514,6 +171681,47 @@ export type MercuryExternalUser = {
170514
171681
  email?: Maybe<Scalars['String']['output']>;
170515
171682
  name?: Maybe<Scalars['String']['output']>;
170516
171683
  };
171684
+ export type MercuryFieldCapability = {
171685
+ __typename?: 'MercuryFieldCapability';
171686
+ canHide?: Maybe<Scalars['Boolean']['output']>;
171687
+ canMarkAsRequired?: Maybe<Scalars['Boolean']['output']>;
171688
+ canRelabel?: Maybe<Scalars['Boolean']['output']>;
171689
+ canShowOnGlobalCreate?: Maybe<Scalars['Boolean']['output']>;
171690
+ };
171691
+ export type MercuryFieldConfigurationSettings = {
171692
+ __typename?: 'MercuryFieldConfigurationSettings';
171693
+ label?: Maybe<Scalars['String']['output']>;
171694
+ required?: Maybe<Scalars['Boolean']['output']>;
171695
+ showOnGlobalCreate?: Maybe<Scalars['Boolean']['output']>;
171696
+ visible?: Maybe<Scalars['Boolean']['output']>;
171697
+ };
171698
+ export type MercuryFieldDefinition = {
171699
+ capability?: Maybe<MercuryFieldCapability>;
171700
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
171701
+ description?: Maybe<Scalars['String']['output']>;
171702
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
171703
+ id: Scalars['ID']['output'];
171704
+ name: Scalars['String']['output'];
171705
+ searchKey?: Maybe<Scalars['String']['output']>;
171706
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
171707
+ };
171708
+ export type MercuryFieldDefinitionConfigurationSettingsArgs = {
171709
+ typeId?: InputMaybe<Scalars['ID']['input']>;
171710
+ };
171711
+ export type MercuryFieldDefinitionTypeFieldConfigurationArgs = {
171712
+ typeId: Scalars['ID']['input'];
171713
+ };
171714
+ export type MercuryFieldDefinitionConnection = {
171715
+ __typename?: 'MercuryFieldDefinitionConnection';
171716
+ edges?: Maybe<Array<MercuryFieldDefinitionEdge>>;
171717
+ pageInfo: PageInfo;
171718
+ totalCount?: Maybe<Scalars['Int']['output']>;
171719
+ };
171720
+ export type MercuryFieldDefinitionEdge = {
171721
+ __typename?: 'MercuryFieldDefinitionEdge';
171722
+ cursor: Scalars['String']['output'];
171723
+ node?: Maybe<MercuryFieldDefinition>;
171724
+ };
170517
171725
  export type MercuryFinancialVersion = Node & {
170518
171726
  __typename?: 'MercuryFinancialVersion';
170519
171727
  id: Scalars['ID']['output'];
@@ -171831,6 +173039,16 @@ export declare enum MercuryFundsType {
171831
173039
  Budget = "BUDGET",
171832
173040
  Forecast = "FORECAST"
171833
173041
  }
173042
+ export type MercuryGlobalFieldConfiguration = MercuryConfiguration & {
173043
+ __typename?: 'MercuryGlobalFieldConfiguration';
173044
+ fieldDefinition?: Maybe<MercuryFieldDefinition>;
173045
+ id: Scalars['ID']['output'];
173046
+ settings?: Maybe<MercuryGlobalFieldConfigurationSettings>;
173047
+ };
173048
+ export type MercuryGlobalFieldConfigurationSettings = {
173049
+ __typename?: 'MercuryGlobalFieldConfigurationSettings';
173050
+ visible?: Maybe<Scalars['Boolean']['output']>;
173051
+ };
171834
173052
  export type MercuryGoalAggregatedStatusCount = {
171835
173053
  __typename?: 'MercuryGoalAggregatedStatusCount';
171836
173054
  krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
@@ -172482,21 +173700,31 @@ export type MercuryMultiSelectCustomField = MercuryCustomField & {
172482
173700
  updatedBy?: Maybe<User>;
172483
173701
  updatedDate: Scalars['DateTime']['output'];
172484
173702
  };
172485
- export type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
173703
+ export type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
172486
173704
  __typename?: 'MercuryMultiSelectCustomFieldDefinition';
173705
+ capability?: Maybe<MercuryFieldCapability>;
173706
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
172487
173707
  createdBy?: Maybe<User>;
172488
173708
  createdDate: Scalars['DateTime']['output'];
172489
173709
  description?: Maybe<Scalars['String']['output']>;
172490
173710
  fieldKind: MercuryCustomFieldKind;
173711
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
172491
173712
  id: Scalars['ID']['output'];
172492
173713
  name: Scalars['String']['output'];
172493
173714
  options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
172494
173715
  scope: MercuryCustomFieldDefinitionScope;
172495
173716
  searchKey?: Maybe<Scalars['String']['output']>;
173717
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
172496
173718
  updatedBy?: Maybe<User>;
172497
173719
  updatedDate: Scalars['DateTime']['output'];
172498
173720
  visibility: MercuryCustomFieldVisibility;
172499
173721
  };
173722
+ export type MercuryMultiSelectCustomFieldDefinitionConfigurationSettingsArgs = {
173723
+ typeId?: InputMaybe<Scalars['ID']['input']>;
173724
+ };
173725
+ export type MercuryMultiSelectCustomFieldDefinitionTypeFieldConfigurationArgs = {
173726
+ typeId: Scalars['ID']['input'];
173727
+ };
172500
173728
  export type MercuryMultiSelectCustomFieldInput = {
172501
173729
  options?: InputMaybe<Array<Scalars['ID']['input']>>;
172502
173730
  };
@@ -172509,20 +173737,30 @@ export type MercuryMultiUserCustomField = MercuryCustomField & {
172509
173737
  updatedBy?: Maybe<User>;
172510
173738
  updatedDate: Scalars['DateTime']['output'];
172511
173739
  };
172512
- export type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
173740
+ export type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
172513
173741
  __typename?: 'MercuryMultiUserCustomFieldDefinition';
173742
+ capability?: Maybe<MercuryFieldCapability>;
173743
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
172514
173744
  createdBy?: Maybe<User>;
172515
173745
  createdDate: Scalars['DateTime']['output'];
172516
173746
  description?: Maybe<Scalars['String']['output']>;
172517
173747
  fieldKind: MercuryCustomFieldKind;
173748
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
172518
173749
  id: Scalars['ID']['output'];
172519
173750
  name: Scalars['String']['output'];
172520
173751
  scope: MercuryCustomFieldDefinitionScope;
172521
173752
  searchKey?: Maybe<Scalars['String']['output']>;
173753
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
172522
173754
  updatedBy?: Maybe<User>;
172523
173755
  updatedDate: Scalars['DateTime']['output'];
172524
173756
  visibility: MercuryCustomFieldVisibility;
172525
173757
  };
173758
+ export type MercuryMultiUserCustomFieldDefinitionConfigurationSettingsArgs = {
173759
+ typeId?: InputMaybe<Scalars['ID']['input']>;
173760
+ };
173761
+ export type MercuryMultiUserCustomFieldDefinitionTypeFieldConfigurationArgs = {
173762
+ typeId: Scalars['ID']['input'];
173763
+ };
172526
173764
  export type MercuryMultiUserCustomFieldInput = {
172527
173765
  userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
172528
173766
  };
@@ -172584,6 +173822,7 @@ export type MercuryMutationApi = {
172584
173822
  updateFocusAreaStartDate?: Maybe<MercuryUpdateFocusAreaPayload>;
172585
173823
  updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
172586
173824
  updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
173825
+ updateFocusAreaTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
172587
173826
  updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
172588
173827
  updateUserNotificationSettings?: Maybe<MercuryUpdateUserNotificationSettingsPayload>;
172589
173828
  validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
@@ -172757,6 +173996,9 @@ export type MercuryMutationApiUpdateFocusAreaStatusUpdateArgs = {
172757
173996
  export type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
172758
173997
  input: MercuryUpdateFocusAreaTargetDateInput;
172759
173998
  };
173999
+ export type MercuryMutationApiUpdateFocusAreaTypeFieldConfigurationsArgs = {
174000
+ input: MercuryUpdateFocusAreaTypeFieldConfigurationsInput;
174001
+ };
172760
174002
  export type MercuryMutationApiUpdatePortfolioNameArgs = {
172761
174003
  input: MercuryUpdatePortfolioNameInput;
172762
174004
  };
@@ -172806,6 +174048,7 @@ export type MercuryNormalizedWork = HasMercuryProjectFields & {
172806
174048
  mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
172807
174049
  mercuryProjectType?: Maybe<MercuryProjectType>;
172808
174050
  mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
174051
+ mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
172809
174052
  mercuryTargetDate?: Maybe<Scalars['String']['output']>;
172810
174053
  mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
172811
174054
  mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
@@ -172830,6 +174073,7 @@ export type MercuryNormalizedWorkProjectType = MercuryProjectType & {
172830
174073
  export type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
172831
174074
  export type MercuryNormalizedWorkSearchFiltersInput = {
172832
174075
  applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
174076
+ cloudId?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
172833
174077
  owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
172834
174078
  source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
172835
174079
  status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -172901,20 +174145,30 @@ export type MercuryNumberCustomField = MercuryCustomField & {
172901
174145
  updatedBy?: Maybe<User>;
172902
174146
  updatedDate: Scalars['DateTime']['output'];
172903
174147
  };
172904
- export type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & {
174148
+ export type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
172905
174149
  __typename?: 'MercuryNumberCustomFieldDefinition';
174150
+ capability?: Maybe<MercuryFieldCapability>;
174151
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
172906
174152
  createdBy?: Maybe<User>;
172907
174153
  createdDate: Scalars['DateTime']['output'];
172908
174154
  description?: Maybe<Scalars['String']['output']>;
172909
174155
  fieldKind: MercuryCustomFieldKind;
174156
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
172910
174157
  id: Scalars['ID']['output'];
172911
174158
  name: Scalars['String']['output'];
172912
174159
  scope: MercuryCustomFieldDefinitionScope;
172913
174160
  searchKey?: Maybe<Scalars['String']['output']>;
174161
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
172914
174162
  updatedBy?: Maybe<User>;
172915
174163
  updatedDate: Scalars['DateTime']['output'];
172916
174164
  visibility: MercuryCustomFieldVisibility;
172917
174165
  };
174166
+ export type MercuryNumberCustomFieldDefinitionConfigurationSettingsArgs = {
174167
+ typeId?: InputMaybe<Scalars['ID']['input']>;
174168
+ };
174169
+ export type MercuryNumberCustomFieldDefinitionTypeFieldConfigurationArgs = {
174170
+ typeId: Scalars['ID']['input'];
174171
+ };
172918
174172
  export type MercuryNumberCustomFieldInput = {
172919
174173
  numberValue?: InputMaybe<Scalars['Float']['input']>;
172920
174174
  };
@@ -173034,6 +174288,29 @@ export type MercuryOrganizationActivityHistoryEdge = {
173034
174288
  export type MercuryOrganizationActivitySort = {
173035
174289
  order: SortOrder;
173036
174290
  };
174291
+ export type MercuryOrganizationAvailabilityRange = {
174292
+ __typename?: 'MercuryOrganizationAvailabilityRange';
174293
+ createdBy?: Maybe<User>;
174294
+ createdDate?: Maybe<Scalars['DateTime']['output']>;
174295
+ endDate?: Maybe<Scalars['Date']['output']>;
174296
+ id: Scalars['ID']['output'];
174297
+ organizationMembershipId: Scalars['ID']['output'];
174298
+ role?: Maybe<MercuryFunctionalRole>;
174299
+ startDate: Scalars['Date']['output'];
174300
+ updatedBy?: Maybe<User>;
174301
+ updatedDate?: Maybe<Scalars['DateTime']['output']>;
174302
+ };
174303
+ export type MercuryOrganizationAvailabilityRangeConnection = {
174304
+ __typename?: 'MercuryOrganizationAvailabilityRangeConnection';
174305
+ edges?: Maybe<Array<Maybe<MercuryOrganizationAvailabilityRangeEdge>>>;
174306
+ pageInfo: PageInfo;
174307
+ totalCount?: Maybe<Scalars['Int']['output']>;
174308
+ };
174309
+ export type MercuryOrganizationAvailabilityRangeEdge = {
174310
+ __typename?: 'MercuryOrganizationAvailabilityRangeEdge';
174311
+ cursor: Scalars['String']['output'];
174312
+ node?: Maybe<MercuryOrganizationAvailabilityRange>;
174313
+ };
173037
174314
  export type MercuryOrganizationCapacity = {
173038
174315
  __typename?: 'MercuryOrganizationCapacity';
173039
174316
  count: Scalars['BigDecimal']['output'];
@@ -173182,6 +174459,7 @@ export type MercuryOrganizationListSummary = {
173182
174459
  };
173183
174460
  export type MercuryOrganizationMembership = Node & {
173184
174461
  __typename?: 'MercuryOrganizationMembership';
174462
+ availabilityRanges?: Maybe<MercuryOrganizationAvailabilityRangeConnection>;
173185
174463
  createdBy?: Maybe<User>;
173186
174464
  createdDate: Scalars['DateTime']['output'];
173187
174465
  endDate?: Maybe<Scalars['Date']['output']>;
@@ -173193,6 +174471,10 @@ export type MercuryOrganizationMembership = Node & {
173193
174471
  updatedDate: Scalars['DateTime']['output'];
173194
174472
  user?: Maybe<User>;
173195
174473
  };
174474
+ export type MercuryOrganizationMembershipAvailabilityRangesArgs = {
174475
+ after?: InputMaybe<Scalars['String']['input']>;
174476
+ first?: InputMaybe<Scalars['Int']['input']>;
174477
+ };
173196
174478
  export type MercuryOrganizationMembershipTeamsArgs = {
173197
174479
  after?: InputMaybe<Scalars['String']['input']>;
173198
174480
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -173536,8 +174818,7 @@ export type MercuryOrganizationsMutationApi = {
173536
174818
  unStarOrganizationView?: Maybe<MercuryUnStarOrganizationViewPayload>;
173537
174819
  unarchiveFunctionalRole?: Maybe<MercuryUnarchiveFunctionalRolePayload>;
173538
174820
  unarchiveOrganization?: Maybe<MercuryUnarchiveOrganizationPayload>;
173539
- updateFunctionalRoleDescription?: Maybe<MercuryUpdateFunctionalRolePayload>;
173540
- updateFunctionalRoleName?: Maybe<MercuryUpdateFunctionalRolePayload>;
174821
+ updateFunctionalRole?: Maybe<MercuryUpdateFunctionalRolePayload>;
173541
174822
  updateOrganizationAboutContent?: Maybe<MercuryUpdateOrganizationPayload>;
173542
174823
  updateOrganizationCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
173543
174824
  updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
@@ -173707,11 +174988,8 @@ export type MercuryOrganizationsMutationApiUnarchiveFunctionalRoleArgs = {
173707
174988
  export type MercuryOrganizationsMutationApiUnarchiveOrganizationArgs = {
173708
174989
  input: MercuryUnarchiveOrganizationInput;
173709
174990
  };
173710
- export type MercuryOrganizationsMutationApiUpdateFunctionalRoleDescriptionArgs = {
173711
- input: MercuryUpdateFunctionalRoleDescriptionInput;
173712
- };
173713
- export type MercuryOrganizationsMutationApiUpdateFunctionalRoleNameArgs = {
173714
- input: MercuryUpdateFunctionalRoleNameInput;
174991
+ export type MercuryOrganizationsMutationApiUpdateFunctionalRoleArgs = {
174992
+ input: MercuryUpdateFunctionalRoleInput;
173715
174993
  };
173716
174994
  export type MercuryOrganizationsMutationApiUpdateOrganizationAboutContentArgs = {
173717
174995
  input: MercuryUpdateOrganizationAboutContentInput;
@@ -173980,6 +175258,7 @@ export type MercuryPlan = Node & {
173980
175258
  organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
173981
175259
  startDate: Scalars['Date']['output'];
173982
175260
  type: MercuryPlanType;
175261
+ userPermissions?: Maybe<Array<MercuryPlanPermission>>;
173983
175262
  };
173984
175263
  export type MercuryPlanFocusAreaLinksArgs = {
173985
175264
  after?: InputMaybe<Scalars['String']['input']>;
@@ -174074,6 +175353,13 @@ export type MercuryPlanOrganizationAuthority = {
174074
175353
  __typename?: 'MercuryPlanOrganizationAuthority';
174075
175354
  organizationPlanAuthorityPosition?: Maybe<MercuryOrganizationPlanAuthorityPosition>;
174076
175355
  };
175356
+ export declare enum MercuryPlanPermission {
175357
+ DeleteDraftOrganizationPlan = "DELETE_DRAFT_ORGANIZATION_PLAN",
175358
+ EditDraftOrganizationPlan = "EDIT_DRAFT_ORGANIZATION_PLAN",
175359
+ EditLiveOrganizationPlan = "EDIT_LIVE_ORGANIZATION_PLAN",
175360
+ EditOrganizationPlanFocusArea = "EDIT_ORGANIZATION_PLAN_FOCUS_AREA",
175361
+ EditOrganizationPlanWork = "EDIT_ORGANIZATION_PLAN_WORK"
175362
+ }
174077
175363
  export declare enum MercuryPlanType {
174078
175364
  Baseline = "BASELINE",
174079
175365
  Draft = "DRAFT"
@@ -174629,6 +175915,7 @@ export type MercuryQueryApi = {
174629
175915
  focusAreaCount?: Maybe<Scalars['Int']['output']>;
174630
175916
  focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
174631
175917
  focusAreaCustomFields?: Maybe<Array<MercuryFocusAreaCustomFieldValuesByFocusArea>>;
175918
+ focusAreaFieldDefinitions?: Maybe<MercuryFieldDefinitionConnection>;
174632
175919
  focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
174633
175920
  focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
174634
175921
  focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
@@ -174731,6 +176018,9 @@ export type MercuryQueryApiFocusAreaCustomFieldsArgs = {
174731
176018
  customFieldDefinitionIds: Array<Scalars['ID']['input']>;
174732
176019
  focusAreaIds: Array<Scalars['ID']['input']>;
174733
176020
  };
176021
+ export type MercuryQueryApiFocusAreaFieldDefinitionsArgs = {
176022
+ cloudId: Scalars['ID']['input'];
176023
+ };
174734
176024
  export type MercuryQueryApiFocusAreaHierarchiesArgs = {
174735
176025
  ids: Array<Scalars['ID']['input']>;
174736
176026
  };
@@ -175674,21 +176964,31 @@ export type MercurySingleSelectCustomField = MercuryCustomField & {
175674
176964
  updatedBy?: Maybe<User>;
175675
176965
  updatedDate: Scalars['DateTime']['output'];
175676
176966
  };
175677
- export type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
176967
+ export type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
175678
176968
  __typename?: 'MercurySingleSelectCustomFieldDefinition';
176969
+ capability?: Maybe<MercuryFieldCapability>;
176970
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
175679
176971
  createdBy?: Maybe<User>;
175680
176972
  createdDate: Scalars['DateTime']['output'];
175681
176973
  description?: Maybe<Scalars['String']['output']>;
175682
176974
  fieldKind: MercuryCustomFieldKind;
176975
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
175683
176976
  id: Scalars['ID']['output'];
175684
176977
  name: Scalars['String']['output'];
175685
176978
  options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
175686
176979
  scope: MercuryCustomFieldDefinitionScope;
175687
176980
  searchKey?: Maybe<Scalars['String']['output']>;
176981
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
175688
176982
  updatedBy?: Maybe<User>;
175689
176983
  updatedDate: Scalars['DateTime']['output'];
175690
176984
  visibility: MercuryCustomFieldVisibility;
175691
176985
  };
176986
+ export type MercurySingleSelectCustomFieldDefinitionConfigurationSettingsArgs = {
176987
+ typeId?: InputMaybe<Scalars['ID']['input']>;
176988
+ };
176989
+ export type MercurySingleSelectCustomFieldDefinitionTypeFieldConfigurationArgs = {
176990
+ typeId: Scalars['ID']['input'];
176991
+ };
175692
176992
  export type MercurySingleSelectCustomFieldInput = {
175693
176993
  option?: InputMaybe<Scalars['ID']['input']>;
175694
176994
  };
@@ -175701,20 +177001,30 @@ export type MercurySingleUserCustomField = MercuryCustomField & {
175701
177001
  updatedBy?: Maybe<User>;
175702
177002
  updatedDate: Scalars['DateTime']['output'];
175703
177003
  };
175704
- export type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
177004
+ export type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
175705
177005
  __typename?: 'MercurySingleUserCustomFieldDefinition';
177006
+ capability?: Maybe<MercuryFieldCapability>;
177007
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
175706
177008
  createdBy?: Maybe<User>;
175707
177009
  createdDate: Scalars['DateTime']['output'];
175708
177010
  description?: Maybe<Scalars['String']['output']>;
175709
177011
  fieldKind: MercuryCustomFieldKind;
177012
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
175710
177013
  id: Scalars['ID']['output'];
175711
177014
  name: Scalars['String']['output'];
175712
177015
  scope: MercuryCustomFieldDefinitionScope;
175713
177016
  searchKey?: Maybe<Scalars['String']['output']>;
177017
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
175714
177018
  updatedBy?: Maybe<User>;
175715
177019
  updatedDate: Scalars['DateTime']['output'];
175716
177020
  visibility: MercuryCustomFieldVisibility;
175717
177021
  };
177022
+ export type MercurySingleUserCustomFieldDefinitionConfigurationSettingsArgs = {
177023
+ typeId?: InputMaybe<Scalars['ID']['input']>;
177024
+ };
177025
+ export type MercurySingleUserCustomFieldDefinitionTypeFieldConfigurationArgs = {
177026
+ typeId: Scalars['ID']['input'];
177027
+ };
175718
177028
  export type MercurySingleUserCustomFieldInput = {
175719
177029
  userId?: InputMaybe<Scalars['ID']['input']>;
175720
177030
  };
@@ -176209,6 +177519,25 @@ export type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
176209
177519
  export type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
176210
177520
  id: Scalars['ID']['input'];
176211
177521
  };
177522
+ export type MercurySystemFieldDefinition = MercuryFieldDefinition & {
177523
+ __typename?: 'MercurySystemFieldDefinition';
177524
+ capability?: Maybe<MercuryFieldCapability>;
177525
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
177526
+ description?: Maybe<Scalars['String']['output']>;
177527
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
177528
+ id: Scalars['ID']['output'];
177529
+ localizationKey?: Maybe<Scalars['String']['output']>;
177530
+ localizedName?: Maybe<Scalars['String']['output']>;
177531
+ name: Scalars['String']['output'];
177532
+ searchKey: Scalars['String']['output'];
177533
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
177534
+ };
177535
+ export type MercurySystemFieldDefinitionConfigurationSettingsArgs = {
177536
+ typeId?: InputMaybe<Scalars['ID']['input']>;
177537
+ };
177538
+ export type MercurySystemFieldDefinitionTypeFieldConfigurationArgs = {
177539
+ typeId: Scalars['ID']['input'];
177540
+ };
176212
177541
  export type MercuryTagsMutationApi = {
176213
177542
  __typename?: 'MercuryTagsMutationApi';
176214
177543
  addTagsToEntity?: Maybe<MercuryAddTagsToEntityPayload>;
@@ -176248,20 +177577,30 @@ export type MercuryTextCustomField = MercuryCustomField & {
176248
177577
  updatedBy?: Maybe<User>;
176249
177578
  updatedDate: Scalars['DateTime']['output'];
176250
177579
  };
176251
- export type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & {
177580
+ export type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
176252
177581
  __typename?: 'MercuryTextCustomFieldDefinition';
177582
+ capability?: Maybe<MercuryFieldCapability>;
177583
+ configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
176253
177584
  createdBy?: Maybe<User>;
176254
177585
  createdDate: Scalars['DateTime']['output'];
176255
177586
  description?: Maybe<Scalars['String']['output']>;
176256
177587
  fieldKind: MercuryCustomFieldKind;
177588
+ globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
176257
177589
  id: Scalars['ID']['output'];
176258
177590
  name: Scalars['String']['output'];
176259
177591
  scope: MercuryCustomFieldDefinitionScope;
176260
177592
  searchKey?: Maybe<Scalars['String']['output']>;
177593
+ typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
176261
177594
  updatedBy?: Maybe<User>;
176262
177595
  updatedDate: Scalars['DateTime']['output'];
176263
177596
  visibility: MercuryCustomFieldVisibility;
176264
177597
  };
177598
+ export type MercuryTextCustomFieldDefinitionConfigurationSettingsArgs = {
177599
+ typeId?: InputMaybe<Scalars['ID']['input']>;
177600
+ };
177601
+ export type MercuryTextCustomFieldDefinitionTypeFieldConfigurationArgs = {
177602
+ typeId: Scalars['ID']['input'];
177603
+ };
176265
177604
  export type MercuryTextCustomFieldInput = {
176266
177605
  textValue?: InputMaybe<Scalars['String']['input']>;
176267
177606
  };
@@ -176354,6 +177693,24 @@ export type MercuryTransitionStrategicEventStatusInput = {
176354
177693
  id: Scalars['ID']['input'];
176355
177694
  statusTransitionId: Scalars['ID']['input'];
176356
177695
  };
177696
+ export type MercuryTypeFieldConfiguration = MercuryConfiguration & {
177697
+ __typename?: 'MercuryTypeFieldConfiguration';
177698
+ id: Scalars['ID']['output'];
177699
+ settings?: Maybe<MercuryFieldConfigurationSettings>;
177700
+ };
177701
+ export type MercuryTypeFieldConfigurationInput = {
177702
+ label: Scalars['String']['input'];
177703
+ required: Scalars['Boolean']['input'];
177704
+ searchKey: Scalars['ID']['input'];
177705
+ showOnCreate: Scalars['Boolean']['input'];
177706
+ visible: Scalars['Boolean']['input'];
177707
+ };
177708
+ export type MercuryTypeFieldConfigurationUpdateInput = {
177709
+ required?: InputMaybe<Scalars['Boolean']['input']>;
177710
+ searchKey: Scalars['ID']['input'];
177711
+ showOnGlobalCreate?: InputMaybe<Scalars['Boolean']['input']>;
177712
+ visible?: InputMaybe<Scalars['Boolean']['input']>;
177713
+ };
176357
177714
  export type MercuryUnStarFocusAreaInput = {
176358
177715
  focusAreaId: Scalars['ID']['input'];
176359
177716
  };
@@ -176547,6 +177904,11 @@ export type MercuryUpdateAskDescriptionInput = {
176547
177904
  description?: InputMaybe<Scalars['String']['input']>;
176548
177905
  id: Scalars['ID']['input'];
176549
177906
  };
177907
+ export type MercuryUpdateAskGlobalFieldConfigurationInput = {
177908
+ cloudId: Scalars['ID']['input'];
177909
+ searchKey: Scalars['ID']['input'];
177910
+ visible: Scalars['Boolean']['input'];
177911
+ };
176550
177912
  export type MercuryUpdateAskImpactedWorkInput = {
176551
177913
  id: Scalars['ID']['input'];
176552
177914
  impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
@@ -176609,6 +177971,10 @@ export type MercuryUpdateAskTypeDescriptionPayload = Payload & {
176609
177971
  errors?: Maybe<Array<MutationError>>;
176610
177972
  success: Scalars['Boolean']['output'];
176611
177973
  };
177974
+ export type MercuryUpdateAskTypeFieldConfigurationsInput = {
177975
+ configurations: Array<MercuryTypeFieldConfigurationUpdateInput>;
177976
+ typeId: Scalars['ID']['input'];
177977
+ };
176612
177978
  export type MercuryUpdateAskTypeNameInput = {
176613
177979
  id: Scalars['ID']['input'];
176614
177980
  name: Scalars['String']['input'];
@@ -176869,6 +178235,18 @@ export type MercuryUpdateCustomFieldDefinitionVisibilityPayload = Payload & {
176869
178235
  errors?: Maybe<Array<MutationError>>;
176870
178236
  success: Scalars['Boolean']['output'];
176871
178237
  };
178238
+ export type MercuryUpdateFieldConfigurationPayload = Payload & {
178239
+ __typename?: 'MercuryUpdateFieldConfigurationPayload';
178240
+ configuration?: Maybe<MercuryTypeFieldConfiguration>;
178241
+ errors?: Maybe<Array<MutationError>>;
178242
+ success: Scalars['Boolean']['output'];
178243
+ };
178244
+ export type MercuryUpdateFieldConfigurationsPayload = Payload & {
178245
+ __typename?: 'MercuryUpdateFieldConfigurationsPayload';
178246
+ configurations?: Maybe<Array<MercuryTypeFieldConfiguration>>;
178247
+ errors?: Maybe<Array<MutationError>>;
178248
+ success: Scalars['Boolean']['output'];
178249
+ };
176872
178250
  export type MercuryUpdateFocusAreaAboutContentInput = {
176873
178251
  aboutContent: Scalars['String']['input'];
176874
178252
  cloudId: Scalars['ID']['input'];
@@ -176935,11 +178313,12 @@ export type MercuryUpdateFocusAreaTargetDateInput = {
176935
178313
  targetDate?: InputMaybe<Scalars['String']['input']>;
176936
178314
  targetDateType?: InputMaybe<MercuryTargetDateType>;
176937
178315
  };
176938
- export type MercuryUpdateFunctionalRoleDescriptionInput = {
176939
- description?: InputMaybe<Scalars['String']['input']>;
176940
- id: Scalars['ID']['input'];
178316
+ export type MercuryUpdateFocusAreaTypeFieldConfigurationsInput = {
178317
+ configurations: Array<MercuryTypeFieldConfigurationUpdateInput>;
178318
+ typeId: Scalars['ID']['input'];
176941
178319
  };
176942
- export type MercuryUpdateFunctionalRoleNameInput = {
178320
+ export type MercuryUpdateFunctionalRoleInput = {
178321
+ description?: InputMaybe<Scalars['String']['input']>;
176943
178322
  id: Scalars['ID']['input'];
176944
178323
  name: Scalars['String']['input'];
176945
178324
  };
@@ -176949,6 +178328,12 @@ export type MercuryUpdateFunctionalRolePayload = Payload & {
176949
178328
  success: Scalars['Boolean']['output'];
176950
178329
  updatedFunctionalRole?: Maybe<MercuryFunctionalRole>;
176951
178330
  };
178331
+ export type MercuryUpdateGlobalFieldConfigurationPayload = Payload & {
178332
+ __typename?: 'MercuryUpdateGlobalFieldConfigurationPayload';
178333
+ configuration?: Maybe<MercuryGlobalFieldConfiguration>;
178334
+ errors?: Maybe<Array<MutationError>>;
178335
+ success: Scalars['Boolean']['output'];
178336
+ };
176952
178337
  export type MercuryUpdateInsightWidgetInput = {
176953
178338
  cloudId: Scalars['ID']['input'];
176954
178339
  insightWidgetId: Scalars['ID']['input'];
@@ -177890,6 +179275,7 @@ export type Mutation = {
177890
179275
  agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
177891
179276
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
177892
179277
  agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
179278
+ agentStudio_createAgentTrigger?: Maybe<AgentStudioCreateAgentTriggerPayload>;
177893
179279
  agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
177894
179280
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
177895
179281
  agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
@@ -178340,6 +179726,7 @@ export type Mutation = {
178340
179726
  confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
178341
179727
  confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
178342
179728
  confluence_updateModeChange?: Maybe<ConfluenceUpdateModeChangePayload>;
179729
+ confluence_updateModeChangeAsync?: Maybe<ConfluenceUpdateModeChangeAsyncPayload>;
178343
179730
  confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
178344
179731
  confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
178345
179732
  confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
@@ -178701,6 +180088,7 @@ export type Mutation = {
178701
180088
  graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
178702
180089
  graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
178703
180090
  graphInference_inferenceEvalStart?: Maybe<GraphInferenceInferenceEvalStartResponse>;
180091
+ graphInference_inferencePreview?: Maybe<GraphInferenceInferencePreviewResponse>;
178704
180092
  graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
178705
180093
  graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
178706
180094
  graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
@@ -179127,6 +180515,7 @@ export type Mutation = {
179127
180515
  jsmTelemetry_upsertDashboardChart?: Maybe<JsmTelemetryUpsertDashboardChartResponse>;
179128
180516
  jsmTelemetry_validateTelemetryConnection?: Maybe<JsmTelemetryValidateTelemetryConnectionPayload>;
179129
180517
  jsw?: Maybe<JswMutation>;
180518
+ kitsune_backfillAutoTagging?: Maybe<KitsuneBackfillAutoTaggingPayload>;
179130
180519
  kitsune_createConnectorConfig?: Maybe<KitsuneCreateConnectorConfigPayload>;
179131
180520
  kitsune_createCustomer?: Maybe<KitsuneCustomer>;
179132
180521
  kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
@@ -179266,6 +180655,7 @@ export type Mutation = {
179266
180655
  mercury_deleteAskCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
179267
180656
  mercury_deleteAskLink?: Maybe<MercuryDeleteAskLinkPayload>;
179268
180657
  mercury_deleteAskStatusUpdate?: Maybe<MercuryDeleteAskStatusUpdatePayload>;
180658
+ mercury_duplicateAsk?: Maybe<MercuryDuplicateAskPayload>;
179269
180659
  mercury_funds?: Maybe<MercuryFundsMutationApi>;
179270
180660
  mercury_insights?: Maybe<MercuryInsightsMutationApi>;
179271
180661
  mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
@@ -179284,6 +180674,7 @@ export type Mutation = {
179284
180674
  mercury_updateAskCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
179285
180675
  mercury_updateAskCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
179286
180676
  mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
180677
+ mercury_updateAskGlobalFieldConfiguration?: Maybe<MercuryUpdateGlobalFieldConfigurationPayload>;
179287
180678
  mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
179288
180679
  mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
179289
180680
  mercury_updateAskName?: Maybe<MercuryUpsertAskPayload>;
@@ -179300,6 +180691,7 @@ export type Mutation = {
179300
180691
  mercury_updateAskSubmittingOrganization?: Maybe<MercuryUpsertAskPayload>;
179301
180692
  mercury_updateAskSubmittingTeam?: Maybe<MercuryUpsertAskPayload>;
179302
180693
  mercury_updateAskTypeDescription?: Maybe<MercuryUpdateAskTypeDescriptionPayload>;
180694
+ mercury_updateAskTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
179303
180695
  mercury_updateAskTypeName?: Maybe<MercuryUpdateAskTypeNamePayload>;
179304
180696
  migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
179305
180697
  moveBlog?: Maybe<MoveBlogPayload>;
@@ -179906,6 +181298,10 @@ export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
179906
181298
  templateId: Scalars['ID']['input'];
179907
181299
  usePermission?: InputMaybe<AgentStudioTemplateUsePermission>;
179908
181300
  };
181301
+ export type MutationAgentStudio_CreateAgentTriggerArgs = {
181302
+ id: Scalars['ID']['input'];
181303
+ input: AgentStudioCreateAgentTriggerInput;
181304
+ };
179909
181305
  export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
179910
181306
  cloudId: Scalars['String']['input'];
179911
181307
  input: AgentStudioCreateBatchEvaluationJobInput;
@@ -181623,6 +183019,9 @@ export type MutationConfluence_UpdateMarkdownModeArgs = {
181623
183019
  export type MutationConfluence_UpdateModeChangeArgs = {
181624
183020
  cloudId: Scalars['ID']['input'];
181625
183021
  };
183022
+ export type MutationConfluence_UpdateModeChangeAsyncArgs = {
183023
+ cloudId: Scalars['ID']['input'];
183024
+ };
181626
183025
  export type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
181627
183026
  cloudId: Scalars['ID']['input'];
181628
183027
  input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
@@ -182863,6 +184262,9 @@ export type MutationGraphInference_InferenceEvalArgs = {
182863
184262
  export type MutationGraphInference_InferenceEvalStartArgs = {
182864
184263
  input: GraphInferenceInferenceEvalInput;
182865
184264
  };
184265
+ export type MutationGraphInference_InferencePreviewArgs = {
184266
+ input: GraphInferenceInferencePreviewInput;
184267
+ };
182866
184268
  export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
182867
184269
  input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
182868
184270
  };
@@ -184227,6 +185629,9 @@ export type MutationJsmTelemetry_ValidateTelemetryConnectionArgs = {
184227
185629
  cloudId?: InputMaybe<Scalars['ID']['input']>;
184228
185630
  input: JsmTelemetryValidateTelemetryConnectionInput;
184229
185631
  };
185632
+ export type MutationKitsune_BackfillAutoTaggingArgs = {
185633
+ input: KitsuneBackfillAutoTaggingInput;
185634
+ };
184230
185635
  export type MutationKitsune_CreateConnectorConfigArgs = {
184231
185636
  input: KitsuneCreateConnectorConfigInput;
184232
185637
  };
@@ -184751,6 +186156,9 @@ export type MutationMercury_DeleteAskLinkArgs = {
184751
186156
  export type MutationMercury_DeleteAskStatusUpdateArgs = {
184752
186157
  input: MercuryDeleteAskStatusUpdateInput;
184753
186158
  };
186159
+ export type MutationMercury_DuplicateAskArgs = {
186160
+ input: MercuryDuplicateAskInput;
186161
+ };
184754
186162
  export type MutationMercury_PromoteWorkItemToImpactedWorkArgs = {
184755
186163
  input: MercuryPromoteWorkItemToImpactedWorkInput;
184756
186164
  };
@@ -184781,6 +186189,9 @@ export type MutationMercury_UpdateAskCustomFieldDefinitionOptionArgs = {
184781
186189
  export type MutationMercury_UpdateAskDescriptionArgs = {
184782
186190
  input: MercuryUpdateAskDescriptionInput;
184783
186191
  };
186192
+ export type MutationMercury_UpdateAskGlobalFieldConfigurationArgs = {
186193
+ input: MercuryUpdateAskGlobalFieldConfigurationInput;
186194
+ };
184784
186195
  export type MutationMercury_UpdateAskImpactedWorkArgs = {
184785
186196
  input: MercuryUpdateAskImpactedWorkInput;
184786
186197
  };
@@ -184829,6 +186240,9 @@ export type MutationMercury_UpdateAskSubmittingTeamArgs = {
184829
186240
  export type MutationMercury_UpdateAskTypeDescriptionArgs = {
184830
186241
  input: MercuryUpdateAskTypeDescriptionInput;
184831
186242
  };
186243
+ export type MutationMercury_UpdateAskTypeFieldConfigurationsArgs = {
186244
+ input: MercuryUpdateAskTypeFieldConfigurationsInput;
186245
+ };
184832
186246
  export type MutationMercury_UpdateAskTypeNameArgs = {
184833
186247
  input: MercuryUpdateAskTypeNameInput;
184834
186248
  };
@@ -188675,6 +190089,7 @@ export type PsmActiveSensor = {
188675
190089
  };
188676
190090
  export type PsmActiveSensors = {
188677
190091
  __typename?: 'PsmActiveSensors';
190092
+ errors?: Maybe<Array<QueryError>>;
188678
190093
  generatedAt?: Maybe<Scalars['DateTime']['output']>;
188679
190094
  sensors?: Maybe<Array<PsmActiveSensor>>;
188680
190095
  };
@@ -189155,6 +190570,8 @@ export type PsmRemediationBreakdownInput = {
189155
190570
  export type PsmRemediationBreakdownResult = {
189156
190571
  __typename?: 'PsmRemediationBreakdownResult';
189157
190572
  buckets: Array<PsmRemediationBucket>;
190573
+ endTime: Scalars['DateTime']['output'];
190574
+ startTime: Scalars['DateTime']['output'];
189158
190575
  };
189159
190576
  export type PsmRemediationBucket = {
189160
190577
  __typename?: 'PsmRemediationBucket';
@@ -189206,7 +190623,8 @@ export declare enum PsmRemediationStatus {
189206
190623
  Failed = "FAILED",
189207
190624
  NotAttempted = "NOT_ATTEMPTED",
189208
190625
  PendingApproval = "PENDING_APPROVAL",
189209
- Running = "RUNNING"
190626
+ Running = "RUNNING",
190627
+ Success = "SUCCESS"
189210
190628
  }
189211
190629
  export declare enum PsmRemediationTrigger {
189212
190630
  Agent = "AGENT",
@@ -189755,6 +191173,8 @@ export declare enum PushNotificationSettingGroup {
189755
191173
  }
189756
191174
  export type Query = {
189757
191175
  __typename?: 'Query';
191176
+ JsmAnalytics_insightDetails?: Maybe<JsmAnalyticsInsight>;
191177
+ JsmAnalytics_insightsResult?: Maybe<JsmAnalyticsInsightsQueryResponse>;
189758
191178
  abTestCohorts?: Maybe<Scalars['String']['output']>;
189759
191179
  actions?: Maybe<Actions>;
189760
191180
  activities?: Maybe<Activities>;
@@ -190077,11 +191497,13 @@ export type Query = {
190077
191497
  assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
190078
191498
  assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
190079
191499
  assetsVertical_depreciationRuleByAssetTypesTracking?: Maybe<AssetsVerticalDepreciationRuleByAssetTypesTrackingResult>;
191500
+ assetsVertical_depreciationRuleHardwareFilterOptions?: Maybe<AssetsVerticalDepreciationRuleHardwareFilterOptionConnection>;
190080
191501
  assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
190081
191502
  assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
190082
191503
  assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
190083
191504
  assetsVertical_hardwareObjects?: Maybe<AssetsVerticalHardwareObjectsResult>;
190084
191505
  assetsVertical_hardwareObjectsTotalCount?: Maybe<AssetsVerticalHardwareObjectsTotalCountResult>;
191506
+ assetsVertical_hardwareParentFilterOptions?: Maybe<AssetsVerticalHardwareParentFilterOptionConnection>;
190085
191507
  assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
190086
191508
  assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
190087
191509
  assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
@@ -190214,7 +191636,6 @@ export type Query = {
190214
191636
  changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
190215
191637
  changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
190216
191638
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
190217
- channelPlatform_checkOtpVerified?: Maybe<ChannelPlatformCheckOtpVerifiedResponse>;
190218
191639
  channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
190219
191640
  channelPlatform_downloadTranscript?: Maybe<ChannelPlatformDownloadTranscriptResponse>;
190220
191641
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
@@ -190222,7 +191643,6 @@ export type Query = {
190222
191643
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
190223
191644
  channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
190224
191645
  channelPlatform_getAttachmentPreviewUrl?: Maybe<ChannelPlatformAttachmentPreviewUrlResponse>;
190225
- channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
190226
191646
  channelPlatform_getClientConfigDetails?: Maybe<ChannelPlatformClientConfigDetailsResponse>;
190227
191647
  channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
190228
191648
  channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
@@ -190318,6 +191738,7 @@ export type Query = {
190318
191738
  confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
190319
191739
  confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
190320
191740
  confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
191741
+ confluence_getCloudAIConfig?: Maybe<AiConfigResponse>;
190321
191742
  confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
190322
191743
  confluence_getCutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
190323
191744
  confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
@@ -190464,6 +191885,7 @@ export type Query = {
190464
191885
  convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
190465
191886
  convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
190466
191887
  convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
191888
+ convoai_confluenceAgentSessions?: Maybe<ConvoAiConfluenceAgentSessionConnection>;
190467
191889
  convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
190468
191890
  convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
190469
191891
  convoai_jiraDuplicateWorkItems?: Maybe<ConvoAiJiraDuplicateWorkItemsConnection>;
@@ -190733,12 +192155,15 @@ export type Query = {
190733
192155
  graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
190734
192156
  graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
190735
192157
  graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
192158
+ graphInference_inferenceAppPermissions?: Maybe<GraphInferenceInferenceAppPermissions>;
190736
192159
  graphInference_inferenceAppStoredResults?: Maybe<Array<GraphInferenceInferenceAppStoredResult>>;
192160
+ graphInference_inferenceEvalPromptPreview?: Maybe<GraphInferenceInferenceEvalPromptPreviewResponse>;
190737
192161
  graphInference_inferenceEvalRun?: Maybe<GraphInferenceInferenceEvalRunResponse>;
190738
192162
  graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
190739
192163
  graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
190740
192164
  graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
190741
192165
  graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
192166
+ graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
190742
192167
  graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
190743
192168
  graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
190744
192169
  graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
@@ -191118,6 +192543,8 @@ export type Query = {
191118
192543
  graphStoreV2_customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
191119
192544
  graphStoreV2_customer360CustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemInverseConnection>;
191120
192545
  graphStoreV2_cypherQueryV2?: Maybe<GraphStoreV2CypherQueryV2Connection>;
192546
+ graphStoreV2_entityAuthorisesAtlassianMemory?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryConnection>;
192547
+ graphStoreV2_entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreV2SimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
191121
192548
  graphStoreV2_entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
191122
192549
  graphStoreV2_entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
191123
192550
  graphStoreV2_entityRepresentsConfluenceSpace?: Maybe<GraphStoreV2SimplifiedEntityRepresentsConfluenceSpaceConnection>;
@@ -191483,7 +192910,8 @@ export type Query = {
191483
192910
  graphStoreV2_inferredDecisionLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseConnection>;
191484
192911
  graphStoreV2_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection>;
191485
192912
  graphStoreV2_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
191486
- graphStoreV2_inferredEntities?: Maybe<Array<GraphStoreInferredEntityResponse>>;
192913
+ graphStoreV2_inferredProjectHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection>;
192914
+ graphStoreV2_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseConnection>;
191487
192915
  graphStoreV2_inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
191488
192916
  graphStoreV2_inferredProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityInverseConnection>;
191489
192917
  graphStoreV2_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
@@ -191962,8 +193390,12 @@ export type Query = {
191962
193390
  graphStore_dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
191963
193391
  graphStore_dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
191964
193392
  graphStore_dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
193393
+ graphStore_dynamicRelationshipAssetToTeam?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamConnection>;
193394
+ graphStore_dynamicRelationshipAssetToTeamInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToTeamInverseConnection>;
191965
193395
  graphStore_dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
191966
193396
  graphStore_dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
193397
+ graphStore_entityAuthorisesAtlassianMemory?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryConnection>;
193398
+ graphStore_entityAuthorisesAtlassianMemoryInverse?: Maybe<GraphStoreSimplifiedEntityAuthorisesAtlassianMemoryInverseConnection>;
191967
193399
  graphStore_entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
191968
193400
  graphStore_entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
191969
193401
  graphStore_entityRepresentsConfluenceSpace?: Maybe<GraphStoreSimplifiedEntityRepresentsConfluenceSpaceConnection>;
@@ -192132,6 +193564,8 @@ export type Query = {
192132
193564
  graphStore_inferredDecisionImpactsEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionImpactsEntityInverseConnection>;
192133
193565
  graphStore_inferredDecisionSourceLineageEntity?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityConnection>;
192134
193566
  graphStore_inferredDecisionSourceLineageEntityInverse?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseConnection>;
193567
+ graphStore_inferredProjectHasRelatedEntity?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection>;
193568
+ graphStore_inferredProjectHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseConnection>;
192135
193569
  graphStore_inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
192136
193570
  graphStore_inferredProjectLinksEntityInverse?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityInverseConnection>;
192137
193571
  graphStore_inferredTeamCollaboratesOnInferredProject?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectConnection>;
@@ -192935,7 +194369,7 @@ export type Query = {
192935
194369
  gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
192936
194370
  gravity_reactions?: Maybe<GravityReactionsResult>;
192937
194371
  gravity_view?: Maybe<JpdView>;
192938
- gravity_viewArrangement?: Maybe<GravityViewArrangementResult>;
194372
+ gravity_viewArrangement?: Maybe<GravityViewArrangement>;
192939
194373
  gravity_viewArrangementForEnrichment?: Maybe<GravityViewArrangementChangedEvent>;
192940
194374
  gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
192941
194375
  gravity_viewTemplates: GravityViewTemplatesResult;
@@ -193152,11 +194586,14 @@ export type Query = {
193152
194586
  knowledgeBase_capabilities?: Maybe<KnowledgeBaseCapabilitiesResponse>;
193153
194587
  knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
193154
194588
  knowledgeBase_dataSourceStatus?: Maybe<KnowledgeBaseDataSourceStatusResponse>;
194589
+ knowledgeBase_dataSourceSyncStatus?: Maybe<KnowledgeBaseDataSourceSyncStatusResponse>;
193155
194590
  knowledgeBase_eligibleDataSources?: Maybe<KnowledgeBaseEligibleDataSourcesResponse>;
193156
194591
  knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
193157
194592
  knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
194593
+ knowledgeBase_hydrateArticles?: Maybe<KnowledgeBaseHydrateArticlesResponse>;
193158
194594
  knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
193159
194595
  knowledgeBase_monthlyActiveUsers?: Maybe<KnowledgeBaseMonthlyActiveUsersResponse>;
194596
+ knowledgeBase_permissions?: Maybe<KnowledgeBasePermissionsResponse>;
193160
194597
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
193161
194598
  knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
193162
194599
  knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
@@ -193241,6 +194678,7 @@ export type Query = {
193241
194678
  mercury_askCountByStatusForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
193242
194679
  mercury_askCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
193243
194680
  mercury_askCustomFields?: Maybe<Array<MercuryAskCustomFieldValuesByAsk>>;
194681
+ mercury_askFieldDefinitions?: Maybe<MercuryFieldDefinitionConnection>;
193244
194682
  mercury_askLinksByIds?: Maybe<Array<Maybe<MercuryAskLink>>>;
193245
194683
  mercury_askTypes?: Maybe<MercuryAskTypeConnection>;
193246
194684
  mercury_askTypesByIds?: Maybe<Array<Maybe<MercuryAskType>>>;
@@ -193397,7 +194835,9 @@ export type Query = {
193397
194835
  radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
193398
194836
  radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
193399
194837
  radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
194838
+ radar_metricInsight?: Maybe<RadarMetricInsight>;
193400
194839
  radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
194840
+ radar_metricsSummary?: Maybe<RadarMetricsSummary>;
193401
194841
  radar_notificationSettings?: Maybe<Array<RadarNotification>>;
193402
194842
  radar_positionByAri?: Maybe<RadarPosition>;
193403
194843
  radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
@@ -193658,6 +195098,12 @@ export type Query = {
193658
195098
  webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
193659
195099
  workSuggestions?: Maybe<WorkSuggestions>;
193660
195100
  };
195101
+ export type QueryJsmAnalytics_InsightDetailsArgs = {
195102
+ input: JsmAnalyticsInsightsDetailInput;
195103
+ };
195104
+ export type QueryJsmAnalytics_InsightsResultArgs = {
195105
+ input: JsmAnalyticsInsightsQueryInput;
195106
+ };
193661
195107
  export type QueryAdminAnnouncementBannerSettingArgs = {
193662
195108
  id: Scalars['String']['input'];
193663
195109
  };
@@ -195419,6 +196865,12 @@ export type QueryAssetsVertical_DepreciationRuleByAssetTypesTrackingArgs = {
195419
196865
  assetTypesTrackingId: Scalars['ID']['input'];
195420
196866
  cloudId: Scalars['ID']['input'];
195421
196867
  };
196868
+ export type QueryAssetsVertical_DepreciationRuleHardwareFilterOptionsArgs = {
196869
+ after?: InputMaybe<Scalars['String']['input']>;
196870
+ cloudId: Scalars['ID']['input'];
196871
+ first?: InputMaybe<Scalars['Int']['input']>;
196872
+ verticalInstantiationId: Scalars['ID']['input'];
196873
+ };
195422
196874
  export type QueryAssetsVertical_DepreciationRulesArgs = {
195423
196875
  after?: InputMaybe<Scalars['String']['input']>;
195424
196876
  cloudId: Scalars['ID']['input'];
@@ -195444,6 +196896,12 @@ export type QueryAssetsVertical_HardwareObjectsTotalCountArgs = {
195444
196896
  cloudId: Scalars['ID']['input'];
195445
196897
  input: AssetsVerticalHardwareObjectsInput;
195446
196898
  };
196899
+ export type QueryAssetsVertical_HardwareParentFilterOptionsArgs = {
196900
+ after?: InputMaybe<Scalars['String']['input']>;
196901
+ cloudId: Scalars['ID']['input'];
196902
+ first?: InputMaybe<Scalars['Int']['input']>;
196903
+ verticalInstantiationCategoryId: Scalars['ID']['input'];
196904
+ };
195447
196905
  export type QueryAssetsVertical_InsightDefinitionsArgs = {
195448
196906
  cloudId: Scalars['ID']['input'];
195449
196907
  };
@@ -195750,6 +197208,7 @@ export type QueryAvp_GetReadOnlyDashboardArgs = {
195750
197208
  };
195751
197209
  export type QueryAvp_GetRecentDashboardsArgs = {
195752
197210
  cloudId: Scalars['ID']['input'];
197211
+ integrationId?: InputMaybe<AvpIntegrationId>;
195753
197212
  limit?: InputMaybe<Scalars['Int']['input']>;
195754
197213
  workspaceAri: Scalars['ID']['input'];
195755
197214
  };
@@ -195973,9 +197432,6 @@ export type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs = {
195973
197432
  export type QueryChannelPlatform_ChatRequestDetailsArgs = {
195974
197433
  request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
195975
197434
  };
195976
- export type QueryChannelPlatform_CheckOtpVerifiedArgs = {
195977
- conversationId: Scalars['String']['input'];
195978
- };
195979
197435
  export type QueryChannelPlatform_CreateContactArgs = {
195980
197436
  anonymousId?: InputMaybe<Scalars['String']['input']>;
195981
197437
  request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
@@ -196002,9 +197458,6 @@ export type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
196002
197458
  attachmentId: Scalars['String']['input'];
196003
197459
  issueId: Scalars['String']['input'];
196004
197460
  };
196005
- export type QueryChannelPlatform_GetChannelTokenArgs = {
196006
- request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
196007
- };
196008
197461
  export type QueryChannelPlatform_GetClientConfigDetailsArgs = {
196009
197462
  issueAri?: InputMaybe<Scalars['ID']['input']>;
196010
197463
  };
@@ -196030,7 +197483,6 @@ export type QueryChannelPlatform_GetQuickResponseArgs = {
196030
197483
  };
196031
197484
  export type QueryChannelPlatform_GetSurveyLinkArgs = {
196032
197485
  conversationId?: InputMaybe<Scalars['String']['input']>;
196033
- issueId?: InputMaybe<Scalars['String']['input']>;
196034
197486
  };
196035
197487
  export type QueryChannelPlatform_GetTicketDetailsArgs = {
196036
197488
  conversationId?: InputMaybe<Scalars['ID']['input']>;
@@ -196445,6 +197897,9 @@ export type QueryConfluence_GetAllAppsArgs = {
196445
197897
  export type QueryConfluence_GetAudioPreferenceArgs = {
196446
197898
  cloudId: Scalars['ID']['input'];
196447
197899
  };
197900
+ export type QueryConfluence_GetCloudAiConfigArgs = {
197901
+ siteAri: Scalars['ID']['input'];
197902
+ };
196448
197903
  export type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
196449
197904
  after?: InputMaybe<Scalars['String']['input']>;
196450
197905
  appId: Scalars['ID']['input'];
@@ -197179,6 +198634,12 @@ export type QueryConvoai_AvailableSkillsArgs = {
197179
198634
  last?: InputMaybe<Scalars['Int']['input']>;
197180
198635
  searchKeyword?: InputMaybe<Scalars['String']['input']>;
197181
198636
  };
198637
+ export type QueryConvoai_ConfluenceAgentSessionsArgs = {
198638
+ after?: InputMaybe<Scalars['String']['input']>;
198639
+ cloudId: Scalars['ID']['input'];
198640
+ first?: InputMaybe<Scalars['Int']['input']>;
198641
+ userAccountId: Scalars['ID']['input'];
198642
+ };
197182
198643
  export type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
197183
198644
  cloudId: Scalars['ID']['input'];
197184
198645
  pageTitle: Scalars['String']['input'];
@@ -197317,6 +198778,7 @@ export type QueryCpls_PeopleViewArgs = {
197317
198778
  filters?: InputMaybe<CplsFiltersInput>;
197318
198779
  id: Scalars['ID']['input'];
197319
198780
  includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
198781
+ timeScale?: InputMaybe<CplsTimeScaleType>;
197320
198782
  };
197321
198783
  export type QueryCpls_RecommendWorkArgs = {
197322
198784
  jiraContext: CplsJiraRecommendationContext;
@@ -197338,6 +198800,7 @@ export type QueryCpls_TimeCellsArgs = {
197338
198800
  export type QueryCpls_WorkViewArgs = {
197339
198801
  filters?: InputMaybe<CplsFiltersInput>;
197340
198802
  id: Scalars['ID']['input'];
198803
+ timeScale?: InputMaybe<CplsTimeScaleType>;
197341
198804
  };
197342
198805
  export type QueryCrossProjectIssueMentionsInCommentsArgs = {
197343
198806
  after?: InputMaybe<Scalars['String']['input']>;
@@ -198345,9 +199808,15 @@ export type QueryGraphInference_GetSimilarJiraItemsArgs = {
198345
199808
  export type QueryGraphInference_GraphclawInferV3Args = {
198346
199809
  source?: InputMaybe<Scalars['String']['input']>;
198347
199810
  };
199811
+ export type QueryGraphInference_InferenceAppPermissionsArgs = {
199812
+ cloudId: Scalars['ID']['input'];
199813
+ };
198348
199814
  export type QueryGraphInference_InferenceAppStoredResultsArgs = {
198349
199815
  input: GraphInferenceInferenceAppStoredResultsInput;
198350
199816
  };
199817
+ export type QueryGraphInference_InferenceEvalPromptPreviewArgs = {
199818
+ input: GraphInferenceInferenceEvalPromptPreviewInput;
199819
+ };
198351
199820
  export type QueryGraphInference_InferenceEvalRunArgs = {
198352
199821
  runId: Scalars['ID']['input'];
198353
199822
  };
@@ -198367,6 +199836,9 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
198367
199836
  firstEntities?: InputMaybe<Scalars['Int']['input']>;
198368
199837
  updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
198369
199838
  };
199839
+ export type QueryGraphInference_InsightsArgs = {
199840
+ input: GraphInferenceTargetInsightsInput;
199841
+ };
198370
199842
  export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
198371
199843
  contextAri: Scalars['ID']['input'];
198372
199844
  includeEnabledToolCount?: Scalars['Boolean']['input'];
@@ -200944,6 +202416,20 @@ export type QueryGraphStoreV2_CypherQueryV2Args = {
200944
202416
  queryContext?: InputMaybe<Scalars['String']['input']>;
200945
202417
  version?: InputMaybe<GraphStoreV2CypherQueryV2VersionEnum>;
200946
202418
  };
202419
+ export type QueryGraphStoreV2_EntityAuthorisesAtlassianMemoryArgs = {
202420
+ after?: InputMaybe<Scalars['String']['input']>;
202421
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202422
+ first?: InputMaybe<Scalars['Int']['input']>;
202423
+ id: Scalars['ID']['input'];
202424
+ sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
202425
+ };
202426
+ export type QueryGraphStoreV2_EntityAuthorisesAtlassianMemoryInverseArgs = {
202427
+ after?: InputMaybe<Scalars['String']['input']>;
202428
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
202429
+ first?: InputMaybe<Scalars['Int']['input']>;
202430
+ id: Scalars['ID']['input'];
202431
+ sort?: InputMaybe<GraphStoreV2EntityAuthorisesAtlassianMemorySortInput>;
202432
+ };
200947
202433
  export type QueryGraphStoreV2_EntityLinksEntityArgs = {
200948
202434
  after?: InputMaybe<Scalars['String']['input']>;
200949
202435
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -203505,8 +204991,19 @@ export type QueryGraphStoreV2_InferredDecisionSourceLineageEntityInverseArgs = {
203505
204991
  id: Scalars['ID']['input'];
203506
204992
  sort?: InputMaybe<GraphStoreV2InferredDecisionSourceLineageEntitySortInput>;
203507
204993
  };
203508
- export type QueryGraphStoreV2_InferredEntitiesArgs = {
203509
- ids: Array<Scalars['String']['input']>;
204994
+ export type QueryGraphStoreV2_InferredProjectHasRelatedEntityArgs = {
204995
+ after?: InputMaybe<Scalars['String']['input']>;
204996
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
204997
+ first?: InputMaybe<Scalars['Int']['input']>;
204998
+ id: Scalars['ID']['input'];
204999
+ sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
205000
+ };
205001
+ export type QueryGraphStoreV2_InferredProjectHasRelatedEntityInverseArgs = {
205002
+ after?: InputMaybe<Scalars['String']['input']>;
205003
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
205004
+ first?: InputMaybe<Scalars['Int']['input']>;
205005
+ id: Scalars['ID']['input'];
205006
+ sort?: InputMaybe<GraphStoreV2InferredProjectHasRelatedEntitySortInput>;
203510
205007
  };
203511
205008
  export type QueryGraphStoreV2_InferredProjectLinksEntityArgs = {
203512
205009
  after?: InputMaybe<Scalars['String']['input']>;
@@ -207117,6 +208614,22 @@ export type QueryGraphStore_DynamicRelationshipAssetToRepoInverseArgs = {
207117
208614
  queryContext?: InputMaybe<Scalars['String']['input']>;
207118
208615
  sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
207119
208616
  };
208617
+ export type QueryGraphStore_DynamicRelationshipAssetToTeamArgs = {
208618
+ after?: InputMaybe<Scalars['String']['input']>;
208619
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208620
+ first?: InputMaybe<Scalars['Int']['input']>;
208621
+ id: Scalars['ID']['input'];
208622
+ queryContext?: InputMaybe<Scalars['String']['input']>;
208623
+ sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
208624
+ };
208625
+ export type QueryGraphStore_DynamicRelationshipAssetToTeamInverseArgs = {
208626
+ after?: InputMaybe<Scalars['String']['input']>;
208627
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208628
+ first?: InputMaybe<Scalars['Int']['input']>;
208629
+ id: Scalars['ID']['input'];
208630
+ queryContext?: InputMaybe<Scalars['String']['input']>;
208631
+ sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToTeamSortInput>;
208632
+ };
207120
208633
  export type QueryGraphStore_DynamicRelationshipAssetToUserArgs = {
207121
208634
  after?: InputMaybe<Scalars['String']['input']>;
207122
208635
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -207133,6 +208646,22 @@ export type QueryGraphStore_DynamicRelationshipAssetToUserInverseArgs = {
207133
208646
  queryContext?: InputMaybe<Scalars['String']['input']>;
207134
208647
  sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
207135
208648
  };
208649
+ export type QueryGraphStore_EntityAuthorisesAtlassianMemoryArgs = {
208650
+ after?: InputMaybe<Scalars['String']['input']>;
208651
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208652
+ first?: InputMaybe<Scalars['Int']['input']>;
208653
+ id: Scalars['ID']['input'];
208654
+ queryContext?: InputMaybe<Scalars['String']['input']>;
208655
+ sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
208656
+ };
208657
+ export type QueryGraphStore_EntityAuthorisesAtlassianMemoryInverseArgs = {
208658
+ after?: InputMaybe<Scalars['String']['input']>;
208659
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
208660
+ first?: InputMaybe<Scalars['Int']['input']>;
208661
+ id: Scalars['ID']['input'];
208662
+ queryContext?: InputMaybe<Scalars['String']['input']>;
208663
+ sort?: InputMaybe<GraphStoreEntityAuthorisesAtlassianMemorySortInput>;
208664
+ };
207136
208665
  export type QueryGraphStore_EntityIsRelatedToEntityArgs = {
207137
208666
  after?: InputMaybe<Scalars['String']['input']>;
207138
208667
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -208432,6 +209961,22 @@ export type QueryGraphStore_InferredDecisionSourceLineageEntityInverseArgs = {
208432
209961
  queryContext?: InputMaybe<Scalars['String']['input']>;
208433
209962
  sort?: InputMaybe<GraphStoreInferredDecisionSourceLineageEntitySortInput>;
208434
209963
  };
209964
+ export type QueryGraphStore_InferredProjectHasRelatedEntityArgs = {
209965
+ after?: InputMaybe<Scalars['String']['input']>;
209966
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
209967
+ first?: InputMaybe<Scalars['Int']['input']>;
209968
+ id: Scalars['ID']['input'];
209969
+ queryContext?: InputMaybe<Scalars['String']['input']>;
209970
+ sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
209971
+ };
209972
+ export type QueryGraphStore_InferredProjectHasRelatedEntityInverseArgs = {
209973
+ after?: InputMaybe<Scalars['String']['input']>;
209974
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
209975
+ first?: InputMaybe<Scalars['Int']['input']>;
209976
+ id: Scalars['ID']['input'];
209977
+ queryContext?: InputMaybe<Scalars['String']['input']>;
209978
+ sort?: InputMaybe<GraphStoreInferredProjectHasRelatedEntitySortInput>;
209979
+ };
208435
209980
  export type QueryGraphStore_InferredProjectLinksEntityArgs = {
208436
209981
  after?: InputMaybe<Scalars['String']['input']>;
208437
209982
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -215067,6 +216612,7 @@ export type QueryJira_ReleaseDriversForProjectArgs = {
215067
216612
  after?: InputMaybe<Scalars['String']['input']>;
215068
216613
  first?: InputMaybe<Scalars['Int']['input']>;
215069
216614
  projectId: Scalars['ID']['input'];
216615
+ searchString?: InputMaybe<Scalars['String']['input']>;
215070
216616
  };
215071
216617
  export type QueryJira_RovoEnablementStatusArgs = {
215072
216618
  cloudId: Scalars['ID']['input'];
@@ -215538,6 +217084,11 @@ export type QueryKnowledgeBase_DataSourceStatusArgs = {
215538
217084
  cloudId: Scalars['ID']['input'];
215539
217085
  types: Array<KnowledgeBaseDataSourceType>;
215540
217086
  };
217087
+ export type QueryKnowledgeBase_DataSourceSyncStatusArgs = {
217088
+ cloudId: Scalars['ID']['input'];
217089
+ dataSourceId: Scalars['ID']['input'];
217090
+ sourceType: KnowledgeBaseDataSourceType;
217091
+ };
215541
217092
  export type QueryKnowledgeBase_EligibleDataSourcesArgs = {
215542
217093
  cloudId: Scalars['ID']['input'];
215543
217094
  };
@@ -215548,6 +217099,10 @@ export type QueryKnowledgeBase_HealthDashboardArgs = {
215548
217099
  cloudId: Scalars['ID']['input'];
215549
217100
  projectIdentifier: Scalars['String']['input'];
215550
217101
  };
217102
+ export type QueryKnowledgeBase_HydrateArticlesArgs = {
217103
+ cloudId: Scalars['ID']['input'];
217104
+ hydrationInput: KnowledgeBaseArticleHydrationInput;
217105
+ };
215551
217106
  export type QueryKnowledgeBase_LinkedSourcesArgs = {
215552
217107
  cloudId: Scalars['ID']['input'];
215553
217108
  projectIdentifier?: InputMaybe<Scalars['String']['input']>;
@@ -215556,6 +217111,9 @@ export type QueryKnowledgeBase_MonthlyActiveUsersArgs = {
215556
217111
  cloudId: Scalars['ID']['input'];
215557
217112
  projectIdentifier: Scalars['String']['input'];
215558
217113
  };
217114
+ export type QueryKnowledgeBase_PermissionsArgs = {
217115
+ cloudId: Scalars['ID']['input'];
217116
+ };
215559
217117
  export type QueryKnowledgeBase_SearchArticlesArgs = {
215560
217118
  searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
215561
217119
  };
@@ -215822,6 +217380,9 @@ export type QueryMercury_AskCustomFieldsArgs = {
215822
217380
  cloudId: Scalars['ID']['input'];
215823
217381
  customFieldDefinitionIds: Array<Scalars['ID']['input']>;
215824
217382
  };
217383
+ export type QueryMercury_AskFieldDefinitionsArgs = {
217384
+ cloudId: Scalars['ID']['input'];
217385
+ };
215825
217386
  export type QueryMercury_AskLinksByIdsArgs = {
215826
217387
  ids: Array<Scalars['ID']['input']>;
215827
217388
  };
@@ -216430,10 +217991,16 @@ export type QueryRadar_LastAppliedFilterArgs = {
216430
217991
  cloudId: Scalars['ID']['input'];
216431
217992
  pageName: Scalars['String']['input'];
216432
217993
  };
217994
+ export type QueryRadar_MetricInsightArgs = {
217995
+ input: RadarMetricInsightInput;
217996
+ };
216433
217997
  export type QueryRadar_MetricsSettingsArgs = {
216434
217998
  cloudId: Scalars['ID']['input'];
216435
217999
  metricKey?: InputMaybe<RadarOrgMetric>;
216436
218000
  };
218001
+ export type QueryRadar_MetricsSummaryArgs = {
218002
+ input: RadarMetricsSummaryInput;
218003
+ };
216437
218004
  export type QueryRadar_NotificationSettingsArgs = {
216438
218005
  cloudId: Scalars['ID']['input'];
216439
218006
  };
@@ -217634,6 +219201,14 @@ export type RadarAiConnectorsEdge = RadarEdge & {
217634
219201
  cursor: Scalars['String']['output'];
217635
219202
  node: RadarAiConnector;
217636
219203
  };
219204
+ export type RadarAiGenerationMetadata = {
219205
+ __typename?: 'RadarAiGenerationMetadata';
219206
+ cached: Scalars['Boolean']['output'];
219207
+ generatedAt: Scalars['DateTime']['output'];
219208
+ generationId: Scalars['ID']['output'];
219209
+ model: Scalars['String']['output'];
219210
+ useCaseId: Scalars['String']['output'];
219211
+ };
217637
219212
  export type RadarAiModelFieldValue = {
217638
219213
  __typename?: 'RadarAiModelFieldValue';
217639
219214
  displayValue?: Maybe<Scalars['String']['output']>;
@@ -218050,6 +219625,20 @@ export type RadarLongFieldValue = {
218050
219625
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
218051
219626
  value?: Maybe<Scalars['Long']['output']>;
218052
219627
  };
219628
+ export type RadarMetricInsight = {
219629
+ __typename?: 'RadarMetricInsight';
219630
+ content: Scalars['String']['output'];
219631
+ entityAri: Scalars['ID']['output'];
219632
+ id: Scalars['ID']['output'];
219633
+ metadata: RadarAiGenerationMetadata;
219634
+ metricKey: RadarOrgMetric;
219635
+ };
219636
+ export type RadarMetricInsightInput = {
219637
+ cloudId: Scalars['ID']['input'];
219638
+ entityAri: Scalars['ID']['input'];
219639
+ entityType: RadarMetricsSummaryEntityType;
219640
+ metricKey: RadarOrgMetric;
219641
+ };
218053
219642
  export declare enum RadarMetricScopeType {
218054
219643
  All = "ALL",
218055
219644
  FocusArea = "FOCUS_AREA",
@@ -218090,6 +219679,22 @@ export type RadarMetricValueInput = {
218090
219679
  target: Scalars['Float']['input'];
218091
219680
  tolerance?: InputMaybe<Scalars['Float']['input']>;
218092
219681
  };
219682
+ export type RadarMetricsSummary = {
219683
+ __typename?: 'RadarMetricsSummary';
219684
+ content: Scalars['String']['output'];
219685
+ entityAri: Scalars['ID']['output'];
219686
+ id: Scalars['ID']['output'];
219687
+ metadata: RadarAiGenerationMetadata;
219688
+ };
219689
+ export declare enum RadarMetricsSummaryEntityType {
219690
+ FocusArea = "FOCUS_AREA",
219691
+ Position = "POSITION"
219692
+ }
219693
+ export type RadarMetricsSummaryInput = {
219694
+ cloudId: Scalars['ID']['input'];
219695
+ entityAri: Scalars['ID']['input'];
219696
+ entityType: RadarMetricsSummaryEntityType;
219697
+ };
218093
219698
  export type RadarMoney = {
218094
219699
  __typename?: 'RadarMoney';
218095
219700
  amount: Scalars['String']['output'];
@@ -218717,12 +220322,20 @@ export declare enum RateLimitingCurrency {
218717
220322
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
218718
220323
  JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
218719
220324
  JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
220325
+ KitsuneConnectorConfig = "KITSUNE_CONNECTOR_CONFIG",
218720
220326
  KitsuneCsv = "KITSUNE_CSV",
218721
220327
  KitsuneCustomer = "KITSUNE_CUSTOMER",
220328
+ KitsuneCustomerList = "KITSUNE_CUSTOMER_LIST",
218722
220329
  KitsuneFeedback = "KITSUNE_FEEDBACK",
218723
220330
  KitsuneFeedbackList = "KITSUNE_FEEDBACK_LIST",
220331
+ KitsuneField = "KITSUNE_FIELD",
218724
220332
  KitsuneInsight = "KITSUNE_INSIGHT",
218725
220333
  KitsuneInsightList = "KITSUNE_INSIGHT_LIST",
220334
+ KitsuneSnippet = "KITSUNE_SNIPPET",
220335
+ KitsuneSnippetList = "KITSUNE_SNIPPET_LIST",
220336
+ KitsuneSpace = "KITSUNE_SPACE",
220337
+ KitsuneSpaceList = "KITSUNE_SPACE_LIST",
220338
+ KitsuneView = "KITSUNE_VIEW",
218726
220339
  KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
218727
220340
  PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
218728
220341
  PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
@@ -220259,6 +221872,7 @@ export declare enum Scope {
220259
221872
  ReadArtifactArtifacts = "READ_ARTIFACT_ARTIFACTS",
220260
221873
  ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
220261
221874
  ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
221875
+ ReadCapacityPlanningAgentInterface = "READ_CAPACITY_PLANNING_AGENT_INTERFACE",
220262
221876
  ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
220263
221877
  ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
220264
221878
  ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
@@ -220446,6 +222060,7 @@ export declare enum Scope {
220446
222060
  WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
220447
222061
  WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
220448
222062
  WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
222063
+ WriteCapacityPlanningAgentInterface = "WRITE_CAPACITY_PLANNING_AGENT_INTERFACE",
220449
222064
  WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
220450
222065
  WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
220451
222066
  WriteCompassEvent = "WRITE_COMPASS_EVENT",
@@ -238532,6 +240147,12 @@ export type TrelloCustomFieldItemValueInfo = {
238532
240147
  objectId?: Maybe<Scalars['ID']['output']>;
238533
240148
  text?: Maybe<Scalars['String']['output']>;
238534
240149
  };
240150
+ export type TrelloCustomFieldItemValueInput = {
240151
+ checked?: InputMaybe<Scalars['Boolean']['input']>;
240152
+ date?: InputMaybe<Scalars['String']['input']>;
240153
+ number?: InputMaybe<Scalars['String']['input']>;
240154
+ text?: InputMaybe<Scalars['String']['input']>;
240155
+ };
238535
240156
  export type TrelloCustomFieldOption = {
238536
240157
  __typename?: 'TrelloCustomFieldOption';
238537
240158
  color?: Maybe<Scalars['String']['output']>;
@@ -238904,6 +240525,17 @@ export type TrelloGenerateCheckItemsForCardPayload = {
238904
240525
  errors?: Maybe<Array<MutationError>>;
238905
240526
  success: Scalars['Boolean']['output'];
238906
240527
  };
240528
+ export type TrelloGenerateEmbeddingsInput = {
240529
+ dimensions: Scalars['Int']['input'];
240530
+ inputs: Array<Scalars['String']['input']>;
240531
+ modelId: Scalars['String']['input'];
240532
+ };
240533
+ export type TrelloGenerateEmbeddingsPayload = Payload & {
240534
+ __typename?: 'TrelloGenerateEmbeddingsPayload';
240535
+ embeddings?: Maybe<Array<Array<Scalars['Float']['output']>>>;
240536
+ errors?: Maybe<Array<MutationError>>;
240537
+ success: Scalars['Boolean']['output'];
240538
+ };
238907
240539
  export type TrelloHideCardCoversOnCardFrontInput = {
238908
240540
  boardId: Scalars['ID']['input'];
238909
240541
  };
@@ -240001,6 +241633,7 @@ export type TrelloMutationApi = {
240001
241633
  generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
240002
241634
  generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
240003
241635
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
241636
+ generateEmbeddings?: Maybe<TrelloGenerateEmbeddingsPayload>;
240004
241637
  hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
240005
241638
  hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
240006
241639
  initializeMemberAiPreference?: Maybe<TrelloInitializeMemberAiPreferencePayload>;
@@ -240038,6 +241671,7 @@ export type TrelloMutationApi = {
240038
241671
  sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
240039
241672
  setAiPromptInterjectionOverrides?: Maybe<TrelloSetAiPromptInterjectionOverridesPayload>;
240040
241673
  setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
241674
+ setCardCustomFieldValue?: Maybe<TrelloSetCardCustomFieldValuePayload>;
240041
241675
  setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
240042
241676
  showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
240043
241677
  showVotesOnBoard?: Maybe<TrelloShowVotesOnBoardPayload>;
@@ -240090,6 +241724,7 @@ export type TrelloMutationApi = {
240090
241724
  updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
240091
241725
  updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
240092
241726
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
241727
+ updateLabel?: Maybe<TrelloUpdateLabelPayload>;
240093
241728
  updateListName?: Maybe<TrelloUpdateListPayload>;
240094
241729
  updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
240095
241730
  updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
@@ -240289,6 +241924,9 @@ export type TrelloMutationApiGenerateCardSummaryArgs = {
240289
241924
  export type TrelloMutationApiGenerateCheckItemsForCardArgs = {
240290
241925
  input: TrelloGenerateCheckItemsForCardInput;
240291
241926
  };
241927
+ export type TrelloMutationApiGenerateEmbeddingsArgs = {
241928
+ input: TrelloGenerateEmbeddingsInput;
241929
+ };
240292
241930
  export type TrelloMutationApiHideCardCoversOnCardFrontArgs = {
240293
241931
  input: TrelloHideCardCoversOnCardFrontInput;
240294
241932
  };
@@ -240391,6 +242029,9 @@ export type TrelloMutationApiSetAiPromptInterjectionOverridesArgs = {
240391
242029
  export type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
240392
242030
  input: TrelloSetBoardBackgroundFromImageUrlInput;
240393
242031
  };
242032
+ export type TrelloMutationApiSetCardCustomFieldValueArgs = {
242033
+ input: TrelloSetCardCustomFieldValueInput;
242034
+ };
240394
242035
  export type TrelloMutationApiSetPlannerBoardOverrideArgs = {
240395
242036
  input: TrelloSetPlannerBoardOverrideInput;
240396
242037
  };
@@ -240547,6 +242188,9 @@ export type TrelloMutationApiUpdateInboxBackgroundArgs = {
240547
242188
  export type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
240548
242189
  input: TrelloUpdateKeyboardShortcutsPrefInput;
240549
242190
  };
242191
+ export type TrelloMutationApiUpdateLabelArgs = {
242192
+ input: TrelloUpdateLabelInput;
242193
+ };
240550
242194
  export type TrelloMutationApiUpdateListNameArgs = {
240551
242195
  input: TrelloUpdateListNameInput;
240552
242196
  };
@@ -242060,6 +243704,18 @@ export type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
242060
243704
  errors?: Maybe<Array<MutationError>>;
242061
243705
  success: Scalars['Boolean']['output'];
242062
243706
  };
243707
+ export type TrelloSetCardCustomFieldValueInput = {
243708
+ cardId: Scalars['ID']['input'];
243709
+ customFieldId: Scalars['ID']['input'];
243710
+ value?: InputMaybe<TrelloCustomFieldItemValueInput>;
243711
+ valueId?: InputMaybe<Scalars['ID']['input']>;
243712
+ };
243713
+ export type TrelloSetCardCustomFieldValuePayload = Payload & {
243714
+ __typename?: 'TrelloSetCardCustomFieldValuePayload';
243715
+ customFieldItem?: Maybe<TrelloCustomFieldItem>;
243716
+ errors?: Maybe<Array<MutationError>>;
243717
+ success: Scalars['Boolean']['output'];
243718
+ };
242063
243719
  export type TrelloSetPlannerBoardOverrideInput = {
242064
243720
  boardId: Scalars['ID']['input'];
242065
243721
  mode: TrelloPlannerBoardFilterMode;
@@ -242896,6 +244552,17 @@ export type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
242896
244552
  errors?: Maybe<Array<MutationError>>;
242897
244553
  success: Scalars['Boolean']['output'];
242898
244554
  };
244555
+ export type TrelloUpdateLabelInput = {
244556
+ color?: InputMaybe<Scalars['String']['input']>;
244557
+ id: Scalars['ID']['input'];
244558
+ name?: InputMaybe<Scalars['String']['input']>;
244559
+ };
244560
+ export type TrelloUpdateLabelPayload = Payload & {
244561
+ __typename?: 'TrelloUpdateLabelPayload';
244562
+ errors?: Maybe<Array<MutationError>>;
244563
+ label?: Maybe<TrelloLabel>;
244564
+ success: Scalars['Boolean']['output'];
244565
+ };
242899
244566
  export type TrelloUpdateListNameInput = {
242900
244567
  id: Scalars['ID']['input'];
242901
244568
  name: Scalars['String']['input'];
@@ -247003,6 +248670,7 @@ export type WebTriggerUrlInput = {
247003
248670
  appId: Scalars['ID']['input'];
247004
248671
  contextId: Scalars['ID']['input'];
247005
248672
  envId: Scalars['ID']['input'];
248673
+ noKeyExpiry?: InputMaybe<Scalars['Boolean']['input']>;
247006
248674
  secretKey?: InputMaybe<Scalars['String']['input']>;
247007
248675
  triggerKey: Scalars['String']['input'];
247008
248676
  };