@forge/cli-shared 9.0.1-next.3 → 9.0.1-next.5
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.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +365 -45
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -51
- package/package.json +2 -2
|
@@ -6034,6 +6034,12 @@ export type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfigurati
|
|
|
6034
6034
|
export type AgentStudioAssistantJiraAssignabilityArgs = {
|
|
6035
6035
|
cloudId: Scalars['ID']['input'];
|
|
6036
6036
|
};
|
|
6037
|
+
export type AgentStudioAssistantMcpServersArgs = {
|
|
6038
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6039
|
+
};
|
|
6040
|
+
export type AgentStudioAssistantMcpToolsArgs = {
|
|
6041
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6042
|
+
};
|
|
6037
6043
|
export type AgentStudioAssistantScenarioListArgs = {
|
|
6038
6044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6039
6045
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6097,6 +6103,12 @@ export type AgentStudioAssistantScenario = AgentStudioBaseConfiguration & AgentS
|
|
|
6097
6103
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
6098
6104
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6099
6105
|
};
|
|
6106
|
+
export type AgentStudioAssistantScenarioMcpServersArgs = {
|
|
6107
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6108
|
+
};
|
|
6109
|
+
export type AgentStudioAssistantScenarioMcpToolsArgs = {
|
|
6110
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6111
|
+
};
|
|
6100
6112
|
export type AgentStudioAuthReadinessResult = {
|
|
6101
6113
|
__typename?: 'AgentStudioAuthReadinessResult';
|
|
6102
6114
|
firstPartyApps: Array<AgentStudioFirstPartyApp>;
|
|
@@ -6128,6 +6140,12 @@ export type AgentStudioBaseConfiguration = {
|
|
|
6128
6140
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
6129
6141
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6130
6142
|
};
|
|
6143
|
+
export type AgentStudioBaseConfigurationMcpServersArgs = {
|
|
6144
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6145
|
+
};
|
|
6146
|
+
export type AgentStudioBaseConfigurationMcpToolsArgs = {
|
|
6147
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6148
|
+
};
|
|
6131
6149
|
export type AgentStudioBatchEvalConversationFilterInput = {
|
|
6132
6150
|
jobRunId?: InputMaybe<Scalars['ID']['input']>;
|
|
6133
6151
|
};
|
|
@@ -6854,6 +6872,12 @@ export type AgentStudioScenario = {
|
|
|
6854
6872
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
6855
6873
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6856
6874
|
};
|
|
6875
|
+
export type AgentStudioScenarioMcpServersArgs = {
|
|
6876
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6877
|
+
};
|
|
6878
|
+
export type AgentStudioScenarioMcpToolsArgs = {
|
|
6879
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
6880
|
+
};
|
|
6857
6881
|
export type AgentStudioScenarioInput = {
|
|
6858
6882
|
actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
|
|
6859
6883
|
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
@@ -8675,6 +8699,13 @@ export type AgentWorkspaceSmartRoutingDryRun = {
|
|
|
8675
8699
|
status: AgentWorkspaceSmartRoutingDryRunStatus;
|
|
8676
8700
|
totalCount: Scalars['Int']['output'];
|
|
8677
8701
|
};
|
|
8702
|
+
export type AgentWorkspaceSmartRoutingDryRunAgentRecommendation = {
|
|
8703
|
+
__typename?: 'AgentWorkspaceSmartRoutingDryRunAgentRecommendation';
|
|
8704
|
+
accountId: Scalars['ID']['output'];
|
|
8705
|
+
matchedSkills: Array<AgentWorkspaceSmartRoutingDryRunSkill>;
|
|
8706
|
+
requiredSkillCount: Scalars['Int']['output'];
|
|
8707
|
+
user?: Maybe<User>;
|
|
8708
|
+
};
|
|
8678
8709
|
export type AgentWorkspaceSmartRoutingDryRunResult = {
|
|
8679
8710
|
__typename?: 'AgentWorkspaceSmartRoutingDryRunResult';
|
|
8680
8711
|
accuracy?: Maybe<Scalars['Float']['output']>;
|
|
@@ -8687,6 +8718,11 @@ export type AgentWorkspaceSmartRoutingDryRunResult = {
|
|
|
8687
8718
|
sampleSize: Scalars['Int']['output'];
|
|
8688
8719
|
volumeCoverage?: Maybe<Scalars['Float']['output']>;
|
|
8689
8720
|
};
|
|
8721
|
+
export type AgentWorkspaceSmartRoutingDryRunSkill = {
|
|
8722
|
+
__typename?: 'AgentWorkspaceSmartRoutingDryRunSkill';
|
|
8723
|
+
id: Scalars['ID']['output'];
|
|
8724
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8725
|
+
};
|
|
8690
8726
|
export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
|
|
8691
8727
|
Cancelled = "CANCELLED",
|
|
8692
8728
|
Cancelling = "CANCELLING",
|
|
@@ -8698,12 +8734,17 @@ export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
|
|
|
8698
8734
|
}
|
|
8699
8735
|
export type AgentWorkspaceSmartRoutingDryRunTicket = {
|
|
8700
8736
|
__typename?: 'AgentWorkspaceSmartRoutingDryRunTicket';
|
|
8737
|
+
agentRecommendations: Array<AgentWorkspaceSmartRoutingDryRunAgentRecommendation>;
|
|
8701
8738
|
groundTruthInTable: Scalars['Boolean']['output'];
|
|
8702
8739
|
groundTruthServiceId?: Maybe<Scalars['String']['output']>;
|
|
8740
|
+
groundTruthServiceName?: Maybe<Scalars['String']['output']>;
|
|
8741
|
+
issue?: Maybe<JiraIssue>;
|
|
8742
|
+
issueARI: Scalars['ID']['output'];
|
|
8703
8743
|
issueId: Scalars['ID']['output'];
|
|
8704
8744
|
label: AgentWorkspaceSmartRoutingRoutingOutcomeLabel;
|
|
8705
8745
|
occurredAt: Scalars['DateTime']['output'];
|
|
8706
8746
|
predictedServiceId?: Maybe<Scalars['String']['output']>;
|
|
8747
|
+
predictedServiceName?: Maybe<Scalars['String']['output']>;
|
|
8707
8748
|
};
|
|
8708
8749
|
export type AgentWorkspaceSmartRoutingDryRunTicketsInput = {
|
|
8709
8750
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -15186,6 +15227,7 @@ export type AssetsVerticalRoleAssignmentError = {
|
|
|
15186
15227
|
message: Scalars['String']['output'];
|
|
15187
15228
|
};
|
|
15188
15229
|
export declare enum AssetsVerticalRoleAssignmentErrorCode {
|
|
15230
|
+
NotFound = "NOT_FOUND",
|
|
15189
15231
|
PermissionDenied = "PERMISSION_DENIED",
|
|
15190
15232
|
RoleAssignmentFailed = "ROLE_ASSIGNMENT_FAILED",
|
|
15191
15233
|
Timeout = "TIMEOUT",
|
|
@@ -16787,6 +16829,7 @@ export declare enum CcpBenefitValueAppliedOn {
|
|
|
16787
16829
|
export type CcpBillEstimateAdjustmentV3 = {
|
|
16788
16830
|
__typename?: 'CcpBillEstimateAdjustmentV3';
|
|
16789
16831
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
16832
|
+
concession?: Maybe<CcpConcession>;
|
|
16790
16833
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
16791
16834
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
16792
16835
|
promotion?: Maybe<CcpPromotion>;
|
|
@@ -16811,6 +16854,12 @@ export type CcpBillEstimateChargeQuantityV3Input = {
|
|
|
16811
16854
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
16812
16855
|
quantity?: InputMaybe<Scalars['Float']['input']>;
|
|
16813
16856
|
};
|
|
16857
|
+
export type CcpBillEstimateConcessionExtendedInput = {
|
|
16858
|
+
concessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
16859
|
+
concessionInstanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
16860
|
+
concessionInstanceReferenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
16861
|
+
promotionCode?: InputMaybe<Scalars['String']['input']>;
|
|
16862
|
+
};
|
|
16814
16863
|
export type CcpBillEstimateEndsAtDurationInput = {
|
|
16815
16864
|
interval?: InputMaybe<Scalars['String']['input']>;
|
|
16816
16865
|
intervalCount?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16841,6 +16890,7 @@ export type CcpBillEstimateItemV3 = {
|
|
|
16841
16890
|
export type CcpBillEstimateMarginV3 = {
|
|
16842
16891
|
__typename?: 'CcpBillEstimateMarginV3';
|
|
16843
16892
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
16893
|
+
concession?: Maybe<CcpConcession>;
|
|
16844
16894
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
16845
16895
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
16846
16896
|
promotion?: Maybe<CcpPromotion>;
|
|
@@ -16878,6 +16928,7 @@ export declare enum CcpBillEstimateProrationBehaviour {
|
|
|
16878
16928
|
}
|
|
16879
16929
|
export type CcpBillEstimateRequestChargeDetailsInput = {
|
|
16880
16930
|
chargeQuantities?: InputMaybe<Array<InputMaybe<CcpBillEstimateChargeQuantityInput>>>;
|
|
16931
|
+
concessions?: InputMaybe<Array<InputMaybe<CcpBillEstimateConcessionExtendedInput>>>;
|
|
16881
16932
|
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
16882
16933
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
16883
16934
|
promotions?: InputMaybe<Array<InputMaybe<CcpBillEstimatePromotionExtendedInput>>>;
|
|
@@ -16957,6 +17008,7 @@ export type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability
|
|
|
16957
17008
|
export type CcpChargeDetails = CommerceChargeDetails & {
|
|
16958
17009
|
__typename?: 'CcpChargeDetails';
|
|
16959
17010
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
17011
|
+
concessionInstances?: Maybe<Array<Maybe<CcpConcessionInstance>>>;
|
|
16960
17012
|
listPriceEstimates?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
|
|
16961
17013
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
16962
17014
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -17044,6 +17096,12 @@ export type CcpConcessionBenefit = {
|
|
|
17044
17096
|
value?: Maybe<Scalars['Float']['output']>;
|
|
17045
17097
|
values?: Maybe<Array<Maybe<CcpBenefitValue>>>;
|
|
17046
17098
|
};
|
|
17099
|
+
export type CcpConcessionDefinition = {
|
|
17100
|
+
__typename?: 'CcpConcessionDefinition';
|
|
17101
|
+
concessionId?: Maybe<Scalars['ID']['output']>;
|
|
17102
|
+
customisedValues?: Maybe<CcpCustomisedValues>;
|
|
17103
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
17104
|
+
};
|
|
17047
17105
|
export type CcpConcessionEligibilityRule = {
|
|
17048
17106
|
__typename?: 'CcpConcessionEligibilityRule';
|
|
17049
17107
|
currencies?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -17055,6 +17113,11 @@ export type CcpConcessionEligibleWindow = {
|
|
|
17055
17113
|
endTime?: Maybe<Scalars['Float']['output']>;
|
|
17056
17114
|
startTime?: Maybe<Scalars['Float']['output']>;
|
|
17057
17115
|
};
|
|
17116
|
+
export type CcpConcessionInstance = {
|
|
17117
|
+
__typename?: 'CcpConcessionInstance';
|
|
17118
|
+
concessionDefinition?: Maybe<CcpConcessionDefinition>;
|
|
17119
|
+
concessionInstanceId?: Maybe<Scalars['ID']['output']>;
|
|
17120
|
+
};
|
|
17058
17121
|
export type CcpConcessionPromotionCodeConfig = {
|
|
17059
17122
|
__typename?: 'CcpConcessionPromotionCodeConfig';
|
|
17060
17123
|
allowedRedemptionMethods?: Maybe<Array<Maybe<CcpConcessionAllowedRedemptionMethod>>>;
|
|
@@ -17734,6 +17797,7 @@ export type CcpNextCycleChange = {
|
|
|
17734
17797
|
export type CcpNextCycleChargeDetails = {
|
|
17735
17798
|
__typename?: 'CcpNextCycleChargeDetails';
|
|
17736
17799
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
17800
|
+
concessionInstances?: Maybe<Array<Maybe<CcpConcessionInstance>>>;
|
|
17737
17801
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
17738
17802
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
17739
17803
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
@@ -18557,6 +18621,7 @@ export type CcpQuote = Node & {
|
|
|
18557
18621
|
export type CcpQuoteAdjustment = {
|
|
18558
18622
|
__typename?: 'CcpQuoteAdjustment';
|
|
18559
18623
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
18624
|
+
concessionKey?: Maybe<Scalars['ID']['output']>;
|
|
18560
18625
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
18561
18626
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
18562
18627
|
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -18616,6 +18681,16 @@ export type CcpQuoteChargeQuantity = {
|
|
|
18616
18681
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
18617
18682
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
18618
18683
|
};
|
|
18684
|
+
export type CcpQuoteConcession = {
|
|
18685
|
+
__typename?: 'CcpQuoteConcession';
|
|
18686
|
+
concessionDefinition?: Maybe<CcpQuoteConcessionDefinition>;
|
|
18687
|
+
concessionInstanceKey?: Maybe<Scalars['ID']['output']>;
|
|
18688
|
+
};
|
|
18689
|
+
export type CcpQuoteConcessionDefinition = {
|
|
18690
|
+
__typename?: 'CcpQuoteConcessionDefinition';
|
|
18691
|
+
concessionKey?: Maybe<Scalars['ID']['output']>;
|
|
18692
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
18693
|
+
};
|
|
18619
18694
|
export declare enum CcpQuoteContractType {
|
|
18620
18695
|
NonStandard = "NON_STANDARD",
|
|
18621
18696
|
Standard = "STANDARD"
|
|
@@ -18642,6 +18717,7 @@ export type CcpQuoteLineItem = {
|
|
|
18642
18717
|
billingAnchor?: Maybe<CcpQuoteBillingAnchor>;
|
|
18643
18718
|
cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
18644
18719
|
chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
|
|
18720
|
+
concessions?: Maybe<Array<Maybe<CcpQuoteConcession>>>;
|
|
18645
18721
|
endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
|
|
18646
18722
|
entitlementKey?: Maybe<Scalars['ID']['output']>;
|
|
18647
18723
|
entitlementVersion?: Maybe<Scalars['String']['output']>;
|
|
@@ -18695,6 +18771,7 @@ export type CcpQuoteMargin = {
|
|
|
18695
18771
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
18696
18772
|
blended?: Maybe<Scalars['Boolean']['output']>;
|
|
18697
18773
|
blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
|
|
18774
|
+
concessionKey?: Maybe<Scalars['ID']['output']>;
|
|
18698
18775
|
percent?: Maybe<Scalars['Float']['output']>;
|
|
18699
18776
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
18700
18777
|
promotionKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19784,7 +19861,14 @@ export type CloudifyRecommendationStep = {
|
|
|
19784
19861
|
title: Scalars['String']['output'];
|
|
19785
19862
|
toolId: CloudifyToolId;
|
|
19786
19863
|
};
|
|
19787
|
-
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget;
|
|
19864
|
+
export type CloudifyRecommendationTarget = CloudifyCloudProjectTarget | CloudifySiteTarget;
|
|
19865
|
+
export type CloudifySiteTarget = {
|
|
19866
|
+
__typename?: 'CloudifySiteTarget';
|
|
19867
|
+
siteId: Scalars['ID']['output'];
|
|
19868
|
+
};
|
|
19869
|
+
export type CloudifySiteTargetInput = {
|
|
19870
|
+
siteId: Scalars['ID']['input'];
|
|
19871
|
+
};
|
|
19788
19872
|
export type CloudifyStepInput = {
|
|
19789
19873
|
arguments: Array<CloudifyArgumentInput>;
|
|
19790
19874
|
reasoning: Scalars['String']['input'];
|
|
@@ -19793,6 +19877,7 @@ export type CloudifyStepInput = {
|
|
|
19793
19877
|
};
|
|
19794
19878
|
export type CloudifyTargetInput = {
|
|
19795
19879
|
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
19880
|
+
site?: InputMaybe<CloudifySiteTargetInput>;
|
|
19796
19881
|
};
|
|
19797
19882
|
export type CloudifyToolId = {
|
|
19798
19883
|
__typename?: 'CloudifyToolId';
|
|
@@ -31071,6 +31156,7 @@ export type ConfluenceCreatePdfExportTaskForSingleContentPayload = Payload & {
|
|
|
31071
31156
|
__typename?: 'ConfluenceCreatePdfExportTaskForSingleContentPayload';
|
|
31072
31157
|
errors?: Maybe<Array<MutationError>>;
|
|
31073
31158
|
exportTaskId: Scalars['ID']['output'];
|
|
31159
|
+
exportVersion: ConfluencePagePdfExportVersion;
|
|
31074
31160
|
success: Scalars['Boolean']['output'];
|
|
31075
31161
|
};
|
|
31076
31162
|
export type ConfluenceCreateQuestionInput = {
|
|
@@ -33439,6 +33525,25 @@ export type ConfluencePageMoved = {
|
|
|
33439
33525
|
oldSpaceAlias?: Maybe<Scalars['String']['output']>;
|
|
33440
33526
|
oldSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
33441
33527
|
};
|
|
33528
|
+
export type ConfluencePagePdfExportDownloadLink = {
|
|
33529
|
+
__typename?: 'ConfluencePagePdfExportDownloadLink';
|
|
33530
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
33531
|
+
};
|
|
33532
|
+
export declare enum ConfluencePagePdfExportState {
|
|
33533
|
+
Done = "DONE",
|
|
33534
|
+
Failed = "FAILED",
|
|
33535
|
+
InProgress = "IN_PROGRESS"
|
|
33536
|
+
}
|
|
33537
|
+
export type ConfluencePagePdfExportTask = {
|
|
33538
|
+
__typename?: 'ConfluencePagePdfExportTask';
|
|
33539
|
+
exportState?: Maybe<ConfluencePagePdfExportState>;
|
|
33540
|
+
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
33541
|
+
};
|
|
33542
|
+
export declare enum ConfluencePagePdfExportVersion {
|
|
33543
|
+
V1 = "V1",
|
|
33544
|
+
V2 = "V2",
|
|
33545
|
+
V3 = "V3"
|
|
33546
|
+
}
|
|
33442
33547
|
export type ConfluencePageProperty = {
|
|
33443
33548
|
__typename?: 'ConfluencePageProperty';
|
|
33444
33549
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -43286,6 +43391,7 @@ export type DevAiAutodevNextWorkItem = {
|
|
|
43286
43391
|
id: Scalars['ID']['output'];
|
|
43287
43392
|
isOverdue?: Maybe<Scalars['Boolean']['output']>;
|
|
43288
43393
|
jiraIssue?: Maybe<JiraIssue>;
|
|
43394
|
+
pullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
43289
43395
|
repository?: Maybe<Scalars['String']['output']>;
|
|
43290
43396
|
requestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43291
43397
|
state?: Maybe<DevAiAutodevNextWorkItemState>;
|
|
@@ -47445,6 +47551,13 @@ export type ExperienceToplineGoal = {
|
|
|
47445
47551
|
percentile: Scalars['Int']['output'];
|
|
47446
47552
|
value: Scalars['Float']['output'];
|
|
47447
47553
|
};
|
|
47554
|
+
export type ExperimentApiCanAccessInput = {
|
|
47555
|
+
cloudId: Scalars['ID']['input'];
|
|
47556
|
+
};
|
|
47557
|
+
export type ExperimentApiCanAccessResource = {
|
|
47558
|
+
__typename?: 'ExperimentApiCanAccessResource';
|
|
47559
|
+
canAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
47560
|
+
};
|
|
47448
47561
|
export type Extension = {
|
|
47449
47562
|
__typename?: 'Extension';
|
|
47450
47563
|
appId: Scalars['ID']['output'];
|
|
@@ -52179,9 +52292,12 @@ export type GraphInferenceJiraEntityContextCandidate = {
|
|
|
52179
52292
|
entity?: Maybe<GraphInferenceJiraEntityContextEntityUnion>;
|
|
52180
52293
|
evidence?: Maybe<Array<GraphInferenceJiraEntityContextEvidence>>;
|
|
52181
52294
|
nodeType: Scalars['String']['output'];
|
|
52295
|
+
properties?: Maybe<Array<GraphInferenceJiraEntityContextProperty>>;
|
|
52182
52296
|
reasonCodes: Array<Scalars['String']['output']>;
|
|
52183
52297
|
score: Scalars['Float']['output'];
|
|
52184
52298
|
scoreMl?: Maybe<Scalars['Float']['output']>;
|
|
52299
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
52300
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
52185
52301
|
};
|
|
52186
52302
|
export type GraphInferenceJiraEntityContextCuratedBy = {
|
|
52187
52303
|
__typename?: 'GraphInferenceJiraEntityContextCuratedBy';
|
|
@@ -52206,6 +52322,11 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
52206
52322
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
52207
52323
|
warnings: Array<Scalars['String']['output']>;
|
|
52208
52324
|
};
|
|
52325
|
+
export type GraphInferenceJiraEntityContextProperty = {
|
|
52326
|
+
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
52327
|
+
name: Scalars['String']['output'];
|
|
52328
|
+
value: Scalars['String']['output'];
|
|
52329
|
+
};
|
|
52209
52330
|
export type GraphInferenceJiraEntityContextRoot = {
|
|
52210
52331
|
__typename?: 'GraphInferenceJiraEntityContextRoot';
|
|
52211
52332
|
ari: Scalars['String']['output'];
|
|
@@ -55781,6 +55902,7 @@ export type GraphStore = {
|
|
|
55781
55902
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
55782
55903
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
55783
55904
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
55905
|
+
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
55784
55906
|
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
55785
55907
|
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
55786
55908
|
atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
@@ -57395,6 +57517,14 @@ export type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
57395
57517
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57396
57518
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
57397
57519
|
};
|
|
57520
|
+
export type GraphStoreAtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
57521
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57522
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57523
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57524
|
+
id: Scalars['ID']['input'];
|
|
57525
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57526
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionTriggeredOnEntitySortInput>;
|
|
57527
|
+
};
|
|
57398
57528
|
export type GraphStoreAtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
57399
57529
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57400
57530
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66309,6 +66439,9 @@ export type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
66309
66439
|
export type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
66310
66440
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66311
66441
|
};
|
|
66442
|
+
export type GraphStoreAtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
66443
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66444
|
+
};
|
|
66312
66445
|
export type GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput = {
|
|
66313
66446
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66314
66447
|
};
|
|
@@ -68517,6 +68650,7 @@ export type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelationshipMetad
|
|
|
68517
68650
|
};
|
|
68518
68651
|
export type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
68519
68652
|
relationships: Array<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
68653
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68520
68654
|
};
|
|
68521
68655
|
export type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
68522
68656
|
__typename?: 'GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
@@ -68535,6 +68669,7 @@ export type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipMe
|
|
|
68535
68669
|
};
|
|
68536
68670
|
export type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
68537
68671
|
relationships: Array<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
68672
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68538
68673
|
};
|
|
68539
68674
|
export declare enum GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
68540
68675
|
Accepted = "ACCEPTED",
|
|
@@ -68563,6 +68698,7 @@ export type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipOb
|
|
|
68563
68698
|
};
|
|
68564
68699
|
export type GraphStoreCreateJiraSpaceDismissedKnowledgeBaseEntityInput = {
|
|
68565
68700
|
relationships: Array<GraphStoreCreateJiraSpaceDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
68701
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68566
68702
|
};
|
|
68567
68703
|
export type GraphStoreCreateJiraSpaceDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
68568
68704
|
__typename?: 'GraphStoreCreateJiraSpaceDismissedKnowledgeBaseEntityPayload';
|
|
@@ -68581,6 +68717,7 @@ export type GraphStoreCreateJiraSpaceDismissedKnowledgeBaseEntityRelationshipMet
|
|
|
68581
68717
|
};
|
|
68582
68718
|
export type GraphStoreCreateJiraSpaceHasLinkedKnowledgeBaseEntityInput = {
|
|
68583
68719
|
relationships: Array<GraphStoreCreateJiraSpaceHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
68720
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68584
68721
|
};
|
|
68585
68722
|
export declare enum GraphStoreCreateJiraSpaceHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
68586
68723
|
Accepted = "ACCEPTED",
|
|
@@ -71349,6 +71486,7 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
71349
71486
|
Form = "FORM",
|
|
71350
71487
|
Image = "IMAGE",
|
|
71351
71488
|
KnowledgeArticle = "KNOWLEDGE_ARTICLE",
|
|
71489
|
+
NewsArticle = "NEWS_ARTICLE",
|
|
71352
71490
|
Notebook = "NOTEBOOK",
|
|
71353
71491
|
NotSet = "NOT_SET",
|
|
71354
71492
|
Other = "OTHER",
|
|
@@ -75649,6 +75787,20 @@ export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge = {
|
|
|
75649
75787
|
};
|
|
75650
75788
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
75651
75789
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
75790
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
75791
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
75792
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
75793
|
+
pageInfo: PageInfo;
|
|
75794
|
+
};
|
|
75795
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityEdge = {
|
|
75796
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityEdge';
|
|
75797
|
+
createdAt: Scalars['DateTime']['output'];
|
|
75798
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
75799
|
+
id: Scalars['ID']['output'];
|
|
75800
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
75801
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityUnion>;
|
|
75802
|
+
};
|
|
75803
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
75652
75804
|
export type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
75653
75805
|
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
75654
75806
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
@@ -89290,6 +89442,7 @@ export type GraphStoreV2 = {
|
|
|
89290
89442
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
89291
89443
|
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
89292
89444
|
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
89445
|
+
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
89293
89446
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
89294
89447
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
89295
89448
|
atlassianGoalHasAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagConnection>;
|
|
@@ -90181,6 +90334,13 @@ export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeInverseArgs = {
|
|
|
90181
90334
|
id: Scalars['ID']['input'];
|
|
90182
90335
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
90183
90336
|
};
|
|
90337
|
+
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
90338
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90339
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90341
|
+
id: Scalars['ID']['input'];
|
|
90342
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionTriggeredOnEntitySortInput>;
|
|
90343
|
+
};
|
|
90184
90344
|
export type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
90185
90345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90186
90346
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96276,6 +96436,9 @@ export type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
|
96276
96436
|
export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
96277
96437
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96278
96438
|
};
|
|
96439
|
+
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
96440
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96441
|
+
};
|
|
96279
96442
|
export type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
|
|
96280
96443
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96281
96444
|
};
|
|
@@ -97081,6 +97244,7 @@ export type GraphStoreV2CreateJiraSpaceDismissedKnowledgeBaseEntityAliasInput =
|
|
|
97081
97244
|
};
|
|
97082
97245
|
export type GraphStoreV2CreateJiraSpaceDismissedKnowledgeBaseEntityInput = {
|
|
97083
97246
|
aliases: Array<GraphStoreV2CreateJiraSpaceDismissedKnowledgeBaseEntityAliasInput>;
|
|
97247
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97084
97248
|
};
|
|
97085
97249
|
export type GraphStoreV2CreateJiraSpaceDismissedKnowledgeBaseEntityPayload = {
|
|
97086
97250
|
__typename?: 'GraphStoreV2CreateJiraSpaceDismissedKnowledgeBaseEntityPayload';
|
|
@@ -97114,6 +97278,7 @@ export type GraphStoreV2CreateJiraSpaceHasLinkedKnowledgeBaseEntityAliasInput =
|
|
|
97114
97278
|
};
|
|
97115
97279
|
export type GraphStoreV2CreateJiraSpaceHasLinkedKnowledgeBaseEntityInput = {
|
|
97116
97280
|
aliases: Array<GraphStoreV2CreateJiraSpaceHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
97281
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97117
97282
|
};
|
|
97118
97283
|
export declare enum GraphStoreV2CreateJiraSpaceHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
97119
97284
|
Accepted = "ACCEPTED",
|
|
@@ -97267,6 +97432,7 @@ export type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput
|
|
|
97267
97432
|
};
|
|
97268
97433
|
export type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
97269
97434
|
aliases: Array<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
97435
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97270
97436
|
};
|
|
97271
97437
|
export type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
97272
97438
|
__typename?: 'GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
@@ -97286,6 +97452,7 @@ export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput
|
|
|
97286
97452
|
};
|
|
97287
97453
|
export type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
97288
97454
|
aliases: Array<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
97455
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97289
97456
|
};
|
|
97290
97457
|
export declare enum GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
97291
97458
|
Accepted = "ACCEPTED",
|
|
@@ -97724,6 +97891,7 @@ export type GraphStoreV2DeleteJiraSpaceDismissedKnowledgeBaseEntityAliasInput =
|
|
|
97724
97891
|
};
|
|
97725
97892
|
export type GraphStoreV2DeleteJiraSpaceDismissedKnowledgeBaseEntityInput = {
|
|
97726
97893
|
aliases: Array<GraphStoreV2DeleteJiraSpaceDismissedKnowledgeBaseEntityAliasInput>;
|
|
97894
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97727
97895
|
};
|
|
97728
97896
|
export type GraphStoreV2DeleteJiraSpaceDismissedKnowledgeBaseEntityPayload = {
|
|
97729
97897
|
__typename?: 'GraphStoreV2DeleteJiraSpaceDismissedKnowledgeBaseEntityPayload';
|
|
@@ -97748,6 +97916,7 @@ export type GraphStoreV2DeleteJiraSpaceHasLinkedKnowledgeBaseEntityAliasInput =
|
|
|
97748
97916
|
};
|
|
97749
97917
|
export type GraphStoreV2DeleteJiraSpaceHasLinkedKnowledgeBaseEntityInput = {
|
|
97750
97918
|
aliases: Array<GraphStoreV2DeleteJiraSpaceHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
97919
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97751
97920
|
};
|
|
97752
97921
|
export type GraphStoreV2DeleteJiraSpaceHasLinkedKnowledgeBaseEntityPayload = {
|
|
97753
97922
|
__typename?: 'GraphStoreV2DeleteJiraSpaceHasLinkedKnowledgeBaseEntityPayload';
|
|
@@ -97868,6 +98037,7 @@ export type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput
|
|
|
97868
98037
|
};
|
|
97869
98038
|
export type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
97870
98039
|
aliases: Array<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
98040
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97871
98041
|
};
|
|
97872
98042
|
export type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
97873
98043
|
__typename?: 'GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
@@ -97880,6 +98050,7 @@ export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput
|
|
|
97880
98050
|
};
|
|
97881
98051
|
export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
97882
98052
|
aliases: Array<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
98053
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97883
98054
|
};
|
|
97884
98055
|
export type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
97885
98056
|
__typename?: 'GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
@@ -100236,6 +100407,20 @@ export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInvers
|
|
|
100236
100407
|
};
|
|
100237
100408
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion = AssetsObjectType;
|
|
100238
100409
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion = AssetsObjectType;
|
|
100410
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
100411
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
100412
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
100413
|
+
pageInfo: PageInfo;
|
|
100414
|
+
};
|
|
100415
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityEdge = {
|
|
100416
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityEdge';
|
|
100417
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100418
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100419
|
+
id: Scalars['ID']['output'];
|
|
100420
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100421
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityUnion>;
|
|
100422
|
+
};
|
|
100423
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100239
100424
|
export type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
100240
100425
|
__typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
|
|
100241
100426
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
|
|
@@ -112756,6 +112941,7 @@ export type GravityCreateViewFromInlinedTemplateInput = {
|
|
|
112756
112941
|
template: GravityViewTemplateInput;
|
|
112757
112942
|
};
|
|
112758
112943
|
export type GravityCreateViewFromTemplateInput = {
|
|
112944
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
112759
112945
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
112760
112946
|
projectId: Scalars['ID']['input'];
|
|
112761
112947
|
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
@@ -114598,6 +114784,7 @@ export declare enum HelpCenterDescriptionType {
|
|
|
114598
114784
|
}
|
|
114599
114785
|
export type HelpCenterFilter = {
|
|
114600
114786
|
autoLinkingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114787
|
+
status?: InputMaybe<HelpCenterStatusFilter>;
|
|
114601
114788
|
type?: InputMaybe<HelpCenterType>;
|
|
114602
114789
|
};
|
|
114603
114790
|
export type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
@@ -115165,6 +115352,11 @@ export declare enum HelpCenterSortOrder {
|
|
|
115165
115352
|
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
115166
115353
|
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
115167
115354
|
}
|
|
115355
|
+
export declare enum HelpCenterStatusFilter {
|
|
115356
|
+
Active = "ACTIVE",
|
|
115357
|
+
Inactive = "INACTIVE",
|
|
115358
|
+
Sandbox = "SANDBOX"
|
|
115359
|
+
}
|
|
115168
115360
|
export type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
115169
115361
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
115170
115362
|
helpCenterId: Scalars['ID']['output'];
|
|
@@ -128696,6 +128888,16 @@ export type JiraIssuePickerResult = {
|
|
|
128696
128888
|
__typename?: 'JiraIssuePickerResult';
|
|
128697
128889
|
sections?: Maybe<Array<Maybe<JiraIssueSection>>>;
|
|
128698
128890
|
};
|
|
128891
|
+
export declare enum JiraIssuePreviewMode {
|
|
128892
|
+
Modal = "MODAL",
|
|
128893
|
+
Sidebar = "SIDEBAR"
|
|
128894
|
+
}
|
|
128895
|
+
export type JiraIssuePreviewModeMutationPayload = Payload & {
|
|
128896
|
+
__typename?: 'JiraIssuePreviewModeMutationPayload';
|
|
128897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
128898
|
+
issuePreviewMode?: Maybe<JiraIssuePreviewMode>;
|
|
128899
|
+
success: Scalars['Boolean']['output'];
|
|
128900
|
+
};
|
|
128699
128901
|
export type JiraIssuePullRequestDevSummary = {
|
|
128700
128902
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
128701
128903
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -134806,7 +135008,7 @@ export type JiraProjectAccessActorFilterInput = {
|
|
|
134806
135008
|
};
|
|
134807
135009
|
export declare enum JiraProjectAccessActorFilterType {
|
|
134808
135010
|
PermissionScheme = "PERMISSION_SCHEME",
|
|
134809
|
-
|
|
135011
|
+
ProjectStyle = "PROJECT_STYLE",
|
|
134810
135012
|
Role = "ROLE",
|
|
134811
135013
|
Space = "SPACE",
|
|
134812
135014
|
User = "USER"
|
|
@@ -136940,7 +137142,9 @@ export type JiraQueryLinkedIssuesArgs = {
|
|
|
136940
137142
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
136941
137143
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136942
137144
|
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
137145
|
+
isInitialLoadQuery?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136943
137146
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137147
|
+
maxRowsToReturn?: InputMaybe<Scalars['Int']['input']>;
|
|
136944
137148
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136945
137149
|
sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
|
|
136946
137150
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -138662,6 +138866,7 @@ export type JiraRole = Node & {
|
|
|
138662
138866
|
name?: Maybe<Scalars['String']['output']>;
|
|
138663
138867
|
roleId: Scalars['String']['output'];
|
|
138664
138868
|
translatedName?: Maybe<Scalars['String']['output']>;
|
|
138869
|
+
usage?: Maybe<JiraRoleUsage>;
|
|
138665
138870
|
};
|
|
138666
138871
|
export declare enum JiraRoleAllowedOperation {
|
|
138667
138872
|
Delete = "DELETE",
|
|
@@ -138684,6 +138889,11 @@ export type JiraRoleEdge = {
|
|
|
138684
138889
|
export type JiraRoleInput = {
|
|
138685
138890
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
138686
138891
|
};
|
|
138892
|
+
export type JiraRoleUsage = {
|
|
138893
|
+
__typename?: 'JiraRoleUsage';
|
|
138894
|
+
permissionSchemeCount?: Maybe<Scalars['Int']['output']>;
|
|
138895
|
+
projectCount?: Maybe<Scalars['Int']['output']>;
|
|
138896
|
+
};
|
|
138687
138897
|
export declare enum JiraRovoAiProduct {
|
|
138688
138898
|
Jira = "JIRA",
|
|
138689
138899
|
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
@@ -138870,6 +139080,16 @@ export type JiraScheduleTimelineItemPayload = {
|
|
|
138870
139080
|
issue?: Maybe<JiraIssue>;
|
|
138871
139081
|
success: Scalars['Boolean']['output'];
|
|
138872
139082
|
};
|
|
139083
|
+
export type JiraSchemeFieldRendererToRichTextInput = {
|
|
139084
|
+
fieldId: Scalars['ID']['input'];
|
|
139085
|
+
schemeId: Scalars['ID']['input'];
|
|
139086
|
+
};
|
|
139087
|
+
export type JiraSchemeFieldRendererToRichTextPayload = Payload & {
|
|
139088
|
+
__typename?: 'JiraSchemeFieldRendererToRichTextPayload';
|
|
139089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139090
|
+
success: Scalars['Boolean']['output'];
|
|
139091
|
+
updatedField?: Maybe<JiraIssueFieldConfig>;
|
|
139092
|
+
};
|
|
138873
139093
|
export type JiraScmRepository = {
|
|
138874
139094
|
__typename?: 'JiraScmRepository';
|
|
138875
139095
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -143932,6 +144152,7 @@ export type JiraUserPreferences = {
|
|
|
143932
144152
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
143933
144153
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
143934
144154
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
144155
|
+
issuePreviewMode?: Maybe<JiraIssuePreviewMode>;
|
|
143935
144156
|
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
143936
144157
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
143937
144158
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
@@ -144007,6 +144228,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
144007
144228
|
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
144008
144229
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
144009
144230
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
144231
|
+
setIssuePreviewMode?: Maybe<JiraIssuePreviewModeMutationPayload>;
|
|
144010
144232
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
144011
144233
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
144012
144234
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
@@ -144038,6 +144260,9 @@ export type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEna
|
|
|
144038
144260
|
export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
144039
144261
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
144040
144262
|
};
|
|
144263
|
+
export type JiraUserPreferencesMutationSetIssuePreviewModeArgs = {
|
|
144264
|
+
issuePreviewMode: JiraIssuePreviewMode;
|
|
144265
|
+
};
|
|
144041
144266
|
export type JiraUserPreferencesMutationSetIssueViewTimestampDisplayModeArgs = {
|
|
144042
144267
|
timestampDisplayMode: JiraIssueViewTimestampDisplayMode;
|
|
144043
144268
|
};
|
|
@@ -146345,6 +146570,13 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
146345
146570
|
Pending = "PENDING",
|
|
146346
146571
|
Waiting = "WAITING"
|
|
146347
146572
|
}
|
|
146573
|
+
export type JsmChannelsResolutionPlanUpdate = {
|
|
146574
|
+
__typename?: 'JsmChannelsResolutionPlanUpdate';
|
|
146575
|
+
currentAssigneeAccountId?: Maybe<Scalars['ID']['output']>;
|
|
146576
|
+
graph?: Maybe<JsmChannelsResolutionPlanGraph>;
|
|
146577
|
+
panelState?: Maybe<JsmChannelsTicketServiceAgentResolutionState>;
|
|
146578
|
+
};
|
|
146579
|
+
export type JsmChannelsResolutionPlanUpdateResult = JsmChannelsResolutionPlanUpdate | QueryError;
|
|
146348
146580
|
export type JsmChannelsRovoAgent = {
|
|
146349
146581
|
__typename?: 'JsmChannelsRovoAgent';
|
|
146350
146582
|
agentAri: Scalars['ID']['output'];
|
|
@@ -147191,7 +147423,8 @@ export type JsmConversationAcceptInvitePayload = Payload & {
|
|
|
147191
147423
|
export declare enum JsmConversationActivationState {
|
|
147192
147424
|
Disabled = "DISABLED",
|
|
147193
147425
|
Enabled = "ENABLED",
|
|
147194
|
-
NotConfigured = "NOT_CONFIGURED"
|
|
147426
|
+
NotConfigured = "NOT_CONFIGURED",
|
|
147427
|
+
Paused = "PAUSED"
|
|
147195
147428
|
}
|
|
147196
147429
|
export type JsmConversationActiveSla = {
|
|
147197
147430
|
__typename?: 'JsmConversationActiveSla';
|
|
@@ -147207,6 +147440,15 @@ export type JsmConversationAvailabilityResult = {
|
|
|
147207
147440
|
criteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
147208
147441
|
outcome?: Maybe<JsmConversationAvailabilityOutcome>;
|
|
147209
147442
|
};
|
|
147443
|
+
export type JsmConversationCancelInviteInput = {
|
|
147444
|
+
cloudId: Scalars['ID']['input'];
|
|
147445
|
+
inviteId: Scalars['ID']['input'];
|
|
147446
|
+
};
|
|
147447
|
+
export type JsmConversationCancelInvitePayload = Payload & {
|
|
147448
|
+
__typename?: 'JsmConversationCancelInvitePayload';
|
|
147449
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147450
|
+
success: Scalars['Boolean']['output'];
|
|
147451
|
+
};
|
|
147210
147452
|
export type JsmConversationClaimConversationInput = {
|
|
147211
147453
|
cloudId: Scalars['ID']['input'];
|
|
147212
147454
|
conversationId: Scalars['ID']['input'];
|
|
@@ -148728,6 +148970,7 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
148728
148970
|
export type KnowledgeBaseHealthDashboard = {
|
|
148729
148971
|
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
148730
148972
|
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
148973
|
+
articleCountByMonth?: Maybe<Array<KnowledgeBaseMonthlyArticleCount>>;
|
|
148731
148974
|
articleViewCount?: Maybe<Scalars['Int']['output']>;
|
|
148732
148975
|
errors: Array<KnowledgeBaseHealthDashboardMetricError>;
|
|
148733
148976
|
externalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -148736,6 +148979,7 @@ export type KnowledgeBaseHealthDashboard = {
|
|
|
148736
148979
|
};
|
|
148737
148980
|
export declare enum KnowledgeBaseHealthDashboardMetric {
|
|
148738
148981
|
ArticleCount = "ARTICLE_COUNT",
|
|
148982
|
+
ArticleCountByMonth = "ARTICLE_COUNT_BY_MONTH",
|
|
148739
148983
|
ArticleViewCount = "ARTICLE_VIEW_COUNT"
|
|
148740
148984
|
}
|
|
148741
148985
|
export type KnowledgeBaseHealthDashboardMetricError = {
|
|
@@ -148797,6 +149041,11 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
148797
149041
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
148798
149042
|
};
|
|
148799
149043
|
export type KnowledgeBaseLinkedSourcesResponse = KnowledgeBaseLinkedSources | QueryError;
|
|
149044
|
+
export type KnowledgeBaseMonthlyArticleCount = {
|
|
149045
|
+
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
149046
|
+
count: Scalars['Int']['output'];
|
|
149047
|
+
yearMonth: Scalars['String']['output'];
|
|
149048
|
+
};
|
|
148800
149049
|
export type KnowledgeBaseMutationApi = {
|
|
148801
149050
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
148802
149051
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -155638,10 +155887,6 @@ export declare enum MercuryBaselineJobStatus {
|
|
|
155638
155887
|
InProgress = "IN_PROGRESS",
|
|
155639
155888
|
Succeeded = "SUCCEEDED"
|
|
155640
155889
|
}
|
|
155641
|
-
export declare enum MercuryBaselineType {
|
|
155642
|
-
Benefit = "BENEFIT",
|
|
155643
|
-
Cost = "COST"
|
|
155644
|
-
}
|
|
155645
155890
|
export type MercuryBenefitItem = Node & {
|
|
155646
155891
|
__typename?: 'MercuryBenefitItem';
|
|
155647
155892
|
benefitItemSummary?: Maybe<MercuryBenefitItemSummary>;
|
|
@@ -157659,7 +157904,7 @@ export type MercuryFocusAreaActivitySort = {
|
|
|
157659
157904
|
};
|
|
157660
157905
|
export type MercuryFocusAreaBaselineActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
157661
157906
|
__typename?: 'MercuryFocusAreaBaselineActivityHistoryMetadata';
|
|
157662
|
-
baselineType?: Maybe<
|
|
157907
|
+
baselineType?: Maybe<MercuryFundItemType>;
|
|
157663
157908
|
endYearMonth?: Maybe<Scalars['String']['output']>;
|
|
157664
157909
|
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
157665
157910
|
startYearMonth?: Maybe<Scalars['String']['output']>;
|
|
@@ -157763,6 +158008,11 @@ export type MercuryFocusAreaFundChangeSummary = {
|
|
|
157763
158008
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
157764
158009
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
157765
158010
|
};
|
|
158011
|
+
export type MercuryFocusAreaFundsImportedActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
158012
|
+
__typename?: 'MercuryFocusAreaFundsImportedActivityHistoryMetadata';
|
|
158013
|
+
fundItemType?: Maybe<MercuryFundItemType>;
|
|
158014
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
158015
|
+
};
|
|
157766
158016
|
export type MercuryFocusAreaFundsMonthlySummary = {
|
|
157767
158017
|
__typename?: 'MercuryFocusAreaFundsMonthlySummary';
|
|
157768
158018
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -158122,6 +158372,10 @@ export type MercuryFundChangeSummaryFields = {
|
|
|
158122
158372
|
deltaByStatus?: Maybe<Array<Maybe<MercuryFundingDeltaByStatus>>>;
|
|
158123
158373
|
deltaTotal?: Maybe<Scalars['BigDecimal']['output']>;
|
|
158124
158374
|
};
|
|
158375
|
+
export declare enum MercuryFundItemType {
|
|
158376
|
+
Benefit = "BENEFIT",
|
|
158377
|
+
Cost = "COST"
|
|
158378
|
+
}
|
|
158125
158379
|
export type MercuryFunding = {
|
|
158126
158380
|
__typename?: 'MercuryFunding';
|
|
158127
158381
|
aggregation?: Maybe<MercuryFundingAggregation>;
|
|
@@ -165033,6 +165287,7 @@ export type Mutation = {
|
|
|
165033
165287
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
165034
165288
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
165035
165289
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
165290
|
+
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
165036
165291
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
165037
165292
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
165038
165293
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -165058,6 +165313,7 @@ export type Mutation = {
|
|
|
165058
165313
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
165059
165314
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
165060
165315
|
jsmConversation_acceptInvite?: Maybe<JsmConversationAcceptInvitePayload>;
|
|
165316
|
+
jsmConversation_cancelInvite?: Maybe<JsmConversationCancelInvitePayload>;
|
|
165061
165317
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
165062
165318
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
165063
165319
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
@@ -165189,6 +165445,8 @@ export type Mutation = {
|
|
|
165189
165445
|
projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
|
|
165190
165446
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
165191
165447
|
projects_deleteRisk?: Maybe<TownsquareProjectsDeleteRiskPayload>;
|
|
165448
|
+
projects_disconnectMsteamsChannel?: Maybe<TownsquareProjectsDisconnectMsteamsChannelPayload>;
|
|
165449
|
+
projects_disconnectSlackChannel?: Maybe<TownsquareProjectsDisconnectSlackChannelPayload>;
|
|
165192
165450
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
165193
165451
|
projects_editComment?: Maybe<TownsquareProjectsEditCommentPayload>;
|
|
165194
165452
|
projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
|
|
@@ -169413,6 +169671,10 @@ export type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs = {
|
|
|
169413
169671
|
cloudId: Scalars['ID']['input'];
|
|
169414
169672
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
169415
169673
|
};
|
|
169674
|
+
export type MutationJira_UpdateSchemeFieldRendererToRichTextArgs = {
|
|
169675
|
+
cloudId: Scalars['ID']['input'];
|
|
169676
|
+
input: JiraSchemeFieldRendererToRichTextInput;
|
|
169677
|
+
};
|
|
169416
169678
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
169417
169679
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
169418
169680
|
};
|
|
@@ -169504,6 +169766,9 @@ export type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
|
169504
169766
|
export type MutationJsmConversation_AcceptInviteArgs = {
|
|
169505
169767
|
input: JsmConversationAcceptInviteInput;
|
|
169506
169768
|
};
|
|
169769
|
+
export type MutationJsmConversation_CancelInviteArgs = {
|
|
169770
|
+
input: JsmConversationCancelInviteInput;
|
|
169771
|
+
};
|
|
169507
169772
|
export type MutationJsmConversation_ClaimConversationArgs = {
|
|
169508
169773
|
input: JsmConversationClaimConversationInput;
|
|
169509
169774
|
};
|
|
@@ -169597,6 +169862,7 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
169597
169862
|
};
|
|
169598
169863
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
169599
169864
|
feedbackAri: Scalars['ID']['input'];
|
|
169865
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169600
169866
|
};
|
|
169601
169867
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
169602
169868
|
insightAri: Scalars['ID']['input'];
|
|
@@ -169619,6 +169885,7 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
169619
169885
|
};
|
|
169620
169886
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
169621
169887
|
feedbackAri: Scalars['ID']['input'];
|
|
169888
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169622
169889
|
};
|
|
169623
169890
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
169624
169891
|
id: Scalars['ID']['input'];
|
|
@@ -169947,6 +170214,12 @@ export type MutationProjects_DeleteLinkArgs = {
|
|
|
169947
170214
|
export type MutationProjects_DeleteRiskArgs = {
|
|
169948
170215
|
input: TownsquareProjectsDeleteRiskInput;
|
|
169949
170216
|
};
|
|
170217
|
+
export type MutationProjects_DisconnectMsteamsChannelArgs = {
|
|
170218
|
+
input: TownsquareProjectsDisconnectMsteamsChannelInput;
|
|
170219
|
+
};
|
|
170220
|
+
export type MutationProjects_DisconnectSlackChannelArgs = {
|
|
170221
|
+
input: TownsquareProjectsDisconnectSlackChannelInput;
|
|
170222
|
+
};
|
|
169950
170223
|
export type MutationProjects_EditArgs = {
|
|
169951
170224
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
169952
170225
|
};
|
|
@@ -173694,12 +173967,6 @@ export type ProactiveAiRovoInsightsInsight = {
|
|
|
173694
173967
|
title: Scalars['String']['output'];
|
|
173695
173968
|
urls?: Maybe<Array<Scalars['String']['output']>>;
|
|
173696
173969
|
};
|
|
173697
|
-
export type ProactiveAiRovoInsightsInsightConfig = {
|
|
173698
|
-
maxAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
173699
|
-
override?: InputMaybe<Scalars['String']['input']>;
|
|
173700
|
-
strategy?: InputMaybe<ProactiveAiRovoInsightsPromptStrategy>;
|
|
173701
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
173702
|
-
};
|
|
173703
173970
|
export type ProactiveAiRovoInsightsInsightGroup = {
|
|
173704
173971
|
__typename?: 'ProactiveAiRovoInsightsInsightGroup';
|
|
173705
173972
|
color: Scalars['String']['output'];
|
|
@@ -173724,14 +173991,6 @@ export type ProactiveAiRovoInsightsPerson = {
|
|
|
173724
173991
|
avatarUrl: Scalars['String']['output'];
|
|
173725
173992
|
name: Scalars['String']['output'];
|
|
173726
173993
|
};
|
|
173727
|
-
export type ProactiveAiRovoInsightsPromptConfig = {
|
|
173728
|
-
insightConfig: ProactiveAiRovoInsightsInsightConfig;
|
|
173729
|
-
insightType: ProactiveAiRovoInsightsInsightType;
|
|
173730
|
-
};
|
|
173731
|
-
export declare enum ProactiveAiRovoInsightsPromptStrategy {
|
|
173732
|
-
Evaluate = "EVALUATE",
|
|
173733
|
-
Skip = "SKIP"
|
|
173734
|
-
}
|
|
173735
173994
|
export type ProactiveAiRovoInsightsStatusResponse = {
|
|
173736
173995
|
__typename?: 'ProactiveAiRovoInsightsStatusResponse';
|
|
173737
173996
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -173753,16 +174012,6 @@ export type ProactiveAiStratusTestInsightsMinionResult = {
|
|
|
173753
174012
|
minion: ProactiveAiStratusTestInsightsMinion;
|
|
173754
174013
|
responseText?: Maybe<Scalars['String']['output']>;
|
|
173755
174014
|
};
|
|
173756
|
-
export type ProactiveAiStratusTestInsightsPromptConfig = {
|
|
173757
|
-
maxAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
173758
|
-
override?: InputMaybe<Scalars['String']['input']>;
|
|
173759
|
-
strategy?: InputMaybe<ProactiveAiStratusTestInsightsPromptStrategy>;
|
|
173760
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
173761
|
-
};
|
|
173762
|
-
export declare enum ProactiveAiStratusTestInsightsPromptStrategy {
|
|
173763
|
-
Evaluate = "EVALUATE",
|
|
173764
|
-
Skip = "SKIP"
|
|
173765
|
-
}
|
|
173766
174015
|
export type ProactiveAiStratusTestInsightsPromptVariable = {
|
|
173767
174016
|
name: Scalars['String']['input'];
|
|
173768
174017
|
value: Scalars['String']['input'];
|
|
@@ -174693,6 +174942,8 @@ export type Query = {
|
|
|
174693
174942
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
174694
174943
|
confluence_pageBriefing?: Maybe<ConfluencePageBriefing>;
|
|
174695
174944
|
confluence_pageIncludeMacro?: Maybe<ConfluencePageIncludeMacro>;
|
|
174945
|
+
confluence_pagePdfExportDownloadLink?: Maybe<ConfluencePagePdfExportDownloadLink>;
|
|
174946
|
+
confluence_pagePdfExportTask?: Maybe<ConfluencePagePdfExportTask>;
|
|
174696
174947
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
174697
174948
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
174698
174949
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
@@ -174944,6 +175195,7 @@ export type Query = {
|
|
|
174944
175195
|
ersLifecycle?: Maybe<ErsLifecycleQuery>;
|
|
174945
175196
|
eventCTR?: Maybe<EventCtr>;
|
|
174946
175197
|
eventTimeseriesCTR?: Maybe<EventTimeseriesCtr>;
|
|
175198
|
+
experimentApi_canAccessConfluence?: Maybe<ExperimentApiCanAccessResource>;
|
|
174947
175199
|
experimentFeatures?: Maybe<Scalars['String']['output']>;
|
|
174948
175200
|
extensionByKey?: Maybe<Extension>;
|
|
174949
175201
|
extensionContext?: Maybe<ExtensionContext>;
|
|
@@ -175041,6 +175293,7 @@ export type Query = {
|
|
|
175041
175293
|
graphStoreV2_assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
175042
175294
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
175043
175295
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
175296
|
+
graphStoreV2_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
175044
175297
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
175045
175298
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
175046
175299
|
graphStoreV2_atlassianGoalHasAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagConnection>;
|
|
@@ -175966,6 +176219,7 @@ export type Query = {
|
|
|
175966
176219
|
graphStore_atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
175967
176220
|
graphStore_atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
175968
176221
|
graphStore_atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
176222
|
+
graphStore_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
175969
176223
|
graphStore_atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
175970
176224
|
graphStore_atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
175971
176225
|
graphStore_atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
@@ -177481,6 +177735,7 @@ export type Query = {
|
|
|
177481
177735
|
radar_skillAssignmentMetadata?: Maybe<Array<RadarSkillAssignmentMetadata>>;
|
|
177482
177736
|
radar_skillByAri?: Maybe<RadarSkill>;
|
|
177483
177737
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
177738
|
+
radar_skillsSearch?: Maybe<RadarSkillConnection>;
|
|
177484
177739
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
177485
177740
|
radar_viewByAri?: Maybe<RadarView>;
|
|
177486
177741
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
@@ -180465,6 +180720,14 @@ export type QueryConfluence_PageIncludeMacroArgs = {
|
|
|
180465
180720
|
macroId: Scalars['ID']['input'];
|
|
180466
180721
|
sourceContentId: Scalars['ID']['input'];
|
|
180467
180722
|
};
|
|
180723
|
+
export type QueryConfluence_PagePdfExportDownloadLinkArgs = {
|
|
180724
|
+
cloudId: Scalars['ID']['input'];
|
|
180725
|
+
id: Scalars['ID']['input'];
|
|
180726
|
+
};
|
|
180727
|
+
export type QueryConfluence_PagePdfExportTaskArgs = {
|
|
180728
|
+
cloudId: Scalars['ID']['input'];
|
|
180729
|
+
id: Scalars['ID']['input'];
|
|
180730
|
+
};
|
|
180468
180731
|
export type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
180469
180732
|
cloudId: Scalars['ID']['input'];
|
|
180470
180733
|
id: Scalars['ID']['input'];
|
|
@@ -181685,6 +181948,9 @@ export type QueryEventTimeseriesCtrArgs = {
|
|
|
181685
181948
|
startTime: Scalars['String']['input'];
|
|
181686
181949
|
timezone: Scalars['String']['input'];
|
|
181687
181950
|
};
|
|
181951
|
+
export type QueryExperimentApi_CanAccessConfluenceArgs = {
|
|
181952
|
+
input: ExperimentApiCanAccessInput;
|
|
181953
|
+
};
|
|
181688
181954
|
export type QueryExtensionByKeyArgs = {
|
|
181689
181955
|
contextId: Scalars['ID']['input'];
|
|
181690
181956
|
definitionId: Scalars['ID']['input'];
|
|
@@ -182080,6 +182346,13 @@ export type QueryGraphStoreV2_AssetsObjectTypeHasChildAssetsObjectTypeInverseArg
|
|
|
182080
182346
|
id: Scalars['ID']['input'];
|
|
182081
182347
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
182082
182348
|
};
|
|
182349
|
+
export type QueryGraphStoreV2_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
182350
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
182351
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182352
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182353
|
+
id: Scalars['ID']['input'];
|
|
182354
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionTriggeredOnEntitySortInput>;
|
|
182355
|
+
};
|
|
182083
182356
|
export type QueryGraphStoreV2_AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
182084
182357
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182085
182358
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188651,6 +188924,14 @@ export type QueryGraphStore_AtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
188651
188924
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188652
188925
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
188653
188926
|
};
|
|
188927
|
+
export type QueryGraphStore_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
188928
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188929
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188930
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188931
|
+
id: Scalars['ID']['input'];
|
|
188932
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188933
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionTriggeredOnEntitySortInput>;
|
|
188934
|
+
};
|
|
188654
188935
|
export type QueryGraphStore_AtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
188655
188936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188656
188937
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -197437,6 +197718,7 @@ export type QueryGravity_ViewTemplateMappingProposalsArgs = {
|
|
|
197437
197718
|
};
|
|
197438
197719
|
export type QueryGravity_ViewTemplatesArgs = {
|
|
197439
197720
|
cloudId: Scalars['ID']['input'];
|
|
197721
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
197440
197722
|
};
|
|
197441
197723
|
export type QueryGroupArgs = {
|
|
197442
197724
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -198545,16 +198827,13 @@ export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
|
198545
198827
|
cloudId: Scalars['ID']['input'];
|
|
198546
198828
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
198547
198829
|
generate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
198548
|
-
promptConfig?: InputMaybe<Array<ProactiveAiRovoInsightsPromptConfig>>;
|
|
198549
198830
|
};
|
|
198550
198831
|
export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
198551
198832
|
cloudId: Scalars['ID']['input'];
|
|
198552
198833
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
198553
|
-
promptConfig?: InputMaybe<Array<ProactiveAiRovoInsightsPromptConfig>>;
|
|
198554
198834
|
};
|
|
198555
198835
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
198556
198836
|
cloudId: Scalars['ID']['input'];
|
|
198557
|
-
promptConfig?: InputMaybe<ProactiveAiStratusTestInsightsPromptConfig>;
|
|
198558
198837
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
198559
198838
|
};
|
|
198560
198839
|
export type QueryProductListingArgs = {
|
|
@@ -198821,6 +199100,14 @@ export type QueryRadar_SkillByAriArgs = {
|
|
|
198821
199100
|
export type QueryRadar_SkillsByArisArgs = {
|
|
198822
199101
|
ids: Array<Scalars['ID']['input']>;
|
|
198823
199102
|
};
|
|
199103
|
+
export type QueryRadar_SkillsSearchArgs = {
|
|
199104
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199105
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
199106
|
+
cloudId: Scalars['ID']['input'];
|
|
199107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199108
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
199109
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
199110
|
+
};
|
|
198824
199111
|
export type QueryRadar_StarredEntitiesArgs = {
|
|
198825
199112
|
cloudId: Scalars['ID']['input'];
|
|
198826
199113
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -200528,7 +200815,11 @@ export type RadarSettings = {
|
|
|
200528
200815
|
};
|
|
200529
200816
|
export type RadarSkill = Node & {
|
|
200530
200817
|
__typename?: 'RadarSkill';
|
|
200818
|
+
classifiedWorkerCount?: Maybe<Scalars['Int']['output']>;
|
|
200819
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
200820
|
+
depth?: Maybe<Scalars['Int']['output']>;
|
|
200531
200821
|
description?: Maybe<Scalars['String']['output']>;
|
|
200822
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
200532
200823
|
id: Scalars['ID']['output'];
|
|
200533
200824
|
name: Scalars['String']['output'];
|
|
200534
200825
|
parent?: Maybe<RadarSkill>;
|
|
@@ -200544,6 +200835,18 @@ export type RadarSkillAssignmentMetadata = {
|
|
|
200544
200835
|
skillId: Scalars['ID']['output'];
|
|
200545
200836
|
workerId: Scalars['ID']['output'];
|
|
200546
200837
|
};
|
|
200838
|
+
export type RadarSkillConnection = RadarConnection & {
|
|
200839
|
+
__typename?: 'RadarSkillConnection';
|
|
200840
|
+
edges?: Maybe<Array<RadarSkillEdge>>;
|
|
200841
|
+
nodes?: Maybe<Array<Maybe<RadarSkill>>>;
|
|
200842
|
+
pageInfo: PageInfo;
|
|
200843
|
+
totalCount: Scalars['Int']['output'];
|
|
200844
|
+
};
|
|
200845
|
+
export type RadarSkillEdge = RadarEdge & {
|
|
200846
|
+
__typename?: 'RadarSkillEdge';
|
|
200847
|
+
cursor: Scalars['String']['output'];
|
|
200848
|
+
node?: Maybe<RadarSkill>;
|
|
200849
|
+
};
|
|
200547
200850
|
export type RadarStarredEntity = RadarView;
|
|
200548
200851
|
export type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
200549
200852
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
@@ -202950,6 +203253,7 @@ export type SearchFirstPartyMetadata = {
|
|
|
202950
203253
|
export type SearchGitFilters = {
|
|
202951
203254
|
pullRequestStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202952
203255
|
repoName?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
203256
|
+
reviewer?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
202953
203257
|
};
|
|
202954
203258
|
export type SearchGraphQlConfigurationResponse = {
|
|
202955
203259
|
__typename?: 'SearchGraphQLConfigurationResponse';
|
|
@@ -227489,6 +227793,7 @@ export type Subscription = {
|
|
|
227489
227793
|
jpdViewsService_onJPDViewCommentEvent?: Maybe<JpdViewsServiceViewCommentEvent>;
|
|
227490
227794
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
227491
227795
|
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
227796
|
+
jsmChannels_onResolutionPlanUpdate?: Maybe<JsmChannelsResolutionPlanUpdateResult>;
|
|
227492
227797
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
227493
227798
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
227494
227799
|
jsmConversation_updatesByProject?: Maybe<JsmConversationUpdate>;
|
|
@@ -227599,6 +227904,10 @@ export type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
|
227599
227904
|
planEditTransactionId?: InputMaybe<Scalars['ID']['input']>;
|
|
227600
227905
|
planID: Scalars['ID']['input'];
|
|
227601
227906
|
};
|
|
227907
|
+
export type SubscriptionJsmChannels_OnResolutionPlanUpdateArgs = {
|
|
227908
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
227909
|
+
workItemId: Scalars['ID']['input'];
|
|
227910
|
+
};
|
|
227602
227911
|
export type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
|
|
227603
227912
|
jiraProjectAri: Scalars['ID']['input'];
|
|
227604
227913
|
workItemId: Scalars['ID']['input'];
|
|
@@ -233032,6 +233341,27 @@ export type TownsquareProjectsDeleteRiskPayload = {
|
|
|
233032
233341
|
errors?: Maybe<Array<MutationError>>;
|
|
233033
233342
|
success: Scalars['Boolean']['output'];
|
|
233034
233343
|
};
|
|
233344
|
+
export type TownsquareProjectsDisconnectMsteamsChannelInput = {
|
|
233345
|
+
msTeamsChannelId: Scalars['String']['input'];
|
|
233346
|
+
msTeamsTenantId: Scalars['String']['input'];
|
|
233347
|
+
projectId: Scalars['ID']['input'];
|
|
233348
|
+
};
|
|
233349
|
+
export type TownsquareProjectsDisconnectMsteamsChannelPayload = {
|
|
233350
|
+
__typename?: 'TownsquareProjectsDisconnectMsteamsChannelPayload';
|
|
233351
|
+
errors?: Maybe<Array<MutationError>>;
|
|
233352
|
+
msTeamsChannelId?: Maybe<Scalars['String']['output']>;
|
|
233353
|
+
success: Scalars['Boolean']['output'];
|
|
233354
|
+
};
|
|
233355
|
+
export type TownsquareProjectsDisconnectSlackChannelInput = {
|
|
233356
|
+
projectId: Scalars['ID']['input'];
|
|
233357
|
+
slackConnectionId: Scalars['String']['input'];
|
|
233358
|
+
};
|
|
233359
|
+
export type TownsquareProjectsDisconnectSlackChannelPayload = {
|
|
233360
|
+
__typename?: 'TownsquareProjectsDisconnectSlackChannelPayload';
|
|
233361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
233362
|
+
slackConnectionId?: Maybe<Scalars['String']['output']>;
|
|
233363
|
+
success: Scalars['Boolean']['output'];
|
|
233364
|
+
};
|
|
233035
233365
|
export type TownsquareProjectsEditCommentInput = {
|
|
233036
233366
|
commentId: Scalars['ID']['input'];
|
|
233037
233367
|
commentText: Scalars['String']['input'];
|
|
@@ -243743,12 +244073,6 @@ export type VirtualAgentConversationsFilter = {
|
|
|
243743
244073
|
startDate: Scalars['DateTime']['input'];
|
|
243744
244074
|
states?: InputMaybe<Array<VirtualAgentConversationState>>;
|
|
243745
244075
|
};
|
|
243746
|
-
export type VirtualAgentCopyIntentRuleProjectionPayload = {
|
|
243747
|
-
__typename?: 'VirtualAgentCopyIntentRuleProjectionPayload';
|
|
243748
|
-
errors?: Maybe<Array<MutationError>>;
|
|
243749
|
-
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
243750
|
-
success: Scalars['Boolean']['output'];
|
|
243751
|
-
};
|
|
243752
244076
|
export type VirtualAgentCreateChatChannelInput = {
|
|
243753
244077
|
isTriageChannel: Scalars['Boolean']['input'];
|
|
243754
244078
|
isVirtualAgentTestChannel: Scalars['Boolean']['input'];
|
|
@@ -243997,7 +244321,6 @@ export type VirtualAgentMatchIntentConfigInput = {
|
|
|
243997
244321
|
};
|
|
243998
244322
|
export type VirtualAgentMutationApi = {
|
|
243999
244323
|
__typename?: 'VirtualAgentMutationApi';
|
|
244000
|
-
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
244001
244324
|
createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
|
|
244002
244325
|
createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
|
|
244003
244326
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|
|
@@ -244014,9 +244337,6 @@ export type VirtualAgentMutationApi = {
|
|
|
244014
244337
|
updateMatchIntentConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
244015
244338
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
244016
244339
|
};
|
|
244017
|
-
export type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
244018
|
-
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
244019
|
-
};
|
|
244020
244340
|
export type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
244021
244341
|
input: VirtualAgentCreateChatChannelInput;
|
|
244022
244342
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|