@forge/cli-shared 9.5.0 → 9.5.1-next.0
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 +6 -0
- package/out/graphql/graphql-types.d.ts +404 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +94 -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/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,16 @@ 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
|
+
canViewInvestigation?: Maybe<Scalars['Boolean']['output']>;
|
|
654
|
+
};
|
|
644
655
|
export type AiOpsInvestigationProgressItem = {
|
|
645
656
|
__typename?: 'AIOpsInvestigationProgressItem';
|
|
646
657
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -650,7 +661,7 @@ export declare enum AiOpsInvestigationProgressItemType {
|
|
|
650
661
|
Info = "INFO",
|
|
651
662
|
Warning = "WARNING"
|
|
652
663
|
}
|
|
653
|
-
export type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
664
|
+
export type AiOpsInvestigationQueryResult = AiOpsInvestigation | AiOpsInvestigationNotFound | QueryError;
|
|
654
665
|
export type AiOpsInvestigationResult = AiOpsInvestigationCompleted | AiOpsInvestigationInProgress | AiOpsInvestigationTerminated;
|
|
655
666
|
export declare enum AiOpsInvestigationSourceEntityType {
|
|
656
667
|
Incident = "INCIDENT"
|
|
@@ -6996,6 +7007,7 @@ export type AgentStudioCreateAgentTriggerPayload = {
|
|
|
6996
7007
|
__typename?: 'AgentStudioCreateAgentTriggerPayload';
|
|
6997
7008
|
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
6998
7009
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7010
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
6999
7011
|
};
|
|
7000
7012
|
export type AgentStudioCreateBatchEvaluationJobInput = {
|
|
7001
7013
|
agentId: Scalars['String']['input'];
|
|
@@ -7522,6 +7534,12 @@ export type AgentStudioPublishAgentVersionPayload = Payload & {
|
|
|
7522
7534
|
errors?: Maybe<Array<MutationError>>;
|
|
7523
7535
|
success: Scalars['Boolean']['output'];
|
|
7524
7536
|
};
|
|
7537
|
+
export type AgentStudioRemoveAgentTriggerPayload = {
|
|
7538
|
+
__typename?: 'AgentStudioRemoveAgentTriggerPayload';
|
|
7539
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
7540
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7541
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
7542
|
+
};
|
|
7525
7543
|
export type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
|
|
7526
7544
|
__typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
|
|
7527
7545
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7674,6 +7692,16 @@ export type AgentStudioSetAccessIdentityModePayload = Payload & {
|
|
|
7674
7692
|
errors?: Maybe<Array<MutationError>>;
|
|
7675
7693
|
success: Scalars['Boolean']['output'];
|
|
7676
7694
|
};
|
|
7695
|
+
export type AgentStudioSetAgentTriggerEnabledInput = {
|
|
7696
|
+
automationRuleId: Scalars['ID']['input'];
|
|
7697
|
+
enabled: Scalars['Boolean']['input'];
|
|
7698
|
+
};
|
|
7699
|
+
export type AgentStudioSetAgentTriggerEnabledPayload = {
|
|
7700
|
+
__typename?: 'AgentStudioSetAgentTriggerEnabledPayload';
|
|
7701
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
7702
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
7703
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
7704
|
+
};
|
|
7677
7705
|
export type AgentStudioSetWidgetByContainerAriInput = {
|
|
7678
7706
|
agentAri: Scalars['ID']['input'];
|
|
7679
7707
|
containerType?: InputMaybe<AgentStudioWidgetContainerType>;
|
|
@@ -7907,8 +7935,12 @@ export type AgentStudioToolConfigurationUiElement = {
|
|
|
7907
7935
|
scope: Scalars['String']['output'];
|
|
7908
7936
|
type: AgentStudioToolConfigurationUiElementType;
|
|
7909
7937
|
};
|
|
7938
|
+
export declare enum AgentStudioToolConfigurationUiElementFormat {
|
|
7939
|
+
Jql = "JQL"
|
|
7940
|
+
}
|
|
7910
7941
|
export type AgentStudioToolConfigurationUiElementOptions = {
|
|
7911
7942
|
__typename?: 'AgentStudioToolConfigurationUIElementOptions';
|
|
7943
|
+
format?: Maybe<AgentStudioToolConfigurationUiElementFormat>;
|
|
7912
7944
|
multi?: Maybe<Scalars['Boolean']['output']>;
|
|
7913
7945
|
};
|
|
7914
7946
|
export type AgentStudioToolConfigurationUiElementRule = {
|
|
@@ -8073,6 +8105,16 @@ export type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
|
8073
8105
|
success: Scalars['Boolean']['output'];
|
|
8074
8106
|
users?: Maybe<Array<Maybe<User>>>;
|
|
8075
8107
|
};
|
|
8108
|
+
export type AgentStudioUpdateAgentTriggerInput = {
|
|
8109
|
+
automationConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
8110
|
+
automationRuleId: Scalars['ID']['input'];
|
|
8111
|
+
};
|
|
8112
|
+
export type AgentStudioUpdateAgentTriggerPayload = {
|
|
8113
|
+
__typename?: 'AgentStudioUpdateAgentTriggerPayload';
|
|
8114
|
+
errors?: Maybe<Array<Maybe<MutationError>>>;
|
|
8115
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
8116
|
+
trigger?: Maybe<AgentStudioAgentTrigger>;
|
|
8117
|
+
};
|
|
8076
8118
|
export type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
8077
8119
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
8078
8120
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
@@ -11719,6 +11761,7 @@ export type AppLogsWithMetaData = {
|
|
|
11719
11761
|
message?: Maybe<Scalars['String']['output']>;
|
|
11720
11762
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
11721
11763
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
11764
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
11722
11765
|
osName?: Maybe<Scalars['String']['output']>;
|
|
11723
11766
|
other?: Maybe<Scalars['String']['output']>;
|
|
11724
11767
|
p?: Maybe<Scalars['String']['output']>;
|
|
@@ -11728,6 +11771,7 @@ export type AppLogsWithMetaData = {
|
|
|
11728
11771
|
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
11729
11772
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
11730
11773
|
ts: Scalars['String']['output'];
|
|
11774
|
+
unitId?: Maybe<Scalars['String']['output']>;
|
|
11731
11775
|
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11732
11776
|
};
|
|
11733
11777
|
export type AppLogsWithMetaDataResponse = {
|
|
@@ -22321,6 +22365,21 @@ export type CommerceExpAndRuleCondition = {
|
|
|
22321
22365
|
eligibleConditions?: Maybe<Array<Maybe<CommerceExpEligibleCondition>>>;
|
|
22322
22366
|
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
22323
22367
|
};
|
|
22368
|
+
export type CommerceExpAppInstallationData = {
|
|
22369
|
+
__typename?: 'CommerceExpAppInstallationData';
|
|
22370
|
+
appId?: Maybe<Scalars['ID']['output']>;
|
|
22371
|
+
appType?: Maybe<CommerceExpAppType>;
|
|
22372
|
+
currentVersion?: Maybe<Scalars['String']['output']>;
|
|
22373
|
+
isUpdateRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
22374
|
+
latestVersion?: Maybe<Scalars['String']['output']>;
|
|
22375
|
+
oauthClientId?: Maybe<Scalars['ID']['output']>;
|
|
22376
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
22377
|
+
resourceOwner?: Maybe<Scalars['String']['output']>;
|
|
22378
|
+
};
|
|
22379
|
+
export declare enum CommerceExpAppType {
|
|
22380
|
+
ConnectApp = "CONNECT_APP",
|
|
22381
|
+
ForgeApp = "FORGE_APP"
|
|
22382
|
+
}
|
|
22324
22383
|
export type CommerceExpApplicationReason = {
|
|
22325
22384
|
__typename?: 'CommerceExpApplicationReason';
|
|
22326
22385
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -24358,6 +24417,7 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
24358
24417
|
}
|
|
24359
24418
|
export type CommerceExpEntitlementProvisioning = {
|
|
24360
24419
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
24420
|
+
appInstallationData?: Maybe<CommerceExpAppInstallationData>;
|
|
24361
24421
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
24362
24422
|
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
24363
24423
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25716,6 +25776,7 @@ export type CommerceExpPricingPlanItem = {
|
|
|
25716
25776
|
prorationBehaviour?: Maybe<CommerceExpProrationBehaviour>;
|
|
25717
25777
|
tiers?: Maybe<Array<Maybe<CommerceExpPricingPlanItemTier>>>;
|
|
25718
25778
|
tiersMode?: Maybe<CommerceExpPricingPlanItemTiersMode>;
|
|
25779
|
+
transformQuantity?: Maybe<CommerceExpPricingPlanItemTransformQuantity>;
|
|
25719
25780
|
usageUpdateCadence?: Maybe<CommerceExpPricingPlanItemUsageUpdateCadence>;
|
|
25720
25781
|
};
|
|
25721
25782
|
export declare enum CommerceExpPricingPlanItemChargeType {
|
|
@@ -25740,6 +25801,10 @@ export declare enum CommerceExpPricingPlanItemTiersMode {
|
|
|
25740
25801
|
Graduated = "GRADUATED",
|
|
25741
25802
|
Volume = "VOLUME"
|
|
25742
25803
|
}
|
|
25804
|
+
export type CommerceExpPricingPlanItemTransformQuantity = {
|
|
25805
|
+
__typename?: 'CommerceExpPricingPlanItemTransformQuantity';
|
|
25806
|
+
divideBy?: Maybe<Scalars['Int']['output']>;
|
|
25807
|
+
};
|
|
25743
25808
|
export type CommerceExpPricingPlanItemUsageUpdateCadence = {
|
|
25744
25809
|
__typename?: 'CommerceExpPricingPlanItemUsageUpdateCadence';
|
|
25745
25810
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -26615,8 +26680,17 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26615
26680
|
customerContactEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
26616
26681
|
isPrimaryContactForSomeEntitlement: Scalars['Boolean']['output'];
|
|
26617
26682
|
roles?: Maybe<Array<Maybe<CommerceExpUserRole>>>;
|
|
26683
|
+
user2?: Maybe<CommerceExpUserInfo>;
|
|
26618
26684
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
26619
26685
|
};
|
|
26686
|
+
export type CommerceExpUserInfo = {
|
|
26687
|
+
__typename?: 'CommerceExpUserInfo';
|
|
26688
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
26689
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
26690
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
26691
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
26692
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
26693
|
+
};
|
|
26620
26694
|
export type CommerceExpUserPermission = {
|
|
26621
26695
|
__typename?: 'CommerceExpUserPermission';
|
|
26622
26696
|
permissionId: Scalars['String']['output'];
|
|
@@ -33827,16 +33901,25 @@ export type ConfluenceCreateSmartFolderPayload = Payload & {
|
|
|
33827
33901
|
success: Scalars['Boolean']['output'];
|
|
33828
33902
|
};
|
|
33829
33903
|
export type ConfluenceCreateSpaceContent = {
|
|
33904
|
+
embed?: InputMaybe<ConfluenceCreateSpaceContentEmbed>;
|
|
33830
33905
|
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
33831
33906
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
33832
33907
|
title: Scalars['String']['input'];
|
|
33833
33908
|
type: ConfluenceCreateSpaceContentType;
|
|
33834
33909
|
};
|
|
33910
|
+
export type ConfluenceCreateSpaceContentEmbed = {
|
|
33911
|
+
embedIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
33912
|
+
embedUrl: Scalars['String']['input'];
|
|
33913
|
+
extensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
33914
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
33915
|
+
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
33916
|
+
};
|
|
33835
33917
|
export type ConfluenceCreateSpaceContentParent = {
|
|
33836
33918
|
title: Scalars['String']['input'];
|
|
33837
33919
|
type: ConfluenceCreateSpaceContentType;
|
|
33838
33920
|
};
|
|
33839
33921
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
33922
|
+
Embed = "EMBED",
|
|
33840
33923
|
Folder = "FOLDER",
|
|
33841
33924
|
Page = "PAGE"
|
|
33842
33925
|
}
|
|
@@ -34437,6 +34520,11 @@ export type ConfluenceExpertReputation = {
|
|
|
34437
34520
|
score?: Maybe<Scalars['Int']['output']>;
|
|
34438
34521
|
totalAnswers?: Maybe<Scalars['Int']['output']>;
|
|
34439
34522
|
};
|
|
34523
|
+
export type ConfluenceExportJiraMacroAuditPayload = Payload & {
|
|
34524
|
+
__typename?: 'ConfluenceExportJiraMacroAuditPayload';
|
|
34525
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34526
|
+
success: Scalars['Boolean']['output'];
|
|
34527
|
+
};
|
|
34440
34528
|
export type ConfluenceExtensionEgressDeclaration = {
|
|
34441
34529
|
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
34442
34530
|
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -34974,6 +35062,7 @@ export type ConfluenceJiraCalendarDuration = {
|
|
|
34974
35062
|
export type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
34975
35063
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
34976
35064
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
35065
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
34977
35066
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
34978
35067
|
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
34979
35068
|
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
@@ -34993,6 +35082,25 @@ export type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
|
34993
35082
|
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34994
35083
|
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34995
35084
|
};
|
|
35085
|
+
export declare enum ConfluenceJiraMacroAuditRunStatus {
|
|
35086
|
+
Done = "DONE",
|
|
35087
|
+
Error = "ERROR",
|
|
35088
|
+
NotStarted = "NOT_STARTED",
|
|
35089
|
+
Running = "RUNNING"
|
|
35090
|
+
}
|
|
35091
|
+
export type ConfluenceJiraMacroAuditStatus = {
|
|
35092
|
+
__typename?: 'ConfluenceJiraMacroAuditStatus';
|
|
35093
|
+
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
35094
|
+
contentScanned?: Maybe<Scalars['Int']['output']>;
|
|
35095
|
+
enabled: Scalars['Boolean']['output'];
|
|
35096
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
35097
|
+
macroOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35098
|
+
registeredOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35099
|
+
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
35100
|
+
status: ConfluenceJiraMacroAuditRunStatus;
|
|
35101
|
+
truncated: Scalars['Boolean']['output'];
|
|
35102
|
+
unregisteredOccurrences?: Maybe<Scalars['Int']['output']>;
|
|
35103
|
+
};
|
|
34996
35104
|
export type ConfluenceJiraProjectLink = {
|
|
34997
35105
|
__typename?: 'ConfluenceJiraProjectLink';
|
|
34998
35106
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -41908,6 +42016,17 @@ export type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
41908
42016
|
node?: Maybe<CplsCustomContributionTarget>;
|
|
41909
42017
|
success: Scalars['Boolean']['output'];
|
|
41910
42018
|
};
|
|
42019
|
+
export type CplsCreateCustomContributionTargetWithScopeAssociationInput = {
|
|
42020
|
+
cloudId: Scalars['ID']['input'];
|
|
42021
|
+
name: Scalars['String']['input'];
|
|
42022
|
+
scopeId: Scalars['ID']['input'];
|
|
42023
|
+
};
|
|
42024
|
+
export type CplsCreateCustomContributionTargetWithScopeAssociationPayload = Payload & {
|
|
42025
|
+
__typename?: 'CplsCreateCustomContributionTargetWithScopeAssociationPayload';
|
|
42026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42027
|
+
success: Scalars['Boolean']['output'];
|
|
42028
|
+
workScopeAssociation?: Maybe<CplsWorkEdge>;
|
|
42029
|
+
};
|
|
41911
42030
|
export type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
41912
42031
|
cloudId: Scalars['ID']['input'];
|
|
41913
42032
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -42096,6 +42215,7 @@ export type CplsFilters = {
|
|
|
42096
42215
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42097
42216
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42098
42217
|
id: Scalars['ID']['output'];
|
|
42218
|
+
includeCurrentUserAsContributor: Scalars['Boolean']['output'];
|
|
42099
42219
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
42100
42220
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42101
42221
|
searchTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -42106,6 +42226,7 @@ export type CplsFiltersInput = {
|
|
|
42106
42226
|
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42107
42227
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42108
42228
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42229
|
+
includeCurrentUserAsContributor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42109
42230
|
jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42110
42231
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42111
42232
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50340,6 +50461,14 @@ export type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
|
50340
50461
|
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
50341
50462
|
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
50342
50463
|
};
|
|
50464
|
+
export declare enum DlpConfidenceBand {
|
|
50465
|
+
High = "HIGH",
|
|
50466
|
+
Low = "LOW",
|
|
50467
|
+
Medium = "MEDIUM"
|
|
50468
|
+
}
|
|
50469
|
+
export type DlpConfidenceBandInput = {
|
|
50470
|
+
range: DlpConfidenceBand;
|
|
50471
|
+
};
|
|
50343
50472
|
export type DlpCreateFalsePositivesInput = {
|
|
50344
50473
|
falsePositives: Array<DlpFalsePositiveInput>;
|
|
50345
50474
|
orgId: Scalars['String']['input'];
|
|
@@ -50384,6 +50513,13 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
50384
50513
|
scope?: Maybe<DlpScope>;
|
|
50385
50514
|
status?: Maybe<DlpMappingStatus>;
|
|
50386
50515
|
};
|
|
50516
|
+
export type DlpDetectorInput = {
|
|
50517
|
+
ari: Scalars['String']['input'];
|
|
50518
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
50519
|
+
platformCategory?: InputMaybe<Scalars['String']['input']>;
|
|
50520
|
+
title: Scalars['String']['input'];
|
|
50521
|
+
type: Scalars['String']['input'];
|
|
50522
|
+
};
|
|
50387
50523
|
export type DlpFalsePositive = {
|
|
50388
50524
|
__typename?: 'DlpFalsePositive';
|
|
50389
50525
|
actorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50472,7 +50608,9 @@ export type DlpFindingOccurrence = {
|
|
|
50472
50608
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
50473
50609
|
};
|
|
50474
50610
|
export type DlpFindingsFiltersInput = {
|
|
50611
|
+
confidenceBands?: InputMaybe<Array<DlpConfidenceBandInput>>;
|
|
50475
50612
|
detectorIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50613
|
+
detectors?: InputMaybe<Array<DlpDetectorInput>>;
|
|
50476
50614
|
endEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50477
50615
|
startEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50478
50616
|
};
|
|
@@ -51816,6 +51954,7 @@ export type ExternalCalendarEvent = Node & {
|
|
|
51816
51954
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
51817
51955
|
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
51818
51956
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
51957
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51819
51958
|
container?: Maybe<ExternalEntity>;
|
|
51820
51959
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51821
51960
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51876,6 +52015,7 @@ export type ExternalCampaign = Node & {
|
|
|
51876
52015
|
__typename?: 'ExternalCampaign';
|
|
51877
52016
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51878
52017
|
campaignType?: Maybe<Scalars['String']['output']>;
|
|
52018
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51879
52019
|
container?: Maybe<ExternalEntity>;
|
|
51880
52020
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51881
52021
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51923,6 +52063,7 @@ export type ExternalCase = Node & {
|
|
|
51923
52063
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51924
52064
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
51925
52065
|
closedAt?: Maybe<Scalars['String']['output']>;
|
|
52066
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51926
52067
|
container?: Maybe<ExternalEntity>;
|
|
51927
52068
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51928
52069
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51992,6 +52133,7 @@ export type ExternalChapter = {
|
|
|
51992
52133
|
export type ExternalClaudeSession = Node & {
|
|
51993
52134
|
__typename?: 'ExternalClaudeSession';
|
|
51994
52135
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52136
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51995
52137
|
container?: Maybe<ExternalEntity>;
|
|
51996
52138
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51997
52139
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52022,6 +52164,7 @@ export type ExternalClaudeSession = Node & {
|
|
|
52022
52164
|
export type ExternalCodexSession = Node & {
|
|
52023
52165
|
__typename?: 'ExternalCodexSession';
|
|
52024
52166
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52167
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52025
52168
|
container?: Maybe<ExternalEntity>;
|
|
52026
52169
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52027
52170
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52069,6 +52212,7 @@ export type ExternalCollaboratorsSortType = {
|
|
|
52069
52212
|
export type ExternalComment = Node & {
|
|
52070
52213
|
__typename?: 'ExternalComment';
|
|
52071
52214
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52215
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52072
52216
|
container?: Maybe<ExternalEntity>;
|
|
52073
52217
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52074
52218
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52120,6 +52264,13 @@ export type ExternalCommit = Node & {
|
|
|
52120
52264
|
export declare enum ExternalCommitFlags {
|
|
52121
52265
|
MergeCommit = "MERGE_COMMIT"
|
|
52122
52266
|
}
|
|
52267
|
+
export declare enum ExternalConnectorType {
|
|
52268
|
+
Backfill = "BACKFILL",
|
|
52269
|
+
Full = "FULL",
|
|
52270
|
+
Lite = "LITE",
|
|
52271
|
+
SmartLink = "SMART_LINK",
|
|
52272
|
+
Unknown = "UNKNOWN"
|
|
52273
|
+
}
|
|
52123
52274
|
export declare enum ExternalContentRepresentation {
|
|
52124
52275
|
Base64 = "BASE64",
|
|
52125
52276
|
Plaintext = "PLAINTEXT"
|
|
@@ -52137,6 +52288,7 @@ export type ExternalContributor = {
|
|
|
52137
52288
|
export type ExternalConversation = Node & {
|
|
52138
52289
|
__typename?: 'ExternalConversation';
|
|
52139
52290
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52291
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52140
52292
|
container?: Maybe<ExternalEntity>;
|
|
52141
52293
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52142
52294
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52192,6 +52344,7 @@ export type ExternalCurrency = {
|
|
|
52192
52344
|
export type ExternalCursorSession = Node & {
|
|
52193
52345
|
__typename?: 'ExternalCursorSession';
|
|
52194
52346
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52347
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52195
52348
|
container?: Maybe<ExternalEntity>;
|
|
52196
52349
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52197
52350
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52226,6 +52379,7 @@ export type ExternalCustomerContact = Node & {
|
|
|
52226
52379
|
buyerAttributes?: Maybe<Scalars['String']['output']>;
|
|
52227
52380
|
canAllowPortalSelfReg?: Maybe<Scalars['Boolean']['output']>;
|
|
52228
52381
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52382
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52229
52383
|
contactSource?: Maybe<Scalars['String']['output']>;
|
|
52230
52384
|
contactUser?: Maybe<ExternalUser>;
|
|
52231
52385
|
container?: Maybe<ExternalEntity>;
|
|
@@ -52285,6 +52439,7 @@ export type ExternalCustomerOrg = Node & {
|
|
|
52285
52439
|
billingAddress?: Maybe<ExternalAddress>;
|
|
52286
52440
|
channelProgramLevelName?: Maybe<Scalars['String']['output']>;
|
|
52287
52441
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52442
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52288
52443
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52289
52444
|
container?: Maybe<ExternalEntity>;
|
|
52290
52445
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52344,6 +52499,7 @@ export type ExternalCustomerOrgCategory = Node & {
|
|
|
52344
52499
|
__typename?: 'ExternalCustomerOrgCategory';
|
|
52345
52500
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52346
52501
|
categoryType?: Maybe<Scalars['String']['output']>;
|
|
52502
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52347
52503
|
container?: Maybe<ExternalEntity>;
|
|
52348
52504
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52349
52505
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52389,6 +52545,7 @@ export type ExternalCustomerOrgLifeTimeValue = {
|
|
|
52389
52545
|
export type ExternalDashboard = Node & {
|
|
52390
52546
|
__typename?: 'ExternalDashboard';
|
|
52391
52547
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52548
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52392
52549
|
container?: Maybe<ExternalEntity>;
|
|
52393
52550
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52394
52551
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52424,6 +52581,7 @@ export type ExternalDataTable = Node & {
|
|
|
52424
52581
|
__typename?: 'ExternalDataTable';
|
|
52425
52582
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52426
52583
|
columns?: Maybe<Array<Maybe<ExternalDataTableColumn>>>;
|
|
52584
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52427
52585
|
container?: Maybe<ExternalEntity>;
|
|
52428
52586
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52429
52587
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52456,6 +52614,7 @@ export type ExternalDeal = Node & {
|
|
|
52456
52614
|
__typename?: 'ExternalDeal';
|
|
52457
52615
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
52458
52616
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52617
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52459
52618
|
contact?: Maybe<ExternalUser>;
|
|
52460
52619
|
container?: Maybe<ExternalEntity>;
|
|
52461
52620
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52580,6 +52739,7 @@ export type ExternalDocument = Node & {
|
|
|
52580
52739
|
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
52581
52740
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52582
52741
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
52742
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52583
52743
|
container?: Maybe<ExternalEntity>;
|
|
52584
52744
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52585
52745
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -52744,6 +52904,7 @@ export declare enum ExternalEventType {
|
|
|
52744
52904
|
export type ExternalExperimental = Node & {
|
|
52745
52905
|
__typename?: 'ExternalExperimental';
|
|
52746
52906
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52907
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52747
52908
|
container?: Maybe<ExternalEntity>;
|
|
52748
52909
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52749
52910
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52847,6 +53008,7 @@ export type ExternalLead = Node & {
|
|
|
52847
53008
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52848
53009
|
company?: Maybe<Scalars['String']['output']>;
|
|
52849
53010
|
companyDunsNumber?: Maybe<Scalars['String']['output']>;
|
|
53011
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52850
53012
|
container?: Maybe<ExternalEntity>;
|
|
52851
53013
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52852
53014
|
convertedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52911,6 +53073,7 @@ export type ExternalMessage = Node & {
|
|
|
52911
53073
|
__typename?: 'ExternalMessage';
|
|
52912
53074
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52913
53075
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
53076
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52914
53077
|
container?: Maybe<ExternalEntity>;
|
|
52915
53078
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52916
53079
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52941,9 +53104,19 @@ export type ExternalMessageLink = {
|
|
|
52941
53104
|
__typename?: 'ExternalMessageLink';
|
|
52942
53105
|
url?: Maybe<Scalars['String']['output']>;
|
|
52943
53106
|
};
|
|
53107
|
+
export type ExternalMetadataContentLink = {
|
|
53108
|
+
__typename?: 'ExternalMetadataContentLink';
|
|
53109
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
53110
|
+
};
|
|
53111
|
+
export type ExternalMetadataContentTextEntry = {
|
|
53112
|
+
__typename?: 'ExternalMetadataContentTextEntry';
|
|
53113
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
53114
|
+
user?: Maybe<ExternalUser>;
|
|
53115
|
+
};
|
|
52944
53116
|
export type ExternalOrganisation = Node & {
|
|
52945
53117
|
__typename?: 'ExternalOrganisation';
|
|
52946
53118
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53119
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52947
53120
|
container?: Maybe<ExternalEntity>;
|
|
52948
53121
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52949
53122
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52988,6 +53161,7 @@ export type ExternalPipeline = {
|
|
|
52988
53161
|
export type ExternalPosition = Node & {
|
|
52989
53162
|
__typename?: 'ExternalPosition';
|
|
52990
53163
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53164
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52991
53165
|
container?: Maybe<ExternalEntity>;
|
|
52992
53166
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52993
53167
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53016,6 +53190,7 @@ export type ExternalProject = Node & {
|
|
|
53016
53190
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53017
53191
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
53018
53192
|
businessCase?: Maybe<Scalars['String']['output']>;
|
|
53193
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53019
53194
|
container?: Maybe<ExternalEntity>;
|
|
53020
53195
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53021
53196
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53218,6 +53393,7 @@ export type ExternalServicenowBusinessApp = Node & {
|
|
|
53218
53393
|
businessProcess?: Maybe<Scalars['String']['output']>;
|
|
53219
53394
|
businessUnit?: Maybe<Scalars['String']['output']>;
|
|
53220
53395
|
company?: Maybe<Scalars['String']['output']>;
|
|
53396
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53221
53397
|
container?: Maybe<ExternalEntity>;
|
|
53222
53398
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53223
53399
|
costCenter?: Maybe<Scalars['String']['output']>;
|
|
@@ -53264,6 +53440,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
53264
53440
|
__typename?: 'ExternalSoftwareService';
|
|
53265
53441
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53266
53442
|
associationsMetadata?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationsMetadataTuple>>>;
|
|
53443
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53267
53444
|
container?: Maybe<ExternalEntity>;
|
|
53268
53445
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53269
53446
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53302,6 +53479,7 @@ export type ExternalSoftwareServiceAssociationsMetadataTuple = {
|
|
|
53302
53479
|
export type ExternalSpace = Node & {
|
|
53303
53480
|
__typename?: 'ExternalSpace';
|
|
53304
53481
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53482
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53305
53483
|
container?: Maybe<ExternalEntity>;
|
|
53306
53484
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53307
53485
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53336,9 +53514,15 @@ export declare enum ExternalSpaceSubtype {
|
|
|
53336
53514
|
Software = "SOFTWARE",
|
|
53337
53515
|
Space = "SPACE"
|
|
53338
53516
|
}
|
|
53517
|
+
export type ExternalSummaryHighlight = {
|
|
53518
|
+
__typename?: 'ExternalSummaryHighlight';
|
|
53519
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
53520
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
53521
|
+
};
|
|
53339
53522
|
export type ExternalTeam = Node & {
|
|
53340
53523
|
__typename?: 'ExternalTeam';
|
|
53341
53524
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53525
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53342
53526
|
container?: Maybe<ExternalEntity>;
|
|
53343
53527
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53344
53528
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53363,6 +53547,7 @@ export type ExternalTeam = Node & {
|
|
|
53363
53547
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
53364
53548
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
53365
53549
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53550
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53366
53551
|
container?: Maybe<ExternalEntity>;
|
|
53367
53552
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53368
53553
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53386,6 +53571,7 @@ export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
|
53386
53571
|
export type ExternalTest = Node & {
|
|
53387
53572
|
__typename?: 'ExternalTest';
|
|
53388
53573
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53574
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53389
53575
|
container?: Maybe<ExternalEntity>;
|
|
53390
53576
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53391
53577
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53413,6 +53599,7 @@ export type ExternalTest = Node & {
|
|
|
53413
53599
|
export type ExternalTestExecution = Node & {
|
|
53414
53600
|
__typename?: 'ExternalTestExecution';
|
|
53415
53601
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53602
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53416
53603
|
container?: Maybe<ExternalEntity>;
|
|
53417
53604
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53418
53605
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53445,6 +53632,7 @@ export type ExternalTestInfo = {
|
|
|
53445
53632
|
export type ExternalTestPlan = Node & {
|
|
53446
53633
|
__typename?: 'ExternalTestPlan';
|
|
53447
53634
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53635
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53448
53636
|
container?: Maybe<ExternalEntity>;
|
|
53449
53637
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53450
53638
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53468,6 +53656,7 @@ export type ExternalTestRun = Node & {
|
|
|
53468
53656
|
__typename?: 'ExternalTestRun';
|
|
53469
53657
|
assignee?: Maybe<ExternalUser>;
|
|
53470
53658
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53659
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53471
53660
|
container?: Maybe<ExternalEntity>;
|
|
53472
53661
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53473
53662
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53495,6 +53684,7 @@ export type ExternalTestRun = Node & {
|
|
|
53495
53684
|
export type ExternalTestStatus = Node & {
|
|
53496
53685
|
__typename?: 'ExternalTestStatus';
|
|
53497
53686
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53687
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53498
53688
|
container?: Maybe<ExternalEntity>;
|
|
53499
53689
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53500
53690
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53567,6 +53757,7 @@ export type ExternalVideo = Node & {
|
|
|
53567
53757
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
53568
53758
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
53569
53759
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
53760
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53570
53761
|
container?: Maybe<ExternalEntity>;
|
|
53571
53762
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53572
53763
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
@@ -53576,16 +53767,23 @@ export type ExternalVideo = Node & {
|
|
|
53576
53767
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53577
53768
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53578
53769
|
embedUrl?: Maybe<Scalars['String']['output']>;
|
|
53770
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
53579
53771
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
53580
53772
|
height?: Maybe<Scalars['Long']['output']>;
|
|
53581
53773
|
id: Scalars['ID']['output'];
|
|
53582
53774
|
keyPoints?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53583
53775
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
53584
53776
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
53777
|
+
metadataContentLinks?: Maybe<Array<Maybe<ExternalMetadataContentLink>>>;
|
|
53778
|
+
metadataContentText?: Maybe<Array<Maybe<ExternalMetadataContentTextEntry>>>;
|
|
53779
|
+
metadataContentUrl?: Maybe<Scalars['String']['output']>;
|
|
53585
53780
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53586
53781
|
parent?: Maybe<ExternalEntity>;
|
|
53587
53782
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
53588
53783
|
provider?: Maybe<ExternalProvider>;
|
|
53784
|
+
summaryHighlights?: Maybe<Array<Maybe<ExternalSummaryHighlight>>>;
|
|
53785
|
+
summaryNextSteps?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53786
|
+
summaryOverview?: Maybe<Scalars['String']['output']>;
|
|
53589
53787
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
53590
53788
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
53591
53789
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -53658,6 +53856,7 @@ export type ExternalWorkItem = Node & {
|
|
|
53658
53856
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53659
53857
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53660
53858
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
53859
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53661
53860
|
container?: Maybe<ExternalEntity>;
|
|
53662
53861
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53663
53862
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53727,6 +53926,7 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
53727
53926
|
export type ExternalWorker = Node & {
|
|
53728
53927
|
__typename?: 'ExternalWorker';
|
|
53729
53928
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53929
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53730
53930
|
container?: Maybe<ExternalEntity>;
|
|
53731
53931
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53732
53932
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -57936,12 +58136,14 @@ export type GraphIntegrationMcpAdminManagementNoAuthConfigInput = {
|
|
|
57936
58136
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
57937
58137
|
};
|
|
57938
58138
|
export type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
58139
|
+
accessMode?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAccessMode>;
|
|
57939
58140
|
allowedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57940
58141
|
allowedPrincipalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
57941
58142
|
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
57942
58143
|
authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
57943
58144
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57944
58145
|
cloudId: Scalars['ID']['input'];
|
|
58146
|
+
deniedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57945
58147
|
displayName: Scalars['String']['input'];
|
|
57946
58148
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
57947
58149
|
extraInputs?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
@@ -121881,7 +122083,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121881
122083
|
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
121882
122084
|
businessName?: Maybe<Scalars['String']['output']>;
|
|
121883
122085
|
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
121884
|
-
companyId
|
|
122086
|
+
companyId?: Maybe<Scalars['String']['output']>;
|
|
121885
122087
|
companySize?: Maybe<Scalars['String']['output']>;
|
|
121886
122088
|
companyType?: Maybe<Scalars['String']['output']>;
|
|
121887
122089
|
countryCode?: Maybe<Scalars['String']['output']>;
|
|
@@ -121890,6 +122092,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121890
122092
|
description?: Maybe<Scalars['String']['output']>;
|
|
121891
122093
|
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
121892
122094
|
domain: Scalars['String']['output'];
|
|
122095
|
+
domainType: GrowthUnifiedProfileDomainType;
|
|
121893
122096
|
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
121894
122097
|
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
121895
122098
|
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -123445,6 +123648,7 @@ export declare enum HelpCenterMigrationState {
|
|
|
123445
123648
|
export type HelpCenterMoveSiteTreeNodeInput = {
|
|
123446
123649
|
beforeSiblingId?: InputMaybe<Scalars['ID']['input']>;
|
|
123447
123650
|
destinationParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
123651
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
123448
123652
|
isDraft?: Scalars['Boolean']['input'];
|
|
123449
123653
|
siteTreeNodeId: Scalars['ID']['input'];
|
|
123450
123654
|
};
|
|
@@ -125452,6 +125656,7 @@ export type HypothesisMitigationPlan = Node & {
|
|
|
125452
125656
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
125453
125657
|
steps?: Maybe<Array<HypothesisMitigationPlanStep>>;
|
|
125454
125658
|
summary?: Maybe<Scalars['String']['output']>;
|
|
125659
|
+
summaryAdf?: Maybe<Scalars['JSON']['output']>;
|
|
125455
125660
|
title?: Maybe<Scalars['String']['output']>;
|
|
125456
125661
|
};
|
|
125457
125662
|
export type HypothesisMitigationPlanStep = {
|
|
@@ -127176,6 +127381,7 @@ export type JiraAgentInSpace = {
|
|
|
127176
127381
|
hasAppSettings: Scalars['Boolean']['output'];
|
|
127177
127382
|
hasAutonomySettings: Scalars['Boolean']['output'];
|
|
127178
127383
|
sources: Array<JiraAgentInSpaceSource>;
|
|
127384
|
+
spaceAri: Scalars['ID']['output'];
|
|
127179
127385
|
spaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
127180
127386
|
triggers?: Maybe<JiraAgentInSpaceTriggerConnection>;
|
|
127181
127387
|
};
|
|
@@ -127317,6 +127523,7 @@ export type JiraAgentSessionEdge = {
|
|
|
127317
127523
|
node?: Maybe<JiraAgentSession>;
|
|
127318
127524
|
};
|
|
127319
127525
|
export declare enum JiraAgentSessionInvocationType {
|
|
127526
|
+
Automation = "AUTOMATION",
|
|
127320
127527
|
IssueAssignment = "ISSUE_ASSIGNMENT",
|
|
127321
127528
|
IssueCommentMention = "ISSUE_COMMENT_MENTION",
|
|
127322
127529
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
@@ -131857,6 +132064,7 @@ export declare enum JiraConfigFieldType {
|
|
|
131857
132064
|
CustomImportId = "CUSTOM_IMPORT_ID",
|
|
131858
132065
|
CustomJwmCategory = "CUSTOM_JWM_CATEGORY",
|
|
131859
132066
|
CustomLabels = "CUSTOM_LABELS",
|
|
132067
|
+
CustomLongText = "CUSTOM_LONG_TEXT",
|
|
131860
132068
|
CustomMultiCheckboxes = "CUSTOM_MULTI_CHECKBOXES",
|
|
131861
132069
|
CustomMultiGroupPicker = "CUSTOM_MULTI_GROUP_PICKER",
|
|
131862
132070
|
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
@@ -136429,6 +136637,7 @@ export type JiraIccActivityValue = {
|
|
|
136429
136637
|
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
136430
136638
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
136431
136639
|
triggerType?: Maybe<Scalars['String']['output']>;
|
|
136640
|
+
updateMessage?: Maybe<Scalars['String']['output']>;
|
|
136432
136641
|
version?: Maybe<Scalars['String']['output']>;
|
|
136433
136642
|
};
|
|
136434
136643
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
@@ -136720,6 +136929,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
136720
136929
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
136721
136930
|
jiraWorkItemLinksExternalBuild?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBuildConnection>;
|
|
136722
136931
|
jiraWorkItemLinksExternalCommit?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalCommitConnection>;
|
|
136932
|
+
jiraWorkItemLinksExternalPullRequest?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalPullRequestConnection>;
|
|
136723
136933
|
key: Scalars['String']['output'];
|
|
136724
136934
|
labels?: Maybe<JiraLabelConnection>;
|
|
136725
136935
|
labelsField?: Maybe<JiraLabelsField>;
|
|
@@ -137090,6 +137300,13 @@ export type JiraIssueJiraWorkItemLinksExternalCommitArgs = {
|
|
|
137090
137300
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
137091
137301
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalCommitSortInput>;
|
|
137092
137302
|
};
|
|
137303
|
+
export type JiraIssueJiraWorkItemLinksExternalPullRequestArgs = {
|
|
137304
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137305
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
137306
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137307
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
137308
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalPullRequestSortInput>;
|
|
137309
|
+
};
|
|
137093
137310
|
export type JiraIssueLabelsArgs = {
|
|
137094
137311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137095
137312
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138635,6 +138852,8 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
138635
138852
|
};
|
|
138636
138853
|
export type JiraIssueNextActionPresence = {
|
|
138637
138854
|
__typename?: 'JiraIssueNextActionPresence';
|
|
138855
|
+
hasMultiUserReady?: Maybe<Scalars['Boolean']['output']>;
|
|
138856
|
+
hasReady?: Maybe<Scalars['Boolean']['output']>;
|
|
138638
138857
|
recommendations?: Maybe<JiraIssueNextActionSuggestions>;
|
|
138639
138858
|
state?: Maybe<JiraIssueNextActionPresenceState>;
|
|
138640
138859
|
};
|
|
@@ -140852,6 +141071,7 @@ export type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & Jir
|
|
|
140852
141071
|
};
|
|
140853
141072
|
export type JiraLabelsFieldLabelsArgs = {
|
|
140854
141073
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141074
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140855
141075
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140856
141076
|
currentProjectOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140857
141077
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140907,6 +141127,7 @@ export type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
|
140907
141127
|
};
|
|
140908
141128
|
export type JiraLabelsForCreateFieldLabelsArgs = {
|
|
140909
141129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141130
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140910
141131
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140911
141132
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
140912
141133
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -143856,6 +144077,7 @@ export type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
143856
144077
|
};
|
|
143857
144078
|
export type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
143858
144079
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
144080
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
143859
144081
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143860
144082
|
excludeDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143861
144083
|
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
@@ -146243,6 +146465,7 @@ export type JiraQuery = {
|
|
|
146243
146465
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
146244
146466
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
146245
146467
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
146468
|
+
jiraCanBulkInvokeAgentSessionsForJql?: Maybe<Scalars['Boolean']['output']>;
|
|
146246
146469
|
jiraCaseManagementProjectSettings?: Maybe<JiraCaseManagementProjectSettings>;
|
|
146247
146470
|
jiraConfluenceSuggestUpdatesForPage?: Maybe<Array<Scalars['ID']['output']>>;
|
|
146248
146471
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
@@ -146684,6 +146907,7 @@ export type JiraQueryFieldConfigByIdArgs = {
|
|
|
146684
146907
|
ids: Array<Scalars['ID']['input']>;
|
|
146685
146908
|
};
|
|
146686
146909
|
export type JiraQueryFieldPredictionArgs = {
|
|
146910
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146687
146911
|
candidates?: InputMaybe<Array<InputMaybe<JiraFieldPredictionCandidateInput>>>;
|
|
146688
146912
|
cloudId: Scalars['ID']['input'];
|
|
146689
146913
|
fieldId: Scalars['String']['input'];
|
|
@@ -146695,6 +146919,7 @@ export type JiraQueryFieldPredictionArgs = {
|
|
|
146695
146919
|
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
146696
146920
|
};
|
|
146697
146921
|
export type JiraQueryFieldPredictionsArgs = {
|
|
146922
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146698
146923
|
cloudId: Scalars['ID']['input'];
|
|
146699
146924
|
fields: Array<JiraFieldPredictionFieldInput>;
|
|
146700
146925
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -147079,6 +147304,12 @@ export type JiraQueryJiraCalendarArgs = {
|
|
|
147079
147304
|
input?: InputMaybe<JiraCalendarInput>;
|
|
147080
147305
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
147081
147306
|
};
|
|
147307
|
+
export type JiraQueryJiraCanBulkInvokeAgentSessionsForJqlArgs = {
|
|
147308
|
+
cloudId: Scalars['ID']['input'];
|
|
147309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147310
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
147311
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
147312
|
+
};
|
|
147082
147313
|
export type JiraQueryJiraCaseManagementProjectSettingsArgs = {
|
|
147083
147314
|
cloudId: Scalars['ID']['input'];
|
|
147084
147315
|
projectKey: Scalars['String']['input'];
|
|
@@ -147377,6 +147608,7 @@ export type JiraQueryJwmViewItemsArgs = {
|
|
|
147377
147608
|
};
|
|
147378
147609
|
export type JiraQueryLabelsFieldOptionsArgs = {
|
|
147379
147610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147611
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
147380
147612
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
147381
147613
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147382
147614
|
id: Scalars['ID']['input'];
|
|
@@ -163070,7 +163302,6 @@ export type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
|
163070
163302
|
};
|
|
163071
163303
|
export type KnowledgeDiscoveryQueryApiSearchChatIntentDetectionArgs = {
|
|
163072
163304
|
locale: Scalars['String']['input'];
|
|
163073
|
-
orgId: Scalars['String']['input'];
|
|
163074
163305
|
query: Scalars['String']['input'];
|
|
163075
163306
|
siteId: Scalars['String']['input'];
|
|
163076
163307
|
};
|
|
@@ -163933,12 +164164,14 @@ export type LogQueryInput = {
|
|
|
163933
164164
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163934
164165
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
163935
164166
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
164167
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
163936
164168
|
osName?: InputMaybe<Scalars['String']['input']>;
|
|
163937
164169
|
renderType?: InputMaybe<Scalars['String']['input']>;
|
|
163938
164170
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
163939
164171
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
163940
164172
|
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163941
164173
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
164174
|
+
unitId?: InputMaybe<Scalars['String']['input']>;
|
|
163942
164175
|
};
|
|
163943
164176
|
export type LookAndFeel = {
|
|
163944
164177
|
__typename?: 'LookAndFeel';
|
|
@@ -167016,6 +167249,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
167016
167249
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
167017
167250
|
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
167018
167251
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
167252
|
+
productMetadataByProductId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
167019
167253
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
167020
167254
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
167021
167255
|
versionListingApprovalStatus: MarketplaceConsoleVersionListingApprovalStatusResponse;
|
|
@@ -167144,6 +167378,9 @@ export type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
|
167144
167378
|
export type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
167145
167379
|
appId: Scalars['ID']['input'];
|
|
167146
167380
|
};
|
|
167381
|
+
export type MarketplaceConsoleQueryApiProductMetadataByProductIdArgs = {
|
|
167382
|
+
productId: Scalars['ID']['input'];
|
|
167383
|
+
};
|
|
167147
167384
|
export type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
|
|
167148
167385
|
appId: Scalars['ID']['input'];
|
|
167149
167386
|
};
|
|
@@ -171868,6 +172105,7 @@ export type MercuryCreateThreadedCommentPayload = Payload & {
|
|
|
171868
172105
|
};
|
|
171869
172106
|
export type MercuryCreateViewInput = {
|
|
171870
172107
|
cloudId: Scalars['ID']['input'];
|
|
172108
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171871
172109
|
entityType: Scalars['String']['input'];
|
|
171872
172110
|
name: Scalars['String']['input'];
|
|
171873
172111
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -179939,6 +180177,7 @@ export type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
179939
180177
|
};
|
|
179940
180178
|
export type MercuryView = Node & {
|
|
179941
180179
|
__typename?: 'MercuryView';
|
|
180180
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
179942
180181
|
createdBy?: Maybe<User>;
|
|
179943
180182
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
179944
180183
|
entityType: Scalars['String']['output'];
|
|
@@ -180514,12 +180753,14 @@ export type Mutation = {
|
|
|
180514
180753
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
180515
180754
|
agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
|
|
180516
180755
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
180756
|
+
agentStudio_removeAgentTrigger?: Maybe<AgentStudioRemoveAgentTriggerPayload>;
|
|
180517
180757
|
agentStudio_removeBatchEvaluationJobRun?: Maybe<AgentStudioDeleteBatchEvaluationJobRunPayload>;
|
|
180518
180758
|
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
180519
180759
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
180520
180760
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
180521
180761
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
180522
180762
|
agentStudio_setAccessIdentityMode?: Maybe<AgentStudioSetAccessIdentityModePayload>;
|
|
180763
|
+
agentStudio_setAgentTriggerEnabled?: Maybe<AgentStudioSetAgentTriggerEnabledPayload>;
|
|
180523
180764
|
agentStudio_setAgentUsePermissionMode?: Maybe<AgentStudioUpdateUseAgentPermissionModePayload>;
|
|
180524
180765
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
180525
180766
|
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
@@ -180529,6 +180770,7 @@ export type Mutation = {
|
|
|
180529
180770
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
180530
180771
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
180531
180772
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
180773
|
+
agentStudio_updateAgentTrigger?: Maybe<AgentStudioUpdateAgentTriggerPayload>;
|
|
180532
180774
|
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
180533
180775
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
180534
180776
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
@@ -180866,6 +181108,7 @@ export type Mutation = {
|
|
|
180866
181108
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
180867
181109
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
180868
181110
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
181111
|
+
confluence_exportJiraMacroAudit?: Maybe<ConfluenceExportJiraMacroAuditPayload>;
|
|
180869
181112
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
180870
181113
|
confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
|
|
180871
181114
|
confluence_generateSearchPerformedEvent?: Maybe<ConfluenceGenerateSearchPerformedEventPayload>;
|
|
@@ -181002,6 +181245,7 @@ export type Mutation = {
|
|
|
181002
181245
|
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
181003
181246
|
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
181004
181247
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
181248
|
+
cpls_createCustomContributionTargetWithScopeAssociation?: Maybe<CplsCreateCustomContributionTargetWithScopeAssociationPayload>;
|
|
181005
181249
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
181006
181250
|
cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
|
|
181007
181251
|
cpls_deleteAllSuggestionsForUser?: Maybe<CplsDeleteAllSuggestionsForUserPayload>;
|
|
@@ -181253,6 +181497,7 @@ export type Mutation = {
|
|
|
181253
181497
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
181254
181498
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
181255
181499
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
181500
|
+
goals_createDraftUpdate?: Maybe<TownsquareGoalsCreateDraftUpdatePayload>;
|
|
181256
181501
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
181257
181502
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
181258
181503
|
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
@@ -181260,6 +181505,7 @@ export type Mutation = {
|
|
|
181260
181505
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
181261
181506
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
181262
181507
|
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
181508
|
+
goals_deleteDraftUpdate?: Maybe<TownsquareGoalsDeleteDraftUpdatePayload>;
|
|
181263
181509
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
181264
181510
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
181265
181511
|
goals_deleteMetricValue?: Maybe<TownsquareGoalsDeleteMetricValuePayload>;
|
|
@@ -182028,6 +182274,7 @@ export type Mutation = {
|
|
|
182028
182274
|
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
182029
182275
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
182030
182276
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
182277
|
+
psm_recordUserAction?: Maybe<PsmRecordUserActionPayload>;
|
|
182031
182278
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
182032
182279
|
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
182033
182280
|
psm_updateSensorEnablement?: Maybe<PsmUpdateSensorEnablementPayload>;
|
|
@@ -182587,6 +182834,10 @@ export type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
|
182587
182834
|
id: Scalars['ID']['input'];
|
|
182588
182835
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
182589
182836
|
};
|
|
182837
|
+
export type MutationAgentStudio_RemoveAgentTriggerArgs = {
|
|
182838
|
+
automationRuleId: Scalars['ID']['input'];
|
|
182839
|
+
id: Scalars['ID']['input'];
|
|
182840
|
+
};
|
|
182590
182841
|
export type MutationAgentStudio_RemoveBatchEvaluationJobRunArgs = {
|
|
182591
182842
|
cloudId: Scalars['String']['input'];
|
|
182592
182843
|
jobRunId: Scalars['ID']['input'];
|
|
@@ -182621,6 +182872,10 @@ export type MutationAgentStudio_SetAccessIdentityModeArgs = {
|
|
|
182621
182872
|
id: Scalars['ID']['input'];
|
|
182622
182873
|
mode: AgentStudioAccessIdentityMode;
|
|
182623
182874
|
};
|
|
182875
|
+
export type MutationAgentStudio_SetAgentTriggerEnabledArgs = {
|
|
182876
|
+
id: Scalars['ID']['input'];
|
|
182877
|
+
input: AgentStudioSetAgentTriggerEnabledInput;
|
|
182878
|
+
};
|
|
182624
182879
|
export type MutationAgentStudio_SetAgentUsePermissionModeArgs = {
|
|
182625
182880
|
id: Scalars['ID']['input'];
|
|
182626
182881
|
input: AgentStudioUpdateAgentUsePermissionSettingsInput;
|
|
@@ -182660,6 +182915,10 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
182660
182915
|
action: AgentStudioModelUpgradeAction;
|
|
182661
182916
|
id: Scalars['ID']['input'];
|
|
182662
182917
|
};
|
|
182918
|
+
export type MutationAgentStudio_UpdateAgentTriggerArgs = {
|
|
182919
|
+
id: Scalars['ID']['input'];
|
|
182920
|
+
input: AgentStudioUpdateAgentTriggerInput;
|
|
182921
|
+
};
|
|
182663
182922
|
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
182664
182923
|
cloudId: Scalars['String']['input'];
|
|
182665
182924
|
id: Scalars['ID']['input'];
|
|
@@ -183894,6 +184153,9 @@ export type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
|
|
|
183894
184153
|
export type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
183895
184154
|
cloudId: Scalars['ID']['input'];
|
|
183896
184155
|
};
|
|
184156
|
+
export type MutationConfluence_ExportJiraMacroAuditArgs = {
|
|
184157
|
+
cloudId: Scalars['ID']['input'];
|
|
184158
|
+
};
|
|
183897
184159
|
export type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
183898
184160
|
cloudId: Scalars['ID']['input'];
|
|
183899
184161
|
input: ConfluenceForgeContextTokenRequestInput;
|
|
@@ -184434,6 +184696,9 @@ export type MutationCpls_CopyWorkToContributorsArgs = {
|
|
|
184434
184696
|
export type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
184435
184697
|
input: CplsCreateCustomContributionTargetInput;
|
|
184436
184698
|
};
|
|
184699
|
+
export type MutationCpls_CreateCustomContributionTargetWithScopeAssociationArgs = {
|
|
184700
|
+
input: CplsCreateCustomContributionTargetWithScopeAssociationInput;
|
|
184701
|
+
};
|
|
184437
184702
|
export type MutationCpls_CreateCustomContributionTargetWithWorkAssociationArgs = {
|
|
184438
184703
|
input: CplsCreateCustomContributionTargetWithWorkAssociationInput;
|
|
184439
184704
|
};
|
|
@@ -185313,6 +185578,9 @@ export type MutationGoals_CreateCommentArgs = {
|
|
|
185313
185578
|
export type MutationGoals_CreateDecisionArgs = {
|
|
185314
185579
|
input: TownsquareGoalsCreateDecisionInput;
|
|
185315
185580
|
};
|
|
185581
|
+
export type MutationGoals_CreateDraftUpdateArgs = {
|
|
185582
|
+
input: TownsquareGoalsCreateDraftUpdateInput;
|
|
185583
|
+
};
|
|
185316
185584
|
export type MutationGoals_CreateGoalTypePairArgs = {
|
|
185317
185585
|
input: TownsquareGoalsCreateGoalTypePairInput;
|
|
185318
185586
|
};
|
|
@@ -185334,6 +185602,9 @@ export type MutationGoals_DeleteCommentArgs = {
|
|
|
185334
185602
|
export type MutationGoals_DeleteDecisionArgs = {
|
|
185335
185603
|
input: TownsquareGoalsDeleteDecisionInput;
|
|
185336
185604
|
};
|
|
185605
|
+
export type MutationGoals_DeleteDraftUpdateArgs = {
|
|
185606
|
+
input: TownsquareGoalsDeleteDraftUpdateInput;
|
|
185607
|
+
};
|
|
185337
185608
|
export type MutationGoals_DeleteLatestUpdateArgs = {
|
|
185338
185609
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
185339
185610
|
};
|
|
@@ -187805,6 +188076,10 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
187805
188076
|
cloudId: Scalars['ID']['input'];
|
|
187806
188077
|
input: PsmOnboardTenantInput;
|
|
187807
188078
|
};
|
|
188079
|
+
export type MutationPsm_RecordUserActionArgs = {
|
|
188080
|
+
cloudId: Scalars['ID']['input'];
|
|
188081
|
+
input: PsmRecordUserActionInput;
|
|
188082
|
+
};
|
|
187808
188083
|
export type MutationPsm_RegisterDeviceArgs = {
|
|
187809
188084
|
input: PsmRegisterDeviceInput;
|
|
187810
188085
|
};
|
|
@@ -191055,6 +191330,7 @@ export type PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData
|
|
|
191055
191330
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData';
|
|
191056
191331
|
conversationChannelId: Scalars['String']['output'];
|
|
191057
191332
|
numberOfSuggestions: Scalars['Float']['output'];
|
|
191333
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
191058
191334
|
};
|
|
191059
191335
|
export type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
191060
191336
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
@@ -191362,6 +191638,10 @@ export type ProvisionInstallationLinkInput = {
|
|
|
191362
191638
|
context: Scalars['ID']['input'];
|
|
191363
191639
|
installationAri: Scalars['ID']['input'];
|
|
191364
191640
|
};
|
|
191641
|
+
export type PsmActionAttributeInput = {
|
|
191642
|
+
key: Scalars['String']['input'];
|
|
191643
|
+
value: Scalars['String']['input'];
|
|
191644
|
+
};
|
|
191365
191645
|
export type PsmActiveSensor = {
|
|
191366
191646
|
__typename?: 'PsmActiveSensor';
|
|
191367
191647
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -191767,7 +192047,8 @@ export declare enum PsmFilterKey {
|
|
|
191767
192047
|
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
191768
192048
|
Sensor = "SENSOR",
|
|
191769
192049
|
SensorCategory = "SENSOR_CATEGORY",
|
|
191770
|
-
Status = "STATUS"
|
|
192050
|
+
Status = "STATUS",
|
|
192051
|
+
TriggeredBy = "TRIGGERED_BY"
|
|
191771
192052
|
}
|
|
191772
192053
|
export type PsmFilterOption = {
|
|
191773
192054
|
__typename?: 'PsmFilterOption';
|
|
@@ -191776,6 +192057,7 @@ export type PsmFilterOption = {
|
|
|
191776
192057
|
};
|
|
191777
192058
|
export declare enum PsmFilterScreen {
|
|
191778
192059
|
Activities = "ACTIVITIES",
|
|
192060
|
+
AuditLog = "AUDIT_LOG",
|
|
191779
192061
|
DeviceList = "DEVICE_LIST",
|
|
191780
192062
|
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
191781
192063
|
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
@@ -191897,6 +192179,18 @@ export type PsmOnboardTenantStatusResult = {
|
|
|
191897
192179
|
spaceId: Scalars['ID']['output'];
|
|
191898
192180
|
status: PsmOnboardTenantStatus;
|
|
191899
192181
|
};
|
|
192182
|
+
export type PsmRecordUserActionInput = {
|
|
192183
|
+
accountId: Scalars['ID']['input'];
|
|
192184
|
+
action: PsmUserActionType;
|
|
192185
|
+
attributes?: InputMaybe<Array<PsmActionAttributeInput>>;
|
|
192186
|
+
conversationId: Scalars['ID']['input'];
|
|
192187
|
+
deviceId: Scalars['ID']['input'];
|
|
192188
|
+
};
|
|
192189
|
+
export type PsmRecordUserActionPayload = Payload & {
|
|
192190
|
+
__typename?: 'PsmRecordUserActionPayload';
|
|
192191
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192192
|
+
success: Scalars['Boolean']['output'];
|
|
192193
|
+
};
|
|
191900
192194
|
export type PsmRegisterDeviceInput = {
|
|
191901
192195
|
atlassianAccountId: Scalars['ID']['input'];
|
|
191902
192196
|
cloudId: Scalars['ID']['input'];
|
|
@@ -191993,6 +192287,7 @@ export declare enum PsmRemediationState {
|
|
|
191993
192287
|
Failed = "FAILED",
|
|
191994
192288
|
InProgress = "IN_PROGRESS",
|
|
191995
192289
|
Resolved = "RESOLVED",
|
|
192290
|
+
UserResolved = "USER_RESOLVED",
|
|
191996
192291
|
Withdrawn = "WITHDRAWN"
|
|
191997
192292
|
}
|
|
191998
192293
|
export declare enum PsmRemediationStatus {
|
|
@@ -192129,6 +192424,7 @@ export declare enum PsmSensorEventType {
|
|
|
192129
192424
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
192130
192425
|
Lagged = "LAGGED",
|
|
192131
192426
|
Shutdown = "SHUTDOWN",
|
|
192427
|
+
UserResolved = "USER_RESOLVED",
|
|
192132
192428
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
192133
192429
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
192134
192430
|
WithdrawStale = "WITHDRAW_STALE",
|
|
@@ -192250,6 +192546,9 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
|
|
|
192250
192546
|
sensorIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
192251
192547
|
success: Scalars['Boolean']['output'];
|
|
192252
192548
|
};
|
|
192549
|
+
export declare enum PsmUserActionType {
|
|
192550
|
+
Resolved = "RESOLVED"
|
|
192551
|
+
}
|
|
192253
192552
|
export type PublicLink = {
|
|
192254
192553
|
__typename?: 'PublicLink';
|
|
192255
192554
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -193146,6 +193445,7 @@ export type Query = {
|
|
|
193146
193445
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
193147
193446
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
193148
193447
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
193448
|
+
confluence_jiraMacroAuditStatus?: Maybe<ConfluenceJiraMacroAuditStatus>;
|
|
193149
193449
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
193150
193450
|
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
193151
193451
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
@@ -199388,6 +199688,9 @@ export type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
199388
199688
|
cloudId: Scalars['ID']['input'];
|
|
199389
199689
|
input: ConfluenceLabelWatchInput;
|
|
199390
199690
|
};
|
|
199691
|
+
export type QueryConfluence_JiraMacroAuditStatusArgs = {
|
|
199692
|
+
cloudId: Scalars['ID']['input'];
|
|
199693
|
+
};
|
|
199391
199694
|
export type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
199392
199695
|
cloudId: Scalars['ID']['input'];
|
|
199393
199696
|
};
|
|
@@ -220769,11 +221072,13 @@ export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
220769
221072
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220770
221073
|
displayName: Scalars['String']['output'];
|
|
220771
221074
|
entity: RadarEntityType;
|
|
221075
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220772
221076
|
filterOptions: RadarFilterOptions;
|
|
220773
221077
|
id: Scalars['ID']['output'];
|
|
220774
221078
|
isCustom: Scalars['Boolean']['output'];
|
|
220775
221079
|
isGroupable: Scalars['Boolean']['output'];
|
|
220776
221080
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221081
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220777
221082
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220778
221083
|
relativeId: Scalars['String']['output'];
|
|
220779
221084
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -220889,11 +221194,13 @@ export type RadarFieldDefinition = {
|
|
|
220889
221194
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220890
221195
|
displayName: Scalars['String']['output'];
|
|
220891
221196
|
entity: RadarEntityType;
|
|
221197
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220892
221198
|
filterOptions: RadarFilterOptions;
|
|
220893
221199
|
id: Scalars['ID']['output'];
|
|
220894
221200
|
isCustom: Scalars['Boolean']['output'];
|
|
220895
221201
|
isGroupable: Scalars['Boolean']['output'];
|
|
220896
221202
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221203
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220897
221204
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220898
221205
|
relativeId: Scalars['String']['output'];
|
|
220899
221206
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221190,11 +221497,13 @@ export type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221190
221497
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221191
221498
|
displayName: Scalars['String']['output'];
|
|
221192
221499
|
entity: RadarEntityType;
|
|
221500
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221193
221501
|
filterOptions: RadarFilterOptions;
|
|
221194
221502
|
id: Scalars['ID']['output'];
|
|
221195
221503
|
isCustom: Scalars['Boolean']['output'];
|
|
221196
221504
|
isGroupable: Scalars['Boolean']['output'];
|
|
221197
221505
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221506
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221198
221507
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221199
221508
|
relativeId: Scalars['String']['output'];
|
|
221200
221509
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221236,11 +221545,13 @@ export type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221236
221545
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221237
221546
|
displayName: Scalars['String']['output'];
|
|
221238
221547
|
entity: RadarEntityType;
|
|
221548
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221239
221549
|
filterOptions: RadarFilterOptions;
|
|
221240
221550
|
id: Scalars['ID']['output'];
|
|
221241
221551
|
isCustom: Scalars['Boolean']['output'];
|
|
221242
221552
|
isGroupable: Scalars['Boolean']['output'];
|
|
221243
221553
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221554
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221244
221555
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221245
221556
|
relativeId: Scalars['String']['output'];
|
|
221246
221557
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -224640,6 +224951,16 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
224640
224951
|
userId: Scalars['ID']['output'];
|
|
224641
224952
|
userName: Scalars['String']['output'];
|
|
224642
224953
|
};
|
|
224954
|
+
export type SearchResultJiraComment = {
|
|
224955
|
+
__typename?: 'SearchResultJiraComment';
|
|
224956
|
+
author?: Maybe<ThirdPartyUser>;
|
|
224957
|
+
authorId?: Maybe<Scalars['ID']['output']>;
|
|
224958
|
+
body: Scalars['String']['output'];
|
|
224959
|
+
created?: Maybe<Scalars['String']['output']>;
|
|
224960
|
+
id: Scalars['ID']['output'];
|
|
224961
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
224962
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
224963
|
+
};
|
|
224643
224964
|
export type SearchResultJiraDashboard = SearchResult & {
|
|
224644
224965
|
__typename?: 'SearchResultJiraDashboard';
|
|
224645
224966
|
description: Scalars['String']['output'];
|
|
@@ -224677,6 +224998,7 @@ export type SearchResultJiraFilterSocialSignalArgs = {
|
|
|
224677
224998
|
};
|
|
224678
224999
|
export type SearchResultJiraIssue = SearchResult & {
|
|
224679
225000
|
__typename?: 'SearchResultJiraIssue';
|
|
225001
|
+
comments?: Maybe<Array<SearchResultJiraComment>>;
|
|
224680
225002
|
description: Scalars['String']['output'];
|
|
224681
225003
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
224682
225004
|
id: Scalars['ID']['output'];
|
|
@@ -231546,7 +231868,8 @@ export declare enum StakeholderCommsSuggestionSuppressionReason {
|
|
|
231546
231868
|
EngineError = "ENGINE_ERROR",
|
|
231547
231869
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
231548
231870
|
NoPagesConfigured = "NO_PAGES_CONFIGURED",
|
|
231549
|
-
NoStakeholders = "NO_STAKEHOLDERS"
|
|
231871
|
+
NoStakeholders = "NO_STAKEHOLDERS",
|
|
231872
|
+
RecentDuplicateStatuspageUpdate = "RECENT_DUPLICATE_STATUSPAGE_UPDATE"
|
|
231550
231873
|
}
|
|
231551
231874
|
export type StakeholderCommsTransformerRecord = {
|
|
231552
231875
|
__typename?: 'StakeholderCommsTransformerRecord';
|
|
@@ -235214,6 +235537,7 @@ export type TownsquareGoalAccessEdge = {
|
|
|
235214
235537
|
cursor: Scalars['String']['output'];
|
|
235215
235538
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
235216
235539
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
235540
|
+
isOwnerOfConnectedGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
235217
235541
|
node?: Maybe<TownsquareAccessPrincipal>;
|
|
235218
235542
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
235219
235543
|
role?: Maybe<TownsquareGoalAccessRole>;
|
|
@@ -235865,6 +236189,15 @@ export type TownsquareGoalsCreateDecisionPayload = {
|
|
|
235865
236189
|
errors?: Maybe<Array<MutationError>>;
|
|
235866
236190
|
success: Scalars['Boolean']['output'];
|
|
235867
236191
|
};
|
|
236192
|
+
export type TownsquareGoalsCreateDraftUpdateInput = {
|
|
236193
|
+
values: TownsquareGoalsCreateUpdateInput;
|
|
236194
|
+
};
|
|
236195
|
+
export type TownsquareGoalsCreateDraftUpdatePayload = {
|
|
236196
|
+
__typename?: 'TownsquareGoalsCreateDraftUpdatePayload';
|
|
236197
|
+
draftUpdate?: Maybe<TownsquareGoalDraftUpdate>;
|
|
236198
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236199
|
+
success: Scalars['Boolean']['output'];
|
|
236200
|
+
};
|
|
235868
236201
|
export type TownsquareGoalsCreateGoalTypePairInput = {
|
|
235869
236202
|
goalType: TownsquareCreateGoalTypeInputV2;
|
|
235870
236203
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
@@ -235955,6 +236288,15 @@ export type TownsquareGoalsDeleteDecisionPayload = {
|
|
|
235955
236288
|
errors?: Maybe<Array<MutationError>>;
|
|
235956
236289
|
success: Scalars['Boolean']['output'];
|
|
235957
236290
|
};
|
|
236291
|
+
export type TownsquareGoalsDeleteDraftUpdateInput = {
|
|
236292
|
+
draftId: Scalars['ID']['input'];
|
|
236293
|
+
};
|
|
236294
|
+
export type TownsquareGoalsDeleteDraftUpdatePayload = {
|
|
236295
|
+
__typename?: 'TownsquareGoalsDeleteDraftUpdatePayload';
|
|
236296
|
+
deletedDraftUpdateId?: Maybe<Scalars['ID']['output']>;
|
|
236297
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236298
|
+
success: Scalars['Boolean']['output'];
|
|
236299
|
+
};
|
|
235958
236300
|
export type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
235959
236301
|
updateId: Scalars['ID']['input'];
|
|
235960
236302
|
};
|
|
@@ -239191,6 +239533,12 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239191
239533
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239192
239534
|
id: Scalars['ID']['output'];
|
|
239193
239535
|
};
|
|
239536
|
+
export type TrelloAgent = TrelloRecommendationOwner & {
|
|
239537
|
+
__typename?: 'TrelloAgent';
|
|
239538
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
239539
|
+
id: Scalars['ID']['output'];
|
|
239540
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
239541
|
+
};
|
|
239194
239542
|
export type TrelloAgentMessage = {
|
|
239195
239543
|
__typename?: 'TrelloAgentMessage';
|
|
239196
239544
|
content: Scalars['String']['output'];
|
|
@@ -239736,6 +240084,7 @@ export type TrelloAuthorizedApplicationSummary = {
|
|
|
239736
240084
|
};
|
|
239737
240085
|
export type TrelloAuthorizedOAuth2ClientGrant = {
|
|
239738
240086
|
__typename?: 'TrelloAuthorizedOAuth2ClientGrant';
|
|
240087
|
+
isPowerUp: Scalars['Boolean']['output'];
|
|
239739
240088
|
oauth2ClientId: Scalars['ID']['output'];
|
|
239740
240089
|
plugin?: Maybe<TrelloPowerUp>;
|
|
239741
240090
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -239838,6 +240187,7 @@ export type TrelloBaseCard = {
|
|
|
239838
240187
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
239839
240188
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
239840
240189
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240190
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
239841
240191
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
239842
240192
|
role?: Maybe<TrelloCardRole>;
|
|
239843
240193
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -239873,6 +240223,10 @@ export type TrelloBaseCardPlannerEventsArgs = {
|
|
|
239873
240223
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
239874
240224
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
239875
240225
|
};
|
|
240226
|
+
export type TrelloBaseCardRecommendationsArgs = {
|
|
240227
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240228
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240229
|
+
};
|
|
239876
240230
|
export type TrelloBaseCardDeleted = {
|
|
239877
240231
|
id: Scalars['ID']['output'];
|
|
239878
240232
|
};
|
|
@@ -240500,6 +240854,7 @@ export type TrelloCard = Node & TrelloBaseCard & {
|
|
|
240500
240854
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
240501
240855
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240502
240856
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
240857
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
240503
240858
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
240504
240859
|
role?: Maybe<TrelloCardRole>;
|
|
240505
240860
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -240556,6 +240911,10 @@ export type TrelloCardPowerUpDataArgs = {
|
|
|
240556
240911
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
240557
240912
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240558
240913
|
};
|
|
240914
|
+
export type TrelloCardRecommendationsArgs = {
|
|
240915
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240917
|
+
};
|
|
240559
240918
|
export type TrelloCardStickersArgs = {
|
|
240560
240919
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240561
240920
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -242218,6 +242577,7 @@ export type TrelloInboxCard = TrelloBaseCard & {
|
|
|
242218
242577
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
242219
242578
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
242220
242579
|
position?: Maybe<Scalars['Float']['output']>;
|
|
242580
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
242221
242581
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
242222
242582
|
role?: Maybe<TrelloCardRole>;
|
|
242223
242583
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -242253,6 +242613,10 @@ export type TrelloInboxCardPlannerEventsArgs = {
|
|
|
242253
242613
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
242254
242614
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242255
242615
|
};
|
|
242616
|
+
export type TrelloInboxCardRecommendationsArgs = {
|
|
242617
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
242618
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242619
|
+
};
|
|
242256
242620
|
export type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
242257
242621
|
__typename?: 'TrelloInboxCardDeleted';
|
|
242258
242622
|
id: Scalars['ID']['output'];
|
|
@@ -244987,6 +245351,36 @@ export type TrelloReactionLimits = {
|
|
|
244987
245351
|
perAction?: Maybe<TrelloLimitProps>;
|
|
244988
245352
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
244989
245353
|
};
|
|
245354
|
+
export type TrelloRecommendation = {
|
|
245355
|
+
__typename?: 'TrelloRecommendation';
|
|
245356
|
+
confidenceScore?: Maybe<Scalars['Int']['output']>;
|
|
245357
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
245358
|
+
id: Scalars['ID']['output'];
|
|
245359
|
+
recommendedAction?: Maybe<TrelloRecommendedAction>;
|
|
245360
|
+
};
|
|
245361
|
+
export type TrelloRecommendationConnection = {
|
|
245362
|
+
__typename?: 'TrelloRecommendationConnection';
|
|
245363
|
+
edges?: Maybe<Array<TrelloRecommendationEdge>>;
|
|
245364
|
+
nodes?: Maybe<Array<TrelloRecommendation>>;
|
|
245365
|
+
pageInfo: PageInfo;
|
|
245366
|
+
};
|
|
245367
|
+
export type TrelloRecommendationEdge = {
|
|
245368
|
+
__typename?: 'TrelloRecommendationEdge';
|
|
245369
|
+
cursor: Scalars['String']['output'];
|
|
245370
|
+
node: TrelloRecommendation;
|
|
245371
|
+
};
|
|
245372
|
+
export type TrelloRecommendationOwner = {
|
|
245373
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
245374
|
+
id: Scalars['ID']['output'];
|
|
245375
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
245376
|
+
};
|
|
245377
|
+
export type TrelloRecommendedAction = {
|
|
245378
|
+
__typename?: 'TrelloRecommendedAction';
|
|
245379
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
245380
|
+
id: Scalars['ID']['output'];
|
|
245381
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
245382
|
+
owner?: Maybe<TrelloRecommendationOwner>;
|
|
245383
|
+
};
|
|
244990
245384
|
export type TrelloRefreshManifestInput = {
|
|
244991
245385
|
cardId: Scalars['ID']['input'];
|
|
244992
245386
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -250287,6 +250681,10 @@ export type WebSection = {
|
|
|
250287
250681
|
label?: Maybe<Scalars['String']['output']>;
|
|
250288
250682
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
250289
250683
|
};
|
|
250684
|
+
export type WebTriggerSecretKeyConfigInput = {
|
|
250685
|
+
key: Scalars['String']['input'];
|
|
250686
|
+
noExpiry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
250687
|
+
};
|
|
250290
250688
|
export type WebTriggerUrl = Node & {
|
|
250291
250689
|
__typename?: 'WebTriggerUrl';
|
|
250292
250690
|
appId: Scalars['ID']['output'];
|
|
@@ -250303,8 +250701,7 @@ export type WebTriggerUrlInput = {
|
|
|
250303
250701
|
appId: Scalars['ID']['input'];
|
|
250304
250702
|
contextId: Scalars['ID']['input'];
|
|
250305
250703
|
envId: Scalars['ID']['input'];
|
|
250306
|
-
|
|
250307
|
-
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
250704
|
+
secretKeyConfig?: InputMaybe<WebTriggerSecretKeyConfigInput>;
|
|
250308
250705
|
triggerKey: Scalars['String']['input'];
|
|
250309
250706
|
};
|
|
250310
250707
|
export type WhiteboardFeatures = {
|