@forge/cli-shared 9.5.0 → 9.5.1-next.1
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 +12 -0
- package/out/graphql/graphql-types.d.ts +745 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +129 -51
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +6 -3
- package/out/ui/text.d.ts +0 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -2
- package/package.json +1 -1
|
@@ -609,6 +609,7 @@ export type AiOpsInvestigation = {
|
|
|
609
609
|
id: Scalars['ID']['output'];
|
|
610
610
|
input: AiOpsInvestigationInputContext;
|
|
611
611
|
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
612
|
+
permissions?: Maybe<AiOpsInvestigationPermissions>;
|
|
612
613
|
status?: Maybe<AiOpsInvestigationStatus>;
|
|
613
614
|
task?: Maybe<AiOpsInvestigationTask>;
|
|
614
615
|
tasks?: Maybe<Array<AiOpsInvestigationTask>>;
|
|
@@ -641,6 +642,17 @@ export type AiOpsInvestigationInputContext = {
|
|
|
641
642
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
642
643
|
sourceJiraIssue?: Maybe<JiraIssue>;
|
|
643
644
|
};
|
|
645
|
+
export type AiOpsInvestigationNotFound = {
|
|
646
|
+
__typename?: 'AIOpsInvestigationNotFound';
|
|
647
|
+
permissions?: Maybe<AiOpsInvestigationPermissions>;
|
|
648
|
+
};
|
|
649
|
+
export type AiOpsInvestigationPermissions = {
|
|
650
|
+
__typename?: 'AIOpsInvestigationPermissions';
|
|
651
|
+
canCancelInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
652
|
+
canStartInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
653
|
+
canUpdateInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
654
|
+
canViewInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
655
|
+
};
|
|
644
656
|
export type AiOpsInvestigationProgressItem = {
|
|
645
657
|
__typename?: 'AIOpsInvestigationProgressItem';
|
|
646
658
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -650,7 +662,7 @@ export declare enum AiOpsInvestigationProgressItemType {
|
|
|
650
662
|
Info = "INFO",
|
|
651
663
|
Warning = "WARNING"
|
|
652
664
|
}
|
|
653
|
-
export type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
665
|
+
export type AiOpsInvestigationQueryResult = AiOpsInvestigation | AiOpsInvestigationNotFound | QueryError;
|
|
654
666
|
export type AiOpsInvestigationResult = AiOpsInvestigationCompleted | AiOpsInvestigationInProgress | AiOpsInvestigationTerminated;
|
|
655
667
|
export declare enum AiOpsInvestigationSourceEntityType {
|
|
656
668
|
Incident = "INCIDENT"
|
|
@@ -6996,6 +7008,7 @@ export type AgentStudioCreateAgentTriggerPayload = {
|
|
|
6996
7008
|
__typename?: 'AgentStudioCreateAgentTriggerPayload';
|
|
6997
7009
|
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
6998
7010
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7011
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
6999
7012
|
};
|
|
7000
7013
|
export type AgentStudioCreateBatchEvaluationJobInput = {
|
|
7001
7014
|
agentId: Scalars['String']['input'];
|
|
@@ -7381,7 +7394,7 @@ export type AgentStudioKnowledgeGapSuggestionArticleResult = {
|
|
|
7381
7394
|
edges: Array<AgentStudioKnowledgeGapSuggestionArticleEdge>;
|
|
7382
7395
|
nodes?: Maybe<Array<Maybe<AgentStudioKnowledgeGapSuggestionArticle>>>;
|
|
7383
7396
|
pageInfo: PageInfo;
|
|
7384
|
-
spaceKey
|
|
7397
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
7385
7398
|
};
|
|
7386
7399
|
export declare enum AgentStudioKnowledgeGapSuggestionArticleStatus {
|
|
7387
7400
|
Accepted = "ACCEPTED",
|
|
@@ -7522,6 +7535,12 @@ export type AgentStudioPublishAgentVersionPayload = Payload & {
|
|
|
7522
7535
|
errors?: Maybe<Array<MutationError>>;
|
|
7523
7536
|
success: Scalars['Boolean']['output'];
|
|
7524
7537
|
};
|
|
7538
|
+
export type AgentStudioRemoveAgentTriggerPayload = {
|
|
7539
|
+
__typename?: 'AgentStudioRemoveAgentTriggerPayload';
|
|
7540
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
7541
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7542
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
7543
|
+
};
|
|
7525
7544
|
export type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
|
|
7526
7545
|
__typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
|
|
7527
7546
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7674,6 +7693,16 @@ export type AgentStudioSetAccessIdentityModePayload = Payload & {
|
|
|
7674
7693
|
errors?: Maybe<Array<MutationError>>;
|
|
7675
7694
|
success: Scalars['Boolean']['output'];
|
|
7676
7695
|
};
|
|
7696
|
+
export type AgentStudioSetAgentTriggerEnabledInput = {
|
|
7697
|
+
automationRuleId: Scalars['ID']['input'];
|
|
7698
|
+
enabled: Scalars['Boolean']['input'];
|
|
7699
|
+
};
|
|
7700
|
+
export type AgentStudioSetAgentTriggerEnabledPayload = {
|
|
7701
|
+
__typename?: 'AgentStudioSetAgentTriggerEnabledPayload';
|
|
7702
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
7703
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7704
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
7705
|
+
};
|
|
7677
7706
|
export type AgentStudioSetWidgetByContainerAriInput = {
|
|
7678
7707
|
agentAri: Scalars['ID']['input'];
|
|
7679
7708
|
containerType?: InputMaybe<AgentStudioWidgetContainerType>;
|
|
@@ -7907,8 +7936,12 @@ export type AgentStudioToolConfigurationUiElement = {
|
|
|
7907
7936
|
scope: Scalars['String']['output'];
|
|
7908
7937
|
type: AgentStudioToolConfigurationUiElementType;
|
|
7909
7938
|
};
|
|
7939
|
+
export declare enum AgentStudioToolConfigurationUiElementFormat {
|
|
7940
|
+
Jql = "JQL"
|
|
7941
|
+
}
|
|
7910
7942
|
export type AgentStudioToolConfigurationUiElementOptions = {
|
|
7911
7943
|
__typename?: 'AgentStudioToolConfigurationUIElementOptions';
|
|
7944
|
+
format?: Maybe<AgentStudioToolConfigurationUiElementFormat>;
|
|
7912
7945
|
multi?: Maybe<Scalars['Boolean']['output']>;
|
|
7913
7946
|
};
|
|
7914
7947
|
export type AgentStudioToolConfigurationUiElementRule = {
|
|
@@ -8073,6 +8106,16 @@ export type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
|
8073
8106
|
success: Scalars['Boolean']['output'];
|
|
8074
8107
|
users?: Maybe<Array<Maybe<User>>>;
|
|
8075
8108
|
};
|
|
8109
|
+
export type AgentStudioUpdateAgentTriggerInput = {
|
|
8110
|
+
automationConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
8111
|
+
automationRuleId: Scalars['ID']['input'];
|
|
8112
|
+
};
|
|
8113
|
+
export type AgentStudioUpdateAgentTriggerPayload = {
|
|
8114
|
+
__typename?: 'AgentStudioUpdateAgentTriggerPayload';
|
|
8115
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
8116
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
8117
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
8118
|
+
};
|
|
8076
8119
|
export type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
8077
8120
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
8078
8121
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
@@ -11719,6 +11762,7 @@ export type AppLogsWithMetaData = {
|
|
|
11719
11762
|
message?: Maybe<Scalars['String']['output']>;
|
|
11720
11763
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
11721
11764
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
11765
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
11722
11766
|
osName?: Maybe<Scalars['String']['output']>;
|
|
11723
11767
|
other?: Maybe<Scalars['String']['output']>;
|
|
11724
11768
|
p?: Maybe<Scalars['String']['output']>;
|
|
@@ -11728,6 +11772,7 @@ export type AppLogsWithMetaData = {
|
|
|
11728
11772
|
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
11729
11773
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
11730
11774
|
ts: Scalars['String']['output'];
|
|
11775
|
+
unitId?: Maybe<Scalars['String']['output']>;
|
|
11731
11776
|
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11732
11777
|
};
|
|
11733
11778
|
export type AppLogsWithMetaDataResponse = {
|
|
@@ -18785,6 +18830,10 @@ export type CcpBillingPeriodDetails = {
|
|
|
18785
18830
|
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18786
18831
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18787
18832
|
};
|
|
18833
|
+
export type CcpBundleCollectionOrderOptions = {
|
|
18834
|
+
billingCycle?: InputMaybe<CcpBillingInterval>;
|
|
18835
|
+
trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
|
|
18836
|
+
};
|
|
18788
18837
|
export type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
18789
18838
|
__typename?: 'CcpCancelEntitlementExperienceCapability';
|
|
18790
18839
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19779,6 +19828,7 @@ export declare enum CcpOfferingRelationshipTemplateCustomizationSet {
|
|
|
19779
19828
|
JiraFamily = "JIRA_FAMILY",
|
|
19780
19829
|
Marketplace = "MARKETPLACE",
|
|
19781
19830
|
MarketplaceMultiInstance = "MARKETPLACE_MULTI_INSTANCE",
|
|
19831
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
19782
19832
|
MultiInstance = "MULTI_INSTANCE",
|
|
19783
19833
|
Sandbox = "SANDBOX",
|
|
19784
19834
|
SandboxDependenceContainer = "SANDBOX_DEPENDENCE_CONTAINER",
|
|
@@ -19864,6 +19914,7 @@ export declare enum CcpOfferingRelationshipTemplateType {
|
|
|
19864
19914
|
Enterprise = "ENTERPRISE",
|
|
19865
19915
|
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
19866
19916
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
19917
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
19867
19918
|
MultiInstance = "MULTI_INSTANCE",
|
|
19868
19919
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
19869
19920
|
SandboxGrant = "SANDBOX_GRANT"
|
|
@@ -20709,11 +20760,17 @@ export type CcpRecommendCollectionEntitlementInput = {
|
|
|
20709
20760
|
};
|
|
20710
20761
|
export type CcpRecommendCollectionExperienceCapability = {
|
|
20711
20762
|
__typename?: 'CcpRecommendCollectionExperienceCapability';
|
|
20763
|
+
bundleCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
20712
20764
|
createCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
20713
20765
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
20714
20766
|
offering?: Maybe<CcpOffering>;
|
|
20715
20767
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
20716
20768
|
};
|
|
20769
|
+
export type CcpRecommendCollectionExperienceCapabilityBundleCollectionArgs = {
|
|
20770
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
20771
|
+
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
20772
|
+
orderOptions?: InputMaybe<CcpBundleCollectionOrderOptions>;
|
|
20773
|
+
};
|
|
20717
20774
|
export type CcpRecommendCollectionExperienceCapabilityCreateCollectionArgs = {
|
|
20718
20775
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
20719
20776
|
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -20761,6 +20818,7 @@ export declare enum CcpRelationshipType {
|
|
|
20761
20818
|
Enterprise = "ENTERPRISE",
|
|
20762
20819
|
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
20763
20820
|
FamilyContainer = "FAMILY_CONTAINER",
|
|
20821
|
+
MigrationBridge = "MIGRATION_BRIDGE",
|
|
20764
20822
|
MultiInstance = "MULTI_INSTANCE",
|
|
20765
20823
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
20766
20824
|
SandboxGrant = "SANDBOX_GRANT"
|
|
@@ -22321,6 +22379,21 @@ export type CommerceExpAndRuleCondition = {
|
|
|
22321
22379
|
eligibleConditions?: Maybe<Array<Maybe<CommerceExpEligibleCondition>>>;
|
|
22322
22380
|
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
22323
22381
|
};
|
|
22382
|
+
export type CommerceExpAppInstallationData = {
|
|
22383
|
+
__typename?: 'CommerceExpAppInstallationData';
|
|
22384
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
22385
|
+
appType?: Maybe<CommerceExpAppType>;
|
|
22386
|
+
currentVersion?: Maybe<Scalars['String']['output']>;
|
|
22387
|
+
isUpdateRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22388
|
+
latestVersion?: Maybe<Scalars['String']['output']>;
|
|
22389
|
+
oauthClientId?: Maybe<Scalars['ID']['output']>;
|
|
22390
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
22391
|
+
resourceOwner?: Maybe<Scalars['String']['output']>;
|
|
22392
|
+
};
|
|
22393
|
+
export declare enum CommerceExpAppType {
|
|
22394
|
+
ConnectApp = "CONNECT_APP",
|
|
22395
|
+
ForgeApp = "FORGE_APP"
|
|
22396
|
+
}
|
|
22324
22397
|
export type CommerceExpApplicationReason = {
|
|
22325
22398
|
__typename?: 'CommerceExpApplicationReason';
|
|
22326
22399
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -24358,6 +24431,7 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
24358
24431
|
}
|
|
24359
24432
|
export type CommerceExpEntitlementProvisioning = {
|
|
24360
24433
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
24434
|
+
appInstallationData?: Maybe<CommerceExpAppInstallationData>;
|
|
24361
24435
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
24362
24436
|
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
24363
24437
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25716,6 +25790,7 @@ export type CommerceExpPricingPlanItem = {
|
|
|
25716
25790
|
prorationBehaviour?: Maybe<CommerceExpProrationBehaviour>;
|
|
25717
25791
|
tiers?: Maybe<Array<Maybe<CommerceExpPricingPlanItemTier>>>;
|
|
25718
25792
|
tiersMode?: Maybe<CommerceExpPricingPlanItemTiersMode>;
|
|
25793
|
+
transformQuantity?: Maybe<CommerceExpPricingPlanItemTransformQuantity>;
|
|
25719
25794
|
usageUpdateCadence?: Maybe<CommerceExpPricingPlanItemUsageUpdateCadence>;
|
|
25720
25795
|
};
|
|
25721
25796
|
export declare enum CommerceExpPricingPlanItemChargeType {
|
|
@@ -25740,6 +25815,10 @@ export declare enum CommerceExpPricingPlanItemTiersMode {
|
|
|
25740
25815
|
Graduated = "GRADUATED",
|
|
25741
25816
|
Volume = "VOLUME"
|
|
25742
25817
|
}
|
|
25818
|
+
export type CommerceExpPricingPlanItemTransformQuantity = {
|
|
25819
|
+
__typename?: 'CommerceExpPricingPlanItemTransformQuantity';
|
|
25820
|
+
divideBy?: Maybe<Scalars['Int']['output']>;
|
|
25821
|
+
};
|
|
25743
25822
|
export type CommerceExpPricingPlanItemUsageUpdateCadence = {
|
|
25744
25823
|
__typename?: 'CommerceExpPricingPlanItemUsageUpdateCadence';
|
|
25745
25824
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -26615,8 +26694,17 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26615
26694
|
customerContactEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
26616
26695
|
isPrimaryContactForSomeEntitlement: Scalars['Boolean']['output'];
|
|
26617
26696
|
roles?: Maybe<Array<Maybe<CommerceExpUserRole>>>;
|
|
26697
|
+
user2?: Maybe<CommerceExpUserInfo>;
|
|
26618
26698
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
26619
26699
|
};
|
|
26700
|
+
export type CommerceExpUserInfo = {
|
|
26701
|
+
__typename?: 'CommerceExpUserInfo';
|
|
26702
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
26703
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
26704
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
26705
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
26706
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
26707
|
+
};
|
|
26620
26708
|
export type CommerceExpUserPermission = {
|
|
26621
26709
|
__typename?: 'CommerceExpUserPermission';
|
|
26622
26710
|
permissionId: Scalars['String']['output'];
|
|
@@ -32039,6 +32127,11 @@ export type ConfluenceAccessRequestSettings = {
|
|
|
32039
32127
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32040
32128
|
messageContent?: Maybe<Scalars['String']['output']>;
|
|
32041
32129
|
};
|
|
32130
|
+
export type ConfluenceAccessRequestSettingsConfiguration = {
|
|
32131
|
+
__typename?: 'ConfluenceAccessRequestSettingsConfiguration';
|
|
32132
|
+
contentAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
32133
|
+
spaceAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
32134
|
+
};
|
|
32042
32135
|
export type ConfluenceActiveInlineData = {
|
|
32043
32136
|
__typename?: 'ConfluenceActiveInlineData';
|
|
32044
32137
|
comments: Array<Maybe<ConfluenceInlineMarker>>;
|
|
@@ -33827,16 +33920,25 @@ export type ConfluenceCreateSmartFolderPayload = Payload & {
|
|
|
33827
33920
|
success: Scalars['Boolean']['output'];
|
|
33828
33921
|
};
|
|
33829
33922
|
export type ConfluenceCreateSpaceContent = {
|
|
33923
|
+
embed?: InputMaybe<ConfluenceCreateSpaceContentEmbed>;
|
|
33830
33924
|
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
33831
33925
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
33832
33926
|
title: Scalars['String']['input'];
|
|
33833
33927
|
type: ConfluenceCreateSpaceContentType;
|
|
33834
33928
|
};
|
|
33929
|
+
export type ConfluenceCreateSpaceContentEmbed = {
|
|
33930
|
+
embedIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
33931
|
+
embedUrl: Scalars['String']['input'];
|
|
33932
|
+
extensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
33933
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
33934
|
+
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
33935
|
+
};
|
|
33835
33936
|
export type ConfluenceCreateSpaceContentParent = {
|
|
33836
33937
|
title: Scalars['String']['input'];
|
|
33837
33938
|
type: ConfluenceCreateSpaceContentType;
|
|
33838
33939
|
};
|
|
33839
33940
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
33941
|
+
Embed = "EMBED",
|
|
33840
33942
|
Folder = "FOLDER",
|
|
33841
33943
|
Page = "PAGE"
|
|
33842
33944
|
}
|
|
@@ -34437,6 +34539,11 @@ export type ConfluenceExpertReputation = {
|
|
|
34437
34539
|
score?: Maybe<Scalars['Int']['output']>;
|
|
34438
34540
|
totalAnswers?: Maybe<Scalars['Int']['output']>;
|
|
34439
34541
|
};
|
|
34542
|
+
export type ConfluenceExportJiraMacroAuditPayload = Payload & {
|
|
34543
|
+
__typename?: 'ConfluenceExportJiraMacroAuditPayload';
|
|
34544
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34545
|
+
success: Scalars['Boolean']['output'];
|
|
34546
|
+
};
|
|
34440
34547
|
export type ConfluenceExtensionEgressDeclaration = {
|
|
34441
34548
|
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
34442
34549
|
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -34524,6 +34631,14 @@ export type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
34524
34631
|
reactions?: Maybe<Array<Maybe<ConfluenceCommentReactionSummary>>>;
|
|
34525
34632
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
34526
34633
|
};
|
|
34634
|
+
export declare enum ConfluenceForgeAttachmentActionLocation {
|
|
34635
|
+
Action = "ACTION",
|
|
34636
|
+
Metadata = "METADATA"
|
|
34637
|
+
}
|
|
34638
|
+
export declare enum ConfluenceForgeAttachmentActionSurface {
|
|
34639
|
+
AttachmentMacro = "ATTACHMENT_MACRO",
|
|
34640
|
+
AttachmentPage = "ATTACHMENT_PAGE"
|
|
34641
|
+
}
|
|
34527
34642
|
export type ConfluenceForgeContextToken = {
|
|
34528
34643
|
__typename?: 'ConfluenceForgeContextToken';
|
|
34529
34644
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -34567,6 +34682,9 @@ export type ConfluenceForgeExtension = {
|
|
|
34567
34682
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
34568
34683
|
};
|
|
34569
34684
|
export type ConfluenceForgeExtensionData = {
|
|
34685
|
+
attachment?: InputMaybe<ConfluenceForgeExtensionDataAttachment>;
|
|
34686
|
+
attachmentActionLocation?: InputMaybe<ConfluenceForgeAttachmentActionLocation>;
|
|
34687
|
+
attachmentActionSurface?: InputMaybe<ConfluenceForgeAttachmentActionSurface>;
|
|
34570
34688
|
autoConvertLink?: InputMaybe<Scalars['String']['input']>;
|
|
34571
34689
|
config?: InputMaybe<Scalars['String']['input']>;
|
|
34572
34690
|
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
@@ -34580,6 +34698,9 @@ export type ConfluenceForgeExtensionData = {
|
|
|
34580
34698
|
template?: InputMaybe<ConfluenceForgeExtensionDataTemplate>;
|
|
34581
34699
|
type: Scalars['String']['input'];
|
|
34582
34700
|
};
|
|
34701
|
+
export type ConfluenceForgeExtensionDataAttachment = {
|
|
34702
|
+
id: Scalars['ID']['input'];
|
|
34703
|
+
};
|
|
34583
34704
|
export type ConfluenceForgeExtensionDataContent = {
|
|
34584
34705
|
id: Scalars['ID']['input'];
|
|
34585
34706
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -34974,6 +35095,7 @@ export type ConfluenceJiraCalendarDuration = {
|
|
|
34974
35095
|
export type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
34975
35096
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
34976
35097
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
35098
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
34977
35099
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
34978
35100
|
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
34979
35101
|
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
@@ -34993,6 +35115,25 @@ export type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
|
34993
35115
|
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34994
35116
|
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34995
35117
|
};
|
|
35118
|
+
export declare enum ConfluenceJiraMacroAuditRunStatus {
|
|
35119
|
+
Done = "DONE",
|
|
35120
|
+
Error = "ERROR",
|
|
35121
|
+
NotStarted = "NOT_STARTED",
|
|
35122
|
+
Running = "RUNNING"
|
|
35123
|
+
}
|
|
35124
|
+
export type ConfluenceJiraMacroAuditStatus = {
|
|
35125
|
+
__typename?: 'ConfluenceJiraMacroAuditStatus';
|
|
35126
|
+
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
35127
|
+
contentScanned?: Maybe<Scalars['Int']['output']>;
|
|
35128
|
+
enabled: Scalars['Boolean']['output'];
|
|
35129
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
35130
|
+
macroOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35131
|
+
registeredOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35132
|
+
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
35133
|
+
status: ConfluenceJiraMacroAuditRunStatus;
|
|
35134
|
+
truncated: Scalars['Boolean']['output'];
|
|
35135
|
+
unregisteredOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35136
|
+
};
|
|
34996
35137
|
export type ConfluenceJiraProjectLink = {
|
|
34997
35138
|
__typename?: 'ConfluenceJiraProjectLink';
|
|
34998
35139
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -41101,6 +41242,7 @@ export type ConvoAiJiraDuplicateWorkItemsConnection = {
|
|
|
41101
41242
|
edges?: Maybe<Array<ConvoAiJiraDuplicateWorkItemsEdge>>;
|
|
41102
41243
|
errors?: Maybe<Array<QueryError>>;
|
|
41103
41244
|
pageInfo: PageInfo;
|
|
41245
|
+
projectSize?: Maybe<Scalars['Int']['output']>;
|
|
41104
41246
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41105
41247
|
};
|
|
41106
41248
|
export type ConvoAiJiraDuplicateWorkItemsEdge = {
|
|
@@ -41908,6 +42050,17 @@ export type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
41908
42050
|
node?: Maybe<CplsCustomContributionTarget>;
|
|
41909
42051
|
success: Scalars['Boolean']['output'];
|
|
41910
42052
|
};
|
|
42053
|
+
export type CplsCreateCustomContributionTargetWithScopeAssociationInput = {
|
|
42054
|
+
cloudId: Scalars['ID']['input'];
|
|
42055
|
+
name: Scalars['String']['input'];
|
|
42056
|
+
scopeId: Scalars['ID']['input'];
|
|
42057
|
+
};
|
|
42058
|
+
export type CplsCreateCustomContributionTargetWithScopeAssociationPayload = Payload & {
|
|
42059
|
+
__typename?: 'CplsCreateCustomContributionTargetWithScopeAssociationPayload';
|
|
42060
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42061
|
+
success: Scalars['Boolean']['output'];
|
|
42062
|
+
workScopeAssociation?: Maybe<CplsWorkEdge>;
|
|
42063
|
+
};
|
|
41911
42064
|
export type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
41912
42065
|
cloudId: Scalars['ID']['input'];
|
|
41913
42066
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -42096,6 +42249,7 @@ export type CplsFilters = {
|
|
|
42096
42249
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42097
42250
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42098
42251
|
id: Scalars['ID']['output'];
|
|
42252
|
+
includeCurrentUserAsContributor: Scalars['Boolean']['output'];
|
|
42099
42253
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
42100
42254
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42101
42255
|
searchTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -42106,6 +42260,7 @@ export type CplsFiltersInput = {
|
|
|
42106
42260
|
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42107
42261
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42108
42262
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42263
|
+
includeCurrentUserAsContributor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42109
42264
|
jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42110
42265
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42111
42266
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50340,6 +50495,14 @@ export type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
|
50340
50495
|
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
50341
50496
|
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
50342
50497
|
};
|
|
50498
|
+
export declare enum DlpConfidenceBand {
|
|
50499
|
+
High = "HIGH",
|
|
50500
|
+
Low = "LOW",
|
|
50501
|
+
Medium = "MEDIUM"
|
|
50502
|
+
}
|
|
50503
|
+
export type DlpConfidenceBandInput = {
|
|
50504
|
+
range: DlpConfidenceBand;
|
|
50505
|
+
};
|
|
50343
50506
|
export type DlpCreateFalsePositivesInput = {
|
|
50344
50507
|
falsePositives: Array<DlpFalsePositiveInput>;
|
|
50345
50508
|
orgId: Scalars['String']['input'];
|
|
@@ -50384,6 +50547,13 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
50384
50547
|
scope?: Maybe<DlpScope>;
|
|
50385
50548
|
status?: Maybe<DlpMappingStatus>;
|
|
50386
50549
|
};
|
|
50550
|
+
export type DlpDetectorInput = {
|
|
50551
|
+
ari: Scalars['String']['input'];
|
|
50552
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
50553
|
+
platformCategory?: InputMaybe<Scalars['String']['input']>;
|
|
50554
|
+
title: Scalars['String']['input'];
|
|
50555
|
+
type: Scalars['String']['input'];
|
|
50556
|
+
};
|
|
50387
50557
|
export type DlpFalsePositive = {
|
|
50388
50558
|
__typename?: 'DlpFalsePositive';
|
|
50389
50559
|
actorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50472,7 +50642,9 @@ export type DlpFindingOccurrence = {
|
|
|
50472
50642
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
50473
50643
|
};
|
|
50474
50644
|
export type DlpFindingsFiltersInput = {
|
|
50645
|
+
confidenceBands?: InputMaybe<Array<DlpConfidenceBandInput>>;
|
|
50475
50646
|
detectorIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50647
|
+
detectors?: InputMaybe<Array<DlpDetectorInput>>;
|
|
50476
50648
|
endEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50477
50649
|
startEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50478
50650
|
};
|
|
@@ -51816,6 +51988,7 @@ export type ExternalCalendarEvent = Node & {
|
|
|
51816
51988
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
51817
51989
|
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
51818
51990
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
51991
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51819
51992
|
container?: Maybe<ExternalEntity>;
|
|
51820
51993
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51821
51994
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51876,6 +52049,7 @@ export type ExternalCampaign = Node & {
|
|
|
51876
52049
|
__typename?: 'ExternalCampaign';
|
|
51877
52050
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51878
52051
|
campaignType?: Maybe<Scalars['String']['output']>;
|
|
52052
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51879
52053
|
container?: Maybe<ExternalEntity>;
|
|
51880
52054
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51881
52055
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51923,6 +52097,7 @@ export type ExternalCase = Node & {
|
|
|
51923
52097
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51924
52098
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
51925
52099
|
closedAt?: Maybe<Scalars['String']['output']>;
|
|
52100
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51926
52101
|
container?: Maybe<ExternalEntity>;
|
|
51927
52102
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51928
52103
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51992,6 +52167,7 @@ export type ExternalChapter = {
|
|
|
51992
52167
|
export type ExternalClaudeSession = Node & {
|
|
51993
52168
|
__typename?: 'ExternalClaudeSession';
|
|
51994
52169
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52170
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51995
52171
|
container?: Maybe<ExternalEntity>;
|
|
51996
52172
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51997
52173
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52022,6 +52198,7 @@ export type ExternalClaudeSession = Node & {
|
|
|
52022
52198
|
export type ExternalCodexSession = Node & {
|
|
52023
52199
|
__typename?: 'ExternalCodexSession';
|
|
52024
52200
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52201
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52025
52202
|
container?: Maybe<ExternalEntity>;
|
|
52026
52203
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52027
52204
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52069,6 +52246,7 @@ export type ExternalCollaboratorsSortType = {
|
|
|
52069
52246
|
export type ExternalComment = Node & {
|
|
52070
52247
|
__typename?: 'ExternalComment';
|
|
52071
52248
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52249
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52072
52250
|
container?: Maybe<ExternalEntity>;
|
|
52073
52251
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52074
52252
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52120,6 +52298,13 @@ export type ExternalCommit = Node & {
|
|
|
52120
52298
|
export declare enum ExternalCommitFlags {
|
|
52121
52299
|
MergeCommit = "MERGE_COMMIT"
|
|
52122
52300
|
}
|
|
52301
|
+
export declare enum ExternalConnectorType {
|
|
52302
|
+
Backfill = "BACKFILL",
|
|
52303
|
+
Full = "FULL",
|
|
52304
|
+
Lite = "LITE",
|
|
52305
|
+
SmartLink = "SMART_LINK",
|
|
52306
|
+
Unknown = "UNKNOWN"
|
|
52307
|
+
}
|
|
52123
52308
|
export declare enum ExternalContentRepresentation {
|
|
52124
52309
|
Base64 = "BASE64",
|
|
52125
52310
|
Plaintext = "PLAINTEXT"
|
|
@@ -52137,6 +52322,7 @@ export type ExternalContributor = {
|
|
|
52137
52322
|
export type ExternalConversation = Node & {
|
|
52138
52323
|
__typename?: 'ExternalConversation';
|
|
52139
52324
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52325
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52140
52326
|
container?: Maybe<ExternalEntity>;
|
|
52141
52327
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52142
52328
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52192,6 +52378,7 @@ export type ExternalCurrency = {
|
|
|
52192
52378
|
export type ExternalCursorSession = Node & {
|
|
52193
52379
|
__typename?: 'ExternalCursorSession';
|
|
52194
52380
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52381
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52195
52382
|
container?: Maybe<ExternalEntity>;
|
|
52196
52383
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52197
52384
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52226,6 +52413,7 @@ export type ExternalCustomerContact = Node & {
|
|
|
52226
52413
|
buyerAttributes?: Maybe<Scalars['String']['output']>;
|
|
52227
52414
|
canAllowPortalSelfReg?: Maybe<Scalars['Boolean']['output']>;
|
|
52228
52415
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52416
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52229
52417
|
contactSource?: Maybe<Scalars['String']['output']>;
|
|
52230
52418
|
contactUser?: Maybe<ExternalUser>;
|
|
52231
52419
|
container?: Maybe<ExternalEntity>;
|
|
@@ -52285,6 +52473,7 @@ export type ExternalCustomerOrg = Node & {
|
|
|
52285
52473
|
billingAddress?: Maybe<ExternalAddress>;
|
|
52286
52474
|
channelProgramLevelName?: Maybe<Scalars['String']['output']>;
|
|
52287
52475
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52476
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52288
52477
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52289
52478
|
container?: Maybe<ExternalEntity>;
|
|
52290
52479
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52344,6 +52533,7 @@ export type ExternalCustomerOrgCategory = Node & {
|
|
|
52344
52533
|
__typename?: 'ExternalCustomerOrgCategory';
|
|
52345
52534
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52346
52535
|
categoryType?: Maybe<Scalars['String']['output']>;
|
|
52536
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52347
52537
|
container?: Maybe<ExternalEntity>;
|
|
52348
52538
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52349
52539
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52389,6 +52579,7 @@ export type ExternalCustomerOrgLifeTimeValue = {
|
|
|
52389
52579
|
export type ExternalDashboard = Node & {
|
|
52390
52580
|
__typename?: 'ExternalDashboard';
|
|
52391
52581
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52582
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52392
52583
|
container?: Maybe<ExternalEntity>;
|
|
52393
52584
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52394
52585
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52424,6 +52615,7 @@ export type ExternalDataTable = Node & {
|
|
|
52424
52615
|
__typename?: 'ExternalDataTable';
|
|
52425
52616
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52426
52617
|
columns?: Maybe<Array<Maybe<ExternalDataTableColumn>>>;
|
|
52618
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52427
52619
|
container?: Maybe<ExternalEntity>;
|
|
52428
52620
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52429
52621
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52456,6 +52648,7 @@ export type ExternalDeal = Node & {
|
|
|
52456
52648
|
__typename?: 'ExternalDeal';
|
|
52457
52649
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
52458
52650
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52651
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52459
52652
|
contact?: Maybe<ExternalUser>;
|
|
52460
52653
|
container?: Maybe<ExternalEntity>;
|
|
52461
52654
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52580,6 +52773,7 @@ export type ExternalDocument = Node & {
|
|
|
52580
52773
|
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
52581
52774
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52582
52775
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
52776
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52583
52777
|
container?: Maybe<ExternalEntity>;
|
|
52584
52778
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52585
52779
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -52744,6 +52938,7 @@ export declare enum ExternalEventType {
|
|
|
52744
52938
|
export type ExternalExperimental = Node & {
|
|
52745
52939
|
__typename?: 'ExternalExperimental';
|
|
52746
52940
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52941
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52747
52942
|
container?: Maybe<ExternalEntity>;
|
|
52748
52943
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52749
52944
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52847,6 +53042,7 @@ export type ExternalLead = Node & {
|
|
|
52847
53042
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52848
53043
|
company?: Maybe<Scalars['String']['output']>;
|
|
52849
53044
|
companyDunsNumber?: Maybe<Scalars['String']['output']>;
|
|
53045
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52850
53046
|
container?: Maybe<ExternalEntity>;
|
|
52851
53047
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52852
53048
|
convertedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52911,6 +53107,7 @@ export type ExternalMessage = Node & {
|
|
|
52911
53107
|
__typename?: 'ExternalMessage';
|
|
52912
53108
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52913
53109
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
53110
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52914
53111
|
container?: Maybe<ExternalEntity>;
|
|
52915
53112
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52916
53113
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52941,9 +53138,19 @@ export type ExternalMessageLink = {
|
|
|
52941
53138
|
__typename?: 'ExternalMessageLink';
|
|
52942
53139
|
url?: Maybe<Scalars['String']['output']>;
|
|
52943
53140
|
};
|
|
53141
|
+
export type ExternalMetadataContentLink = {
|
|
53142
|
+
__typename?: 'ExternalMetadataContentLink';
|
|
53143
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
53144
|
+
};
|
|
53145
|
+
export type ExternalMetadataContentTextEntry = {
|
|
53146
|
+
__typename?: 'ExternalMetadataContentTextEntry';
|
|
53147
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
53148
|
+
user?: Maybe<ExternalUser>;
|
|
53149
|
+
};
|
|
52944
53150
|
export type ExternalOrganisation = Node & {
|
|
52945
53151
|
__typename?: 'ExternalOrganisation';
|
|
52946
53152
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53153
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52947
53154
|
container?: Maybe<ExternalEntity>;
|
|
52948
53155
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52949
53156
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52988,6 +53195,7 @@ export type ExternalPipeline = {
|
|
|
52988
53195
|
export type ExternalPosition = Node & {
|
|
52989
53196
|
__typename?: 'ExternalPosition';
|
|
52990
53197
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53198
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52991
53199
|
container?: Maybe<ExternalEntity>;
|
|
52992
53200
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52993
53201
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53016,6 +53224,7 @@ export type ExternalProject = Node & {
|
|
|
53016
53224
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53017
53225
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
53018
53226
|
businessCase?: Maybe<Scalars['String']['output']>;
|
|
53227
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53019
53228
|
container?: Maybe<ExternalEntity>;
|
|
53020
53229
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53021
53230
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53218,6 +53427,7 @@ export type ExternalServicenowBusinessApp = Node & {
|
|
|
53218
53427
|
businessProcess?: Maybe<Scalars['String']['output']>;
|
|
53219
53428
|
businessUnit?: Maybe<Scalars['String']['output']>;
|
|
53220
53429
|
company?: Maybe<Scalars['String']['output']>;
|
|
53430
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53221
53431
|
container?: Maybe<ExternalEntity>;
|
|
53222
53432
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53223
53433
|
costCenter?: Maybe<Scalars['String']['output']>;
|
|
@@ -53264,6 +53474,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
53264
53474
|
__typename?: 'ExternalSoftwareService';
|
|
53265
53475
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53266
53476
|
associationsMetadata?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationsMetadataTuple>>>;
|
|
53477
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53267
53478
|
container?: Maybe<ExternalEntity>;
|
|
53268
53479
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53269
53480
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53302,6 +53513,7 @@ export type ExternalSoftwareServiceAssociationsMetadataTuple = {
|
|
|
53302
53513
|
export type ExternalSpace = Node & {
|
|
53303
53514
|
__typename?: 'ExternalSpace';
|
|
53304
53515
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53516
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53305
53517
|
container?: Maybe<ExternalEntity>;
|
|
53306
53518
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53307
53519
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53336,9 +53548,15 @@ export declare enum ExternalSpaceSubtype {
|
|
|
53336
53548
|
Software = "SOFTWARE",
|
|
53337
53549
|
Space = "SPACE"
|
|
53338
53550
|
}
|
|
53551
|
+
export type ExternalSummaryHighlight = {
|
|
53552
|
+
__typename?: 'ExternalSummaryHighlight';
|
|
53553
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
53554
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
53555
|
+
};
|
|
53339
53556
|
export type ExternalTeam = Node & {
|
|
53340
53557
|
__typename?: 'ExternalTeam';
|
|
53341
53558
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53559
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53342
53560
|
container?: Maybe<ExternalEntity>;
|
|
53343
53561
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53344
53562
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53363,6 +53581,7 @@ export type ExternalTeam = Node & {
|
|
|
53363
53581
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
53364
53582
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
53365
53583
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53584
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53366
53585
|
container?: Maybe<ExternalEntity>;
|
|
53367
53586
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53368
53587
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53386,6 +53605,7 @@ export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
|
53386
53605
|
export type ExternalTest = Node & {
|
|
53387
53606
|
__typename?: 'ExternalTest';
|
|
53388
53607
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53608
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53389
53609
|
container?: Maybe<ExternalEntity>;
|
|
53390
53610
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53391
53611
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53413,6 +53633,7 @@ export type ExternalTest = Node & {
|
|
|
53413
53633
|
export type ExternalTestExecution = Node & {
|
|
53414
53634
|
__typename?: 'ExternalTestExecution';
|
|
53415
53635
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53636
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53416
53637
|
container?: Maybe<ExternalEntity>;
|
|
53417
53638
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53418
53639
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53445,6 +53666,7 @@ export type ExternalTestInfo = {
|
|
|
53445
53666
|
export type ExternalTestPlan = Node & {
|
|
53446
53667
|
__typename?: 'ExternalTestPlan';
|
|
53447
53668
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53669
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53448
53670
|
container?: Maybe<ExternalEntity>;
|
|
53449
53671
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53450
53672
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53468,6 +53690,7 @@ export type ExternalTestRun = Node & {
|
|
|
53468
53690
|
__typename?: 'ExternalTestRun';
|
|
53469
53691
|
assignee?: Maybe<ExternalUser>;
|
|
53470
53692
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53693
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53471
53694
|
container?: Maybe<ExternalEntity>;
|
|
53472
53695
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53473
53696
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53495,6 +53718,7 @@ export type ExternalTestRun = Node & {
|
|
|
53495
53718
|
export type ExternalTestStatus = Node & {
|
|
53496
53719
|
__typename?: 'ExternalTestStatus';
|
|
53497
53720
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53721
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53498
53722
|
container?: Maybe<ExternalEntity>;
|
|
53499
53723
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53500
53724
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53567,6 +53791,7 @@ export type ExternalVideo = Node & {
|
|
|
53567
53791
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
53568
53792
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
53569
53793
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
53794
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53570
53795
|
container?: Maybe<ExternalEntity>;
|
|
53571
53796
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53572
53797
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
@@ -53576,16 +53801,23 @@ export type ExternalVideo = Node & {
|
|
|
53576
53801
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53577
53802
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53578
53803
|
embedUrl?: Maybe<Scalars['String']['output']>;
|
|
53804
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
53579
53805
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
53580
53806
|
height?: Maybe<Scalars['Long']['output']>;
|
|
53581
53807
|
id: Scalars['ID']['output'];
|
|
53582
53808
|
keyPoints?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53583
53809
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
53584
53810
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
53811
|
+
metadataContentLinks?: Maybe<Array<Maybe<ExternalMetadataContentLink>>>;
|
|
53812
|
+
metadataContentText?: Maybe<Array<Maybe<ExternalMetadataContentTextEntry>>>;
|
|
53813
|
+
metadataContentUrl?: Maybe<Scalars['String']['output']>;
|
|
53585
53814
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53586
53815
|
parent?: Maybe<ExternalEntity>;
|
|
53587
53816
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
53588
53817
|
provider?: Maybe<ExternalProvider>;
|
|
53818
|
+
summaryHighlights?: Maybe<Array<Maybe<ExternalSummaryHighlight>>>;
|
|
53819
|
+
summaryNextSteps?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53820
|
+
summaryOverview?: Maybe<Scalars['String']['output']>;
|
|
53589
53821
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
53590
53822
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
53591
53823
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -53658,6 +53890,7 @@ export type ExternalWorkItem = Node & {
|
|
|
53658
53890
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53659
53891
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53660
53892
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
53893
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53661
53894
|
container?: Maybe<ExternalEntity>;
|
|
53662
53895
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53663
53896
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53727,6 +53960,7 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
53727
53960
|
export type ExternalWorker = Node & {
|
|
53728
53961
|
__typename?: 'ExternalWorker';
|
|
53729
53962
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53963
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53730
53964
|
container?: Maybe<ExternalEntity>;
|
|
53731
53965
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53732
53966
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -56797,9 +57031,12 @@ export type GraphInferenceGraphclawOption = {
|
|
|
56797
57031
|
};
|
|
56798
57032
|
export type GraphInferenceGraphclawOptionV2 = {
|
|
56799
57033
|
__typename?: 'GraphInferenceGraphclawOptionV2';
|
|
57034
|
+
compatibleSources: Array<Scalars['String']['output']>;
|
|
56800
57035
|
enabled: Scalars['Boolean']['output'];
|
|
57036
|
+
graphAvailable: Scalars['Boolean']['output'];
|
|
56801
57037
|
id: Scalars['String']['output'];
|
|
56802
57038
|
name: Scalars['String']['output'];
|
|
57039
|
+
supportedDestinations: Array<Scalars['String']['output']>;
|
|
56803
57040
|
};
|
|
56804
57041
|
export type GraphInferenceGraphclawSourceOptionV2 = {
|
|
56805
57042
|
__typename?: 'GraphInferenceGraphclawSourceOptionV2';
|
|
@@ -56980,6 +57217,7 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
56980
57217
|
};
|
|
56981
57218
|
export type GraphInferenceInferenceEvalInput = {
|
|
56982
57219
|
appId: Scalars['String']['input'];
|
|
57220
|
+
historyFixture?: InputMaybe<Scalars['JSON']['input']>;
|
|
56983
57221
|
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
56984
57222
|
sourceAri: Scalars['String']['input'];
|
|
56985
57223
|
};
|
|
@@ -57003,6 +57241,7 @@ export type GraphInferenceInferenceEvalRunResponse = {
|
|
|
57003
57241
|
attemptCount: Scalars['Int']['output'];
|
|
57004
57242
|
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
57005
57243
|
failureCode?: Maybe<Scalars['String']['output']>;
|
|
57244
|
+
historyMode: Scalars['String']['output'];
|
|
57006
57245
|
result?: Maybe<Scalars['JSON']['output']>;
|
|
57007
57246
|
runId: Scalars['ID']['output'];
|
|
57008
57247
|
status: Scalars['String']['output'];
|
|
@@ -57012,6 +57251,7 @@ export type GraphInferenceInferenceEvalStartResponse = {
|
|
|
57012
57251
|
__typename?: 'GraphInferenceInferenceEvalStartResponse';
|
|
57013
57252
|
createdAtUnixSeconds: Scalars['String']['output'];
|
|
57014
57253
|
expiresAtUnixSeconds: Scalars['String']['output'];
|
|
57254
|
+
historyMode: Scalars['String']['output'];
|
|
57015
57255
|
runId: Scalars['ID']['output'];
|
|
57016
57256
|
status: Scalars['String']['output'];
|
|
57017
57257
|
};
|
|
@@ -57035,6 +57275,7 @@ export type GraphInferenceInferenceModelChoice = {
|
|
|
57035
57275
|
};
|
|
57036
57276
|
export type GraphInferenceInferenceModelsInput = {
|
|
57037
57277
|
infer: Scalars['String']['input'];
|
|
57278
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
57038
57279
|
useCaseId: Scalars['String']['input'];
|
|
57039
57280
|
};
|
|
57040
57281
|
export type GraphInferenceInferenceModelsResponse = {
|
|
@@ -57936,12 +58177,14 @@ export type GraphIntegrationMcpAdminManagementNoAuthConfigInput = {
|
|
|
57936
58177
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
57937
58178
|
};
|
|
57938
58179
|
export type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
58180
|
+
accessMode?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAccessMode>;
|
|
57939
58181
|
allowedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57940
58182
|
allowedPrincipalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
57941
58183
|
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
57942
58184
|
authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
57943
58185
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57944
58186
|
cloudId: Scalars['ID']['input'];
|
|
58187
|
+
deniedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57945
58188
|
displayName: Scalars['String']['input'];
|
|
57946
58189
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
57947
58190
|
extraInputs?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
@@ -61801,6 +62044,8 @@ export type GraphStore = {
|
|
|
61801
62044
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
61802
62045
|
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
61803
62046
|
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
62047
|
+
jiraIssueSharedWithUser?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserConnection>;
|
|
62048
|
+
jiraIssueSharedWithUserInverse?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection>;
|
|
61804
62049
|
jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
61805
62050
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
61806
62051
|
jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
@@ -66792,6 +67037,22 @@ export type GraphStoreJiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
66792
67037
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
66793
67038
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
66794
67039
|
};
|
|
67040
|
+
export type GraphStoreJiraIssueSharedWithUserArgs = {
|
|
67041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67042
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67044
|
+
id: Scalars['ID']['input'];
|
|
67045
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67046
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
67047
|
+
};
|
|
67048
|
+
export type GraphStoreJiraIssueSharedWithUserInverseArgs = {
|
|
67049
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67050
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67051
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67052
|
+
id: Scalars['ID']['input'];
|
|
67053
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
67054
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
67055
|
+
};
|
|
66795
67056
|
export type GraphStoreJiraIssueToJiraPriorityArgs = {
|
|
66796
67057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66797
67058
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80259,6 +80520,9 @@ export type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
|
80259
80520
|
export type GraphStoreJiraIssueBlockedByJiraIssueSortInput = {
|
|
80260
80521
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80261
80522
|
};
|
|
80523
|
+
export type GraphStoreJiraIssueSharedWithUserSortInput = {
|
|
80524
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80525
|
+
};
|
|
80262
80526
|
export type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
80263
80527
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80264
80528
|
};
|
|
@@ -82251,7 +82515,7 @@ export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseEdge = {
|
|
|
82251
82515
|
node?: Maybe<GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
82252
82516
|
};
|
|
82253
82517
|
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
82254
|
-
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
82518
|
+
export type GraphStoreSimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
82255
82519
|
export type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
82256
82520
|
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
82257
82521
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
@@ -86851,7 +87115,7 @@ export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
|
86851
87115
|
node?: Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
86852
87116
|
};
|
|
86853
87117
|
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
86854
|
-
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
87118
|
+
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
86855
87119
|
export type GraphStoreSimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
86856
87120
|
__typename?: 'GraphStoreSimplifiedInferredProjectLinksEntityConnection';
|
|
86857
87121
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -87752,6 +88016,34 @@ export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge = {
|
|
|
87752
88016
|
};
|
|
87753
88017
|
export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion = JiraIssue;
|
|
87754
88018
|
export type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion = JiraIssue;
|
|
88019
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserConnection = HasPageInfo & {
|
|
88020
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserConnection';
|
|
88021
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserEdge>>>;
|
|
88022
|
+
pageInfo: PageInfo;
|
|
88023
|
+
};
|
|
88024
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserEdge = {
|
|
88025
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserEdge';
|
|
88026
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88027
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88028
|
+
id: Scalars['ID']['output'];
|
|
88029
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88030
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserUnion>;
|
|
88031
|
+
};
|
|
88032
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection = HasPageInfo & {
|
|
88033
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection';
|
|
88034
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge>>>;
|
|
88035
|
+
pageInfo: PageInfo;
|
|
88036
|
+
};
|
|
88037
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge = {
|
|
88038
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueSharedWithUserInverseEdge';
|
|
88039
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88040
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88041
|
+
id: Scalars['ID']['output'];
|
|
88042
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88043
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseUnion>;
|
|
88044
|
+
};
|
|
88045
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserInverseUnion = JiraIssue;
|
|
88046
|
+
export type GraphStoreSimplifiedJiraIssueSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
87755
88047
|
export type GraphStoreSimplifiedJiraIssueToJiraPriorityConnection = HasPageInfo & {
|
|
87756
88048
|
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityConnection';
|
|
87757
88049
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityEdge>>>;
|
|
@@ -97304,6 +97596,8 @@ export type GraphStoreV2 = {
|
|
|
97304
97596
|
jiraWorkItemLinksJiraWorkItemRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksJiraWorkItemRemoteLinkInverseConnection>;
|
|
97305
97597
|
jiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityConnection>;
|
|
97306
97598
|
jiraWorkItemLinksSupportEscalationEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseConnection>;
|
|
97599
|
+
jiraWorkItemSharedWithAtlassianUser?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection>;
|
|
97600
|
+
jiraWorkItemSharedWithAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection>;
|
|
97307
97601
|
jiraWorkItemTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection>;
|
|
97308
97602
|
jiraWorkItemTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectInverseConnection>;
|
|
97309
97603
|
jsmIncidentImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJsmIncidentImpactsCompassComponentConnection>;
|
|
@@ -103441,6 +103735,20 @@ export type GraphStoreV2JiraWorkItemLinksSupportEscalationEntityInverseArgs = {
|
|
|
103441
103735
|
id: Scalars['ID']['input'];
|
|
103442
103736
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput>;
|
|
103443
103737
|
};
|
|
103738
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserArgs = {
|
|
103739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103740
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103741
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103742
|
+
id: Scalars['ID']['input'];
|
|
103743
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
103744
|
+
};
|
|
103745
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserInverseArgs = {
|
|
103746
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103747
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103749
|
+
id: Scalars['ID']['input'];
|
|
103750
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
103751
|
+
};
|
|
103444
103752
|
export type GraphStoreV2JiraWorkItemTracksAtlassianProjectArgs = {
|
|
103445
103753
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103446
103754
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -107439,6 +107747,9 @@ export type GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput = {
|
|
|
107439
107747
|
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
107440
107748
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
107441
107749
|
};
|
|
107750
|
+
export type GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput = {
|
|
107751
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107752
|
+
};
|
|
107442
107753
|
export type GraphStoreV2JiraWorkItemTracksAtlassianProjectSortInput = {
|
|
107443
107754
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
107444
107755
|
};
|
|
@@ -108291,7 +108602,7 @@ export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseEdge =
|
|
|
108291
108602
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion>;
|
|
108292
108603
|
};
|
|
108293
108604
|
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityInverseUnion = TownsquareProject;
|
|
108294
|
-
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
108605
|
+
export type GraphStoreV2SimplifiedAtlassianProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
108295
108606
|
export type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection = HasPageInfo & {
|
|
108296
108607
|
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection';
|
|
108297
108608
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectEdge>>>;
|
|
@@ -117933,7 +118244,7 @@ export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseEdge = {
|
|
|
117933
118244
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion>;
|
|
117934
118245
|
};
|
|
117935
118246
|
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityInverseUnion = GraphStoreNodeResponse;
|
|
117936
|
-
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | JiraIssue | LoomVideo;
|
|
118247
|
+
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityUnion = ConfluencePage | DevOpsDocument | ExternalDocument | JiraIssue | LoomVideo;
|
|
117937
118248
|
export type GraphStoreV2SimplifiedInferredProjectLinksEntityConnection = HasPageInfo & {
|
|
117938
118249
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectLinksEntityConnection';
|
|
117939
118250
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityEdge>>>;
|
|
@@ -120198,6 +120509,34 @@ export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInvers
|
|
|
120198
120509
|
};
|
|
120199
120510
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseUnion = JiraIssue;
|
|
120200
120511
|
export type GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityUnion = JiraIssue | JiraProject;
|
|
120512
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection = HasPageInfo & {
|
|
120513
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection';
|
|
120514
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge>>>;
|
|
120515
|
+
pageInfo: PageInfo;
|
|
120516
|
+
};
|
|
120517
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge = {
|
|
120518
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserEdge';
|
|
120519
|
+
createdAt: Scalars['DateTime']['output'];
|
|
120520
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
120521
|
+
id: Scalars['ID']['output'];
|
|
120522
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
120523
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserUnion>;
|
|
120524
|
+
};
|
|
120525
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection = HasPageInfo & {
|
|
120526
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection';
|
|
120527
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge>>>;
|
|
120528
|
+
pageInfo: PageInfo;
|
|
120529
|
+
};
|
|
120530
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge = {
|
|
120531
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseEdge';
|
|
120532
|
+
createdAt: Scalars['DateTime']['output'];
|
|
120533
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
120534
|
+
id: Scalars['ID']['output'];
|
|
120535
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
120536
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseUnion>;
|
|
120537
|
+
};
|
|
120538
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseUnion = JiraIssue;
|
|
120539
|
+
export type GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
120201
120540
|
export type GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection = HasPageInfo & {
|
|
120202
120541
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection';
|
|
120203
120542
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectEdge>>>;
|
|
@@ -121881,7 +122220,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121881
122220
|
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
121882
122221
|
businessName?: Maybe<Scalars['String']['output']>;
|
|
121883
122222
|
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
121884
|
-
companyId
|
|
122223
|
+
companyId?: Maybe<Scalars['String']['output']>;
|
|
121885
122224
|
companySize?: Maybe<Scalars['String']['output']>;
|
|
121886
122225
|
companyType?: Maybe<Scalars['String']['output']>;
|
|
121887
122226
|
countryCode?: Maybe<Scalars['String']['output']>;
|
|
@@ -121890,6 +122229,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121890
122229
|
description?: Maybe<Scalars['String']['output']>;
|
|
121891
122230
|
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
121892
122231
|
domain: Scalars['String']['output'];
|
|
122232
|
+
domainType: GrowthUnifiedProfileDomainType;
|
|
121893
122233
|
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
121894
122234
|
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
121895
122235
|
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -123445,6 +123785,7 @@ export declare enum HelpCenterMigrationState {
|
|
|
123445
123785
|
export type HelpCenterMoveSiteTreeNodeInput = {
|
|
123446
123786
|
beforeSiblingId?: InputMaybe<Scalars['ID']['input']>;
|
|
123447
123787
|
destinationParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
123788
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
123448
123789
|
isDraft?: Scalars['Boolean']['input'];
|
|
123449
123790
|
siteTreeNodeId: Scalars['ID']['input'];
|
|
123450
123791
|
};
|
|
@@ -125452,6 +125793,7 @@ export type HypothesisMitigationPlan = Node & {
|
|
|
125452
125793
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
125453
125794
|
steps?: Maybe<Array<HypothesisMitigationPlanStep>>;
|
|
125454
125795
|
summary?: Maybe<Scalars['String']['output']>;
|
|
125796
|
+
summaryAdf?: Maybe<Scalars['JSON']['output']>;
|
|
125455
125797
|
title?: Maybe<Scalars['String']['output']>;
|
|
125456
125798
|
};
|
|
125457
125799
|
export type HypothesisMitigationPlanStep = {
|
|
@@ -127176,6 +127518,7 @@ export type JiraAgentInSpace = {
|
|
|
127176
127518
|
hasAppSettings: Scalars['Boolean']['output'];
|
|
127177
127519
|
hasAutonomySettings: Scalars['Boolean']['output'];
|
|
127178
127520
|
sources: Array<JiraAgentInSpaceSource>;
|
|
127521
|
+
spaceAri: Scalars['ID']['output'];
|
|
127179
127522
|
spaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
127180
127523
|
triggers?: Maybe<JiraAgentInSpaceTriggerConnection>;
|
|
127181
127524
|
};
|
|
@@ -127317,6 +127660,7 @@ export type JiraAgentSessionEdge = {
|
|
|
127317
127660
|
node?: Maybe<JiraAgentSession>;
|
|
127318
127661
|
};
|
|
127319
127662
|
export declare enum JiraAgentSessionInvocationType {
|
|
127663
|
+
Automation = "AUTOMATION",
|
|
127320
127664
|
IssueAssignment = "ISSUE_ASSIGNMENT",
|
|
127321
127665
|
IssueCommentMention = "ISSUE_COMMENT_MENTION",
|
|
127322
127666
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
@@ -128626,6 +128970,11 @@ export type JiraBacklog = {
|
|
|
128626
128970
|
boardConfig: JiraBacklogBoardConfig;
|
|
128627
128971
|
globalConfig: JiraBacklogGlobalConfig;
|
|
128628
128972
|
};
|
|
128973
|
+
export type JiraBacklogAgentSetupBanner = {
|
|
128974
|
+
__typename?: 'JiraBacklogAgentSetupBanner';
|
|
128975
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
128976
|
+
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
128977
|
+
};
|
|
128629
128978
|
export type JiraBacklogApplicationProperty = {
|
|
128630
128979
|
__typename?: 'JiraBacklogApplicationProperty';
|
|
128631
128980
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -131857,6 +132206,7 @@ export declare enum JiraConfigFieldType {
|
|
|
131857
132206
|
CustomImportId = "CUSTOM_IMPORT_ID",
|
|
131858
132207
|
CustomJwmCategory = "CUSTOM_JWM_CATEGORY",
|
|
131859
132208
|
CustomLabels = "CUSTOM_LABELS",
|
|
132209
|
+
CustomLongText = "CUSTOM_LONG_TEXT",
|
|
131860
132210
|
CustomMultiCheckboxes = "CUSTOM_MULTI_CHECKBOXES",
|
|
131861
132211
|
CustomMultiGroupPicker = "CUSTOM_MULTI_GROUP_PICKER",
|
|
131862
132212
|
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
@@ -134798,6 +135148,10 @@ export declare enum JiraFieldSuggestionAction {
|
|
|
134798
135148
|
Accept = "ACCEPT",
|
|
134799
135149
|
Decline = "DECLINE"
|
|
134800
135150
|
}
|
|
135151
|
+
export declare enum JiraFieldSuggestionLifecycleStatus {
|
|
135152
|
+
Accepted = "ACCEPTED",
|
|
135153
|
+
Pending = "PENDING"
|
|
135154
|
+
}
|
|
134801
135155
|
export declare enum JiraFieldSuggestionStatus {
|
|
134802
135156
|
Error = "ERROR",
|
|
134803
135157
|
FieldValidationError = "FIELD_VALIDATION_ERROR",
|
|
@@ -134891,14 +135245,18 @@ export type JiraFieldUpdateSuggestionEdge = {
|
|
|
134891
135245
|
export type JiraFieldUpdateSuggestionItem = {
|
|
134892
135246
|
__typename?: 'JiraFieldUpdateSuggestionItem';
|
|
134893
135247
|
actionKey?: Maybe<Scalars['String']['output']>;
|
|
135248
|
+
actionedAt?: Maybe<Scalars['Long']['output']>;
|
|
135249
|
+
actionedBy?: Maybe<Scalars['ID']['output']>;
|
|
134894
135250
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
134895
135251
|
experienceId?: Maybe<Scalars['String']['output']>;
|
|
134896
135252
|
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
135253
|
+
invokerAri?: Maybe<Scalars['ID']['output']>;
|
|
134897
135254
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
134898
135255
|
product?: Maybe<Scalars['String']['output']>;
|
|
134899
135256
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
134900
135257
|
source?: Maybe<JiraNextActionGroup>;
|
|
134901
135258
|
sourceUrl?: Maybe<Scalars['String']['output']>;
|
|
135259
|
+
status?: Maybe<JiraFieldSuggestionLifecycleStatus>;
|
|
134902
135260
|
updates?: Maybe<Array<JiraFieldUpdate>>;
|
|
134903
135261
|
};
|
|
134904
135262
|
export type JiraFieldUpdateSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -135215,6 +135573,10 @@ export type JiraForgeExtensionLicense = {
|
|
|
135215
135573
|
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
135216
135574
|
type?: Maybe<Scalars['String']['output']>;
|
|
135217
135575
|
};
|
|
135576
|
+
export type JiraForgeGroup = {
|
|
135577
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
135578
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
135579
|
+
};
|
|
135218
135580
|
export type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
135219
135581
|
__typename?: 'JiraForgeGroupField';
|
|
135220
135582
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -135291,6 +135653,16 @@ export type JiraForgeGroupsFieldInput = {
|
|
|
135291
135653
|
fieldId: Scalars['ID']['input'];
|
|
135292
135654
|
selectedGroups: Array<JiraGroupInput>;
|
|
135293
135655
|
};
|
|
135656
|
+
export type JiraForgeGroupsFieldOperationInput = {
|
|
135657
|
+
groups?: InputMaybe<Array<InputMaybe<JiraForgeGroup>>>;
|
|
135658
|
+
operation: JiraMultiValueFieldOperations;
|
|
135659
|
+
};
|
|
135660
|
+
export type JiraForgeGroupsFieldPayload = Payload & {
|
|
135661
|
+
__typename?: 'JiraForgeGroupsFieldPayload';
|
|
135662
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135663
|
+
field?: Maybe<JiraForgeGroupsField>;
|
|
135664
|
+
success: Scalars['Boolean']['output'];
|
|
135665
|
+
};
|
|
135294
135666
|
export type JiraForgeInstallationConfigExtension = {
|
|
135295
135667
|
__typename?: 'JiraForgeInstallationConfigExtension';
|
|
135296
135668
|
key: Scalars['String']['output'];
|
|
@@ -136416,11 +136788,13 @@ export type JiraIccActivityValue = {
|
|
|
136416
136788
|
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
136417
136789
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
136418
136790
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
136791
|
+
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
136419
136792
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
136420
136793
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
136421
136794
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
136422
136795
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
136423
136796
|
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
136797
|
+
pirIssueKey?: Maybe<Scalars['String']['output']>;
|
|
136424
136798
|
planName?: Maybe<Scalars['String']['output']>;
|
|
136425
136799
|
status?: Maybe<Scalars['String']['output']>;
|
|
136426
136800
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -136429,6 +136803,7 @@ export type JiraIccActivityValue = {
|
|
|
136429
136803
|
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
136430
136804
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
136431
136805
|
triggerType?: Maybe<Scalars['String']['output']>;
|
|
136806
|
+
updateMessage?: Maybe<Scalars['String']['output']>;
|
|
136432
136807
|
version?: Maybe<Scalars['String']['output']>;
|
|
136433
136808
|
};
|
|
136434
136809
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
@@ -136500,6 +136875,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
136500
136875
|
IncidentMitigationPlanStepCompleted = "INCIDENT_MITIGATION_PLAN_STEP_COMPLETED",
|
|
136501
136876
|
IncidentOverviewNbaGenerated = "INCIDENT_OVERVIEW_NBA_GENERATED",
|
|
136502
136877
|
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
136878
|
+
IncidentPirGenerated = "INCIDENT_PIR_GENERATED",
|
|
136503
136879
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
136504
136880
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
136505
136881
|
IncidentStatusPageIncidentCreated = "INCIDENT_STATUS_PAGE_INCIDENT_CREATED",
|
|
@@ -136720,6 +137096,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
136720
137096
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
136721
137097
|
jiraWorkItemLinksExternalBuild?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBuildConnection>;
|
|
136722
137098
|
jiraWorkItemLinksExternalCommit?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalCommitConnection>;
|
|
137099
|
+
jiraWorkItemLinksExternalPullRequest?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalPullRequestConnection>;
|
|
136723
137100
|
key: Scalars['String']['output'];
|
|
136724
137101
|
labels?: Maybe<JiraLabelConnection>;
|
|
136725
137102
|
labelsField?: Maybe<JiraLabelsField>;
|
|
@@ -137090,6 +137467,13 @@ export type JiraIssueJiraWorkItemLinksExternalCommitArgs = {
|
|
|
137090
137467
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
137091
137468
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalCommitSortInput>;
|
|
137092
137469
|
};
|
|
137470
|
+
export type JiraIssueJiraWorkItemLinksExternalPullRequestArgs = {
|
|
137471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137472
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
137473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137474
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
137475
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalPullRequestSortInput>;
|
|
137476
|
+
};
|
|
137093
137477
|
export type JiraIssueLabelsArgs = {
|
|
137094
137478
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137095
137479
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138635,6 +139019,8 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
138635
139019
|
};
|
|
138636
139020
|
export type JiraIssueNextActionPresence = {
|
|
138637
139021
|
__typename?: 'JiraIssueNextActionPresence';
|
|
139022
|
+
hasMultiUserReady?: Maybe<Scalars['Boolean']['output']>;
|
|
139023
|
+
hasReady?: Maybe<Scalars['Boolean']['output']>;
|
|
138638
139024
|
recommendations?: Maybe<JiraIssueNextActionSuggestions>;
|
|
138639
139025
|
state?: Maybe<JiraIssueNextActionPresenceState>;
|
|
138640
139026
|
};
|
|
@@ -140852,6 +141238,7 @@ export type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & Jir
|
|
|
140852
141238
|
};
|
|
140853
141239
|
export type JiraLabelsFieldLabelsArgs = {
|
|
140854
141240
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141241
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140855
141242
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140856
141243
|
currentProjectOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140857
141244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140907,6 +141294,7 @@ export type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
|
140907
141294
|
};
|
|
140908
141295
|
export type JiraLabelsForCreateFieldLabelsArgs = {
|
|
140909
141296
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141297
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140910
141298
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140911
141299
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
140912
141300
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -141941,6 +142329,7 @@ export type JiraMutation = {
|
|
|
141941
142329
|
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
141942
142330
|
updateForgeDateTimeField?: Maybe<JiraForgeDatetimeFieldPayload>;
|
|
141943
142331
|
updateForgeGroupField?: Maybe<JiraForgeGroupFieldPayload>;
|
|
142332
|
+
updateForgeGroupsField?: Maybe<JiraForgeGroupsFieldPayload>;
|
|
141944
142333
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
141945
142334
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
141946
142335
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
@@ -142614,6 +143003,9 @@ export type JiraMutationUpdateForgeGroupFieldArgs = {
|
|
|
142614
143003
|
cloudId: Scalars['ID']['input'];
|
|
142615
143004
|
input: JiraUpdateForgeSingleGroupPickerFieldInput;
|
|
142616
143005
|
};
|
|
143006
|
+
export type JiraMutationUpdateForgeGroupsFieldArgs = {
|
|
143007
|
+
input: JiraUpdateForgeGroupsFieldInput;
|
|
143008
|
+
};
|
|
142617
143009
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
142618
143010
|
input: JiraUpdateNumberFieldInput;
|
|
142619
143011
|
};
|
|
@@ -143856,6 +144248,7 @@ export type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
143856
144248
|
};
|
|
143857
144249
|
export type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
143858
144250
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
144251
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
143859
144252
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143860
144253
|
excludeDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143861
144254
|
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
@@ -146243,6 +146636,7 @@ export type JiraQuery = {
|
|
|
146243
146636
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
146244
146637
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
146245
146638
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
146639
|
+
jiraCanBulkInvokeAgentSessionsForJql?: Maybe<Scalars['Boolean']['output']>;
|
|
146246
146640
|
jiraCaseManagementProjectSettings?: Maybe<JiraCaseManagementProjectSettings>;
|
|
146247
146641
|
jiraConfluenceSuggestUpdatesForPage?: Maybe<Array<Scalars['ID']['output']>>;
|
|
146248
146642
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
@@ -146684,6 +147078,7 @@ export type JiraQueryFieldConfigByIdArgs = {
|
|
|
146684
147078
|
ids: Array<Scalars['ID']['input']>;
|
|
146685
147079
|
};
|
|
146686
147080
|
export type JiraQueryFieldPredictionArgs = {
|
|
147081
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146687
147082
|
candidates?: InputMaybe<Array<InputMaybe<JiraFieldPredictionCandidateInput>>>;
|
|
146688
147083
|
cloudId: Scalars['ID']['input'];
|
|
146689
147084
|
fieldId: Scalars['String']['input'];
|
|
@@ -146695,6 +147090,7 @@ export type JiraQueryFieldPredictionArgs = {
|
|
|
146695
147090
|
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
146696
147091
|
};
|
|
146697
147092
|
export type JiraQueryFieldPredictionsArgs = {
|
|
147093
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146698
147094
|
cloudId: Scalars['ID']['input'];
|
|
146699
147095
|
fields: Array<JiraFieldPredictionFieldInput>;
|
|
146700
147096
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -147079,6 +147475,12 @@ export type JiraQueryJiraCalendarArgs = {
|
|
|
147079
147475
|
input?: InputMaybe<JiraCalendarInput>;
|
|
147080
147476
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
147081
147477
|
};
|
|
147478
|
+
export type JiraQueryJiraCanBulkInvokeAgentSessionsForJqlArgs = {
|
|
147479
|
+
cloudId: Scalars['ID']['input'];
|
|
147480
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147481
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
147482
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
147483
|
+
};
|
|
147082
147484
|
export type JiraQueryJiraCaseManagementProjectSettingsArgs = {
|
|
147083
147485
|
cloudId: Scalars['ID']['input'];
|
|
147084
147486
|
projectKey: Scalars['String']['input'];
|
|
@@ -147377,6 +147779,7 @@ export type JiraQueryJwmViewItemsArgs = {
|
|
|
147377
147779
|
};
|
|
147378
147780
|
export type JiraQueryLabelsFieldOptionsArgs = {
|
|
147379
147781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147782
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
147380
147783
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
147381
147784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147382
147785
|
id: Scalars['ID']['input'];
|
|
@@ -153907,12 +154310,16 @@ export type JiraTriageAgentSuggestionEdge = {
|
|
|
153907
154310
|
export type JiraTriageAgentSuggestionItem = {
|
|
153908
154311
|
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
153909
154312
|
actionKey?: Maybe<Scalars['String']['output']>;
|
|
154313
|
+
actionedAt?: Maybe<Scalars['Long']['output']>;
|
|
154314
|
+
actionedBy?: Maybe<Scalars['ID']['output']>;
|
|
153910
154315
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
153911
154316
|
experienceId?: Maybe<Scalars['String']['output']>;
|
|
153912
154317
|
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
154318
|
+
invokerAri?: Maybe<Scalars['ID']['output']>;
|
|
153913
154319
|
messageId?: Maybe<Scalars['ID']['output']>;
|
|
153914
154320
|
product?: Maybe<Scalars['String']['output']>;
|
|
153915
154321
|
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
154322
|
+
status?: Maybe<JiraFieldSuggestionLifecycleStatus>;
|
|
153916
154323
|
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
153917
154324
|
};
|
|
153918
154325
|
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
@@ -154256,6 +154663,10 @@ export type JiraUpdateFlagFieldPayload = Payload & {
|
|
|
154256
154663
|
field?: Maybe<JiraFlagField>;
|
|
154257
154664
|
success: Scalars['Boolean']['output'];
|
|
154258
154665
|
};
|
|
154666
|
+
export type JiraUpdateForgeGroupsFieldInput = {
|
|
154667
|
+
id: Scalars['ID']['input'];
|
|
154668
|
+
operation: JiraForgeGroupsFieldOperationInput;
|
|
154669
|
+
};
|
|
154259
154670
|
export type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
154260
154671
|
id: Scalars['ID']['input'];
|
|
154261
154672
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -154929,6 +155340,7 @@ export type JiraUserPreferences = {
|
|
|
154929
155340
|
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
154930
155341
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
154931
155342
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155343
|
+
isNewDevPanelDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
154932
155344
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
154933
155345
|
issuePreviewMode?: Maybe<JiraIssuePreviewMode>;
|
|
154934
155346
|
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
@@ -155013,6 +155425,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
155013
155425
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155014
155426
|
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155015
155427
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
155428
|
+
setIsNewDevPanelDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155016
155429
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
155017
155430
|
setIssuePreviewMode?: Maybe<JiraIssuePreviewModeMutationPayload>;
|
|
155018
155431
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
@@ -155043,6 +155456,9 @@ export type JiraUserPreferencesMutationSetIsIssueViewWivEnabledArgs = {
|
|
|
155043
155456
|
export type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
155044
155457
|
isEnabled: Scalars['Boolean']['input'];
|
|
155045
155458
|
};
|
|
155459
|
+
export type JiraUserPreferencesMutationSetIsNewDevPanelDisabledArgs = {
|
|
155460
|
+
isNewDevPanelDisabled: Scalars['Boolean']['input'];
|
|
155461
|
+
};
|
|
155046
155462
|
export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
155047
155463
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
155048
155464
|
};
|
|
@@ -157819,6 +158235,11 @@ export declare enum JsmAnalyticsDataType {
|
|
|
157819
158235
|
Week = "WEEK",
|
|
157820
158236
|
Year = "YEAR"
|
|
157821
158237
|
}
|
|
158238
|
+
export type JsmAnalyticsEvidence = {
|
|
158239
|
+
__typename?: 'JsmAnalyticsEvidence';
|
|
158240
|
+
jql: Scalars['String']['output'];
|
|
158241
|
+
total: Scalars['Int']['output'];
|
|
158242
|
+
};
|
|
157822
158243
|
export declare enum JsmAnalyticsGranularity {
|
|
157823
158244
|
Day = "DAY",
|
|
157824
158245
|
Hour = "HOUR",
|
|
@@ -157837,6 +158258,7 @@ export type JsmAnalyticsInsight = {
|
|
|
157837
158258
|
category: JsmAnalyticsInsightCategory;
|
|
157838
158259
|
causeOverview: JsmAnalyticsStatement;
|
|
157839
158260
|
chart: JsmAnalyticsChart;
|
|
158261
|
+
evidence?: Maybe<Array<Maybe<JsmAnalyticsEvidence>>>;
|
|
157840
158262
|
generatedAt: Scalars['DateTime']['output'];
|
|
157841
158263
|
id: Scalars['ID']['output'];
|
|
157842
158264
|
impact: JsmAnalyticsImpact;
|
|
@@ -157868,15 +158290,19 @@ export type JsmAnalyticsInsightSummary = {
|
|
|
157868
158290
|
total: Scalars['Int']['output'];
|
|
157869
158291
|
};
|
|
157870
158292
|
export type JsmAnalyticsInsightsDetailInput = {
|
|
158293
|
+
cloudId: Scalars['ID']['input'];
|
|
157871
158294
|
insightId: Scalars['ID']['input'];
|
|
157872
158295
|
options: JsmAnalyticsInputOptions;
|
|
157873
158296
|
projectId: Scalars['String']['input'];
|
|
158297
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157874
158298
|
};
|
|
157875
158299
|
export type JsmAnalyticsInsightsQueryInput = {
|
|
157876
158300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158301
|
+
cloudId: Scalars['ID']['input'];
|
|
157877
158302
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157878
158303
|
options: JsmAnalyticsInputOptions;
|
|
157879
158304
|
projectId: Scalars['String']['input'];
|
|
158305
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157880
158306
|
};
|
|
157881
158307
|
export type JsmAnalyticsInsightsQueryResponse = {
|
|
157882
158308
|
__typename?: 'JsmAnalyticsInsightsQueryResponse';
|
|
@@ -162002,7 +162428,7 @@ export type KnowledgeBaseConfluenceAppLinkDetails = {
|
|
|
162002
162428
|
export type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
|
|
162003
162429
|
export type KnowledgeBaseConfluenceAvailability = {
|
|
162004
162430
|
__typename?: 'KnowledgeBaseConfluenceAvailability';
|
|
162005
|
-
|
|
162431
|
+
tenants: Array<KnowledgeBaseConfluenceTenant>;
|
|
162006
162432
|
};
|
|
162007
162433
|
export type KnowledgeBaseConfluenceFolderSuggestion = KnowledgeBaseSourceSuggestionInterface & {
|
|
162008
162434
|
__typename?: 'KnowledgeBaseConfluenceFolderSuggestion';
|
|
@@ -162021,6 +162447,13 @@ export type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggest
|
|
|
162021
162447
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
162022
162448
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
162023
162449
|
};
|
|
162450
|
+
export type KnowledgeBaseConfluenceTenant = {
|
|
162451
|
+
__typename?: 'KnowledgeBaseConfluenceTenant';
|
|
162452
|
+
cloudId: Scalars['ID']['output'];
|
|
162453
|
+
isConfluenceAvailable: Scalars['Boolean']['output'];
|
|
162454
|
+
siteName: Scalars['String']['output'];
|
|
162455
|
+
siteUrl?: Maybe<Scalars['String']['output']>;
|
|
162456
|
+
};
|
|
162024
162457
|
export type KnowledgeBaseCrossSiteArticle = {
|
|
162025
162458
|
__typename?: 'KnowledgeBaseCrossSiteArticle';
|
|
162026
162459
|
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
@@ -163070,7 +163503,7 @@ export type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
|
163070
163503
|
};
|
|
163071
163504
|
export type KnowledgeDiscoveryQueryApiSearchChatIntentDetectionArgs = {
|
|
163072
163505
|
locale: Scalars['String']['input'];
|
|
163073
|
-
|
|
163506
|
+
modelVersion: KnowledgeDiscoverySearchChatIntentDetectionModelVersion;
|
|
163074
163507
|
query: Scalars['String']['input'];
|
|
163075
163508
|
siteId: Scalars['String']['input'];
|
|
163076
163509
|
};
|
|
@@ -163221,6 +163654,10 @@ export declare enum KnowledgeDiscoverySearchChatIntentDecision {
|
|
|
163221
163654
|
Chat = "CHAT",
|
|
163222
163655
|
Search = "SEARCH"
|
|
163223
163656
|
}
|
|
163657
|
+
export declare enum KnowledgeDiscoverySearchChatIntentDetectionModelVersion {
|
|
163658
|
+
Gemma3_1BSciV1 = "GEMMA3_1B_SCI_V1",
|
|
163659
|
+
Gemma4E2BSciV1 = "GEMMA4_E2B_SCI_V1"
|
|
163660
|
+
}
|
|
163224
163661
|
export type KnowledgeDiscoverySearchChatIntentDetectionResult = KnowledgeDiscoverySearchChatIntentDetectionSuccess | QueryError;
|
|
163225
163662
|
export type KnowledgeDiscoverySearchChatIntentDetectionSuccess = {
|
|
163226
163663
|
__typename?: 'KnowledgeDiscoverySearchChatIntentDetectionSuccess';
|
|
@@ -163933,12 +164370,14 @@ export type LogQueryInput = {
|
|
|
163933
164370
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163934
164371
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
163935
164372
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
164373
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
163936
164374
|
osName?: InputMaybe<Scalars['String']['input']>;
|
|
163937
164375
|
renderType?: InputMaybe<Scalars['String']['input']>;
|
|
163938
164376
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
163939
164377
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
163940
164378
|
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163941
164379
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
164380
|
+
unitId?: InputMaybe<Scalars['String']['input']>;
|
|
163942
164381
|
};
|
|
163943
164382
|
export type LookAndFeel = {
|
|
163944
164383
|
__typename?: 'LookAndFeel';
|
|
@@ -165674,7 +166113,6 @@ export type MarketplaceConsoleCreatePrivateOfferInput = {
|
|
|
165674
166113
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
165675
166114
|
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
165676
166115
|
edition: Scalars['String']['input'];
|
|
165677
|
-
expiryDate: Scalars['String']['input'];
|
|
165678
166116
|
hostingType: Scalars['String']['input'];
|
|
165679
166117
|
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
165680
166118
|
productId: Scalars['ID']['input'];
|
|
@@ -166733,7 +167171,7 @@ export type MarketplaceConsolePrivateOffer = {
|
|
|
166733
167171
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
166734
167172
|
discountValue?: Maybe<Scalars['Int']['output']>;
|
|
166735
167173
|
edition: Scalars['String']['output'];
|
|
166736
|
-
expiryDate
|
|
167174
|
+
expiryDate?: Maybe<Scalars['String']['output']>;
|
|
166737
167175
|
hostingType: Scalars['String']['output'];
|
|
166738
167176
|
latest: Scalars['Int']['output'];
|
|
166739
167177
|
legalTermsArtifact?: Maybe<Scalars['String']['output']>;
|
|
@@ -167016,6 +167454,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
167016
167454
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
167017
167455
|
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
167018
167456
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
167457
|
+
productMetadataByProductId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
167019
167458
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
167020
167459
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
167021
167460
|
versionListingApprovalStatus: MarketplaceConsoleVersionListingApprovalStatusResponse;
|
|
@@ -167144,6 +167583,9 @@ export type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
|
167144
167583
|
export type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
167145
167584
|
appId: Scalars['ID']['input'];
|
|
167146
167585
|
};
|
|
167586
|
+
export type MarketplaceConsoleQueryApiProductMetadataByProductIdArgs = {
|
|
167587
|
+
productId: Scalars['ID']['input'];
|
|
167588
|
+
};
|
|
167147
167589
|
export type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
|
|
167148
167590
|
appId: Scalars['ID']['input'];
|
|
167149
167591
|
};
|
|
@@ -167288,7 +167730,6 @@ export type MarketplaceConsoleUpdatePrivateOfferInput = {
|
|
|
167288
167730
|
discountType: MarketplaceConsolePrivateOfferDiscountType;
|
|
167289
167731
|
discountValue?: InputMaybe<Scalars['Int']['input']>;
|
|
167290
167732
|
edition: Scalars['String']['input'];
|
|
167291
|
-
expiryDate: Scalars['String']['input'];
|
|
167292
167733
|
hostingType: Scalars['String']['input'];
|
|
167293
167734
|
listPriceCents?: InputMaybe<Scalars['Int']['input']>;
|
|
167294
167735
|
offerId: Scalars['ID']['input'];
|
|
@@ -167449,6 +167890,12 @@ export declare enum MarketplaceLocation {
|
|
|
167449
167890
|
InProduct = "IN_PRODUCT",
|
|
167450
167891
|
Website = "WEBSITE"
|
|
167451
167892
|
}
|
|
167893
|
+
export type MarketplaceMcpTool = {
|
|
167894
|
+
__typename?: 'MarketplaceMcpTool';
|
|
167895
|
+
description: Scalars['String']['output'];
|
|
167896
|
+
name: Scalars['String']['output'];
|
|
167897
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
167898
|
+
};
|
|
167452
167899
|
export type MarketplacePartner = {
|
|
167453
167900
|
__typename?: 'MarketplacePartner';
|
|
167454
167901
|
address?: Maybe<MarketplacePartnerAddress>;
|
|
@@ -167588,6 +168035,9 @@ export type MarketplaceRemoteMcpDeployment = MarketplaceAppDeployment & {
|
|
|
167588
168035
|
__typename?: 'MarketplaceRemoteMcpDeployment';
|
|
167589
168036
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
167590
168037
|
mcpId: Scalars['ID']['output'];
|
|
168038
|
+
serverFetchError?: Maybe<Scalars['String']['output']>;
|
|
168039
|
+
supportedAuthTypes: Array<Scalars['String']['output']>;
|
|
168040
|
+
tools: Array<MarketplaceMcpTool>;
|
|
167591
168041
|
};
|
|
167592
168042
|
export declare enum MarketplaceStoreAcceptableResponse {
|
|
167593
168043
|
False = "FALSE",
|
|
@@ -169953,6 +170403,8 @@ export type MercuryAsk = Node & {
|
|
|
169953
170403
|
__typename?: 'MercuryAsk';
|
|
169954
170404
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
169955
170405
|
askStatus: MercuryAskStatusEnum;
|
|
170406
|
+
askType?: Maybe<MercuryAskType>;
|
|
170407
|
+
askTypeId?: Maybe<Scalars['ID']['output']>;
|
|
169956
170408
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
169957
170409
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
169958
170410
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -171294,18 +171746,24 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
171294
171746
|
cloudId: Scalars['ID']['input'];
|
|
171295
171747
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
171296
171748
|
};
|
|
171749
|
+
export type MercuryCreateAskCustomFieldInput = {
|
|
171750
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
171751
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
171752
|
+
};
|
|
171297
171753
|
export type MercuryCreateAskInput = {
|
|
171298
|
-
askStatus
|
|
171754
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
171755
|
+
askTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
171299
171756
|
cloudId: Scalars['ID']['input'];
|
|
171757
|
+
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171300
171758
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
171301
171759
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171302
171760
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171303
171761
|
name: Scalars['String']['input'];
|
|
171304
171762
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171305
|
-
priority
|
|
171763
|
+
priority?: InputMaybe<MercuryAskPriority>;
|
|
171306
171764
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171307
171765
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171308
|
-
submitterId
|
|
171766
|
+
submitterId?: InputMaybe<Scalars['ID']['input']>;
|
|
171309
171767
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171310
171768
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171311
171769
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
@@ -171328,17 +171786,19 @@ export type MercuryCreateAskTypePayload = Payload & {
|
|
|
171328
171786
|
success: Scalars['Boolean']['output'];
|
|
171329
171787
|
};
|
|
171330
171788
|
export type MercuryCreateAsksAskInput = {
|
|
171331
|
-
askStatus
|
|
171789
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
171790
|
+
askTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
171791
|
+
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171332
171792
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
171333
171793
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171334
171794
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171335
171795
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
171336
171796
|
name: Scalars['String']['input'];
|
|
171337
171797
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171338
|
-
priority
|
|
171798
|
+
priority?: InputMaybe<MercuryAskPriority>;
|
|
171339
171799
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171340
171800
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171341
|
-
submitterId
|
|
171801
|
+
submitterId?: InputMaybe<Scalars['ID']['input']>;
|
|
171342
171802
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
171343
171803
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
171344
171804
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
@@ -171868,6 +172328,7 @@ export type MercuryCreateThreadedCommentPayload = Payload & {
|
|
|
171868
172328
|
};
|
|
171869
172329
|
export type MercuryCreateViewInput = {
|
|
171870
172330
|
cloudId: Scalars['ID']['input'];
|
|
172331
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171871
172332
|
entityType: Scalars['String']['input'];
|
|
171872
172333
|
name: Scalars['String']['input'];
|
|
171873
172334
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -172865,6 +173326,7 @@ export type MercuryFocusArea = Node & {
|
|
|
172865
173326
|
status: MercuryFocusAreaStatus;
|
|
172866
173327
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
172867
173328
|
subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
173329
|
+
tags?: Maybe<MercuryHomeTagConnection>;
|
|
172868
173330
|
targetDate?: Maybe<MercuryTargetDate>;
|
|
172869
173331
|
updatedDate: Scalars['String']['output'];
|
|
172870
173332
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -172938,6 +173400,10 @@ export type MercuryFocusAreaSubFocusAreasArgs = {
|
|
|
172938
173400
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
172939
173401
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
172940
173402
|
};
|
|
173403
|
+
export type MercuryFocusAreaTagsArgs = {
|
|
173404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173406
|
+
};
|
|
172941
173407
|
export type MercuryFocusAreaWatchersArgs = {
|
|
172942
173408
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
172943
173409
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173619,6 +174085,7 @@ export type MercuryFundsMutationApi = {
|
|
|
173619
174085
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
173620
174086
|
unsetCostBaselineAndDescendants?: Maybe<MercuryUnsetBaselineAndDescendantsPayload>;
|
|
173621
174087
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
174088
|
+
updateBaselineRevisionName?: Maybe<MercuryUpdateBaselineRevisionNamePayload>;
|
|
173622
174089
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
173623
174090
|
updateBenefitItemName?: Maybe<MercuryUpdateBenefitItemPayload>;
|
|
173624
174091
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
@@ -173733,6 +174200,9 @@ export type MercuryFundsMutationApiUnsetCostBaselineAndDescendantsArgs = {
|
|
|
173733
174200
|
export type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
173734
174201
|
input: MercuryUpdateActiveCurrencyInput;
|
|
173735
174202
|
};
|
|
174203
|
+
export type MercuryFundsMutationApiUpdateBaselineRevisionNameArgs = {
|
|
174204
|
+
input: MercuryUpdateBaselineRevisionNameInput;
|
|
174205
|
+
};
|
|
173736
174206
|
export type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
173737
174207
|
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
173738
174208
|
};
|
|
@@ -179168,6 +179638,16 @@ export type MercuryUpdateAskTypeNamePayload = Payload & {
|
|
|
179168
179638
|
errors?: Maybe<Array<MutationError>>;
|
|
179169
179639
|
success: Scalars['Boolean']['output'];
|
|
179170
179640
|
};
|
|
179641
|
+
export type MercuryUpdateBaselineRevisionNameInput = {
|
|
179642
|
+
id: Scalars['ID']['input'];
|
|
179643
|
+
name: Scalars['String']['input'];
|
|
179644
|
+
};
|
|
179645
|
+
export type MercuryUpdateBaselineRevisionNamePayload = Payload & {
|
|
179646
|
+
__typename?: 'MercuryUpdateBaselineRevisionNamePayload';
|
|
179647
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179648
|
+
success: Scalars['Boolean']['output'];
|
|
179649
|
+
updatedBaselineRevision?: Maybe<MercuryBaselineRevision>;
|
|
179650
|
+
};
|
|
179171
179651
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
179172
179652
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
179173
179653
|
id: Scalars['ID']['input'];
|
|
@@ -179939,6 +180419,7 @@ export type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
179939
180419
|
};
|
|
179940
180420
|
export type MercuryView = Node & {
|
|
179941
180421
|
__typename?: 'MercuryView';
|
|
180422
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
179942
180423
|
createdBy?: Maybe<User>;
|
|
179943
180424
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
179944
180425
|
entityType: Scalars['String']['output'];
|
|
@@ -180514,12 +180995,14 @@ export type Mutation = {
|
|
|
180514
180995
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
180515
180996
|
agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
|
|
180516
180997
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
180998
|
+
agentStudio_removeAgentTrigger?: Maybe<AgentStudioRemoveAgentTriggerPayload>;
|
|
180517
180999
|
agentStudio_removeBatchEvaluationJobRun?: Maybe<AgentStudioDeleteBatchEvaluationJobRunPayload>;
|
|
180518
181000
|
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
180519
181001
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
180520
181002
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
180521
181003
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
180522
181004
|
agentStudio_setAccessIdentityMode?: Maybe<AgentStudioSetAccessIdentityModePayload>;
|
|
181005
|
+
agentStudio_setAgentTriggerEnabled?: Maybe<AgentStudioSetAgentTriggerEnabledPayload>;
|
|
180523
181006
|
agentStudio_setAgentUsePermissionMode?: Maybe<AgentStudioUpdateUseAgentPermissionModePayload>;
|
|
180524
181007
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
180525
181008
|
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
@@ -180529,6 +181012,7 @@ export type Mutation = {
|
|
|
180529
181012
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
180530
181013
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
180531
181014
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
181015
|
+
agentStudio_updateAgentTrigger?: Maybe<AgentStudioUpdateAgentTriggerPayload>;
|
|
180532
181016
|
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
180533
181017
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
180534
181018
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
@@ -180866,6 +181350,7 @@ export type Mutation = {
|
|
|
180866
181350
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
180867
181351
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
180868
181352
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
181353
|
+
confluence_exportJiraMacroAudit?: Maybe<ConfluenceExportJiraMacroAuditPayload>;
|
|
180869
181354
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
180870
181355
|
confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
|
|
180871
181356
|
confluence_generateSearchPerformedEvent?: Maybe<ConfluenceGenerateSearchPerformedEventPayload>;
|
|
@@ -181002,6 +181487,7 @@ export type Mutation = {
|
|
|
181002
181487
|
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
181003
181488
|
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
181004
181489
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
181490
|
+
cpls_createCustomContributionTargetWithScopeAssociation?: Maybe<CplsCreateCustomContributionTargetWithScopeAssociationPayload>;
|
|
181005
181491
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
181006
181492
|
cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
|
|
181007
181493
|
cpls_deleteAllSuggestionsForUser?: Maybe<CplsDeleteAllSuggestionsForUserPayload>;
|
|
@@ -181253,6 +181739,7 @@ export type Mutation = {
|
|
|
181253
181739
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
181254
181740
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
181255
181741
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
181742
|
+
goals_createDraftUpdate?: Maybe<TownsquareGoalsCreateDraftUpdatePayload>;
|
|
181256
181743
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
181257
181744
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
181258
181745
|
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
@@ -181260,6 +181747,7 @@ export type Mutation = {
|
|
|
181260
181747
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
181261
181748
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
181262
181749
|
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
181750
|
+
goals_deleteDraftUpdate?: Maybe<TownsquareGoalsDeleteDraftUpdatePayload>;
|
|
181263
181751
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
181264
181752
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
181265
181753
|
goals_deleteMetricValue?: Maybe<TownsquareGoalsDeleteMetricValuePayload>;
|
|
@@ -181270,6 +181758,7 @@ export type Mutation = {
|
|
|
181270
181758
|
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
181271
181759
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
181272
181760
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
181761
|
+
goals_editDraftUpdate?: Maybe<TownsquareGoalsEditDraftUpdatePayload>;
|
|
181273
181762
|
goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
|
|
181274
181763
|
goals_editGoalTypePair?: Maybe<TownsquareEditGoalTypePairPayload>;
|
|
181275
181764
|
goals_editLearning?: Maybe<TownsquareGoalsEditLearningPayload>;
|
|
@@ -182028,6 +182517,7 @@ export type Mutation = {
|
|
|
182028
182517
|
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
182029
182518
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
182030
182519
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
182520
|
+
psm_recordUserAction?: Maybe<PsmRecordUserActionPayload>;
|
|
182031
182521
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
182032
182522
|
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
182033
182523
|
psm_updateSensorEnablement?: Maybe<PsmUpdateSensorEnablementPayload>;
|
|
@@ -182587,6 +183077,10 @@ export type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
|
182587
183077
|
id: Scalars['ID']['input'];
|
|
182588
183078
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
182589
183079
|
};
|
|
183080
|
+
export type MutationAgentStudio_RemoveAgentTriggerArgs = {
|
|
183081
|
+
automationRuleId: Scalars['ID']['input'];
|
|
183082
|
+
id: Scalars['ID']['input'];
|
|
183083
|
+
};
|
|
182590
183084
|
export type MutationAgentStudio_RemoveBatchEvaluationJobRunArgs = {
|
|
182591
183085
|
cloudId: Scalars['String']['input'];
|
|
182592
183086
|
jobRunId: Scalars['ID']['input'];
|
|
@@ -182621,6 +183115,10 @@ export type MutationAgentStudio_SetAccessIdentityModeArgs = {
|
|
|
182621
183115
|
id: Scalars['ID']['input'];
|
|
182622
183116
|
mode: AgentStudioAccessIdentityMode;
|
|
182623
183117
|
};
|
|
183118
|
+
export type MutationAgentStudio_SetAgentTriggerEnabledArgs = {
|
|
183119
|
+
id: Scalars['ID']['input'];
|
|
183120
|
+
input: AgentStudioSetAgentTriggerEnabledInput;
|
|
183121
|
+
};
|
|
182624
183122
|
export type MutationAgentStudio_SetAgentUsePermissionModeArgs = {
|
|
182625
183123
|
id: Scalars['ID']['input'];
|
|
182626
183124
|
input: AgentStudioUpdateAgentUsePermissionSettingsInput;
|
|
@@ -182660,6 +183158,10 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
182660
183158
|
action: AgentStudioModelUpgradeAction;
|
|
182661
183159
|
id: Scalars['ID']['input'];
|
|
182662
183160
|
};
|
|
183161
|
+
export type MutationAgentStudio_UpdateAgentTriggerArgs = {
|
|
183162
|
+
id: Scalars['ID']['input'];
|
|
183163
|
+
input: AgentStudioUpdateAgentTriggerInput;
|
|
183164
|
+
};
|
|
182663
183165
|
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
182664
183166
|
cloudId: Scalars['String']['input'];
|
|
182665
183167
|
id: Scalars['ID']['input'];
|
|
@@ -183894,6 +184396,9 @@ export type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
|
|
|
183894
184396
|
export type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
183895
184397
|
cloudId: Scalars['ID']['input'];
|
|
183896
184398
|
};
|
|
184399
|
+
export type MutationConfluence_ExportJiraMacroAuditArgs = {
|
|
184400
|
+
cloudId: Scalars['ID']['input'];
|
|
184401
|
+
};
|
|
183897
184402
|
export type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
183898
184403
|
cloudId: Scalars['ID']['input'];
|
|
183899
184404
|
input: ConfluenceForgeContextTokenRequestInput;
|
|
@@ -184434,6 +184939,9 @@ export type MutationCpls_CopyWorkToContributorsArgs = {
|
|
|
184434
184939
|
export type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
184435
184940
|
input: CplsCreateCustomContributionTargetInput;
|
|
184436
184941
|
};
|
|
184942
|
+
export type MutationCpls_CreateCustomContributionTargetWithScopeAssociationArgs = {
|
|
184943
|
+
input: CplsCreateCustomContributionTargetWithScopeAssociationInput;
|
|
184944
|
+
};
|
|
184437
184945
|
export type MutationCpls_CreateCustomContributionTargetWithWorkAssociationArgs = {
|
|
184438
184946
|
input: CplsCreateCustomContributionTargetWithWorkAssociationInput;
|
|
184439
184947
|
};
|
|
@@ -185313,6 +185821,9 @@ export type MutationGoals_CreateCommentArgs = {
|
|
|
185313
185821
|
export type MutationGoals_CreateDecisionArgs = {
|
|
185314
185822
|
input: TownsquareGoalsCreateDecisionInput;
|
|
185315
185823
|
};
|
|
185824
|
+
export type MutationGoals_CreateDraftUpdateArgs = {
|
|
185825
|
+
input: TownsquareGoalsCreateDraftUpdateInput;
|
|
185826
|
+
};
|
|
185316
185827
|
export type MutationGoals_CreateGoalTypePairArgs = {
|
|
185317
185828
|
input: TownsquareGoalsCreateGoalTypePairInput;
|
|
185318
185829
|
};
|
|
@@ -185334,6 +185845,9 @@ export type MutationGoals_DeleteCommentArgs = {
|
|
|
185334
185845
|
export type MutationGoals_DeleteDecisionArgs = {
|
|
185335
185846
|
input: TownsquareGoalsDeleteDecisionInput;
|
|
185336
185847
|
};
|
|
185848
|
+
export type MutationGoals_DeleteDraftUpdateArgs = {
|
|
185849
|
+
input: TownsquareGoalsDeleteDraftUpdateInput;
|
|
185850
|
+
};
|
|
185337
185851
|
export type MutationGoals_DeleteLatestUpdateArgs = {
|
|
185338
185852
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
185339
185853
|
};
|
|
@@ -185364,6 +185878,9 @@ export type MutationGoals_EditCommentArgs = {
|
|
|
185364
185878
|
export type MutationGoals_EditDecisionArgs = {
|
|
185365
185879
|
input: TownsquareGoalsEditDecisionInput;
|
|
185366
185880
|
};
|
|
185881
|
+
export type MutationGoals_EditDraftUpdateArgs = {
|
|
185882
|
+
input: TownsquareGoalsEditDraftUpdateInput;
|
|
185883
|
+
};
|
|
185367
185884
|
export type MutationGoals_EditDropdownCustomFieldArgs = {
|
|
185368
185885
|
input: TownsquareGoalsEditDropdownCustomFieldInput;
|
|
185369
185886
|
};
|
|
@@ -187805,6 +188322,10 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
187805
188322
|
cloudId: Scalars['ID']['input'];
|
|
187806
188323
|
input: PsmOnboardTenantInput;
|
|
187807
188324
|
};
|
|
188325
|
+
export type MutationPsm_RecordUserActionArgs = {
|
|
188326
|
+
cloudId: Scalars['ID']['input'];
|
|
188327
|
+
input: PsmRecordUserActionInput;
|
|
188328
|
+
};
|
|
187808
188329
|
export type MutationPsm_RegisterDeviceArgs = {
|
|
187809
188330
|
input: PsmRegisterDeviceInput;
|
|
187810
188331
|
};
|
|
@@ -191055,6 +191576,7 @@ export type PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData
|
|
|
191055
191576
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData';
|
|
191056
191577
|
conversationChannelId: Scalars['String']['output'];
|
|
191057
191578
|
numberOfSuggestions: Scalars['Float']['output'];
|
|
191579
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
191058
191580
|
};
|
|
191059
191581
|
export type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
191060
191582
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
@@ -191362,6 +191884,10 @@ export type ProvisionInstallationLinkInput = {
|
|
|
191362
191884
|
context: Scalars['ID']['input'];
|
|
191363
191885
|
installationAri: Scalars['ID']['input'];
|
|
191364
191886
|
};
|
|
191887
|
+
export type PsmActionAttributeInput = {
|
|
191888
|
+
key: Scalars['String']['input'];
|
|
191889
|
+
value: Scalars['String']['input'];
|
|
191890
|
+
};
|
|
191365
191891
|
export type PsmActiveSensor = {
|
|
191366
191892
|
__typename?: 'PsmActiveSensor';
|
|
191367
191893
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -191767,7 +192293,8 @@ export declare enum PsmFilterKey {
|
|
|
191767
192293
|
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
191768
192294
|
Sensor = "SENSOR",
|
|
191769
192295
|
SensorCategory = "SENSOR_CATEGORY",
|
|
191770
|
-
Status = "STATUS"
|
|
192296
|
+
Status = "STATUS",
|
|
192297
|
+
TriggeredBy = "TRIGGERED_BY"
|
|
191771
192298
|
}
|
|
191772
192299
|
export type PsmFilterOption = {
|
|
191773
192300
|
__typename?: 'PsmFilterOption';
|
|
@@ -191776,6 +192303,7 @@ export type PsmFilterOption = {
|
|
|
191776
192303
|
};
|
|
191777
192304
|
export declare enum PsmFilterScreen {
|
|
191778
192305
|
Activities = "ACTIVITIES",
|
|
192306
|
+
AuditLog = "AUDIT_LOG",
|
|
191779
192307
|
DeviceList = "DEVICE_LIST",
|
|
191780
192308
|
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
191781
192309
|
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
@@ -191846,10 +192374,14 @@ export declare enum PsmNotificationActionId {
|
|
|
191846
192374
|
Deny = "DENY"
|
|
191847
192375
|
}
|
|
191848
192376
|
export declare enum PsmNotificationKind {
|
|
192377
|
+
ConsentRespondedApprove = "CONSENT_RESPONDED_APPROVE",
|
|
192378
|
+
ConsentRespondedDeny = "CONSENT_RESPONDED_DENY",
|
|
191849
192379
|
FaultDetected = "FAULT_DETECTED",
|
|
191850
192380
|
RemediationCompleted = "REMEDIATION_COMPLETED",
|
|
192381
|
+
RemediationExecuting = "REMEDIATION_EXECUTING",
|
|
191851
192382
|
RemediationFailed = "REMEDIATION_FAILED",
|
|
191852
|
-
RemediationStarted = "REMEDIATION_STARTED"
|
|
192383
|
+
RemediationStarted = "REMEDIATION_STARTED",
|
|
192384
|
+
RemediationWithdrawn = "REMEDIATION_WITHDRAWN"
|
|
191853
192385
|
}
|
|
191854
192386
|
export type PsmNotificationTemplate = {
|
|
191855
192387
|
__typename?: 'PsmNotificationTemplate';
|
|
@@ -191897,6 +192429,18 @@ export type PsmOnboardTenantStatusResult = {
|
|
|
191897
192429
|
spaceId: Scalars['ID']['output'];
|
|
191898
192430
|
status: PsmOnboardTenantStatus;
|
|
191899
192431
|
};
|
|
192432
|
+
export type PsmRecordUserActionInput = {
|
|
192433
|
+
accountId: Scalars['ID']['input'];
|
|
192434
|
+
action: PsmUserActionType;
|
|
192435
|
+
attributes?: InputMaybe<Array<PsmActionAttributeInput>>;
|
|
192436
|
+
conversationId: Scalars['ID']['input'];
|
|
192437
|
+
deviceId: Scalars['ID']['input'];
|
|
192438
|
+
};
|
|
192439
|
+
export type PsmRecordUserActionPayload = Payload & {
|
|
192440
|
+
__typename?: 'PsmRecordUserActionPayload';
|
|
192441
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192442
|
+
success: Scalars['Boolean']['output'];
|
|
192443
|
+
};
|
|
191900
192444
|
export type PsmRegisterDeviceInput = {
|
|
191901
192445
|
atlassianAccountId: Scalars['ID']['input'];
|
|
191902
192446
|
cloudId: Scalars['ID']['input'];
|
|
@@ -191993,6 +192537,7 @@ export declare enum PsmRemediationState {
|
|
|
191993
192537
|
Failed = "FAILED",
|
|
191994
192538
|
InProgress = "IN_PROGRESS",
|
|
191995
192539
|
Resolved = "RESOLVED",
|
|
192540
|
+
UserResolved = "USER_RESOLVED",
|
|
191996
192541
|
Withdrawn = "WITHDRAWN"
|
|
191997
192542
|
}
|
|
191998
192543
|
export declare enum PsmRemediationStatus {
|
|
@@ -192129,6 +192674,7 @@ export declare enum PsmSensorEventType {
|
|
|
192129
192674
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
192130
192675
|
Lagged = "LAGGED",
|
|
192131
192676
|
Shutdown = "SHUTDOWN",
|
|
192677
|
+
UserResolved = "USER_RESOLVED",
|
|
192132
192678
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
192133
192679
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
192134
192680
|
WithdrawStale = "WITHDRAW_STALE",
|
|
@@ -192250,6 +192796,9 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
|
|
|
192250
192796
|
sensorIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
192251
192797
|
success: Scalars['Boolean']['output'];
|
|
192252
192798
|
};
|
|
192799
|
+
export declare enum PsmUserActionType {
|
|
192800
|
+
Resolved = "RESOLVED"
|
|
192801
|
+
}
|
|
192253
192802
|
export type PublicLink = {
|
|
192254
192803
|
__typename?: 'PublicLink';
|
|
192255
192804
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -192686,7 +193235,6 @@ export type Query = {
|
|
|
192686
193235
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
192687
193236
|
agentStudio_widgetReferenceByContainerAri?: Maybe<AgentStudioWidgetReferenceByContainerAriResult>;
|
|
192688
193237
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
192689
|
-
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
192690
193238
|
agentWorkspace_agentRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
192691
193239
|
agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
192692
193240
|
agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
@@ -192733,7 +193281,6 @@ export type Query = {
|
|
|
192733
193281
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
192734
193282
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
192735
193283
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
192736
|
-
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
192737
193284
|
agentWorkspace_teamRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
192738
193285
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
192739
193286
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
@@ -193074,6 +193621,7 @@ export type Query = {
|
|
|
193074
193621
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
193075
193622
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
193076
193623
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
193624
|
+
confluence_accessRequestSettings?: Maybe<ConfluenceAccessRequestSettingsConfiguration>;
|
|
193077
193625
|
confluence_activeInlineData?: Maybe<ConfluenceActiveInlineData>;
|
|
193078
193626
|
confluence_analyticsTimeseries?: Maybe<ConfluenceAnalyticsTimeseriesResult>;
|
|
193079
193627
|
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
@@ -193146,6 +193694,7 @@ export type Query = {
|
|
|
193146
193694
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
193147
193695
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
193148
193696
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
193697
|
+
confluence_jiraMacroAuditStatus?: Maybe<ConfluenceJiraMacroAuditStatus>;
|
|
193149
193698
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
193150
193699
|
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
193151
193700
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
@@ -194452,6 +195001,8 @@ export type Query = {
|
|
|
194452
195001
|
graphStoreV2_jiraWorkItemLinksJiraWorkItemRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksJiraWorkItemRemoteLinkInverseConnection>;
|
|
194453
195002
|
graphStoreV2_jiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityConnection>;
|
|
194454
195003
|
graphStoreV2_jiraWorkItemLinksSupportEscalationEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksSupportEscalationEntityInverseConnection>;
|
|
195004
|
+
graphStoreV2_jiraWorkItemSharedWithAtlassianUser?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserConnection>;
|
|
195005
|
+
graphStoreV2_jiraWorkItemSharedWithAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemSharedWithAtlassianUserInverseConnection>;
|
|
194455
195006
|
graphStoreV2_jiraWorkItemTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectConnection>;
|
|
194456
195007
|
graphStoreV2_jiraWorkItemTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemTracksAtlassianProjectInverseConnection>;
|
|
194457
195008
|
graphStoreV2_jsmIncidentImpactsCompassComponent?: Maybe<GraphStoreV2SimplifiedJsmIncidentImpactsCompassComponentConnection>;
|
|
@@ -195057,6 +195608,8 @@ export type Query = {
|
|
|
195057
195608
|
graphStore_jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
195058
195609
|
graphStore_jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
195059
195610
|
graphStore_jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
195611
|
+
graphStore_jiraIssueSharedWithUser?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserConnection>;
|
|
195612
|
+
graphStore_jiraIssueSharedWithUserInverse?: Maybe<GraphStoreSimplifiedJiraIssueSharedWithUserInverseConnection>;
|
|
195060
195613
|
graphStore_jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
195061
195614
|
graphStore_jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
195062
195615
|
graphStore_jiraProjectAgentKnowledgeContextHasKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraProjectAgentKnowledgeContextHasKnowledgeBaseEntityConnection>;
|
|
@@ -195827,10 +196380,12 @@ export type Query = {
|
|
|
195827
196380
|
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
195828
196381
|
jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
195829
196382
|
jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
196383
|
+
jira_agentSpaceInstructionsByIds?: Maybe<Array<Maybe<JiraAgentSpaceInstruction>>>;
|
|
195830
196384
|
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
195831
196385
|
jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
195832
196386
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
195833
196387
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
196388
|
+
jira_backlogAgentSetupBanner?: Maybe<JiraBacklogAgentSetupBanner>;
|
|
195834
196389
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
195835
196390
|
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
195836
196391
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
@@ -197211,9 +197766,6 @@ export type QueryAgentStudio_WidgetReferenceByContainerAriArgs = {
|
|
|
197211
197766
|
export type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
197212
197767
|
cloudId: Scalars['ID']['input'];
|
|
197213
197768
|
};
|
|
197214
|
-
export type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
197215
|
-
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
197216
|
-
};
|
|
197217
197769
|
export type QueryAgentWorkspace_AgentRebalancingRecommendationsV2Args = {
|
|
197218
197770
|
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
197219
197771
|
};
|
|
@@ -197462,9 +198014,6 @@ export type QueryAgentWorkspace_SmartRoutingDryRunTicketsArgs = {
|
|
|
197462
198014
|
export type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
197463
198015
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
197464
198016
|
};
|
|
197465
|
-
export type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
|
|
197466
|
-
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
197467
|
-
};
|
|
197468
198017
|
export type QueryAgentWorkspace_TeamRebalancingRecommendationsV2Args = {
|
|
197469
198018
|
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
197470
198019
|
};
|
|
@@ -199030,6 +199579,9 @@ export type QueryConfluenceUsersArgs = {
|
|
|
199030
199579
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
199031
199580
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
199032
199581
|
};
|
|
199582
|
+
export type QueryConfluence_AccessRequestSettingsArgs = {
|
|
199583
|
+
cloudId: Scalars['ID']['input'];
|
|
199584
|
+
};
|
|
199033
199585
|
export type QueryConfluence_ActiveInlineDataArgs = {
|
|
199034
199586
|
cloudId: Scalars['ID']['input'];
|
|
199035
199587
|
contentId: Scalars['ID']['input'];
|
|
@@ -199388,6 +199940,9 @@ export type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
199388
199940
|
cloudId: Scalars['ID']['input'];
|
|
199389
199941
|
input: ConfluenceLabelWatchInput;
|
|
199390
199942
|
};
|
|
199943
|
+
export type QueryConfluence_JiraMacroAuditStatusArgs = {
|
|
199944
|
+
cloudId: Scalars['ID']['input'];
|
|
199945
|
+
};
|
|
199391
199946
|
export type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
199392
199947
|
cloudId: Scalars['ID']['input'];
|
|
199393
199948
|
};
|
|
@@ -207506,6 +208061,20 @@ export type QueryGraphStoreV2_JiraWorkItemLinksSupportEscalationEntityInverseArg
|
|
|
207506
208061
|
id: Scalars['ID']['input'];
|
|
207507
208062
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksSupportEscalationEntitySortInput>;
|
|
207508
208063
|
};
|
|
208064
|
+
export type QueryGraphStoreV2_JiraWorkItemSharedWithAtlassianUserArgs = {
|
|
208065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208068
|
+
id: Scalars['ID']['input'];
|
|
208069
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
208070
|
+
};
|
|
208071
|
+
export type QueryGraphStoreV2_JiraWorkItemSharedWithAtlassianUserInverseArgs = {
|
|
208072
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208073
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208075
|
+
id: Scalars['ID']['input'];
|
|
208076
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemSharedWithAtlassianUserSortInput>;
|
|
208077
|
+
};
|
|
207509
208078
|
export type QueryGraphStoreV2_JiraWorkItemTracksAtlassianProjectArgs = {
|
|
207510
208079
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207511
208080
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212143,6 +212712,22 @@ export type QueryGraphStore_JiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
212143
212712
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212144
212713
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
212145
212714
|
};
|
|
212715
|
+
export type QueryGraphStore_JiraIssueSharedWithUserArgs = {
|
|
212716
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212717
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212718
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212719
|
+
id: Scalars['ID']['input'];
|
|
212720
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212721
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
212722
|
+
};
|
|
212723
|
+
export type QueryGraphStore_JiraIssueSharedWithUserInverseArgs = {
|
|
212724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212725
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
212726
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212727
|
+
id: Scalars['ID']['input'];
|
|
212728
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
212729
|
+
sort?: InputMaybe<GraphStoreJiraIssueSharedWithUserSortInput>;
|
|
212730
|
+
};
|
|
212146
212731
|
export type QueryGraphStore_JiraIssueToJiraPriorityArgs = {
|
|
212147
212732
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
212148
212733
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -217806,6 +218391,9 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
217806
218391
|
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
217807
218392
|
projectAri: Scalars['ID']['input'];
|
|
217808
218393
|
};
|
|
218394
|
+
export type QueryJira_AgentSpaceInstructionsByIdsArgs = {
|
|
218395
|
+
ids: Array<Scalars['ID']['input']>;
|
|
218396
|
+
};
|
|
217809
218397
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
217810
218398
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
217811
218399
|
cloudId: Scalars['ID']['input'];
|
|
@@ -217831,6 +218419,10 @@ export type QueryJira_BacklogArgs = {
|
|
|
217831
218419
|
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
217832
218420
|
boardId: Scalars['ID']['input'];
|
|
217833
218421
|
};
|
|
218422
|
+
export type QueryJira_BacklogAgentSetupBannerArgs = {
|
|
218423
|
+
boardId: Scalars['ID']['input'];
|
|
218424
|
+
cloudId: Scalars['ID']['input'];
|
|
218425
|
+
};
|
|
217834
218426
|
export type QueryJira_BacklogViewArgs = {
|
|
217835
218427
|
input: JiraBacklogViewInput;
|
|
217836
218428
|
};
|
|
@@ -219097,6 +219689,7 @@ export type QueryPopularFeedArgs = {
|
|
|
219097
219689
|
export type QueryPostOffice_GetMessagesArgs = {
|
|
219098
219690
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
219099
219691
|
payload: PostOfficeGetMessagesInput;
|
|
219692
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
219100
219693
|
};
|
|
219101
219694
|
export type QueryProactiveAi_GenerateUserActionsArgs = {
|
|
219102
219695
|
cloudId: Scalars['ID']['input'];
|
|
@@ -220769,11 +221362,13 @@ export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
220769
221362
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220770
221363
|
displayName: Scalars['String']['output'];
|
|
220771
221364
|
entity: RadarEntityType;
|
|
221365
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220772
221366
|
filterOptions: RadarFilterOptions;
|
|
220773
221367
|
id: Scalars['ID']['output'];
|
|
220774
221368
|
isCustom: Scalars['Boolean']['output'];
|
|
220775
221369
|
isGroupable: Scalars['Boolean']['output'];
|
|
220776
221370
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221371
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220777
221372
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220778
221373
|
relativeId: Scalars['String']['output'];
|
|
220779
221374
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -220889,11 +221484,13 @@ export type RadarFieldDefinition = {
|
|
|
220889
221484
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220890
221485
|
displayName: Scalars['String']['output'];
|
|
220891
221486
|
entity: RadarEntityType;
|
|
221487
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220892
221488
|
filterOptions: RadarFilterOptions;
|
|
220893
221489
|
id: Scalars['ID']['output'];
|
|
220894
221490
|
isCustom: Scalars['Boolean']['output'];
|
|
220895
221491
|
isGroupable: Scalars['Boolean']['output'];
|
|
220896
221492
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221493
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220897
221494
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220898
221495
|
relativeId: Scalars['String']['output'];
|
|
220899
221496
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221190,11 +221787,13 @@ export type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221190
221787
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221191
221788
|
displayName: Scalars['String']['output'];
|
|
221192
221789
|
entity: RadarEntityType;
|
|
221790
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221193
221791
|
filterOptions: RadarFilterOptions;
|
|
221194
221792
|
id: Scalars['ID']['output'];
|
|
221195
221793
|
isCustom: Scalars['Boolean']['output'];
|
|
221196
221794
|
isGroupable: Scalars['Boolean']['output'];
|
|
221197
221795
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221796
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221198
221797
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221199
221798
|
relativeId: Scalars['String']['output'];
|
|
221200
221799
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221224,7 +221823,8 @@ export type RadarNotificationInput = {
|
|
|
221224
221823
|
export declare enum RadarNotificationType {
|
|
221225
221824
|
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
221226
221825
|
DataIngestionSuccess = "DATA_INGESTION_SUCCESS",
|
|
221227
|
-
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE"
|
|
221826
|
+
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE",
|
|
221827
|
+
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST"
|
|
221228
221828
|
}
|
|
221229
221829
|
export declare enum RadarNumericAppearance {
|
|
221230
221830
|
Duration = "DURATION",
|
|
@@ -221236,11 +221836,13 @@ export type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221236
221836
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221237
221837
|
displayName: Scalars['String']['output'];
|
|
221238
221838
|
entity: RadarEntityType;
|
|
221839
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221239
221840
|
filterOptions: RadarFilterOptions;
|
|
221240
221841
|
id: Scalars['ID']['output'];
|
|
221241
221842
|
isCustom: Scalars['Boolean']['output'];
|
|
221242
221843
|
isGroupable: Scalars['Boolean']['output'];
|
|
221243
221844
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221845
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221244
221846
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221245
221847
|
relativeId: Scalars['String']['output'];
|
|
221246
221848
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -223535,6 +224137,7 @@ export declare enum Scope {
|
|
|
223535
224137
|
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
223536
224138
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
223537
224139
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
224140
|
+
WriteAllTwg = "WRITE_ALL_TWG",
|
|
223538
224141
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
223539
224142
|
WriteArtifactArtifacts = "WRITE_ARTIFACT_ARTIFACTS",
|
|
223540
224143
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
@@ -224640,6 +225243,16 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
224640
225243
|
userId: Scalars['ID']['output'];
|
|
224641
225244
|
userName: Scalars['String']['output'];
|
|
224642
225245
|
};
|
|
225246
|
+
export type SearchResultJiraComment = {
|
|
225247
|
+
__typename?: 'SearchResultJiraComment';
|
|
225248
|
+
author?: Maybe<ThirdPartyUser>;
|
|
225249
|
+
authorId?: Maybe<Scalars['ID']['output']>;
|
|
225250
|
+
body: Scalars['String']['output'];
|
|
225251
|
+
created?: Maybe<Scalars['String']['output']>;
|
|
225252
|
+
id: Scalars['ID']['output'];
|
|
225253
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
225254
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
225255
|
+
};
|
|
224643
225256
|
export type SearchResultJiraDashboard = SearchResult & {
|
|
224644
225257
|
__typename?: 'SearchResultJiraDashboard';
|
|
224645
225258
|
description: Scalars['String']['output'];
|
|
@@ -224677,6 +225290,7 @@ export type SearchResultJiraFilterSocialSignalArgs = {
|
|
|
224677
225290
|
};
|
|
224678
225291
|
export type SearchResultJiraIssue = SearchResult & {
|
|
224679
225292
|
__typename?: 'SearchResultJiraIssue';
|
|
225293
|
+
comments?: Maybe<Array<SearchResultJiraComment>>;
|
|
224680
225294
|
description: Scalars['String']['output'];
|
|
224681
225295
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
224682
225296
|
id: Scalars['ID']['output'];
|
|
@@ -226271,6 +226885,10 @@ export type ShepherdAttachmentRedactionPayload = Payload & {
|
|
|
226271
226885
|
success: Scalars['Boolean']['output'];
|
|
226272
226886
|
};
|
|
226273
226887
|
export type ShepherdAttachmentRedactionResult = QueryError | ShepherdAttachmentRedaction;
|
|
226888
|
+
export type ShepherdAttachmentTombstoneByContentInput = {
|
|
226889
|
+
contentAri: Scalars['ID']['input'];
|
|
226890
|
+
fileId: Scalars['ID']['input'];
|
|
226891
|
+
};
|
|
226274
226892
|
export type ShepherdAttachmentTombstoneInput = {
|
|
226275
226893
|
alertAri: Scalars['ID']['input'];
|
|
226276
226894
|
};
|
|
@@ -226926,6 +227544,7 @@ export type ShepherdRedactionMutations = {
|
|
|
226926
227544
|
redact?: Maybe<ShepherdRedactionPayload>;
|
|
226927
227545
|
restore?: Maybe<ShepherdRestoreRedactionPayload>;
|
|
226928
227546
|
tombstoneAttachment?: Maybe<ShepherdAttachmentRedactionPayload>;
|
|
227547
|
+
tombstoneAttachmentByContent?: Maybe<ShepherdAttachmentRedactionPayload>;
|
|
226929
227548
|
};
|
|
226930
227549
|
export type ShepherdRedactionMutationsBulkRedactArgs = {
|
|
226931
227550
|
input: ShepherdBulkRedactionInput;
|
|
@@ -226940,6 +227559,10 @@ export type ShepherdRedactionMutationsRestoreArgs = {
|
|
|
226940
227559
|
export type ShepherdRedactionMutationsTombstoneAttachmentArgs = {
|
|
226941
227560
|
input: ShepherdAttachmentTombstoneInput;
|
|
226942
227561
|
};
|
|
227562
|
+
export type ShepherdRedactionMutationsTombstoneAttachmentByContentArgs = {
|
|
227563
|
+
input: ShepherdAttachmentTombstoneByContentInput;
|
|
227564
|
+
workspaceId: Scalars['ID']['input'];
|
|
227565
|
+
};
|
|
226943
227566
|
export type ShepherdRedactionOperation = {
|
|
226944
227567
|
createdOn: Scalars['DateTime']['output'];
|
|
226945
227568
|
id: Scalars['ID']['output'];
|
|
@@ -231546,7 +232169,8 @@ export declare enum StakeholderCommsSuggestionSuppressionReason {
|
|
|
231546
232169
|
EngineError = "ENGINE_ERROR",
|
|
231547
232170
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
231548
232171
|
NoPagesConfigured = "NO_PAGES_CONFIGURED",
|
|
231549
|
-
NoStakeholders = "NO_STAKEHOLDERS"
|
|
232172
|
+
NoStakeholders = "NO_STAKEHOLDERS",
|
|
232173
|
+
RecentDuplicateStatuspageUpdate = "RECENT_DUPLICATE_STATUSPAGE_UPDATE"
|
|
231550
232174
|
}
|
|
231551
232175
|
export type StakeholderCommsTransformerRecord = {
|
|
231552
232176
|
__typename?: 'StakeholderCommsTransformerRecord';
|
|
@@ -235214,6 +235838,7 @@ export type TownsquareGoalAccessEdge = {
|
|
|
235214
235838
|
cursor: Scalars['String']['output'];
|
|
235215
235839
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
235216
235840
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
235841
|
+
isOwnerOfConnectedGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
235217
235842
|
node?: Maybe<TownsquareAccessPrincipal>;
|
|
235218
235843
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
235219
235844
|
role?: Maybe<TownsquareGoalAccessRole>;
|
|
@@ -235865,6 +236490,15 @@ export type TownsquareGoalsCreateDecisionPayload = {
|
|
|
235865
236490
|
errors?: Maybe<Array<MutationError>>;
|
|
235866
236491
|
success: Scalars['Boolean']['output'];
|
|
235867
236492
|
};
|
|
236493
|
+
export type TownsquareGoalsCreateDraftUpdateInput = {
|
|
236494
|
+
values: TownsquareGoalsCreateUpdateInput;
|
|
236495
|
+
};
|
|
236496
|
+
export type TownsquareGoalsCreateDraftUpdatePayload = {
|
|
236497
|
+
__typename?: 'TownsquareGoalsCreateDraftUpdatePayload';
|
|
236498
|
+
draftUpdate?: Maybe<TownsquareGoalDraftUpdate>;
|
|
236499
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236500
|
+
success: Scalars['Boolean']['output'];
|
|
236501
|
+
};
|
|
235868
236502
|
export type TownsquareGoalsCreateGoalTypePairInput = {
|
|
235869
236503
|
goalType: TownsquareCreateGoalTypeInputV2;
|
|
235870
236504
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
@@ -235955,6 +236589,15 @@ export type TownsquareGoalsDeleteDecisionPayload = {
|
|
|
235955
236589
|
errors?: Maybe<Array<MutationError>>;
|
|
235956
236590
|
success: Scalars['Boolean']['output'];
|
|
235957
236591
|
};
|
|
236592
|
+
export type TownsquareGoalsDeleteDraftUpdateInput = {
|
|
236593
|
+
draftId: Scalars['ID']['input'];
|
|
236594
|
+
};
|
|
236595
|
+
export type TownsquareGoalsDeleteDraftUpdatePayload = {
|
|
236596
|
+
__typename?: 'TownsquareGoalsDeleteDraftUpdatePayload';
|
|
236597
|
+
deletedDraftUpdateId?: Maybe<Scalars['ID']['output']>;
|
|
236598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236599
|
+
success: Scalars['Boolean']['output'];
|
|
236600
|
+
};
|
|
235958
236601
|
export type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
235959
236602
|
updateId: Scalars['ID']['input'];
|
|
235960
236603
|
};
|
|
@@ -236044,6 +236687,16 @@ export type TownsquareGoalsEditDecisionPayload = {
|
|
|
236044
236687
|
errors?: Maybe<Array<MutationError>>;
|
|
236045
236688
|
success: Scalars['Boolean']['output'];
|
|
236046
236689
|
};
|
|
236690
|
+
export type TownsquareGoalsEditDraftUpdateInput = {
|
|
236691
|
+
draftId: Scalars['ID']['input'];
|
|
236692
|
+
values?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
236693
|
+
};
|
|
236694
|
+
export type TownsquareGoalsEditDraftUpdatePayload = {
|
|
236695
|
+
__typename?: 'TownsquareGoalsEditDraftUpdatePayload';
|
|
236696
|
+
draftUpdate?: Maybe<TownsquareGoalDraftUpdate>;
|
|
236697
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236698
|
+
success: Scalars['Boolean']['output'];
|
|
236699
|
+
};
|
|
236047
236700
|
export type TownsquareGoalsEditDropdownCustomFieldInput = {
|
|
236048
236701
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
236049
236702
|
goalId: Scalars['ID']['input'];
|
|
@@ -239191,6 +239844,12 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239191
239844
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239192
239845
|
id: Scalars['ID']['output'];
|
|
239193
239846
|
};
|
|
239847
|
+
export type TrelloAgent = TrelloRecommendationOwner & {
|
|
239848
|
+
__typename?: 'TrelloAgent';
|
|
239849
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
239850
|
+
id: Scalars['ID']['output'];
|
|
239851
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
239852
|
+
};
|
|
239194
239853
|
export type TrelloAgentMessage = {
|
|
239195
239854
|
__typename?: 'TrelloAgentMessage';
|
|
239196
239855
|
content: Scalars['String']['output'];
|
|
@@ -239736,6 +240395,7 @@ export type TrelloAuthorizedApplicationSummary = {
|
|
|
239736
240395
|
};
|
|
239737
240396
|
export type TrelloAuthorizedOAuth2ClientGrant = {
|
|
239738
240397
|
__typename?: 'TrelloAuthorizedOAuth2ClientGrant';
|
|
240398
|
+
isPowerUp: Scalars['Boolean']['output'];
|
|
239739
240399
|
oauth2ClientId: Scalars['ID']['output'];
|
|
239740
240400
|
plugin?: Maybe<TrelloPowerUp>;
|
|
239741
240401
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -239838,6 +240498,7 @@ export type TrelloBaseCard = {
|
|
|
239838
240498
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
239839
240499
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
239840
240500
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240501
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
239841
240502
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
239842
240503
|
role?: Maybe<TrelloCardRole>;
|
|
239843
240504
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -239873,6 +240534,10 @@ export type TrelloBaseCardPlannerEventsArgs = {
|
|
|
239873
240534
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
239874
240535
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
239875
240536
|
};
|
|
240537
|
+
export type TrelloBaseCardRecommendationsArgs = {
|
|
240538
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240540
|
+
};
|
|
239876
240541
|
export type TrelloBaseCardDeleted = {
|
|
239877
240542
|
id: Scalars['ID']['output'];
|
|
239878
240543
|
};
|
|
@@ -240500,6 +241165,7 @@ export type TrelloCard = Node & TrelloBaseCard & {
|
|
|
240500
241165
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
240501
241166
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240502
241167
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
241168
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
240503
241169
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
240504
241170
|
role?: Maybe<TrelloCardRole>;
|
|
240505
241171
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -240556,6 +241222,10 @@ export type TrelloCardPowerUpDataArgs = {
|
|
|
240556
241222
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
240557
241223
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240558
241224
|
};
|
|
241225
|
+
export type TrelloCardRecommendationsArgs = {
|
|
241226
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
241227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
241228
|
+
};
|
|
240559
241229
|
export type TrelloCardStickersArgs = {
|
|
240560
241230
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240561
241231
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -242218,6 +242888,7 @@ export type TrelloInboxCard = TrelloBaseCard & {
|
|
|
242218
242888
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
242219
242889
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
242220
242890
|
position?: Maybe<Scalars['Float']['output']>;
|
|
242891
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
242221
242892
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
242222
242893
|
role?: Maybe<TrelloCardRole>;
|
|
242223
242894
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -242253,6 +242924,10 @@ export type TrelloInboxCardPlannerEventsArgs = {
|
|
|
242253
242924
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
242254
242925
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242255
242926
|
};
|
|
242927
|
+
export type TrelloInboxCardRecommendationsArgs = {
|
|
242928
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
242929
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242930
|
+
};
|
|
242256
242931
|
export type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
242257
242932
|
__typename?: 'TrelloInboxCardDeleted';
|
|
242258
242933
|
id: Scalars['ID']['output'];
|
|
@@ -244987,6 +245662,36 @@ export type TrelloReactionLimits = {
|
|
|
244987
245662
|
perAction?: Maybe<TrelloLimitProps>;
|
|
244988
245663
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
244989
245664
|
};
|
|
245665
|
+
export type TrelloRecommendation = {
|
|
245666
|
+
__typename?: 'TrelloRecommendation';
|
|
245667
|
+
confidenceScore?: Maybe<Scalars['Int']['output']>;
|
|
245668
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
245669
|
+
id: Scalars['ID']['output'];
|
|
245670
|
+
recommendedAction?: Maybe<TrelloRecommendedAction>;
|
|
245671
|
+
};
|
|
245672
|
+
export type TrelloRecommendationConnection = {
|
|
245673
|
+
__typename?: 'TrelloRecommendationConnection';
|
|
245674
|
+
edges?: Maybe<Array<TrelloRecommendationEdge>>;
|
|
245675
|
+
nodes?: Maybe<Array<TrelloRecommendation>>;
|
|
245676
|
+
pageInfo: PageInfo;
|
|
245677
|
+
};
|
|
245678
|
+
export type TrelloRecommendationEdge = {
|
|
245679
|
+
__typename?: 'TrelloRecommendationEdge';
|
|
245680
|
+
cursor: Scalars['String']['output'];
|
|
245681
|
+
node: TrelloRecommendation;
|
|
245682
|
+
};
|
|
245683
|
+
export type TrelloRecommendationOwner = {
|
|
245684
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
245685
|
+
id: Scalars['ID']['output'];
|
|
245686
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
245687
|
+
};
|
|
245688
|
+
export type TrelloRecommendedAction = {
|
|
245689
|
+
__typename?: 'TrelloRecommendedAction';
|
|
245690
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
245691
|
+
id: Scalars['ID']['output'];
|
|
245692
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
245693
|
+
owner?: Maybe<TrelloRecommendationOwner>;
|
|
245694
|
+
};
|
|
244990
245695
|
export type TrelloRefreshManifestInput = {
|
|
244991
245696
|
cardId: Scalars['ID']['input'];
|
|
244992
245697
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -249390,6 +250095,7 @@ export type UtsAllowanceExemption = {
|
|
|
249390
250095
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
249391
250096
|
scopeType?: Maybe<UtsAllowanceExemptionScopeType>;
|
|
249392
250097
|
status?: Maybe<UtsAllowanceExemptionStatus>;
|
|
250098
|
+
type?: Maybe<UtsAllowanceExemptionType>;
|
|
249393
250099
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
249394
250100
|
};
|
|
249395
250101
|
export type UtsAllowanceExemptionList = {
|
|
@@ -249408,6 +250114,10 @@ export declare enum UtsAllowanceExemptionStatus {
|
|
|
249408
250114
|
Expired = "EXPIRED",
|
|
249409
250115
|
Scheduled = "SCHEDULED"
|
|
249410
250116
|
}
|
|
250117
|
+
export declare enum UtsAllowanceExemptionType {
|
|
250118
|
+
Commercial = "COMMERCIAL",
|
|
250119
|
+
Internal = "INTERNAL"
|
|
250120
|
+
}
|
|
249411
250121
|
export type UtsAllowancePool = {
|
|
249412
250122
|
__typename?: 'UtsAllowancePool';
|
|
249413
250123
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
@@ -250287,6 +250997,10 @@ export type WebSection = {
|
|
|
250287
250997
|
label?: Maybe<Scalars['String']['output']>;
|
|
250288
250998
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
250289
250999
|
};
|
|
251000
|
+
export type WebTriggerSecretKeyConfigInput = {
|
|
251001
|
+
key: Scalars['String']['input'];
|
|
251002
|
+
noExpiry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
251003
|
+
};
|
|
250290
251004
|
export type WebTriggerUrl = Node & {
|
|
250291
251005
|
__typename?: 'WebTriggerUrl';
|
|
250292
251006
|
appId: Scalars['ID']['output'];
|
|
@@ -250303,8 +251017,7 @@ export type WebTriggerUrlInput = {
|
|
|
250303
251017
|
appId: Scalars['ID']['input'];
|
|
250304
251018
|
contextId: Scalars['ID']['input'];
|
|
250305
251019
|
envId: Scalars['ID']['input'];
|
|
250306
|
-
|
|
250307
|
-
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
251020
|
+
secretKeyConfig?: InputMaybe<WebTriggerSecretKeyConfigInput>;
|
|
250308
251021
|
triggerKey: Scalars['String']['input'];
|
|
250309
251022
|
};
|
|
250310
251023
|
export type WhiteboardFeatures = {
|