@forge/cli-shared 6.10.0-next.4 → 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 +18 -0
- package/out/graphql/graphql-types.d.ts +849 -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 +63 -23
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +86 -24
- 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>;
|
|
@@ -25436,6 +25491,7 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
25436
25491
|
__typename?: 'ExternalCalendarEvent';
|
|
25437
25492
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
25438
25493
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
25494
|
+
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
25439
25495
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
25440
25496
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
25441
25497
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -25444,18 +25500,23 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
25444
25500
|
eventEndTime?: Maybe<Scalars['String']['output']>;
|
|
25445
25501
|
eventStartTime?: Maybe<Scalars['String']['output']>;
|
|
25446
25502
|
eventType?: Maybe<ExternalEventType>;
|
|
25503
|
+
exceedsMaxAttendees?: Maybe<Scalars['Boolean']['output']>;
|
|
25447
25504
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
25448
25505
|
id: Scalars['ID']['output'];
|
|
25506
|
+
isAllDayEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
25507
|
+
isRecurringEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
25449
25508
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25450
25509
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25451
25510
|
location?: Maybe<ExternalLocation>;
|
|
25452
25511
|
parent?: Maybe<ExternalEntity>;
|
|
25453
25512
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25454
25513
|
provider?: Maybe<ExternalProvider>;
|
|
25514
|
+
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
25455
25515
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
25456
25516
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25457
25517
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25458
25518
|
url?: Maybe<Scalars['String']['output']>;
|
|
25519
|
+
videoMeetingProvider?: Maybe<Scalars['String']['output']>;
|
|
25459
25520
|
videoMeetingUrl?: Maybe<Scalars['String']['output']>;
|
|
25460
25521
|
};
|
|
25461
25522
|
export declare type ExternalCalendarEventAttachment = {
|
|
@@ -31529,12 +31590,18 @@ export declare type GraphStore = {
|
|
|
31529
31590
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
31530
31591
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
31531
31592
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
31593
|
+
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
31594
|
+
externalOrgHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection>;
|
|
31532
31595
|
externalOrgHasExternalWorker?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection>;
|
|
31533
31596
|
externalOrgHasExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection>;
|
|
31534
31597
|
externalOrgHasUserAsMember?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection>;
|
|
31535
31598
|
externalOrgHasUserAsMemberInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection>;
|
|
31599
|
+
externalOrgIsParentOfExternalOrg?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgConnection>;
|
|
31600
|
+
externalOrgIsParentOfExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalOrgIsParentOfExternalOrgInverseConnection>;
|
|
31536
31601
|
externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
|
|
31537
31602
|
externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
|
|
31603
|
+
externalPositionManagesExternalOrg?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgConnection>;
|
|
31604
|
+
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
31538
31605
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
31539
31606
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
31540
31607
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
@@ -31640,6 +31707,7 @@ export declare type GraphStore = {
|
|
|
31640
31707
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31641
31708
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31642
31709
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31710
|
+
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31643
31711
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31644
31712
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
31645
31713
|
issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
|
|
@@ -31680,6 +31748,8 @@ export declare type GraphStore = {
|
|
|
31680
31748
|
jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
31681
31749
|
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
31682
31750
|
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
31751
|
+
jsmProjectLinkedKbSources?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesConnection>;
|
|
31752
|
+
jsmProjectLinkedKbSourcesInverse?: Maybe<GraphStoreSimplifiedJsmProjectLinkedKbSourcesInverseConnection>;
|
|
31683
31753
|
jswProjectAssociatedComponent?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
31684
31754
|
jswProjectAssociatedComponentInverse?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection>;
|
|
31685
31755
|
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
@@ -31837,10 +31907,14 @@ export declare type GraphStore = {
|
|
|
31837
31907
|
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
31838
31908
|
serviceAssociatedBuild?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildConnection>;
|
|
31839
31909
|
serviceAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseConnection>;
|
|
31910
|
+
serviceAssociatedCommit?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitConnection>;
|
|
31911
|
+
serviceAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedCommitInverseConnection>;
|
|
31840
31912
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
31841
31913
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
31842
31914
|
serviceAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection>;
|
|
31843
31915
|
serviceAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection>;
|
|
31916
|
+
serviceAssociatedPr?: Maybe<GraphStoreSimplifiedServiceAssociatedPrConnection>;
|
|
31917
|
+
serviceAssociatedPrInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseConnection>;
|
|
31844
31918
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
31845
31919
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
31846
31920
|
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
@@ -31859,6 +31933,8 @@ export declare type GraphStore = {
|
|
|
31859
31933
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
31860
31934
|
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
31861
31935
|
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
31936
|
+
spaceHasPage?: Maybe<GraphStoreSimplifiedSpaceHasPageConnection>;
|
|
31937
|
+
spaceHasPageInverse?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseConnection>;
|
|
31862
31938
|
sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
|
|
31863
31939
|
sprintAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseConnection>;
|
|
31864
31940
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
@@ -32024,6 +32100,8 @@ export declare type GraphStore = {
|
|
|
32024
32100
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
32025
32101
|
userOwnsFocusArea?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaConnection>;
|
|
32026
32102
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
32103
|
+
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
32104
|
+
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
32027
32105
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
32028
32106
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
32029
32107
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -32038,6 +32116,8 @@ export declare type GraphStore = {
|
|
|
32038
32116
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32039
32117
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32040
32118
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32119
|
+
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
32120
|
+
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
32041
32121
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
32042
32122
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
32043
32123
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
@@ -32820,6 +32900,20 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
32820
32900
|
id: Scalars['ID']['input'];
|
|
32821
32901
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
32822
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
|
+
};
|
|
32823
32917
|
export declare type GraphStoreExternalOrgHasExternalWorkerArgs = {
|
|
32824
32918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32825
32919
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32848,6 +32942,20 @@ export declare type GraphStoreExternalOrgHasUserAsMemberInverseArgs = {
|
|
|
32848
32942
|
id: Scalars['ID']['input'];
|
|
32849
32943
|
sort?: InputMaybe<GraphStoreExternalOrgHasUserAsMemberSortInput>;
|
|
32850
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
|
+
};
|
|
32851
32959
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerArgs = {
|
|
32852
32960
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32853
32961
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32862,6 +32970,20 @@ export declare type GraphStoreExternalPositionIsFilledByExternalWorkerInverseArg
|
|
|
32862
32970
|
id: Scalars['ID']['input'];
|
|
32863
32971
|
sort?: InputMaybe<GraphStoreExternalPositionIsFilledByExternalWorkerSortInput>;
|
|
32864
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
|
+
};
|
|
32865
32987
|
export declare type GraphStoreExternalPositionManagesExternalPositionArgs = {
|
|
32866
32988
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32867
32989
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33528,6 +33650,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33528
33650
|
id: Scalars['ID']['input'];
|
|
33529
33651
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33530
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
|
+
};
|
|
33531
33660
|
export declare type GraphStoreIssueMentionedInConversationArgs = {
|
|
33532
33661
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33533
33662
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33784,6 +33913,20 @@ export declare type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
|
|
|
33784
33913
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33785
33914
|
id: Scalars['ID']['input'];
|
|
33786
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
|
+
};
|
|
33787
33930
|
export declare type GraphStoreJswProjectAssociatedComponentArgs = {
|
|
33788
33931
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33789
33932
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34807,6 +34950,20 @@ export declare type GraphStoreServiceAssociatedBuildInverseArgs = {
|
|
|
34807
34950
|
id: Scalars['ID']['input'];
|
|
34808
34951
|
sort?: InputMaybe<GraphStoreServiceAssociatedBuildSortInput>;
|
|
34809
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
|
+
};
|
|
34810
34967
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
34811
34968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34812
34969
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34837,6 +34994,20 @@ export declare type GraphStoreServiceAssociatedFeatureFlagInverseArgs = {
|
|
|
34837
34994
|
id: Scalars['ID']['input'];
|
|
34838
34995
|
sort?: InputMaybe<GraphStoreServiceAssociatedFeatureFlagSortInput>;
|
|
34839
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
|
+
};
|
|
34840
35011
|
export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
|
|
34841
35012
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34842
35013
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34965,6 +35136,20 @@ export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
|
34965
35136
|
id: Scalars['ID']['input'];
|
|
34966
35137
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
34967
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
|
+
};
|
|
34968
35153
|
export declare type GraphStoreSprintAssociatedBuildArgs = {
|
|
34969
35154
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34970
35155
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36106,6 +36291,20 @@ export declare type GraphStoreUserOwnsFocusAreaInverseArgs = {
|
|
|
36106
36291
|
id: Scalars['ID']['input'];
|
|
36107
36292
|
sort?: InputMaybe<GraphStoreUserOwnsFocusAreaSortInput>;
|
|
36108
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
|
+
};
|
|
36109
36308
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
36110
36309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36111
36310
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36204,6 +36403,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36204
36403
|
id: Scalars['ID']['input'];
|
|
36205
36404
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36206
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
|
+
};
|
|
36207
36420
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
36208
36421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36209
36422
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38791,6 +39004,9 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
38791
39004
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
38792
39005
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38793
39006
|
};
|
|
39007
|
+
export declare type GraphStoreExternalOrgHasExternalPositionSortInput = {
|
|
39008
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39009
|
+
};
|
|
38794
39010
|
export declare type GraphStoreExternalOrgHasExternalWorkerSortInput = {
|
|
38795
39011
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38796
39012
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -38803,9 +39019,15 @@ export declare type GraphStoreExternalOrgHasUserAsMemberSortInput = {
|
|
|
38803
39019
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38804
39020
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38805
39021
|
};
|
|
39022
|
+
export declare type GraphStoreExternalOrgIsParentOfExternalOrgSortInput = {
|
|
39023
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39024
|
+
};
|
|
38806
39025
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
|
|
38807
39026
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38808
39027
|
};
|
|
39028
|
+
export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
39029
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39030
|
+
};
|
|
38809
39031
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
38810
39032
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38811
39033
|
};
|
|
@@ -42487,6 +42709,9 @@ export declare type GraphStoreIssueHasAutodevJobSortInput = {
|
|
|
42487
42709
|
export declare type GraphStoreIssueHasChangedPrioritySortInput = {
|
|
42488
42710
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42489
42711
|
};
|
|
42712
|
+
export declare type GraphStoreIssueHasChangedStatusSortInput = {
|
|
42713
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42714
|
+
};
|
|
42490
42715
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
42491
42716
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42492
42717
|
};
|
|
@@ -42590,6 +42815,9 @@ export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
|
42590
42815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42591
42816
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42592
42817
|
};
|
|
42818
|
+
export declare type GraphStoreJsmProjectLinkedKbSourcesSortInput = {
|
|
42819
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42820
|
+
};
|
|
42593
42821
|
export declare type GraphStoreJswProjectAssociatedComponentSortInput = {
|
|
42594
42822
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42595
42823
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43428,6 +43656,9 @@ export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
|
43428
43656
|
export declare type GraphStoreServiceAssociatedBuildSortInput = {
|
|
43429
43657
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43430
43658
|
};
|
|
43659
|
+
export declare type GraphStoreServiceAssociatedCommitSortInput = {
|
|
43660
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43661
|
+
};
|
|
43431
43662
|
export declare type GraphStoreServiceAssociatedDeploymentConditionalFilterInput = {
|
|
43432
43663
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
43433
43664
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -43447,6 +43678,9 @@ export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
|
43447
43678
|
export declare type GraphStoreServiceAssociatedFeatureFlagSortInput = {
|
|
43448
43679
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43449
43680
|
};
|
|
43681
|
+
export declare type GraphStoreServiceAssociatedPrSortInput = {
|
|
43682
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43683
|
+
};
|
|
43450
43684
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
43451
43685
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43452
43686
|
};
|
|
@@ -44696,6 +44930,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
44696
44930
|
};
|
|
44697
44931
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
44698
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;
|
|
44699
44961
|
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection = HasPageInfo & HasTotal & {
|
|
44700
44962
|
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection';
|
|
44701
44963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge>>>;
|
|
@@ -44760,6 +45022,34 @@ export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge =
|
|
|
44760
45022
|
};
|
|
44761
45023
|
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseUnion = ExternalOrganisation;
|
|
44762
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;
|
|
44763
45053
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection = HasPageInfo & {
|
|
44764
45054
|
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection';
|
|
44765
45055
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge>>>;
|
|
@@ -44788,6 +45078,34 @@ export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorker
|
|
|
44788
45078
|
};
|
|
44789
45079
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseUnion = ExternalPosition;
|
|
44790
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;
|
|
44791
45109
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection = HasPageInfo & {
|
|
44792
45110
|
__typename?: 'GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection';
|
|
44793
45111
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionEdge>>>;
|
|
@@ -45596,6 +45914,20 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
45596
45914
|
};
|
|
45597
45915
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
45598
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;
|
|
45599
45931
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
45600
45932
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
45601
45933
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -45960,6 +46292,34 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
45960
46292
|
};
|
|
45961
46293
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion = JiraProject;
|
|
45962
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;
|
|
45963
46323
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentConnection = HasPageInfo & HasTotal & {
|
|
45964
46324
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentConnection';
|
|
45965
46325
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentEdge>>>;
|
|
@@ -47354,6 +47714,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseEdge = {
|
|
|
47354
47714
|
};
|
|
47355
47715
|
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseUnion = DevOpsService;
|
|
47356
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;
|
|
47357
47745
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
47358
47746
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
47359
47747
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -47414,6 +47802,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge
|
|
|
47414
47802
|
};
|
|
47415
47803
|
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseUnion = DevOpsService;
|
|
47416
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;
|
|
47417
47833
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
47418
47834
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
|
|
47419
47835
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
|
|
@@ -47650,6 +48066,34 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge =
|
|
|
47650
48066
|
};
|
|
47651
48067
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
47652
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;
|
|
47653
48097
|
export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
47654
48098
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
|
|
47655
48099
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
|
|
@@ -49640,6 +50084,34 @@ export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseEdge = {
|
|
|
49640
50084
|
};
|
|
49641
50085
|
export declare type GraphStoreSimplifiedUserOwnsFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49642
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;
|
|
49643
50115
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
49644
50116
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
49645
50117
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -49836,6 +50308,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
49836
50308
|
};
|
|
49837
50309
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49838
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;
|
|
49839
50339
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
49840
50340
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
49841
50341
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -50723,6 +51223,9 @@ export declare type GraphStoreSortInput = {
|
|
|
50723
51223
|
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
50724
51224
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50725
51225
|
};
|
|
51226
|
+
export declare type GraphStoreSpaceHasPageSortInput = {
|
|
51227
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51228
|
+
};
|
|
50726
51229
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
50727
51230
|
Cancelled = "CANCELLED",
|
|
50728
51231
|
Failed = "FAILED",
|
|
@@ -51337,6 +51840,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
51337
51840
|
export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
51338
51841
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51339
51842
|
};
|
|
51843
|
+
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
51844
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51845
|
+
};
|
|
51340
51846
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
51341
51847
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51342
51848
|
};
|
|
@@ -51358,6 +51864,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
51358
51864
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
51359
51865
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51360
51866
|
};
|
|
51867
|
+
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
51868
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51869
|
+
};
|
|
51361
51870
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
51362
51871
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51363
51872
|
};
|
|
@@ -57260,6 +57769,7 @@ export declare enum JiraConfigFieldType {
|
|
|
57260
57769
|
StandardIssueKey = "STANDARD_ISSUE_KEY",
|
|
57261
57770
|
StandardIssueLinks = "STANDARD_ISSUE_LINKS",
|
|
57262
57771
|
StandardIssueNumber = "STANDARD_ISSUE_NUMBER",
|
|
57772
|
+
StandardIssueRestriction = "STANDARD_ISSUE_RESTRICTION",
|
|
57263
57773
|
StandardIssueType = "STANDARD_ISSUE_TYPE",
|
|
57264
57774
|
StandardLabels = "STANDARD_LABELS",
|
|
57265
57775
|
StandardLastViewed = "STANDARD_LAST_VIEWED",
|
|
@@ -57273,6 +57783,8 @@ export declare enum JiraConfigFieldType {
|
|
|
57273
57783
|
StandardResolutionDate = "STANDARD_RESOLUTION_DATE",
|
|
57274
57784
|
StandardSecurity = "STANDARD_SECURITY",
|
|
57275
57785
|
StandardStatus = "STANDARD_STATUS",
|
|
57786
|
+
StandardStatusCategory = "STANDARD_STATUS_CATEGORY",
|
|
57787
|
+
StandardStatusCategoryChangeDate = "STANDARD_STATUS_CATEGORY_CHANGE_DATE",
|
|
57276
57788
|
StandardSubtasks = "STANDARD_SUBTASKS",
|
|
57277
57789
|
StandardSummary = "STANDARD_SUMMARY",
|
|
57278
57790
|
StandardThumbnail = "STANDARD_THUMBNAIL",
|
|
@@ -57348,10 +57860,29 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
57348
57860
|
isVisible: Scalars['Boolean']['input'];
|
|
57349
57861
|
menuId: Scalars['String']['input'];
|
|
57350
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
|
+
}
|
|
57351
57881
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
57352
57882
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
57353
57883
|
href?: Maybe<Scalars['String']['output']>;
|
|
57354
57884
|
id: Scalars['ID']['output'];
|
|
57885
|
+
pageContent?: Maybe<JiraConfluencePageContent>;
|
|
57355
57886
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
57356
57887
|
title?: Maybe<Scalars['String']['output']>;
|
|
57357
57888
|
};
|
|
@@ -57874,6 +58405,32 @@ export declare type JiraCustomFieldOptionInput = {
|
|
|
57874
58405
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
57875
58406
|
value: Scalars['String']['input'];
|
|
57876
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
|
+
};
|
|
57877
58434
|
export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
57878
58435
|
__typename?: 'JiraCustomFieldUsageMetric';
|
|
57879
58436
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -60641,10 +61198,13 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
60641
61198
|
__typename?: 'JiraIssueFieldConfig';
|
|
60642
61199
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
60643
61200
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
61201
|
+
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
60644
61202
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
60645
61203
|
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
61204
|
+
associatedProjectsV2?: Maybe<JiraProjectConnection>;
|
|
60646
61205
|
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
60647
61206
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
61207
|
+
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
60648
61208
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
60649
61209
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
60650
61210
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -60672,18 +61232,36 @@ export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
|
60672
61232
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60673
61233
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60674
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
|
+
};
|
|
60675
61241
|
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
60676
61242
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
60677
61243
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
60678
61244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60679
61245
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60680
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
|
+
};
|
|
60681
61253
|
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
60682
61254
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
60683
61255
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
60684
61256
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60685
61257
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60686
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
|
+
};
|
|
60687
61265
|
export declare type JiraIssueFieldConfiguration = {
|
|
60688
61266
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
60689
61267
|
};
|
|
@@ -61419,6 +61997,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
61419
61997
|
export declare type JiraIssueSearchViewContextInput = {
|
|
61420
61998
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
61421
61999
|
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
62000
|
+
topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
|
|
61422
62001
|
};
|
|
61423
62002
|
export declare type JiraIssueSearchViewContextMapping = {
|
|
61424
62003
|
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62000,10 +62579,12 @@ export declare type JiraJqlBuilderFieldsArgs = {
|
|
|
62000
62579
|
};
|
|
62001
62580
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
62002
62581
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
62582
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62003
62583
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
62004
62584
|
};
|
|
62005
62585
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
62006
62586
|
id: Scalars['ID']['input'];
|
|
62587
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62007
62588
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
62008
62589
|
};
|
|
62009
62590
|
export declare type JiraJqlBuilderIssueTypesArgs = {
|
|
@@ -67543,6 +68124,12 @@ export declare enum JiraReorderBoardViewColumnPosition {
|
|
|
67543
68124
|
After = "AFTER",
|
|
67544
68125
|
Before = "BEFORE"
|
|
67545
68126
|
}
|
|
68127
|
+
export declare type JiraReorderSidebarMenuItemInput = {
|
|
68128
|
+
cloudId: Scalars['ID']['input'];
|
|
68129
|
+
menuItem: JiraSidebarMenuItemInput;
|
|
68130
|
+
relativeMenuItem?: InputMaybe<JiraSidebarMenuItemInput>;
|
|
68131
|
+
reorderMode: JiraSidebarMenuItemReorderOperation;
|
|
68132
|
+
};
|
|
67546
68133
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
67547
68134
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67548
68135
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69551,6 +70138,15 @@ export declare enum JiraSidebarMenuDisplayMode {
|
|
|
69551
70138
|
export declare type JiraSidebarMenuItemInput = {
|
|
69552
70139
|
itemId: Scalars['ID']['input'];
|
|
69553
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
|
+
}
|
|
69554
70150
|
export declare type JiraSimilarIssues = {
|
|
69555
70151
|
__typename?: 'JiraSimilarIssues';
|
|
69556
70152
|
featureEnabled: Scalars['Boolean']['output'];
|
|
@@ -75173,10 +75769,12 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
|
75173
75769
|
};
|
|
75174
75770
|
export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
|
|
75175
75771
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionListingLinks';
|
|
75772
|
+
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
75176
75773
|
documentation?: Maybe<Scalars['String']['output']>;
|
|
75177
75774
|
eula?: Maybe<Scalars['String']['output']>;
|
|
75178
75775
|
learnMore?: Maybe<Scalars['String']['output']>;
|
|
75179
75776
|
legacyVendorLinks?: Maybe<MarketplaceConsoleLegacyVendorLinks>;
|
|
75777
|
+
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
75180
75778
|
purchase?: Maybe<Scalars['String']['output']>;
|
|
75181
75779
|
};
|
|
75182
75780
|
export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
@@ -77300,6 +77898,18 @@ export declare type MercuryChangeSort = {
|
|
|
77300
77898
|
export declare enum MercuryChangeSortField {
|
|
77301
77899
|
Type = "TYPE"
|
|
77302
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
|
+
};
|
|
77303
77913
|
export declare enum MercuryChangeType {
|
|
77304
77914
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
77305
77915
|
ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
|
|
@@ -77620,6 +78230,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
77620
78230
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
77621
78231
|
archived: Scalars['Boolean']['output'];
|
|
77622
78232
|
ari: Scalars['String']['output'];
|
|
78233
|
+
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
77623
78234
|
createdDate: Scalars['String']['output'];
|
|
77624
78235
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
77625
78236
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
@@ -77909,6 +78520,16 @@ export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
|
77909
78520
|
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77910
78521
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77911
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
|
+
};
|
|
77912
78533
|
export declare type MercuryFunding = {
|
|
77913
78534
|
__typename?: 'MercuryFunding';
|
|
77914
78535
|
aggregation?: Maybe<MercuryFundingAggregation>;
|
|
@@ -77924,6 +78545,11 @@ export declare type MercuryFundingAssigned = {
|
|
|
77924
78545
|
budget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
77925
78546
|
spend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
77926
78547
|
};
|
|
78548
|
+
export declare type MercuryFundingDeltaByStatus = {
|
|
78549
|
+
__typename?: 'MercuryFundingDeltaByStatus';
|
|
78550
|
+
amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78551
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78552
|
+
};
|
|
77927
78553
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
77928
78554
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
77929
78555
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -78289,6 +78915,21 @@ export declare type MercuryPositionAllocationChangeInput = {
|
|
|
78289
78915
|
sourceFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
78290
78916
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
78291
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
|
+
};
|
|
78292
78933
|
export declare type MercuryPreference = Node & {
|
|
78293
78934
|
__typename?: 'MercuryPreference';
|
|
78294
78935
|
id: Scalars['ID']['output'];
|
|
@@ -78529,6 +79170,7 @@ export declare type MercuryQueryApi = {
|
|
|
78529
79170
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
78530
79171
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
78531
79172
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
79173
|
+
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
78532
79174
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
78533
79175
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
78534
79176
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -78604,6 +79246,12 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
78604
79246
|
cloudId: Scalars['ID']['input'];
|
|
78605
79247
|
ids: Array<Scalars['String']['input']>;
|
|
78606
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
|
+
};
|
|
78607
79255
|
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
78608
79256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78609
79257
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -78933,6 +79581,8 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
78933
79581
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
78934
79582
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
78935
79583
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
79584
|
+
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79585
|
+
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
78936
79586
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
78937
79587
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
78938
79588
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
@@ -78957,6 +79607,13 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
78957
79607
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
78958
79608
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
78959
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
|
+
};
|
|
78960
79617
|
export declare type MercuryStrategicEventsQueryApiChangesArgs = {
|
|
78961
79618
|
ids: Array<Scalars['ID']['input']>;
|
|
78962
79619
|
};
|
|
@@ -79885,6 +80542,7 @@ export declare type Mutation = {
|
|
|
79885
80542
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79886
80543
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
79887
80544
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
80545
|
+
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
79888
80546
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
79889
80547
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
79890
80548
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -79975,6 +80633,7 @@ export declare type Mutation = {
|
|
|
79975
80633
|
restoreSpace?: Maybe<RestoreSpacePayload>;
|
|
79976
80634
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
79977
80635
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
80636
|
+
runImport?: Maybe<RunImportPayload>;
|
|
79978
80637
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
79979
80638
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
79980
80639
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
@@ -81241,6 +81900,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
|
81241
81900
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
81242
81901
|
input: JiraReorderBoardViewColumnInput;
|
|
81243
81902
|
};
|
|
81903
|
+
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
81904
|
+
input: JiraReorderSidebarMenuItemInput;
|
|
81905
|
+
};
|
|
81244
81906
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
81245
81907
|
input: JiraSetBoardIssueCardCoverInput;
|
|
81246
81908
|
};
|
|
@@ -81490,6 +82152,9 @@ export declare type MutationRestoreSpaceArgs = {
|
|
|
81490
82152
|
export declare type MutationRevertToLegacyEditorArgs = {
|
|
81491
82153
|
contentId: Scalars['ID']['input'];
|
|
81492
82154
|
};
|
|
82155
|
+
export declare type MutationRunImportArgs = {
|
|
82156
|
+
input: RunImportInput;
|
|
82157
|
+
};
|
|
81493
82158
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
81494
82159
|
input: SetAppEnvironmentVariableInput;
|
|
81495
82160
|
};
|
|
@@ -84753,7 +85418,6 @@ export declare type Query = {
|
|
|
84753
85418
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
84754
85419
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
84755
85420
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
84756
|
-
confluence_spacesForSimpleIds?: Maybe<Array<Maybe<Space>>>;
|
|
84757
85421
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
84758
85422
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
84759
85423
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
@@ -84947,6 +85611,7 @@ export declare type Query = {
|
|
|
84947
85611
|
jiraServers?: Maybe<JiraServersResult>;
|
|
84948
85612
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
84949
85613
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
85614
|
+
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
84950
85615
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
84951
85616
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
84952
85617
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -85118,6 +85783,9 @@ export declare type Query = {
|
|
|
85118
85783
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
85119
85784
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
85120
85785
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
85786
|
+
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
85787
|
+
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
85788
|
+
spf_dependency?: Maybe<SpfDependency>;
|
|
85121
85789
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
85122
85790
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85123
85791
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -86477,10 +87145,6 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
|
86477
87145
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
86478
87146
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
86479
87147
|
};
|
|
86480
|
-
export declare type QueryConfluence_SpacesForSimpleIdsArgs = {
|
|
86481
|
-
cloudId: Scalars['ID']['input'];
|
|
86482
|
-
spaceIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
86483
|
-
};
|
|
86484
87148
|
export declare type QueryConfluence_StorageArgs = {
|
|
86485
87149
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86486
87150
|
};
|
|
@@ -87228,6 +87892,11 @@ export declare type QueryJira_BoardViewArgs = {
|
|
|
87228
87892
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
87229
87893
|
cloudId: Scalars['ID']['input'];
|
|
87230
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
|
+
};
|
|
87231
87900
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
87232
87901
|
cloudId: Scalars['ID']['input'];
|
|
87233
87902
|
};
|
|
@@ -87845,6 +88514,18 @@ export declare type QuerySpacesArgs = {
|
|
|
87845
88514
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
87846
88515
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
87847
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
|
+
};
|
|
87848
88529
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
87849
88530
|
appId: Scalars['ID']['input'];
|
|
87850
88531
|
installationId: Scalars['ID']['input'];
|
|
@@ -89670,6 +90351,29 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
89670
90351
|
Team = "TEAM",
|
|
89671
90352
|
User = "USER"
|
|
89672
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
|
+
};
|
|
89673
90377
|
export declare type SqlSchemaSizeLogResponse = {
|
|
89674
90378
|
__typename?: 'SQLSchemaSizeLogResponse';
|
|
89675
90379
|
databaseSize: Scalars['String']['output'];
|
|
@@ -93772,6 +94476,119 @@ export declare type SpaceWithExemption = {
|
|
|
93772
94476
|
status?: Maybe<Scalars['String']['output']>;
|
|
93773
94477
|
type?: Maybe<Scalars['String']['output']>;
|
|
93774
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
|
+
}
|
|
93775
94592
|
export declare type SplitIssueInput = {
|
|
93776
94593
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
93777
94594
|
originalIssue: OriginalSplitIssue;
|
|
@@ -95389,6 +96206,21 @@ export declare type TownsquareCommentEdge = {
|
|
|
95389
96206
|
cursor: Scalars['String']['output'];
|
|
95390
96207
|
node?: Maybe<TownsquareComment>;
|
|
95391
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
|
+
};
|
|
95392
96224
|
export declare type TownsquareCreateGoalInput = {
|
|
95393
96225
|
containerId: Scalars['String']['input'];
|
|
95394
96226
|
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -95706,6 +96538,7 @@ export declare type TownsquareMutationApi = {
|
|
|
95706
96538
|
__typename?: 'TownsquareMutationApi';
|
|
95707
96539
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
95708
96540
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
96541
|
+
createGoalHasJiraAlignProject?: Maybe<TownsquareCreateGoalHasJiraAlignProjectPayload>;
|
|
95709
96542
|
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
95710
96543
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
95711
96544
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
@@ -95721,6 +96554,9 @@ export declare type TownsquareMutationApiArchiveGoalArgs = {
|
|
|
95721
96554
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
95722
96555
|
input: TownsquareCreateGoalInput;
|
|
95723
96556
|
};
|
|
96557
|
+
export declare type TownsquareMutationApiCreateGoalHasJiraAlignProjectArgs = {
|
|
96558
|
+
input: TownsquareCreateGoalHasJiraAlignProjectInput;
|
|
96559
|
+
};
|
|
95724
96560
|
export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
95725
96561
|
input: TownsquareCreateGoalTypeInput;
|
|
95726
96562
|
};
|