@forge/cli-shared 8.23.1-next.3 → 8.23.1-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +1151 -60
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +125 -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 +2 -2
|
@@ -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>;
|
|
@@ -7404,6 +7409,7 @@ export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
|
7404
7409
|
};
|
|
7405
7410
|
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7406
7411
|
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7412
|
+
draftId: Scalars['ID']['output'];
|
|
7407
7413
|
pageInfo: AgentWorkspacePageInfo;
|
|
7408
7414
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7409
7415
|
rowsInserted: Scalars['Int']['output'];
|
|
@@ -7448,17 +7454,6 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7448
7454
|
projectId: Scalars['ID']['output'];
|
|
7449
7455
|
updatedAt: Scalars['DateTime']['output'];
|
|
7450
7456
|
};
|
|
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
7457
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7463
7458
|
cloudId: Scalars['ID']['input'];
|
|
7464
7459
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7484,6 +7479,18 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7484
7479
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7485
7480
|
success: Scalars['Boolean']['output'];
|
|
7486
7481
|
};
|
|
7482
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTableInput = {
|
|
7483
|
+
cloudId: Scalars['ID']['input'];
|
|
7484
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
7485
|
+
projectKey: Scalars['String']['input'];
|
|
7486
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7487
|
+
};
|
|
7488
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7489
|
+
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7490
|
+
draftId: Scalars['ID']['output'];
|
|
7491
|
+
entriesDeleted: Scalars['Int']['output'];
|
|
7492
|
+
serviceFieldId: Scalars['String']['output'];
|
|
7493
|
+
};
|
|
7487
7494
|
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7488
7495
|
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7489
7496
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
@@ -7492,6 +7499,7 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7492
7499
|
__typename?: 'AgentWorkspaceDraftedRoutingTableEntry';
|
|
7493
7500
|
confidence?: Maybe<Scalars['Float']['output']>;
|
|
7494
7501
|
description?: Maybe<Scalars['String']['output']>;
|
|
7502
|
+
draftId: Scalars['ID']['output'];
|
|
7495
7503
|
serviceId: Scalars['ID']['output'];
|
|
7496
7504
|
serviceName: Scalars['String']['output'];
|
|
7497
7505
|
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
@@ -7506,6 +7514,7 @@ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
|
7506
7514
|
};
|
|
7507
7515
|
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7508
7516
|
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7517
|
+
draftId?: Maybe<Scalars['ID']['output']>;
|
|
7509
7518
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
7510
7519
|
};
|
|
7511
7520
|
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
@@ -7614,6 +7623,7 @@ export declare type AgentWorkspaceProjectRoutingHistory = {
|
|
|
7614
7623
|
export declare type AgentWorkspaceProjectRoutingHistoryEventsArgs = {
|
|
7615
7624
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7616
7625
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7626
|
+
kinds?: InputMaybe<Array<AgentWorkspaceRoutingHistoryEventKind>>;
|
|
7617
7627
|
};
|
|
7618
7628
|
export declare type AgentWorkspaceProjectSkill = {
|
|
7619
7629
|
__typename?: 'AgentWorkspaceProjectSkill';
|
|
@@ -7690,11 +7700,6 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
|
7690
7700
|
excludedAgents: Array<AgentWorkspaceExcludedAgent>;
|
|
7691
7701
|
recommendedAgents: Array<AgentWorkspaceAgent>;
|
|
7692
7702
|
};
|
|
7693
|
-
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7694
|
-
originalAgentId: Scalars['ID']['input'];
|
|
7695
|
-
projectARI: Scalars['ID']['input'];
|
|
7696
|
-
scheduleId: Scalars['ID']['input'];
|
|
7697
|
-
};
|
|
7698
7703
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
7699
7704
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
7700
7705
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7828,7 +7833,6 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7828
7833
|
agents: Array<AgentWorkspaceAgent>;
|
|
7829
7834
|
cloudId: Scalars['ID']['output'];
|
|
7830
7835
|
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7831
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7832
7836
|
createdAt: Scalars['DateTime']['output'];
|
|
7833
7837
|
createdBy: Scalars['String']['output'];
|
|
7834
7838
|
createdByUser?: Maybe<User>;
|
|
@@ -7863,9 +7867,11 @@ export declare type AgentWorkspaceScheduleError = {
|
|
|
7863
7867
|
message: Scalars['String']['output'];
|
|
7864
7868
|
};
|
|
7865
7869
|
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
7870
|
+
AgentMismatch = "AGENT_MISMATCH",
|
|
7866
7871
|
AgentNotFound = "AGENT_NOT_FOUND",
|
|
7867
7872
|
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
7868
7873
|
ConcurrentModification = "CONCURRENT_MODIFICATION",
|
|
7874
|
+
CoveringShiftNotFound = "COVERING_SHIFT_NOT_FOUND",
|
|
7869
7875
|
Forbidden = "FORBIDDEN",
|
|
7870
7876
|
InternalError = "INTERNAL_ERROR",
|
|
7871
7877
|
InvalidGapWindow = "INVALID_GAP_WINDOW",
|
|
@@ -7965,11 +7971,13 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
|
|
|
7965
7971
|
};
|
|
7966
7972
|
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldInput = {
|
|
7967
7973
|
cloudId: Scalars['ID']['input'];
|
|
7974
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
7968
7975
|
projectKey: Scalars['String']['input'];
|
|
7969
7976
|
serviceFieldId: Scalars['String']['input'];
|
|
7970
7977
|
};
|
|
7971
7978
|
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
|
|
7972
7979
|
__typename?: 'AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload';
|
|
7980
|
+
draftId?: Maybe<Scalars['ID']['output']>;
|
|
7973
7981
|
serviceFieldId: Scalars['String']['output'];
|
|
7974
7982
|
};
|
|
7975
7983
|
export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
@@ -8188,6 +8196,7 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
|
|
|
8188
8196
|
export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
8189
8197
|
cloudId: Scalars['ID']['input'];
|
|
8190
8198
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
8199
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8191
8200
|
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
8192
8201
|
projectKey: Scalars['String']['input'];
|
|
8193
8202
|
selectedRows?: InputMaybe<Array<AgentWorkspaceSelectedRowVersion>>;
|
|
@@ -8196,17 +8205,21 @@ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
|
8196
8205
|
};
|
|
8197
8206
|
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
8198
8207
|
__typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
|
|
8208
|
+
draftId?: Maybe<Scalars['ID']['output']>;
|
|
8199
8209
|
generationId: Scalars['ID']['output'];
|
|
8200
8210
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
8201
8211
|
};
|
|
8202
8212
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
8203
8213
|
cloudId: Scalars['ID']['input'];
|
|
8214
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8204
8215
|
expectedSetupVersion: Scalars['Int']['input'];
|
|
8205
8216
|
fieldId: Scalars['String']['input'];
|
|
8206
8217
|
projectKey: Scalars['String']['input'];
|
|
8218
|
+
selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8207
8219
|
};
|
|
8208
8220
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
8209
8221
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
8222
|
+
draftId: Scalars['ID']['output'];
|
|
8210
8223
|
rowsWritten: Scalars['Int']['output'];
|
|
8211
8224
|
teamsNewlyConnected: Scalars['Int']['output'];
|
|
8212
8225
|
};
|
|
@@ -8387,7 +8400,7 @@ export declare type AgentWorkspaceUpdateSkillMappingsInProjectInput = {
|
|
|
8387
8400
|
export declare type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
8388
8401
|
__typename?: 'AgentWorkspaceUpdateSkillMappingsInProjectPayload';
|
|
8389
8402
|
errors?: Maybe<Array<MutationError>>;
|
|
8390
|
-
|
|
8403
|
+
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
8391
8404
|
success: Scalars['Boolean']['output'];
|
|
8392
8405
|
};
|
|
8393
8406
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
@@ -8401,6 +8414,7 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
8401
8414
|
};
|
|
8402
8415
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8403
8416
|
cloudId: Scalars['ID']['input'];
|
|
8417
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
8404
8418
|
expectedVersion: Scalars['Int']['input'];
|
|
8405
8419
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8406
8420
|
projectKey: Scalars['String']['input'];
|
|
@@ -8410,6 +8424,7 @@ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
|
8410
8424
|
};
|
|
8411
8425
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
8412
8426
|
__typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
|
|
8427
|
+
draftId: Scalars['ID']['output'];
|
|
8413
8428
|
entry: AgentWorkspaceDraftedRoutingTableEntry;
|
|
8414
8429
|
errors?: Maybe<Array<AgentWorkspaceMutationError>>;
|
|
8415
8430
|
};
|
|
@@ -8514,7 +8529,8 @@ export declare enum AiCoreApiRsaQueryType {
|
|
|
8514
8529
|
Employee = "EMPLOYEE",
|
|
8515
8530
|
Funnel = "FUNNEL",
|
|
8516
8531
|
Resolved = "RESOLVED",
|
|
8517
|
-
RtDistribution = "RT_DISTRIBUTION"
|
|
8532
|
+
RtDistribution = "RT_DISTRIBUTION",
|
|
8533
|
+
SkillGap = "SKILL_GAP"
|
|
8518
8534
|
}
|
|
8519
8535
|
export declare type AiCoreApiRsaReportInput = {
|
|
8520
8536
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8536,10 +8552,12 @@ export declare type AiCoreApiRsaReportPayload = {
|
|
|
8536
8552
|
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8537
8553
|
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8538
8554
|
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8555
|
+
skillGap?: Maybe<AiCoreApiRsaSkillGapResult>;
|
|
8539
8556
|
status: AiCoreApiRsaJobStatus;
|
|
8540
8557
|
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8541
8558
|
};
|
|
8542
8559
|
export declare enum AiCoreApiRsaReportType {
|
|
8560
|
+
Insight = "INSIGHT",
|
|
8543
8561
|
Overview = "OVERVIEW"
|
|
8544
8562
|
}
|
|
8545
8563
|
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
@@ -8561,6 +8579,22 @@ export declare type AiCoreApiRsaRtDistributionResult = {
|
|
|
8561
8579
|
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8562
8580
|
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8563
8581
|
};
|
|
8582
|
+
export declare type AiCoreApiRsaSkill = {
|
|
8583
|
+
__typename?: 'AiCoreApiRsaSkill';
|
|
8584
|
+
name: Scalars['String']['output'];
|
|
8585
|
+
totalTickets: Scalars['Int']['output'];
|
|
8586
|
+
};
|
|
8587
|
+
export declare type AiCoreApiRsaSkillGapItem = {
|
|
8588
|
+
__typename?: 'AiCoreApiRsaSkillGapItem';
|
|
8589
|
+
requestType: Scalars['String']['output'];
|
|
8590
|
+
skills: Array<AiCoreApiRsaSkill>;
|
|
8591
|
+
tool: Scalars['String']['output'];
|
|
8592
|
+
totalTickets: Scalars['Int']['output'];
|
|
8593
|
+
};
|
|
8594
|
+
export declare type AiCoreApiRsaSkillGapResult = {
|
|
8595
|
+
__typename?: 'AiCoreApiRsaSkillGapResult';
|
|
8596
|
+
items: Array<AiCoreApiRsaSkillGapItem>;
|
|
8597
|
+
};
|
|
8564
8598
|
export declare type AiCoreApiVsaQuestions = {
|
|
8565
8599
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
8566
8600
|
projectAri: Scalars['ID']['output'];
|
|
@@ -12692,6 +12726,12 @@ export declare type AssetsDmObjectsReportAttributeByDs = {
|
|
|
12692
12726
|
rows: Array<Scalars['JSON']['output']>;
|
|
12693
12727
|
rowsCount: Scalars['Int']['output'];
|
|
12694
12728
|
};
|
|
12729
|
+
export declare type AssetsDmObjectsReportAttributePie = {
|
|
12730
|
+
__typename?: 'AssetsDMObjectsReportAttributePie';
|
|
12731
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
12732
|
+
rows?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
12733
|
+
rowsCount?: Maybe<Scalars['Int']['output']>;
|
|
12734
|
+
};
|
|
12695
12735
|
export declare type AssetsDmObjectsReportDsByDs = {
|
|
12696
12736
|
__typename?: 'AssetsDMObjectsReportDsByDs';
|
|
12697
12737
|
columns: Array<Scalars['String']['output']>;
|
|
@@ -19323,6 +19363,7 @@ export declare enum CommerceExpApprovalDeskStatus {
|
|
|
19323
19363
|
}
|
|
19324
19364
|
export declare type CommerceExpApprovalDeskTask = {
|
|
19325
19365
|
__typename?: 'CommerceExpApprovalDeskTask';
|
|
19366
|
+
assignee?: Maybe<User>;
|
|
19326
19367
|
assigneeId?: Maybe<Scalars['ID']['output']>;
|
|
19327
19368
|
businessKey?: Maybe<Scalars['String']['output']>;
|
|
19328
19369
|
children?: Maybe<Array<Maybe<CommerceExpApprovalDeskTask>>>;
|
|
@@ -19332,6 +19373,7 @@ export declare type CommerceExpApprovalDeskTask = {
|
|
|
19332
19373
|
issueType?: Maybe<Scalars['String']['output']>;
|
|
19333
19374
|
key?: Maybe<Scalars['String']['output']>;
|
|
19334
19375
|
parentKey?: Maybe<Scalars['String']['output']>;
|
|
19376
|
+
reporter?: Maybe<User>;
|
|
19335
19377
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
19336
19378
|
requestId?: Maybe<Scalars['String']['output']>;
|
|
19337
19379
|
resolutionDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -31989,6 +32031,7 @@ export declare type ConfluenceNbmVerificationEntry = {
|
|
|
31989
32031
|
error?: Maybe<Scalars['String']['output']>;
|
|
31990
32032
|
id: Scalars['ID']['output'];
|
|
31991
32033
|
manualState?: Maybe<ConfluenceNbmCategoryTypes>;
|
|
32034
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
31992
32035
|
originalPageId?: Maybe<Scalars['ID']['output']>;
|
|
31993
32036
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
31994
32037
|
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -45211,6 +45254,7 @@ export declare type EcosystemQuery = {
|
|
|
45211
45254
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
45212
45255
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
45213
45256
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
45257
|
+
rollingRelease?: Maybe<EcosystemRollingRelease>;
|
|
45214
45258
|
rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
|
|
45215
45259
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
45216
45260
|
siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
|
|
@@ -45296,6 +45340,10 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
45296
45340
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
45297
45341
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
45298
45342
|
};
|
|
45343
|
+
export declare type EcosystemQueryRollingReleaseArgs = {
|
|
45344
|
+
environmentId: Scalars['ID']['input'];
|
|
45345
|
+
rolloutId: Scalars['ID']['input'];
|
|
45346
|
+
};
|
|
45299
45347
|
export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
|
|
45300
45348
|
appId: Scalars['ID']['input'];
|
|
45301
45349
|
environmentId: Scalars['ID']['input'];
|
|
@@ -46041,6 +46089,13 @@ export declare type ExternalCalendarEventAttachment = {
|
|
|
46041
46089
|
title?: Maybe<Scalars['String']['output']>;
|
|
46042
46090
|
url?: Maybe<Scalars['String']['output']>;
|
|
46043
46091
|
};
|
|
46092
|
+
export declare type ExternalCall = {
|
|
46093
|
+
__typename?: 'ExternalCall';
|
|
46094
|
+
durationInSeconds?: Maybe<Scalars['Int']['output']>;
|
|
46095
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
46096
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
46097
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
46098
|
+
};
|
|
46044
46099
|
export declare type ExternalCampaign = Node & {
|
|
46045
46100
|
__typename?: 'ExternalCampaign';
|
|
46046
46101
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -47326,6 +47381,7 @@ export declare type ExternalSpace = Node & {
|
|
|
47326
47381
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
47327
47382
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47328
47383
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47384
|
+
overrideChildPermissionsWithContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
47329
47385
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47330
47386
|
parent?: Maybe<ExternalEntity>;
|
|
47331
47387
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -47607,11 +47663,14 @@ export declare enum ExternalVulnerabilityType {
|
|
|
47607
47663
|
}
|
|
47608
47664
|
export declare type ExternalWorkItem = Node & {
|
|
47609
47665
|
__typename?: 'ExternalWorkItem';
|
|
47666
|
+
activityType?: Maybe<Scalars['String']['output']>;
|
|
47610
47667
|
assignee?: Maybe<ExternalUser>;
|
|
47611
47668
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47612
47669
|
attachments?: Maybe<Array<Maybe<ExternalWorkItemAttachment>>>;
|
|
47670
|
+
call?: Maybe<ExternalCall>;
|
|
47613
47671
|
categories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
47614
47672
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47673
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
47615
47674
|
container?: Maybe<ExternalEntity>;
|
|
47616
47675
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47617
47676
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -47619,10 +47678,12 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47619
47678
|
description?: Maybe<Scalars['String']['output']>;
|
|
47620
47679
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47621
47680
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
47681
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47622
47682
|
exceedsMaxCollaborators?: Maybe<Scalars['Boolean']['output']>;
|
|
47623
47683
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
47624
47684
|
id: Scalars['ID']['output'];
|
|
47625
47685
|
impact?: Maybe<Scalars['String']['output']>;
|
|
47686
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
47626
47687
|
largeDescription?: Maybe<ExternalLargeContent>;
|
|
47627
47688
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47628
47689
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
@@ -47632,8 +47693,10 @@ export declare type ExternalWorkItem = Node & {
|
|
|
47632
47693
|
priority?: Maybe<Scalars['String']['output']>;
|
|
47633
47694
|
project?: Maybe<ExternalProject>;
|
|
47634
47695
|
provider?: Maybe<ExternalProvider>;
|
|
47696
|
+
recurrence?: Maybe<ExternalRecurrence>;
|
|
47635
47697
|
status?: Maybe<Scalars['String']['output']>;
|
|
47636
47698
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
47699
|
+
taskType?: Maybe<Scalars['String']['output']>;
|
|
47637
47700
|
team?: Maybe<Scalars['String']['output']>;
|
|
47638
47701
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47639
47702
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -47677,8 +47740,11 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
47677
47740
|
export declare type ExternalWorker = Node & {
|
|
47678
47741
|
__typename?: 'ExternalWorker';
|
|
47679
47742
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
47743
|
+
container?: Maybe<ExternalEntity>;
|
|
47744
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
47680
47745
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
47681
47746
|
createdBy?: Maybe<ExternalUser>;
|
|
47747
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
47682
47748
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
47683
47749
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
47684
47750
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -47687,6 +47753,8 @@ export declare type ExternalWorker = Node & {
|
|
|
47687
47753
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
47688
47754
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
47689
47755
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
47756
|
+
parent?: Maybe<ExternalEntity>;
|
|
47757
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
47690
47758
|
provider?: Maybe<ExternalProvider>;
|
|
47691
47759
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47692
47760
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -49274,6 +49342,7 @@ export declare enum GrantCheckProduct {
|
|
|
49274
49342
|
Goal = "GOAL",
|
|
49275
49343
|
Jira = "JIRA",
|
|
49276
49344
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
49345
|
+
Loom = "LOOM",
|
|
49277
49346
|
Mercury = "MERCURY",
|
|
49278
49347
|
NoGrantChecks = "NO_GRANT_CHECKS",
|
|
49279
49348
|
Townsquare = "TOWNSQUARE"
|
|
@@ -50421,6 +50490,7 @@ export declare type GraphIntegrationCreateSkillInput = {
|
|
|
50421
50490
|
displayName: Scalars['String']['input'];
|
|
50422
50491
|
instructions: Scalars['String']['input'];
|
|
50423
50492
|
name: Scalars['String']['input'];
|
|
50493
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50424
50494
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
50425
50495
|
};
|
|
50426
50496
|
export declare type GraphIntegrationDataConnector = {
|
|
@@ -50698,6 +50768,7 @@ export declare type GraphIntegrationMcpServer = {
|
|
|
50698
50768
|
displayName: Scalars['String']['output'];
|
|
50699
50769
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
50700
50770
|
id: Scalars['ID']['output'];
|
|
50771
|
+
productAri?: Maybe<Scalars['String']['output']>;
|
|
50701
50772
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
50702
50773
|
tools?: Maybe<GraphIntegrationMcpToolNodeConnection>;
|
|
50703
50774
|
};
|
|
@@ -54079,6 +54150,14 @@ export declare type GraphStore = {
|
|
|
54079
54150
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
54080
54151
|
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
54081
54152
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
54153
|
+
graphDocumentReplicates3pDocumentGoogleDriveDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection>;
|
|
54154
|
+
graphDocumentReplicates3pDocumentGoogleDriveOtherInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection>;
|
|
54155
|
+
graphDocumentReplicates3pDocumentGoogleDrivePdfInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection>;
|
|
54156
|
+
graphDocumentReplicates3pDocumentGoogleDrivePresentationInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection>;
|
|
54157
|
+
graphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection>;
|
|
54158
|
+
graphDocumentReplicates3pDocumentOnedriveInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection>;
|
|
54159
|
+
graphDocumentReplicates3pDocumentSharepointInverse?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection>;
|
|
54160
|
+
graphEntityReplicates3pEntityComplementInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection>;
|
|
54082
54161
|
graphEntityReplicates3pEntityInverse?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection>;
|
|
54083
54162
|
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
54084
54163
|
groupCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceInverseConnection>;
|
|
@@ -54188,6 +54267,10 @@ export declare type GraphStore = {
|
|
|
54188
54267
|
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
54189
54268
|
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
54190
54269
|
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
54270
|
+
jiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection>;
|
|
54271
|
+
jiraEntityDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection>;
|
|
54272
|
+
jiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection>;
|
|
54273
|
+
jiraEntityHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
54191
54274
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
54192
54275
|
jiraEpicContributesToAtlasGoalBatch?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalConnection>;
|
|
54193
54276
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
@@ -57742,6 +57825,70 @@ export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
|
57742
57825
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57743
57826
|
sort?: InputMaybe<GraphStoreGraphDocument3pDocumentSortInput>;
|
|
57744
57827
|
};
|
|
57828
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseArgs = {
|
|
57829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57830
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57831
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57832
|
+
id: Scalars['ID']['input'];
|
|
57833
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57834
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput>;
|
|
57835
|
+
};
|
|
57836
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseArgs = {
|
|
57837
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57838
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57839
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57840
|
+
id: Scalars['ID']['input'];
|
|
57841
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57842
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput>;
|
|
57843
|
+
};
|
|
57844
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseArgs = {
|
|
57845
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57846
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57847
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57848
|
+
id: Scalars['ID']['input'];
|
|
57849
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57850
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput>;
|
|
57851
|
+
};
|
|
57852
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseArgs = {
|
|
57853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57854
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57856
|
+
id: Scalars['ID']['input'];
|
|
57857
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57858
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput>;
|
|
57859
|
+
};
|
|
57860
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseArgs = {
|
|
57861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57862
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57863
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57864
|
+
id: Scalars['ID']['input'];
|
|
57865
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57866
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput>;
|
|
57867
|
+
};
|
|
57868
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveInverseArgs = {
|
|
57869
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57870
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57871
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57872
|
+
id: Scalars['ID']['input'];
|
|
57873
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57874
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput>;
|
|
57875
|
+
};
|
|
57876
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointInverseArgs = {
|
|
57877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57880
|
+
id: Scalars['ID']['input'];
|
|
57881
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57882
|
+
sort?: InputMaybe<GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput>;
|
|
57883
|
+
};
|
|
57884
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementInverseArgs = {
|
|
57885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57888
|
+
id: Scalars['ID']['input'];
|
|
57889
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57890
|
+
sort?: InputMaybe<GraphStoreGraphEntityReplicates3pEntityComplementSortInput>;
|
|
57891
|
+
};
|
|
57745
57892
|
export declare type GraphStoreGraphEntityReplicates3pEntityInverseArgs = {
|
|
57746
57893
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57747
57894
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58544,6 +58691,38 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationInverseArgs = {
|
|
|
58544
58691
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58545
58692
|
sort?: InputMaybe<GraphStoreJcsIssueAssociatedSupportEscalationSortInput>;
|
|
58546
58693
|
};
|
|
58694
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
58695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58698
|
+
id: Scalars['ID']['input'];
|
|
58699
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58700
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58701
|
+
};
|
|
58702
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntityInverseArgs = {
|
|
58703
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58704
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58706
|
+
id: Scalars['ID']['input'];
|
|
58707
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58708
|
+
sort?: InputMaybe<GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput>;
|
|
58709
|
+
};
|
|
58710
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
58711
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58712
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58713
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58714
|
+
id: Scalars['ID']['input'];
|
|
58715
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58716
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58717
|
+
};
|
|
58718
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
58719
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58720
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58722
|
+
id: Scalars['ID']['input'];
|
|
58723
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
58724
|
+
sort?: InputMaybe<GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput>;
|
|
58725
|
+
};
|
|
58547
58726
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
58548
58727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58549
58728
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66011,6 +66190,47 @@ export declare type GraphStoreCreateJcsIssueAssociatedSupportEscalationRelations
|
|
|
66011
66190
|
linkType?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationLinkTypeInput>;
|
|
66012
66191
|
status?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationEscalationStatusInput>;
|
|
66013
66192
|
};
|
|
66193
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66194
|
+
relationships: Array<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66195
|
+
};
|
|
66196
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66197
|
+
__typename?: 'GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66198
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66199
|
+
success: Scalars['Boolean']['output'];
|
|
66200
|
+
};
|
|
66201
|
+
export declare type GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
66202
|
+
from: Scalars['ID']['input'];
|
|
66203
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66204
|
+
to: Scalars['ID']['input'];
|
|
66205
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66206
|
+
};
|
|
66207
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
66208
|
+
relationships: Array<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
66209
|
+
};
|
|
66210
|
+
export declare enum GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
66211
|
+
Accepted = "ACCEPTED",
|
|
66212
|
+
NotSet = "NOT_SET",
|
|
66213
|
+
UserAdded = "USER_ADDED"
|
|
66214
|
+
}
|
|
66215
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
66216
|
+
__typename?: 'GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
66217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66218
|
+
success: Scalars['Boolean']['output'];
|
|
66219
|
+
};
|
|
66220
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
66221
|
+
from: Scalars['ID']['input'];
|
|
66222
|
+
objectMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
66223
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
66224
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
66225
|
+
to: Scalars['ID']['input'];
|
|
66226
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
66227
|
+
};
|
|
66228
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
66229
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66230
|
+
};
|
|
66231
|
+
export declare type GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
66232
|
+
linkSource?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
66233
|
+
};
|
|
66014
66234
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
66015
66235
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
66016
66236
|
};
|
|
@@ -66767,6 +66987,32 @@ export declare type GraphStoreDeleteJcsIssueAssociatedSupportEscalationRelations
|
|
|
66767
66987
|
from: Scalars['ID']['input'];
|
|
66768
66988
|
to: Scalars['ID']['input'];
|
|
66769
66989
|
};
|
|
66990
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput = {
|
|
66991
|
+
relationships: Array<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput>;
|
|
66992
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66993
|
+
};
|
|
66994
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload = Payload & {
|
|
66995
|
+
__typename?: 'GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload';
|
|
66996
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66997
|
+
success: Scalars['Boolean']['output'];
|
|
66998
|
+
};
|
|
66999
|
+
export declare type GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityRelationshipInput = {
|
|
67000
|
+
from: Scalars['ID']['input'];
|
|
67001
|
+
to: Scalars['ID']['input'];
|
|
67002
|
+
};
|
|
67003
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput = {
|
|
67004
|
+
relationships: Array<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput>;
|
|
67005
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67006
|
+
};
|
|
67007
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload = Payload & {
|
|
67008
|
+
__typename?: 'GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload';
|
|
67009
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67010
|
+
success: Scalars['Boolean']['output'];
|
|
67011
|
+
};
|
|
67012
|
+
export declare type GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityRelationshipInput = {
|
|
67013
|
+
from: Scalars['ID']['input'];
|
|
67014
|
+
to: Scalars['ID']['input'];
|
|
67015
|
+
};
|
|
66770
67016
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
66771
67017
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
66772
67018
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70748,6 +70994,30 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
70748
70994
|
export declare type GraphStoreGraphDocument3pDocumentSortInput = {
|
|
70749
70995
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70750
70996
|
};
|
|
70997
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveDocumentSortInput = {
|
|
70998
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70999
|
+
};
|
|
71000
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveOtherSortInput = {
|
|
71001
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71002
|
+
};
|
|
71003
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePdfSortInput = {
|
|
71004
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71005
|
+
};
|
|
71006
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDrivePresentationSortInput = {
|
|
71007
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71008
|
+
};
|
|
71009
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetSortInput = {
|
|
71010
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71011
|
+
};
|
|
71012
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentOnedriveSortInput = {
|
|
71013
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71014
|
+
};
|
|
71015
|
+
export declare type GraphStoreGraphDocumentReplicates3pDocumentSharepointSortInput = {
|
|
71016
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71017
|
+
};
|
|
71018
|
+
export declare type GraphStoreGraphEntityReplicates3pEntityComplementSortInput = {
|
|
71019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71020
|
+
};
|
|
70751
71021
|
export declare type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
70752
71022
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70753
71023
|
};
|
|
@@ -71030,6 +71300,20 @@ export declare type GraphStoreJcsIssueAssociatedSupportEscalationSortInput = {
|
|
|
71030
71300
|
relationship_status?: InputMaybe<GraphStoreSortInput>;
|
|
71031
71301
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71032
71302
|
};
|
|
71303
|
+
export declare type GraphStoreJiraEntityDismissedKnowledgeBaseEntitySortInput = {
|
|
71304
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71305
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71306
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71307
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71308
|
+
};
|
|
71309
|
+
export declare type GraphStoreJiraEntityHasLinkedKnowledgeBaseEntitySortInput = {
|
|
71310
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71311
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71312
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71313
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71314
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71315
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
71316
|
+
};
|
|
71033
71317
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
71034
71318
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71035
71319
|
};
|
|
@@ -71190,6 +71474,8 @@ export declare type GraphStoreMutation = {
|
|
|
71190
71474
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
71191
71475
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
71192
71476
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
71477
|
+
createJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71478
|
+
createJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
71193
71479
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
71194
71480
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
71195
71481
|
createMeetingHasJiraProject?: Maybe<GraphStoreCreateMeetingHasJiraProjectPayload>;
|
|
@@ -71224,6 +71510,8 @@ export declare type GraphStoreMutation = {
|
|
|
71224
71510
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
71225
71511
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
71226
71512
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
71513
|
+
deleteJiraEntityDismissedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityPayload>;
|
|
71514
|
+
deleteJiraEntityHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityPayload>;
|
|
71227
71515
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
71228
71516
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
71229
71517
|
deleteMeetingHasJiraProject?: Maybe<GraphStoreDeleteMeetingHasJiraProjectPayload>;
|
|
@@ -71273,6 +71561,12 @@ export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
|
71273
71561
|
export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationArgs = {
|
|
71274
71562
|
input?: InputMaybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationInput>;
|
|
71275
71563
|
};
|
|
71564
|
+
export declare type GraphStoreMutationCreateJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71565
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71566
|
+
};
|
|
71567
|
+
export declare type GraphStoreMutationCreateJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71568
|
+
input?: InputMaybe<GraphStoreCreateJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71569
|
+
};
|
|
71276
71570
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
71277
71571
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
71278
71572
|
};
|
|
@@ -71375,6 +71669,12 @@ export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
|
71375
71669
|
export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationArgs = {
|
|
71376
71670
|
input?: InputMaybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationInput>;
|
|
71377
71671
|
};
|
|
71672
|
+
export declare type GraphStoreMutationDeleteJiraEntityDismissedKnowledgeBaseEntityArgs = {
|
|
71673
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityDismissedKnowledgeBaseEntityInput>;
|
|
71674
|
+
};
|
|
71675
|
+
export declare type GraphStoreMutationDeleteJiraEntityHasLinkedKnowledgeBaseEntityArgs = {
|
|
71676
|
+
input?: InputMaybe<GraphStoreDeleteJiraEntityHasLinkedKnowledgeBaseEntityInput>;
|
|
71677
|
+
};
|
|
71378
71678
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
71379
71679
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
71380
71680
|
};
|
|
@@ -76591,6 +76891,118 @@ export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge = {
|
|
|
76591
76891
|
node?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion>;
|
|
76592
76892
|
};
|
|
76593
76893
|
export declare type GraphStoreSimplifiedGraphDocument3pDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76894
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection = HasPageInfo & {
|
|
76895
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseConnection';
|
|
76896
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge>>>;
|
|
76897
|
+
pageInfo: PageInfo;
|
|
76898
|
+
};
|
|
76899
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge = {
|
|
76900
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseEdge';
|
|
76901
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76902
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76903
|
+
id: Scalars['ID']['output'];
|
|
76904
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76905
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion>;
|
|
76906
|
+
};
|
|
76907
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76908
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection = HasPageInfo & {
|
|
76909
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseConnection';
|
|
76910
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge>>>;
|
|
76911
|
+
pageInfo: PageInfo;
|
|
76912
|
+
};
|
|
76913
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge = {
|
|
76914
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseEdge';
|
|
76915
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76916
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76917
|
+
id: Scalars['ID']['output'];
|
|
76918
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76919
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion>;
|
|
76920
|
+
};
|
|
76921
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveOtherInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76922
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection = HasPageInfo & {
|
|
76923
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseConnection';
|
|
76924
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge>>>;
|
|
76925
|
+
pageInfo: PageInfo;
|
|
76926
|
+
};
|
|
76927
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge = {
|
|
76928
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseEdge';
|
|
76929
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76930
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76931
|
+
id: Scalars['ID']['output'];
|
|
76932
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76933
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion>;
|
|
76934
|
+
};
|
|
76935
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePdfInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76936
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection = HasPageInfo & {
|
|
76937
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseConnection';
|
|
76938
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge>>>;
|
|
76939
|
+
pageInfo: PageInfo;
|
|
76940
|
+
};
|
|
76941
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge = {
|
|
76942
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseEdge';
|
|
76943
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76944
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76945
|
+
id: Scalars['ID']['output'];
|
|
76946
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76947
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion>;
|
|
76948
|
+
};
|
|
76949
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDrivePresentationInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76950
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection = HasPageInfo & {
|
|
76951
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseConnection';
|
|
76952
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge>>>;
|
|
76953
|
+
pageInfo: PageInfo;
|
|
76954
|
+
};
|
|
76955
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge = {
|
|
76956
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseEdge';
|
|
76957
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76958
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76959
|
+
id: Scalars['ID']['output'];
|
|
76960
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76961
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion>;
|
|
76962
|
+
};
|
|
76963
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentGoogleDriveSpreadsheetInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76964
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection = HasPageInfo & {
|
|
76965
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseConnection';
|
|
76966
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge>>>;
|
|
76967
|
+
pageInfo: PageInfo;
|
|
76968
|
+
};
|
|
76969
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge = {
|
|
76970
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseEdge';
|
|
76971
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76972
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76973
|
+
id: Scalars['ID']['output'];
|
|
76974
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76975
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion>;
|
|
76976
|
+
};
|
|
76977
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentOnedriveInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76978
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection = HasPageInfo & {
|
|
76979
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseConnection';
|
|
76980
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge>>>;
|
|
76981
|
+
pageInfo: PageInfo;
|
|
76982
|
+
};
|
|
76983
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge = {
|
|
76984
|
+
__typename?: 'GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseEdge';
|
|
76985
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76986
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76987
|
+
id: Scalars['ID']['output'];
|
|
76988
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76989
|
+
node?: Maybe<GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion>;
|
|
76990
|
+
};
|
|
76991
|
+
export declare type GraphStoreSimplifiedGraphDocumentReplicates3pDocumentSharepointInverseUnion = DevOpsDocument | ExternalDocument;
|
|
76992
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection = HasPageInfo & {
|
|
76993
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseConnection';
|
|
76994
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge>>>;
|
|
76995
|
+
pageInfo: PageInfo;
|
|
76996
|
+
};
|
|
76997
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge = {
|
|
76998
|
+
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseEdge';
|
|
76999
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77000
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77001
|
+
id: Scalars['ID']['output'];
|
|
77002
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77003
|
+
node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion>;
|
|
77004
|
+
};
|
|
77005
|
+
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityComplementInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
76594
77006
|
export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection = HasPageInfo & {
|
|
76595
77007
|
__typename?: 'GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseConnection';
|
|
76596
77008
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge>>>;
|
|
@@ -77485,6 +77897,70 @@ export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInver
|
|
|
77485
77897
|
};
|
|
77486
77898
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseUnion = JiraIssue;
|
|
77487
77899
|
export declare type GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationUnion = JiraIssue | JiraProject;
|
|
77900
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77901
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityConnection';
|
|
77902
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge>>>;
|
|
77903
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77904
|
+
pageInfo: PageInfo;
|
|
77905
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77906
|
+
};
|
|
77907
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge = {
|
|
77908
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityEdge';
|
|
77909
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77910
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77911
|
+
id: Scalars['ID']['output'];
|
|
77912
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77913
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityUnion>;
|
|
77914
|
+
};
|
|
77915
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77916
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseConnection';
|
|
77917
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
77918
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77919
|
+
pageInfo: PageInfo;
|
|
77920
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77921
|
+
};
|
|
77922
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge = {
|
|
77923
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseEdge';
|
|
77924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77926
|
+
id: Scalars['ID']['output'];
|
|
77927
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77928
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion>;
|
|
77929
|
+
};
|
|
77930
|
+
export declare type GraphStoreSimplifiedJiraEntityDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77931
|
+
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;
|
|
77932
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
77933
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityConnection';
|
|
77934
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
77935
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77936
|
+
pageInfo: PageInfo;
|
|
77937
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77938
|
+
};
|
|
77939
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge = {
|
|
77940
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityEdge';
|
|
77941
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77942
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77943
|
+
id: Scalars['ID']['output'];
|
|
77944
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77945
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityUnion>;
|
|
77946
|
+
};
|
|
77947
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
77948
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
77949
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
77950
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
77951
|
+
pageInfo: PageInfo;
|
|
77952
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77953
|
+
};
|
|
77954
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
77955
|
+
__typename?: 'GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
77956
|
+
createdAt: Scalars['DateTime']['output'];
|
|
77957
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
77958
|
+
id: Scalars['ID']['output'];
|
|
77959
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
77960
|
+
node?: Maybe<GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
77961
|
+
};
|
|
77962
|
+
export declare type GraphStoreSimplifiedJiraEntityHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
77963
|
+
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
77964
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
77489
77965
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
77490
77966
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -86220,11 +86696,19 @@ export declare type GraphStoreV2 = {
|
|
|
86220
86696
|
externalDeploymentLinksExternalDeploymentInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalDeploymentInverseConnection>;
|
|
86221
86697
|
externalDeploymentLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryConnection>;
|
|
86222
86698
|
externalDeploymentLinksExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseConnection>;
|
|
86699
|
+
externalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86700
|
+
externalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection>;
|
|
86701
|
+
externalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection>;
|
|
86702
|
+
externalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection>;
|
|
86703
|
+
externalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection>;
|
|
86223
86704
|
externalDocumentHasChildExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection>;
|
|
86224
86705
|
externalDocumentHasChildExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentInverseConnection>;
|
|
86225
86706
|
externalDocumentHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceConnection>;
|
|
86226
86707
|
externalDocumentHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasExternalSpaceInverseConnection>;
|
|
86227
86708
|
externalDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
86709
|
+
externalDocumentOnedriveLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection>;
|
|
86710
|
+
externalDocumentSharepointLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection>;
|
|
86711
|
+
externalEntityComplementLinksThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection>;
|
|
86228
86712
|
externalEntityIsThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection>;
|
|
86229
86713
|
externalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection>;
|
|
86230
86714
|
externalMeetingRecurrenceHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceInverseConnection>;
|
|
@@ -86567,6 +87051,8 @@ export declare type GraphStoreV2 = {
|
|
|
86567
87051
|
jiraWorkItemCommentHasChildJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection>;
|
|
86568
87052
|
jiraWorkItemContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection>;
|
|
86569
87053
|
jiraWorkItemContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseConnection>;
|
|
87054
|
+
jiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection>;
|
|
87055
|
+
jiraWorkItemDismissedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection>;
|
|
86570
87056
|
jiraWorkItemHasAtlassianAutodevJob?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection>;
|
|
86571
87057
|
jiraWorkItemHasAtlassianAutodevJobInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobInverseConnection>;
|
|
86572
87058
|
jiraWorkItemHasChangedJiraPriority?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasChangedJiraPriorityConnection>;
|
|
@@ -86579,6 +87065,8 @@ export declare type GraphStoreV2 = {
|
|
|
86579
87065
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
86580
87066
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
86581
87067
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
87068
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection>;
|
|
87069
|
+
jiraWorkItemHasLinkedKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection>;
|
|
86582
87070
|
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
86583
87071
|
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
86584
87072
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
@@ -89397,6 +89885,41 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositoryInverse
|
|
|
89397
89885
|
id: Scalars['ID']['input'];
|
|
89398
89886
|
sort?: InputMaybe<GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput>;
|
|
89399
89887
|
};
|
|
89888
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseArgs = {
|
|
89889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89890
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89892
|
+
id: Scalars['ID']['input'];
|
|
89893
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput>;
|
|
89894
|
+
};
|
|
89895
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseArgs = {
|
|
89896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89897
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89899
|
+
id: Scalars['ID']['input'];
|
|
89900
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput>;
|
|
89901
|
+
};
|
|
89902
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseArgs = {
|
|
89903
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89904
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89906
|
+
id: Scalars['ID']['input'];
|
|
89907
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput>;
|
|
89908
|
+
};
|
|
89909
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseArgs = {
|
|
89910
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89911
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89912
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89913
|
+
id: Scalars['ID']['input'];
|
|
89914
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput>;
|
|
89915
|
+
};
|
|
89916
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseArgs = {
|
|
89917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89918
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89919
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89920
|
+
id: Scalars['ID']['input'];
|
|
89921
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput>;
|
|
89922
|
+
};
|
|
89400
89923
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentArgs = {
|
|
89401
89924
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89402
89925
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89432,6 +89955,27 @@ export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentInverseAr
|
|
|
89432
89955
|
id: Scalars['ID']['input'];
|
|
89433
89956
|
sort?: InputMaybe<GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput>;
|
|
89434
89957
|
};
|
|
89958
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentInverseArgs = {
|
|
89959
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89960
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89961
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89962
|
+
id: Scalars['ID']['input'];
|
|
89963
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput>;
|
|
89964
|
+
};
|
|
89965
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentInverseArgs = {
|
|
89966
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89967
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89968
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89969
|
+
id: Scalars['ID']['input'];
|
|
89970
|
+
sort?: InputMaybe<GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput>;
|
|
89971
|
+
};
|
|
89972
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntityInverseArgs = {
|
|
89973
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89974
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89975
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89976
|
+
id: Scalars['ID']['input'];
|
|
89977
|
+
sort?: InputMaybe<GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput>;
|
|
89978
|
+
};
|
|
89435
89979
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntityInverseArgs = {
|
|
89436
89980
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89437
89981
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91862,6 +92406,20 @@ export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalInverseArg
|
|
|
91862
92406
|
id: Scalars['ID']['input'];
|
|
91863
92407
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput>;
|
|
91864
92408
|
};
|
|
92409
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
92410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92413
|
+
id: Scalars['ID']['input'];
|
|
92414
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92415
|
+
};
|
|
92416
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntityInverseArgs = {
|
|
92417
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92418
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92419
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92420
|
+
id: Scalars['ID']['input'];
|
|
92421
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput>;
|
|
92422
|
+
};
|
|
91865
92423
|
export declare type GraphStoreV2JiraWorkItemHasAtlassianAutodevJobArgs = {
|
|
91866
92424
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91867
92425
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91948,6 +92506,20 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
91948
92506
|
id: Scalars['ID']['input'];
|
|
91949
92507
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
91950
92508
|
};
|
|
92509
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
92510
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92511
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92512
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92513
|
+
id: Scalars['ID']['input'];
|
|
92514
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92515
|
+
};
|
|
92516
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntityInverseArgs = {
|
|
92517
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92518
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92520
|
+
id: Scalars['ID']['input'];
|
|
92521
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput>;
|
|
92522
|
+
};
|
|
91951
92523
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
91952
92524
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91953
92525
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -93375,6 +93947,47 @@ export declare type GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload
|
|
|
93375
93947
|
errors?: Maybe<Array<MutationError>>;
|
|
93376
93948
|
success: Scalars['Boolean']['output'];
|
|
93377
93949
|
};
|
|
93950
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
93951
|
+
from: Scalars['ID']['input'];
|
|
93952
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93953
|
+
to: Scalars['ID']['input'];
|
|
93954
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93955
|
+
};
|
|
93956
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
93957
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
93958
|
+
};
|
|
93959
|
+
export declare type GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
93960
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
93961
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93962
|
+
success: Scalars['Boolean']['output'];
|
|
93963
|
+
};
|
|
93964
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
93965
|
+
from: Scalars['ID']['input'];
|
|
93966
|
+
objectMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput>;
|
|
93967
|
+
relationshipMetadata?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput>;
|
|
93968
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
93969
|
+
to: Scalars['ID']['input'];
|
|
93970
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93971
|
+
};
|
|
93972
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
93973
|
+
aliases: Array<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
93974
|
+
};
|
|
93975
|
+
export declare enum GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput {
|
|
93976
|
+
Accepted = "ACCEPTED",
|
|
93977
|
+
NotSet = "NOT_SET",
|
|
93978
|
+
UserAdded = "USER_ADDED"
|
|
93979
|
+
}
|
|
93980
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
93981
|
+
__typename?: 'GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
93982
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93983
|
+
success: Scalars['Boolean']['output'];
|
|
93984
|
+
};
|
|
93985
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipMetadataInput = {
|
|
93986
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93987
|
+
};
|
|
93988
|
+
export declare type GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityRelationshipObjectMetadataInput = {
|
|
93989
|
+
linkSource?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityLinkSourceInput>;
|
|
93990
|
+
};
|
|
93378
93991
|
export declare type GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
93379
93992
|
from: Scalars['ID']['input'];
|
|
93380
93993
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -93909,6 +94522,30 @@ export declare type GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload
|
|
|
93909
94522
|
errors?: Maybe<Array<MutationError>>;
|
|
93910
94523
|
success: Scalars['Boolean']['output'];
|
|
93911
94524
|
};
|
|
94525
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput = {
|
|
94526
|
+
from: Scalars['ID']['input'];
|
|
94527
|
+
to: Scalars['ID']['input'];
|
|
94528
|
+
};
|
|
94529
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput = {
|
|
94530
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityAliasInput>;
|
|
94531
|
+
};
|
|
94532
|
+
export declare type GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload = {
|
|
94533
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload';
|
|
94534
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94535
|
+
success: Scalars['Boolean']['output'];
|
|
94536
|
+
};
|
|
94537
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput = {
|
|
94538
|
+
from: Scalars['ID']['input'];
|
|
94539
|
+
to: Scalars['ID']['input'];
|
|
94540
|
+
};
|
|
94541
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput = {
|
|
94542
|
+
aliases: Array<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityAliasInput>;
|
|
94543
|
+
};
|
|
94544
|
+
export declare type GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload = {
|
|
94545
|
+
__typename?: 'GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload';
|
|
94546
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94547
|
+
success: Scalars['Boolean']['output'];
|
|
94548
|
+
};
|
|
93912
94549
|
export declare type GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardAliasInput = {
|
|
93913
94550
|
from: Scalars['ID']['input'];
|
|
93914
94551
|
to: Scalars['ID']['input'];
|
|
@@ -94116,6 +94753,21 @@ export declare type GraphStoreV2ExternalDeploymentLinksExternalDeploymentSortInp
|
|
|
94116
94753
|
export declare type GraphStoreV2ExternalDeploymentLinksExternalRepositorySortInput = {
|
|
94117
94754
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94118
94755
|
};
|
|
94756
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentSortInput = {
|
|
94757
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94758
|
+
};
|
|
94759
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentSortInput = {
|
|
94760
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94761
|
+
};
|
|
94762
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentSortInput = {
|
|
94763
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94764
|
+
};
|
|
94765
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentSortInput = {
|
|
94766
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94767
|
+
};
|
|
94768
|
+
export declare type GraphStoreV2ExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentSortInput = {
|
|
94769
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94770
|
+
};
|
|
94119
94771
|
export declare type GraphStoreV2ExternalDocumentHasChildExternalDocumentSortInput = {
|
|
94120
94772
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94121
94773
|
};
|
|
@@ -94125,6 +94777,15 @@ export declare type GraphStoreV2ExternalDocumentHasExternalSpaceSortInput = {
|
|
|
94125
94777
|
export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput = {
|
|
94126
94778
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94127
94779
|
};
|
|
94780
|
+
export declare type GraphStoreV2ExternalDocumentOnedriveLinksThirdPartyDocumentSortInput = {
|
|
94781
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94782
|
+
};
|
|
94783
|
+
export declare type GraphStoreV2ExternalDocumentSharepointLinksThirdPartyDocumentSortInput = {
|
|
94784
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94785
|
+
};
|
|
94786
|
+
export declare type GraphStoreV2ExternalEntityComplementLinksThirdPartyEntitySortInput = {
|
|
94787
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94788
|
+
};
|
|
94128
94789
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput = {
|
|
94129
94790
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
94130
94791
|
};
|
|
@@ -95499,6 +96160,12 @@ export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSo
|
|
|
95499
96160
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput = {
|
|
95500
96161
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95501
96162
|
};
|
|
96163
|
+
export declare type GraphStoreV2JiraWorkItemDismissedKnowledgeBaseEntitySortInput = {
|
|
96164
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96165
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96166
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96167
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96168
|
+
};
|
|
95502
96169
|
export declare enum GraphStoreV2JiraWorkItemHasAtlassianAutodevJobAutodevJobStatus {
|
|
95503
96170
|
Cancelled = "CANCELLED",
|
|
95504
96171
|
Completed = "COMPLETED",
|
|
@@ -95552,6 +96219,14 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
95552
96219
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
95553
96220
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95554
96221
|
};
|
|
96222
|
+
export declare type GraphStoreV2JiraWorkItemHasLinkedKnowledgeBaseEntitySortInput = {
|
|
96223
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
96224
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
96225
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96226
|
+
relationship_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96227
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
96228
|
+
to_linkSource?: InputMaybe<GraphStoreSortInput>;
|
|
96229
|
+
};
|
|
95555
96230
|
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
95556
96231
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
95557
96232
|
};
|
|
@@ -95866,6 +96541,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95866
96541
|
createJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluencePagePayload>;
|
|
95867
96542
|
createJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95868
96543
|
createJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96544
|
+
createJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96545
|
+
createJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95869
96546
|
createJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95870
96547
|
createJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2CreateJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95871
96548
|
createJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2CreateJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95895,6 +96572,8 @@ export declare type GraphStoreV2Mutation = {
|
|
|
95895
96572
|
deleteJiraSprintHasRetroConfluencePage?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluencePagePayload>;
|
|
95896
96573
|
deleteJiraSprintHasRetroConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraSprintHasRetroConfluenceWhiteboardPayload>;
|
|
95897
96574
|
deleteJiraVersionLinksExternalFeatureFlag?: Maybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagPayload>;
|
|
96575
|
+
deleteJiraWorkItemDismissedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityPayload>;
|
|
96576
|
+
deleteJiraWorkItemHasLinkedKnowledgeBaseEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityPayload>;
|
|
95898
96577
|
deleteJiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardPayload>;
|
|
95899
96578
|
deleteJiraWorkItemLinksExternalVulnerability?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksExternalVulnerabilityPayload>;
|
|
95900
96579
|
deleteJiraWorkItemLinksSupportEscalationEntity?: Maybe<GraphStoreV2DeleteJiraWorkItemLinksSupportEscalationEntityPayload>;
|
|
@@ -95965,6 +96644,12 @@ export declare type GraphStoreV2MutationCreateJiraSprintHasRetroConfluenceWhiteb
|
|
|
95965
96644
|
export declare type GraphStoreV2MutationCreateJiraVersionLinksExternalFeatureFlagArgs = {
|
|
95966
96645
|
input?: InputMaybe<GraphStoreV2CreateJiraVersionLinksExternalFeatureFlagInput>;
|
|
95967
96646
|
};
|
|
96647
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96648
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96649
|
+
};
|
|
96650
|
+
export declare type GraphStoreV2MutationCreateJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96651
|
+
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96652
|
+
};
|
|
95968
96653
|
export declare type GraphStoreV2MutationCreateJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
95969
96654
|
input?: InputMaybe<GraphStoreV2CreateJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
95970
96655
|
};
|
|
@@ -96052,6 +96737,12 @@ export declare type GraphStoreV2MutationDeleteJiraSprintHasRetroConfluenceWhiteb
|
|
|
96052
96737
|
export declare type GraphStoreV2MutationDeleteJiraVersionLinksExternalFeatureFlagArgs = {
|
|
96053
96738
|
input?: InputMaybe<GraphStoreV2DeleteJiraVersionLinksExternalFeatureFlagInput>;
|
|
96054
96739
|
};
|
|
96740
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemDismissedKnowledgeBaseEntityArgs = {
|
|
96741
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemDismissedKnowledgeBaseEntityInput>;
|
|
96742
|
+
};
|
|
96743
|
+
export declare type GraphStoreV2MutationDeleteJiraWorkItemHasLinkedKnowledgeBaseEntityArgs = {
|
|
96744
|
+
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemHasLinkedKnowledgeBaseEntityInput>;
|
|
96745
|
+
};
|
|
96055
96746
|
export declare type GraphStoreV2MutationDeleteJiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
96056
96747
|
input?: InputMaybe<GraphStoreV2DeleteJiraWorkItemLinksConfluenceWhiteboardInput>;
|
|
96057
96748
|
};
|
|
@@ -101597,6 +102288,76 @@ export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalReposit
|
|
|
101597
102288
|
};
|
|
101598
102289
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
101599
102290
|
export declare type GraphStoreV2SimplifiedExternalDeploymentLinksExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
102291
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102292
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseConnection';
|
|
102293
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge>>>;
|
|
102294
|
+
pageInfo: PageInfo;
|
|
102295
|
+
};
|
|
102296
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge = {
|
|
102297
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseEdge';
|
|
102298
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102299
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102300
|
+
id: Scalars['ID']['output'];
|
|
102301
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102302
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
102303
|
+
};
|
|
102304
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102305
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102306
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseConnection';
|
|
102307
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge>>>;
|
|
102308
|
+
pageInfo: PageInfo;
|
|
102309
|
+
};
|
|
102310
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge = {
|
|
102311
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseEdge';
|
|
102312
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102313
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102314
|
+
id: Scalars['ID']['output'];
|
|
102315
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102316
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion>;
|
|
102317
|
+
};
|
|
102318
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveOtherLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102319
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102320
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseConnection';
|
|
102321
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge>>>;
|
|
102322
|
+
pageInfo: PageInfo;
|
|
102323
|
+
};
|
|
102324
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge = {
|
|
102325
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseEdge';
|
|
102326
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102327
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102328
|
+
id: Scalars['ID']['output'];
|
|
102329
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102330
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion>;
|
|
102331
|
+
};
|
|
102332
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePdfLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102333
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102334
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseConnection';
|
|
102335
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge>>>;
|
|
102336
|
+
pageInfo: PageInfo;
|
|
102337
|
+
};
|
|
102338
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge = {
|
|
102339
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseEdge';
|
|
102340
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102341
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102342
|
+
id: Scalars['ID']['output'];
|
|
102343
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102344
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion>;
|
|
102345
|
+
};
|
|
102346
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDrivePresentationLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102347
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102348
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseConnection';
|
|
102349
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge>>>;
|
|
102350
|
+
pageInfo: PageInfo;
|
|
102351
|
+
};
|
|
102352
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge = {
|
|
102353
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseEdge';
|
|
102354
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102355
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102356
|
+
id: Scalars['ID']['output'];
|
|
102357
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102358
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion>;
|
|
102359
|
+
};
|
|
102360
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentGoogleDriveSpreadsheetLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
101600
102361
|
export declare type GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection = HasPageInfo & {
|
|
101601
102362
|
__typename?: 'GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentConnection';
|
|
101602
102363
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentEdge>>>;
|
|
@@ -101667,6 +102428,48 @@ export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumen
|
|
|
101667
102428
|
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion>;
|
|
101668
102429
|
};
|
|
101669
102430
|
export declare type GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102431
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102432
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseConnection';
|
|
102433
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge>>>;
|
|
102434
|
+
pageInfo: PageInfo;
|
|
102435
|
+
};
|
|
102436
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge = {
|
|
102437
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseEdge';
|
|
102438
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102439
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102440
|
+
id: Scalars['ID']['output'];
|
|
102441
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102442
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion>;
|
|
102443
|
+
};
|
|
102444
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentOnedriveLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102445
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
102446
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseConnection';
|
|
102447
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge>>>;
|
|
102448
|
+
pageInfo: PageInfo;
|
|
102449
|
+
};
|
|
102450
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge = {
|
|
102451
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseEdge';
|
|
102452
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102453
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102454
|
+
id: Scalars['ID']['output'];
|
|
102455
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102456
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion>;
|
|
102457
|
+
};
|
|
102458
|
+
export declare type GraphStoreV2SimplifiedExternalDocumentSharepointLinksThirdPartyDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
102459
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
102460
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseConnection';
|
|
102461
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge>>>;
|
|
102462
|
+
pageInfo: PageInfo;
|
|
102463
|
+
};
|
|
102464
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge = {
|
|
102465
|
+
__typename?: 'GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseEdge';
|
|
102466
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102467
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102468
|
+
id: Scalars['ID']['output'];
|
|
102469
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
102470
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion>;
|
|
102471
|
+
};
|
|
102472
|
+
export declare type GraphStoreV2SimplifiedExternalEntityComplementLinksThirdPartyEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
101670
102473
|
export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection = HasPageInfo & {
|
|
101671
102474
|
__typename?: 'GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection';
|
|
101672
102475
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseEdge>>>;
|
|
@@ -106635,6 +107438,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoal
|
|
|
106635
107438
|
};
|
|
106636
107439
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseUnion = JiraIssue;
|
|
106637
107440
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalUnion = TownsquareGoal;
|
|
107441
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107442
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityConnection';
|
|
107443
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge>>>;
|
|
107444
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107445
|
+
pageInfo: PageInfo;
|
|
107446
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107447
|
+
};
|
|
107448
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge = {
|
|
107449
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityEdge';
|
|
107450
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107451
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107452
|
+
id: Scalars['ID']['output'];
|
|
107453
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107454
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityUnion>;
|
|
107455
|
+
};
|
|
107456
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107457
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseConnection';
|
|
107458
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge>>>;
|
|
107459
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107460
|
+
pageInfo: PageInfo;
|
|
107461
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107462
|
+
};
|
|
107463
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge = {
|
|
107464
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseEdge';
|
|
107465
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107466
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107467
|
+
id: Scalars['ID']['output'];
|
|
107468
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107469
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion>;
|
|
107470
|
+
};
|
|
107471
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemDismissedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107472
|
+
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
107473
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection = HasPageInfo & HasTotal & {
|
|
106639
107474
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection';
|
|
106640
107475
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobEdge>>>;
|
|
@@ -106807,6 +107642,38 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
106807
107642
|
};
|
|
106808
107643
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
106809
107644
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
107645
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection = HasPageInfo & HasTotal & {
|
|
107646
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityConnection';
|
|
107647
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge>>>;
|
|
107648
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107649
|
+
pageInfo: PageInfo;
|
|
107650
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107651
|
+
};
|
|
107652
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge = {
|
|
107653
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityEdge';
|
|
107654
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107655
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107656
|
+
id: Scalars['ID']['output'];
|
|
107657
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107658
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityUnion>;
|
|
107659
|
+
};
|
|
107660
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
107661
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseConnection';
|
|
107662
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge>>>;
|
|
107663
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
107664
|
+
pageInfo: PageInfo;
|
|
107665
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107666
|
+
};
|
|
107667
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge = {
|
|
107668
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseEdge';
|
|
107669
|
+
createdAt: Scalars['DateTime']['output'];
|
|
107670
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
107671
|
+
id: Scalars['ID']['output'];
|
|
107672
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
107673
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion>;
|
|
107674
|
+
};
|
|
107675
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemHasLinkedKnowledgeBaseEntityInverseUnion = JiraIssue | JiraProject;
|
|
107676
|
+
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
107677
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
106811
107678
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
106812
107679
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
@@ -115756,6 +116623,7 @@ export declare type JiraBoardViewWorkflow = {
|
|
|
115756
116623
|
export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
|
|
115757
116624
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
115758
116625
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
116626
|
+
includeRestricted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115759
116627
|
};
|
|
115760
116628
|
export declare type JiraBoardViewWorkflowIssueTypesArgs = {
|
|
115761
116629
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -119341,6 +120209,7 @@ export declare type JiraEditFieldSchemeInput = {
|
|
|
119341
120209
|
};
|
|
119342
120210
|
export declare type JiraEligibleProjectsFilter = {
|
|
119343
120211
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
120212
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
119344
120213
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
119345
120214
|
};
|
|
119346
120215
|
export declare enum JiraEmailMimeType {
|
|
@@ -121720,6 +122589,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
121720
122589
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
121721
122590
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
121722
122591
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
122592
|
+
isChatOpsEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
121723
122593
|
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
121724
122594
|
isIncidentManagementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
121725
122595
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122137,6 +123007,7 @@ export declare type JiraIssueMediaReadTokenArgs = {
|
|
|
122137
123007
|
maxTokenLength: Scalars['Int']['input'];
|
|
122138
123008
|
};
|
|
122139
123009
|
export declare type JiraIssueNextActionSuggestionsArgs = {
|
|
123010
|
+
childIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
122140
123011
|
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
122141
123012
|
};
|
|
122142
123013
|
export declare type JiraIssuePlanScenarioValuesArgs = {
|
|
@@ -122239,11 +123110,6 @@ export declare enum JiraIssueAgentSessionsVisibility {
|
|
|
122239
123110
|
Team = "TEAM",
|
|
122240
123111
|
Yours = "YOURS"
|
|
122241
123112
|
}
|
|
122242
|
-
export declare type JiraIssueAndProject = {
|
|
122243
|
-
__typename?: 'JiraIssueAndProject';
|
|
122244
|
-
issueId: Scalars['ID']['output'];
|
|
122245
|
-
projectId: Scalars['ID']['output'];
|
|
122246
|
-
};
|
|
122247
123113
|
export declare type JiraIssueApprovalsConnection = {
|
|
122248
123114
|
__typename?: 'JiraIssueApprovalsConnection';
|
|
122249
123115
|
edges?: Maybe<Array<JiraIssueApprovalsEdge>>;
|
|
@@ -127575,6 +128441,7 @@ export declare type JiraNavigationItemTypeEdge = {
|
|
|
127575
128441
|
node?: Maybe<JiraNavigationItemType>;
|
|
127576
128442
|
};
|
|
127577
128443
|
export declare enum JiraNavigationItemTypeKey {
|
|
128444
|
+
AiPlanning = "AI_PLANNING",
|
|
127578
128445
|
App = "APP",
|
|
127579
128446
|
Approvals = "APPROVALS",
|
|
127580
128447
|
Apps = "APPS",
|
|
@@ -128034,7 +128901,6 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
128034
128901
|
oauthAppId?: Maybe<Scalars['ID']['output']>;
|
|
128035
128902
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
128036
128903
|
};
|
|
128037
|
-
export declare type JiraOnIssueCreatedForUserResponseType = JiraIssueAndProject | JiraProjectConnection;
|
|
128038
128904
|
export declare type JiraOnSuggestedChildIssueResult = JiraSuggestedChildIssueError | JiraSuggestedChildIssueStatus | JiraSuggestedIssue;
|
|
128039
128905
|
export declare type JiraOnboardingConfig = {
|
|
128040
128906
|
__typename?: 'JiraOnboardingConfig';
|
|
@@ -130097,6 +130963,7 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
130097
130963
|
};
|
|
130098
130964
|
export declare type JiraProjectPolicyProjectFilter = {
|
|
130099
130965
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
130966
|
+
projectCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
130100
130967
|
projectNameQuery?: InputMaybe<Scalars['String']['input']>;
|
|
130101
130968
|
};
|
|
130102
130969
|
export declare type JiraProjectPolicyRule = {
|
|
@@ -130658,6 +131525,7 @@ export declare type JiraQuery = {
|
|
|
130658
131525
|
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
130659
131526
|
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
130660
131527
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
131528
|
+
jsmProjectPortalAccess?: Maybe<JiraServiceManagementCustomerAccessType>;
|
|
130661
131529
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
130662
131530
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
130663
131531
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
@@ -131553,6 +132421,10 @@ export declare type JiraQueryJsmPortalArgs = {
|
|
|
131553
132421
|
cloudId: Scalars['ID']['input'];
|
|
131554
132422
|
projectId: Scalars['Long']['input'];
|
|
131555
132423
|
};
|
|
132424
|
+
export declare type JiraQueryJsmProjectPortalAccessArgs = {
|
|
132425
|
+
cloudId: Scalars['ID']['input'];
|
|
132426
|
+
projectKey: Scalars['String']['input'];
|
|
132427
|
+
};
|
|
131556
132428
|
export declare type JiraQueryJsmProjectTeamTypeArgs = {
|
|
131557
132429
|
projectId: Scalars['ID']['input'];
|
|
131558
132430
|
};
|
|
@@ -134090,6 +134962,10 @@ export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIn
|
|
|
134090
134962
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
134091
134963
|
workflowIssueTypeId: Scalars['ID']['input'];
|
|
134092
134964
|
};
|
|
134965
|
+
export declare enum JiraServiceManagementCustomerAccessType {
|
|
134966
|
+
Public = "PUBLIC",
|
|
134967
|
+
Restricted = "RESTRICTED"
|
|
134968
|
+
}
|
|
134093
134969
|
export declare type JiraServiceManagementCustomerWidget = {
|
|
134094
134970
|
__typename?: 'JiraServiceManagementCustomerWidget';
|
|
134095
134971
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136606,7 +137482,6 @@ export declare type JiraSubscription = {
|
|
|
136606
137482
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
136607
137483
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
136608
137484
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
136609
|
-
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
136610
137485
|
onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
|
|
136611
137486
|
onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
|
|
136612
137487
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
@@ -136635,9 +137510,6 @@ export declare type JiraSubscription = {
|
|
|
136635
137510
|
onJourneyTypeUpdated?: Maybe<JiraJourneyTypeUpdatedEventPayload>;
|
|
136636
137511
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
136637
137512
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
136638
|
-
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
136639
|
-
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
136640
|
-
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
136641
137513
|
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
136642
137514
|
onSprintDeleted?: Maybe<JiraSprintStreamHubPayload>;
|
|
136643
137515
|
onSprintUpdated?: Maybe<JiraSprintStreamHubPayload>;
|
|
@@ -136672,10 +137544,6 @@ export declare type JiraSubscriptionOnAttachmentDeletedByProjectsArgs = {
|
|
|
136672
137544
|
cloudId: Scalars['ID']['input'];
|
|
136673
137545
|
projectIds: Array<Scalars['String']['input']>;
|
|
136674
137546
|
};
|
|
136675
|
-
export declare type JiraSubscriptionOnAutodevJobUpdatedArgs = {
|
|
136676
|
-
issueAri: Scalars['ID']['input'];
|
|
136677
|
-
jobId: Scalars['ID']['input'];
|
|
136678
|
-
};
|
|
136679
137547
|
export declare type JiraSubscriptionOnCalendarIssueCreatedArgs = {
|
|
136680
137548
|
cloudId: Scalars['ID']['input'];
|
|
136681
137549
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
@@ -136798,18 +137666,6 @@ export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
|
136798
137666
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
136799
137667
|
siteId: Scalars['ID']['input'];
|
|
136800
137668
|
};
|
|
136801
|
-
export declare type JiraSubscriptionOnJwmIssueCreatedByProjectArgs = {
|
|
136802
|
-
cloudId: Scalars['ID']['input'];
|
|
136803
|
-
projectId: Scalars['String']['input'];
|
|
136804
|
-
};
|
|
136805
|
-
export declare type JiraSubscriptionOnJwmIssueDeletedByProjectArgs = {
|
|
136806
|
-
cloudId: Scalars['ID']['input'];
|
|
136807
|
-
projectId: Scalars['String']['input'];
|
|
136808
|
-
};
|
|
136809
|
-
export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
136810
|
-
cloudId: Scalars['ID']['input'];
|
|
136811
|
-
projectId: Scalars['String']['input'];
|
|
136812
|
-
};
|
|
136813
137669
|
export declare type JiraSubscriptionOnProjectCleanupTaskStatusChangeArgs = {
|
|
136814
137670
|
cloudId: Scalars['ID']['input'];
|
|
136815
137671
|
};
|
|
@@ -137627,7 +138483,7 @@ export declare type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
|
137627
138483
|
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
137628
138484
|
transitionsToRemove?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
137629
138485
|
};
|
|
137630
|
-
export declare type JiraUpdateBoardViewStatusColumnAgentPayload = {
|
|
138486
|
+
export declare type JiraUpdateBoardViewStatusColumnAgentPayload = Payload & {
|
|
137631
138487
|
__typename?: 'JiraUpdateBoardViewStatusColumnAgentPayload';
|
|
137632
138488
|
boardView?: Maybe<JiraBoardView>;
|
|
137633
138489
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -142373,6 +143229,7 @@ export declare enum KitsuneFieldType {
|
|
|
142373
143229
|
Creator = "CREATOR",
|
|
142374
143230
|
Custom = "CUSTOM",
|
|
142375
143231
|
Customer = "CUSTOMER",
|
|
143232
|
+
Idea = "IDEA",
|
|
142376
143233
|
Parent = "PARENT",
|
|
142377
143234
|
Reporter = "REPORTER",
|
|
142378
143235
|
SourceCategory = "SOURCE_CATEGORY"
|
|
@@ -142950,6 +143807,11 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
142950
143807
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
142951
143808
|
};
|
|
142952
143809
|
export declare type KnowledgeBaseAgentArticleSearchResponse = KnowledgeBaseAgentArticleSearchConnection | QueryError;
|
|
143810
|
+
export declare enum KnowledgeBaseAppSource {
|
|
143811
|
+
Confluence = "CONFLUENCE",
|
|
143812
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
143813
|
+
Sharepoint = "SHAREPOINT"
|
|
143814
|
+
}
|
|
142953
143815
|
export declare type KnowledgeBaseArticle = {
|
|
142954
143816
|
__typename?: 'KnowledgeBaseArticle';
|
|
142955
143817
|
id: Scalars['ID']['output'];
|
|
@@ -143140,6 +144002,7 @@ export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
143140
144002
|
};
|
|
143141
144003
|
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
143142
144004
|
export declare type KnowledgeBaseSearchFiltersInput = {
|
|
144005
|
+
knowledgeBaseAppSources?: InputMaybe<Array<KnowledgeBaseAppSource>>;
|
|
143143
144006
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143144
144007
|
sourceVisibility?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143145
144008
|
sources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -148467,12 +149330,24 @@ export declare type MarketplaceStoreInstalledAppManageLinks = {
|
|
|
148467
149330
|
getStartedUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
148468
149331
|
manageAppUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
148469
149332
|
};
|
|
149333
|
+
export declare type MarketplaceStoreLayoutPartnerHeroSection = MarketplaceStoreLayoutSection & {
|
|
149334
|
+
__typename?: 'MarketplaceStoreLayoutPartnerHeroSection';
|
|
149335
|
+
appCount?: Maybe<Scalars['Int']['output']>;
|
|
149336
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149337
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
149338
|
+
partnerDescription: Scalars['String']['output'];
|
|
149339
|
+
partnerLogoUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149340
|
+
partnerName: Scalars['String']['output'];
|
|
149341
|
+
title: Scalars['String']['output'];
|
|
149342
|
+
totalInstalls?: Maybe<Scalars['Int']['output']>;
|
|
149343
|
+
};
|
|
148470
149344
|
export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection & {
|
|
148471
149345
|
__typename?: 'MarketplaceStoreLayoutRegularSection';
|
|
148472
149346
|
backgroundImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
148473
149347
|
description?: Maybe<Scalars['String']['output']>;
|
|
148474
149348
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
148475
149349
|
leftImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
149350
|
+
navigationLabel?: Maybe<Scalars['String']['output']>;
|
|
148476
149351
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
148477
149352
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
148478
149353
|
rightImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
@@ -148496,8 +149371,12 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
148496
149371
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
148497
149372
|
Hero = "HERO",
|
|
148498
149373
|
NewestAiApps = "NEWEST_AI_APPS",
|
|
149374
|
+
PartnerCredentials = "PARTNER_CREDENTIALS",
|
|
149375
|
+
PartnerHero = "PARTNER_HERO",
|
|
149376
|
+
PartnerSidebar = "PARTNER_SIDEBAR",
|
|
148499
149377
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
148500
149378
|
ProductHero = "PRODUCT_HERO",
|
|
149379
|
+
RecommendationsFallback = "RECOMMENDATIONS_FALLBACK",
|
|
148501
149380
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
148502
149381
|
Spotlight = "SPOTLIGHT",
|
|
148503
149382
|
Statistics = "STATISTICS",
|
|
@@ -148786,6 +149665,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
148786
149665
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
148787
149666
|
StoreCategory = "STORE_CATEGORY",
|
|
148788
149667
|
StoreCollection = "STORE_COLLECTION",
|
|
149668
|
+
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
148789
149669
|
StoreProduct = "STORE_PRODUCT",
|
|
148790
149670
|
UnifiedStore = "UNIFIED_STORE"
|
|
148791
149671
|
}
|
|
@@ -155223,7 +156103,7 @@ export declare type MercuryRiskActivityHistoryConnection = {
|
|
|
155223
156103
|
pageInfo: PageInfo;
|
|
155224
156104
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
155225
156105
|
};
|
|
155226
|
-
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea;
|
|
156106
|
+
export declare type MercuryRiskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | MercuryFocusArea | MercuryOrganization;
|
|
155227
156107
|
export declare type MercuryRiskActivityHistoryEdge = {
|
|
155228
156108
|
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
155229
156109
|
cursor: Scalars['String']['output'];
|
|
@@ -157456,9 +158336,9 @@ export declare type Mutation = {
|
|
|
157456
158336
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
157457
158337
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
157458
158338
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
157459
|
-
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
157460
158339
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
157461
158340
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
158341
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
157462
158342
|
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
157463
158343
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
157464
158344
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -157837,6 +158717,7 @@ export declare type Mutation = {
|
|
|
157837
158717
|
contactAdmin?: Maybe<GraphQlContactAdminStatus>;
|
|
157838
158718
|
convertPageToLiveEditAction?: Maybe<ConvertPageToLiveEditActionPayload>;
|
|
157839
158719
|
convertToFolder?: Maybe<ConfluenceConvertContentToFolderPayload>;
|
|
158720
|
+
convoAi_cancelConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157840
158721
|
convoAi_completeConversation?: Maybe<ConvoAiUpdateConversationStatePayload>;
|
|
157841
158722
|
convoAi_deleteAgentSession?: Maybe<ConvoAiDeleteAgentSessionPayload>;
|
|
157842
158723
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
@@ -158466,6 +159347,7 @@ export declare type Mutation = {
|
|
|
158466
159347
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
158467
159348
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
158468
159349
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
159350
|
+
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
158469
159351
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
158470
159352
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
158471
159353
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
@@ -158477,7 +159359,9 @@ export declare type Mutation = {
|
|
|
158477
159359
|
radar_deleteView?: Maybe<RadarView>;
|
|
158478
159360
|
radar_recordEntityViewed?: Maybe<RadarRecordEntityViewedResponse>;
|
|
158479
159361
|
radar_starEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159362
|
+
radar_syncAiConnector?: Maybe<RadarSyncHistory>;
|
|
158480
159363
|
radar_unstarEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
159364
|
+
radar_updateAiConnector?: Maybe<RadarAiConnector>;
|
|
158481
159365
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
158482
159366
|
radar_updateFieldDefinitionSettings?: Maybe<RadarUpdateFieldDefinitionSettingsMutationResponse>;
|
|
158483
159367
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -159101,15 +159985,15 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
159101
159985
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
159102
159986
|
input: AgentWorkspaceSkillCreateInput;
|
|
159103
159987
|
};
|
|
159104
|
-
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
159105
|
-
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
159106
|
-
};
|
|
159107
159988
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
159108
159989
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
159109
159990
|
};
|
|
159110
159991
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
159111
159992
|
input: AgentWorkspaceDeleteShiftInput;
|
|
159112
159993
|
};
|
|
159994
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
159995
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
159996
|
+
};
|
|
159113
159997
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
159114
159998
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
159115
159999
|
};
|
|
@@ -160546,6 +161430,10 @@ export declare type MutationConvertPageToLiveEditActionArgs = {
|
|
|
160546
161430
|
export declare type MutationConvertToFolderArgs = {
|
|
160547
161431
|
id: Scalars['ID']['input'];
|
|
160548
161432
|
};
|
|
161433
|
+
export declare type MutationConvoAi_CancelConversationArgs = {
|
|
161434
|
+
cloudId: Scalars['ID']['input'];
|
|
161435
|
+
conversationId: Scalars['ID']['input'];
|
|
161436
|
+
};
|
|
160549
161437
|
export declare type MutationConvoAi_CompleteConversationArgs = {
|
|
160550
161438
|
cloudId: Scalars['ID']['input'];
|
|
160551
161439
|
conversationId: Scalars['ID']['input'];
|
|
@@ -162593,6 +163481,10 @@ export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
|
162593
163481
|
cloudId: Scalars['ID']['input'];
|
|
162594
163482
|
input: Array<RadarClearFocusAreaProposalInput>;
|
|
162595
163483
|
};
|
|
163484
|
+
export declare type MutationRadar_CreateAiConnectorArgs = {
|
|
163485
|
+
cloudId: Scalars['ID']['input'];
|
|
163486
|
+
input: RadarCreateAiConnectorInput;
|
|
163487
|
+
};
|
|
162596
163488
|
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
162597
163489
|
cloudId: Scalars['ID']['input'];
|
|
162598
163490
|
input: RadarCustomFieldInput;
|
|
@@ -162635,10 +163527,18 @@ export declare type MutationRadar_StarEntitiesArgs = {
|
|
|
162635
163527
|
cloudId: Scalars['ID']['input'];
|
|
162636
163528
|
ids: Array<Scalars['ID']['input']>;
|
|
162637
163529
|
};
|
|
163530
|
+
export declare type MutationRadar_SyncAiConnectorArgs = {
|
|
163531
|
+
cloudId: Scalars['ID']['input'];
|
|
163532
|
+
input: RadarSyncAiConnectorInput;
|
|
163533
|
+
};
|
|
162638
163534
|
export declare type MutationRadar_UnstarEntitiesArgs = {
|
|
162639
163535
|
cloudId: Scalars['ID']['input'];
|
|
162640
163536
|
ids: Array<Scalars['ID']['input']>;
|
|
162641
163537
|
};
|
|
163538
|
+
export declare type MutationRadar_UpdateAiConnectorArgs = {
|
|
163539
|
+
cloudId: Scalars['ID']['input'];
|
|
163540
|
+
input: RadarUpdateAiConnectorInput;
|
|
163541
|
+
};
|
|
162642
163542
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
162643
163543
|
cloudId: Scalars['ID']['input'];
|
|
162644
163544
|
input: RadarConnectorsInput;
|
|
@@ -166719,7 +167619,6 @@ export declare type Query = {
|
|
|
166719
167619
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
166720
167620
|
agentWorkspace_projectRoutingHistory?: Maybe<AgentWorkspaceProjectRoutingHistory>;
|
|
166721
167621
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
166722
|
-
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
166723
167622
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
166724
167623
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
166725
167624
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
@@ -166836,6 +167735,7 @@ export declare type Query = {
|
|
|
166836
167735
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
166837
167736
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
166838
167737
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
167738
|
+
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
166839
167739
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
166840
167740
|
assetsDM_objectsReportDsOverlap?: Maybe<AssetsDmObjectsReportDsOverlap>;
|
|
166841
167741
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
@@ -167137,6 +168037,7 @@ export declare type Query = {
|
|
|
167137
168037
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
167138
168038
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
167139
168039
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
168040
|
+
confluence_remoteObjectSuggestionCount?: Maybe<Scalars['Int']['output']>;
|
|
167140
168041
|
confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
|
|
167141
168042
|
confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
167142
168043
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -167767,6 +168668,8 @@ export declare type Query = {
|
|
|
167767
168668
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
167768
168669
|
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
167769
168670
|
quickReload?: Maybe<QuickReload>;
|
|
168671
|
+
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
168672
|
+
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
167770
168673
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
167771
168674
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
167772
168675
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -168737,8 +169640,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
168737
169640
|
};
|
|
168738
169641
|
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
168739
169642
|
cloudId: Scalars['ID']['input'];
|
|
169643
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
168740
169644
|
projectKey: Scalars['String']['input'];
|
|
168741
|
-
serviceFieldId
|
|
169645
|
+
serviceFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
168742
169646
|
};
|
|
168743
169647
|
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
168744
169648
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168765,9 +169669,6 @@ export declare type QueryAgentWorkspace_ProjectRoutingHistoryArgs = {
|
|
|
168765
169669
|
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
168766
169670
|
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
168767
169671
|
};
|
|
168768
|
-
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
168769
|
-
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
168770
|
-
};
|
|
168771
169672
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
168772
169673
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
168773
169674
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -168800,6 +169701,7 @@ export declare type QueryAgentWorkspace_ServicesArgs = {
|
|
|
168800
169701
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168801
169702
|
cloudId: Scalars['ID']['input'];
|
|
168802
169703
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169704
|
+
projectId: Scalars['ID']['input'];
|
|
168803
169705
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168804
169706
|
};
|
|
168805
169707
|
export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
@@ -169407,6 +170309,14 @@ export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
|
169407
170309
|
objectId: Scalars['ID']['input'];
|
|
169408
170310
|
workspaceId: Scalars['ID']['input'];
|
|
169409
170311
|
};
|
|
170312
|
+
export declare type QueryAssetsDm_ObjectsReportAttributePieArgs = {
|
|
170313
|
+
attributeName: Scalars['String']['input'];
|
|
170314
|
+
cloudId: Scalars['ID']['input'];
|
|
170315
|
+
nextAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
170316
|
+
objectId: Scalars['ID']['input'];
|
|
170317
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
170318
|
+
workspaceId: Scalars['ID']['input'];
|
|
170319
|
+
};
|
|
169410
170320
|
export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
169411
170321
|
cloudId: Scalars['ID']['input'];
|
|
169412
170322
|
fromSources: Array<Scalars['String']['input']>;
|
|
@@ -170701,6 +171611,10 @@ export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
|
170701
171611
|
cloudId: Scalars['ID']['input'];
|
|
170702
171612
|
migrationId: Scalars['String']['input'];
|
|
170703
171613
|
};
|
|
171614
|
+
export declare type QueryConfluence_RemoteObjectSuggestionCountArgs = {
|
|
171615
|
+
cloudId: Scalars['ID']['input'];
|
|
171616
|
+
spaceKey: Scalars['String']['input'];
|
|
171617
|
+
};
|
|
170704
171618
|
export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
|
|
170705
171619
|
cloudId: Scalars['ID']['input'];
|
|
170706
171620
|
id: Scalars['ID']['input'];
|
|
@@ -171972,7 +172886,6 @@ export declare type QueryGraphIntegration_McpServerRequestsArgs = {
|
|
|
171972
172886
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171973
172887
|
cloudId: Scalars['ID']['input'];
|
|
171974
172888
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171975
|
-
status?: InputMaybe<GraphIntegrationMcpServerRequestStatus>;
|
|
171976
172889
|
};
|
|
171977
172890
|
export declare type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
171978
172891
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -173223,6 +174136,18 @@ export declare type QueryQuickReloadArgs = {
|
|
|
173223
174136
|
pageId: Scalars['Long']['input'];
|
|
173224
174137
|
since: Scalars['Long']['input'];
|
|
173225
174138
|
};
|
|
174139
|
+
export declare type QueryRadar_AiConnectorByIdArgs = {
|
|
174140
|
+
cloudId: Scalars['ID']['input'];
|
|
174141
|
+
id: Scalars['ID']['input'];
|
|
174142
|
+
};
|
|
174143
|
+
export declare type QueryRadar_AiConnectorsArgs = {
|
|
174144
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174145
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
174146
|
+
cloudId: Scalars['ID']['input'];
|
|
174147
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174148
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
174149
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
174150
|
+
};
|
|
173226
174151
|
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
173227
174152
|
cloudId: Scalars['ID']['input'];
|
|
173228
174153
|
};
|
|
@@ -174333,6 +175258,43 @@ export declare type QuickReloadComment = {
|
|
|
174333
175258
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
174334
175259
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
174335
175260
|
};
|
|
175261
|
+
export declare type RadarAiConnector = {
|
|
175262
|
+
__typename?: 'RadarAiConnector';
|
|
175263
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175264
|
+
id: Scalars['ID']['output'];
|
|
175265
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
175266
|
+
lastSuccessfulSync?: Maybe<RadarSyncHistory>;
|
|
175267
|
+
lastSync?: Maybe<RadarSyncHistory>;
|
|
175268
|
+
name: Scalars['String']['output'];
|
|
175269
|
+
provider: RadarAiConnectorProvider;
|
|
175270
|
+
type: RadarAiConnectorType;
|
|
175271
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175272
|
+
};
|
|
175273
|
+
export declare type RadarAiConnectorConfigInput = {
|
|
175274
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
175275
|
+
};
|
|
175276
|
+
export declare enum RadarAiConnectorProvider {
|
|
175277
|
+
AnthropicClaudeConsole = "ANTHROPIC_CLAUDE_CONSOLE",
|
|
175278
|
+
AnthropicClaudeEnterprise = "ANTHROPIC_CLAUDE_ENTERPRISE",
|
|
175279
|
+
Cursor = "CURSOR",
|
|
175280
|
+
Rovo = "ROVO"
|
|
175281
|
+
}
|
|
175282
|
+
export declare enum RadarAiConnectorType {
|
|
175283
|
+
Api = "API",
|
|
175284
|
+
Csv = "CSV"
|
|
175285
|
+
}
|
|
175286
|
+
export declare type RadarAiConnectorsConnection = RadarConnection & {
|
|
175287
|
+
__typename?: 'RadarAiConnectorsConnection';
|
|
175288
|
+
edges: Array<RadarAiConnectorsEdge>;
|
|
175289
|
+
nodes: Array<RadarAiConnector>;
|
|
175290
|
+
pageInfo: PageInfo;
|
|
175291
|
+
totalCount: Scalars['Int']['output'];
|
|
175292
|
+
};
|
|
175293
|
+
export declare type RadarAiConnectorsEdge = RadarEdge & {
|
|
175294
|
+
__typename?: 'RadarAiConnectorsEdge';
|
|
175295
|
+
cursor: Scalars['String']['output'];
|
|
175296
|
+
node: RadarAiConnector;
|
|
175297
|
+
};
|
|
174336
175298
|
export declare type RadarAriFieldValue = {
|
|
174337
175299
|
__typename?: 'RadarAriFieldValue';
|
|
174338
175300
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -174381,6 +175343,12 @@ export declare type RadarConnectorsInput = {
|
|
|
174381
175343
|
isEnabled: Scalars['Boolean']['input'];
|
|
174382
175344
|
type?: InputMaybe<RadarConnectorType>;
|
|
174383
175345
|
};
|
|
175346
|
+
export declare type RadarCreateAiConnectorInput = {
|
|
175347
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175348
|
+
name: Scalars['String']['input'];
|
|
175349
|
+
provider: RadarAiConnectorProvider;
|
|
175350
|
+
type: RadarAiConnectorType;
|
|
175351
|
+
};
|
|
174384
175352
|
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
174385
175353
|
__typename?: 'RadarCustomFieldDefinition';
|
|
174386
175354
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -174976,10 +175944,37 @@ export declare type RadarStringFieldValue = {
|
|
|
174976
175944
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
174977
175945
|
value?: Maybe<Scalars['String']['output']>;
|
|
174978
175946
|
};
|
|
175947
|
+
export declare type RadarSyncAiConnectorInput = {
|
|
175948
|
+
id: Scalars['ID']['input'];
|
|
175949
|
+
periodEndExclusive?: InputMaybe<Scalars['DateTime']['input']>;
|
|
175950
|
+
periodStartInclusive: Scalars['DateTime']['input'];
|
|
175951
|
+
};
|
|
174979
175952
|
export declare type RadarSyncData = {
|
|
174980
175953
|
__typename?: 'RadarSyncData';
|
|
174981
175954
|
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
174982
175955
|
};
|
|
175956
|
+
export declare type RadarSyncHistory = {
|
|
175957
|
+
__typename?: 'RadarSyncHistory';
|
|
175958
|
+
createdAt: Scalars['DateTime']['output'];
|
|
175959
|
+
id: Scalars['ID']['output'];
|
|
175960
|
+
status: RadarSyncHistoryStatus;
|
|
175961
|
+
triggeredBy: Scalars['String']['output'];
|
|
175962
|
+
triggeredByUser?: Maybe<User>;
|
|
175963
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
175964
|
+
};
|
|
175965
|
+
export declare enum RadarSyncHistoryStatus {
|
|
175966
|
+
Failed = "FAILED",
|
|
175967
|
+
InProgress = "IN_PROGRESS",
|
|
175968
|
+
Scheduled = "SCHEDULED",
|
|
175969
|
+
Success = "SUCCESS",
|
|
175970
|
+
SystemError = "SYSTEM_ERROR"
|
|
175971
|
+
}
|
|
175972
|
+
export declare type RadarUpdateAiConnectorInput = {
|
|
175973
|
+
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
175974
|
+
id: Scalars['ID']['input'];
|
|
175975
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
175976
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
175977
|
+
};
|
|
174983
175978
|
export declare type RadarUpdateFieldDefinitionSettingsMutationResponse = {
|
|
174984
175979
|
__typename?: 'RadarUpdateFieldDefinitionSettingsMutationResponse';
|
|
174985
175980
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -176511,6 +177506,8 @@ export declare enum Scope {
|
|
|
176511
177506
|
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
176512
177507
|
DashboardRead = "DASHBOARD_READ",
|
|
176513
177508
|
DashboardWrite = "DASHBOARD_WRITE",
|
|
177509
|
+
DeleteAssetsTwgCli = "DELETE_ASSETS_TWG_CLI",
|
|
177510
|
+
DeleteBitbucketTwgCli = "DELETE_BITBUCKET_TWG_CLI",
|
|
176514
177511
|
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
176515
177512
|
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
176516
177513
|
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
@@ -176521,14 +177518,22 @@ export declare enum Scope {
|
|
|
176521
177518
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
176522
177519
|
DeleteConfluenceTwgCli = "DELETE_CONFLUENCE_TWG_CLI",
|
|
176523
177520
|
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
177521
|
+
DeleteGoalTwgCli = "DELETE_GOAL_TWG_CLI",
|
|
176524
177522
|
DeleteInsightJpd = "DELETE_INSIGHT_JPD",
|
|
176525
177523
|
DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
|
|
177524
|
+
DeleteJiraPlatformTwgCli = "DELETE_JIRA_PLATFORM_TWG_CLI",
|
|
176526
177525
|
DeleteJsmTwgCli = "DELETE_JSM_TWG_CLI",
|
|
176527
177526
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
176528
177527
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
177528
|
+
DeleteJswTwgCli = "DELETE_JSW_TWG_CLI",
|
|
177529
|
+
DeleteLoomTwgCli = "DELETE_LOOM_TWG_CLI",
|
|
177530
|
+
DeleteLoomVideo = "DELETE_LOOM_VIDEO",
|
|
177531
|
+
DeleteMercuryTwgCli = "DELETE_MERCURY_TWG_CLI",
|
|
176529
177532
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
176530
177533
|
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
176531
177534
|
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
177535
|
+
DeleteProjectTwgCli = "DELETE_PROJECT_TWG_CLI",
|
|
177536
|
+
DeleteRadarTwgCli = "DELETE_RADAR_TWG_CLI",
|
|
176532
177537
|
DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
|
|
176533
177538
|
DeleteRequestFeedback = "DELETE_REQUEST_FEEDBACK",
|
|
176534
177539
|
DeleteRequestNotification = "DELETE_REQUEST_NOTIFICATION",
|
|
@@ -176536,9 +177541,11 @@ export declare enum Scope {
|
|
|
176536
177541
|
DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
|
|
176537
177542
|
DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
|
|
176538
177543
|
DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
|
|
177544
|
+
DeleteSpfTwgCli = "DELETE_SPF_TWG_CLI",
|
|
176539
177545
|
DeleteStakeholderCommsPage = "DELETE_STAKEHOLDER_COMMS_PAGE",
|
|
176540
177546
|
DeleteStakeholderCommsStakeholder = "DELETE_STAKEHOLDER_COMMS_STAKEHOLDER",
|
|
176541
177547
|
DeleteStakeholderCommsSubscriber = "DELETE_STAKEHOLDER_COMMS_SUBSCRIBER",
|
|
177548
|
+
DeleteTrelloTwgCli = "DELETE_TRELLO_TWG_CLI",
|
|
176542
177549
|
DeleteViewJpd = "DELETE_VIEW_JPD",
|
|
176543
177550
|
DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
|
|
176544
177551
|
DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
|
|
@@ -176749,6 +177756,7 @@ export declare enum Scope {
|
|
|
176749
177756
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
176750
177757
|
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
176751
177758
|
ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
|
|
177759
|
+
ReadJiraPlatformTwgCli = "READ_JIRA_PLATFORM_TWG_CLI",
|
|
176752
177760
|
ReadJiraUser = "READ_JIRA_USER",
|
|
176753
177761
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
176754
177762
|
ReadJsmTwgCli = "READ_JSM_TWG_CLI",
|
|
@@ -176765,7 +177773,12 @@ export declare enum Scope {
|
|
|
176765
177773
|
ReadJswTwgCli = "READ_JSW_TWG_CLI",
|
|
176766
177774
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
176767
177775
|
ReadKnowledgeDiscoveryTopic = "READ_KNOWLEDGE_DISCOVERY_TOPIC",
|
|
177776
|
+
ReadLoomComment = "READ_LOOM_COMMENT",
|
|
177777
|
+
ReadLoomMeeting = "READ_LOOM_MEETING",
|
|
177778
|
+
ReadLoomSpace = "READ_LOOM_SPACE",
|
|
176768
177779
|
ReadLoomTwgCli = "READ_LOOM_TWG_CLI",
|
|
177780
|
+
ReadLoomVideo = "READ_LOOM_VIDEO",
|
|
177781
|
+
ReadLoomWorkspace = "READ_LOOM_WORKSPACE",
|
|
176769
177782
|
ReadMe = "READ_ME",
|
|
176770
177783
|
ReadMercuryTwgCli = "READ_MERCURY_TWG_CLI",
|
|
176771
177784
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
@@ -176912,6 +177925,7 @@ export declare enum Scope {
|
|
|
176912
177925
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
176913
177926
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
176914
177927
|
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
177928
|
+
WriteJiraPlatformTwgCli = "WRITE_JIRA_PLATFORM_TWG_CLI",
|
|
176915
177929
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
176916
177930
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
176917
177931
|
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
@@ -176925,7 +177939,9 @@ export declare enum Scope {
|
|
|
176925
177939
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
176926
177940
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
176927
177941
|
WriteJswTwgCli = "WRITE_JSW_TWG_CLI",
|
|
177942
|
+
WriteLoomSpace = "WRITE_LOOM_SPACE",
|
|
176928
177943
|
WriteLoomTwgCli = "WRITE_LOOM_TWG_CLI",
|
|
177944
|
+
WriteLoomWorkspace = "WRITE_LOOM_WORKSPACE",
|
|
176929
177945
|
WriteMercuryTwgCli = "WRITE_MERCURY_TWG_CLI",
|
|
176930
177946
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
176931
177947
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
@@ -202431,6 +203447,19 @@ export declare type TeamMembersArgs = {
|
|
|
202431
203447
|
first?: Scalars['Int']['input'];
|
|
202432
203448
|
state?: Array<MembershipState>;
|
|
202433
203449
|
};
|
|
203450
|
+
export declare type TeamAddMembersInput = {
|
|
203451
|
+
memberIds: Array<Scalars['ID']['input']>;
|
|
203452
|
+
scopeId: Scalars['ID']['input'];
|
|
203453
|
+
teamId: Scalars['ID']['input'];
|
|
203454
|
+
};
|
|
203455
|
+
export declare type TeamAddMembersPayload = Payload & {
|
|
203456
|
+
__typename?: 'TeamAddMembersPayload';
|
|
203457
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203458
|
+
failedMembers?: Maybe<Array<TeamMembershipMutationError>>;
|
|
203459
|
+
members?: Maybe<Array<TeamMemberAccount>>;
|
|
203460
|
+
success: Scalars['Boolean']['output'];
|
|
203461
|
+
team?: Maybe<TeamV2>;
|
|
203462
|
+
};
|
|
202434
203463
|
export declare type TeamBulkArchiveError = {
|
|
202435
203464
|
__typename?: 'TeamBulkArchiveError';
|
|
202436
203465
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -202659,6 +203688,10 @@ export declare type TeamMember = {
|
|
|
202659
203688
|
role?: Maybe<MembershipRole>;
|
|
202660
203689
|
state?: Maybe<MembershipState>;
|
|
202661
203690
|
};
|
|
203691
|
+
export declare type TeamMemberAccount = {
|
|
203692
|
+
__typename?: 'TeamMemberAccount';
|
|
203693
|
+
accountId: Scalars['ID']['output'];
|
|
203694
|
+
};
|
|
202662
203695
|
export declare type TeamMemberAccountId = {
|
|
202663
203696
|
__typename?: 'TeamMemberAccountId';
|
|
202664
203697
|
accountId: Scalars['ID']['output'];
|
|
@@ -202704,6 +203737,12 @@ export declare type TeamMembersChange = {
|
|
|
202704
203737
|
export declare type TeamMembershipFilter = {
|
|
202705
203738
|
memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
202706
203739
|
};
|
|
203740
|
+
export declare type TeamMembershipMutationError = {
|
|
203741
|
+
__typename?: 'TeamMembershipMutationError';
|
|
203742
|
+
accountId: Scalars['ID']['output'];
|
|
203743
|
+
code: Scalars['String']['output'];
|
|
203744
|
+
message: Scalars['String']['output'];
|
|
203745
|
+
};
|
|
202707
203746
|
export declare enum TeamMembershipProcessingStatus {
|
|
202708
203747
|
Async = "ASYNC"
|
|
202709
203748
|
}
|
|
@@ -202764,6 +203803,7 @@ export declare type TeamMergeTeamsPayload = Payload & {
|
|
|
202764
203803
|
export declare type TeamMutation = {
|
|
202765
203804
|
__typename?: 'TeamMutation';
|
|
202766
203805
|
addChild?: Maybe<TeamV2>;
|
|
203806
|
+
addMembers?: Maybe<TeamAddMembersPayload>;
|
|
202767
203807
|
addParent?: Maybe<TeamV2>;
|
|
202768
203808
|
assignTeamToType?: Maybe<TeamV2>;
|
|
202769
203809
|
bulkArchiveTeams?: Maybe<TeamBulkArchivePayload>;
|
|
@@ -202782,6 +203822,7 @@ export declare type TeamMutation = {
|
|
|
202782
203822
|
linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
|
|
202783
203823
|
mergeTeams?: Maybe<TeamMergeTeamsPayload>;
|
|
202784
203824
|
removeChild?: Maybe<TeamV2>;
|
|
203825
|
+
removeMembers?: Maybe<TeamRemoveMembersPayload>;
|
|
202785
203826
|
removeParent?: Maybe<TeamV2>;
|
|
202786
203827
|
restoreExternalTeam?: Maybe<TeamRestoreExternalTeamPayload>;
|
|
202787
203828
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
@@ -202802,6 +203843,9 @@ export declare type TeamMutationAddChildArgs = {
|
|
|
202802
203843
|
siteId: Scalars['ID']['input'];
|
|
202803
203844
|
teamId: Scalars['ID']['input'];
|
|
202804
203845
|
};
|
|
203846
|
+
export declare type TeamMutationAddMembersArgs = {
|
|
203847
|
+
input: TeamAddMembersInput;
|
|
203848
|
+
};
|
|
202805
203849
|
export declare type TeamMutationAddParentArgs = {
|
|
202806
203850
|
parentId: Scalars['ID']['input'];
|
|
202807
203851
|
siteId: Scalars['ID']['input'];
|
|
@@ -202868,6 +203912,9 @@ export declare type TeamMutationRemoveChildArgs = {
|
|
|
202868
203912
|
siteId: Scalars['ID']['input'];
|
|
202869
203913
|
teamId: Scalars['ID']['input'];
|
|
202870
203914
|
};
|
|
203915
|
+
export declare type TeamMutationRemoveMembersArgs = {
|
|
203916
|
+
input: TeamRemoveMembersInput;
|
|
203917
|
+
};
|
|
202871
203918
|
export declare type TeamMutationRemoveParentArgs = {
|
|
202872
203919
|
siteId: Scalars['ID']['input'];
|
|
202873
203920
|
teamId: Scalars['ID']['input'];
|
|
@@ -203064,6 +204111,7 @@ export declare type TeamQueryTeamV2Args = {
|
|
|
203064
204111
|
};
|
|
203065
204112
|
export declare type TeamQueryTeamV3Args = {
|
|
203066
204113
|
id: Scalars['ID']['input'];
|
|
204114
|
+
scopeId: Scalars['ID']['input'];
|
|
203067
204115
|
};
|
|
203068
204116
|
export declare type TeamQueryTeamsTqlArgs = {
|
|
203069
204117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203084,6 +204132,18 @@ export declare type TeamQueryTypesWithinScopeArgs = {
|
|
|
203084
204132
|
first?: Scalars['Int']['input'];
|
|
203085
204133
|
scopeId: Scalars['ID']['input'];
|
|
203086
204134
|
};
|
|
204135
|
+
export declare type TeamRemoveMembersInput = {
|
|
204136
|
+
memberIds: Array<Scalars['ID']['input']>;
|
|
204137
|
+
scopeId: Scalars['ID']['input'];
|
|
204138
|
+
teamId: Scalars['ID']['input'];
|
|
204139
|
+
};
|
|
204140
|
+
export declare type TeamRemoveMembersPayload = Payload & {
|
|
204141
|
+
__typename?: 'TeamRemoveMembersPayload';
|
|
204142
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204143
|
+
failedMembers?: Maybe<Array<TeamMembershipMutationError>>;
|
|
204144
|
+
success: Scalars['Boolean']['output'];
|
|
204145
|
+
team?: Maybe<TeamV2>;
|
|
204146
|
+
};
|
|
203087
204147
|
export declare type TeamRestoreExternalTeamInput = {
|
|
203088
204148
|
externalReference: TeamExternalReferenceInput;
|
|
203089
204149
|
scopeId: Scalars['ID']['input'];
|
|
@@ -205496,6 +206556,7 @@ export declare type TownsquareGoalsEditMetricPayload = {
|
|
|
205496
206556
|
export declare type TownsquareGoalsEditMetricTargetInput = {
|
|
205497
206557
|
currentValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205498
206558
|
metricTargetId: Scalars['ID']['input'];
|
|
206559
|
+
metricTargetPeriods?: InputMaybe<Array<InputMaybe<TownsquareMetricTargetPeriodInput>>>;
|
|
205499
206560
|
startValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205500
206561
|
targetValue?: InputMaybe<Scalars['Float']['input']>;
|
|
205501
206562
|
};
|
|
@@ -205968,6 +207029,7 @@ export declare type TownsquareMetricTargetEdge = {
|
|
|
205968
207029
|
export declare type TownsquareMetricTargetPeriod = {
|
|
205969
207030
|
__typename?: 'TownsquareMetricTargetPeriod';
|
|
205970
207031
|
date?: Maybe<TownsquareTargetDate>;
|
|
207032
|
+
latestValue?: Maybe<TownsquareMetricTargetPeriodToMetricValueEdge>;
|
|
205971
207033
|
value?: Maybe<Scalars['Float']['output']>;
|
|
205972
207034
|
};
|
|
205973
207035
|
export declare type TownsquareMetricTargetPeriodConnection = {
|
|
@@ -205980,6 +207042,15 @@ export declare type TownsquareMetricTargetPeriodEdge = {
|
|
|
205980
207042
|
cursor: Scalars['String']['output'];
|
|
205981
207043
|
node?: Maybe<TownsquareMetricTargetPeriod>;
|
|
205982
207044
|
};
|
|
207045
|
+
export declare type TownsquareMetricTargetPeriodInput = {
|
|
207046
|
+
date: TownsquareTargetDateInput;
|
|
207047
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
207048
|
+
};
|
|
207049
|
+
export declare type TownsquareMetricTargetPeriodToMetricValueEdge = {
|
|
207050
|
+
__typename?: 'TownsquareMetricTargetPeriodToMetricValueEdge';
|
|
207051
|
+
node?: Maybe<TownsquareMetricValue>;
|
|
207052
|
+
variance?: Maybe<Scalars['Float']['output']>;
|
|
207053
|
+
};
|
|
205983
207054
|
export declare enum TownsquareMetricType {
|
|
205984
207055
|
Currency = "CURRENCY",
|
|
205985
207056
|
Numeric = "NUMERIC",
|
|
@@ -208424,6 +209495,10 @@ export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
|
208424
209495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
208425
209496
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208426
209497
|
};
|
|
209498
|
+
export declare type TrelloBaseBoardConnectionUpdated = {
|
|
209499
|
+
__typename?: 'TrelloBaseBoardConnectionUpdated';
|
|
209500
|
+
edges?: Maybe<Array<TrelloBaseBoardUpdatedEdge>>;
|
|
209501
|
+
};
|
|
208427
209502
|
export declare type TrelloBaseBoardId = {
|
|
208428
209503
|
id: Scalars['ID']['output'];
|
|
208429
209504
|
objectId: Scalars['ID']['output'];
|
|
@@ -208443,6 +209518,10 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
208443
209518
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
208444
209519
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
208445
209520
|
};
|
|
209521
|
+
export declare type TrelloBaseBoardUpdatedEdge = {
|
|
209522
|
+
__typename?: 'TrelloBaseBoardUpdatedEdge';
|
|
209523
|
+
node?: Maybe<TrelloBaseBoardUpdated>;
|
|
209524
|
+
};
|
|
208446
209525
|
export declare type TrelloBaseCard = {
|
|
208447
209526
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
208448
209527
|
aiMetadata?: Maybe<TrelloObjectAiMetadata>;
|
|
@@ -210683,6 +211762,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
210683
211762
|
};
|
|
210684
211763
|
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
210685
211764
|
boardId: Scalars['ID']['input'];
|
|
211765
|
+
isAudio?: InputMaybe<Scalars['Boolean']['input']>;
|
|
210686
211766
|
listId: Scalars['ID']['input'];
|
|
210687
211767
|
};
|
|
210688
211768
|
export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
@@ -211143,6 +212223,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
211143
212223
|
bio?: Maybe<Scalars['String']['output']>;
|
|
211144
212224
|
boardStars?: Maybe<TrelloBoardStarConnectionUpdated>;
|
|
211145
212225
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
212226
|
+
boardsV2?: Maybe<TrelloBaseBoardConnectionUpdated>;
|
|
211146
212227
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
211147
212228
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
211148
212229
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -212118,6 +213199,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
212118
213199
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212119
213200
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212120
213201
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213202
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
212121
213203
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
212122
213204
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
212123
213205
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -212232,6 +213314,7 @@ export declare type TrelloPlannerCalendarEventUpdated = {
|
|
|
212232
213314
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212233
213315
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
212234
213316
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
213317
|
+
rsvpAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
212235
213318
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
212236
213319
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
212237
213320
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -213997,7 +215080,15 @@ export declare enum TrelloUsageLimitKey {
|
|
|
213997
215080
|
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
213998
215081
|
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
213999
215082
|
}
|
|
214000
|
-
export declare type TrelloUsageLimitUpdated =
|
|
215083
|
+
export declare type TrelloUsageLimitUpdated = {
|
|
215084
|
+
__typename?: 'TrelloUsageLimitUpdated';
|
|
215085
|
+
count: Scalars['Int']['output'];
|
|
215086
|
+
interval?: Maybe<TrelloUsageLimitInterval>;
|
|
215087
|
+
key: TrelloUsageLimitKey;
|
|
215088
|
+
limit: Scalars['Int']['output'];
|
|
215089
|
+
periodEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
215090
|
+
periodStart?: Maybe<Scalars['DateTime']['output']>;
|
|
215091
|
+
};
|
|
214001
215092
|
export declare type TrelloUserGeneratedText = {
|
|
214002
215093
|
__typename?: 'TrelloUserGeneratedText';
|
|
214003
215094
|
text?: Maybe<Scalars['String']['output']>;
|