@forge/cli-shared 8.23.1-next.3 → 8.23.1-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +1065 -37
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +112 -44
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -0
- package/package.json +1 -1
|
@@ -4944,6 +4944,7 @@ export declare type AdminUnit = {
|
|
|
4944
4944
|
name: Scalars['String']['output'];
|
|
4945
4945
|
orgId: Scalars['ID']['output'];
|
|
4946
4946
|
sites?: Maybe<AdminSiteConnection>;
|
|
4947
|
+
type?: Maybe<AdminUnitType>;
|
|
4947
4948
|
userStats?: Maybe<AdminUnitUserStats>;
|
|
4948
4949
|
};
|
|
4949
4950
|
export declare type AdminUnitAppsArgs = {
|
|
@@ -5015,6 +5016,10 @@ export declare type AdminUnitPageInfo = {
|
|
|
5015
5016
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
5016
5017
|
previousCursor?: Maybe<Scalars['String']['output']>;
|
|
5017
5018
|
};
|
|
5019
|
+
export declare enum AdminUnitType {
|
|
5020
|
+
Production = "PRODUCTION",
|
|
5021
|
+
Sandbox = "SANDBOX"
|
|
5022
|
+
}
|
|
5018
5023
|
export declare type AdminUnitUserStats = {
|
|
5019
5024
|
__typename?: 'AdminUnitUserStats';
|
|
5020
5025
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -5034,7 +5039,8 @@ export declare enum AdminUnitsEligibilityState {
|
|
|
5034
5039
|
UnitsNotEligible = "UNITS_NOT_ELIGIBLE"
|
|
5035
5040
|
}
|
|
5036
5041
|
export declare type AdminUnitsForOrgSearchInput = {
|
|
5037
|
-
name
|
|
5042
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5043
|
+
type?: InputMaybe<AdminUnitType>;
|
|
5038
5044
|
};
|
|
5039
5045
|
export declare type AdminUnitsForOrgSortInput = {
|
|
5040
5046
|
name: SortDirection;
|
|
@@ -7124,7 +7130,6 @@ export declare type AgentWorkspaceAgentShifts = {
|
|
|
7124
7130
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
7125
7131
|
agent: AgentWorkspaceAgent;
|
|
7126
7132
|
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7127
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7128
7133
|
coveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7129
7134
|
hasShifts: Scalars['Boolean']['output'];
|
|
7130
7135
|
shifts: Array<AgentWorkspaceShift>;
|
|
@@ -7448,17 +7453,6 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7448
7453
|
projectId: Scalars['ID']['output'];
|
|
7449
7454
|
updatedAt: Scalars['DateTime']['output'];
|
|
7450
7455
|
};
|
|
7451
|
-
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7452
|
-
agentId: Scalars['ID']['input'];
|
|
7453
|
-
coveringShiftId: Scalars['ID']['input'];
|
|
7454
|
-
projectARI: Scalars['ID']['input'];
|
|
7455
|
-
scheduleId: Scalars['ID']['input'];
|
|
7456
|
-
};
|
|
7457
|
-
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7458
|
-
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
7459
|
-
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7460
|
-
success: Scalars['Boolean']['output'];
|
|
7461
|
-
};
|
|
7462
7456
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7463
7457
|
cloudId: Scalars['ID']['input'];
|
|
7464
7458
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7484,6 +7478,16 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7484
7478
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7485
7479
|
success: Scalars['Boolean']['output'];
|
|
7486
7480
|
};
|
|
7481
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTableInput = {
|
|
7482
|
+
cloudId: Scalars['ID']['input'];
|
|
7483
|
+
projectKey: Scalars['String']['input'];
|
|
7484
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7485
|
+
};
|
|
7486
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7487
|
+
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7488
|
+
entriesDeleted: Scalars['Int']['output'];
|
|
7489
|
+
serviceFieldId: Scalars['String']['output'];
|
|
7490
|
+
};
|
|
7487
7491
|
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7488
7492
|
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7489
7493
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
@@ -7690,11 +7694,6 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
|
7690
7694
|
excludedAgents: Array<AgentWorkspaceExcludedAgent>;
|
|
7691
7695
|
recommendedAgents: Array<AgentWorkspaceAgent>;
|
|
7692
7696
|
};
|
|
7693
|
-
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7694
|
-
originalAgentId: Scalars['ID']['input'];
|
|
7695
|
-
projectARI: Scalars['ID']['input'];
|
|
7696
|
-
scheduleId: Scalars['ID']['input'];
|
|
7697
|
-
};
|
|
7698
7697
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
7699
7698
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
7700
7699
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7828,7 +7827,6 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7828
7827
|
agents: Array<AgentWorkspaceAgent>;
|
|
7829
7828
|
cloudId: Scalars['ID']['output'];
|
|
7830
7829
|
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7831
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7832
7830
|
createdAt: Scalars['DateTime']['output'];
|
|
7833
7831
|
createdBy: Scalars['String']['output'];
|
|
7834
7832
|
createdByUser?: Maybe<User>;
|
|
@@ -7863,9 +7861,11 @@ export declare type AgentWorkspaceScheduleError = {
|
|
|
7863
7861
|
message: Scalars['String']['output'];
|
|
7864
7862
|
};
|
|
7865
7863
|
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
7864
|
+
AgentMismatch = "AGENT_MISMATCH",
|
|
7866
7865
|
AgentNotFound = "AGENT_NOT_FOUND",
|
|
7867
7866
|
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
7868
7867
|
ConcurrentModification = "CONCURRENT_MODIFICATION",
|
|
7868
|
+
CoveringShiftNotFound = "COVERING_SHIFT_NOT_FOUND",
|
|
7869
7869
|
Forbidden = "FORBIDDEN",
|
|
7870
7870
|
InternalError = "INTERNAL_ERROR",
|
|
7871
7871
|
InvalidGapWindow = "INVALID_GAP_WINDOW",
|
|
@@ -8387,7 +8387,7 @@ export declare type AgentWorkspaceUpdateSkillMappingsInProjectInput = {
|
|
|
8387
8387
|
export declare type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
8388
8388
|
__typename?: 'AgentWorkspaceUpdateSkillMappingsInProjectPayload';
|
|
8389
8389
|
errors?: Maybe<Array<MutationError>>;
|
|
8390
|
-
|
|
8390
|
+
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
8391
8391
|
success: Scalars['Boolean']['output'];
|
|
8392
8392
|
};
|
|
8393
8393
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
@@ -8514,7 +8514,8 @@ export declare enum AiCoreApiRsaQueryType {
|
|
|
8514
8514
|
Employee = "EMPLOYEE",
|
|
8515
8515
|
Funnel = "FUNNEL",
|
|
8516
8516
|
Resolved = "RESOLVED",
|
|
8517
|
-
RtDistribution = "RT_DISTRIBUTION"
|
|
8517
|
+
RtDistribution = "RT_DISTRIBUTION",
|
|
8518
|
+
SkillGap = "SKILL_GAP"
|
|
8518
8519
|
}
|
|
8519
8520
|
export declare type AiCoreApiRsaReportInput = {
|
|
8520
8521
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8536,10 +8537,12 @@ export declare type AiCoreApiRsaReportPayload = {
|
|
|
8536
8537
|
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8537
8538
|
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8538
8539
|
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8540
|
+
skillGap?: Maybe<AiCoreApiRsaSkillGapResult>;
|
|
8539
8541
|
status: AiCoreApiRsaJobStatus;
|
|
8540
8542
|
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8541
8543
|
};
|
|
8542
8544
|
export declare enum AiCoreApiRsaReportType {
|
|
8545
|
+
Insight = "INSIGHT",
|
|
8543
8546
|
Overview = "OVERVIEW"
|
|
8544
8547
|
}
|
|
8545
8548
|
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
@@ -8561,6 +8564,22 @@ export declare type AiCoreApiRsaRtDistributionResult = {
|
|
|
8561
8564
|
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8562
8565
|
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8563
8566
|
};
|
|
8567
|
+
export declare type AiCoreApiRsaSkill = {
|
|
8568
|
+
__typename?: 'AiCoreApiRsaSkill';
|
|
8569
|
+
name: Scalars['String']['output'];
|
|
8570
|
+
totalTickets: Scalars['Int']['output'];
|
|
8571
|
+
};
|
|
8572
|
+
export declare type AiCoreApiRsaSkillGapItem = {
|
|
8573
|
+
__typename?: 'AiCoreApiRsaSkillGapItem';
|
|
8574
|
+
requestType: Scalars['String']['output'];
|
|
8575
|
+
skills: Array<AiCoreApiRsaSkill>;
|
|
8576
|
+
tool: Scalars['String']['output'];
|
|
8577
|
+
totalTickets: Scalars['Int']['output'];
|
|
8578
|
+
};
|
|
8579
|
+
export declare type AiCoreApiRsaSkillGapResult = {
|
|
8580
|
+
__typename?: 'AiCoreApiRsaSkillGapResult';
|
|
8581
|
+
items: Array<AiCoreApiRsaSkillGapItem>;
|
|
8582
|
+
};
|
|
8564
8583
|
export declare type AiCoreApiVsaQuestions = {
|
|
8565
8584
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
8566
8585
|
projectAri: Scalars['ID']['output'];
|
|
@@ -12692,6 +12711,12 @@ export declare type AssetsDmObjectsReportAttributeByDs = {
|
|
|
12692
12711
|
rows: Array<Scalars['JSON']['output']>;
|
|
12693
12712
|
rowsCount: Scalars['Int']['output'];
|
|
12694
12713
|
};
|
|
12714
|
+
export declare type AssetsDmObjectsReportAttributePie = {
|
|
12715
|
+
__typename?: 'AssetsDMObjectsReportAttributePie';
|
|
12716
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
12717
|
+
rows?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
12718
|
+
rowsCount?: Maybe<Scalars['Int']['output']>;
|
|
12719
|
+
};
|
|
12695
12720
|
export declare type AssetsDmObjectsReportDsByDs = {
|
|
12696
12721
|
__typename?: 'AssetsDMObjectsReportDsByDs';
|
|
12697
12722
|
columns: Array<Scalars['String']['output']>;
|
|
@@ -19323,6 +19348,7 @@ export declare enum CommerceExpApprovalDeskStatus {
|
|
|
19323
19348
|
}
|
|
19324
19349
|
export declare type CommerceExpApprovalDeskTask = {
|
|
19325
19350
|
__typename?: 'CommerceExpApprovalDeskTask';
|
|
19351
|
+
assignee?: Maybe<User>;
|
|
19326
19352
|
assigneeId?: Maybe<Scalars['ID']['output']>;
|
|
19327
19353
|
businessKey?: Maybe<Scalars['String']['output']>;
|
|
19328
19354
|
children?: Maybe<Array<Maybe<CommerceExpApprovalDeskTask>>>;
|
|
@@ -19332,6 +19358,7 @@ export declare type CommerceExpApprovalDeskTask = {
|
|
|
19332
19358
|
issueType?: Maybe<Scalars['String']['output']>;
|
|
19333
19359
|
key?: Maybe<Scalars['String']['output']>;
|
|
19334
19360
|
parentKey?: Maybe<Scalars['String']['output']>;
|
|
19361
|
+
reporter?: Maybe<User>;
|
|
19335
19362
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
19336
19363
|
requestId?: Maybe<Scalars['String']['output']>;
|
|
19337
19364
|
resolutionDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -31989,6 +32016,7 @@ export declare type ConfluenceNbmVerificationEntry = {
|
|
|
31989
32016
|
error?: Maybe<Scalars['String']['output']>;
|
|
31990
32017
|
id: Scalars['ID']['output'];
|
|
31991
32018
|
manualState?: Maybe<ConfluenceNbmCategoryTypes>;
|
|
32019
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
31992
32020
|
originalPageId?: Maybe<Scalars['ID']['output']>;
|
|
31993
32021
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
31994
32022
|
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -46041,6 +46069,13 @@ export declare type ExternalCalendarEventAttachment = {
|
|
|
46041
46069
|
title?: Maybe<Scalars['String']['output']>;
|
|
46042
46070
|
url?: Maybe<Scalars['String']['output']>;
|
|
46043
46071
|
};
|
|
46072
|
+
export declare type ExternalCall = {
|
|
46073
|
+
__typename?: 'ExternalCall';
|
|
46074
|
+
durationInSeconds?: Maybe<Scalars['Int']['output']>;
|
|
46075
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
46076
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
46077
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
46078
|
+
};
|
|
46044
46079
|
export declare type ExternalCampaign = Node & {
|
|
46045
46080
|
__typename?: 'ExternalCampaign';
|
|
46046
46081
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -47607,11 +47642,14 @@ export declare enum ExternalVulnerabilityType {
|
|
|
47607
47642
|
}
|
|
47608
47643
|
export declare type ExternalWorkItem = Node & {
|
|
47609
47644
|
__typename?: 'ExternalWorkItem';
|
|
47645
|
+
activityType?: Maybe<Scalars['String']['output']>;
|
|
47610
47646
|
assignee?: Maybe<ExternalUser>;
|
|
47611
47647
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47612
47648
|
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
47649
|
+
call?: Maybe<ExternalCall>;
|
|
47613
47650
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
47614
47651
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47652
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
47615
47653
|
container?: Maybe<ExternalEntity>;
|
|
47616
47654
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47617
47655
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -47619,10 +47657,12 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47619
47657
|
description?: Maybe<Scalars['String']['output']>;
|
|
47620
47658
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47621
47659
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
47660
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47622
47661
|
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
47623
47662
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
47624
47663
|
id: Scalars['ID']['output'];
|
|
47625
47664
|
impact?: Maybe<Scalars['String']['output']>;
|
|
47665
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
47626
47666
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
47627
47667
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47628
47668
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
@@ -47632,8 +47672,10 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47632
47672
|
priority?: Maybe<Scalars['String']['output']>;
|
|
47633
47673
|
project?: Maybe<ExternalProject>;
|
|
47634
47674
|
provider?: Maybe<ExternalProvider>;
|
|
47675
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
47635
47676
|
status?: Maybe<Scalars['String']['output']>;
|
|
47636
47677
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
47678
|
+
taskType?: Maybe<Scalars['String']['output']>;
|
|
47637
47679
|
team?: Maybe<Scalars['String']['output']>;
|
|
47638
47680
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47639
47681
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -47677,8 +47719,11 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
47677
47719
|
export declare type ExternalWorker = Node & {
|
|
47678
47720
|
__typename?: 'ExternalWorker';
|
|
47679
47721
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47722
|
+
container?: Maybe<ExternalEntity>;
|
|
47723
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47680
47724
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
47681
47725
|
createdBy?: Maybe<ExternalUser>;
|
|
47726
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
47682
47727
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47683
47728
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47684
47729
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -47687,6 +47732,8 @@ export declare type ExternalWorker = Node & {
|
|
|
47687
47732
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47688
47733
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47689
47734
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47735
|
+
parent?: Maybe<ExternalEntity>;
|
|
47736
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47690
47737
|
provider?: Maybe<ExternalProvider>;
|
|
47691
47738
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47692
47739
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -49274,6 +49321,7 @@ export declare enum GrantCheckProduct {
|
|
|
49274
49321
|
Goal = "GOAL",
|
|
49275
49322
|
Jira = "JIRA",
|
|
49276
49323
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
49324
|
+
Loom = "LOOM",
|
|
49277
49325
|
Mercury = "MERCURY",
|
|
49278
49326
|
NoGrantChecks = "NO_GRANT_CHECKS",
|
|
49279
49327
|
Townsquare = "TOWNSQUARE"
|
|
@@ -54079,6 +54127,14 @@ export declare type GraphStore = {
|
|
|
54079
54127
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
54080
54128
|
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
54081
54129
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
54130
|
+
graphDocumentReplicates3pDocumentGoogleDriveDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection>;
|
|
54131
|
+
graphDocumentReplicates3pDocumentGoogleDriveOtherInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection>;
|
|
54132
|
+
graphDocumentReplicates3pDocumentGoogleDrivePdfInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection>;
|
|
54133
|
+
graphDocumentReplicates3pDocumentGoogleDrivePresentationInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection>;
|
|
54134
|
+
graphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection>;
|
|
54135
|
+
graphDocumentReplicates3pDocumentOnedriveInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection>;
|
|
54136
|
+
graphDocumentReplicates3pDocumentSharepointInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection>;
|
|
54137
|
+
graphEntityReplicates3pEntityComplementInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection>;
|
|
54082
54138
|
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
54083
54139
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
54084
54140
|
groupCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceInverseConnection>;
|
|
@@ -54188,6 +54244,10 @@ export declare type GraphStore = {
|
|
|
54188
54244
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
54189
54245
|
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
54190
54246
|
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
54247
|
+
jiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection>;
|
|
54248
|
+
jiraEntityDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection>;
|
|
54249
|
+
jiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection>;
|
|
54250
|
+
jiraEntityHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
54191
54251
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
54192
54252
|
jiraEpicContributesToAtlasGoalBatch?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalConnection>;
|
|
54193
54253
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
@@ -57742,6 +57802,70 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
57742
57802
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57743
57803
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
57744
57804
|
};
|
|
57805
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseArgs = {
|
|
57806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57807
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57808
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57809
|
+
id: Scalars['ID']['input'];
|
|
57810
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57811
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput>;
|
|
57812
|
+
};
|
|
57813
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseArgs = {
|
|
57814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57815
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57817
|
+
id: Scalars['ID']['input'];
|
|
57818
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57819
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput>;
|
|
57820
|
+
};
|
|
57821
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseArgs = {
|
|
57822
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57823
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57824
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57825
|
+
id: Scalars['ID']['input'];
|
|
57826
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57827
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput>;
|
|
57828
|
+
};
|
|
57829
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseArgs = {
|
|
57830
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57831
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57832
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57833
|
+
id: Scalars['ID']['input'];
|
|
57834
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57835
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput>;
|
|
57836
|
+
};
|
|
57837
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseArgs = {
|
|
57838
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57839
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57841
|
+
id: Scalars['ID']['input'];
|
|
57842
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57843
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput>;
|
|
57844
|
+
};
|
|
57845
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveInverseArgs = {
|
|
57846
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57847
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57848
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57849
|
+
id: Scalars['ID']['input'];
|
|
57850
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57851
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput>;
|
|
57852
|
+
};
|
|
57853
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointInverseArgs = {
|
|
57854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57855
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57856
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57857
|
+
id: Scalars['ID']['input'];
|
|
57858
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57859
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput>;
|
|
57860
|
+
};
|
|
57861
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementInverseArgs = {
|
|
57862
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57863
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57865
|
+
id: Scalars['ID']['input'];
|
|
57866
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57867
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntityComplementSortInput>;
|
|
57868
|
+
};
|
|
57745
57869
|
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
57746
57870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57747
57871
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58544,6 +58668,38 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
|
58544
58668
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58545
58669
|
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
58546
58670
|
};
|
|
58671
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
58672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58673
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58675
|
+
id: Scalars['ID']['input'];
|
|
58676
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58677
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58678
|
+
};
|
|
58679
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityInverseArgs = {
|
|
58680
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58681
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58682
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58683
|
+
id: Scalars['ID']['input'];
|
|
58684
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58685
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58686
|
+
};
|
|
58687
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
58688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58689
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58691
|
+
id: Scalars['ID']['input'];
|
|
58692
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58693
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58694
|
+
};
|
|
58695
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
58696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58697
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58699
|
+
id: Scalars['ID']['input'];
|
|
58700
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58701
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58702
|
+
};
|
|
58547
58703
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
58548
58704
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58549
58705
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66011,6 +66167,47 @@ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelations
|
|
|
66011
66167
|
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
66012
66168
|
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
66013
66169
|
};
|
|
66170
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66171
|
+
relationships: Array<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66172
|
+
};
|
|
66173
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66174
|
+
__typename?: 'GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66176
|
+
success: Scalars['Boolean']['output'];
|
|
66177
|
+
};
|
|
66178
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
66179
|
+
from: Scalars['ID']['input'];
|
|
66180
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66181
|
+
to: Scalars['ID']['input'];
|
|
66182
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66183
|
+
};
|
|
66184
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
66185
|
+
relationships: Array<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
66186
|
+
};
|
|
66187
|
+
export declare enum GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
66188
|
+
Accepted = "ACCEPTED",
|
|
66189
|
+
NotSet = "NOT_SET",
|
|
66190
|
+
UserAdded = "USER_ADDED"
|
|
66191
|
+
}
|
|
66192
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
66193
|
+
__typename?: 'GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
66194
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66195
|
+
success: Scalars['Boolean']['output'];
|
|
66196
|
+
};
|
|
66197
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
66198
|
+
from: Scalars['ID']['input'];
|
|
66199
|
+
objectMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
66200
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
66201
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66202
|
+
to: Scalars['ID']['input'];
|
|
66203
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66204
|
+
};
|
|
66205
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
66206
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66207
|
+
};
|
|
66208
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
66209
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66210
|
+
};
|
|
66014
66211
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
66015
66212
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
66016
66213
|
};
|
|
@@ -66767,6 +66964,32 @@ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelations
|
|
|
66767
66964
|
from: Scalars['ID']['input'];
|
|
66768
66965
|
to: Scalars['ID']['input'];
|
|
66769
66966
|
};
|
|
66967
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66968
|
+
relationships: Array<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66969
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66970
|
+
};
|
|
66971
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66972
|
+
__typename?: 'GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66974
|
+
success: Scalars['Boolean']['output'];
|
|
66975
|
+
};
|
|
66976
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
66977
|
+
from: Scalars['ID']['input'];
|
|
66978
|
+
to: Scalars['ID']['input'];
|
|
66979
|
+
};
|
|
66980
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
66981
|
+
relationships: Array<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
66982
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66983
|
+
};
|
|
66984
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
66985
|
+
__typename?: 'GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
66986
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66987
|
+
success: Scalars['Boolean']['output'];
|
|
66988
|
+
};
|
|
66989
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
66990
|
+
from: Scalars['ID']['input'];
|
|
66991
|
+
to: Scalars['ID']['input'];
|
|
66992
|
+
};
|
|
66770
66993
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
66771
66994
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
66772
66995
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70748,6 +70971,30 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
70748
70971
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
70749
70972
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70750
70973
|
};
|
|
70974
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput = {
|
|
70975
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70976
|
+
};
|
|
70977
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput = {
|
|
70978
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70979
|
+
};
|
|
70980
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput = {
|
|
70981
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70982
|
+
};
|
|
70983
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput = {
|
|
70984
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70985
|
+
};
|
|
70986
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput = {
|
|
70987
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70988
|
+
};
|
|
70989
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput = {
|
|
70990
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70991
|
+
};
|
|
70992
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput = {
|
|
70993
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70994
|
+
};
|
|
70995
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementSortInput = {
|
|
70996
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70997
|
+
};
|
|
70751
70998
|
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
70752
70999
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70753
71000
|
};
|
|
@@ -71030,6 +71277,20 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
|
71030
71277
|
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
71031
71278
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71032
71279
|
};
|
|
71280
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput = {
|
|
71281
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71282
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71283
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71284
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71285
|
+
};
|
|
71286
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput = {
|
|
71287
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71288
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71289
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71290
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71291
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71292
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71293
|
+
};
|
|
71033
71294
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
71034
71295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71035
71296
|
};
|
|
@@ -71190,6 +71451,8 @@ export declare type GraphStoreMutation = {
|
|
|
71190
71451
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
71191
71452
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
71192
71453
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
71454
|
+
createJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71455
|
+
createJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
71193
71456
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
71194
71457
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
71195
71458
|
createMeetingHasJiraProject?: Maybe<GraphStoreCreateMeetingHasJiraProjectPayload>;
|
|
@@ -71224,6 +71487,8 @@ export declare type GraphStoreMutation = {
|
|
|
71224
71487
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
71225
71488
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
71226
71489
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
71490
|
+
deleteJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71491
|
+
deleteJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
71227
71492
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
71228
71493
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
71229
71494
|
deleteMeetingHasJiraProject?: Maybe<GraphStoreDeleteMeetingHasJiraProjectPayload>;
|
|
@@ -71273,6 +71538,12 @@ export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
|
71273
71538
|
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
71274
71539
|
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
71275
71540
|
};
|
|
71541
|
+
export declare type GraphStoreMutationCreateJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71542
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71543
|
+
};
|
|
71544
|
+
export declare type GraphStoreMutationCreateJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71545
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71546
|
+
};
|
|
71276
71547
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
71277
71548
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
71278
71549
|
};
|
|
@@ -71375,6 +71646,12 @@ export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
|
71375
71646
|
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
71376
71647
|
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
71377
71648
|
};
|
|
71649
|
+
export declare type GraphStoreMutationDeleteJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71650
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71651
|
+
};
|
|
71652
|
+
export declare type GraphStoreMutationDeleteJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71653
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71654
|
+
};
|
|
71378
71655
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
71379
71656
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
71380
71657
|
};
|
|
@@ -76591,6 +76868,118 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
76591
76868
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
76592
76869
|
};
|
|
76593
76870
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76871
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection = HasPageInfo & {
|
|
76872
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection';
|
|
76873
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge>>>;
|
|
76874
|
+
pageInfo: PageInfo;
|
|
76875
|
+
};
|
|
76876
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge = {
|
|
76877
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge';
|
|
76878
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76880
|
+
id: Scalars['ID']['output'];
|
|
76881
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76882
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion>;
|
|
76883
|
+
};
|
|
76884
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76885
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection = HasPageInfo & {
|
|
76886
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection';
|
|
76887
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge>>>;
|
|
76888
|
+
pageInfo: PageInfo;
|
|
76889
|
+
};
|
|
76890
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge = {
|
|
76891
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge';
|
|
76892
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76893
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76894
|
+
id: Scalars['ID']['output'];
|
|
76895
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76896
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion>;
|
|
76897
|
+
};
|
|
76898
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76899
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection = HasPageInfo & {
|
|
76900
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection';
|
|
76901
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge>>>;
|
|
76902
|
+
pageInfo: PageInfo;
|
|
76903
|
+
};
|
|
76904
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge = {
|
|
76905
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge';
|
|
76906
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76907
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76908
|
+
id: Scalars['ID']['output'];
|
|
76909
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76910
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion>;
|
|
76911
|
+
};
|
|
76912
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76913
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection = HasPageInfo & {
|
|
76914
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection';
|
|
76915
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge>>>;
|
|
76916
|
+
pageInfo: PageInfo;
|
|
76917
|
+
};
|
|
76918
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge = {
|
|
76919
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge';
|
|
76920
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76921
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76922
|
+
id: Scalars['ID']['output'];
|
|
76923
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76924
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion>;
|
|
76925
|
+
};
|
|
76926
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76927
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection = HasPageInfo & {
|
|
76928
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection';
|
|
76929
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge>>>;
|
|
76930
|
+
pageInfo: PageInfo;
|
|
76931
|
+
};
|
|
76932
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge = {
|
|
76933
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge';
|
|
76934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76935
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76936
|
+
id: Scalars['ID']['output'];
|
|
76937
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76938
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion>;
|
|
76939
|
+
};
|
|
76940
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76941
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection = HasPageInfo & {
|
|
76942
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection';
|
|
76943
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge>>>;
|
|
76944
|
+
pageInfo: PageInfo;
|
|
76945
|
+
};
|
|
76946
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge = {
|
|
76947
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge';
|
|
76948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76949
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76950
|
+
id: Scalars['ID']['output'];
|
|
76951
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76952
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion>;
|
|
76953
|
+
};
|
|
76954
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76955
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection = HasPageInfo & {
|
|
76956
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection';
|
|
76957
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge>>>;
|
|
76958
|
+
pageInfo: PageInfo;
|
|
76959
|
+
};
|
|
76960
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge = {
|
|
76961
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge';
|
|
76962
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76963
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76964
|
+
id: Scalars['ID']['output'];
|
|
76965
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76966
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion>;
|
|
76967
|
+
};
|
|
76968
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76969
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection = HasPageInfo & {
|
|
76970
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection';
|
|
76971
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge>>>;
|
|
76972
|
+
pageInfo: PageInfo;
|
|
76973
|
+
};
|
|
76974
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge = {
|
|
76975
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge';
|
|
76976
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76977
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76978
|
+
id: Scalars['ID']['output'];
|
|
76979
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76980
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion>;
|
|
76981
|
+
};
|
|
76982
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
76594
76983
|
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
76595
76984
|
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
76596
76985
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
@@ -77485,6 +77874,70 @@ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInver
|
|
|
77485
77874
|
};
|
|
77486
77875
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
77487
77876
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
77877
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77878
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection';
|
|
77879
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge>>>;
|
|
77880
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77881
|
+
pageInfo: PageInfo;
|
|
77882
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77883
|
+
};
|
|
77884
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge = {
|
|
77885
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge';
|
|
77886
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77887
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77888
|
+
id: Scalars['ID']['output'];
|
|
77889
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77890
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityUnion>;
|
|
77891
|
+
};
|
|
77892
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77893
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection';
|
|
77894
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
77895
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77896
|
+
pageInfo: PageInfo;
|
|
77897
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77898
|
+
};
|
|
77899
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge = {
|
|
77900
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge';
|
|
77901
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77902
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77903
|
+
id: Scalars['ID']['output'];
|
|
77904
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77905
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion>;
|
|
77906
|
+
};
|
|
77907
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77908
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
77909
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77910
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection';
|
|
77911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
77912
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77913
|
+
pageInfo: PageInfo;
|
|
77914
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77915
|
+
};
|
|
77916
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge = {
|
|
77917
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge';
|
|
77918
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77919
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77920
|
+
id: Scalars['ID']['output'];
|
|
77921
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77922
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityUnion>;
|
|
77923
|
+
};
|
|
77924
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77925
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
77926
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
77927
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77928
|
+
pageInfo: PageInfo;
|
|
77929
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77930
|
+
};
|
|
77931
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
77932
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
77933
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77934
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77935
|
+
id: Scalars['ID']['output'];
|
|
77936
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77937
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
77938
|
+
};
|
|
77939
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77940
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
77488
77941
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
77489
77942
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
77490
77943
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -86220,11 +86673,19 @@ export declare type GraphStoreV2 = {
|
|
|
86220
86673
|
externalDeploymentLinksExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalDeploymentInverseConnection>;
|
|
86221
86674
|
externalDeploymentLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryConnection>;
|
|
86222
86675
|
externalDeploymentLinksExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseConnection>;
|
|
86676
|
+
externalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86677
|
+
externalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection>;
|
|
86678
|
+
externalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection>;
|
|
86679
|
+
externalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection>;
|
|
86680
|
+
externalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection>;
|
|
86223
86681
|
externalDocumentHasChildExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection>;
|
|
86224
86682
|
externalDocumentHasChildExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentInverseConnection>;
|
|
86225
86683
|
externalDocumentHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceConnection>;
|
|
86226
86684
|
externalDocumentHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceInverseConnection>;
|
|
86227
86685
|
externalDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86686
|
+
externalDocumentOnedriveLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection>;
|
|
86687
|
+
externalDocumentSharepointLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection>;
|
|
86688
|
+
externalEntityComplementLinksThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection>;
|
|
86228
86689
|
externalEntityIsThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection>;
|
|
86229
86690
|
externalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection>;
|
|
86230
86691
|
externalMeetingRecurrenceHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceInverseConnection>;
|
|
@@ -86567,6 +87028,8 @@ export declare type GraphStoreV2 = {
|
|
|
86567
87028
|
jiraWorkItemCommentHasChildJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection>;
|
|
86568
87029
|
jiraWorkItemContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection>;
|
|
86569
87030
|
jiraWorkItemContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseConnection>;
|
|
87031
|
+
jiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection>;
|
|
87032
|
+
jiraWorkItemDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection>;
|
|
86570
87033
|
jiraWorkItemHasAtlassianAutodevJob?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection>;
|
|
86571
87034
|
jiraWorkItemHasAtlassianAutodevJobInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobInverseConnection>;
|
|
86572
87035
|
jiraWorkItemHasChangedJiraPriority?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasChangedJiraPriorityConnection>;
|
|
@@ -86579,6 +87042,8 @@ export declare type GraphStoreV2 = {
|
|
|
86579
87042
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
86580
87043
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
86581
87044
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
87045
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
87046
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
86582
87047
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
86583
87048
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
86584
87049
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -89397,6 +89862,41 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositoryInverse
|
|
|
89397
89862
|
id: Scalars['ID']['input'];
|
|
89398
89863
|
sort?: InputMaybe<GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput>;
|
|
89399
89864
|
};
|
|
89865
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseArgs = {
|
|
89866
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89867
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89868
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89869
|
+
id: Scalars['ID']['input'];
|
|
89870
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput>;
|
|
89871
|
+
};
|
|
89872
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseArgs = {
|
|
89873
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89874
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89876
|
+
id: Scalars['ID']['input'];
|
|
89877
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput>;
|
|
89878
|
+
};
|
|
89879
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseArgs = {
|
|
89880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89881
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89882
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89883
|
+
id: Scalars['ID']['input'];
|
|
89884
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput>;
|
|
89885
|
+
};
|
|
89886
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseArgs = {
|
|
89887
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89888
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89890
|
+
id: Scalars['ID']['input'];
|
|
89891
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput>;
|
|
89892
|
+
};
|
|
89893
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseArgs = {
|
|
89894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89897
|
+
id: Scalars['ID']['input'];
|
|
89898
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput>;
|
|
89899
|
+
};
|
|
89400
89900
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentArgs = {
|
|
89401
89901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89402
89902
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89432,6 +89932,27 @@ export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentInverseAr
|
|
|
89432
89932
|
id: Scalars['ID']['input'];
|
|
89433
89933
|
sort?: InputMaybe<GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput>;
|
|
89434
89934
|
};
|
|
89935
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentInverseArgs = {
|
|
89936
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89937
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89939
|
+
id: Scalars['ID']['input'];
|
|
89940
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput>;
|
|
89941
|
+
};
|
|
89942
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentInverseArgs = {
|
|
89943
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89944
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89946
|
+
id: Scalars['ID']['input'];
|
|
89947
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput>;
|
|
89948
|
+
};
|
|
89949
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntityInverseArgs = {
|
|
89950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89951
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89953
|
+
id: Scalars['ID']['input'];
|
|
89954
|
+
sort?: InputMaybe<GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput>;
|
|
89955
|
+
};
|
|
89435
89956
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntityInverseArgs = {
|
|
89436
89957
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89437
89958
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91862,6 +92383,20 @@ export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalInverseArg
|
|
|
91862
92383
|
id: Scalars['ID']['input'];
|
|
91863
92384
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput>;
|
|
91864
92385
|
};
|
|
92386
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
92387
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92388
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92389
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92390
|
+
id: Scalars['ID']['input'];
|
|
92391
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92392
|
+
};
|
|
92393
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityInverseArgs = {
|
|
92394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92395
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92396
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92397
|
+
id: Scalars['ID']['input'];
|
|
92398
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92399
|
+
};
|
|
91865
92400
|
export declare type GraphStoreV2JiraWorkItemHasAtlassianAutodevJobArgs = {
|
|
91866
92401
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91867
92402
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91948,6 +92483,20 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
91948
92483
|
id: Scalars['ID']['input'];
|
|
91949
92484
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
91950
92485
|
};
|
|
92486
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
92487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92490
|
+
id: Scalars['ID']['input'];
|
|
92491
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92492
|
+
};
|
|
92493
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
92494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92495
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92497
|
+
id: Scalars['ID']['input'];
|
|
92498
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92499
|
+
};
|
|
91951
92500
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
91952
92501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91953
92502
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -93375,6 +93924,47 @@ export declare type GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload
|
|
|
93375
93924
|
errors?: Maybe<Array<MutationError>>;
|
|
93376
93925
|
success: Scalars['Boolean']['output'];
|
|
93377
93926
|
};
|
|
93927
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
93928
|
+
from: Scalars['ID']['input'];
|
|
93929
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93930
|
+
to: Scalars['ID']['input'];
|
|
93931
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93932
|
+
};
|
|
93933
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
93934
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
93935
|
+
};
|
|
93936
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
93937
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
93938
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93939
|
+
success: Scalars['Boolean']['output'];
|
|
93940
|
+
};
|
|
93941
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
93942
|
+
from: Scalars['ID']['input'];
|
|
93943
|
+
objectMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
93944
|
+
relationshipMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
93945
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93946
|
+
to: Scalars['ID']['input'];
|
|
93947
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93948
|
+
};
|
|
93949
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
93950
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
93951
|
+
};
|
|
93952
|
+
export declare enum GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
93953
|
+
Accepted = "ACCEPTED",
|
|
93954
|
+
NotSet = "NOT_SET",
|
|
93955
|
+
UserAdded = "USER_ADDED"
|
|
93956
|
+
}
|
|
93957
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
93958
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
93959
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93960
|
+
success: Scalars['Boolean']['output'];
|
|
93961
|
+
};
|
|
93962
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
93963
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93964
|
+
};
|
|
93965
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
93966
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93967
|
+
};
|
|
93378
93968
|
export declare type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
93379
93969
|
from: Scalars['ID']['input'];
|
|
93380
93970
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -93909,6 +94499,30 @@ export declare type GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload
|
|
|
93909
94499
|
errors?: Maybe<Array<MutationError>>;
|
|
93910
94500
|
success: Scalars['Boolean']['output'];
|
|
93911
94501
|
};
|
|
94502
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
94503
|
+
from: Scalars['ID']['input'];
|
|
94504
|
+
to: Scalars['ID']['input'];
|
|
94505
|
+
};
|
|
94506
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
94507
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
94508
|
+
};
|
|
94509
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
94510
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
94511
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94512
|
+
success: Scalars['Boolean']['output'];
|
|
94513
|
+
};
|
|
94514
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
94515
|
+
from: Scalars['ID']['input'];
|
|
94516
|
+
to: Scalars['ID']['input'];
|
|
94517
|
+
};
|
|
94518
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
94519
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
94520
|
+
};
|
|
94521
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
94522
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
94523
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94524
|
+
success: Scalars['Boolean']['output'];
|
|
94525
|
+
};
|
|
93912
94526
|
export declare type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
93913
94527
|
from: Scalars['ID']['input'];
|
|
93914
94528
|
to: Scalars['ID']['input'];
|
|
@@ -94116,6 +94730,21 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalDeploymentSortInp
|
|
|
94116
94730
|
export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput = {
|
|
94117
94731
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94118
94732
|
};
|
|
94733
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput = {
|
|
94734
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94735
|
+
};
|
|
94736
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput = {
|
|
94737
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94738
|
+
};
|
|
94739
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput = {
|
|
94740
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94741
|
+
};
|
|
94742
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput = {
|
|
94743
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94744
|
+
};
|
|
94745
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput = {
|
|
94746
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94747
|
+
};
|
|
94119
94748
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentSortInput = {
|
|
94120
94749
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94121
94750
|
};
|
|
@@ -94125,6 +94754,15 @@ export declare type GraphStoreV2ExternalDocumentHasExternalSpaceSortInput = {
|
|
|
94125
94754
|
export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput = {
|
|
94126
94755
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94127
94756
|
};
|
|
94757
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput = {
|
|
94758
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94759
|
+
};
|
|
94760
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput = {
|
|
94761
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94762
|
+
};
|
|
94763
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput = {
|
|
94764
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94765
|
+
};
|
|
94128
94766
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput = {
|
|
94129
94767
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94130
94768
|
};
|
|
@@ -95499,6 +96137,12 @@ export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSo
|
|
|
95499
96137
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput = {
|
|
95500
96138
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95501
96139
|
};
|
|
96140
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput = {
|
|
96141
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96142
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96143
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96144
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96145
|
+
};
|
|
95502
96146
|
export declare enum GraphStoreV2JiraWorkItemHasAtlassianAutodevJobAutodevJobStatus {
|
|
95503
96147
|
Cancelled = "CANCELLED",
|
|
95504
96148
|
Completed = "COMPLETED",
|
|
@@ -95552,6 +96196,14 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
95552
96196
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
95553
96197
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95554
96198
|
};
|
|
96199
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
96200
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96201
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96202
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96203
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96204
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96205
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96206
|
+
};
|
|
95555
96207
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
95556
96208
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95557
96209
|
};
|
|
@@ -95866,6 +96518,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95866
96518
|
createJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluencePagePayload>;
|
|
95867
96519
|
createJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95868
96520
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96521
|
+
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96522
|
+
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95869
96523
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95870
96524
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95871
96525
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95895,6 +96549,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95895
96549
|
deleteJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluencePagePayload>;
|
|
95896
96550
|
deleteJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95897
96551
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96552
|
+
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96553
|
+
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95898
96554
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95899
96555
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95900
96556
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95965,6 +96621,12 @@ export declare type GraphStoreV2MutationCreateJiraSprintHasRetroConfluenceWhiteb
|
|
|
95965
96621
|
export declare type GraphStoreV2MutationCreateJiraVersionLinksExternalFeatureFlagArgs = {
|
|
95966
96622
|
input?: InputMaybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagInput>;
|
|
95967
96623
|
};
|
|
96624
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96625
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96626
|
+
};
|
|
96627
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96628
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96629
|
+
};
|
|
95968
96630
|
export declare type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
95969
96631
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
95970
96632
|
};
|
|
@@ -96052,6 +96714,12 @@ export declare type GraphStoreV2MutationDeleteJiraSprintHasRetroConfluenceWhiteb
|
|
|
96052
96714
|
export declare type GraphStoreV2MutationDeleteJiraVersionLinksExternalFeatureFlagArgs = {
|
|
96053
96715
|
input?: InputMaybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagInput>;
|
|
96054
96716
|
};
|
|
96717
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96718
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96719
|
+
};
|
|
96720
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96721
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96722
|
+
};
|
|
96055
96723
|
export declare type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
96056
96724
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
96057
96725
|
};
|
|
@@ -101597,6 +102265,76 @@ export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalReposit
|
|
|
101597
102265
|
};
|
|
101598
102266
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
101599
102267
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
102268
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102269
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection';
|
|
102270
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge>>>;
|
|
102271
|
+
pageInfo: PageInfo;
|
|
102272
|
+
};
|
|
102273
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge = {
|
|
102274
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge';
|
|
102275
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102277
|
+
id: Scalars['ID']['output'];
|
|
102278
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102279
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
102280
|
+
};
|
|
102281
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102282
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102283
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection';
|
|
102284
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge>>>;
|
|
102285
|
+
pageInfo: PageInfo;
|
|
102286
|
+
};
|
|
102287
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge = {
|
|
102288
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge';
|
|
102289
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102290
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102291
|
+
id: Scalars['ID']['output'];
|
|
102292
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102293
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion>;
|
|
102294
|
+
};
|
|
102295
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102296
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102297
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection';
|
|
102298
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge>>>;
|
|
102299
|
+
pageInfo: PageInfo;
|
|
102300
|
+
};
|
|
102301
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge = {
|
|
102302
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge';
|
|
102303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102305
|
+
id: Scalars['ID']['output'];
|
|
102306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102307
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion>;
|
|
102308
|
+
};
|
|
102309
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102310
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102311
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection';
|
|
102312
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge>>>;
|
|
102313
|
+
pageInfo: PageInfo;
|
|
102314
|
+
};
|
|
102315
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge = {
|
|
102316
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge';
|
|
102317
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102318
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102319
|
+
id: Scalars['ID']['output'];
|
|
102320
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102321
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion>;
|
|
102322
|
+
};
|
|
102323
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102324
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102325
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection';
|
|
102326
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge>>>;
|
|
102327
|
+
pageInfo: PageInfo;
|
|
102328
|
+
};
|
|
102329
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge = {
|
|
102330
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge';
|
|
102331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102333
|
+
id: Scalars['ID']['output'];
|
|
102334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102335
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion>;
|
|
102336
|
+
};
|
|
102337
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
101600
102338
|
export declare type GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection = HasPageInfo & {
|
|
101601
102339
|
__typename?: 'GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection';
|
|
101602
102340
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentEdge>>>;
|
|
@@ -101667,6 +102405,48 @@ export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumen
|
|
|
101667
102405
|
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
101668
102406
|
};
|
|
101669
102407
|
export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102408
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102409
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection';
|
|
102410
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge>>>;
|
|
102411
|
+
pageInfo: PageInfo;
|
|
102412
|
+
};
|
|
102413
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge = {
|
|
102414
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge';
|
|
102415
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102416
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102417
|
+
id: Scalars['ID']['output'];
|
|
102418
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102419
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion>;
|
|
102420
|
+
};
|
|
102421
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102422
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102423
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection';
|
|
102424
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge>>>;
|
|
102425
|
+
pageInfo: PageInfo;
|
|
102426
|
+
};
|
|
102427
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge = {
|
|
102428
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge';
|
|
102429
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102430
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102431
|
+
id: Scalars['ID']['output'];
|
|
102432
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102433
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion>;
|
|
102434
|
+
};
|
|
102435
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102436
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
102437
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection';
|
|
102438
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge>>>;
|
|
102439
|
+
pageInfo: PageInfo;
|
|
102440
|
+
};
|
|
102441
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge = {
|
|
102442
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge';
|
|
102443
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102444
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102445
|
+
id: Scalars['ID']['output'];
|
|
102446
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102447
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion>;
|
|
102448
|
+
};
|
|
102449
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
101670
102450
|
export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
101671
102451
|
__typename?: 'GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection';
|
|
101672
102452
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseEdge>>>;
|
|
@@ -106635,6 +107415,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoal
|
|
|
106635
107415
|
};
|
|
106636
107416
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseUnion = JiraIssue;
|
|
106637
107417
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalUnion = TownsquareGoal;
|
|
107418
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107419
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection';
|
|
107420
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge>>>;
|
|
107421
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107422
|
+
pageInfo: PageInfo;
|
|
107423
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107424
|
+
};
|
|
107425
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge = {
|
|
107426
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge';
|
|
107427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107429
|
+
id: Scalars['ID']['output'];
|
|
107430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107431
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityUnion>;
|
|
107432
|
+
};
|
|
107433
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107434
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection';
|
|
107435
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
107436
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107437
|
+
pageInfo: PageInfo;
|
|
107438
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107439
|
+
};
|
|
107440
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge = {
|
|
107441
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge';
|
|
107442
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107443
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107444
|
+
id: Scalars['ID']['output'];
|
|
107445
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107446
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion>;
|
|
107447
|
+
};
|
|
107448
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107449
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
106638
107450
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
106639
107451
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection';
|
|
106640
107452
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobEdge>>>;
|
|
@@ -106807,6 +107619,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
106807
107619
|
};
|
|
106808
107620
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
106809
107621
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
107622
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107623
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
107624
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
107625
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107626
|
+
pageInfo: PageInfo;
|
|
107627
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107628
|
+
};
|
|
107629
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge = {
|
|
107630
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge';
|
|
107631
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107632
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107633
|
+
id: Scalars['ID']['output'];
|
|
107634
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107635
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion>;
|
|
107636
|
+
};
|
|
107637
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107638
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
107639
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
107640
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107641
|
+
pageInfo: PageInfo;
|
|
107642
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107643
|
+
};
|
|
107644
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
107645
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
107646
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107647
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107648
|
+
id: Scalars['ID']['output'];
|
|
107649
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107650
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
107651
|
+
};
|
|
107652
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107653
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
106810
107654
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
106811
107655
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
106812
107656
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -119341,6 +120185,7 @@ export declare type JiraEditFieldSchemeInput = {
|
|
|
119341
120185
|
};
|
|
119342
120186
|
export declare type JiraEligibleProjectsFilter = {
|
|
119343
120187
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
120188
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
119344
120189
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
119345
120190
|
};
|
|
119346
120191
|
export declare enum JiraEmailMimeType {
|
|
@@ -122239,11 +123084,6 @@ export declare enum JiraIssueAgentSessionsVisibility {
|
|
|
122239
123084
|
Team = "TEAM",
|
|
122240
123085
|
Yours = "YOURS"
|
|
122241
123086
|
}
|
|
122242
|
-
export declare type JiraIssueAndProject = {
|
|
122243
|
-
__typename?: 'JiraIssueAndProject';
|
|
122244
|
-
issueId: Scalars['ID']['output'];
|
|
122245
|
-
projectId: Scalars['ID']['output'];
|
|
122246
|
-
};
|
|
122247
123087
|
export declare type JiraIssueApprovalsConnection = {
|
|
122248
123088
|
__typename?: 'JiraIssueApprovalsConnection';
|
|
122249
123089
|
edges?: Maybe<Array<JiraIssueApprovalsEdge>>;
|
|
@@ -127575,6 +128415,7 @@ export declare type JiraNavigationItemTypeEdge = {
|
|
|
127575
128415
|
node?: Maybe<JiraNavigationItemType>;
|
|
127576
128416
|
};
|
|
127577
128417
|
export declare enum JiraNavigationItemTypeKey {
|
|
128418
|
+
AiPlanning = "AI_PLANNING",
|
|
127578
128419
|
App = "APP",
|
|
127579
128420
|
Approvals = "APPROVALS",
|
|
127580
128421
|
Apps = "APPS",
|
|
@@ -128034,7 +128875,6 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
128034
128875
|
oauthAppId?: Maybe<Scalars['ID']['output']>;
|
|
128035
128876
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
128036
128877
|
};
|
|
128037
|
-
export declare type JiraOnIssueCreatedForUserResponseType = JiraIssueAndProject | JiraProjectConnection;
|
|
128038
128878
|
export declare type JiraOnSuggestedChildIssueResult = JiraSuggestedChildIssueError | JiraSuggestedChildIssueStatus | JiraSuggestedIssue;
|
|
128039
128879
|
export declare type JiraOnboardingConfig = {
|
|
128040
128880
|
__typename?: 'JiraOnboardingConfig';
|
|
@@ -130097,6 +130937,7 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
130097
130937
|
};
|
|
130098
130938
|
export declare type JiraProjectPolicyProjectFilter = {
|
|
130099
130939
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130940
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
130100
130941
|
projectNameQuery?: InputMaybe<Scalars['String']['input']>;
|
|
130101
130942
|
};
|
|
130102
130943
|
export declare type JiraProjectPolicyRule = {
|
|
@@ -130658,6 +131499,7 @@ export declare type JiraQuery = {
|
|
|
130658
131499
|
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
130659
131500
|
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
130660
131501
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
131502
|
+
jsmProjectPortalAccess?: Maybe<JiraServiceManagementCustomerAccessType>;
|
|
130661
131503
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
130662
131504
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
130663
131505
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
@@ -131553,6 +132395,10 @@ export declare type JiraQueryJsmPortalArgs = {
|
|
|
131553
132395
|
cloudId: Scalars['ID']['input'];
|
|
131554
132396
|
projectId: Scalars['Long']['input'];
|
|
131555
132397
|
};
|
|
132398
|
+
export declare type JiraQueryJsmProjectPortalAccessArgs = {
|
|
132399
|
+
cloudId: Scalars['ID']['input'];
|
|
132400
|
+
projectKey: Scalars['String']['input'];
|
|
132401
|
+
};
|
|
131556
132402
|
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
131557
132403
|
projectId: Scalars['ID']['input'];
|
|
131558
132404
|
};
|
|
@@ -134090,6 +134936,10 @@ export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIn
|
|
|
134090
134936
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
134091
134937
|
workflowIssueTypeId: Scalars['ID']['input'];
|
|
134092
134938
|
};
|
|
134939
|
+
export declare enum JiraServiceManagementCustomerAccessType {
|
|
134940
|
+
Public = "PUBLIC",
|
|
134941
|
+
Restricted = "RESTRICTED"
|
|
134942
|
+
}
|
|
134093
134943
|
export declare type JiraServiceManagementCustomerWidget = {
|
|
134094
134944
|
__typename?: 'JiraServiceManagementCustomerWidget';
|
|
134095
134945
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -142373,6 +143223,7 @@ export declare enum KitsuneFieldType {
|
|
|
142373
143223
|
Creator = "CREATOR",
|
|
142374
143224
|
Custom = "CUSTOM",
|
|
142375
143225
|
Customer = "CUSTOMER",
|
|
143226
|
+
Idea = "IDEA",
|
|
142376
143227
|
Parent = "PARENT",
|
|
142377
143228
|
Reporter = "REPORTER",
|
|
142378
143229
|
SourceCategory = "SOURCE_CATEGORY"
|
|
@@ -142950,6 +143801,11 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
142950
143801
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
142951
143802
|
};
|
|
142952
143803
|
export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
|
|
143804
|
+
export declare enum KnowledgeBaseAppSource {
|
|
143805
|
+
Confluence = "CONFLUENCE",
|
|
143806
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
143807
|
+
Sharepoint = "SHAREPOINT"
|
|
143808
|
+
}
|
|
142953
143809
|
export declare type KnowledgeBaseArticle = {
|
|
142954
143810
|
__typename?: 'KnowledgeBaseArticle';
|
|
142955
143811
|
id: Scalars['ID']['output'];
|
|
@@ -143140,6 +143996,7 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
143140
143996
|
};
|
|
143141
143997
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
143142
143998
|
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
143999
|
+
knowledgeBaseAppSources?: InputMaybe<Array<KnowledgeBaseAppSource>>;
|
|
143143
144000
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143144
144001
|
sourceVisibility?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143145
144002
|
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -148467,12 +149324,24 @@ export declare type MarketplaceStoreInstalledAppManageLinks = {
|
|
|
148467
149324
|
getStartedUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
148468
149325
|
manageAppUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
148469
149326
|
};
|
|
149327
|
+
export declare type MarketplaceStoreLayoutPartnerHeroSection = MarketplaceStoreLayoutSection & {
|
|
149328
|
+
__typename?: 'MarketplaceStoreLayoutPartnerHeroSection';
|
|
149329
|
+
appCount?: Maybe<Scalars['Int']['output']>;
|
|
149330
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149331
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
149332
|
+
partnerDescription: Scalars['String']['output'];
|
|
149333
|
+
partnerLogoUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149334
|
+
partnerName: Scalars['String']['output'];
|
|
149335
|
+
title: Scalars['String']['output'];
|
|
149336
|
+
totalInstalls?: Maybe<Scalars['Int']['output']>;
|
|
149337
|
+
};
|
|
148470
149338
|
export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection & {
|
|
148471
149339
|
__typename?: 'MarketplaceStoreLayoutRegularSection';
|
|
148472
149340
|
backgroundImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
148473
149341
|
description?: Maybe<Scalars['String']['output']>;
|
|
148474
149342
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
148475
149343
|
leftImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149344
|
+
navigationLabel?: Maybe<Scalars['String']['output']>;
|
|
148476
149345
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
148477
149346
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
148478
149347
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
@@ -148496,8 +149365,12 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
148496
149365
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
148497
149366
|
Hero = "HERO",
|
|
148498
149367
|
NewestAiApps = "NEWEST_AI_APPS",
|
|
149368
|
+
PartnerCredentials = "PARTNER_CREDENTIALS",
|
|
149369
|
+
PartnerHero = "PARTNER_HERO",
|
|
149370
|
+
PartnerSidebar = "PARTNER_SIDEBAR",
|
|
148499
149371
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
148500
149372
|
ProductHero = "PRODUCT_HERO",
|
|
149373
|
+
RecommendationsFallback = "RECOMMENDATIONS_FALLBACK",
|
|
148501
149374
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
148502
149375
|
Spotlight = "SPOTLIGHT",
|
|
148503
149376
|
Statistics = "STATISTICS",
|
|
@@ -148786,6 +149659,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
148786
149659
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
148787
149660
|
StoreCategory = "STORE_CATEGORY",
|
|
148788
149661
|
StoreCollection = "STORE_COLLECTION",
|
|
149662
|
+
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
148789
149663
|
StoreProduct = "STORE_PRODUCT",
|
|
148790
149664
|
UnifiedStore = "UNIFIED_STORE"
|
|
148791
149665
|
}
|
|
@@ -155223,7 +156097,7 @@ export declare type MercuryRiskActivityHistoryConnection = {
|
|
|
155223
156097
|
pageInfo: PageInfo;
|
|
155224
156098
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
155225
156099
|
};
|
|
155226
|
-
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea;
|
|
156100
|
+
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea | MercuryOrganization;
|
|
155227
156101
|
export declare type MercuryRiskActivityHistoryEdge = {
|
|
155228
156102
|
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
155229
156103
|
cursor: Scalars['String']['output'];
|
|
@@ -157456,9 +158330,9 @@ export declare type Mutation = {
|
|
|
157456
158330
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
157457
158331
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
157458
158332
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
157459
|
-
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
157460
158333
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
157461
158334
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
158335
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
157462
158336
|
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
157463
158337
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
157464
158338
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -157837,6 +158711,7 @@ export declare type Mutation = {
|
|
|
157837
158711
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
157838
158712
|
convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
|
|
157839
158713
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
158714
|
+
convoAi_cancelConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157840
158715
|
convoAi_completeConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157841
158716
|
convoAi_deleteAgentSession?: Maybe<ConvoAiDeleteAgentSessionPayload>;
|
|
157842
158717
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
@@ -158466,6 +159341,7 @@ export declare type Mutation = {
|
|
|
158466
159341
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
158467
159342
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
158468
159343
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
159344
|
+
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
158469
159345
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
158470
159346
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
158471
159347
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
@@ -158477,7 +159353,9 @@ export declare type Mutation = {
|
|
|
158477
159353
|
radar_deleteView?: Maybe<RadarView>;
|
|
158478
159354
|
radar_recordEntityViewed?: Maybe<RadarRecordEntityViewedResponse>;
|
|
158479
159355
|
radar_starEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159356
|
+
radar_syncAiConnector?: Maybe<RadarSyncHistory>;
|
|
158480
159357
|
radar_unstarEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159358
|
+
radar_updateAiConnector?: Maybe<RadarAiConnector>;
|
|
158481
159359
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
158482
159360
|
radar_updateFieldDefinitionSettings?: Maybe<RadarUpdateFieldDefinitionSettingsMutationResponse>;
|
|
158483
159361
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -159101,15 +159979,15 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
159101
159979
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
159102
159980
|
input: AgentWorkspaceSkillCreateInput;
|
|
159103
159981
|
};
|
|
159104
|
-
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
159105
|
-
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
159106
|
-
};
|
|
159107
159982
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
159108
159983
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
159109
159984
|
};
|
|
159110
159985
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
159111
159986
|
input: AgentWorkspaceDeleteShiftInput;
|
|
159112
159987
|
};
|
|
159988
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
159989
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
159990
|
+
};
|
|
159113
159991
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
159114
159992
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
159115
159993
|
};
|
|
@@ -160546,6 +161424,10 @@ export declare type MutationConvertPageToLiveEditActionArgs = {
|
|
|
160546
161424
|
export declare type MutationConvertToFolderArgs = {
|
|
160547
161425
|
id: Scalars['ID']['input'];
|
|
160548
161426
|
};
|
|
161427
|
+
export declare type MutationConvoAi_CancelConversationArgs = {
|
|
161428
|
+
cloudId: Scalars['ID']['input'];
|
|
161429
|
+
conversationId: Scalars['ID']['input'];
|
|
161430
|
+
};
|
|
160549
161431
|
export declare type MutationConvoAi_CompleteConversationArgs = {
|
|
160550
161432
|
cloudId: Scalars['ID']['input'];
|
|
160551
161433
|
conversationId: Scalars['ID']['input'];
|
|
@@ -162593,6 +163475,10 @@ export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
|
162593
163475
|
cloudId: Scalars['ID']['input'];
|
|
162594
163476
|
input: Array<RadarClearFocusAreaProposalInput>;
|
|
162595
163477
|
};
|
|
163478
|
+
export declare type MutationRadar_CreateAiConnectorArgs = {
|
|
163479
|
+
cloudId: Scalars['ID']['input'];
|
|
163480
|
+
input: RadarCreateAiConnectorInput;
|
|
163481
|
+
};
|
|
162596
163482
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
162597
163483
|
cloudId: Scalars['ID']['input'];
|
|
162598
163484
|
input: RadarCustomFieldInput;
|
|
@@ -162635,10 +163521,18 @@ export declare type MutationRadar_StarEntitiesArgs = {
|
|
|
162635
163521
|
cloudId: Scalars['ID']['input'];
|
|
162636
163522
|
ids: Array<Scalars['ID']['input']>;
|
|
162637
163523
|
};
|
|
163524
|
+
export declare type MutationRadar_SyncAiConnectorArgs = {
|
|
163525
|
+
cloudId: Scalars['ID']['input'];
|
|
163526
|
+
input: RadarSyncAiConnectorInput;
|
|
163527
|
+
};
|
|
162638
163528
|
export declare type MutationRadar_UnstarEntitiesArgs = {
|
|
162639
163529
|
cloudId: Scalars['ID']['input'];
|
|
162640
163530
|
ids: Array<Scalars['ID']['input']>;
|
|
162641
163531
|
};
|
|
163532
|
+
export declare type MutationRadar_UpdateAiConnectorArgs = {
|
|
163533
|
+
cloudId: Scalars['ID']['input'];
|
|
163534
|
+
input: RadarUpdateAiConnectorInput;
|
|
163535
|
+
};
|
|
162642
163536
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
162643
163537
|
cloudId: Scalars['ID']['input'];
|
|
162644
163538
|
input: RadarConnectorsInput;
|
|
@@ -166719,7 +167613,6 @@ export declare type Query = {
|
|
|
166719
167613
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
166720
167614
|
agentWorkspace_projectRoutingHistory?: Maybe<AgentWorkspaceProjectRoutingHistory>;
|
|
166721
167615
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
166722
|
-
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
166723
167616
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
166724
167617
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
166725
167618
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
@@ -166836,6 +167729,7 @@ export declare type Query = {
|
|
|
166836
167729
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
166837
167730
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
166838
167731
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
167732
|
+
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
166839
167733
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
166840
167734
|
assetsDM_objectsReportDsOverlap?: Maybe<AssetsDmObjectsReportDsOverlap>;
|
|
166841
167735
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
@@ -167137,6 +168031,7 @@ export declare type Query = {
|
|
|
167137
168031
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
167138
168032
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
167139
168033
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
168034
|
+
confluence_remoteObjectSuggestionCount?: Maybe<Scalars['Int']['output']>;
|
|
167140
168035
|
confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
|
|
167141
168036
|
confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
167142
168037
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -167767,6 +168662,8 @@ export declare type Query = {
|
|
|
167767
168662
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
167768
168663
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
167769
168664
|
quickReload?: Maybe<QuickReload>;
|
|
168665
|
+
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
168666
|
+
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
167770
168667
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
167771
168668
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
167772
168669
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -168765,9 +169662,6 @@ export declare type QueryAgentWorkspace_ProjectRoutingHistoryArgs = {
|
|
|
168765
169662
|
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
168766
169663
|
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
168767
169664
|
};
|
|
168768
|
-
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
168769
|
-
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
168770
|
-
};
|
|
168771
169665
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
168772
169666
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
168773
169667
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -168800,6 +169694,7 @@ export declare type QueryAgentWorkspace_ServicesArgs = {
|
|
|
168800
169694
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168801
169695
|
cloudId: Scalars['ID']['input'];
|
|
168802
169696
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169697
|
+
projectId: Scalars['ID']['input'];
|
|
168803
169698
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168804
169699
|
};
|
|
168805
169700
|
export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
@@ -169407,6 +170302,14 @@ export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
|
169407
170302
|
objectId: Scalars['ID']['input'];
|
|
169408
170303
|
workspaceId: Scalars['ID']['input'];
|
|
169409
170304
|
};
|
|
170305
|
+
export declare type QueryAssetsDm_ObjectsReportAttributePieArgs = {
|
|
170306
|
+
attributeName: Scalars['String']['input'];
|
|
170307
|
+
cloudId: Scalars['ID']['input'];
|
|
170308
|
+
nextAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
170309
|
+
objectId: Scalars['ID']['input'];
|
|
170310
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
170311
|
+
workspaceId: Scalars['ID']['input'];
|
|
170312
|
+
};
|
|
169410
170313
|
export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
169411
170314
|
cloudId: Scalars['ID']['input'];
|
|
169412
170315
|
fromSources: Array<Scalars['String']['input']>;
|
|
@@ -170701,6 +171604,10 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
170701
171604
|
cloudId: Scalars['ID']['input'];
|
|
170702
171605
|
migrationId: Scalars['String']['input'];
|
|
170703
171606
|
};
|
|
171607
|
+
export declare type QueryConfluence_RemoteObjectSuggestionCountArgs = {
|
|
171608
|
+
cloudId: Scalars['ID']['input'];
|
|
171609
|
+
spaceKey: Scalars['String']['input'];
|
|
171610
|
+
};
|
|
170704
171611
|
export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
|
|
170705
171612
|
cloudId: Scalars['ID']['input'];
|
|
170706
171613
|
id: Scalars['ID']['input'];
|
|
@@ -173223,6 +174130,18 @@ export declare type QueryQuickReloadArgs = {
|
|
|
173223
174130
|
pageId: Scalars['Long']['input'];
|
|
173224
174131
|
since: Scalars['Long']['input'];
|
|
173225
174132
|
};
|
|
174133
|
+
export declare type QueryRadar_AiConnectorByIdArgs = {
|
|
174134
|
+
cloudId: Scalars['ID']['input'];
|
|
174135
|
+
id: Scalars['ID']['input'];
|
|
174136
|
+
};
|
|
174137
|
+
export declare type QueryRadar_AiConnectorsArgs = {
|
|
174138
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174139
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
174140
|
+
cloudId: Scalars['ID']['input'];
|
|
174141
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174142
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
174143
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
174144
|
+
};
|
|
173226
174145
|
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
173227
174146
|
cloudId: Scalars['ID']['input'];
|
|
173228
174147
|
};
|
|
@@ -174333,6 +175252,43 @@ export declare type QuickReloadComment = {
|
|
|
174333
175252
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
174334
175253
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
174335
175254
|
};
|
|
175255
|
+
export declare type RadarAiConnector = {
|
|
175256
|
+
__typename?: 'RadarAiConnector';
|
|
175257
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175258
|
+
id: Scalars['ID']['output'];
|
|
175259
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
175260
|
+
lastSuccessfulSync?: Maybe<RadarSyncHistory>;
|
|
175261
|
+
lastSync?: Maybe<RadarSyncHistory>;
|
|
175262
|
+
name: Scalars['String']['output'];
|
|
175263
|
+
provider: RadarAiConnectorProvider;
|
|
175264
|
+
type: RadarAiConnectorType;
|
|
175265
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175266
|
+
};
|
|
175267
|
+
export declare type RadarAiConnectorConfigInput = {
|
|
175268
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
175269
|
+
};
|
|
175270
|
+
export declare enum RadarAiConnectorProvider {
|
|
175271
|
+
AnthropicClaudeConsole = "ANTHROPIC_CLAUDE_CONSOLE",
|
|
175272
|
+
AnthropicClaudeEnterprise = "ANTHROPIC_CLAUDE_ENTERPRISE",
|
|
175273
|
+
Cursor = "CURSOR",
|
|
175274
|
+
Rovo = "ROVO"
|
|
175275
|
+
}
|
|
175276
|
+
export declare enum RadarAiConnectorType {
|
|
175277
|
+
Api = "API",
|
|
175278
|
+
Csv = "CSV"
|
|
175279
|
+
}
|
|
175280
|
+
export declare type RadarAiConnectorsConnection = RadarConnection & {
|
|
175281
|
+
__typename?: 'RadarAiConnectorsConnection';
|
|
175282
|
+
edges: Array<RadarAiConnectorsEdge>;
|
|
175283
|
+
nodes: Array<RadarAiConnector>;
|
|
175284
|
+
pageInfo: PageInfo;
|
|
175285
|
+
totalCount: Scalars['Int']['output'];
|
|
175286
|
+
};
|
|
175287
|
+
export declare type RadarAiConnectorsEdge = RadarEdge & {
|
|
175288
|
+
__typename?: 'RadarAiConnectorsEdge';
|
|
175289
|
+
cursor: Scalars['String']['output'];
|
|
175290
|
+
node: RadarAiConnector;
|
|
175291
|
+
};
|
|
174336
175292
|
export declare type RadarAriFieldValue = {
|
|
174337
175293
|
__typename?: 'RadarAriFieldValue';
|
|
174338
175294
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -174381,6 +175337,12 @@ export declare type RadarConnectorsInput = {
|
|
|
174381
175337
|
isEnabled: Scalars['Boolean']['input'];
|
|
174382
175338
|
type?: InputMaybe<RadarConnectorType>;
|
|
174383
175339
|
};
|
|
175340
|
+
export declare type RadarCreateAiConnectorInput = {
|
|
175341
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175342
|
+
name: Scalars['String']['input'];
|
|
175343
|
+
provider: RadarAiConnectorProvider;
|
|
175344
|
+
type: RadarAiConnectorType;
|
|
175345
|
+
};
|
|
174384
175346
|
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
174385
175347
|
__typename?: 'RadarCustomFieldDefinition';
|
|
174386
175348
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -174976,10 +175938,37 @@ export declare type RadarStringFieldValue = {
|
|
|
174976
175938
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
174977
175939
|
value?: Maybe<Scalars['String']['output']>;
|
|
174978
175940
|
};
|
|
175941
|
+
export declare type RadarSyncAiConnectorInput = {
|
|
175942
|
+
id: Scalars['ID']['input'];
|
|
175943
|
+
periodEndExclusive?: InputMaybe<Scalars['DateTime']['input']>;
|
|
175944
|
+
periodStartInclusive: Scalars['DateTime']['input'];
|
|
175945
|
+
};
|
|
174979
175946
|
export declare type RadarSyncData = {
|
|
174980
175947
|
__typename?: 'RadarSyncData';
|
|
174981
175948
|
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
174982
175949
|
};
|
|
175950
|
+
export declare type RadarSyncHistory = {
|
|
175951
|
+
__typename?: 'RadarSyncHistory';
|
|
175952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175953
|
+
id: Scalars['ID']['output'];
|
|
175954
|
+
status: RadarSyncHistoryStatus;
|
|
175955
|
+
triggeredBy: Scalars['String']['output'];
|
|
175956
|
+
triggeredByUser?: Maybe<User>;
|
|
175957
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175958
|
+
};
|
|
175959
|
+
export declare enum RadarSyncHistoryStatus {
|
|
175960
|
+
Failed = "FAILED",
|
|
175961
|
+
InProgress = "IN_PROGRESS",
|
|
175962
|
+
Scheduled = "SCHEDULED",
|
|
175963
|
+
Success = "SUCCESS",
|
|
175964
|
+
SystemError = "SYSTEM_ERROR"
|
|
175965
|
+
}
|
|
175966
|
+
export declare type RadarUpdateAiConnectorInput = {
|
|
175967
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175968
|
+
id: Scalars['ID']['input'];
|
|
175969
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
175970
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
175971
|
+
};
|
|
174983
175972
|
export declare type RadarUpdateFieldDefinitionSettingsMutationResponse = {
|
|
174984
175973
|
__typename?: 'RadarUpdateFieldDefinitionSettingsMutationResponse';
|
|
174985
175974
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -176526,6 +177515,7 @@ export declare enum Scope {
|
|
|
176526
177515
|
DeleteJsmTwgCli = "DELETE_JSM_TWG_CLI",
|
|
176527
177516
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
176528
177517
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
177518
|
+
DeleteLoomVideo = "DELETE_LOOM_VIDEO",
|
|
176529
177519
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
176530
177520
|
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
176531
177521
|
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
@@ -176765,7 +177755,12 @@ export declare enum Scope {
|
|
|
176765
177755
|
ReadJswTwgCli = "READ_JSW_TWG_CLI",
|
|
176766
177756
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
176767
177757
|
ReadKnowledgeDiscoveryTopic = "READ_KNOWLEDGE_DISCOVERY_TOPIC",
|
|
177758
|
+
ReadLoomComment = "READ_LOOM_COMMENT",
|
|
177759
|
+
ReadLoomMeeting = "READ_LOOM_MEETING",
|
|
177760
|
+
ReadLoomSpace = "READ_LOOM_SPACE",
|
|
176768
177761
|
ReadLoomTwgCli = "READ_LOOM_TWG_CLI",
|
|
177762
|
+
ReadLoomVideo = "READ_LOOM_VIDEO",
|
|
177763
|
+
ReadLoomWorkspace = "READ_LOOM_WORKSPACE",
|
|
176769
177764
|
ReadMe = "READ_ME",
|
|
176770
177765
|
ReadMercuryTwgCli = "READ_MERCURY_TWG_CLI",
|
|
176771
177766
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
@@ -176925,7 +177920,9 @@ export declare enum Scope {
|
|
|
176925
177920
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
176926
177921
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
176927
177922
|
WriteJswTwgCli = "WRITE_JSW_TWG_CLI",
|
|
177923
|
+
WriteLoomSpace = "WRITE_LOOM_SPACE",
|
|
176928
177924
|
WriteLoomTwgCli = "WRITE_LOOM_TWG_CLI",
|
|
177925
|
+
WriteLoomWorkspace = "WRITE_LOOM_WORKSPACE",
|
|
176929
177926
|
WriteMercuryTwgCli = "WRITE_MERCURY_TWG_CLI",
|
|
176930
177927
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
176931
177928
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
@@ -205496,6 +206493,7 @@ export declare type TownsquareGoalsEditMetricPayload = {
|
|
|
205496
206493
|
export declare type TownsquareGoalsEditMetricTargetInput = {
|
|
205497
206494
|
currentValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205498
206495
|
metricTargetId: Scalars['ID']['input'];
|
|
206496
|
+
metricTargetPeriods?: InputMaybe<Array<InputMaybe<TownsquareMetricTargetPeriodInput>>>;
|
|
205499
206497
|
startValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205500
206498
|
targetValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205501
206499
|
};
|
|
@@ -205968,6 +206966,7 @@ export declare type TownsquareMetricTargetEdge = {
|
|
|
205968
206966
|
export declare type TownsquareMetricTargetPeriod = {
|
|
205969
206967
|
__typename?: 'TownsquareMetricTargetPeriod';
|
|
205970
206968
|
date?: Maybe<TownsquareTargetDate>;
|
|
206969
|
+
latestValue?: Maybe<TownsquareMetricTargetPeriodToMetricValueEdge>;
|
|
205971
206970
|
value?: Maybe<Scalars['Float']['output']>;
|
|
205972
206971
|
};
|
|
205973
206972
|
export declare type TownsquareMetricTargetPeriodConnection = {
|
|
@@ -205980,6 +206979,15 @@ export declare type TownsquareMetricTargetPeriodEdge = {
|
|
|
205980
206979
|
cursor: Scalars['String']['output'];
|
|
205981
206980
|
node?: Maybe<TownsquareMetricTargetPeriod>;
|
|
205982
206981
|
};
|
|
206982
|
+
export declare type TownsquareMetricTargetPeriodInput = {
|
|
206983
|
+
date: TownsquareTargetDateInput;
|
|
206984
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
206985
|
+
};
|
|
206986
|
+
export declare type TownsquareMetricTargetPeriodToMetricValueEdge = {
|
|
206987
|
+
__typename?: 'TownsquareMetricTargetPeriodToMetricValueEdge';
|
|
206988
|
+
node?: Maybe<TownsquareMetricValue>;
|
|
206989
|
+
variance?: Maybe<Scalars['Float']['output']>;
|
|
206990
|
+
};
|
|
205983
206991
|
export declare enum TownsquareMetricType {
|
|
205984
206992
|
Currency = "CURRENCY",
|
|
205985
206993
|
Numeric = "NUMERIC",
|
|
@@ -208424,6 +209432,10 @@ export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
|
208424
209432
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208425
209433
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208426
209434
|
};
|
|
209435
|
+
export declare type TrelloBaseBoardConnectionUpdated = {
|
|
209436
|
+
__typename?: 'TrelloBaseBoardConnectionUpdated';
|
|
209437
|
+
edges?: Maybe<Array<TrelloBaseBoardUpdatedEdge>>;
|
|
209438
|
+
};
|
|
208427
209439
|
export declare type TrelloBaseBoardId = {
|
|
208428
209440
|
id: Scalars['ID']['output'];
|
|
208429
209441
|
objectId: Scalars['ID']['output'];
|
|
@@ -208443,6 +209455,10 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
208443
209455
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
208444
209456
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
208445
209457
|
};
|
|
209458
|
+
export declare type TrelloBaseBoardUpdatedEdge = {
|
|
209459
|
+
__typename?: 'TrelloBaseBoardUpdatedEdge';
|
|
209460
|
+
node?: Maybe<TrelloBaseBoardUpdated>;
|
|
209461
|
+
};
|
|
208446
209462
|
export declare type TrelloBaseCard = {
|
|
208447
209463
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
208448
209464
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -210683,6 +211699,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
210683
211699
|
};
|
|
210684
211700
|
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
210685
211701
|
boardId: Scalars['ID']['input'];
|
|
211702
|
+
isAudio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
210686
211703
|
listId: Scalars['ID']['input'];
|
|
210687
211704
|
};
|
|
210688
211705
|
export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
@@ -211143,6 +212160,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
211143
212160
|
bio?: Maybe<Scalars['String']['output']>;
|
|
211144
212161
|
boardStars?: Maybe<TrelloBoardStarConnectionUpdated>;
|
|
211145
212162
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
212163
|
+
boardsV2?: Maybe<TrelloBaseBoardConnectionUpdated>;
|
|
211146
212164
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
211147
212165
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
211148
212166
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -212118,6 +213136,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
212118
213136
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212119
213137
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212120
213138
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213139
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
212121
213140
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
212122
213141
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
212123
213142
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -212232,6 +213251,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
|
|
|
212232
213251
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212233
213252
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212234
213253
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213254
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
212235
213255
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
212236
213256
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
212237
213257
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -213997,7 +215017,15 @@ export declare enum TrelloUsageLimitKey {
|
|
|
213997
215017
|
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
213998
215018
|
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
213999
215019
|
}
|
|
214000
|
-
export declare type TrelloUsageLimitUpdated =
|
|
215020
|
+
export declare type TrelloUsageLimitUpdated = {
|
|
215021
|
+
__typename?: 'TrelloUsageLimitUpdated';
|
|
215022
|
+
count: Scalars['Int']['output'];
|
|
215023
|
+
interval?: Maybe<TrelloUsageLimitInterval>;
|
|
215024
|
+
key: TrelloUsageLimitKey;
|
|
215025
|
+
limit: Scalars['Int']['output'];
|
|
215026
|
+
periodEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
215027
|
+
periodStart?: Maybe<Scalars['DateTime']['output']>;
|
|
215028
|
+
};
|
|
214001
215029
|
export declare type TrelloUserGeneratedText = {
|
|
214002
215030
|
__typename?: 'TrelloUserGeneratedText';
|
|
214003
215031
|
text?: Maybe<Scalars['String']['output']>;
|