@forge/cli-shared 6.10.0-next.5 → 6.10.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/out/graphql/graphql-types.d.ts +843 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -25
- package/out/ui/text.d.ts +16 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +32 -0
- package/package.json +2 -2
|
@@ -482,6 +482,7 @@ export declare type ActivitiesObject = Node & {
|
|
|
482
482
|
__typename?: 'ActivitiesObject';
|
|
483
483
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
484
484
|
containers?: Maybe<Array<ActivitiesContainer>>;
|
|
485
|
+
content?: Maybe<Content>;
|
|
485
486
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
486
487
|
events?: Maybe<Array<ActivitiesEvent>>;
|
|
487
488
|
extension?: Maybe<ActivitiesObjectExtension>;
|
|
@@ -1157,6 +1158,7 @@ export declare enum ApiGroup {
|
|
|
1157
1158
|
Confluence = "CONFLUENCE",
|
|
1158
1159
|
ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
|
|
1159
1160
|
ConfluenceLegacy = "CONFLUENCE_LEGACY",
|
|
1161
|
+
ConfluenceMigration = "CONFLUENCE_MIGRATION",
|
|
1160
1162
|
ConfluenceMutations = "CONFLUENCE_MUTATIONS",
|
|
1161
1163
|
ConfluencePages = "CONFLUENCE_PAGES",
|
|
1162
1164
|
ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
|
|
@@ -3535,15 +3537,22 @@ export declare type CcpContext = {
|
|
|
3535
3537
|
subject?: Maybe<Scalars['String']['output']>;
|
|
3536
3538
|
subjectType?: Maybe<Scalars['String']['output']>;
|
|
3537
3539
|
};
|
|
3540
|
+
export declare type CcpCreateEntitlementExistingEntitlement = {
|
|
3541
|
+
entitlementId: Scalars['ID']['input'];
|
|
3542
|
+
};
|
|
3538
3543
|
export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
3539
3544
|
__typename?: 'CcpCreateEntitlementExperienceCapability';
|
|
3545
|
+
billingCycle?: Maybe<CcpBillingInterval>;
|
|
3540
3546
|
errorDescription?: Maybe<Scalars['String']['output']>;
|
|
3541
3547
|
errorReasonCode?: Maybe<CcpCreateEntitlementExperienceCapabilityErrorReasonCode>;
|
|
3542
3548
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
3543
3549
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3550
|
+
offering?: Maybe<CcpOffering>;
|
|
3544
3551
|
};
|
|
3545
3552
|
export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
3553
|
+
InsufficientInput = "INSUFFICIENT_INPUT",
|
|
3546
3554
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3555
|
+
NoOfferingForProduct = "NO_OFFERING_FOR_PRODUCT",
|
|
3547
3556
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3548
3557
|
}
|
|
3549
3558
|
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
@@ -3555,17 +3564,29 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
3555
3564
|
}
|
|
3556
3565
|
export declare type CcpCreateEntitlementInput = {
|
|
3557
3566
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3558
|
-
offeringKey
|
|
3567
|
+
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3559
3568
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3560
|
-
|
|
3569
|
+
productKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3570
|
+
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
3571
|
+
};
|
|
3572
|
+
export declare type CcpCreateEntitlementNewEntitlement = {
|
|
3573
|
+
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
3574
|
+
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
3575
|
+
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
3561
3576
|
};
|
|
3562
3577
|
export declare type CcpCreateEntitlementOrderOptions = {
|
|
3563
3578
|
billingCycle?: InputMaybe<CcpBillingInterval>;
|
|
3564
3579
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
3565
3580
|
trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
|
|
3566
3581
|
};
|
|
3567
|
-
export declare type
|
|
3568
|
-
|
|
3582
|
+
export declare type CcpCreateEntitlementRelationship = {
|
|
3583
|
+
direction: CcpOfferingRelationshipDirection;
|
|
3584
|
+
entitlement: CcpCreateEntitlementRelationshipEntitlement;
|
|
3585
|
+
relationshipType: CcpRelationshipType;
|
|
3586
|
+
};
|
|
3587
|
+
export declare type CcpCreateEntitlementRelationshipEntitlement = {
|
|
3588
|
+
existingEntitlement?: InputMaybe<CcpCreateEntitlementExistingEntitlement>;
|
|
3589
|
+
newEntitlement?: InputMaybe<CcpCreateEntitlementNewEntitlement>;
|
|
3569
3590
|
};
|
|
3570
3591
|
export declare type CcpCreateEntitlementTrialIntent = {
|
|
3571
3592
|
behaviourAtEndOfTrial?: InputMaybe<CcpBehaviourAtEndOfTrial>;
|
|
@@ -3651,9 +3672,6 @@ export declare type CcpEntitlementDefaultStandaloneOfferingTransitionsArgs = {
|
|
|
3651
3672
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
3652
3673
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
3653
3674
|
};
|
|
3654
|
-
export declare type CcpEntitlementDetailsForCreateEntitlement = {
|
|
3655
|
-
entitlementId: Scalars['ID']['input'];
|
|
3656
|
-
};
|
|
3657
3675
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
3658
3676
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
3659
3677
|
applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
|
|
@@ -3862,6 +3880,10 @@ export declare type CcpOfferingRelationship = {
|
|
|
3862
3880
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3863
3881
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3864
3882
|
};
|
|
3883
|
+
export declare enum CcpOfferingRelationshipDirection {
|
|
3884
|
+
From = "FROM",
|
|
3885
|
+
To = "TO"
|
|
3886
|
+
}
|
|
3865
3887
|
export declare enum CcpOfferingStatus {
|
|
3866
3888
|
Active = "ACTIVE",
|
|
3867
3889
|
AtNotice = "AT_NOTICE",
|
|
@@ -19688,7 +19710,8 @@ export declare type CreateAppContainerPayload = Payload & {
|
|
|
19688
19710
|
};
|
|
19689
19711
|
export declare type CreateAppDeploymentInput = {
|
|
19690
19712
|
appId: Scalars['ID']['input'];
|
|
19691
|
-
artifactUrl
|
|
19713
|
+
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
19714
|
+
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
19692
19715
|
environmentKey: Scalars['String']['input'];
|
|
19693
19716
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
19694
19717
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -23208,6 +23231,7 @@ export declare type DevOpsMetrics = {
|
|
|
23208
23231
|
deploymentSize?: Maybe<DevOpsMetricsDeploymentSize>;
|
|
23209
23232
|
perDeploymentMetrics?: Maybe<DevOpsMetricsPerDeploymentMetricsConnection>;
|
|
23210
23233
|
perIssueMetrics?: Maybe<DevOpsMetricsPerIssueMetricsConnection>;
|
|
23234
|
+
perProjectPRCycleTimeMetrics?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsConnection>;
|
|
23211
23235
|
};
|
|
23212
23236
|
export declare type DevOpsMetricsCycleTimeArgs = {
|
|
23213
23237
|
cycleTimePercentiles?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
@@ -23234,6 +23258,11 @@ export declare type DevOpsMetricsPerIssueMetricsArgs = {
|
|
|
23234
23258
|
filter: DevOpsMetricsPerIssueMetricsFilter;
|
|
23235
23259
|
first: Scalars['Int']['input'];
|
|
23236
23260
|
};
|
|
23261
|
+
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
23262
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
23263
|
+
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
23264
|
+
first: Scalars['Int']['input'];
|
|
23265
|
+
};
|
|
23237
23266
|
export declare type DevOpsMetricsCycleTime = {
|
|
23238
23267
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
23239
23268
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -23267,6 +23296,10 @@ export declare enum DevOpsMetricsCycleTimePhase {
|
|
|
23267
23296
|
CommitToDeployment = "COMMIT_TO_DEPLOYMENT",
|
|
23268
23297
|
CommitToPr = "COMMIT_TO_PR"
|
|
23269
23298
|
}
|
|
23299
|
+
export declare type DevOpsMetricsDailyReviewTimeData = {
|
|
23300
|
+
__typename?: 'DevOpsMetricsDailyReviewTimeData';
|
|
23301
|
+
medianReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
23302
|
+
};
|
|
23270
23303
|
export declare type DevOpsMetricsDeploymentFrequency = {
|
|
23271
23304
|
__typename?: 'DevOpsMetricsDeploymentFrequency';
|
|
23272
23305
|
aggregateData?: Maybe<Scalars['Float']['output']>;
|
|
@@ -23354,6 +23387,28 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
23354
23387
|
jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
23355
23388
|
startFromInclusive: Scalars['DateTime']['input'];
|
|
23356
23389
|
};
|
|
23390
|
+
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
23391
|
+
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
23392
|
+
medianPRCycleTime: Scalars['Float']['output'];
|
|
23393
|
+
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
23394
|
+
};
|
|
23395
|
+
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsConnection = {
|
|
23396
|
+
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetricsConnection';
|
|
23397
|
+
edges?: Maybe<Array<Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsEdge>>>;
|
|
23398
|
+
nodes?: Maybe<Array<Maybe<DevOpsMetricsPerProjectPrCycleTimeMetrics>>>;
|
|
23399
|
+
pageInfo: PageInfo;
|
|
23400
|
+
};
|
|
23401
|
+
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsEdge = {
|
|
23402
|
+
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetricsEdge';
|
|
23403
|
+
cursor: Scalars['String']['output'];
|
|
23404
|
+
node?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetrics>;
|
|
23405
|
+
};
|
|
23406
|
+
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsFilter = {
|
|
23407
|
+
cloudId: Scalars['ID']['input'];
|
|
23408
|
+
endAtExclusive: Scalars['DateTime']['input'];
|
|
23409
|
+
jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
23410
|
+
startFromInclusive: Scalars['DateTime']['input'];
|
|
23411
|
+
};
|
|
23357
23412
|
export declare type DevOpsMetricsResolution = {
|
|
23358
23413
|
__typename?: 'DevOpsMetricsResolution';
|
|
23359
23414
|
unit?: Maybe<DevOpsMetricsResolutionUnit>;
|
|
@@ -31535,12 +31590,18 @@ export declare type GraphStore = {
|
|
|
31535
31590
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
31536
31591
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
31537
31592
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
31593
|
+
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
31594
|
+
externalOrgHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection>;
|
|
31538
31595
|
externalOrgHasExternalWorker?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection>;
|
|
31539
31596
|
externalOrgHasExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection>;
|
|
31540
31597
|
externalOrgHasUserAsMember?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection>;
|
|
31541
31598
|
externalOrgHasUserAsMemberInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection>;
|
|
31599
|
+
externalOrgIsParentOfExternalOrg?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection>;
|
|
31600
|
+
externalOrgIsParentOfExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection>;
|
|
31542
31601
|
externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
|
|
31543
31602
|
externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
|
|
31603
|
+
externalPositionManagesExternalOrg?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection>;
|
|
31604
|
+
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
31544
31605
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
31545
31606
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
31546
31607
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
@@ -31646,6 +31707,7 @@ export declare type GraphStore = {
|
|
|
31646
31707
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31647
31708
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31648
31709
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31710
|
+
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31649
31711
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31650
31712
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
31651
31713
|
issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
|
|
@@ -31686,6 +31748,8 @@ export declare type GraphStore = {
|
|
|
31686
31748
|
jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
31687
31749
|
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
31688
31750
|
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
31751
|
+
jsmProjectLinkedKbSources?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection>;
|
|
31752
|
+
jsmProjectLinkedKbSourcesInverse?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection>;
|
|
31689
31753
|
jswProjectAssociatedComponent?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
31690
31754
|
jswProjectAssociatedComponentInverse?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection>;
|
|
31691
31755
|
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
@@ -31843,10 +31907,14 @@ export declare type GraphStore = {
|
|
|
31843
31907
|
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
31844
31908
|
serviceAssociatedBuild?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildConnection>;
|
|
31845
31909
|
serviceAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseConnection>;
|
|
31910
|
+
serviceAssociatedCommit?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitConnection>;
|
|
31911
|
+
serviceAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseConnection>;
|
|
31846
31912
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
31847
31913
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
31848
31914
|
serviceAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection>;
|
|
31849
31915
|
serviceAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection>;
|
|
31916
|
+
serviceAssociatedPr?: Maybe<GraphStoreSimplifiedServiceAssociatedPrConnection>;
|
|
31917
|
+
serviceAssociatedPrInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseConnection>;
|
|
31850
31918
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
31851
31919
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
31852
31920
|
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
@@ -31865,6 +31933,8 @@ export declare type GraphStore = {
|
|
|
31865
31933
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
31866
31934
|
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
31867
31935
|
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
31936
|
+
spaceHasPage?: Maybe<GraphStoreSimplifiedSpaceHasPageConnection>;
|
|
31937
|
+
spaceHasPageInverse?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseConnection>;
|
|
31868
31938
|
sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
|
|
31869
31939
|
sprintAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseConnection>;
|
|
31870
31940
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
@@ -32030,6 +32100,8 @@ export declare type GraphStore = {
|
|
|
32030
32100
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
32031
32101
|
userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
|
|
32032
32102
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
32103
|
+
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
32104
|
+
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
32033
32105
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
32034
32106
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
32035
32107
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -32044,6 +32116,8 @@ export declare type GraphStore = {
|
|
|
32044
32116
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32045
32117
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32046
32118
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32119
|
+
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
32120
|
+
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
32047
32121
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
32048
32122
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
32049
32123
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
@@ -32826,6 +32900,20 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
32826
32900
|
id: Scalars['ID']['input'];
|
|
32827
32901
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
32828
32902
|
};
|
|
32903
|
+
export declare type GraphStoreExternalOrgHasExternalPositionArgs = {
|
|
32904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32905
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32907
|
+
id: Scalars['ID']['input'];
|
|
32908
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasExternalPositionSortInput>;
|
|
32909
|
+
};
|
|
32910
|
+
export declare type GraphStoreExternalOrgHasExternalPositionInverseArgs = {
|
|
32911
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32912
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32914
|
+
id: Scalars['ID']['input'];
|
|
32915
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasExternalPositionSortInput>;
|
|
32916
|
+
};
|
|
32829
32917
|
export declare type GraphStoreExternalOrgHasExternalWorkerArgs = {
|
|
32830
32918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32831
32919
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32854,6 +32942,20 @@ export declare type GraphStoreExternalOrgHasUserAsMemberInverseArgs = {
|
|
|
32854
32942
|
id: Scalars['ID']['input'];
|
|
32855
32943
|
sort?: InputMaybe<GraphStoreExternalOrgHasUserAsMemberSortInput>;
|
|
32856
32944
|
};
|
|
32945
|
+
export declare type GraphStoreExternalOrgIsParentOfExternalOrgArgs = {
|
|
32946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32947
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32949
|
+
id: Scalars['ID']['input'];
|
|
32950
|
+
sort?: InputMaybe<GraphStoreExternalOrgIsParentOfExternalOrgSortInput>;
|
|
32951
|
+
};
|
|
32952
|
+
export declare type GraphStoreExternalOrgIsParentOfExternalOrgInverseArgs = {
|
|
32953
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32954
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32956
|
+
id: Scalars['ID']['input'];
|
|
32957
|
+
sort?: InputMaybe<GraphStoreExternalOrgIsParentOfExternalOrgSortInput>;
|
|
32958
|
+
};
|
|
32857
32959
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerArgs = {
|
|
32858
32960
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32859
32961
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32868,6 +32970,20 @@ export declare type GraphStoreExternalPositionIsFilledByExternalWorkerInverseArg
|
|
|
32868
32970
|
id: Scalars['ID']['input'];
|
|
32869
32971
|
sort?: InputMaybe<GraphStoreExternalPositionIsFilledByExternalWorkerSortInput>;
|
|
32870
32972
|
};
|
|
32973
|
+
export declare type GraphStoreExternalPositionManagesExternalOrgArgs = {
|
|
32974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32975
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32976
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32977
|
+
id: Scalars['ID']['input'];
|
|
32978
|
+
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalOrgSortInput>;
|
|
32979
|
+
};
|
|
32980
|
+
export declare type GraphStoreExternalPositionManagesExternalOrgInverseArgs = {
|
|
32981
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32982
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32984
|
+
id: Scalars['ID']['input'];
|
|
32985
|
+
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalOrgSortInput>;
|
|
32986
|
+
};
|
|
32871
32987
|
export declare type GraphStoreExternalPositionManagesExternalPositionArgs = {
|
|
32872
32988
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32873
32989
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33534,6 +33650,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33534
33650
|
id: Scalars['ID']['input'];
|
|
33535
33651
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33536
33652
|
};
|
|
33653
|
+
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33655
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33657
|
+
id: Scalars['ID']['input'];
|
|
33658
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33659
|
+
};
|
|
33537
33660
|
export declare type GraphStoreIssueMentionedInConversationArgs = {
|
|
33538
33661
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33539
33662
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33790,6 +33913,20 @@ export declare type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
|
|
|
33790
33913
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33791
33914
|
id: Scalars['ID']['input'];
|
|
33792
33915
|
};
|
|
33916
|
+
export declare type GraphStoreJsmProjectLinkedKbSourcesArgs = {
|
|
33917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33918
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33919
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33920
|
+
id: Scalars['ID']['input'];
|
|
33921
|
+
sort?: InputMaybe<GraphStoreJsmProjectLinkedKbSourcesSortInput>;
|
|
33922
|
+
};
|
|
33923
|
+
export declare type GraphStoreJsmProjectLinkedKbSourcesInverseArgs = {
|
|
33924
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33925
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33926
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33927
|
+
id: Scalars['ID']['input'];
|
|
33928
|
+
sort?: InputMaybe<GraphStoreJsmProjectLinkedKbSourcesSortInput>;
|
|
33929
|
+
};
|
|
33793
33930
|
export declare type GraphStoreJswProjectAssociatedComponentArgs = {
|
|
33794
33931
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33795
33932
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34813,6 +34950,20 @@ export declare type GraphStoreServiceAssociatedBuildInverseArgs = {
|
|
|
34813
34950
|
id: Scalars['ID']['input'];
|
|
34814
34951
|
sort?: InputMaybe<GraphStoreServiceAssociatedBuildSortInput>;
|
|
34815
34952
|
};
|
|
34953
|
+
export declare type GraphStoreServiceAssociatedCommitArgs = {
|
|
34954
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34955
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34956
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34957
|
+
id: Scalars['ID']['input'];
|
|
34958
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedCommitSortInput>;
|
|
34959
|
+
};
|
|
34960
|
+
export declare type GraphStoreServiceAssociatedCommitInverseArgs = {
|
|
34961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34962
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34964
|
+
id: Scalars['ID']['input'];
|
|
34965
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedCommitSortInput>;
|
|
34966
|
+
};
|
|
34816
34967
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
34817
34968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34818
34969
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34843,6 +34994,20 @@ export declare type GraphStoreServiceAssociatedFeatureFlagInverseArgs = {
|
|
|
34843
34994
|
id: Scalars['ID']['input'];
|
|
34844
34995
|
sort?: InputMaybe<GraphStoreServiceAssociatedFeatureFlagSortInput>;
|
|
34845
34996
|
};
|
|
34997
|
+
export declare type GraphStoreServiceAssociatedPrArgs = {
|
|
34998
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34999
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35001
|
+
id: Scalars['ID']['input'];
|
|
35002
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedPrSortInput>;
|
|
35003
|
+
};
|
|
35004
|
+
export declare type GraphStoreServiceAssociatedPrInverseArgs = {
|
|
35005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35006
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35008
|
+
id: Scalars['ID']['input'];
|
|
35009
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedPrSortInput>;
|
|
35010
|
+
};
|
|
34846
35011
|
export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
|
|
34847
35012
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34848
35013
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34971,6 +35136,20 @@ export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
|
34971
35136
|
id: Scalars['ID']['input'];
|
|
34972
35137
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
34973
35138
|
};
|
|
35139
|
+
export declare type GraphStoreSpaceHasPageArgs = {
|
|
35140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35141
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35142
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35143
|
+
id: Scalars['ID']['input'];
|
|
35144
|
+
sort?: InputMaybe<GraphStoreSpaceHasPageSortInput>;
|
|
35145
|
+
};
|
|
35146
|
+
export declare type GraphStoreSpaceHasPageInverseArgs = {
|
|
35147
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35148
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35149
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35150
|
+
id: Scalars['ID']['input'];
|
|
35151
|
+
sort?: InputMaybe<GraphStoreSpaceHasPageSortInput>;
|
|
35152
|
+
};
|
|
34974
35153
|
export declare type GraphStoreSprintAssociatedBuildArgs = {
|
|
34975
35154
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34976
35155
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36112,6 +36291,20 @@ export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
|
|
|
36112
36291
|
id: Scalars['ID']['input'];
|
|
36113
36292
|
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
36114
36293
|
};
|
|
36294
|
+
export declare type GraphStoreUserOwnsPageArgs = {
|
|
36295
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36296
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36298
|
+
id: Scalars['ID']['input'];
|
|
36299
|
+
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
36300
|
+
};
|
|
36301
|
+
export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
36302
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36303
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36304
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36305
|
+
id: Scalars['ID']['input'];
|
|
36306
|
+
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
36307
|
+
};
|
|
36115
36308
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
36116
36309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36117
36310
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36210,6 +36403,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36210
36403
|
id: Scalars['ID']['input'];
|
|
36211
36404
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36212
36405
|
};
|
|
36406
|
+
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
36407
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36408
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36409
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36410
|
+
id: Scalars['ID']['input'];
|
|
36411
|
+
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
36412
|
+
};
|
|
36413
|
+
export declare type GraphStoreUserUpdatedCommentInverseArgs = {
|
|
36414
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36415
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36416
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36417
|
+
id: Scalars['ID']['input'];
|
|
36418
|
+
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
36419
|
+
};
|
|
36213
36420
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
36214
36421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36215
36422
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38797,6 +39004,9 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
38797
39004
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
38798
39005
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38799
39006
|
};
|
|
39007
|
+
export declare type GraphStoreExternalOrgHasExternalPositionSortInput = {
|
|
39008
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39009
|
+
};
|
|
38800
39010
|
export declare type GraphStoreExternalOrgHasExternalWorkerSortInput = {
|
|
38801
39011
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38802
39012
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -38809,9 +39019,15 @@ export declare type GraphStoreExternalOrgHasUserAsMemberSortInput = {
|
|
|
38809
39019
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38810
39020
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38811
39021
|
};
|
|
39022
|
+
export declare type GraphStoreExternalOrgIsParentOfExternalOrgSortInput = {
|
|
39023
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39024
|
+
};
|
|
38812
39025
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
|
|
38813
39026
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38814
39027
|
};
|
|
39028
|
+
export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
39029
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39030
|
+
};
|
|
38815
39031
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
38816
39032
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38817
39033
|
};
|
|
@@ -42493,6 +42709,9 @@ export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
|
42493
42709
|
export declare type GraphStoreIssueHasChangedPrioritySortInput = {
|
|
42494
42710
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42495
42711
|
};
|
|
42712
|
+
export declare type GraphStoreIssueHasChangedStatusSortInput = {
|
|
42713
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42714
|
+
};
|
|
42496
42715
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
42497
42716
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42498
42717
|
};
|
|
@@ -42596,6 +42815,9 @@ export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
|
42596
42815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42597
42816
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42598
42817
|
};
|
|
42818
|
+
export declare type GraphStoreJsmProjectLinkedKbSourcesSortInput = {
|
|
42819
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42820
|
+
};
|
|
42599
42821
|
export declare type GraphStoreJswProjectAssociatedComponentSortInput = {
|
|
42600
42822
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42601
42823
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43434,6 +43656,9 @@ export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
|
43434
43656
|
export declare type GraphStoreServiceAssociatedBuildSortInput = {
|
|
43435
43657
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43436
43658
|
};
|
|
43659
|
+
export declare type GraphStoreServiceAssociatedCommitSortInput = {
|
|
43660
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43661
|
+
};
|
|
43437
43662
|
export declare type GraphStoreServiceAssociatedDeploymentConditionalFilterInput = {
|
|
43438
43663
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
43439
43664
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -43453,6 +43678,9 @@ export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
|
43453
43678
|
export declare type GraphStoreServiceAssociatedFeatureFlagSortInput = {
|
|
43454
43679
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43455
43680
|
};
|
|
43681
|
+
export declare type GraphStoreServiceAssociatedPrSortInput = {
|
|
43682
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43683
|
+
};
|
|
43456
43684
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
43457
43685
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43458
43686
|
};
|
|
@@ -44702,6 +44930,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
44702
44930
|
};
|
|
44703
44931
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
44704
44932
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
44933
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionConnection = HasPageInfo & {
|
|
44934
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionConnection';
|
|
44935
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionEdge>>>;
|
|
44936
|
+
pageInfo: PageInfo;
|
|
44937
|
+
};
|
|
44938
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionEdge = {
|
|
44939
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionEdge';
|
|
44940
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44941
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44942
|
+
id: Scalars['ID']['output'];
|
|
44943
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44944
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionUnion>;
|
|
44945
|
+
};
|
|
44946
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection = HasPageInfo & {
|
|
44947
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection';
|
|
44948
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge>>>;
|
|
44949
|
+
pageInfo: PageInfo;
|
|
44950
|
+
};
|
|
44951
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge = {
|
|
44952
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionInverseEdge';
|
|
44953
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44955
|
+
id: Scalars['ID']['output'];
|
|
44956
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44957
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseUnion>;
|
|
44958
|
+
};
|
|
44959
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionInverseUnion = ExternalOrganisation;
|
|
44960
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionUnion = ExternalPosition;
|
|
44705
44961
|
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection = HasPageInfo & HasTotal & {
|
|
44706
44962
|
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection';
|
|
44707
44963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge>>>;
|
|
@@ -44766,6 +45022,34 @@ export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge =
|
|
|
44766
45022
|
};
|
|
44767
45023
|
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseUnion = ExternalOrganisation;
|
|
44768
45024
|
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45025
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection = HasPageInfo & {
|
|
45026
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection';
|
|
45027
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge>>>;
|
|
45028
|
+
pageInfo: PageInfo;
|
|
45029
|
+
};
|
|
45030
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge = {
|
|
45031
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgEdge';
|
|
45032
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45033
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45034
|
+
id: Scalars['ID']['output'];
|
|
45035
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45036
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgUnion>;
|
|
45037
|
+
};
|
|
45038
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection = HasPageInfo & {
|
|
45039
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection';
|
|
45040
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge>>>;
|
|
45041
|
+
pageInfo: PageInfo;
|
|
45042
|
+
};
|
|
45043
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge = {
|
|
45044
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseEdge';
|
|
45045
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45047
|
+
id: Scalars['ID']['output'];
|
|
45048
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45049
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseUnion>;
|
|
45050
|
+
};
|
|
45051
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseUnion = ExternalOrganisation;
|
|
45052
|
+
export declare type GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgUnion = ExternalOrganisation;
|
|
44769
45053
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection = HasPageInfo & {
|
|
44770
45054
|
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection';
|
|
44771
45055
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge>>>;
|
|
@@ -44794,6 +45078,34 @@ export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorker
|
|
|
44794
45078
|
};
|
|
44795
45079
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseUnion = ExternalPosition;
|
|
44796
45080
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerUnion = ExternalWorker;
|
|
45081
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection = HasPageInfo & {
|
|
45082
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection';
|
|
45083
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge>>>;
|
|
45084
|
+
pageInfo: PageInfo;
|
|
45085
|
+
};
|
|
45086
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge = {
|
|
45087
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgEdge';
|
|
45088
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45089
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45090
|
+
id: Scalars['ID']['output'];
|
|
45091
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45092
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgUnion>;
|
|
45093
|
+
};
|
|
45094
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection = HasPageInfo & {
|
|
45095
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection';
|
|
45096
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge>>>;
|
|
45097
|
+
pageInfo: PageInfo;
|
|
45098
|
+
};
|
|
45099
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge = {
|
|
45100
|
+
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseEdge';
|
|
45101
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45102
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45103
|
+
id: Scalars['ID']['output'];
|
|
45104
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45105
|
+
node?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseUnion>;
|
|
45106
|
+
};
|
|
45107
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseUnion = ExternalPosition;
|
|
45108
|
+
export declare type GraphStoreSimplifiedExternalPositionManagesExternalOrgUnion = ExternalOrganisation;
|
|
44797
45109
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection = HasPageInfo & {
|
|
44798
45110
|
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection';
|
|
44799
45111
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge>>>;
|
|
@@ -45602,6 +45914,20 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
45602
45914
|
};
|
|
45603
45915
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
45604
45916
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
45917
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
45918
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
45919
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
45920
|
+
pageInfo: PageInfo;
|
|
45921
|
+
};
|
|
45922
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
45923
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseEdge';
|
|
45924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45926
|
+
id: Scalars['ID']['output'];
|
|
45927
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45928
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
45929
|
+
};
|
|
45930
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
45605
45931
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
45606
45932
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
45607
45933
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -45966,6 +46292,34 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
45966
46292
|
};
|
|
45967
46293
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion = JiraProject;
|
|
45968
46294
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceUnion = DevOpsService;
|
|
46295
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection = HasPageInfo & {
|
|
46296
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection';
|
|
46297
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge>>>;
|
|
46298
|
+
pageInfo: PageInfo;
|
|
46299
|
+
};
|
|
46300
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge = {
|
|
46301
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesEdge';
|
|
46302
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46303
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46304
|
+
id: Scalars['ID']['output'];
|
|
46305
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46306
|
+
node?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesUnion>;
|
|
46307
|
+
};
|
|
46308
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection = HasPageInfo & {
|
|
46309
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection';
|
|
46310
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge>>>;
|
|
46311
|
+
pageInfo: PageInfo;
|
|
46312
|
+
};
|
|
46313
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge = {
|
|
46314
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseEdge';
|
|
46315
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46316
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46317
|
+
id: Scalars['ID']['output'];
|
|
46318
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46319
|
+
node?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseUnion>;
|
|
46320
|
+
};
|
|
46321
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseUnion = JiraProject;
|
|
46322
|
+
export declare type GraphStoreSimplifiedJsmProjectLinkedKbSourcesUnion = ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
45969
46323
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentConnection = HasPageInfo & HasTotal & {
|
|
45970
46324
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentConnection';
|
|
45971
46325
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentEdge>>>;
|
|
@@ -47360,6 +47714,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseEdge = {
|
|
|
47360
47714
|
};
|
|
47361
47715
|
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseUnion = DevOpsService;
|
|
47362
47716
|
export declare type GraphStoreSimplifiedServiceAssociatedBuildUnion = ExternalBuildInfo;
|
|
47717
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitConnection = HasPageInfo & {
|
|
47718
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedCommitConnection';
|
|
47719
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedCommitEdge>>>;
|
|
47720
|
+
pageInfo: PageInfo;
|
|
47721
|
+
};
|
|
47722
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitEdge = {
|
|
47723
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedCommitEdge';
|
|
47724
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47725
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47726
|
+
id: Scalars['ID']['output'];
|
|
47727
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47728
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitUnion>;
|
|
47729
|
+
};
|
|
47730
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseConnection = HasPageInfo & {
|
|
47731
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedCommitInverseConnection';
|
|
47732
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseEdge>>>;
|
|
47733
|
+
pageInfo: PageInfo;
|
|
47734
|
+
};
|
|
47735
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseEdge = {
|
|
47736
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedCommitInverseEdge';
|
|
47737
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47738
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47739
|
+
id: Scalars['ID']['output'];
|
|
47740
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47741
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseUnion>;
|
|
47742
|
+
};
|
|
47743
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitInverseUnion = DevOpsService;
|
|
47744
|
+
export declare type GraphStoreSimplifiedServiceAssociatedCommitUnion = ExternalCommit;
|
|
47363
47745
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
47364
47746
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
47365
47747
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -47420,6 +47802,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge
|
|
|
47420
47802
|
};
|
|
47421
47803
|
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseUnion = DevOpsService;
|
|
47422
47804
|
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
47805
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrConnection = HasPageInfo & {
|
|
47806
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedPrConnection';
|
|
47807
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedPrEdge>>>;
|
|
47808
|
+
pageInfo: PageInfo;
|
|
47809
|
+
};
|
|
47810
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrEdge = {
|
|
47811
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedPrEdge';
|
|
47812
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47813
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47814
|
+
id: Scalars['ID']['output'];
|
|
47815
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47816
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedPrUnion>;
|
|
47817
|
+
};
|
|
47818
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrInverseConnection = HasPageInfo & {
|
|
47819
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedPrInverseConnection';
|
|
47820
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseEdge>>>;
|
|
47821
|
+
pageInfo: PageInfo;
|
|
47822
|
+
};
|
|
47823
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrInverseEdge = {
|
|
47824
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedPrInverseEdge';
|
|
47825
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47826
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47827
|
+
id: Scalars['ID']['output'];
|
|
47828
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47829
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseUnion>;
|
|
47830
|
+
};
|
|
47831
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrInverseUnion = DevOpsService;
|
|
47832
|
+
export declare type GraphStoreSimplifiedServiceAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47423
47833
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
47424
47834
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
|
|
47425
47835
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
|
|
@@ -47656,6 +48066,34 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge =
|
|
|
47656
48066
|
};
|
|
47657
48067
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
47658
48068
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
|
|
48069
|
+
export declare type GraphStoreSimplifiedSpaceHasPageConnection = HasPageInfo & {
|
|
48070
|
+
__typename?: 'GraphStoreSimplifiedSpaceHasPageConnection';
|
|
48071
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceHasPageEdge>>>;
|
|
48072
|
+
pageInfo: PageInfo;
|
|
48073
|
+
};
|
|
48074
|
+
export declare type GraphStoreSimplifiedSpaceHasPageEdge = {
|
|
48075
|
+
__typename?: 'GraphStoreSimplifiedSpaceHasPageEdge';
|
|
48076
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48077
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48078
|
+
id: Scalars['ID']['output'];
|
|
48079
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48080
|
+
node?: Maybe<GraphStoreSimplifiedSpaceHasPageUnion>;
|
|
48081
|
+
};
|
|
48082
|
+
export declare type GraphStoreSimplifiedSpaceHasPageInverseConnection = HasPageInfo & {
|
|
48083
|
+
__typename?: 'GraphStoreSimplifiedSpaceHasPageInverseConnection';
|
|
48084
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceHasPageInverseEdge>>>;
|
|
48085
|
+
pageInfo: PageInfo;
|
|
48086
|
+
};
|
|
48087
|
+
export declare type GraphStoreSimplifiedSpaceHasPageInverseEdge = {
|
|
48088
|
+
__typename?: 'GraphStoreSimplifiedSpaceHasPageInverseEdge';
|
|
48089
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48090
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48091
|
+
id: Scalars['ID']['output'];
|
|
48092
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48093
|
+
node?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseUnion>;
|
|
48094
|
+
};
|
|
48095
|
+
export declare type GraphStoreSimplifiedSpaceHasPageInverseUnion = ConfluenceSpace;
|
|
48096
|
+
export declare type GraphStoreSimplifiedSpaceHasPageUnion = ConfluencePage;
|
|
47659
48097
|
export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
47660
48098
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
|
|
47661
48099
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
|
|
@@ -49646,6 +50084,34 @@ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
|
|
|
49646
50084
|
};
|
|
49647
50085
|
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49648
50086
|
export declare type GraphStoreSimplifiedUserOwnsFocusAreaUnion = MercuryFocusArea;
|
|
50087
|
+
export declare type GraphStoreSimplifiedUserOwnsPageConnection = HasPageInfo & {
|
|
50088
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPageConnection';
|
|
50089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPageEdge>>>;
|
|
50090
|
+
pageInfo: PageInfo;
|
|
50091
|
+
};
|
|
50092
|
+
export declare type GraphStoreSimplifiedUserOwnsPageEdge = {
|
|
50093
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPageEdge';
|
|
50094
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50096
|
+
id: Scalars['ID']['output'];
|
|
50097
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50098
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsPageUnion>;
|
|
50099
|
+
};
|
|
50100
|
+
export declare type GraphStoreSimplifiedUserOwnsPageInverseConnection = HasPageInfo & {
|
|
50101
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPageInverseConnection';
|
|
50102
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPageInverseEdge>>>;
|
|
50103
|
+
pageInfo: PageInfo;
|
|
50104
|
+
};
|
|
50105
|
+
export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
50106
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPageInverseEdge';
|
|
50107
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50108
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50109
|
+
id: Scalars['ID']['output'];
|
|
50110
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50111
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseUnion>;
|
|
50112
|
+
};
|
|
50113
|
+
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50114
|
+
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
49649
50115
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
49650
50116
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
49651
50117
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -49842,6 +50308,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
49842
50308
|
};
|
|
49843
50309
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49844
50310
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50311
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
50312
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
50313
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
50314
|
+
pageInfo: PageInfo;
|
|
50315
|
+
};
|
|
50316
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
|
|
50317
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
|
|
50318
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50319
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50320
|
+
id: Scalars['ID']['output'];
|
|
50321
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50322
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
|
|
50323
|
+
};
|
|
50324
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
|
|
50325
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
|
|
50326
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
|
|
50327
|
+
pageInfo: PageInfo;
|
|
50328
|
+
};
|
|
50329
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
|
|
50330
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
|
|
50331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50333
|
+
id: Scalars['ID']['output'];
|
|
50334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50335
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
|
|
50336
|
+
};
|
|
50337
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50338
|
+
export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
49845
50339
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
49846
50340
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
49847
50341
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -50729,6 +51223,9 @@ export declare type GraphStoreSortInput = {
|
|
|
50729
51223
|
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
50730
51224
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50731
51225
|
};
|
|
51226
|
+
export declare type GraphStoreSpaceHasPageSortInput = {
|
|
51227
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51228
|
+
};
|
|
50732
51229
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
50733
51230
|
Cancelled = "CANCELLED",
|
|
50734
51231
|
Failed = "FAILED",
|
|
@@ -51343,6 +51840,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
51343
51840
|
export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
51344
51841
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51345
51842
|
};
|
|
51843
|
+
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
51844
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51845
|
+
};
|
|
51346
51846
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
51347
51847
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51348
51848
|
};
|
|
@@ -51364,6 +51864,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
51364
51864
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
51365
51865
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51366
51866
|
};
|
|
51867
|
+
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
51868
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51869
|
+
};
|
|
51367
51870
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
51368
51871
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51369
51872
|
};
|
|
@@ -57266,6 +57769,7 @@ export declare enum JiraConfigFieldType {
|
|
|
57266
57769
|
StandardIssueKey = "STANDARD_ISSUE_KEY",
|
|
57267
57770
|
StandardIssueLinks = "STANDARD_ISSUE_LINKS",
|
|
57268
57771
|
StandardIssueNumber = "STANDARD_ISSUE_NUMBER",
|
|
57772
|
+
StandardIssueRestriction = "STANDARD_ISSUE_RESTRICTION",
|
|
57269
57773
|
StandardIssueType = "STANDARD_ISSUE_TYPE",
|
|
57270
57774
|
StandardLabels = "STANDARD_LABELS",
|
|
57271
57775
|
StandardLastViewed = "STANDARD_LAST_VIEWED",
|
|
@@ -57279,6 +57783,8 @@ export declare enum JiraConfigFieldType {
|
|
|
57279
57783
|
StandardResolutionDate = "STANDARD_RESOLUTION_DATE",
|
|
57280
57784
|
StandardSecurity = "STANDARD_SECURITY",
|
|
57281
57785
|
StandardStatus = "STANDARD_STATUS",
|
|
57786
|
+
StandardStatusCategory = "STANDARD_STATUS_CATEGORY",
|
|
57787
|
+
StandardStatusCategoryChangeDate = "STANDARD_STATUS_CATEGORY_CHANGE_DATE",
|
|
57282
57788
|
StandardSubtasks = "STANDARD_SUBTASKS",
|
|
57283
57789
|
StandardSummary = "STANDARD_SUMMARY",
|
|
57284
57790
|
StandardThumbnail = "STANDARD_THUMBNAIL",
|
|
@@ -57354,10 +57860,29 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
57354
57860
|
isVisible: Scalars['Boolean']['input'];
|
|
57355
57861
|
menuId: Scalars['String']['input'];
|
|
57356
57862
|
};
|
|
57863
|
+
export declare type JiraConfluencePageContent = JiraConfluencePageContentDetails | JiraConfluencePageContentError;
|
|
57864
|
+
export declare type JiraConfluencePageContentDetails = {
|
|
57865
|
+
__typename?: 'JiraConfluencePageContentDetails';
|
|
57866
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
57867
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
57868
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
57869
|
+
};
|
|
57870
|
+
export declare type JiraConfluencePageContentError = {
|
|
57871
|
+
__typename?: 'JiraConfluencePageContentError';
|
|
57872
|
+
errorType?: Maybe<JiraConfluencePageContentErrorType>;
|
|
57873
|
+
repairLink?: Maybe<Scalars['String']['output']>;
|
|
57874
|
+
};
|
|
57875
|
+
export declare enum JiraConfluencePageContentErrorType {
|
|
57876
|
+
ApplinkMissing = "APPLINK_MISSING",
|
|
57877
|
+
ApplinkReqAuth = "APPLINK_REQ_AUTH",
|
|
57878
|
+
RemoteError = "REMOTE_ERROR",
|
|
57879
|
+
RemoteLinkMissing = "REMOTE_LINK_MISSING"
|
|
57880
|
+
}
|
|
57357
57881
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
57358
57882
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
57359
57883
|
href?: Maybe<Scalars['String']['output']>;
|
|
57360
57884
|
id: Scalars['ID']['output'];
|
|
57885
|
+
pageContent?: Maybe<JiraConfluencePageContent>;
|
|
57361
57886
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
57362
57887
|
title?: Maybe<Scalars['String']['output']>;
|
|
57363
57888
|
};
|
|
@@ -57880,6 +58405,32 @@ export declare type JiraCustomFieldOptionInput = {
|
|
|
57880
58405
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
57881
58406
|
value: Scalars['String']['input'];
|
|
57882
58407
|
};
|
|
58408
|
+
export declare type JiraCustomFieldType = {
|
|
58409
|
+
__typename?: 'JiraCustomFieldType';
|
|
58410
|
+
category?: Maybe<JiraCustomFieldTypeCategory>;
|
|
58411
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
58412
|
+
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
58413
|
+
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
58414
|
+
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
58415
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
58416
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
58417
|
+
type?: Maybe<JiraConfigFieldType>;
|
|
58418
|
+
};
|
|
58419
|
+
export declare enum JiraCustomFieldTypeCategory {
|
|
58420
|
+
Advanced = "ADVANCED",
|
|
58421
|
+
Standard = "STANDARD"
|
|
58422
|
+
}
|
|
58423
|
+
export declare type JiraCustomFieldTypeConnection = {
|
|
58424
|
+
__typename?: 'JiraCustomFieldTypeConnection';
|
|
58425
|
+
edges?: Maybe<Array<JiraCustomFieldTypeEdge>>;
|
|
58426
|
+
nodes?: Maybe<Array<JiraCustomFieldType>>;
|
|
58427
|
+
pageInfo: PageInfo;
|
|
58428
|
+
};
|
|
58429
|
+
export declare type JiraCustomFieldTypeEdge = {
|
|
58430
|
+
__typename?: 'JiraCustomFieldTypeEdge';
|
|
58431
|
+
cursor: Scalars['String']['output'];
|
|
58432
|
+
node?: Maybe<JiraCustomFieldType>;
|
|
58433
|
+
};
|
|
57883
58434
|
export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
57884
58435
|
__typename?: 'JiraCustomFieldUsageMetric';
|
|
57885
58436
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -60647,10 +61198,13 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
60647
61198
|
__typename?: 'JiraIssueFieldConfig';
|
|
60648
61199
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
60649
61200
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
61201
|
+
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
60650
61202
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
60651
61203
|
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
61204
|
+
associatedProjectsV2?: Maybe<JiraProjectConnection>;
|
|
60652
61205
|
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
60653
61206
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
61207
|
+
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
60654
61208
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
60655
61209
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
60656
61210
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -60678,18 +61232,36 @@ export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
|
60678
61232
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60679
61233
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60680
61234
|
};
|
|
61235
|
+
export declare type JiraIssueFieldConfigAssociatedContextsV2Args = {
|
|
61236
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61237
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61238
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61239
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61240
|
+
};
|
|
60681
61241
|
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
60682
61242
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
60683
61243
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
60684
61244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60685
61245
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60686
61246
|
};
|
|
61247
|
+
export declare type JiraIssueFieldConfigAssociatedProjectsV2Args = {
|
|
61248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61249
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61251
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61252
|
+
};
|
|
60687
61253
|
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
60688
61254
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
60689
61255
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
60690
61256
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60691
61257
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60692
61258
|
};
|
|
61259
|
+
export declare type JiraIssueFieldConfigAssociatedScreensV2Args = {
|
|
61260
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61261
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61262
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61263
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61264
|
+
};
|
|
60693
61265
|
export declare type JiraIssueFieldConfiguration = {
|
|
60694
61266
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
60695
61267
|
};
|
|
@@ -61425,6 +61997,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
61425
61997
|
export declare type JiraIssueSearchViewContextInput = {
|
|
61426
61998
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
61427
61999
|
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
62000
|
+
topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
|
|
61428
62001
|
};
|
|
61429
62002
|
export declare type JiraIssueSearchViewContextMapping = {
|
|
61430
62003
|
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62006,10 +62579,12 @@ export declare type JiraJqlBuilderFieldsArgs = {
|
|
|
62006
62579
|
};
|
|
62007
62580
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
62008
62581
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
62582
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62009
62583
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
62010
62584
|
};
|
|
62011
62585
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
62012
62586
|
id: Scalars['ID']['input'];
|
|
62587
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62013
62588
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
62014
62589
|
};
|
|
62015
62590
|
export declare type JiraJqlBuilderIssueTypesArgs = {
|
|
@@ -67549,6 +68124,12 @@ export declare enum JiraReorderBoardViewColumnPosition {
|
|
|
67549
68124
|
After = "AFTER",
|
|
67550
68125
|
Before = "BEFORE"
|
|
67551
68126
|
}
|
|
68127
|
+
export declare type JiraReorderSidebarMenuItemInput = {
|
|
68128
|
+
cloudId: Scalars['ID']['input'];
|
|
68129
|
+
menuItem: JiraSidebarMenuItemInput;
|
|
68130
|
+
relativeMenuItem?: InputMaybe<JiraSidebarMenuItemInput>;
|
|
68131
|
+
reorderMode: JiraSidebarMenuItemReorderOperation;
|
|
68132
|
+
};
|
|
67552
68133
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
67553
68134
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67554
68135
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69557,6 +70138,15 @@ export declare enum JiraSidebarMenuDisplayMode {
|
|
|
69557
70138
|
export declare type JiraSidebarMenuItemInput = {
|
|
69558
70139
|
itemId: Scalars['ID']['input'];
|
|
69559
70140
|
};
|
|
70141
|
+
export declare enum JiraSidebarMenuItemReorderOperation {
|
|
70142
|
+
After = "AFTER",
|
|
70143
|
+
Before = "BEFORE",
|
|
70144
|
+
MoveDown = "MOVE_DOWN",
|
|
70145
|
+
MoveToOrInsertAtBottom = "MOVE_TO_OR_INSERT_AT_BOTTOM",
|
|
70146
|
+
MoveToOrInsertAtTop = "MOVE_TO_OR_INSERT_AT_TOP",
|
|
70147
|
+
MoveUp = "MOVE_UP",
|
|
70148
|
+
Remove = "REMOVE"
|
|
70149
|
+
}
|
|
69560
70150
|
export declare type JiraSimilarIssues = {
|
|
69561
70151
|
__typename?: 'JiraSimilarIssues';
|
|
69562
70152
|
featureEnabled: Scalars['Boolean']['output'];
|
|
@@ -75179,10 +75769,12 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
|
75179
75769
|
};
|
|
75180
75770
|
export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
|
|
75181
75771
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionListingLinks';
|
|
75772
|
+
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
75182
75773
|
documentation?: Maybe<Scalars['String']['output']>;
|
|
75183
75774
|
eula?: Maybe<Scalars['String']['output']>;
|
|
75184
75775
|
learnMore?: Maybe<Scalars['String']['output']>;
|
|
75185
75776
|
legacyVendorLinks?: Maybe<MarketplaceConsoleLegacyVendorLinks>;
|
|
75777
|
+
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
75186
75778
|
purchase?: Maybe<Scalars['String']['output']>;
|
|
75187
75779
|
};
|
|
75188
75780
|
export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
@@ -77306,6 +77898,18 @@ export declare type MercuryChangeSort = {
|
|
|
77306
77898
|
export declare enum MercuryChangeSortField {
|
|
77307
77899
|
Type = "TYPE"
|
|
77308
77900
|
}
|
|
77901
|
+
export declare type MercuryChangeSummary = {
|
|
77902
|
+
__typename?: 'MercuryChangeSummary';
|
|
77903
|
+
focusAreaId: Scalars['ID']['output'];
|
|
77904
|
+
fundChangeSummary?: Maybe<MercuryFundChangeSummary>;
|
|
77905
|
+
hydrationContextId: Scalars['ID']['output'];
|
|
77906
|
+
positionChangeSummary?: Maybe<MercuryPositionChangeSummary>;
|
|
77907
|
+
strategicEventId: Scalars['ID']['output'];
|
|
77908
|
+
};
|
|
77909
|
+
export declare type MercuryChangeSummaryInput = {
|
|
77910
|
+
focusAreaId: Scalars['ID']['input'];
|
|
77911
|
+
hydrationContextId: Scalars['ID']['input'];
|
|
77912
|
+
};
|
|
77309
77913
|
export declare enum MercuryChangeType {
|
|
77310
77914
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
77311
77915
|
ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
|
|
@@ -77626,6 +78230,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
77626
78230
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
77627
78231
|
archived: Scalars['Boolean']['output'];
|
|
77628
78232
|
ari: Scalars['String']['output'];
|
|
78233
|
+
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
77629
78234
|
createdDate: Scalars['String']['output'];
|
|
77630
78235
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
77631
78236
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
@@ -77915,6 +78520,16 @@ export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
|
77915
78520
|
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77916
78521
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77917
78522
|
};
|
|
78523
|
+
export declare type MercuryFundChangeSummary = {
|
|
78524
|
+
__typename?: 'MercuryFundChangeSummary';
|
|
78525
|
+
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
78526
|
+
amountIncludingSubFocusAreas?: Maybe<MercuryFundChangeSummaryFields>;
|
|
78527
|
+
};
|
|
78528
|
+
export declare type MercuryFundChangeSummaryFields = {
|
|
78529
|
+
__typename?: 'MercuryFundChangeSummaryFields';
|
|
78530
|
+
deltaByStatus?: Maybe<Array<Maybe<MercuryFundingDeltaByStatus>>>;
|
|
78531
|
+
deltaTotal?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78532
|
+
};
|
|
77918
78533
|
export declare type MercuryFunding = {
|
|
77919
78534
|
__typename?: 'MercuryFunding';
|
|
77920
78535
|
aggregation?: Maybe<MercuryFundingAggregation>;
|
|
@@ -77930,6 +78545,11 @@ export declare type MercuryFundingAssigned = {
|
|
|
77930
78545
|
budget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
77931
78546
|
spend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
77932
78547
|
};
|
|
78548
|
+
export declare type MercuryFundingDeltaByStatus = {
|
|
78549
|
+
__typename?: 'MercuryFundingDeltaByStatus';
|
|
78550
|
+
amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78551
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78552
|
+
};
|
|
77933
78553
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
77934
78554
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
77935
78555
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -78295,6 +78915,21 @@ export declare type MercuryPositionAllocationChangeInput = {
|
|
|
78295
78915
|
sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
78296
78916
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
78297
78917
|
};
|
|
78918
|
+
export declare type MercuryPositionChangeSummary = {
|
|
78919
|
+
__typename?: 'MercuryPositionChangeSummary';
|
|
78920
|
+
count?: Maybe<MercuryPositionChangeSummaryFields>;
|
|
78921
|
+
countIncludingSubFocusAreas?: Maybe<MercuryPositionChangeSummaryFields>;
|
|
78922
|
+
};
|
|
78923
|
+
export declare type MercuryPositionChangeSummaryFields = {
|
|
78924
|
+
__typename?: 'MercuryPositionChangeSummaryFields';
|
|
78925
|
+
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
78926
|
+
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
78927
|
+
};
|
|
78928
|
+
export declare type MercuryPositionDeltaByStatus = {
|
|
78929
|
+
__typename?: 'MercuryPositionDeltaByStatus';
|
|
78930
|
+
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
78931
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78932
|
+
};
|
|
78298
78933
|
export declare type MercuryPreference = Node & {
|
|
78299
78934
|
__typename?: 'MercuryPreference';
|
|
78300
78935
|
id: Scalars['ID']['output'];
|
|
@@ -78535,6 +79170,7 @@ export declare type MercuryQueryApi = {
|
|
|
78535
79170
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
78536
79171
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
78537
79172
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
79173
|
+
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
78538
79174
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
78539
79175
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
78540
79176
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -78610,6 +79246,12 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
78610
79246
|
cloudId: Scalars['ID']['input'];
|
|
78611
79247
|
ids: Array<Scalars['String']['input']>;
|
|
78612
79248
|
};
|
|
79249
|
+
export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
79250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79252
|
+
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
79253
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
79254
|
+
};
|
|
78613
79255
|
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
78614
79256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78615
79257
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -78939,6 +79581,8 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
78939
79581
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
78940
79582
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
78941
79583
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
79584
|
+
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79585
|
+
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
78942
79586
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
78943
79587
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
78944
79588
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
@@ -78963,6 +79607,13 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
78963
79607
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
78964
79608
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
78965
79609
|
};
|
|
79610
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArgs = {
|
|
79611
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79612
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
79613
|
+
};
|
|
79614
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
79615
|
+
inputs: Array<MercuryChangeSummaryInput>;
|
|
79616
|
+
};
|
|
78966
79617
|
export declare type MercuryStrategicEventsQueryApiChangesArgs = {
|
|
78967
79618
|
ids: Array<Scalars['ID']['input']>;
|
|
78968
79619
|
};
|
|
@@ -79891,6 +80542,7 @@ export declare type Mutation = {
|
|
|
79891
80542
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79892
80543
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
79893
80544
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
80545
|
+
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
79894
80546
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
79895
80547
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
79896
80548
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -79981,6 +80633,7 @@ export declare type Mutation = {
|
|
|
79981
80633
|
restoreSpace?: Maybe<RestoreSpacePayload>;
|
|
79982
80634
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
79983
80635
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
80636
|
+
runImport?: Maybe<RunImportPayload>;
|
|
79984
80637
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
79985
80638
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
79986
80639
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
@@ -81247,6 +81900,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
|
81247
81900
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
81248
81901
|
input: JiraReorderBoardViewColumnInput;
|
|
81249
81902
|
};
|
|
81903
|
+
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
81904
|
+
input: JiraReorderSidebarMenuItemInput;
|
|
81905
|
+
};
|
|
81250
81906
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
81251
81907
|
input: JiraSetBoardIssueCardCoverInput;
|
|
81252
81908
|
};
|
|
@@ -81496,6 +82152,9 @@ export declare type MutationRestoreSpaceArgs = {
|
|
|
81496
82152
|
export declare type MutationRevertToLegacyEditorArgs = {
|
|
81497
82153
|
contentId: Scalars['ID']['input'];
|
|
81498
82154
|
};
|
|
82155
|
+
export declare type MutationRunImportArgs = {
|
|
82156
|
+
input: RunImportInput;
|
|
82157
|
+
};
|
|
81499
82158
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
81500
82159
|
input: SetAppEnvironmentVariableInput;
|
|
81501
82160
|
};
|
|
@@ -84759,7 +85418,6 @@ export declare type Query = {
|
|
|
84759
85418
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
84760
85419
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
84761
85420
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
84762
|
-
confluence_spacesForSimpleIds?: Maybe<Array<Maybe<Space>>>;
|
|
84763
85421
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
84764
85422
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
84765
85423
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
@@ -84953,6 +85611,7 @@ export declare type Query = {
|
|
|
84953
85611
|
jiraServers?: Maybe<JiraServersResult>;
|
|
84954
85612
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
84955
85613
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
85614
|
+
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
84956
85615
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
84957
85616
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
84958
85617
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -85124,6 +85783,9 @@ export declare type Query = {
|
|
|
85124
85783
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
85125
85784
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
85126
85785
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
85786
|
+
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
85787
|
+
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
85788
|
+
spf_dependency?: Maybe<SpfDependency>;
|
|
85127
85789
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85128
85790
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85129
85791
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -86483,10 +87145,6 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
|
86483
87145
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
86484
87146
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
86485
87147
|
};
|
|
86486
|
-
export declare type QueryConfluence_SpacesForSimpleIdsArgs = {
|
|
86487
|
-
cloudId: Scalars['ID']['input'];
|
|
86488
|
-
spaceIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
86489
|
-
};
|
|
86490
87148
|
export declare type QueryConfluence_StorageArgs = {
|
|
86491
87149
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86492
87150
|
};
|
|
@@ -87234,6 +87892,11 @@ export declare type QueryJira_BoardViewArgs = {
|
|
|
87234
87892
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
87235
87893
|
cloudId: Scalars['ID']['input'];
|
|
87236
87894
|
};
|
|
87895
|
+
export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
87896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87897
|
+
cloudId: Scalars['ID']['input'];
|
|
87898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87899
|
+
};
|
|
87237
87900
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
87238
87901
|
cloudId: Scalars['ID']['input'];
|
|
87239
87902
|
};
|
|
@@ -87851,6 +88514,18 @@ export declare type QuerySpacesArgs = {
|
|
|
87851
88514
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
87852
88515
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
87853
88516
|
};
|
|
88517
|
+
export declare type QuerySpf_DependenciesArgs = {
|
|
88518
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88519
|
+
cloudId: Scalars['ID']['input'];
|
|
88520
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88521
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
88522
|
+
};
|
|
88523
|
+
export declare type QuerySpf_DependenciesByIdsArgs = {
|
|
88524
|
+
ids: Array<Scalars['ID']['input']>;
|
|
88525
|
+
};
|
|
88526
|
+
export declare type QuerySpf_DependencyArgs = {
|
|
88527
|
+
id: Scalars['ID']['input'];
|
|
88528
|
+
};
|
|
87854
88529
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
87855
88530
|
appId: Scalars['ID']['input'];
|
|
87856
88531
|
installationId: Scalars['ID']['input'];
|
|
@@ -89676,6 +90351,29 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
89676
90351
|
Team = "TEAM",
|
|
89677
90352
|
User = "USER"
|
|
89678
90353
|
}
|
|
90354
|
+
export declare type RunImportError = {
|
|
90355
|
+
__typename?: 'RunImportError';
|
|
90356
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
90357
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
90358
|
+
};
|
|
90359
|
+
export declare type RunImportInput = {
|
|
90360
|
+
accessToken: Scalars['String']['input'];
|
|
90361
|
+
application: Scalars['String']['input'];
|
|
90362
|
+
filestoreId: Scalars['String']['input'];
|
|
90363
|
+
fullImport: Scalars['Boolean']['input'];
|
|
90364
|
+
importPageData: Scalars['Boolean']['input'];
|
|
90365
|
+
importPermissions?: InputMaybe<Scalars['String']['input']>;
|
|
90366
|
+
importUsers: Scalars['Boolean']['input'];
|
|
90367
|
+
integrationToken: Scalars['String']['input'];
|
|
90368
|
+
orgId: Scalars['String']['input'];
|
|
90369
|
+
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
90370
|
+
};
|
|
90371
|
+
export declare type RunImportPayload = {
|
|
90372
|
+
__typename?: 'RunImportPayload';
|
|
90373
|
+
errors: Array<RunImportError>;
|
|
90374
|
+
success: Scalars['Boolean']['output'];
|
|
90375
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
90376
|
+
};
|
|
89679
90377
|
export declare type SqlSchemaSizeLogResponse = {
|
|
89680
90378
|
__typename?: 'SQLSchemaSizeLogResponse';
|
|
89681
90379
|
databaseSize: Scalars['String']['output'];
|
|
@@ -93778,6 +94476,119 @@ export declare type SpaceWithExemption = {
|
|
|
93778
94476
|
status?: Maybe<Scalars['String']['output']>;
|
|
93779
94477
|
type?: Maybe<Scalars['String']['output']>;
|
|
93780
94478
|
};
|
|
94479
|
+
export declare type SpfComment = {
|
|
94480
|
+
__typename?: 'SpfComment';
|
|
94481
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94482
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
94483
|
+
data: Scalars['String']['output'];
|
|
94484
|
+
id: Scalars['ID']['output'];
|
|
94485
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
94486
|
+
};
|
|
94487
|
+
export declare type SpfCommentConnection = {
|
|
94488
|
+
__typename?: 'SpfCommentConnection';
|
|
94489
|
+
edges?: Maybe<Array<Maybe<SpfCommentEdge>>>;
|
|
94490
|
+
pageInfo: PageInfo;
|
|
94491
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
94492
|
+
};
|
|
94493
|
+
export declare type SpfCommentEdge = {
|
|
94494
|
+
__typename?: 'SpfCommentEdge';
|
|
94495
|
+
cursor: Scalars['String']['output'];
|
|
94496
|
+
node?: Maybe<SpfComment>;
|
|
94497
|
+
};
|
|
94498
|
+
export declare type SpfDependency = Node & {
|
|
94499
|
+
__typename?: 'SpfDependency';
|
|
94500
|
+
comments?: Maybe<SpfCommentConnection>;
|
|
94501
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94502
|
+
createdBy?: Maybe<User>;
|
|
94503
|
+
createdByUserId: Scalars['String']['output'];
|
|
94504
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
94505
|
+
id: Scalars['ID']['output'];
|
|
94506
|
+
impactedWork?: Maybe<SpfImpactedWork>;
|
|
94507
|
+
impactedWorkId: Scalars['String']['output'];
|
|
94508
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
94509
|
+
name: Scalars['String']['output'];
|
|
94510
|
+
owner?: Maybe<User>;
|
|
94511
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
94512
|
+
priority: SpfPriority;
|
|
94513
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
94514
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
94515
|
+
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
94516
|
+
requester?: Maybe<User>;
|
|
94517
|
+
requesterId: Scalars['String']['output'];
|
|
94518
|
+
requestingTeam?: Maybe<TeamV2>;
|
|
94519
|
+
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
94520
|
+
status: SpfDependencyStatus;
|
|
94521
|
+
targetDate?: Maybe<SpfTargetDate>;
|
|
94522
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
94523
|
+
updatedBy?: Maybe<User>;
|
|
94524
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
94525
|
+
};
|
|
94526
|
+
export declare type SpfDependencyCommentsArgs = {
|
|
94527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94528
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94529
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
94530
|
+
};
|
|
94531
|
+
export declare type SpfDependencyRelatedContentArgs = {
|
|
94532
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94533
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94534
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
94535
|
+
};
|
|
94536
|
+
export declare type SpfDependencyConnection = {
|
|
94537
|
+
__typename?: 'SpfDependencyConnection';
|
|
94538
|
+
edges?: Maybe<Array<Maybe<SpfDependencyEdge>>>;
|
|
94539
|
+
pageInfo: PageInfo;
|
|
94540
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
94541
|
+
};
|
|
94542
|
+
export declare type SpfDependencyEdge = {
|
|
94543
|
+
__typename?: 'SpfDependencyEdge';
|
|
94544
|
+
cursor: Scalars['String']['output'];
|
|
94545
|
+
node?: Maybe<SpfDependency>;
|
|
94546
|
+
};
|
|
94547
|
+
export declare enum SpfDependencyStatus {
|
|
94548
|
+
Accepted = "ACCEPTED",
|
|
94549
|
+
Canceled = "CANCELED",
|
|
94550
|
+
Denied = "DENIED",
|
|
94551
|
+
Draft = "DRAFT",
|
|
94552
|
+
InReview = "IN_REVIEW",
|
|
94553
|
+
Revising = "REVISING",
|
|
94554
|
+
Submitted = "SUBMITTED"
|
|
94555
|
+
}
|
|
94556
|
+
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
94557
|
+
export declare enum SpfPriority {
|
|
94558
|
+
Critical = "CRITICAL",
|
|
94559
|
+
High = "HIGH",
|
|
94560
|
+
Highest = "HIGHEST",
|
|
94561
|
+
Low = "LOW",
|
|
94562
|
+
Medium = "MEDIUM"
|
|
94563
|
+
}
|
|
94564
|
+
export declare type SpfRelatedContent = {
|
|
94565
|
+
__typename?: 'SpfRelatedContent';
|
|
94566
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
94567
|
+
attachedDateTime: Scalars['DateTime']['output'];
|
|
94568
|
+
id: Scalars['ID']['output'];
|
|
94569
|
+
url: Scalars['URL']['output'];
|
|
94570
|
+
};
|
|
94571
|
+
export declare type SpfRelatedContentConnection = {
|
|
94572
|
+
__typename?: 'SpfRelatedContentConnection';
|
|
94573
|
+
edges?: Maybe<Array<Maybe<SpfRelatedContentEdge>>>;
|
|
94574
|
+
pageInfo: PageInfo;
|
|
94575
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
94576
|
+
};
|
|
94577
|
+
export declare type SpfRelatedContentEdge = {
|
|
94578
|
+
__typename?: 'SpfRelatedContentEdge';
|
|
94579
|
+
cursor: Scalars['String']['output'];
|
|
94580
|
+
node?: Maybe<SpfRelatedContent>;
|
|
94581
|
+
};
|
|
94582
|
+
export declare type SpfTargetDate = {
|
|
94583
|
+
__typename?: 'SpfTargetDate';
|
|
94584
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
94585
|
+
targetDateType?: Maybe<SpfTargetDateType>;
|
|
94586
|
+
};
|
|
94587
|
+
export declare enum SpfTargetDateType {
|
|
94588
|
+
Day = "DAY",
|
|
94589
|
+
Month = "MONTH",
|
|
94590
|
+
Quarter = "QUARTER"
|
|
94591
|
+
}
|
|
93781
94592
|
export declare type SplitIssueInput = {
|
|
93782
94593
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
93783
94594
|
originalIssue: OriginalSplitIssue;
|
|
@@ -95395,6 +96206,21 @@ export declare type TownsquareCommentEdge = {
|
|
|
95395
96206
|
cursor: Scalars['String']['output'];
|
|
95396
96207
|
node?: Maybe<TownsquareComment>;
|
|
95397
96208
|
};
|
|
96209
|
+
export declare type TownsquareCreateGoalHasJiraAlignProjectInput = {
|
|
96210
|
+
from: Scalars['String']['input'];
|
|
96211
|
+
to: Scalars['String']['input'];
|
|
96212
|
+
};
|
|
96213
|
+
export declare type TownsquareCreateGoalHasJiraAlignProjectMutationErrorExtension = MutationErrorExtension & {
|
|
96214
|
+
__typename?: 'TownsquareCreateGoalHasJiraAlignProjectMutationErrorExtension';
|
|
96215
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96216
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96217
|
+
};
|
|
96218
|
+
export declare type TownsquareCreateGoalHasJiraAlignProjectPayload = {
|
|
96219
|
+
__typename?: 'TownsquareCreateGoalHasJiraAlignProjectPayload';
|
|
96220
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96221
|
+
node?: Maybe<JiraAlignAggProject>;
|
|
96222
|
+
success: Scalars['Boolean']['output'];
|
|
96223
|
+
};
|
|
95398
96224
|
export declare type TownsquareCreateGoalInput = {
|
|
95399
96225
|
containerId: Scalars['String']['input'];
|
|
95400
96226
|
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -95712,6 +96538,7 @@ export declare type TownsquareMutationApi = {
|
|
|
95712
96538
|
__typename?: 'TownsquareMutationApi';
|
|
95713
96539
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
95714
96540
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
96541
|
+
createGoalHasJiraAlignProject?: Maybe<TownsquareCreateGoalHasJiraAlignProjectPayload>;
|
|
95715
96542
|
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
95716
96543
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
95717
96544
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
@@ -95727,6 +96554,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
95727
96554
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
95728
96555
|
input: TownsquareCreateGoalInput;
|
|
95729
96556
|
};
|
|
96557
|
+
export declare type TownsquareMutationApiCreateGoalHasJiraAlignProjectArgs = {
|
|
96558
|
+
input: TownsquareCreateGoalHasJiraAlignProjectInput;
|
|
96559
|
+
};
|
|
95730
96560
|
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
95731
96561
|
input: TownsquareCreateGoalTypeInput;
|
|
95732
96562
|
};
|