@forge/cli-shared 9.5.0-next.9 → 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 +33 -0
- package/out/graphql/graphql-types.d.ts +444 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +99 -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 +2 -2
|
@@ -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>;
|
|
@@ -8593,6 +8635,17 @@ export type AgentWorkspaceCapacityTeamEntry = {
|
|
|
8593
8635
|
capacity: Scalars['Int']['input'];
|
|
8594
8636
|
teamAri: Scalars['ID']['input'];
|
|
8595
8637
|
};
|
|
8638
|
+
export type AgentWorkspaceClearRoutingModeAndTableInput = {
|
|
8639
|
+
cloudId: Scalars['ID']['input'];
|
|
8640
|
+
projectKey: Scalars['String']['input'];
|
|
8641
|
+
};
|
|
8642
|
+
export type AgentWorkspaceClearRoutingModeAndTablePayload = {
|
|
8643
|
+
__typename?: 'AgentWorkspaceClearRoutingModeAndTablePayload';
|
|
8644
|
+
clearedRoutingMode?: Maybe<AgentWorkspaceSmartRoutingMode>;
|
|
8645
|
+
rowsDeleted: Scalars['Int']['output'];
|
|
8646
|
+
smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
|
|
8647
|
+
success: Scalars['Boolean']['output'];
|
|
8648
|
+
};
|
|
8596
8649
|
export declare enum AgentWorkspaceConfigurableRoutingInput {
|
|
8597
8650
|
Availability = "AVAILABILITY",
|
|
8598
8651
|
Capacity = "CAPACITY",
|
|
@@ -11708,6 +11761,7 @@ export type AppLogsWithMetaData = {
|
|
|
11708
11761
|
message?: Maybe<Scalars['String']['output']>;
|
|
11709
11762
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
11710
11763
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
11764
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
11711
11765
|
osName?: Maybe<Scalars['String']['output']>;
|
|
11712
11766
|
other?: Maybe<Scalars['String']['output']>;
|
|
11713
11767
|
p?: Maybe<Scalars['String']['output']>;
|
|
@@ -11717,6 +11771,7 @@ export type AppLogsWithMetaData = {
|
|
|
11717
11771
|
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
11718
11772
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
11719
11773
|
ts: Scalars['String']['output'];
|
|
11774
|
+
unitId?: Maybe<Scalars['String']['output']>;
|
|
11720
11775
|
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11721
11776
|
};
|
|
11722
11777
|
export type AppLogsWithMetaDataResponse = {
|
|
@@ -22310,6 +22365,21 @@ export type CommerceExpAndRuleCondition = {
|
|
|
22310
22365
|
eligibleConditions?: Maybe<Array<Maybe<CommerceExpEligibleCondition>>>;
|
|
22311
22366
|
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
22312
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
|
+
}
|
|
22313
22383
|
export type CommerceExpApplicationReason = {
|
|
22314
22384
|
__typename?: 'CommerceExpApplicationReason';
|
|
22315
22385
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -24347,6 +24417,7 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
24347
24417
|
}
|
|
24348
24418
|
export type CommerceExpEntitlementProvisioning = {
|
|
24349
24419
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
24420
|
+
appInstallationData?: Maybe<CommerceExpAppInstallationData>;
|
|
24350
24421
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
24351
24422
|
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
24352
24423
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -25705,6 +25776,7 @@ export type CommerceExpPricingPlanItem = {
|
|
|
25705
25776
|
prorationBehaviour?: Maybe<CommerceExpProrationBehaviour>;
|
|
25706
25777
|
tiers?: Maybe<Array<Maybe<CommerceExpPricingPlanItemTier>>>;
|
|
25707
25778
|
tiersMode?: Maybe<CommerceExpPricingPlanItemTiersMode>;
|
|
25779
|
+
transformQuantity?: Maybe<CommerceExpPricingPlanItemTransformQuantity>;
|
|
25708
25780
|
usageUpdateCadence?: Maybe<CommerceExpPricingPlanItemUsageUpdateCadence>;
|
|
25709
25781
|
};
|
|
25710
25782
|
export declare enum CommerceExpPricingPlanItemChargeType {
|
|
@@ -25729,6 +25801,10 @@ export declare enum CommerceExpPricingPlanItemTiersMode {
|
|
|
25729
25801
|
Graduated = "GRADUATED",
|
|
25730
25802
|
Volume = "VOLUME"
|
|
25731
25803
|
}
|
|
25804
|
+
export type CommerceExpPricingPlanItemTransformQuantity = {
|
|
25805
|
+
__typename?: 'CommerceExpPricingPlanItemTransformQuantity';
|
|
25806
|
+
divideBy?: Maybe<Scalars['Int']['output']>;
|
|
25807
|
+
};
|
|
25732
25808
|
export type CommerceExpPricingPlanItemUsageUpdateCadence = {
|
|
25733
25809
|
__typename?: 'CommerceExpPricingPlanItemUsageUpdateCadence';
|
|
25734
25810
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
@@ -26604,8 +26680,17 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26604
26680
|
customerContactEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
26605
26681
|
isPrimaryContactForSomeEntitlement: Scalars['Boolean']['output'];
|
|
26606
26682
|
roles?: Maybe<Array<Maybe<CommerceExpUserRole>>>;
|
|
26683
|
+
user2?: Maybe<CommerceExpUserInfo>;
|
|
26607
26684
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
26608
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
|
+
};
|
|
26609
26694
|
export type CommerceExpUserPermission = {
|
|
26610
26695
|
__typename?: 'CommerceExpUserPermission';
|
|
26611
26696
|
permissionId: Scalars['String']['output'];
|
|
@@ -33816,16 +33901,25 @@ export type ConfluenceCreateSmartFolderPayload = Payload & {
|
|
|
33816
33901
|
success: Scalars['Boolean']['output'];
|
|
33817
33902
|
};
|
|
33818
33903
|
export type ConfluenceCreateSpaceContent = {
|
|
33904
|
+
embed?: InputMaybe<ConfluenceCreateSpaceContentEmbed>;
|
|
33819
33905
|
parent?: InputMaybe<ConfluenceCreateSpaceContentParent>;
|
|
33820
33906
|
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
33821
33907
|
title: Scalars['String']['input'];
|
|
33822
33908
|
type: ConfluenceCreateSpaceContentType;
|
|
33823
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
|
+
};
|
|
33824
33917
|
export type ConfluenceCreateSpaceContentParent = {
|
|
33825
33918
|
title: Scalars['String']['input'];
|
|
33826
33919
|
type: ConfluenceCreateSpaceContentType;
|
|
33827
33920
|
};
|
|
33828
33921
|
export declare enum ConfluenceCreateSpaceContentType {
|
|
33922
|
+
Embed = "EMBED",
|
|
33829
33923
|
Folder = "FOLDER",
|
|
33830
33924
|
Page = "PAGE"
|
|
33831
33925
|
}
|
|
@@ -34426,6 +34520,11 @@ export type ConfluenceExpertReputation = {
|
|
|
34426
34520
|
score?: Maybe<Scalars['Int']['output']>;
|
|
34427
34521
|
totalAnswers?: Maybe<Scalars['Int']['output']>;
|
|
34428
34522
|
};
|
|
34523
|
+
export type ConfluenceExportJiraMacroAuditPayload = Payload & {
|
|
34524
|
+
__typename?: 'ConfluenceExportJiraMacroAuditPayload';
|
|
34525
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34526
|
+
success: Scalars['Boolean']['output'];
|
|
34527
|
+
};
|
|
34429
34528
|
export type ConfluenceExtensionEgressDeclaration = {
|
|
34430
34529
|
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
34431
34530
|
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -34963,6 +35062,7 @@ export type ConfluenceJiraCalendarDuration = {
|
|
|
34963
35062
|
export type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
34964
35063
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
34965
35064
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
35065
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
34966
35066
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
34967
35067
|
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
34968
35068
|
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
@@ -34982,6 +35082,25 @@ export type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
|
34982
35082
|
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34983
35083
|
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
34984
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
|
+
};
|
|
34985
35104
|
export type ConfluenceJiraProjectLink = {
|
|
34986
35105
|
__typename?: 'ConfluenceJiraProjectLink';
|
|
34987
35106
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -41897,6 +42016,17 @@ export type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
41897
42016
|
node?: Maybe<CplsCustomContributionTarget>;
|
|
41898
42017
|
success: Scalars['Boolean']['output'];
|
|
41899
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
|
+
};
|
|
41900
42030
|
export type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
41901
42031
|
cloudId: Scalars['ID']['input'];
|
|
41902
42032
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -42085,6 +42215,7 @@ export type CplsFilters = {
|
|
|
42085
42215
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42086
42216
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42087
42217
|
id: Scalars['ID']['output'];
|
|
42218
|
+
includeCurrentUserAsContributor: Scalars['Boolean']['output'];
|
|
42088
42219
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
42089
42220
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
42090
42221
|
searchTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -42095,6 +42226,7 @@ export type CplsFiltersInput = {
|
|
|
42095
42226
|
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42096
42227
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42097
42228
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42229
|
+
includeCurrentUserAsContributor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42098
42230
|
jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42099
42231
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42100
42232
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -50329,6 +50461,14 @@ export type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
|
50329
50461
|
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
50330
50462
|
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
50331
50463
|
};
|
|
50464
|
+
export declare enum DlpConfidenceBand {
|
|
50465
|
+
High = "HIGH",
|
|
50466
|
+
Low = "LOW",
|
|
50467
|
+
Medium = "MEDIUM"
|
|
50468
|
+
}
|
|
50469
|
+
export type DlpConfidenceBandInput = {
|
|
50470
|
+
range: DlpConfidenceBand;
|
|
50471
|
+
};
|
|
50332
50472
|
export type DlpCreateFalsePositivesInput = {
|
|
50333
50473
|
falsePositives: Array<DlpFalsePositiveInput>;
|
|
50334
50474
|
orgId: Scalars['String']['input'];
|
|
@@ -50373,6 +50513,13 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
50373
50513
|
scope?: Maybe<DlpScope>;
|
|
50374
50514
|
status?: Maybe<DlpMappingStatus>;
|
|
50375
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
|
+
};
|
|
50376
50523
|
export type DlpFalsePositive = {
|
|
50377
50524
|
__typename?: 'DlpFalsePositive';
|
|
50378
50525
|
actorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50461,7 +50608,9 @@ export type DlpFindingOccurrence = {
|
|
|
50461
50608
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
50462
50609
|
};
|
|
50463
50610
|
export type DlpFindingsFiltersInput = {
|
|
50611
|
+
confidenceBands?: InputMaybe<Array<DlpConfidenceBandInput>>;
|
|
50464
50612
|
detectorIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50613
|
+
detectors?: InputMaybe<Array<DlpDetectorInput>>;
|
|
50465
50614
|
endEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50466
50615
|
startEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50467
50616
|
};
|
|
@@ -51805,6 +51954,7 @@ export type ExternalCalendarEvent = Node & {
|
|
|
51805
51954
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
51806
51955
|
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
51807
51956
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
51957
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51808
51958
|
container?: Maybe<ExternalEntity>;
|
|
51809
51959
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51810
51960
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51865,6 +52015,7 @@ export type ExternalCampaign = Node & {
|
|
|
51865
52015
|
__typename?: 'ExternalCampaign';
|
|
51866
52016
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51867
52017
|
campaignType?: Maybe<Scalars['String']['output']>;
|
|
52018
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51868
52019
|
container?: Maybe<ExternalEntity>;
|
|
51869
52020
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51870
52021
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51912,6 +52063,7 @@ export type ExternalCase = Node & {
|
|
|
51912
52063
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
51913
52064
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
51914
52065
|
closedAt?: Maybe<Scalars['String']['output']>;
|
|
52066
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51915
52067
|
container?: Maybe<ExternalEntity>;
|
|
51916
52068
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51917
52069
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -51981,6 +52133,7 @@ export type ExternalChapter = {
|
|
|
51981
52133
|
export type ExternalClaudeSession = Node & {
|
|
51982
52134
|
__typename?: 'ExternalClaudeSession';
|
|
51983
52135
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52136
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
51984
52137
|
container?: Maybe<ExternalEntity>;
|
|
51985
52138
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
51986
52139
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52011,6 +52164,7 @@ export type ExternalClaudeSession = Node & {
|
|
|
52011
52164
|
export type ExternalCodexSession = Node & {
|
|
52012
52165
|
__typename?: 'ExternalCodexSession';
|
|
52013
52166
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52167
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52014
52168
|
container?: Maybe<ExternalEntity>;
|
|
52015
52169
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52016
52170
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52058,6 +52212,7 @@ export type ExternalCollaboratorsSortType = {
|
|
|
52058
52212
|
export type ExternalComment = Node & {
|
|
52059
52213
|
__typename?: 'ExternalComment';
|
|
52060
52214
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52215
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52061
52216
|
container?: Maybe<ExternalEntity>;
|
|
52062
52217
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52063
52218
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52109,6 +52264,13 @@ export type ExternalCommit = Node & {
|
|
|
52109
52264
|
export declare enum ExternalCommitFlags {
|
|
52110
52265
|
MergeCommit = "MERGE_COMMIT"
|
|
52111
52266
|
}
|
|
52267
|
+
export declare enum ExternalConnectorType {
|
|
52268
|
+
Backfill = "BACKFILL",
|
|
52269
|
+
Full = "FULL",
|
|
52270
|
+
Lite = "LITE",
|
|
52271
|
+
SmartLink = "SMART_LINK",
|
|
52272
|
+
Unknown = "UNKNOWN"
|
|
52273
|
+
}
|
|
52112
52274
|
export declare enum ExternalContentRepresentation {
|
|
52113
52275
|
Base64 = "BASE64",
|
|
52114
52276
|
Plaintext = "PLAINTEXT"
|
|
@@ -52126,6 +52288,7 @@ export type ExternalContributor = {
|
|
|
52126
52288
|
export type ExternalConversation = Node & {
|
|
52127
52289
|
__typename?: 'ExternalConversation';
|
|
52128
52290
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52291
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52129
52292
|
container?: Maybe<ExternalEntity>;
|
|
52130
52293
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52131
52294
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52181,6 +52344,7 @@ export type ExternalCurrency = {
|
|
|
52181
52344
|
export type ExternalCursorSession = Node & {
|
|
52182
52345
|
__typename?: 'ExternalCursorSession';
|
|
52183
52346
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52347
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52184
52348
|
container?: Maybe<ExternalEntity>;
|
|
52185
52349
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52186
52350
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52215,6 +52379,7 @@ export type ExternalCustomerContact = Node & {
|
|
|
52215
52379
|
buyerAttributes?: Maybe<Scalars['String']['output']>;
|
|
52216
52380
|
canAllowPortalSelfReg?: Maybe<Scalars['Boolean']['output']>;
|
|
52217
52381
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52382
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52218
52383
|
contactSource?: Maybe<Scalars['String']['output']>;
|
|
52219
52384
|
contactUser?: Maybe<ExternalUser>;
|
|
52220
52385
|
container?: Maybe<ExternalEntity>;
|
|
@@ -52274,6 +52439,7 @@ export type ExternalCustomerOrg = Node & {
|
|
|
52274
52439
|
billingAddress?: Maybe<ExternalAddress>;
|
|
52275
52440
|
channelProgramLevelName?: Maybe<Scalars['String']['output']>;
|
|
52276
52441
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
52442
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52277
52443
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52278
52444
|
container?: Maybe<ExternalEntity>;
|
|
52279
52445
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52333,6 +52499,7 @@ export type ExternalCustomerOrgCategory = Node & {
|
|
|
52333
52499
|
__typename?: 'ExternalCustomerOrgCategory';
|
|
52334
52500
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52335
52501
|
categoryType?: Maybe<Scalars['String']['output']>;
|
|
52502
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52336
52503
|
container?: Maybe<ExternalEntity>;
|
|
52337
52504
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52338
52505
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52378,6 +52545,7 @@ export type ExternalCustomerOrgLifeTimeValue = {
|
|
|
52378
52545
|
export type ExternalDashboard = Node & {
|
|
52379
52546
|
__typename?: 'ExternalDashboard';
|
|
52380
52547
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52548
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52381
52549
|
container?: Maybe<ExternalEntity>;
|
|
52382
52550
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52383
52551
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52413,6 +52581,7 @@ export type ExternalDataTable = Node & {
|
|
|
52413
52581
|
__typename?: 'ExternalDataTable';
|
|
52414
52582
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52415
52583
|
columns?: Maybe<Array<Maybe<ExternalDataTableColumn>>>;
|
|
52584
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52416
52585
|
container?: Maybe<ExternalEntity>;
|
|
52417
52586
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52418
52587
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52445,6 +52614,7 @@ export type ExternalDeal = Node & {
|
|
|
52445
52614
|
__typename?: 'ExternalDeal';
|
|
52446
52615
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
52447
52616
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52617
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52448
52618
|
contact?: Maybe<ExternalUser>;
|
|
52449
52619
|
container?: Maybe<ExternalEntity>;
|
|
52450
52620
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52569,6 +52739,7 @@ export type ExternalDocument = Node & {
|
|
|
52569
52739
|
channel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
52570
52740
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
52571
52741
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
52742
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52572
52743
|
container?: Maybe<ExternalEntity>;
|
|
52573
52744
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52574
52745
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -52733,6 +52904,7 @@ export declare enum ExternalEventType {
|
|
|
52733
52904
|
export type ExternalExperimental = Node & {
|
|
52734
52905
|
__typename?: 'ExternalExperimental';
|
|
52735
52906
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52907
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52736
52908
|
container?: Maybe<ExternalEntity>;
|
|
52737
52909
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52738
52910
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52836,6 +53008,7 @@ export type ExternalLead = Node & {
|
|
|
52836
53008
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52837
53009
|
company?: Maybe<Scalars['String']['output']>;
|
|
52838
53010
|
companyDunsNumber?: Maybe<Scalars['String']['output']>;
|
|
53011
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52839
53012
|
container?: Maybe<ExternalEntity>;
|
|
52840
53013
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52841
53014
|
convertedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52900,6 +53073,7 @@ export type ExternalMessage = Node & {
|
|
|
52900
53073
|
__typename?: 'ExternalMessage';
|
|
52901
53074
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
52902
53075
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
53076
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52903
53077
|
container?: Maybe<ExternalEntity>;
|
|
52904
53078
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52905
53079
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52930,9 +53104,19 @@ export type ExternalMessageLink = {
|
|
|
52930
53104
|
__typename?: 'ExternalMessageLink';
|
|
52931
53105
|
url?: Maybe<Scalars['String']['output']>;
|
|
52932
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
|
+
};
|
|
52933
53116
|
export type ExternalOrganisation = Node & {
|
|
52934
53117
|
__typename?: 'ExternalOrganisation';
|
|
52935
53118
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53119
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52936
53120
|
container?: Maybe<ExternalEntity>;
|
|
52937
53121
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52938
53122
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -52977,6 +53161,7 @@ export type ExternalPipeline = {
|
|
|
52977
53161
|
export type ExternalPosition = Node & {
|
|
52978
53162
|
__typename?: 'ExternalPosition';
|
|
52979
53163
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53164
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
52980
53165
|
container?: Maybe<ExternalEntity>;
|
|
52981
53166
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
52982
53167
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53005,6 +53190,7 @@ export type ExternalProject = Node & {
|
|
|
53005
53190
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53006
53191
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
53007
53192
|
businessCase?: Maybe<Scalars['String']['output']>;
|
|
53193
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53008
53194
|
container?: Maybe<ExternalEntity>;
|
|
53009
53195
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53010
53196
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53207,6 +53393,7 @@ export type ExternalServicenowBusinessApp = Node & {
|
|
|
53207
53393
|
businessProcess?: Maybe<Scalars['String']['output']>;
|
|
53208
53394
|
businessUnit?: Maybe<Scalars['String']['output']>;
|
|
53209
53395
|
company?: Maybe<Scalars['String']['output']>;
|
|
53396
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53210
53397
|
container?: Maybe<ExternalEntity>;
|
|
53211
53398
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53212
53399
|
costCenter?: Maybe<Scalars['String']['output']>;
|
|
@@ -53253,6 +53440,7 @@ export type ExternalSoftwareService = Node & {
|
|
|
53253
53440
|
__typename?: 'ExternalSoftwareService';
|
|
53254
53441
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53255
53442
|
associationsMetadata?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationsMetadataTuple>>>;
|
|
53443
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53256
53444
|
container?: Maybe<ExternalEntity>;
|
|
53257
53445
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53258
53446
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53291,6 +53479,7 @@ export type ExternalSoftwareServiceAssociationsMetadataTuple = {
|
|
|
53291
53479
|
export type ExternalSpace = Node & {
|
|
53292
53480
|
__typename?: 'ExternalSpace';
|
|
53293
53481
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53482
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53294
53483
|
container?: Maybe<ExternalEntity>;
|
|
53295
53484
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53296
53485
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53325,9 +53514,15 @@ export declare enum ExternalSpaceSubtype {
|
|
|
53325
53514
|
Software = "SOFTWARE",
|
|
53326
53515
|
Space = "SPACE"
|
|
53327
53516
|
}
|
|
53517
|
+
export type ExternalSummaryHighlight = {
|
|
53518
|
+
__typename?: 'ExternalSummaryHighlight';
|
|
53519
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
53520
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
53521
|
+
};
|
|
53328
53522
|
export type ExternalTeam = Node & {
|
|
53329
53523
|
__typename?: 'ExternalTeam';
|
|
53330
53524
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53525
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53331
53526
|
container?: Maybe<ExternalEntity>;
|
|
53332
53527
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53333
53528
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53352,6 +53547,7 @@ export type ExternalTeam = Node & {
|
|
|
53352
53547
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
53353
53548
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
53354
53549
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53550
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53355
53551
|
container?: Maybe<ExternalEntity>;
|
|
53356
53552
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53357
53553
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53375,6 +53571,7 @@ export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
|
53375
53571
|
export type ExternalTest = Node & {
|
|
53376
53572
|
__typename?: 'ExternalTest';
|
|
53377
53573
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53574
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53378
53575
|
container?: Maybe<ExternalEntity>;
|
|
53379
53576
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53380
53577
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53402,6 +53599,7 @@ export type ExternalTest = Node & {
|
|
|
53402
53599
|
export type ExternalTestExecution = Node & {
|
|
53403
53600
|
__typename?: 'ExternalTestExecution';
|
|
53404
53601
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53602
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53405
53603
|
container?: Maybe<ExternalEntity>;
|
|
53406
53604
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53407
53605
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53434,6 +53632,7 @@ export type ExternalTestInfo = {
|
|
|
53434
53632
|
export type ExternalTestPlan = Node & {
|
|
53435
53633
|
__typename?: 'ExternalTestPlan';
|
|
53436
53634
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53635
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53437
53636
|
container?: Maybe<ExternalEntity>;
|
|
53438
53637
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53439
53638
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53457,6 +53656,7 @@ export type ExternalTestRun = Node & {
|
|
|
53457
53656
|
__typename?: 'ExternalTestRun';
|
|
53458
53657
|
assignee?: Maybe<ExternalUser>;
|
|
53459
53658
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53659
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53460
53660
|
container?: Maybe<ExternalEntity>;
|
|
53461
53661
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53462
53662
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53484,6 +53684,7 @@ export type ExternalTestRun = Node & {
|
|
|
53484
53684
|
export type ExternalTestStatus = Node & {
|
|
53485
53685
|
__typename?: 'ExternalTestStatus';
|
|
53486
53686
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53687
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53487
53688
|
container?: Maybe<ExternalEntity>;
|
|
53488
53689
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53489
53690
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53556,6 +53757,7 @@ export type ExternalVideo = Node & {
|
|
|
53556
53757
|
callOutcome?: Maybe<ExternalCallOutcome>;
|
|
53557
53758
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
53558
53759
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
53760
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53559
53761
|
container?: Maybe<ExternalEntity>;
|
|
53560
53762
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53561
53763
|
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
@@ -53565,16 +53767,23 @@ export type ExternalVideo = Node & {
|
|
|
53565
53767
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53566
53768
|
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
53567
53769
|
embedUrl?: Maybe<Scalars['String']['output']>;
|
|
53770
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
53568
53771
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
53569
53772
|
height?: Maybe<Scalars['Long']['output']>;
|
|
53570
53773
|
id: Scalars['ID']['output'];
|
|
53571
53774
|
keyPoints?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53572
53775
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
53573
53776
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
53777
|
+
metadataContentLinks?: Maybe<Array<Maybe<ExternalMetadataContentLink>>>;
|
|
53778
|
+
metadataContentText?: Maybe<Array<Maybe<ExternalMetadataContentTextEntry>>>;
|
|
53779
|
+
metadataContentUrl?: Maybe<Scalars['String']['output']>;
|
|
53574
53780
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53575
53781
|
parent?: Maybe<ExternalEntity>;
|
|
53576
53782
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
53577
53783
|
provider?: Maybe<ExternalProvider>;
|
|
53784
|
+
summaryHighlights?: Maybe<Array<Maybe<ExternalSummaryHighlight>>>;
|
|
53785
|
+
summaryNextSteps?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53786
|
+
summaryOverview?: Maybe<Scalars['String']['output']>;
|
|
53578
53787
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
53579
53788
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
53580
53789
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -53647,6 +53856,7 @@ export type ExternalWorkItem = Node & {
|
|
|
53647
53856
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53648
53857
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
53649
53858
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
53859
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53650
53860
|
container?: Maybe<ExternalEntity>;
|
|
53651
53861
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53652
53862
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -53716,6 +53926,7 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
53716
53926
|
export type ExternalWorker = Node & {
|
|
53717
53927
|
__typename?: 'ExternalWorker';
|
|
53718
53928
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
53929
|
+
connectorType?: Maybe<ExternalConnectorType>;
|
|
53719
53930
|
container?: Maybe<ExternalEntity>;
|
|
53720
53931
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
53721
53932
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -57786,6 +57997,12 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
|
57786
57997
|
supportedAuthTypes: Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
57787
57998
|
templateId: Scalars['String']['output'];
|
|
57788
57999
|
};
|
|
58000
|
+
export type GraphIntegrationMcpAdminManagementCustomOauthConfigInput = {
|
|
58001
|
+
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
58002
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
58003
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
58004
|
+
values?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
58005
|
+
};
|
|
57789
58006
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
57790
58007
|
key: Scalars['String']['input'];
|
|
57791
58008
|
value: Scalars['String']['input'];
|
|
@@ -57809,6 +58026,7 @@ export declare enum GraphIntegrationMcpAdminManagementMcpServerAccessMode {
|
|
|
57809
58026
|
}
|
|
57810
58027
|
export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
|
|
57811
58028
|
apiToken?: InputMaybe<GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput>;
|
|
58029
|
+
customOauth?: InputMaybe<GraphIntegrationMcpAdminManagementCustomOauthConfigInput>;
|
|
57812
58030
|
noAuth?: InputMaybe<GraphIntegrationMcpAdminManagementNoAuthConfigInput>;
|
|
57813
58031
|
};
|
|
57814
58032
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
|
|
@@ -57918,12 +58136,14 @@ export type GraphIntegrationMcpAdminManagementNoAuthConfigInput = {
|
|
|
57918
58136
|
authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
|
|
57919
58137
|
};
|
|
57920
58138
|
export type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
58139
|
+
accessMode?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAccessMode>;
|
|
57921
58140
|
allowedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57922
58141
|
allowedPrincipalIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
57923
58142
|
authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
|
|
57924
58143
|
authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
57925
58144
|
autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57926
58145
|
cloudId: Scalars['ID']['input'];
|
|
58146
|
+
deniedPrincipalAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
57927
58147
|
displayName: Scalars['String']['input'];
|
|
57928
58148
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
57929
58149
|
extraInputs?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
@@ -121863,7 +122083,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121863
122083
|
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
121864
122084
|
businessName?: Maybe<Scalars['String']['output']>;
|
|
121865
122085
|
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
121866
|
-
companyId
|
|
122086
|
+
companyId?: Maybe<Scalars['String']['output']>;
|
|
121867
122087
|
companySize?: Maybe<Scalars['String']['output']>;
|
|
121868
122088
|
companyType?: Maybe<Scalars['String']['output']>;
|
|
121869
122089
|
countryCode?: Maybe<Scalars['String']['output']>;
|
|
@@ -121872,6 +122092,7 @@ export type GrowthUnifiedProfileAccountCompanyRecord = {
|
|
|
121872
122092
|
description?: Maybe<Scalars['String']['output']>;
|
|
121873
122093
|
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
121874
122094
|
domain: Scalars['String']['output'];
|
|
122095
|
+
domainType: GrowthUnifiedProfileDomainType;
|
|
121875
122096
|
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
121876
122097
|
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
121877
122098
|
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -123427,6 +123648,7 @@ export declare enum HelpCenterMigrationState {
|
|
|
123427
123648
|
export type HelpCenterMoveSiteTreeNodeInput = {
|
|
123428
123649
|
beforeSiblingId?: InputMaybe<Scalars['ID']['input']>;
|
|
123429
123650
|
destinationParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
123651
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
123430
123652
|
isDraft?: Scalars['Boolean']['input'];
|
|
123431
123653
|
siteTreeNodeId: Scalars['ID']['input'];
|
|
123432
123654
|
};
|
|
@@ -125434,6 +125656,7 @@ export type HypothesisMitigationPlan = Node & {
|
|
|
125434
125656
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
125435
125657
|
steps?: Maybe<Array<HypothesisMitigationPlanStep>>;
|
|
125436
125658
|
summary?: Maybe<Scalars['String']['output']>;
|
|
125659
|
+
summaryAdf?: Maybe<Scalars['JSON']['output']>;
|
|
125437
125660
|
title?: Maybe<Scalars['String']['output']>;
|
|
125438
125661
|
};
|
|
125439
125662
|
export type HypothesisMitigationPlanStep = {
|
|
@@ -127158,6 +127381,7 @@ export type JiraAgentInSpace = {
|
|
|
127158
127381
|
hasAppSettings: Scalars['Boolean']['output'];
|
|
127159
127382
|
hasAutonomySettings: Scalars['Boolean']['output'];
|
|
127160
127383
|
sources: Array<JiraAgentInSpaceSource>;
|
|
127384
|
+
spaceAri: Scalars['ID']['output'];
|
|
127161
127385
|
spaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
127162
127386
|
triggers?: Maybe<JiraAgentInSpaceTriggerConnection>;
|
|
127163
127387
|
};
|
|
@@ -127299,6 +127523,7 @@ export type JiraAgentSessionEdge = {
|
|
|
127299
127523
|
node?: Maybe<JiraAgentSession>;
|
|
127300
127524
|
};
|
|
127301
127525
|
export declare enum JiraAgentSessionInvocationType {
|
|
127526
|
+
Automation = "AUTOMATION",
|
|
127302
127527
|
IssueAssignment = "ISSUE_ASSIGNMENT",
|
|
127303
127528
|
IssueCommentMention = "ISSUE_COMMENT_MENTION",
|
|
127304
127529
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
@@ -131839,6 +132064,7 @@ export declare enum JiraConfigFieldType {
|
|
|
131839
132064
|
CustomImportId = "CUSTOM_IMPORT_ID",
|
|
131840
132065
|
CustomJwmCategory = "CUSTOM_JWM_CATEGORY",
|
|
131841
132066
|
CustomLabels = "CUSTOM_LABELS",
|
|
132067
|
+
CustomLongText = "CUSTOM_LONG_TEXT",
|
|
131842
132068
|
CustomMultiCheckboxes = "CUSTOM_MULTI_CHECKBOXES",
|
|
131843
132069
|
CustomMultiGroupPicker = "CUSTOM_MULTI_GROUP_PICKER",
|
|
131844
132070
|
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
@@ -136411,6 +136637,7 @@ export type JiraIccActivityValue = {
|
|
|
136411
136637
|
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
136412
136638
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
136413
136639
|
triggerType?: Maybe<Scalars['String']['output']>;
|
|
136640
|
+
updateMessage?: Maybe<Scalars['String']['output']>;
|
|
136414
136641
|
version?: Maybe<Scalars['String']['output']>;
|
|
136415
136642
|
};
|
|
136416
136643
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
@@ -136702,6 +136929,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
136702
136929
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
136703
136930
|
jiraWorkItemLinksExternalBuild?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBuildConnection>;
|
|
136704
136931
|
jiraWorkItemLinksExternalCommit?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalCommitConnection>;
|
|
136932
|
+
jiraWorkItemLinksExternalPullRequest?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalPullRequestConnection>;
|
|
136705
136933
|
key: Scalars['String']['output'];
|
|
136706
136934
|
labels?: Maybe<JiraLabelConnection>;
|
|
136707
136935
|
labelsField?: Maybe<JiraLabelsField>;
|
|
@@ -137072,6 +137300,13 @@ export type JiraIssueJiraWorkItemLinksExternalCommitArgs = {
|
|
|
137072
137300
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
137073
137301
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalCommitSortInput>;
|
|
137074
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
|
+
};
|
|
137075
137310
|
export type JiraIssueLabelsArgs = {
|
|
137076
137311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137077
137312
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138617,6 +138852,8 @@ export type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
138617
138852
|
};
|
|
138618
138853
|
export type JiraIssueNextActionPresence = {
|
|
138619
138854
|
__typename?: 'JiraIssueNextActionPresence';
|
|
138855
|
+
hasMultiUserReady?: Maybe<Scalars['Boolean']['output']>;
|
|
138856
|
+
hasReady?: Maybe<Scalars['Boolean']['output']>;
|
|
138620
138857
|
recommendations?: Maybe<JiraIssueNextActionSuggestions>;
|
|
138621
138858
|
state?: Maybe<JiraIssueNextActionPresenceState>;
|
|
138622
138859
|
};
|
|
@@ -140834,6 +141071,7 @@ export type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & Jir
|
|
|
140834
141071
|
};
|
|
140835
141072
|
export type JiraLabelsFieldLabelsArgs = {
|
|
140836
141073
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141074
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140837
141075
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140838
141076
|
currentProjectOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140839
141077
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140889,6 +141127,7 @@ export type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
|
140889
141127
|
};
|
|
140890
141128
|
export type JiraLabelsForCreateFieldLabelsArgs = {
|
|
140891
141129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141130
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
140892
141131
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140893
141132
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
140894
141133
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -143838,6 +144077,7 @@ export type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
143838
144077
|
};
|
|
143839
144078
|
export type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
143840
144079
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
144080
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
143841
144081
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
143842
144082
|
excludeDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143843
144083
|
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
@@ -146225,6 +146465,7 @@ export type JiraQuery = {
|
|
|
146225
146465
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
146226
146466
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
146227
146467
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
146468
|
+
jiraCanBulkInvokeAgentSessionsForJql?: Maybe<Scalars['Boolean']['output']>;
|
|
146228
146469
|
jiraCaseManagementProjectSettings?: Maybe<JiraCaseManagementProjectSettings>;
|
|
146229
146470
|
jiraConfluenceSuggestUpdatesForPage?: Maybe<Array<Scalars['ID']['output']>>;
|
|
146230
146471
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
@@ -146666,6 +146907,7 @@ export type JiraQueryFieldConfigByIdArgs = {
|
|
|
146666
146907
|
ids: Array<Scalars['ID']['input']>;
|
|
146667
146908
|
};
|
|
146668
146909
|
export type JiraQueryFieldPredictionArgs = {
|
|
146910
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146669
146911
|
candidates?: InputMaybe<Array<InputMaybe<JiraFieldPredictionCandidateInput>>>;
|
|
146670
146912
|
cloudId: Scalars['ID']['input'];
|
|
146671
146913
|
fieldId: Scalars['String']['input'];
|
|
@@ -146677,6 +146919,7 @@ export type JiraQueryFieldPredictionArgs = {
|
|
|
146677
146919
|
source?: InputMaybe<JiraFieldPredictionSource>;
|
|
146678
146920
|
};
|
|
146679
146921
|
export type JiraQueryFieldPredictionsArgs = {
|
|
146922
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
146680
146923
|
cloudId: Scalars['ID']['input'];
|
|
146681
146924
|
fields: Array<JiraFieldPredictionFieldInput>;
|
|
146682
146925
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -147061,6 +147304,12 @@ export type JiraQueryJiraCalendarArgs = {
|
|
|
147061
147304
|
input?: InputMaybe<JiraCalendarInput>;
|
|
147062
147305
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
147063
147306
|
};
|
|
147307
|
+
export type JiraQueryJiraCanBulkInvokeAgentSessionsForJqlArgs = {
|
|
147308
|
+
cloudId: Scalars['ID']['input'];
|
|
147309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147310
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
147311
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
147312
|
+
};
|
|
147064
147313
|
export type JiraQueryJiraCaseManagementProjectSettingsArgs = {
|
|
147065
147314
|
cloudId: Scalars['ID']['input'];
|
|
147066
147315
|
projectKey: Scalars['String']['input'];
|
|
@@ -147359,6 +147608,7 @@ export type JiraQueryJwmViewItemsArgs = {
|
|
|
147359
147608
|
};
|
|
147360
147609
|
export type JiraQueryLabelsFieldOptionsArgs = {
|
|
147361
147610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147611
|
+
aiSuggestionsGicSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
147362
147612
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
147363
147613
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147364
147614
|
id: Scalars['ID']['input'];
|
|
@@ -163052,7 +163302,6 @@ export type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
|
163052
163302
|
};
|
|
163053
163303
|
export type KnowledgeDiscoveryQueryApiSearchChatIntentDetectionArgs = {
|
|
163054
163304
|
locale: Scalars['String']['input'];
|
|
163055
|
-
orgId: Scalars['String']['input'];
|
|
163056
163305
|
query: Scalars['String']['input'];
|
|
163057
163306
|
siteId: Scalars['String']['input'];
|
|
163058
163307
|
};
|
|
@@ -163915,12 +164164,14 @@ export type LogQueryInput = {
|
|
|
163915
164164
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163916
164165
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
163917
164166
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
164167
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
163918
164168
|
osName?: InputMaybe<Scalars['String']['input']>;
|
|
163919
164169
|
renderType?: InputMaybe<Scalars['String']['input']>;
|
|
163920
164170
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
163921
164171
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
163922
164172
|
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
163923
164173
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
164174
|
+
unitId?: InputMaybe<Scalars['String']['input']>;
|
|
163924
164175
|
};
|
|
163925
164176
|
export type LookAndFeel = {
|
|
163926
164177
|
__typename?: 'LookAndFeel';
|
|
@@ -165544,6 +165795,10 @@ export type MarketplaceConsoleBillingContactInput = {
|
|
|
165544
165795
|
lastName: Scalars['String']['input'];
|
|
165545
165796
|
phoneNumber: Scalars['String']['input'];
|
|
165546
165797
|
};
|
|
165798
|
+
export declare enum MarketplaceConsoleBillingCycle {
|
|
165799
|
+
Annual = "ANNUAL",
|
|
165800
|
+
Monthly = "MONTHLY"
|
|
165801
|
+
}
|
|
165547
165802
|
export type MarketplaceConsoleBulkProductMigration = {
|
|
165548
165803
|
__typename?: 'MarketplaceConsoleBulkProductMigration';
|
|
165549
165804
|
products: Array<Maybe<MarketplaceConsoleProductMigration>>;
|
|
@@ -165925,6 +166180,7 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
|
165925
166180
|
Uninitiated = "UNINITIATED"
|
|
165926
166181
|
}
|
|
165927
166182
|
export type MarketplaceConsoleEditionsFilterInput = {
|
|
166183
|
+
billingCycle?: InputMaybe<MarketplaceConsoleBillingCycle>;
|
|
165928
166184
|
editionsGroup?: InputMaybe<MarketplaceConsoleEditionsGroup>;
|
|
165929
166185
|
};
|
|
165930
166186
|
export declare enum MarketplaceConsoleEditionsGroup {
|
|
@@ -166327,7 +166583,7 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
166327
166583
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
166328
166584
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
166329
166585
|
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
166330
|
-
createPrivateOffer?: Maybe<
|
|
166586
|
+
createPrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
|
|
166331
166587
|
deleteApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
|
|
166332
166588
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
166333
166589
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
@@ -166341,7 +166597,7 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
166341
166597
|
refreshAppPublishWizardScreen?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
166342
166598
|
regenerateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
166343
166599
|
restartAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
166344
|
-
sharePrivateOffer?: Maybe<
|
|
166600
|
+
sharePrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
|
|
166345
166601
|
startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
166346
166602
|
submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
166347
166603
|
subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
|
|
@@ -166350,14 +166606,14 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
166350
166606
|
updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
166351
166607
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
166352
166608
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
166353
|
-
updatePrivateOffer?: Maybe<
|
|
166609
|
+
updatePrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
|
|
166354
166610
|
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
166355
166611
|
updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
|
|
166356
166612
|
updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
|
|
166357
166613
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
166358
166614
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
166359
166615
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
166360
|
-
withdrawPrivateOffer?: Maybe<
|
|
166616
|
+
withdrawPrivateOffer?: Maybe<MarketplaceConsolePrivateOfferMutationResult>;
|
|
166361
166617
|
};
|
|
166362
166618
|
export type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
166363
166619
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -166732,6 +166988,15 @@ export declare enum MarketplaceConsolePrivateOfferDiscountType {
|
|
|
166732
166988
|
FixedAmount = "FIXED_AMOUNT",
|
|
166733
166989
|
Percentage = "PERCENTAGE"
|
|
166734
166990
|
}
|
|
166991
|
+
export type MarketplaceConsolePrivateOfferMutationResult = {
|
|
166992
|
+
__typename?: 'MarketplaceConsolePrivateOfferMutationResult';
|
|
166993
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
166994
|
+
offerId: Scalars['ID']['output'];
|
|
166995
|
+
status: MarketplaceConsolePrivateOfferStatus;
|
|
166996
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
166997
|
+
version: Scalars['Int']['output'];
|
|
166998
|
+
withdrawReason?: Maybe<Scalars['String']['output']>;
|
|
166999
|
+
};
|
|
166735
167000
|
export declare enum MarketplaceConsolePrivateOfferStatus {
|
|
166736
167001
|
Accepted = "ACCEPTED",
|
|
166737
167002
|
Completed = "COMPLETED",
|
|
@@ -166984,6 +167249,7 @@ export type MarketplaceConsoleQueryApi = {
|
|
|
166984
167249
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
166985
167250
|
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
166986
167251
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
167252
|
+
productMetadataByProductId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
166987
167253
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
166988
167254
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
166989
167255
|
versionListingApprovalStatus: MarketplaceConsoleVersionListingApprovalStatusResponse;
|
|
@@ -167112,6 +167378,9 @@ export type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
|
167112
167378
|
export type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
167113
167379
|
appId: Scalars['ID']['input'];
|
|
167114
167380
|
};
|
|
167381
|
+
export type MarketplaceConsoleQueryApiProductMetadataByProductIdArgs = {
|
|
167382
|
+
productId: Scalars['ID']['input'];
|
|
167383
|
+
};
|
|
167115
167384
|
export type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
|
|
167116
167385
|
appId: Scalars['ID']['input'];
|
|
167117
167386
|
};
|
|
@@ -171836,6 +172105,7 @@ export type MercuryCreateThreadedCommentPayload = Payload & {
|
|
|
171836
172105
|
};
|
|
171837
172106
|
export type MercuryCreateViewInput = {
|
|
171838
172107
|
cloudId: Scalars['ID']['input'];
|
|
172108
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
171839
172109
|
entityType: Scalars['String']['input'];
|
|
171840
172110
|
name: Scalars['String']['input'];
|
|
171841
172111
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -179907,6 +180177,7 @@ export type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
179907
180177
|
};
|
|
179908
180178
|
export type MercuryView = Node & {
|
|
179909
180179
|
__typename?: 'MercuryView';
|
|
180180
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
179910
180181
|
createdBy?: Maybe<User>;
|
|
179911
180182
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
179912
180183
|
entityType: Scalars['String']['output'];
|
|
@@ -180482,12 +180753,14 @@ export type Mutation = {
|
|
|
180482
180753
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
180483
180754
|
agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
|
|
180484
180755
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
180756
|
+
agentStudio_removeAgentTrigger?: Maybe<AgentStudioRemoveAgentTriggerPayload>;
|
|
180485
180757
|
agentStudio_removeBatchEvaluationJobRun?: Maybe<AgentStudioDeleteBatchEvaluationJobRunPayload>;
|
|
180486
180758
|
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
180487
180759
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
180488
180760
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
180489
180761
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
180490
180762
|
agentStudio_setAccessIdentityMode?: Maybe<AgentStudioSetAccessIdentityModePayload>;
|
|
180763
|
+
agentStudio_setAgentTriggerEnabled?: Maybe<AgentStudioSetAgentTriggerEnabledPayload>;
|
|
180491
180764
|
agentStudio_setAgentUsePermissionMode?: Maybe<AgentStudioUpdateUseAgentPermissionModePayload>;
|
|
180492
180765
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
180493
180766
|
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
@@ -180497,6 +180770,7 @@ export type Mutation = {
|
|
|
180497
180770
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
180498
180771
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
180499
180772
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
180773
|
+
agentStudio_updateAgentTrigger?: Maybe<AgentStudioUpdateAgentTriggerPayload>;
|
|
180500
180774
|
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
180501
180775
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
180502
180776
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
@@ -180514,6 +180788,7 @@ export type Mutation = {
|
|
|
180514
180788
|
agentWorkspace_bulkUpsertDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedTeamRoutingTableEntriesPayload>;
|
|
180515
180789
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
180516
180790
|
agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
180791
|
+
agentWorkspace_clearRoutingModeAndTable?: Maybe<AgentWorkspaceClearRoutingModeAndTablePayload>;
|
|
180517
180792
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
180518
180793
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
180519
180794
|
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
@@ -180833,6 +181108,7 @@ export type Mutation = {
|
|
|
180833
181108
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
180834
181109
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
180835
181110
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
181111
|
+
confluence_exportJiraMacroAudit?: Maybe<ConfluenceExportJiraMacroAuditPayload>;
|
|
180836
181112
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
180837
181113
|
confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
|
|
180838
181114
|
confluence_generateSearchPerformedEvent?: Maybe<ConfluenceGenerateSearchPerformedEventPayload>;
|
|
@@ -180969,6 +181245,7 @@ export type Mutation = {
|
|
|
180969
181245
|
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
180970
181246
|
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
180971
181247
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
181248
|
+
cpls_createCustomContributionTargetWithScopeAssociation?: Maybe<CplsCreateCustomContributionTargetWithScopeAssociationPayload>;
|
|
180972
181249
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
180973
181250
|
cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
|
|
180974
181251
|
cpls_deleteAllSuggestionsForUser?: Maybe<CplsDeleteAllSuggestionsForUserPayload>;
|
|
@@ -181220,6 +181497,7 @@ export type Mutation = {
|
|
|
181220
181497
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
181221
181498
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
181222
181499
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
181500
|
+
goals_createDraftUpdate?: Maybe<TownsquareGoalsCreateDraftUpdatePayload>;
|
|
181223
181501
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
181224
181502
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
181225
181503
|
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
@@ -181227,6 +181505,7 @@ export type Mutation = {
|
|
|
181227
181505
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
181228
181506
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
181229
181507
|
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
181508
|
+
goals_deleteDraftUpdate?: Maybe<TownsquareGoalsDeleteDraftUpdatePayload>;
|
|
181230
181509
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
181231
181510
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
181232
181511
|
goals_deleteMetricValue?: Maybe<TownsquareGoalsDeleteMetricValuePayload>;
|
|
@@ -181995,6 +182274,7 @@ export type Mutation = {
|
|
|
181995
182274
|
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
181996
182275
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
181997
182276
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
182277
|
+
psm_recordUserAction?: Maybe<PsmRecordUserActionPayload>;
|
|
181998
182278
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
181999
182279
|
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
182000
182280
|
psm_updateSensorEnablement?: Maybe<PsmUpdateSensorEnablementPayload>;
|
|
@@ -182554,6 +182834,10 @@ export type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
|
182554
182834
|
id: Scalars['ID']['input'];
|
|
182555
182835
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
182556
182836
|
};
|
|
182837
|
+
export type MutationAgentStudio_RemoveAgentTriggerArgs = {
|
|
182838
|
+
automationRuleId: Scalars['ID']['input'];
|
|
182839
|
+
id: Scalars['ID']['input'];
|
|
182840
|
+
};
|
|
182557
182841
|
export type MutationAgentStudio_RemoveBatchEvaluationJobRunArgs = {
|
|
182558
182842
|
cloudId: Scalars['String']['input'];
|
|
182559
182843
|
jobRunId: Scalars['ID']['input'];
|
|
@@ -182588,6 +182872,10 @@ export type MutationAgentStudio_SetAccessIdentityModeArgs = {
|
|
|
182588
182872
|
id: Scalars['ID']['input'];
|
|
182589
182873
|
mode: AgentStudioAccessIdentityMode;
|
|
182590
182874
|
};
|
|
182875
|
+
export type MutationAgentStudio_SetAgentTriggerEnabledArgs = {
|
|
182876
|
+
id: Scalars['ID']['input'];
|
|
182877
|
+
input: AgentStudioSetAgentTriggerEnabledInput;
|
|
182878
|
+
};
|
|
182591
182879
|
export type MutationAgentStudio_SetAgentUsePermissionModeArgs = {
|
|
182592
182880
|
id: Scalars['ID']['input'];
|
|
182593
182881
|
input: AgentStudioUpdateAgentUsePermissionSettingsInput;
|
|
@@ -182627,6 +182915,10 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
182627
182915
|
action: AgentStudioModelUpgradeAction;
|
|
182628
182916
|
id: Scalars['ID']['input'];
|
|
182629
182917
|
};
|
|
182918
|
+
export type MutationAgentStudio_UpdateAgentTriggerArgs = {
|
|
182919
|
+
id: Scalars['ID']['input'];
|
|
182920
|
+
input: AgentStudioUpdateAgentTriggerInput;
|
|
182921
|
+
};
|
|
182630
182922
|
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
182631
182923
|
cloudId: Scalars['String']['input'];
|
|
182632
182924
|
id: Scalars['ID']['input'];
|
|
@@ -182695,6 +182987,9 @@ export type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
|
182695
182987
|
export type MutationAgentWorkspace_CancelSmartRoutingDryRunArgs = {
|
|
182696
182988
|
input: AgentWorkspaceCancelSmartRoutingDryRunInput;
|
|
182697
182989
|
};
|
|
182990
|
+
export type MutationAgentWorkspace_ClearRoutingModeAndTableArgs = {
|
|
182991
|
+
input: AgentWorkspaceClearRoutingModeAndTableInput;
|
|
182992
|
+
};
|
|
182698
182993
|
export type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
182699
182994
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
182700
182995
|
};
|
|
@@ -183858,6 +184153,9 @@ export type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
|
|
|
183858
184153
|
export type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
183859
184154
|
cloudId: Scalars['ID']['input'];
|
|
183860
184155
|
};
|
|
184156
|
+
export type MutationConfluence_ExportJiraMacroAuditArgs = {
|
|
184157
|
+
cloudId: Scalars['ID']['input'];
|
|
184158
|
+
};
|
|
183861
184159
|
export type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
183862
184160
|
cloudId: Scalars['ID']['input'];
|
|
183863
184161
|
input: ConfluenceForgeContextTokenRequestInput;
|
|
@@ -184398,6 +184696,9 @@ export type MutationCpls_CopyWorkToContributorsArgs = {
|
|
|
184398
184696
|
export type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
184399
184697
|
input: CplsCreateCustomContributionTargetInput;
|
|
184400
184698
|
};
|
|
184699
|
+
export type MutationCpls_CreateCustomContributionTargetWithScopeAssociationArgs = {
|
|
184700
|
+
input: CplsCreateCustomContributionTargetWithScopeAssociationInput;
|
|
184701
|
+
};
|
|
184401
184702
|
export type MutationCpls_CreateCustomContributionTargetWithWorkAssociationArgs = {
|
|
184402
184703
|
input: CplsCreateCustomContributionTargetWithWorkAssociationInput;
|
|
184403
184704
|
};
|
|
@@ -185277,6 +185578,9 @@ export type MutationGoals_CreateCommentArgs = {
|
|
|
185277
185578
|
export type MutationGoals_CreateDecisionArgs = {
|
|
185278
185579
|
input: TownsquareGoalsCreateDecisionInput;
|
|
185279
185580
|
};
|
|
185581
|
+
export type MutationGoals_CreateDraftUpdateArgs = {
|
|
185582
|
+
input: TownsquareGoalsCreateDraftUpdateInput;
|
|
185583
|
+
};
|
|
185280
185584
|
export type MutationGoals_CreateGoalTypePairArgs = {
|
|
185281
185585
|
input: TownsquareGoalsCreateGoalTypePairInput;
|
|
185282
185586
|
};
|
|
@@ -185298,6 +185602,9 @@ export type MutationGoals_DeleteCommentArgs = {
|
|
|
185298
185602
|
export type MutationGoals_DeleteDecisionArgs = {
|
|
185299
185603
|
input: TownsquareGoalsDeleteDecisionInput;
|
|
185300
185604
|
};
|
|
185605
|
+
export type MutationGoals_DeleteDraftUpdateArgs = {
|
|
185606
|
+
input: TownsquareGoalsDeleteDraftUpdateInput;
|
|
185607
|
+
};
|
|
185301
185608
|
export type MutationGoals_DeleteLatestUpdateArgs = {
|
|
185302
185609
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
185303
185610
|
};
|
|
@@ -187769,6 +188076,10 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
187769
188076
|
cloudId: Scalars['ID']['input'];
|
|
187770
188077
|
input: PsmOnboardTenantInput;
|
|
187771
188078
|
};
|
|
188079
|
+
export type MutationPsm_RecordUserActionArgs = {
|
|
188080
|
+
cloudId: Scalars['ID']['input'];
|
|
188081
|
+
input: PsmRecordUserActionInput;
|
|
188082
|
+
};
|
|
187772
188083
|
export type MutationPsm_RegisterDeviceArgs = {
|
|
187773
188084
|
input: PsmRegisterDeviceInput;
|
|
187774
188085
|
};
|
|
@@ -191019,6 +191330,7 @@ export type PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData
|
|
|
191019
191330
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData';
|
|
191020
191331
|
conversationChannelId: Scalars['String']['output'];
|
|
191021
191332
|
numberOfSuggestions: Scalars['Float']['output'];
|
|
191333
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
191022
191334
|
};
|
|
191023
191335
|
export type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
191024
191336
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
@@ -191326,6 +191638,10 @@ export type ProvisionInstallationLinkInput = {
|
|
|
191326
191638
|
context: Scalars['ID']['input'];
|
|
191327
191639
|
installationAri: Scalars['ID']['input'];
|
|
191328
191640
|
};
|
|
191641
|
+
export type PsmActionAttributeInput = {
|
|
191642
|
+
key: Scalars['String']['input'];
|
|
191643
|
+
value: Scalars['String']['input'];
|
|
191644
|
+
};
|
|
191329
191645
|
export type PsmActiveSensor = {
|
|
191330
191646
|
__typename?: 'PsmActiveSensor';
|
|
191331
191647
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -191731,7 +192047,8 @@ export declare enum PsmFilterKey {
|
|
|
191731
192047
|
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
191732
192048
|
Sensor = "SENSOR",
|
|
191733
192049
|
SensorCategory = "SENSOR_CATEGORY",
|
|
191734
|
-
Status = "STATUS"
|
|
192050
|
+
Status = "STATUS",
|
|
192051
|
+
TriggeredBy = "TRIGGERED_BY"
|
|
191735
192052
|
}
|
|
191736
192053
|
export type PsmFilterOption = {
|
|
191737
192054
|
__typename?: 'PsmFilterOption';
|
|
@@ -191740,6 +192057,7 @@ export type PsmFilterOption = {
|
|
|
191740
192057
|
};
|
|
191741
192058
|
export declare enum PsmFilterScreen {
|
|
191742
192059
|
Activities = "ACTIVITIES",
|
|
192060
|
+
AuditLog = "AUDIT_LOG",
|
|
191743
192061
|
DeviceList = "DEVICE_LIST",
|
|
191744
192062
|
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
191745
192063
|
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
@@ -191861,6 +192179,18 @@ export type PsmOnboardTenantStatusResult = {
|
|
|
191861
192179
|
spaceId: Scalars['ID']['output'];
|
|
191862
192180
|
status: PsmOnboardTenantStatus;
|
|
191863
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
|
+
};
|
|
191864
192194
|
export type PsmRegisterDeviceInput = {
|
|
191865
192195
|
atlassianAccountId: Scalars['ID']['input'];
|
|
191866
192196
|
cloudId: Scalars['ID']['input'];
|
|
@@ -191957,6 +192287,7 @@ export declare enum PsmRemediationState {
|
|
|
191957
192287
|
Failed = "FAILED",
|
|
191958
192288
|
InProgress = "IN_PROGRESS",
|
|
191959
192289
|
Resolved = "RESOLVED",
|
|
192290
|
+
UserResolved = "USER_RESOLVED",
|
|
191960
192291
|
Withdrawn = "WITHDRAWN"
|
|
191961
192292
|
}
|
|
191962
192293
|
export declare enum PsmRemediationStatus {
|
|
@@ -192093,6 +192424,7 @@ export declare enum PsmSensorEventType {
|
|
|
192093
192424
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
192094
192425
|
Lagged = "LAGGED",
|
|
192095
192426
|
Shutdown = "SHUTDOWN",
|
|
192427
|
+
UserResolved = "USER_RESOLVED",
|
|
192096
192428
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
192097
192429
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
192098
192430
|
WithdrawStale = "WITHDRAW_STALE",
|
|
@@ -192214,6 +192546,9 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
|
|
|
192214
192546
|
sensorIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
192215
192547
|
success: Scalars['Boolean']['output'];
|
|
192216
192548
|
};
|
|
192549
|
+
export declare enum PsmUserActionType {
|
|
192550
|
+
Resolved = "RESOLVED"
|
|
192551
|
+
}
|
|
192217
192552
|
export type PublicLink = {
|
|
192218
192553
|
__typename?: 'PublicLink';
|
|
192219
192554
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -193110,6 +193445,7 @@ export type Query = {
|
|
|
193110
193445
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
193111
193446
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
193112
193447
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
193448
|
+
confluence_jiraMacroAuditStatus?: Maybe<ConfluenceJiraMacroAuditStatus>;
|
|
193113
193449
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
193114
193450
|
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
193115
193451
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
@@ -199352,6 +199688,9 @@ export type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
199352
199688
|
cloudId: Scalars['ID']['input'];
|
|
199353
199689
|
input: ConfluenceLabelWatchInput;
|
|
199354
199690
|
};
|
|
199691
|
+
export type QueryConfluence_JiraMacroAuditStatusArgs = {
|
|
199692
|
+
cloudId: Scalars['ID']['input'];
|
|
199693
|
+
};
|
|
199355
199694
|
export type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
199356
199695
|
cloudId: Scalars['ID']['input'];
|
|
199357
199696
|
};
|
|
@@ -220733,11 +221072,13 @@ export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
220733
221072
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220734
221073
|
displayName: Scalars['String']['output'];
|
|
220735
221074
|
entity: RadarEntityType;
|
|
221075
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220736
221076
|
filterOptions: RadarFilterOptions;
|
|
220737
221077
|
id: Scalars['ID']['output'];
|
|
220738
221078
|
isCustom: Scalars['Boolean']['output'];
|
|
220739
221079
|
isGroupable: Scalars['Boolean']['output'];
|
|
220740
221080
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221081
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220741
221082
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220742
221083
|
relativeId: Scalars['String']['output'];
|
|
220743
221084
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -220853,11 +221194,13 @@ export type RadarFieldDefinition = {
|
|
|
220853
221194
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
220854
221195
|
displayName: Scalars['String']['output'];
|
|
220855
221196
|
entity: RadarEntityType;
|
|
221197
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
220856
221198
|
filterOptions: RadarFilterOptions;
|
|
220857
221199
|
id: Scalars['ID']['output'];
|
|
220858
221200
|
isCustom: Scalars['Boolean']['output'];
|
|
220859
221201
|
isGroupable: Scalars['Boolean']['output'];
|
|
220860
221202
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221203
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
220861
221204
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
220862
221205
|
relativeId: Scalars['String']['output'];
|
|
220863
221206
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221154,11 +221497,13 @@ export type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221154
221497
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221155
221498
|
displayName: Scalars['String']['output'];
|
|
221156
221499
|
entity: RadarEntityType;
|
|
221500
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221157
221501
|
filterOptions: RadarFilterOptions;
|
|
221158
221502
|
id: Scalars['ID']['output'];
|
|
221159
221503
|
isCustom: Scalars['Boolean']['output'];
|
|
221160
221504
|
isGroupable: Scalars['Boolean']['output'];
|
|
221161
221505
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221506
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221162
221507
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221163
221508
|
relativeId: Scalars['String']['output'];
|
|
221164
221509
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -221200,11 +221545,13 @@ export type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
221200
221545
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
221201
221546
|
displayName: Scalars['String']['output'];
|
|
221202
221547
|
entity: RadarEntityType;
|
|
221548
|
+
fieldDescription?: Maybe<Scalars['String']['output']>;
|
|
221203
221549
|
filterOptions: RadarFilterOptions;
|
|
221204
221550
|
id: Scalars['ID']['output'];
|
|
221205
221551
|
isCustom: Scalars['Boolean']['output'];
|
|
221206
221552
|
isGroupable: Scalars['Boolean']['output'];
|
|
221207
221553
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
221554
|
+
isMcpVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
221208
221555
|
permissions?: Maybe<RadarFieldDefinitionPermissions>;
|
|
221209
221556
|
relativeId: Scalars['String']['output'];
|
|
221210
221557
|
sensitivityLevel: RadarSensitivityLevel;
|
|
@@ -224604,6 +224951,16 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
224604
224951
|
userId: Scalars['ID']['output'];
|
|
224605
224952
|
userName: Scalars['String']['output'];
|
|
224606
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
|
+
};
|
|
224607
224964
|
export type SearchResultJiraDashboard = SearchResult & {
|
|
224608
224965
|
__typename?: 'SearchResultJiraDashboard';
|
|
224609
224966
|
description: Scalars['String']['output'];
|
|
@@ -224641,6 +224998,7 @@ export type SearchResultJiraFilterSocialSignalArgs = {
|
|
|
224641
224998
|
};
|
|
224642
224999
|
export type SearchResultJiraIssue = SearchResult & {
|
|
224643
225000
|
__typename?: 'SearchResultJiraIssue';
|
|
225001
|
+
comments?: Maybe<Array<SearchResultJiraComment>>;
|
|
224644
225002
|
description: Scalars['String']['output'];
|
|
224645
225003
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
224646
225004
|
id: Scalars['ID']['output'];
|
|
@@ -231510,7 +231868,8 @@ export declare enum StakeholderCommsSuggestionSuppressionReason {
|
|
|
231510
231868
|
EngineError = "ENGINE_ERROR",
|
|
231511
231869
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
231512
231870
|
NoPagesConfigured = "NO_PAGES_CONFIGURED",
|
|
231513
|
-
NoStakeholders = "NO_STAKEHOLDERS"
|
|
231871
|
+
NoStakeholders = "NO_STAKEHOLDERS",
|
|
231872
|
+
RecentDuplicateStatuspageUpdate = "RECENT_DUPLICATE_STATUSPAGE_UPDATE"
|
|
231514
231873
|
}
|
|
231515
231874
|
export type StakeholderCommsTransformerRecord = {
|
|
231516
231875
|
__typename?: 'StakeholderCommsTransformerRecord';
|
|
@@ -235178,6 +235537,7 @@ export type TownsquareGoalAccessEdge = {
|
|
|
235178
235537
|
cursor: Scalars['String']['output'];
|
|
235179
235538
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
235180
235539
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
235540
|
+
isOwnerOfConnectedGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
235181
235541
|
node?: Maybe<TownsquareAccessPrincipal>;
|
|
235182
235542
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
235183
235543
|
role?: Maybe<TownsquareGoalAccessRole>;
|
|
@@ -235829,6 +236189,15 @@ export type TownsquareGoalsCreateDecisionPayload = {
|
|
|
235829
236189
|
errors?: Maybe<Array<MutationError>>;
|
|
235830
236190
|
success: Scalars['Boolean']['output'];
|
|
235831
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
|
+
};
|
|
235832
236201
|
export type TownsquareGoalsCreateGoalTypePairInput = {
|
|
235833
236202
|
goalType: TownsquareCreateGoalTypeInputV2;
|
|
235834
236203
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
@@ -235919,6 +236288,15 @@ export type TownsquareGoalsDeleteDecisionPayload = {
|
|
|
235919
236288
|
errors?: Maybe<Array<MutationError>>;
|
|
235920
236289
|
success: Scalars['Boolean']['output'];
|
|
235921
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
|
+
};
|
|
235922
236300
|
export type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
235923
236301
|
updateId: Scalars['ID']['input'];
|
|
235924
236302
|
};
|
|
@@ -239155,6 +239533,12 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239155
239533
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239156
239534
|
id: Scalars['ID']['output'];
|
|
239157
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
|
+
};
|
|
239158
239542
|
export type TrelloAgentMessage = {
|
|
239159
239543
|
__typename?: 'TrelloAgentMessage';
|
|
239160
239544
|
content: Scalars['String']['output'];
|
|
@@ -239700,6 +240084,7 @@ export type TrelloAuthorizedApplicationSummary = {
|
|
|
239700
240084
|
};
|
|
239701
240085
|
export type TrelloAuthorizedOAuth2ClientGrant = {
|
|
239702
240086
|
__typename?: 'TrelloAuthorizedOAuth2ClientGrant';
|
|
240087
|
+
isPowerUp: Scalars['Boolean']['output'];
|
|
239703
240088
|
oauth2ClientId: Scalars['ID']['output'];
|
|
239704
240089
|
plugin?: Maybe<TrelloPowerUp>;
|
|
239705
240090
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -239802,6 +240187,7 @@ export type TrelloBaseCard = {
|
|
|
239802
240187
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
239803
240188
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
239804
240189
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240190
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
239805
240191
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
239806
240192
|
role?: Maybe<TrelloCardRole>;
|
|
239807
240193
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -239837,6 +240223,10 @@ export type TrelloBaseCardPlannerEventsArgs = {
|
|
|
239837
240223
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
239838
240224
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
239839
240225
|
};
|
|
240226
|
+
export type TrelloBaseCardRecommendationsArgs = {
|
|
240227
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240228
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240229
|
+
};
|
|
239840
240230
|
export type TrelloBaseCardDeleted = {
|
|
239841
240231
|
id: Scalars['ID']['output'];
|
|
239842
240232
|
};
|
|
@@ -240464,6 +240854,7 @@ export type TrelloCard = Node & TrelloBaseCard & {
|
|
|
240464
240854
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
240465
240855
|
position?: Maybe<Scalars['Float']['output']>;
|
|
240466
240856
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
240857
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
240467
240858
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
240468
240859
|
role?: Maybe<TrelloCardRole>;
|
|
240469
240860
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -240520,6 +240911,10 @@ export type TrelloCardPowerUpDataArgs = {
|
|
|
240520
240911
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
240521
240912
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240522
240913
|
};
|
|
240914
|
+
export type TrelloCardRecommendationsArgs = {
|
|
240915
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240917
|
+
};
|
|
240523
240918
|
export type TrelloCardStickersArgs = {
|
|
240524
240919
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240525
240920
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -242182,6 +242577,7 @@ export type TrelloInboxCard = TrelloBaseCard & {
|
|
|
242182
242577
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
242183
242578
|
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
242184
242579
|
position?: Maybe<Scalars['Float']['output']>;
|
|
242580
|
+
recommendations?: Maybe<TrelloRecommendationConnection>;
|
|
242185
242581
|
recurrenceRule?: Maybe<Scalars['String']['output']>;
|
|
242186
242582
|
role?: Maybe<TrelloCardRole>;
|
|
242187
242583
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -242217,6 +242613,10 @@ export type TrelloInboxCardPlannerEventsArgs = {
|
|
|
242217
242613
|
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
242218
242614
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242219
242615
|
};
|
|
242616
|
+
export type TrelloInboxCardRecommendationsArgs = {
|
|
242617
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
242618
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
242619
|
+
};
|
|
242220
242620
|
export type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
242221
242621
|
__typename?: 'TrelloInboxCardDeleted';
|
|
242222
242622
|
id: Scalars['ID']['output'];
|
|
@@ -244951,6 +245351,36 @@ export type TrelloReactionLimits = {
|
|
|
244951
245351
|
perAction?: Maybe<TrelloLimitProps>;
|
|
244952
245352
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
244953
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
|
+
};
|
|
244954
245384
|
export type TrelloRefreshManifestInput = {
|
|
244955
245385
|
cardId: Scalars['ID']['input'];
|
|
244956
245386
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -250251,6 +250681,10 @@ export type WebSection = {
|
|
|
250251
250681
|
label?: Maybe<Scalars['String']['output']>;
|
|
250252
250682
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
250253
250683
|
};
|
|
250684
|
+
export type WebTriggerSecretKeyConfigInput = {
|
|
250685
|
+
key: Scalars['String']['input'];
|
|
250686
|
+
noExpiry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
250687
|
+
};
|
|
250254
250688
|
export type WebTriggerUrl = Node & {
|
|
250255
250689
|
__typename?: 'WebTriggerUrl';
|
|
250256
250690
|
appId: Scalars['ID']['output'];
|
|
@@ -250267,8 +250701,7 @@ export type WebTriggerUrlInput = {
|
|
|
250267
250701
|
appId: Scalars['ID']['input'];
|
|
250268
250702
|
contextId: Scalars['ID']['input'];
|
|
250269
250703
|
envId: Scalars['ID']['input'];
|
|
250270
|
-
|
|
250271
|
-
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
250704
|
+
secretKeyConfig?: InputMaybe<WebTriggerSecretKeyConfigInput>;
|
|
250272
250705
|
triggerKey: Scalars['String']['input'];
|
|
250273
250706
|
};
|
|
250274
250707
|
export type WhiteboardFeatures = {
|