@forge/cli-shared 6.5.2 → 6.5.3-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/out/graphql/graphql-types.d.ts +2529 -72
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +103 -26
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -1
- package/package.json +2 -2
|
@@ -189,6 +189,7 @@ export declare type ActionsActionConfigurationParameter = {
|
|
|
189
189
|
__typename?: 'ActionsActionConfigurationParameter';
|
|
190
190
|
default?: Maybe<Scalars['String']['output']>;
|
|
191
191
|
description?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
192
193
|
maximum?: Maybe<Scalars['Int']['output']>;
|
|
193
194
|
minimum?: Maybe<Scalars['Int']['output']>;
|
|
194
195
|
required: Scalars['Boolean']['output'];
|
|
@@ -298,6 +299,7 @@ export declare type ActionsDescription = {
|
|
|
298
299
|
default: Scalars['String']['output'];
|
|
299
300
|
};
|
|
300
301
|
export declare type ActionsExecuteActionFilter = {
|
|
302
|
+
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
301
303
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
302
304
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
303
305
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -927,6 +929,7 @@ export declare type App = {
|
|
|
927
929
|
termsOfService?: Maybe<Scalars['String']['output']>;
|
|
928
930
|
updatedAt: Scalars['DateTime']['output'];
|
|
929
931
|
vendorName?: Maybe<Scalars['String']['output']>;
|
|
932
|
+
vendorType?: Maybe<Scalars['String']['output']>;
|
|
930
933
|
};
|
|
931
934
|
export declare type AppDeploymentsArgs = {
|
|
932
935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1119,6 +1122,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
1119
1122
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
1120
1123
|
extensions?: Maybe<AppVersionExtensions>;
|
|
1121
1124
|
id: Scalars['ID']['output'];
|
|
1125
|
+
installations?: Maybe<AppInstallationByIndexConnection>;
|
|
1122
1126
|
isLatest: Scalars['Boolean']['output'];
|
|
1123
1127
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
1124
1128
|
permissions: Array<AppPermission>;
|
|
@@ -1127,14 +1131,24 @@ export declare type AppEnvironmentVersion = {
|
|
|
1127
1131
|
storage: Storage;
|
|
1128
1132
|
trustSignal: TrustSignal;
|
|
1129
1133
|
updatedAt: Scalars['String']['output'];
|
|
1134
|
+
upgradeableByRolloutFromVersion: UpgradeableByRollout;
|
|
1130
1135
|
version: Scalars['String']['output'];
|
|
1131
1136
|
};
|
|
1132
1137
|
export declare type AppEnvironmentVersionExtensionByKeyArgs = {
|
|
1133
1138
|
key: Scalars['String']['input'];
|
|
1134
1139
|
};
|
|
1140
|
+
export declare type AppEnvironmentVersionInstallationsArgs = {
|
|
1141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1142
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1144
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1145
|
+
};
|
|
1135
1146
|
export declare type AppEnvironmentVersionTrustSignalArgs = {
|
|
1136
1147
|
key: Scalars['ID']['input'];
|
|
1137
1148
|
};
|
|
1149
|
+
export declare type AppEnvironmentVersionUpgradeableByRolloutFromVersionArgs = {
|
|
1150
|
+
sourceVersionId: Scalars['ID']['input'];
|
|
1151
|
+
};
|
|
1138
1152
|
export declare type AppEnvironmentVersionConnection = {
|
|
1139
1153
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
1140
1154
|
edges?: Maybe<Array<Maybe<AppEnvironmentVersionEdge>>>;
|
|
@@ -1170,6 +1184,7 @@ export declare type AppInstallation = {
|
|
|
1170
1184
|
createdBy?: Maybe<User>;
|
|
1171
1185
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1172
1186
|
id: Scalars['ID']['output'];
|
|
1187
|
+
installationConfigurations?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
1173
1188
|
installationContext: Scalars['ID']['output'];
|
|
1174
1189
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1175
1190
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1187,6 +1202,13 @@ export declare type AppInstallationByIndexEdge = {
|
|
|
1187
1202
|
cursor: Scalars['String']['output'];
|
|
1188
1203
|
node?: Maybe<AppInstallation>;
|
|
1189
1204
|
};
|
|
1205
|
+
export declare type AppInstallationConfig = {
|
|
1206
|
+
__typename?: 'AppInstallationConfig';
|
|
1207
|
+
id: Scalars['ID']['output'];
|
|
1208
|
+
idType: EcosystemAppInstallationConfigIdType;
|
|
1209
|
+
key: EcosystemInstallationOverrideKeys;
|
|
1210
|
+
value: Scalars['Boolean']['output'];
|
|
1211
|
+
};
|
|
1190
1212
|
export declare type AppInstallationConnection = {
|
|
1191
1213
|
__typename?: 'AppInstallationConnection';
|
|
1192
1214
|
edges?: Maybe<Array<Maybe<AppInstallationEdge>>>;
|
|
@@ -1511,6 +1533,26 @@ export declare type AppRecUndoDismissalResult = {
|
|
|
1511
1533
|
description: Scalars['String']['output'];
|
|
1512
1534
|
undone: Scalars['Boolean']['output'];
|
|
1513
1535
|
};
|
|
1536
|
+
export declare type AppRollout = {
|
|
1537
|
+
__typename?: 'AppRollout';
|
|
1538
|
+
appId: Scalars['ID']['output'];
|
|
1539
|
+
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1540
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1541
|
+
completedUpgradeCount: Scalars['Int']['output'];
|
|
1542
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1543
|
+
createdByAccountId: Scalars['String']['output'];
|
|
1544
|
+
failedUpgradeCount: Scalars['Int']['output'];
|
|
1545
|
+
fromVersionId: Scalars['ID']['output'];
|
|
1546
|
+
id: Scalars['ID']['output'];
|
|
1547
|
+
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1548
|
+
status: AppRolloutStatus;
|
|
1549
|
+
toVersionId: Scalars['ID']['output'];
|
|
1550
|
+
};
|
|
1551
|
+
export declare enum AppRolloutStatus {
|
|
1552
|
+
Cancelled = "CANCELLED",
|
|
1553
|
+
Complete = "COMPLETE",
|
|
1554
|
+
Running = "RUNNING"
|
|
1555
|
+
}
|
|
1514
1556
|
export declare type AppSecurityPoliciesPermission = {
|
|
1515
1557
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
1516
1558
|
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -1699,7 +1741,6 @@ export declare type AppTunnelDefinitions = {
|
|
|
1699
1741
|
};
|
|
1700
1742
|
export declare type AppUninstallationInput = {
|
|
1701
1743
|
appId: Scalars['ID']['input'];
|
|
1702
|
-
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1703
1744
|
environmentKey: Scalars['String']['input'];
|
|
1704
1745
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
1705
1746
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2474,7 +2515,8 @@ export declare type BoardScopeCardsArgs = {
|
|
|
2474
2515
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2475
2516
|
};
|
|
2476
2517
|
export declare type BoardScopeFilteredCardIdsArgs = {
|
|
2477
|
-
customFilterIds
|
|
2518
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
2519
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
2478
2520
|
issueIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2479
2521
|
};
|
|
2480
2522
|
export declare type BoardScopeIssuesArgs = {
|
|
@@ -2726,6 +2768,14 @@ export declare type CqlDisplayableType = {
|
|
|
2726
2768
|
label?: Maybe<Scalars['String']['output']>;
|
|
2727
2769
|
type?: Maybe<Scalars['String']['output']>;
|
|
2728
2770
|
};
|
|
2771
|
+
export declare type CancelAppRolloutInput = {
|
|
2772
|
+
id: Scalars['ID']['input'];
|
|
2773
|
+
};
|
|
2774
|
+
export declare type CancelAppRolloutPayload = Payload & {
|
|
2775
|
+
__typename?: 'CancelAppRolloutPayload';
|
|
2776
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2777
|
+
success: Scalars['Boolean']['output'];
|
|
2778
|
+
};
|
|
2729
2779
|
export declare type CanvasToken = {
|
|
2730
2780
|
__typename?: 'CanvasToken';
|
|
2731
2781
|
expiryDateTime: Scalars['Long']['output'];
|
|
@@ -3859,6 +3909,7 @@ export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
|
3859
3909
|
};
|
|
3860
3910
|
export declare type CommerceTrial = {
|
|
3861
3911
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3912
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3862
3913
|
};
|
|
3863
3914
|
export declare type CompanyHubFeature = {
|
|
3864
3915
|
__typename?: 'CompanyHubFeature';
|
|
@@ -6493,12 +6544,18 @@ export declare type CompassJqlMetricSourceConfiguration = {
|
|
|
6493
6544
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6494
6545
|
executingJql?: Maybe<Scalars['String']['output']>;
|
|
6495
6546
|
jql?: Maybe<Scalars['String']['output']>;
|
|
6547
|
+
potentialErrors?: Maybe<CompassJqlMetricSourceConfigurationPotentialErrorsResult>;
|
|
6496
6548
|
userContext?: Maybe<User>;
|
|
6497
6549
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
6498
6550
|
};
|
|
6499
6551
|
export declare type CompassJqlMetricSourceConfigurationInput = {
|
|
6500
6552
|
jql: Scalars['String']['input'];
|
|
6501
6553
|
};
|
|
6554
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrors = {
|
|
6555
|
+
__typename?: 'CompassJQLMetricSourceConfigurationPotentialErrors';
|
|
6556
|
+
configErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6557
|
+
};
|
|
6558
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrorsResult = CompassJqlMetricSourceConfigurationPotentialErrors | QueryError;
|
|
6502
6559
|
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
6503
6560
|
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
6504
6561
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
@@ -8471,6 +8528,45 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
8471
8528
|
errors?: Maybe<Array<MutationError>>;
|
|
8472
8529
|
success: Scalars['Boolean']['output'];
|
|
8473
8530
|
};
|
|
8531
|
+
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
8532
|
+
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
8533
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8534
|
+
uid: Scalars['ID']['input'];
|
|
8535
|
+
};
|
|
8536
|
+
export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = ConfluenceConflictedPayload & {
|
|
8537
|
+
__typename?: 'ConfluenceDeleteSubCalendarAllFutureEventsPayload';
|
|
8538
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8539
|
+
success: Scalars['Boolean']['output'];
|
|
8540
|
+
};
|
|
8541
|
+
export declare type ConfluenceDeleteSubCalendarEventInput = {
|
|
8542
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8543
|
+
uid: Scalars['ID']['input'];
|
|
8544
|
+
};
|
|
8545
|
+
export declare type ConfluenceDeleteSubCalendarEventPayload = ConfluenceConflictedPayload & {
|
|
8546
|
+
__typename?: 'ConfluenceDeleteSubCalendarEventPayload';
|
|
8547
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8548
|
+
success: Scalars['Boolean']['output'];
|
|
8549
|
+
};
|
|
8550
|
+
export declare type ConfluenceDeleteSubCalendarHiddenEventsInput = {
|
|
8551
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8552
|
+
};
|
|
8553
|
+
export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
8554
|
+
__typename?: 'ConfluenceDeleteSubCalendarHiddenEventsPayload';
|
|
8555
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8556
|
+
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8557
|
+
success: Scalars['Boolean']['output'];
|
|
8558
|
+
};
|
|
8559
|
+
export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
|
|
8560
|
+
originalStart?: InputMaybe<Scalars['String']['input']>;
|
|
8561
|
+
recurrenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
8562
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8563
|
+
uid: Scalars['ID']['input'];
|
|
8564
|
+
};
|
|
8565
|
+
export declare type ConfluenceDeleteSubCalendarSingleEventPayload = ConfluenceConflictedPayload & {
|
|
8566
|
+
__typename?: 'ConfluenceDeleteSubCalendarSingleEventPayload';
|
|
8567
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8568
|
+
success: Scalars['Boolean']['output'];
|
|
8569
|
+
};
|
|
8474
8570
|
export declare enum ConfluenceEdition {
|
|
8475
8571
|
Free = "FREE",
|
|
8476
8572
|
Premium = "PREMIUM",
|
|
@@ -8568,6 +8664,14 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
8568
8664
|
Complete = "COMPLETE",
|
|
8569
8665
|
Incomplete = "INCOMPLETE"
|
|
8570
8666
|
}
|
|
8667
|
+
export declare type ConfluenceInviteUserInput = {
|
|
8668
|
+
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
8669
|
+
};
|
|
8670
|
+
export declare type ConfluenceInviteUserPayload = {
|
|
8671
|
+
__typename?: 'ConfluenceInviteUserPayload';
|
|
8672
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8673
|
+
success: Scalars['Boolean']['output'];
|
|
8674
|
+
};
|
|
8571
8675
|
export declare type ConfluenceLabel = {
|
|
8572
8676
|
__typename?: 'ConfluenceLabel';
|
|
8573
8677
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14604,6 +14708,24 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
14604
14708
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
14605
14709
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14606
14710
|
};
|
|
14711
|
+
export declare type ConfluenceRedactionMetadata = {
|
|
14712
|
+
__typename?: 'ConfluenceRedactionMetadata';
|
|
14713
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
14714
|
+
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
14715
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14716
|
+
redactionReason?: Maybe<Scalars['String']['output']>;
|
|
14717
|
+
};
|
|
14718
|
+
export declare type ConfluenceRedactionMetadataConnection = {
|
|
14719
|
+
__typename?: 'ConfluenceRedactionMetadataConnection';
|
|
14720
|
+
edges?: Maybe<Array<Maybe<ConfluenceRedactionMetadataEdge>>>;
|
|
14721
|
+
nodes?: Maybe<Array<Maybe<ConfluenceRedactionMetadata>>>;
|
|
14722
|
+
pageInfo: PageInfo;
|
|
14723
|
+
};
|
|
14724
|
+
export declare type ConfluenceRedactionMetadataEdge = {
|
|
14725
|
+
__typename?: 'ConfluenceRedactionMetadataEdge';
|
|
14726
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14727
|
+
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
14728
|
+
};
|
|
14607
14729
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
14608
14730
|
id: Scalars['ID']['input'];
|
|
14609
14731
|
};
|
|
@@ -14829,6 +14951,15 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
14829
14951
|
errors?: Maybe<Array<MutationError>>;
|
|
14830
14952
|
success: Scalars['Boolean']['output'];
|
|
14831
14953
|
};
|
|
14954
|
+
export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
|
|
14955
|
+
subCalendarId: Scalars['ID']['input'];
|
|
14956
|
+
};
|
|
14957
|
+
export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
14958
|
+
__typename?: 'ConfluenceUpdateSubCalendarHiddenEventsPayload';
|
|
14959
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
14960
|
+
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14961
|
+
success: Scalars['Boolean']['output'];
|
|
14962
|
+
};
|
|
14832
14963
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14833
14964
|
blogPostId: Scalars['ID']['input'];
|
|
14834
14965
|
key: Scalars['String']['input'];
|
|
@@ -15679,7 +15810,9 @@ export declare type Content = {
|
|
|
15679
15810
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
15680
15811
|
contentState?: Maybe<ContentState>;
|
|
15681
15812
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
15813
|
+
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15682
15814
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
15815
|
+
currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15683
15816
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
15684
15817
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
15685
15818
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -15708,6 +15841,8 @@ export declare type Content = {
|
|
|
15708
15841
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15709
15842
|
outgoingLinks?: Maybe<OutgoingLinks>;
|
|
15710
15843
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
15844
|
+
redactionMetadata?: Maybe<ConfluenceRedactionMetadataConnection>;
|
|
15845
|
+
redactionMetadataCount?: Maybe<Scalars['Int']['output']>;
|
|
15711
15846
|
referenceId?: Maybe<Scalars['String']['output']>;
|
|
15712
15847
|
restrictions?: Maybe<ContentRestrictions>;
|
|
15713
15848
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -15799,6 +15934,10 @@ export declare type ContentPropertiesArgs = {
|
|
|
15799
15934
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15800
15935
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
15801
15936
|
};
|
|
15937
|
+
export declare type ContentRedactionMetadataArgs = {
|
|
15938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15939
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15940
|
+
};
|
|
15802
15941
|
export declare enum ContentAccessInputType {
|
|
15803
15942
|
EveryoneCanEdit = "EVERYONE_CAN_EDIT",
|
|
15804
15943
|
EveryoneCanView = "EVERYONE_CAN_VIEW",
|
|
@@ -15826,6 +15965,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
15826
15965
|
};
|
|
15827
15966
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
15828
15967
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
15968
|
+
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
15829
15969
|
lastVersionViewed: Scalars['Int']['output'];
|
|
15830
15970
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
15831
15971
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -17702,6 +17842,17 @@ export declare type CreateAppResponse = Payload & {
|
|
|
17702
17842
|
errors?: Maybe<Array<MutationError>>;
|
|
17703
17843
|
success: Scalars['Boolean']['output'];
|
|
17704
17844
|
};
|
|
17845
|
+
export declare type CreateAppRolloutInput = {
|
|
17846
|
+
appId: Scalars['ID']['input'];
|
|
17847
|
+
fromVersionId: Scalars['ID']['input'];
|
|
17848
|
+
toVersionId: Scalars['ID']['input'];
|
|
17849
|
+
};
|
|
17850
|
+
export declare type CreateAppRolloutPayload = Payload & {
|
|
17851
|
+
__typename?: 'CreateAppRolloutPayload';
|
|
17852
|
+
appRollout?: Maybe<AppRollout>;
|
|
17853
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17854
|
+
success: Scalars['Boolean']['output'];
|
|
17855
|
+
};
|
|
17705
17856
|
export declare type CreateAppTunnelResponse = Payload & {
|
|
17706
17857
|
__typename?: 'CreateAppTunnelResponse';
|
|
17707
17858
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19867,6 +20018,12 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
19867
20018
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
19868
20019
|
workspaceId: Scalars['ID']['input'];
|
|
19869
20020
|
};
|
|
20021
|
+
export declare type DevAiAutodevContinueJobWithPromptPayload = Payload & {
|
|
20022
|
+
__typename?: 'DevAiAutodevContinueJobWithPromptPayload';
|
|
20023
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20024
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
20025
|
+
success: Scalars['Boolean']['output'];
|
|
20026
|
+
};
|
|
19870
20027
|
export declare type DevAiAutodevLog = {
|
|
19871
20028
|
id: Scalars['ID']['output'];
|
|
19872
20029
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
@@ -20094,6 +20251,12 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
20094
20251
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
20095
20252
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20096
20253
|
};
|
|
20254
|
+
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
20255
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
20256
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20257
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
20258
|
+
success: Scalars['Boolean']['output'];
|
|
20259
|
+
};
|
|
20097
20260
|
export declare enum DevAiIssueScopingLabel {
|
|
20098
20261
|
Complex = "COMPLEX",
|
|
20099
20262
|
InScope = "IN_SCOPE",
|
|
@@ -20108,6 +20271,7 @@ export declare type DevAiIssueScopingResult = {
|
|
|
20108
20271
|
isAddingCodingTermsSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
20109
20272
|
issueId: Scalars['ID']['output'];
|
|
20110
20273
|
label?: Maybe<DevAiIssueScopingLabel>;
|
|
20274
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20111
20275
|
};
|
|
20112
20276
|
export declare type DevAiMutations = {
|
|
20113
20277
|
__typename?: 'DevAiMutations';
|
|
@@ -20158,6 +20322,22 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
20158
20322
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
20159
20323
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
20160
20324
|
};
|
|
20325
|
+
export declare type DevAiRovoAgent = {
|
|
20326
|
+
__typename?: 'DevAiRovoAgent';
|
|
20327
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20328
|
+
id: Scalars['ID']['output'];
|
|
20329
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20330
|
+
};
|
|
20331
|
+
export declare type DevAiRovoAgentConnection = {
|
|
20332
|
+
__typename?: 'DevAiRovoAgentConnection';
|
|
20333
|
+
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
20334
|
+
pageInfo: PageInfo;
|
|
20335
|
+
};
|
|
20336
|
+
export declare type DevAiRovoAgentEdge = {
|
|
20337
|
+
__typename?: 'DevAiRovoAgentEdge';
|
|
20338
|
+
cursor: Scalars['String']['output'];
|
|
20339
|
+
node?: Maybe<DevAiRovoAgent>;
|
|
20340
|
+
};
|
|
20161
20341
|
export declare type DevAiRunAutofixScanInput = {
|
|
20162
20342
|
repoUrl: Scalars['URL']['input'];
|
|
20163
20343
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -21877,6 +22057,10 @@ export declare type EarliestViewViewedForUser = {
|
|
|
21877
22057
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
21878
22058
|
};
|
|
21879
22059
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
22060
|
+
export declare enum EcosystemAppInstallationConfigIdType {
|
|
22061
|
+
Cloud = "CLOUD",
|
|
22062
|
+
Installation = "INSTALLATION"
|
|
22063
|
+
}
|
|
21880
22064
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
21881
22065
|
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
21882
22066
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -21996,6 +22180,9 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
21996
22180
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
21997
22181
|
id: Scalars['ID']['output'];
|
|
21998
22182
|
};
|
|
22183
|
+
export declare enum EcosystemInstallationOverrideKeys {
|
|
22184
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
22185
|
+
}
|
|
21999
22186
|
export declare enum EcosystemInstallationRecoveryMode {
|
|
22000
22187
|
FreshInstall = "FRESH_INSTALL",
|
|
22001
22188
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
@@ -22007,7 +22194,9 @@ export declare type EcosystemMutation = {
|
|
|
22007
22194
|
__typename?: 'EcosystemMutation';
|
|
22008
22195
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
22009
22196
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
22197
|
+
cancelAppRollout?: Maybe<CancelAppRolloutPayload>;
|
|
22010
22198
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
22199
|
+
createAppRollout?: Maybe<CreateAppRolloutPayload>;
|
|
22011
22200
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
22012
22201
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
22013
22202
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -22026,9 +22215,15 @@ export declare type EcosystemMutationAddAppContributorArgs = {
|
|
|
22026
22215
|
export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
22027
22216
|
input: AddMultipleAppContributorInput;
|
|
22028
22217
|
};
|
|
22218
|
+
export declare type EcosystemMutationCancelAppRolloutArgs = {
|
|
22219
|
+
input: CancelAppRolloutInput;
|
|
22220
|
+
};
|
|
22029
22221
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
22030
22222
|
input: CreateAppEnvironmentInput;
|
|
22031
22223
|
};
|
|
22224
|
+
export declare type EcosystemMutationCreateAppRolloutArgs = {
|
|
22225
|
+
input: CreateAppRolloutInput;
|
|
22226
|
+
};
|
|
22032
22227
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
22033
22228
|
input: DeleteAppEnvironmentInput;
|
|
22034
22229
|
};
|
|
@@ -22088,6 +22283,7 @@ export declare type EcosystemQuery = {
|
|
|
22088
22283
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
22089
22284
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
22090
22285
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
22286
|
+
appRollout?: Maybe<AppRollout>;
|
|
22091
22287
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
22092
22288
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
22093
22289
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -22123,6 +22319,9 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
|
22123
22319
|
export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
|
|
22124
22320
|
appIds: Array<Scalars['ID']['input']>;
|
|
22125
22321
|
};
|
|
22322
|
+
export declare type EcosystemQueryAppRolloutArgs = {
|
|
22323
|
+
id: Scalars['ID']['input'];
|
|
22324
|
+
};
|
|
22126
22325
|
export declare type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
22127
22326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22128
22327
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22529,7 +22728,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22529
22728
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22530
22729
|
node?: Maybe<ExternalAssociation>;
|
|
22531
22730
|
};
|
|
22532
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22731
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22533
22732
|
export declare type ExternalAttachment = {
|
|
22534
22733
|
__typename?: 'ExternalAttachment';
|
|
22535
22734
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -22675,6 +22874,29 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
22675
22874
|
__typename?: 'ExternalCollaboratorFeature';
|
|
22676
22875
|
isEntitled: Scalars['Boolean']['output'];
|
|
22677
22876
|
};
|
|
22877
|
+
export declare type ExternalComment = Node & {
|
|
22878
|
+
__typename?: 'ExternalComment';
|
|
22879
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
22880
|
+
container?: Maybe<ExternalEntity>;
|
|
22881
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
22882
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
22883
|
+
createdBy?: Maybe<ExternalUser>;
|
|
22884
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
22885
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
22886
|
+
id: Scalars['ID']['output'];
|
|
22887
|
+
largeText?: Maybe<ExternalLargeContent>;
|
|
22888
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
22889
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
22890
|
+
parent?: Maybe<ExternalEntity>;
|
|
22891
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
22892
|
+
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
22893
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22894
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
22895
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22896
|
+
};
|
|
22897
|
+
export declare enum ExternalCommentReactionType {
|
|
22898
|
+
Like = "LIKE"
|
|
22899
|
+
}
|
|
22678
22900
|
export declare type ExternalCommit = Node & {
|
|
22679
22901
|
__typename?: 'ExternalCommit';
|
|
22680
22902
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -22858,6 +23080,7 @@ export declare type ExternalEntities = {
|
|
|
22858
23080
|
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
22859
23081
|
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
22860
23082
|
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
23083
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
22861
23084
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
22862
23085
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
22863
23086
|
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
@@ -22876,7 +23099,7 @@ export declare type ExternalEntities = {
|
|
|
22876
23099
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
22877
23100
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
22878
23101
|
};
|
|
22879
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23102
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
22880
23103
|
export declare type ExternalEnvironment = {
|
|
22881
23104
|
__typename?: 'ExternalEnvironment';
|
|
22882
23105
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23087,6 +23310,11 @@ export declare enum ExternalPullRequestStatus {
|
|
|
23087
23310
|
Open = "OPEN",
|
|
23088
23311
|
Unknown = "UNKNOWN"
|
|
23089
23312
|
}
|
|
23313
|
+
export declare type ExternalReactions = {
|
|
23314
|
+
__typename?: 'ExternalReactions';
|
|
23315
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
23316
|
+
type?: Maybe<ExternalCommentReactionType>;
|
|
23317
|
+
};
|
|
23090
23318
|
export declare type ExternalRemoteLink = Node & {
|
|
23091
23319
|
__typename?: 'ExternalRemoteLink';
|
|
23092
23320
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -28292,6 +28520,19 @@ export declare type GraphStore = {
|
|
|
28292
28520
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28293
28521
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28294
28522
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
28523
|
+
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
28524
|
+
confluencePageHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection>;
|
|
28525
|
+
confluencePageHasParentPage?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageConnection>;
|
|
28526
|
+
confluencePageHasParentPageInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection>;
|
|
28527
|
+
confluencePageSharedWithGroupInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection>;
|
|
28528
|
+
confluencePageSharedWithUser?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserConnection>;
|
|
28529
|
+
confluencePageSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection>;
|
|
28530
|
+
confluenceSpaceHasConfluenceBlogpost?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection>;
|
|
28531
|
+
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
28532
|
+
confluenceSpaceHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection>;
|
|
28533
|
+
confluenceSpaceHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection>;
|
|
28534
|
+
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
28535
|
+
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
28295
28536
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28296
28537
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28297
28538
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -28320,6 +28561,7 @@ export declare type GraphStore = {
|
|
|
28320
28561
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28321
28562
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28322
28563
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28564
|
+
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
28323
28565
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
28324
28566
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
28325
28567
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -28452,6 +28694,8 @@ export declare type GraphStore = {
|
|
|
28452
28694
|
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
28453
28695
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28454
28696
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28697
|
+
parentCommentHasChildComment?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentConnection>;
|
|
28698
|
+
parentCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection>;
|
|
28455
28699
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
28456
28700
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseConnection>;
|
|
28457
28701
|
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
@@ -28628,30 +28872,68 @@ export declare type GraphStore = {
|
|
|
28628
28872
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28629
28873
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28630
28874
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28875
|
+
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
28876
|
+
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
28631
28877
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28632
28878
|
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28633
28879
|
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
28634
28880
|
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
28635
28881
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28636
28882
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28883
|
+
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
28884
|
+
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
28885
|
+
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
28886
|
+
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
28887
|
+
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
28888
|
+
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
28889
|
+
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
28890
|
+
userContributedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection>;
|
|
28891
|
+
userContributedConfluencePage?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageConnection>;
|
|
28892
|
+
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
28893
|
+
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
28894
|
+
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
28637
28895
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
28638
28896
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
28897
|
+
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
28898
|
+
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
28639
28899
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28640
28900
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28901
|
+
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
28902
|
+
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
28641
28903
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28642
28904
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
28905
|
+
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
28906
|
+
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
28907
|
+
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
28908
|
+
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
28909
|
+
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
28910
|
+
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
28643
28911
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
28644
28912
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
28645
28913
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
28646
28914
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
28915
|
+
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
28916
|
+
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
28647
28917
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
28648
28918
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
28919
|
+
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
28920
|
+
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
28921
|
+
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
28922
|
+
userFavoritedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection>;
|
|
28923
|
+
userFavoritedConfluencePage?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageConnection>;
|
|
28924
|
+
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28925
|
+
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
28926
|
+
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
28649
28927
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28650
28928
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28651
28929
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28652
28930
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28653
28931
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28654
28932
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28933
|
+
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
28934
|
+
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
28935
|
+
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
28936
|
+
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
28655
28937
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28656
28938
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28657
28939
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
@@ -28660,6 +28942,8 @@ export declare type GraphStore = {
|
|
|
28660
28942
|
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
28661
28943
|
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
28662
28944
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
28945
|
+
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
28946
|
+
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
28663
28947
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
28664
28948
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
28665
28949
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -28672,12 +28956,20 @@ export declare type GraphStore = {
|
|
|
28672
28956
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28673
28957
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28674
28958
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28959
|
+
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28960
|
+
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28961
|
+
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28962
|
+
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28675
28963
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28676
28964
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28677
28965
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
28678
28966
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
28679
28967
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
28680
28968
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28969
|
+
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28970
|
+
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28971
|
+
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
28972
|
+
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
28681
28973
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28682
28974
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28683
28975
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28688,6 +28980,12 @@ export declare type GraphStore = {
|
|
|
28688
28980
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28689
28981
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28690
28982
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28983
|
+
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
28984
|
+
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
28985
|
+
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
28986
|
+
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
28987
|
+
userWatchesConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection>;
|
|
28988
|
+
userWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
28691
28989
|
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28692
28990
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28693
28991
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -29024,6 +29322,97 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
29024
29322
|
id: Scalars['ID']['input'];
|
|
29025
29323
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
29026
29324
|
};
|
|
29325
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseArgs = {
|
|
29326
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29327
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29329
|
+
id: Scalars['ID']['input'];
|
|
29330
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29331
|
+
};
|
|
29332
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseInverseArgs = {
|
|
29333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29334
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29335
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29336
|
+
id: Scalars['ID']['input'];
|
|
29337
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29338
|
+
};
|
|
29339
|
+
export declare type GraphStoreConfluencePageHasParentPageArgs = {
|
|
29340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29341
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29343
|
+
id: Scalars['ID']['input'];
|
|
29344
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29345
|
+
};
|
|
29346
|
+
export declare type GraphStoreConfluencePageHasParentPageInverseArgs = {
|
|
29347
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29348
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29349
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29350
|
+
id: Scalars['ID']['input'];
|
|
29351
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29352
|
+
};
|
|
29353
|
+
export declare type GraphStoreConfluencePageSharedWithGroupInverseArgs = {
|
|
29354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29355
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29357
|
+
id: Scalars['ID']['input'];
|
|
29358
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithGroupSortInput>;
|
|
29359
|
+
};
|
|
29360
|
+
export declare type GraphStoreConfluencePageSharedWithUserArgs = {
|
|
29361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29362
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29364
|
+
id: Scalars['ID']['input'];
|
|
29365
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29366
|
+
};
|
|
29367
|
+
export declare type GraphStoreConfluencePageSharedWithUserInverseArgs = {
|
|
29368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29369
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29371
|
+
id: Scalars['ID']['input'];
|
|
29372
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29373
|
+
};
|
|
29374
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostArgs = {
|
|
29375
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29376
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29377
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29378
|
+
id: Scalars['ID']['input'];
|
|
29379
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29380
|
+
};
|
|
29381
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostInverseArgs = {
|
|
29382
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29383
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29384
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29385
|
+
id: Scalars['ID']['input'];
|
|
29386
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29387
|
+
};
|
|
29388
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseArgs = {
|
|
29389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29390
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29392
|
+
id: Scalars['ID']['input'];
|
|
29393
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29394
|
+
};
|
|
29395
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseInverseArgs = {
|
|
29396
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29397
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29398
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29399
|
+
id: Scalars['ID']['input'];
|
|
29400
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29401
|
+
};
|
|
29402
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardArgs = {
|
|
29403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29406
|
+
id: Scalars['ID']['input'];
|
|
29407
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29408
|
+
};
|
|
29409
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardInverseArgs = {
|
|
29410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29413
|
+
id: Scalars['ID']['input'];
|
|
29414
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29415
|
+
};
|
|
29027
29416
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
29028
29417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29029
29418
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29204,6 +29593,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
29204
29593
|
ids: Array<Scalars['ID']['input']>;
|
|
29205
29594
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
29206
29595
|
};
|
|
29596
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
29597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29598
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29600
|
+
id: Scalars['ID']['input'];
|
|
29601
|
+
sort?: InputMaybe<GraphStoreGroupCanViewConfluenceSpaceSortInput>;
|
|
29602
|
+
};
|
|
29207
29603
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
29208
29604
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29209
29605
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30016,6 +30412,20 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
30016
30412
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30017
30413
|
id: Scalars['ID']['input'];
|
|
30018
30414
|
};
|
|
30415
|
+
export declare type GraphStoreParentCommentHasChildCommentArgs = {
|
|
30416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30417
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30418
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30419
|
+
id: Scalars['ID']['input'];
|
|
30420
|
+
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30421
|
+
};
|
|
30422
|
+
export declare type GraphStoreParentCommentHasChildCommentInverseArgs = {
|
|
30423
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30424
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30425
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30426
|
+
id: Scalars['ID']['input'];
|
|
30427
|
+
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30428
|
+
};
|
|
30019
30429
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
30020
30430
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30021
30431
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31155,6 +31565,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
31155
31565
|
id: Scalars['ID']['input'];
|
|
31156
31566
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31157
31567
|
};
|
|
31568
|
+
export declare type GraphStoreUserAssignedPirArgs = {
|
|
31569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31570
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31571
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31572
|
+
id: Scalars['ID']['input'];
|
|
31573
|
+
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
31574
|
+
};
|
|
31575
|
+
export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
31576
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31577
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31578
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31579
|
+
id: Scalars['ID']['input'];
|
|
31580
|
+
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
31581
|
+
};
|
|
31158
31582
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
31159
31583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31160
31584
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31197,6 +31621,90 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
31197
31621
|
id: Scalars['ID']['input'];
|
|
31198
31622
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
31199
31623
|
};
|
|
31624
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
31625
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31626
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31628
|
+
id: Scalars['ID']['input'];
|
|
31629
|
+
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31630
|
+
};
|
|
31631
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceInverseArgs = {
|
|
31632
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31633
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31634
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31635
|
+
id: Scalars['ID']['input'];
|
|
31636
|
+
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31637
|
+
};
|
|
31638
|
+
export declare type GraphStoreUserCollaboratedOnDocumentArgs = {
|
|
31639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31640
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31642
|
+
id: Scalars['ID']['input'];
|
|
31643
|
+
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31644
|
+
};
|
|
31645
|
+
export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
31646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31647
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31648
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31649
|
+
id: Scalars['ID']['input'];
|
|
31650
|
+
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31651
|
+
};
|
|
31652
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
31653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31654
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31656
|
+
id: Scalars['ID']['input'];
|
|
31657
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31658
|
+
};
|
|
31659
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostInverseArgs = {
|
|
31660
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31661
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31663
|
+
id: Scalars['ID']['input'];
|
|
31664
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31665
|
+
};
|
|
31666
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseArgs = {
|
|
31667
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31668
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31670
|
+
id: Scalars['ID']['input'];
|
|
31671
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31672
|
+
};
|
|
31673
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseInverseArgs = {
|
|
31674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31677
|
+
id: Scalars['ID']['input'];
|
|
31678
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31679
|
+
};
|
|
31680
|
+
export declare type GraphStoreUserContributedConfluencePageArgs = {
|
|
31681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31682
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31684
|
+
id: Scalars['ID']['input'];
|
|
31685
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31686
|
+
};
|
|
31687
|
+
export declare type GraphStoreUserContributedConfluencePageInverseArgs = {
|
|
31688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31689
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31691
|
+
id: Scalars['ID']['input'];
|
|
31692
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31693
|
+
};
|
|
31694
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardArgs = {
|
|
31695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31698
|
+
id: Scalars['ID']['input'];
|
|
31699
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31700
|
+
};
|
|
31701
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
31702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31703
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31705
|
+
id: Scalars['ID']['input'];
|
|
31706
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31707
|
+
};
|
|
31200
31708
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
31201
31709
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31202
31710
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31211,6 +31719,20 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
31211
31719
|
id: Scalars['ID']['input'];
|
|
31212
31720
|
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31213
31721
|
};
|
|
31722
|
+
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
31723
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31724
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31726
|
+
id: Scalars['ID']['input'];
|
|
31727
|
+
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31728
|
+
};
|
|
31729
|
+
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
31730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31731
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31733
|
+
id: Scalars['ID']['input'];
|
|
31734
|
+
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31735
|
+
};
|
|
31214
31736
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
31215
31737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31216
31738
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31225,6 +31747,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
31225
31747
|
id: Scalars['ID']['input'];
|
|
31226
31748
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
31227
31749
|
};
|
|
31750
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
31751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31754
|
+
id: Scalars['ID']['input'];
|
|
31755
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31756
|
+
};
|
|
31757
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseInverseArgs = {
|
|
31758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31759
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31761
|
+
id: Scalars['ID']['input'];
|
|
31762
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31763
|
+
};
|
|
31228
31764
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
31229
31765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31230
31766
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31239,6 +31775,48 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31239
31775
|
id: Scalars['ID']['input'];
|
|
31240
31776
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31241
31777
|
};
|
|
31778
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
31779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31780
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31782
|
+
id: Scalars['ID']['input'];
|
|
31783
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31784
|
+
};
|
|
31785
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardInverseArgs = {
|
|
31786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31787
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31789
|
+
id: Scalars['ID']['input'];
|
|
31790
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31791
|
+
};
|
|
31792
|
+
export declare type GraphStoreUserCreatedDesignArgs = {
|
|
31793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31794
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31796
|
+
id: Scalars['ID']['input'];
|
|
31797
|
+
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31798
|
+
};
|
|
31799
|
+
export declare type GraphStoreUserCreatedDesignInverseArgs = {
|
|
31800
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31801
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31803
|
+
id: Scalars['ID']['input'];
|
|
31804
|
+
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31805
|
+
};
|
|
31806
|
+
export declare type GraphStoreUserCreatedDocumentArgs = {
|
|
31807
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31808
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31809
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31810
|
+
id: Scalars['ID']['input'];
|
|
31811
|
+
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31812
|
+
};
|
|
31813
|
+
export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
31814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31815
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31817
|
+
id: Scalars['ID']['input'];
|
|
31818
|
+
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31819
|
+
};
|
|
31242
31820
|
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
31243
31821
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31244
31822
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31267,6 +31845,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
31267
31845
|
id: Scalars['ID']['input'];
|
|
31268
31846
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31269
31847
|
};
|
|
31848
|
+
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
31849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31850
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31852
|
+
id: Scalars['ID']['input'];
|
|
31853
|
+
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31854
|
+
};
|
|
31855
|
+
export declare type GraphStoreUserCreatedRemoteLinkInverseArgs = {
|
|
31856
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31857
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31858
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31859
|
+
id: Scalars['ID']['input'];
|
|
31860
|
+
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31861
|
+
};
|
|
31270
31862
|
export declare type GraphStoreUserCreatedRepositoryArgs = {
|
|
31271
31863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31272
31864
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31281,6 +31873,62 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
31281
31873
|
id: Scalars['ID']['input'];
|
|
31282
31874
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31283
31875
|
};
|
|
31876
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
31877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31880
|
+
id: Scalars['ID']['input'];
|
|
31881
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31882
|
+
};
|
|
31883
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostInverseArgs = {
|
|
31884
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31885
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31886
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31887
|
+
id: Scalars['ID']['input'];
|
|
31888
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31889
|
+
};
|
|
31890
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseArgs = {
|
|
31891
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31892
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31894
|
+
id: Scalars['ID']['input'];
|
|
31895
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31896
|
+
};
|
|
31897
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseInverseArgs = {
|
|
31898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31899
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31901
|
+
id: Scalars['ID']['input'];
|
|
31902
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31903
|
+
};
|
|
31904
|
+
export declare type GraphStoreUserFavoritedConfluencePageArgs = {
|
|
31905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31908
|
+
id: Scalars['ID']['input'];
|
|
31909
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31910
|
+
};
|
|
31911
|
+
export declare type GraphStoreUserFavoritedConfluencePageInverseArgs = {
|
|
31912
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31913
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31914
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31915
|
+
id: Scalars['ID']['input'];
|
|
31916
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31917
|
+
};
|
|
31918
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardArgs = {
|
|
31919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31920
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31921
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31922
|
+
id: Scalars['ID']['input'];
|
|
31923
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31924
|
+
};
|
|
31925
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
31926
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31927
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31929
|
+
id: Scalars['ID']['input'];
|
|
31930
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31931
|
+
};
|
|
31284
31932
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31285
31933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31286
31934
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31323,6 +31971,34 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31323
31971
|
id: Scalars['ID']['input'];
|
|
31324
31972
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31325
31973
|
};
|
|
31974
|
+
export declare type GraphStoreUserLastUpdatedDesignArgs = {
|
|
31975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31976
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31978
|
+
id: Scalars['ID']['input'];
|
|
31979
|
+
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31980
|
+
};
|
|
31981
|
+
export declare type GraphStoreUserLastUpdatedDesignInverseArgs = {
|
|
31982
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31983
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31985
|
+
id: Scalars['ID']['input'];
|
|
31986
|
+
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31987
|
+
};
|
|
31988
|
+
export declare type GraphStoreUserLaunchedReleaseArgs = {
|
|
31989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31990
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31992
|
+
id: Scalars['ID']['input'];
|
|
31993
|
+
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
31994
|
+
};
|
|
31995
|
+
export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
31996
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31997
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31999
|
+
id: Scalars['ID']['input'];
|
|
32000
|
+
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
32001
|
+
};
|
|
31326
32002
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31327
32003
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31328
32004
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31379,6 +32055,20 @@ export declare type GraphStoreUserOwnedCalendarEventInverseArgs = {
|
|
|
31379
32055
|
id: Scalars['ID']['input'];
|
|
31380
32056
|
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31381
32057
|
};
|
|
32058
|
+
export declare type GraphStoreUserOwnedDocumentArgs = {
|
|
32059
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32060
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32061
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32062
|
+
id: Scalars['ID']['input'];
|
|
32063
|
+
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
32064
|
+
};
|
|
32065
|
+
export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
32066
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32067
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32068
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32069
|
+
id: Scalars['ID']['input'];
|
|
32070
|
+
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
32071
|
+
};
|
|
31382
32072
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
31383
32073
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31384
32074
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31463,6 +32153,34 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
31463
32153
|
id: Scalars['ID']['input'];
|
|
31464
32154
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
31465
32155
|
};
|
|
32156
|
+
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
32157
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32158
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32159
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32160
|
+
id: Scalars['ID']['input'];
|
|
32161
|
+
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
32162
|
+
};
|
|
32163
|
+
export declare type GraphStoreUserTaggedInCommentInverseArgs = {
|
|
32164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32165
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32166
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32167
|
+
id: Scalars['ID']['input'];
|
|
32168
|
+
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
32169
|
+
};
|
|
32170
|
+
export declare type GraphStoreUserTaggedInConfluencePageArgs = {
|
|
32171
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32172
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32174
|
+
id: Scalars['ID']['input'];
|
|
32175
|
+
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32176
|
+
};
|
|
32177
|
+
export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
32178
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32179
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32181
|
+
id: Scalars['ID']['input'];
|
|
32182
|
+
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32183
|
+
};
|
|
31466
32184
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
31467
32185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31468
32186
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31505,6 +32223,34 @@ export declare type GraphStoreUserUpdatedConfluencePageInverseArgs = {
|
|
|
31505
32223
|
id: Scalars['ID']['input'];
|
|
31506
32224
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluencePageSortInput>;
|
|
31507
32225
|
};
|
|
32226
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceArgs = {
|
|
32227
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32228
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32229
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32230
|
+
id: Scalars['ID']['input'];
|
|
32231
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
32232
|
+
};
|
|
32233
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceInverseArgs = {
|
|
32234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32235
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32236
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32237
|
+
id: Scalars['ID']['input'];
|
|
32238
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
32239
|
+
};
|
|
32240
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardArgs = {
|
|
32241
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32242
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32244
|
+
id: Scalars['ID']['input'];
|
|
32245
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32246
|
+
};
|
|
32247
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
32248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32249
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32251
|
+
id: Scalars['ID']['input'];
|
|
32252
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32253
|
+
};
|
|
31508
32254
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31509
32255
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31510
32256
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31575,6 +32321,48 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
31575
32321
|
id: Scalars['ID']['input'];
|
|
31576
32322
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31577
32323
|
};
|
|
32324
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
32325
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32326
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32327
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32328
|
+
id: Scalars['ID']['input'];
|
|
32329
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
32330
|
+
};
|
|
32331
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostInverseArgs = {
|
|
32332
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32333
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32334
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32335
|
+
id: Scalars['ID']['input'];
|
|
32336
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
32337
|
+
};
|
|
32338
|
+
export declare type GraphStoreUserWatchesConfluencePageArgs = {
|
|
32339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32340
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32341
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32342
|
+
id: Scalars['ID']['input'];
|
|
32343
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
32344
|
+
};
|
|
32345
|
+
export declare type GraphStoreUserWatchesConfluencePageInverseArgs = {
|
|
32346
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32347
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32348
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32349
|
+
id: Scalars['ID']['input'];
|
|
32350
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
32351
|
+
};
|
|
32352
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardArgs = {
|
|
32353
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32354
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32356
|
+
id: Scalars['ID']['input'];
|
|
32357
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32358
|
+
};
|
|
32359
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardInverseArgs = {
|
|
32360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32361
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32363
|
+
id: Scalars['ID']['input'];
|
|
32364
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32365
|
+
};
|
|
31578
32366
|
export declare type GraphStoreVersionAssociatedBranchArgs = {
|
|
31579
32367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31580
32368
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32110,7 +32898,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
|
32110
32898
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
32111
32899
|
id: Scalars['ID']['output'];
|
|
32112
32900
|
};
|
|
32113
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue |
|
|
32901
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
32114
32902
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
32115
32903
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
32116
32904
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -32604,6 +33392,27 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
32604
33392
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
32605
33393
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32606
33394
|
};
|
|
33395
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseSortInput = {
|
|
33396
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33397
|
+
};
|
|
33398
|
+
export declare type GraphStoreConfluencePageHasParentPageSortInput = {
|
|
33399
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33400
|
+
};
|
|
33401
|
+
export declare type GraphStoreConfluencePageSharedWithGroupSortInput = {
|
|
33402
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33403
|
+
};
|
|
33404
|
+
export declare type GraphStoreConfluencePageSharedWithUserSortInput = {
|
|
33405
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33406
|
+
};
|
|
33407
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput = {
|
|
33408
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33409
|
+
};
|
|
33410
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput = {
|
|
33411
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33412
|
+
};
|
|
33413
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
33414
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33415
|
+
};
|
|
32607
33416
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
32608
33417
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32609
33418
|
};
|
|
@@ -33010,7 +33819,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
33010
33819
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
33011
33820
|
id: Scalars['ID']['output'];
|
|
33012
33821
|
};
|
|
33013
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea |
|
|
33822
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33014
33823
|
export declare type GraphStoreCypherQueryNode = {
|
|
33015
33824
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
33016
33825
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -33021,7 +33830,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
33021
33830
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33022
33831
|
id: Scalars['ID']['output'];
|
|
33023
33832
|
};
|
|
33024
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea |
|
|
33833
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33025
33834
|
export declare type GraphStoreDateFilterInput = {
|
|
33026
33835
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33027
33836
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -36771,6 +37580,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
36771
37580
|
Sca = "SCA",
|
|
36772
37581
|
Unknown = "UNKNOWN"
|
|
36773
37582
|
}
|
|
37583
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
37584
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37585
|
+
};
|
|
36774
37586
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
|
|
36775
37587
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36776
37588
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37212,6 +38024,9 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentSortInput = {
|
|
|
37212
38024
|
export declare type GraphStoreOperationsContainerImprovedByActionItemSortInput = {
|
|
37213
38025
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37214
38026
|
};
|
|
38027
|
+
export declare type GraphStoreParentCommentHasChildCommentSortInput = {
|
|
38028
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38029
|
+
};
|
|
37215
38030
|
export declare type GraphStoreParentDocumentHasChildDocumentSortInput = {
|
|
37216
38031
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37217
38032
|
};
|
|
@@ -38172,6 +38987,188 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
38172
38987
|
};
|
|
38173
38988
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
38174
38989
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
38990
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
38991
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection';
|
|
38992
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge>>>;
|
|
38993
|
+
pageInfo: PageInfo;
|
|
38994
|
+
};
|
|
38995
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge = {
|
|
38996
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge';
|
|
38997
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38998
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38999
|
+
id: Scalars['ID']['output'];
|
|
39000
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39001
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion>;
|
|
39002
|
+
};
|
|
39003
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
39004
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection';
|
|
39005
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge>>>;
|
|
39006
|
+
pageInfo: PageInfo;
|
|
39007
|
+
};
|
|
39008
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge = {
|
|
39009
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge';
|
|
39010
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39011
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39012
|
+
id: Scalars['ID']['output'];
|
|
39013
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39014
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion>;
|
|
39015
|
+
};
|
|
39016
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion = ConfluencePage;
|
|
39017
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
39018
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageConnection = HasPageInfo & {
|
|
39019
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageConnection';
|
|
39020
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageEdge>>>;
|
|
39021
|
+
pageInfo: PageInfo;
|
|
39022
|
+
};
|
|
39023
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageEdge = {
|
|
39024
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageEdge';
|
|
39025
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39026
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39027
|
+
id: Scalars['ID']['output'];
|
|
39028
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39029
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageUnion>;
|
|
39030
|
+
};
|
|
39031
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection = HasPageInfo & {
|
|
39032
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection';
|
|
39033
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge>>>;
|
|
39034
|
+
pageInfo: PageInfo;
|
|
39035
|
+
};
|
|
39036
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge = {
|
|
39037
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge';
|
|
39038
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39039
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39040
|
+
id: Scalars['ID']['output'];
|
|
39041
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39042
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion>;
|
|
39043
|
+
};
|
|
39044
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion = ConfluencePage;
|
|
39045
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageUnion = ConfluencePage;
|
|
39046
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection = HasPageInfo & {
|
|
39047
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection';
|
|
39048
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge>>>;
|
|
39049
|
+
pageInfo: PageInfo;
|
|
39050
|
+
};
|
|
39051
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge = {
|
|
39052
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge';
|
|
39053
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39054
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39055
|
+
id: Scalars['ID']['output'];
|
|
39056
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39057
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion>;
|
|
39058
|
+
};
|
|
39059
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion = ConfluencePage;
|
|
39060
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserConnection = HasPageInfo & {
|
|
39061
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserConnection';
|
|
39062
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserEdge>>>;
|
|
39063
|
+
pageInfo: PageInfo;
|
|
39064
|
+
};
|
|
39065
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserEdge = {
|
|
39066
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserEdge';
|
|
39067
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39068
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39069
|
+
id: Scalars['ID']['output'];
|
|
39070
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39071
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserUnion>;
|
|
39072
|
+
};
|
|
39073
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection = HasPageInfo & {
|
|
39074
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection';
|
|
39075
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge>>>;
|
|
39076
|
+
pageInfo: PageInfo;
|
|
39077
|
+
};
|
|
39078
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge = {
|
|
39079
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge';
|
|
39080
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39081
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39082
|
+
id: Scalars['ID']['output'];
|
|
39083
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39084
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion>;
|
|
39085
|
+
};
|
|
39086
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion = ConfluencePage;
|
|
39087
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39088
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection = HasPageInfo & {
|
|
39089
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection';
|
|
39090
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge>>>;
|
|
39091
|
+
pageInfo: PageInfo;
|
|
39092
|
+
};
|
|
39093
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge = {
|
|
39094
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge';
|
|
39095
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39096
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39097
|
+
id: Scalars['ID']['output'];
|
|
39098
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39099
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion>;
|
|
39100
|
+
};
|
|
39101
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
39102
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection';
|
|
39103
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge>>>;
|
|
39104
|
+
pageInfo: PageInfo;
|
|
39105
|
+
};
|
|
39106
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge = {
|
|
39107
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge';
|
|
39108
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39109
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39110
|
+
id: Scalars['ID']['output'];
|
|
39111
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39112
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion>;
|
|
39113
|
+
};
|
|
39114
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion = ConfluenceSpace;
|
|
39115
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
39116
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
39117
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection';
|
|
39118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge>>>;
|
|
39119
|
+
pageInfo: PageInfo;
|
|
39120
|
+
};
|
|
39121
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge = {
|
|
39122
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge';
|
|
39123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39125
|
+
id: Scalars['ID']['output'];
|
|
39126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39127
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion>;
|
|
39128
|
+
};
|
|
39129
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
39130
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection';
|
|
39131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge>>>;
|
|
39132
|
+
pageInfo: PageInfo;
|
|
39133
|
+
};
|
|
39134
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge = {
|
|
39135
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge';
|
|
39136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39138
|
+
id: Scalars['ID']['output'];
|
|
39139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39140
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion>;
|
|
39141
|
+
};
|
|
39142
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion = ConfluenceSpace;
|
|
39143
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
39144
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection = HasPageInfo & {
|
|
39145
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection';
|
|
39146
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge>>>;
|
|
39147
|
+
pageInfo: PageInfo;
|
|
39148
|
+
};
|
|
39149
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge = {
|
|
39150
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge';
|
|
39151
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39152
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39153
|
+
id: Scalars['ID']['output'];
|
|
39154
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39155
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion>;
|
|
39156
|
+
};
|
|
39157
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
39158
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection';
|
|
39159
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge>>>;
|
|
39160
|
+
pageInfo: PageInfo;
|
|
39161
|
+
};
|
|
39162
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge = {
|
|
39163
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge';
|
|
39164
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39165
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39166
|
+
id: Scalars['ID']['output'];
|
|
39167
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39168
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion>;
|
|
39169
|
+
};
|
|
39170
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
39171
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
38175
39172
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
38176
39173
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
38177
39174
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -38367,7 +39364,21 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
38367
39364
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
38368
39365
|
};
|
|
38369
39366
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
38370
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue |
|
|
39367
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
39368
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
39369
|
+
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
39370
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
39371
|
+
pageInfo: PageInfo;
|
|
39372
|
+
};
|
|
39373
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge = {
|
|
39374
|
+
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge';
|
|
39375
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39376
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39377
|
+
id: Scalars['ID']['output'];
|
|
39378
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39379
|
+
node?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion>;
|
|
39380
|
+
};
|
|
39381
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
38371
39382
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
38372
39383
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
38373
39384
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -39272,6 +40283,34 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
39272
40283
|
};
|
|
39273
40284
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
39274
40285
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion = JiraIssue;
|
|
40286
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentConnection = HasPageInfo & {
|
|
40287
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentConnection';
|
|
40288
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentEdge>>>;
|
|
40289
|
+
pageInfo: PageInfo;
|
|
40290
|
+
};
|
|
40291
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentEdge = {
|
|
40292
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentEdge';
|
|
40293
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40294
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40295
|
+
id: Scalars['ID']['output'];
|
|
40296
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40297
|
+
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentUnion>;
|
|
40298
|
+
};
|
|
40299
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection = HasPageInfo & {
|
|
40300
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection';
|
|
40301
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge>>>;
|
|
40302
|
+
pageInfo: PageInfo;
|
|
40303
|
+
};
|
|
40304
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge = {
|
|
40305
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge';
|
|
40306
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40307
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40308
|
+
id: Scalars['ID']['output'];
|
|
40309
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40310
|
+
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion>;
|
|
40311
|
+
};
|
|
40312
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40313
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
39275
40314
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
39276
40315
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
39277
40316
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentEdge>>>;
|
|
@@ -40722,6 +41761,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
40722
41761
|
};
|
|
40723
41762
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40724
41763
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
41764
|
+
export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
|
|
41765
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
|
|
41766
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
|
|
41767
|
+
pageInfo: PageInfo;
|
|
41768
|
+
};
|
|
41769
|
+
export declare type GraphStoreSimplifiedUserAssignedPirEdge = {
|
|
41770
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirEdge';
|
|
41771
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41772
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41773
|
+
id: Scalars['ID']['output'];
|
|
41774
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41775
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedPirUnion>;
|
|
41776
|
+
};
|
|
41777
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseConnection = HasPageInfo & {
|
|
41778
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirInverseConnection';
|
|
41779
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirInverseEdge>>>;
|
|
41780
|
+
pageInfo: PageInfo;
|
|
41781
|
+
};
|
|
41782
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
41783
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirInverseEdge';
|
|
41784
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41785
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41786
|
+
id: Scalars['ID']['output'];
|
|
41787
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41788
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseUnion>;
|
|
41789
|
+
};
|
|
41790
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41791
|
+
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
40725
41792
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
40726
41793
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
40727
41794
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
@@ -40806,6 +41873,174 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
40806
41873
|
};
|
|
40807
41874
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40808
41875
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
41876
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
41877
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
41878
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
41879
|
+
pageInfo: PageInfo;
|
|
41880
|
+
};
|
|
41881
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge = {
|
|
41882
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge';
|
|
41883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41884
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41885
|
+
id: Scalars['ID']['output'];
|
|
41886
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41887
|
+
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion>;
|
|
41888
|
+
};
|
|
41889
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
41890
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection';
|
|
41891
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge>>>;
|
|
41892
|
+
pageInfo: PageInfo;
|
|
41893
|
+
};
|
|
41894
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge = {
|
|
41895
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge';
|
|
41896
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41897
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41898
|
+
id: Scalars['ID']['output'];
|
|
41899
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41900
|
+
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion>;
|
|
41901
|
+
};
|
|
41902
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41903
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
41904
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentConnection = HasPageInfo & {
|
|
41905
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentConnection';
|
|
41906
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentEdge>>>;
|
|
41907
|
+
pageInfo: PageInfo;
|
|
41908
|
+
};
|
|
41909
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentEdge = {
|
|
41910
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentEdge';
|
|
41911
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41912
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41913
|
+
id: Scalars['ID']['output'];
|
|
41914
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41915
|
+
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentUnion>;
|
|
41916
|
+
};
|
|
41917
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection = HasPageInfo & {
|
|
41918
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection';
|
|
41919
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge>>>;
|
|
41920
|
+
pageInfo: PageInfo;
|
|
41921
|
+
};
|
|
41922
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge = {
|
|
41923
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge';
|
|
41924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41926
|
+
id: Scalars['ID']['output'];
|
|
41927
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41928
|
+
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion>;
|
|
41929
|
+
};
|
|
41930
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41931
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41932
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41933
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
41934
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
41935
|
+
pageInfo: PageInfo;
|
|
41936
|
+
};
|
|
41937
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge = {
|
|
41938
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge';
|
|
41939
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41940
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41941
|
+
id: Scalars['ID']['output'];
|
|
41942
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41943
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion>;
|
|
41944
|
+
};
|
|
41945
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
41946
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection';
|
|
41947
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge>>>;
|
|
41948
|
+
pageInfo: PageInfo;
|
|
41949
|
+
};
|
|
41950
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge = {
|
|
41951
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge';
|
|
41952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41953
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41954
|
+
id: Scalars['ID']['output'];
|
|
41955
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41956
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion>;
|
|
41957
|
+
};
|
|
41958
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41959
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41960
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection = HasPageInfo & {
|
|
41961
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection';
|
|
41962
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge>>>;
|
|
41963
|
+
pageInfo: PageInfo;
|
|
41964
|
+
};
|
|
41965
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge = {
|
|
41966
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge';
|
|
41967
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41968
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41969
|
+
id: Scalars['ID']['output'];
|
|
41970
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41971
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion>;
|
|
41972
|
+
};
|
|
41973
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
41974
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection';
|
|
41975
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge>>>;
|
|
41976
|
+
pageInfo: PageInfo;
|
|
41977
|
+
};
|
|
41978
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge = {
|
|
41979
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge';
|
|
41980
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41981
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41982
|
+
id: Scalars['ID']['output'];
|
|
41983
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41984
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion>;
|
|
41985
|
+
};
|
|
41986
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41987
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41988
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageConnection = HasPageInfo & {
|
|
41989
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageConnection';
|
|
41990
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageEdge>>>;
|
|
41991
|
+
pageInfo: PageInfo;
|
|
41992
|
+
};
|
|
41993
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageEdge = {
|
|
41994
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageEdge';
|
|
41995
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41996
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41997
|
+
id: Scalars['ID']['output'];
|
|
41998
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41999
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageUnion>;
|
|
42000
|
+
};
|
|
42001
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseConnection = HasPageInfo & {
|
|
42002
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseConnection';
|
|
42003
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseEdge>>>;
|
|
42004
|
+
pageInfo: PageInfo;
|
|
42005
|
+
};
|
|
42006
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseEdge = {
|
|
42007
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseEdge';
|
|
42008
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42009
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42010
|
+
id: Scalars['ID']['output'];
|
|
42011
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42012
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseUnion>;
|
|
42013
|
+
};
|
|
42014
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42015
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageUnion = ConfluencePage;
|
|
42016
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42017
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection';
|
|
42018
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge>>>;
|
|
42019
|
+
pageInfo: PageInfo;
|
|
42020
|
+
};
|
|
42021
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge = {
|
|
42022
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge';
|
|
42023
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42024
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42025
|
+
id: Scalars['ID']['output'];
|
|
42026
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42027
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion>;
|
|
42028
|
+
};
|
|
42029
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42030
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection';
|
|
42031
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge>>>;
|
|
42032
|
+
pageInfo: PageInfo;
|
|
42033
|
+
};
|
|
42034
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge = {
|
|
42035
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge';
|
|
42036
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42037
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42038
|
+
id: Scalars['ID']['output'];
|
|
42039
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42040
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion>;
|
|
42041
|
+
};
|
|
42042
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42043
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
40809
42044
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
40810
42045
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
40811
42046
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -40834,6 +42069,34 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
40834
42069
|
};
|
|
40835
42070
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
40836
42071
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
42072
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
42073
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
42074
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
42075
|
+
pageInfo: PageInfo;
|
|
42076
|
+
};
|
|
42077
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
42078
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
42079
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42081
|
+
id: Scalars['ID']['output'];
|
|
42082
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42083
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
42084
|
+
};
|
|
42085
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
42086
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
42087
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
42088
|
+
pageInfo: PageInfo;
|
|
42089
|
+
};
|
|
42090
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
42091
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
42092
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42093
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42094
|
+
id: Scalars['ID']['output'];
|
|
42095
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42096
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion>;
|
|
42097
|
+
};
|
|
42098
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42099
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventUnion = ExternalCalendarEvent;
|
|
40837
42100
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40838
42101
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
40839
42102
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -40862,6 +42125,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
40862
42125
|
};
|
|
40863
42126
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40864
42127
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42128
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42129
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
42130
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge>>>;
|
|
42131
|
+
pageInfo: PageInfo;
|
|
42132
|
+
};
|
|
42133
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge = {
|
|
42134
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge';
|
|
42135
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42136
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42137
|
+
id: Scalars['ID']['output'];
|
|
42138
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42139
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion>;
|
|
42140
|
+
};
|
|
42141
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
42142
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection';
|
|
42143
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge>>>;
|
|
42144
|
+
pageInfo: PageInfo;
|
|
42145
|
+
};
|
|
42146
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge = {
|
|
42147
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge';
|
|
42148
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42149
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42150
|
+
id: Scalars['ID']['output'];
|
|
42151
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42152
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion>;
|
|
42153
|
+
};
|
|
42154
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42155
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
40865
42156
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
40866
42157
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
40867
42158
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -40890,6 +42181,90 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
40890
42181
|
};
|
|
40891
42182
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40892
42183
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
42184
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42185
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
42186
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge>>>;
|
|
42187
|
+
pageInfo: PageInfo;
|
|
42188
|
+
};
|
|
42189
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge = {
|
|
42190
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge';
|
|
42191
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42192
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42193
|
+
id: Scalars['ID']['output'];
|
|
42194
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42195
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion>;
|
|
42196
|
+
};
|
|
42197
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42198
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection';
|
|
42199
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge>>>;
|
|
42200
|
+
pageInfo: PageInfo;
|
|
42201
|
+
};
|
|
42202
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge = {
|
|
42203
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge';
|
|
42204
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42206
|
+
id: Scalars['ID']['output'];
|
|
42207
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42208
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion>;
|
|
42209
|
+
};
|
|
42210
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42211
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42212
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignConnection = HasPageInfo & {
|
|
42213
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignConnection';
|
|
42214
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignEdge>>>;
|
|
42215
|
+
pageInfo: PageInfo;
|
|
42216
|
+
};
|
|
42217
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignEdge = {
|
|
42218
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignEdge';
|
|
42219
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42220
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42221
|
+
id: Scalars['ID']['output'];
|
|
42222
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42223
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignUnion>;
|
|
42224
|
+
};
|
|
42225
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseConnection = HasPageInfo & {
|
|
42226
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseConnection';
|
|
42227
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignInverseEdge>>>;
|
|
42228
|
+
pageInfo: PageInfo;
|
|
42229
|
+
};
|
|
42230
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseEdge = {
|
|
42231
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseEdge';
|
|
42232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42234
|
+
id: Scalars['ID']['output'];
|
|
42235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42236
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseUnion>;
|
|
42237
|
+
};
|
|
42238
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42239
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42240
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentConnection = HasPageInfo & {
|
|
42241
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentConnection';
|
|
42242
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentEdge>>>;
|
|
42243
|
+
pageInfo: PageInfo;
|
|
42244
|
+
};
|
|
42245
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentEdge = {
|
|
42246
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentEdge';
|
|
42247
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42248
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42249
|
+
id: Scalars['ID']['output'];
|
|
42250
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42251
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentUnion>;
|
|
42252
|
+
};
|
|
42253
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseConnection = HasPageInfo & {
|
|
42254
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseConnection';
|
|
42255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseEdge>>>;
|
|
42256
|
+
pageInfo: PageInfo;
|
|
42257
|
+
};
|
|
42258
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
42259
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseEdge';
|
|
42260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42262
|
+
id: Scalars['ID']['output'];
|
|
42263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42264
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseUnion>;
|
|
42265
|
+
};
|
|
42266
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42267
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
40893
42268
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
40894
42269
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
40895
42270
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -40946,6 +42321,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
40946
42321
|
};
|
|
40947
42322
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
40948
42323
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
42324
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
42325
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
42326
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
42327
|
+
pageInfo: PageInfo;
|
|
42328
|
+
};
|
|
42329
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkEdge = {
|
|
42330
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkEdge';
|
|
42331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42333
|
+
id: Scalars['ID']['output'];
|
|
42334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42335
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkUnion>;
|
|
42336
|
+
};
|
|
42337
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42338
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection';
|
|
42339
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge>>>;
|
|
42340
|
+
pageInfo: PageInfo;
|
|
42341
|
+
};
|
|
42342
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge = {
|
|
42343
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge';
|
|
42344
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42345
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42346
|
+
id: Scalars['ID']['output'];
|
|
42347
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42348
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion>;
|
|
42349
|
+
};
|
|
42350
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42351
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkUnion = ExternalRemoteLink;
|
|
40949
42352
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryConnection = HasPageInfo & {
|
|
40950
42353
|
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryConnection';
|
|
40951
42354
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryEdge>>>;
|
|
@@ -40974,6 +42377,118 @@ export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
|
40974
42377
|
};
|
|
40975
42378
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
40976
42379
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
42380
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
42381
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
42382
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
42383
|
+
pageInfo: PageInfo;
|
|
42384
|
+
};
|
|
42385
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge = {
|
|
42386
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge';
|
|
42387
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42388
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42389
|
+
id: Scalars['ID']['output'];
|
|
42390
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42391
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion>;
|
|
42392
|
+
};
|
|
42393
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
42394
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection';
|
|
42395
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge>>>;
|
|
42396
|
+
pageInfo: PageInfo;
|
|
42397
|
+
};
|
|
42398
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge = {
|
|
42399
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge';
|
|
42400
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42401
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42402
|
+
id: Scalars['ID']['output'];
|
|
42403
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42404
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion>;
|
|
42405
|
+
};
|
|
42406
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42407
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42408
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42409
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection';
|
|
42410
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge>>>;
|
|
42411
|
+
pageInfo: PageInfo;
|
|
42412
|
+
};
|
|
42413
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge = {
|
|
42414
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge';
|
|
42415
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42416
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42417
|
+
id: Scalars['ID']['output'];
|
|
42418
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42419
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion>;
|
|
42420
|
+
};
|
|
42421
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
42422
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection';
|
|
42423
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge>>>;
|
|
42424
|
+
pageInfo: PageInfo;
|
|
42425
|
+
};
|
|
42426
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge = {
|
|
42427
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge';
|
|
42428
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42430
|
+
id: Scalars['ID']['output'];
|
|
42431
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42432
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion>;
|
|
42433
|
+
};
|
|
42434
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42435
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
42436
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageConnection = HasPageInfo & {
|
|
42437
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageConnection';
|
|
42438
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageEdge>>>;
|
|
42439
|
+
pageInfo: PageInfo;
|
|
42440
|
+
};
|
|
42441
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageEdge = {
|
|
42442
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageEdge';
|
|
42443
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42444
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42445
|
+
id: Scalars['ID']['output'];
|
|
42446
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42447
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageUnion>;
|
|
42448
|
+
};
|
|
42449
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection = HasPageInfo & {
|
|
42450
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection';
|
|
42451
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge>>>;
|
|
42452
|
+
pageInfo: PageInfo;
|
|
42453
|
+
};
|
|
42454
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge = {
|
|
42455
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge';
|
|
42456
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42457
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42458
|
+
id: Scalars['ID']['output'];
|
|
42459
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42460
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion>;
|
|
42461
|
+
};
|
|
42462
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42463
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageUnion = ConfluencePage;
|
|
42464
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42465
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection';
|
|
42466
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge>>>;
|
|
42467
|
+
pageInfo: PageInfo;
|
|
42468
|
+
};
|
|
42469
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge = {
|
|
42470
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge';
|
|
42471
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42472
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42473
|
+
id: Scalars['ID']['output'];
|
|
42474
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42475
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion>;
|
|
42476
|
+
};
|
|
42477
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42478
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection';
|
|
42479
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge>>>;
|
|
42480
|
+
pageInfo: PageInfo;
|
|
42481
|
+
};
|
|
42482
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge = {
|
|
42483
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge';
|
|
42484
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42485
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42486
|
+
id: Scalars['ID']['output'];
|
|
42487
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42488
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion>;
|
|
42489
|
+
};
|
|
42490
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42491
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
40977
42492
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
40978
42493
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
40979
42494
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -41062,6 +42577,62 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
41062
42577
|
};
|
|
41063
42578
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41064
42579
|
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
42580
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignConnection = HasPageInfo & {
|
|
42581
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignConnection';
|
|
42582
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignEdge>>>;
|
|
42583
|
+
pageInfo: PageInfo;
|
|
42584
|
+
};
|
|
42585
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignEdge = {
|
|
42586
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignEdge';
|
|
42587
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42588
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42589
|
+
id: Scalars['ID']['output'];
|
|
42590
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42591
|
+
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignUnion>;
|
|
42592
|
+
};
|
|
42593
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection = HasPageInfo & {
|
|
42594
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection';
|
|
42595
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge>>>;
|
|
42596
|
+
pageInfo: PageInfo;
|
|
42597
|
+
};
|
|
42598
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge = {
|
|
42599
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge';
|
|
42600
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42601
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42602
|
+
id: Scalars['ID']['output'];
|
|
42603
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42604
|
+
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion>;
|
|
42605
|
+
};
|
|
42606
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42607
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42608
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseConnection = HasPageInfo & {
|
|
42609
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseConnection';
|
|
42610
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLaunchedReleaseEdge>>>;
|
|
42611
|
+
pageInfo: PageInfo;
|
|
42612
|
+
};
|
|
42613
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseEdge = {
|
|
42614
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseEdge';
|
|
42615
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42616
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42617
|
+
id: Scalars['ID']['output'];
|
|
42618
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42619
|
+
node?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseUnion>;
|
|
42620
|
+
};
|
|
42621
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseConnection = HasPageInfo & {
|
|
42622
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseInverseConnection';
|
|
42623
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseEdge>>>;
|
|
42624
|
+
pageInfo: PageInfo;
|
|
42625
|
+
};
|
|
42626
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
42627
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseInverseEdge';
|
|
42628
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42629
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42630
|
+
id: Scalars['ID']['output'];
|
|
42631
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42632
|
+
node?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseUnion>;
|
|
42633
|
+
};
|
|
42634
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42635
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseUnion = JiraVersion;
|
|
41065
42636
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
41066
42637
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
41067
42638
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -41174,6 +42745,34 @@ export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge = {
|
|
|
41174
42745
|
};
|
|
41175
42746
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41176
42747
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventUnion = ExternalCalendarEvent;
|
|
42748
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentConnection = HasPageInfo & {
|
|
42749
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentConnection';
|
|
42750
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentEdge>>>;
|
|
42751
|
+
pageInfo: PageInfo;
|
|
42752
|
+
};
|
|
42753
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentEdge = {
|
|
42754
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentEdge';
|
|
42755
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42756
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42757
|
+
id: Scalars['ID']['output'];
|
|
42758
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42759
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentUnion>;
|
|
42760
|
+
};
|
|
42761
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseConnection = HasPageInfo & {
|
|
42762
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseConnection';
|
|
42763
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseEdge>>>;
|
|
42764
|
+
pageInfo: PageInfo;
|
|
42765
|
+
};
|
|
42766
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
42767
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseEdge';
|
|
42768
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42769
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42770
|
+
id: Scalars['ID']['output'];
|
|
42771
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42772
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseUnion>;
|
|
42773
|
+
};
|
|
42774
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42775
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41177
42776
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
41178
42777
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
41179
42778
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -41346,6 +42945,62 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
41346
42945
|
};
|
|
41347
42946
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41348
42947
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42948
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
42949
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
42950
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
42951
|
+
pageInfo: PageInfo;
|
|
42952
|
+
};
|
|
42953
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentEdge = {
|
|
42954
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentEdge';
|
|
42955
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42956
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42957
|
+
id: Scalars['ID']['output'];
|
|
42958
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42959
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentUnion>;
|
|
42960
|
+
};
|
|
42961
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseConnection = HasPageInfo & {
|
|
42962
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseConnection';
|
|
42963
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseEdge>>>;
|
|
42964
|
+
pageInfo: PageInfo;
|
|
42965
|
+
};
|
|
42966
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseEdge = {
|
|
42967
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseEdge';
|
|
42968
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42969
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42970
|
+
id: Scalars['ID']['output'];
|
|
42971
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42972
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseUnion>;
|
|
42973
|
+
};
|
|
42974
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42975
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
42976
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageConnection = HasPageInfo & {
|
|
42977
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageConnection';
|
|
42978
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageEdge>>>;
|
|
42979
|
+
pageInfo: PageInfo;
|
|
42980
|
+
};
|
|
42981
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageEdge = {
|
|
42982
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageEdge';
|
|
42983
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42984
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42985
|
+
id: Scalars['ID']['output'];
|
|
42986
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42987
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageUnion>;
|
|
42988
|
+
};
|
|
42989
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection = HasPageInfo & {
|
|
42990
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection';
|
|
42991
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge>>>;
|
|
42992
|
+
pageInfo: PageInfo;
|
|
42993
|
+
};
|
|
42994
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge = {
|
|
42995
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge';
|
|
42996
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42997
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42998
|
+
id: Scalars['ID']['output'];
|
|
42999
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43000
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion>;
|
|
43001
|
+
};
|
|
43002
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43003
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
41349
43004
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
41350
43005
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
41351
43006
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -41430,6 +43085,62 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseEdge = {
|
|
|
41430
43085
|
};
|
|
41431
43086
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41432
43087
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageUnion = ConfluencePage;
|
|
43088
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection = HasPageInfo & {
|
|
43089
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection';
|
|
43090
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge>>>;
|
|
43091
|
+
pageInfo: PageInfo;
|
|
43092
|
+
};
|
|
43093
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge = {
|
|
43094
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge';
|
|
43095
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43096
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43097
|
+
id: Scalars['ID']['output'];
|
|
43098
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43099
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion>;
|
|
43100
|
+
};
|
|
43101
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
43102
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection';
|
|
43103
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge>>>;
|
|
43104
|
+
pageInfo: PageInfo;
|
|
43105
|
+
};
|
|
43106
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge = {
|
|
43107
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge';
|
|
43108
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43109
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43110
|
+
id: Scalars['ID']['output'];
|
|
43111
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43112
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion>;
|
|
43113
|
+
};
|
|
43114
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43115
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
43116
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
43117
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection';
|
|
43118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge>>>;
|
|
43119
|
+
pageInfo: PageInfo;
|
|
43120
|
+
};
|
|
43121
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge = {
|
|
43122
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge';
|
|
43123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43125
|
+
id: Scalars['ID']['output'];
|
|
43126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43127
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion>;
|
|
43128
|
+
};
|
|
43129
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
43130
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection';
|
|
43131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge>>>;
|
|
43132
|
+
pageInfo: PageInfo;
|
|
43133
|
+
};
|
|
43134
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge = {
|
|
43135
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge';
|
|
43136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43138
|
+
id: Scalars['ID']['output'];
|
|
43139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43140
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion>;
|
|
43141
|
+
};
|
|
43142
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43143
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
41433
43144
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
41434
43145
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
41435
43146
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -41570,6 +43281,90 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
41570
43281
|
};
|
|
41571
43282
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41572
43283
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
43284
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
43285
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
43286
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
43287
|
+
pageInfo: PageInfo;
|
|
43288
|
+
};
|
|
43289
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge = {
|
|
43290
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge';
|
|
43291
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43292
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43293
|
+
id: Scalars['ID']['output'];
|
|
43294
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43295
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion>;
|
|
43296
|
+
};
|
|
43297
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
43298
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection';
|
|
43299
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge>>>;
|
|
43300
|
+
pageInfo: PageInfo;
|
|
43301
|
+
};
|
|
43302
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge = {
|
|
43303
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge';
|
|
43304
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43305
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43306
|
+
id: Scalars['ID']['output'];
|
|
43307
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43308
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion>;
|
|
43309
|
+
};
|
|
43310
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43311
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
43312
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageConnection = HasPageInfo & {
|
|
43313
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageConnection';
|
|
43314
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageEdge>>>;
|
|
43315
|
+
pageInfo: PageInfo;
|
|
43316
|
+
};
|
|
43317
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageEdge = {
|
|
43318
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageEdge';
|
|
43319
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43320
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43321
|
+
id: Scalars['ID']['output'];
|
|
43322
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43323
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageUnion>;
|
|
43324
|
+
};
|
|
43325
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection = HasPageInfo & {
|
|
43326
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection';
|
|
43327
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge>>>;
|
|
43328
|
+
pageInfo: PageInfo;
|
|
43329
|
+
};
|
|
43330
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge = {
|
|
43331
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge';
|
|
43332
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43333
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43334
|
+
id: Scalars['ID']['output'];
|
|
43335
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43336
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion>;
|
|
43337
|
+
};
|
|
43338
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43339
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageUnion = ConfluencePage;
|
|
43340
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection = HasPageInfo & {
|
|
43341
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection';
|
|
43342
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge>>>;
|
|
43343
|
+
pageInfo: PageInfo;
|
|
43344
|
+
};
|
|
43345
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge = {
|
|
43346
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge';
|
|
43347
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43348
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43349
|
+
id: Scalars['ID']['output'];
|
|
43350
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43351
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion>;
|
|
43352
|
+
};
|
|
43353
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
43354
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection';
|
|
43355
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge>>>;
|
|
43356
|
+
pageInfo: PageInfo;
|
|
43357
|
+
};
|
|
43358
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge = {
|
|
43359
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge';
|
|
43360
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43361
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43362
|
+
id: Scalars['ID']['output'];
|
|
43363
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43364
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion>;
|
|
43365
|
+
};
|
|
43366
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43367
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
41573
43368
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
41574
43369
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchConnection';
|
|
41575
43370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchEdge>>>;
|
|
@@ -42281,6 +44076,9 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
42281
44076
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
42282
44077
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42283
44078
|
};
|
|
44079
|
+
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
44080
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44081
|
+
};
|
|
42284
44082
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
42285
44083
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42286
44084
|
};
|
|
@@ -42290,24 +44088,72 @@ export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
|
42290
44088
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
42291
44089
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42292
44090
|
};
|
|
44091
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
44092
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44093
|
+
};
|
|
44094
|
+
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
44095
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44096
|
+
};
|
|
44097
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
44098
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44099
|
+
};
|
|
44100
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseSortInput = {
|
|
44101
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44102
|
+
};
|
|
44103
|
+
export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
44104
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44105
|
+
};
|
|
44106
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
44107
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44108
|
+
};
|
|
42293
44109
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
42294
44110
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42295
44111
|
};
|
|
44112
|
+
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
44113
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44114
|
+
};
|
|
42296
44115
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
42297
44116
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42298
44117
|
};
|
|
44118
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
44119
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44120
|
+
};
|
|
42299
44121
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
42300
44122
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42301
44123
|
};
|
|
44124
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardSortInput = {
|
|
44125
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44126
|
+
};
|
|
44127
|
+
export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
44128
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44129
|
+
};
|
|
44130
|
+
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
44131
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44132
|
+
};
|
|
42302
44133
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
42303
44134
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42304
44135
|
};
|
|
42305
44136
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
42306
44137
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42307
44138
|
};
|
|
44139
|
+
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
44140
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44141
|
+
};
|
|
42308
44142
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
42309
44143
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42310
44144
|
};
|
|
44145
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
44146
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44147
|
+
};
|
|
44148
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseSortInput = {
|
|
44149
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44150
|
+
};
|
|
44151
|
+
export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
44152
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44153
|
+
};
|
|
44154
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
44155
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44156
|
+
};
|
|
42311
44157
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
42312
44158
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42313
44159
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -42320,6 +44166,12 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
42320
44166
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
42321
44167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42322
44168
|
};
|
|
44169
|
+
export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
44170
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44171
|
+
};
|
|
44172
|
+
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
44173
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44174
|
+
};
|
|
42323
44175
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
42324
44176
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42325
44177
|
};
|
|
@@ -42332,6 +44184,9 @@ export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
|
42332
44184
|
export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
42333
44185
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42334
44186
|
};
|
|
44187
|
+
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
44188
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44189
|
+
};
|
|
42335
44190
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
42336
44191
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42337
44192
|
};
|
|
@@ -42353,6 +44208,12 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
42353
44208
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
42354
44209
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42355
44210
|
};
|
|
44211
|
+
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
44212
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44213
|
+
};
|
|
44214
|
+
export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
44215
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44216
|
+
};
|
|
42356
44217
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
42357
44218
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42358
44219
|
};
|
|
@@ -42362,6 +44223,12 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
|
42362
44223
|
export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
42363
44224
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42364
44225
|
};
|
|
44226
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
44227
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44228
|
+
};
|
|
44229
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44230
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44231
|
+
};
|
|
42365
44232
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
42366
44233
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42367
44234
|
};
|
|
@@ -42377,6 +44244,15 @@ export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
|
42377
44244
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
42378
44245
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42379
44246
|
};
|
|
44247
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
44248
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44249
|
+
};
|
|
44250
|
+
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
44251
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44252
|
+
};
|
|
44253
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardSortInput = {
|
|
44254
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44255
|
+
};
|
|
42380
44256
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
42381
44257
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42382
44258
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -42614,6 +44490,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
42614
44490
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
42615
44491
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
42616
44492
|
};
|
|
44493
|
+
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
44494
|
+
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
44495
|
+
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44496
|
+
};
|
|
42617
44497
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
42618
44498
|
Large = "LARGE",
|
|
42619
44499
|
Medium = "MEDIUM",
|
|
@@ -42639,6 +44519,10 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
42639
44519
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
42640
44520
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
42641
44521
|
};
|
|
44522
|
+
export declare enum GrowthUnifiedProfileDomainType {
|
|
44523
|
+
Business = "BUSINESS",
|
|
44524
|
+
Personal = "PERSONAL"
|
|
44525
|
+
}
|
|
42642
44526
|
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
42643
44527
|
Complete = "COMPLETE",
|
|
42644
44528
|
Error = "ERROR",
|
|
@@ -42658,6 +44542,10 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
42658
44542
|
Org = "ORG",
|
|
42659
44543
|
Site = "SITE"
|
|
42660
44544
|
}
|
|
44545
|
+
export declare enum GrowthUnifiedProfileEntryType {
|
|
44546
|
+
Existing = "EXISTING",
|
|
44547
|
+
New = "NEW"
|
|
44548
|
+
}
|
|
42661
44549
|
export declare type GrowthUnifiedProfileInput = {
|
|
42662
44550
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
42663
44551
|
};
|
|
@@ -42772,13 +44660,16 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
42772
44660
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
42773
44661
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
42774
44662
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
44663
|
+
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
42775
44664
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
42776
44665
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
42777
44666
|
productName?: Maybe<Scalars['String']['output']>;
|
|
44667
|
+
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
42778
44668
|
};
|
|
42779
44669
|
export declare type GrowthUnifiedProfileResult = {
|
|
42780
44670
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
42781
44671
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
44672
|
+
companyProfile?: Maybe<GrowthUnifiedProfileCompanyProfile>;
|
|
42782
44673
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
42783
44674
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
42784
44675
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
@@ -42787,6 +44678,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
42787
44678
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
42788
44679
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
42789
44680
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
44681
|
+
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
42790
44682
|
};
|
|
42791
44683
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
42792
44684
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -42824,6 +44716,11 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
42824
44716
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
42825
44717
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
42826
44718
|
};
|
|
44719
|
+
export declare type GrowthUnifiedProfileUserProfile = {
|
|
44720
|
+
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
44721
|
+
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
44722
|
+
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44723
|
+
};
|
|
42827
44724
|
export declare type GrowthUnifiedProfileUtm = {
|
|
42828
44725
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
42829
44726
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -42973,6 +44870,7 @@ export declare type HamsTransactionAccountExperienceCapabilities = CommerceTrans
|
|
|
42973
44870
|
export declare type HamsTrial = CommerceTrial & {
|
|
42974
44871
|
__typename?: 'HamsTrial';
|
|
42975
44872
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
44873
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
42976
44874
|
};
|
|
42977
44875
|
export declare type HasMercuryProjectFields = {
|
|
42978
44876
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -43750,6 +45648,7 @@ export declare type HelpLayoutAnnouncementElement = HelpLayoutVisualEntity & Nod
|
|
|
43750
45648
|
header?: Maybe<Scalars['String']['output']>;
|
|
43751
45649
|
id: Scalars['ID']['output'];
|
|
43752
45650
|
message?: Maybe<Scalars['String']['output']>;
|
|
45651
|
+
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
43753
45652
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
43754
45653
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
43755
45654
|
};
|
|
@@ -43760,11 +45659,13 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
43760
45659
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
43761
45660
|
};
|
|
43762
45661
|
export declare type HelpLayoutAnnouncementInput = {
|
|
45662
|
+
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43763
45663
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
43764
45664
|
};
|
|
43765
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
45665
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
43766
45666
|
export declare type HelpLayoutAtomicElementInput = {
|
|
43767
45667
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45668
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
43768
45669
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
43769
45670
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
43770
45671
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -43781,6 +45682,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
43781
45682
|
};
|
|
43782
45683
|
export declare enum HelpLayoutAtomicElementKey {
|
|
43783
45684
|
Announcement = "ANNOUNCEMENT",
|
|
45685
|
+
Breadcrumb = "BREADCRUMB",
|
|
43784
45686
|
Connect = "CONNECT",
|
|
43785
45687
|
Editor = "EDITOR",
|
|
43786
45688
|
Forge = "FORGE",
|
|
@@ -43824,6 +45726,21 @@ export declare enum HelpLayoutBackgroundType {
|
|
|
43824
45726
|
Image = "IMAGE",
|
|
43825
45727
|
Transparent = "TRANSPARENT"
|
|
43826
45728
|
}
|
|
45729
|
+
export declare type HelpLayoutBreadcrumb = {
|
|
45730
|
+
__typename?: 'HelpLayoutBreadcrumb';
|
|
45731
|
+
name: Scalars['String']['output'];
|
|
45732
|
+
relativeUrl: Scalars['String']['output'];
|
|
45733
|
+
};
|
|
45734
|
+
export declare type HelpLayoutBreadcrumbElement = HelpLayoutVisualEntity & Node & {
|
|
45735
|
+
__typename?: 'HelpLayoutBreadcrumbElement';
|
|
45736
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
45737
|
+
id: Scalars['ID']['output'];
|
|
45738
|
+
items?: Maybe<Array<HelpLayoutBreadcrumb>>;
|
|
45739
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
45740
|
+
};
|
|
45741
|
+
export declare type HelpLayoutBreadcrumbElementInput = {
|
|
45742
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
45743
|
+
};
|
|
43827
45744
|
export declare type HelpLayoutCompositeElement = {
|
|
43828
45745
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
43829
45746
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
@@ -43897,13 +45814,14 @@ export declare type HelpLayoutEditorInput = {
|
|
|
43897
45814
|
adf: Scalars['String']['input'];
|
|
43898
45815
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
43899
45816
|
};
|
|
43900
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
45817
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
43901
45818
|
export declare enum HelpLayoutElementCategory {
|
|
43902
45819
|
Basic = "BASIC",
|
|
43903
45820
|
Navigation = "NAVIGATION"
|
|
43904
45821
|
}
|
|
43905
45822
|
export declare type HelpLayoutElementInput = {
|
|
43906
45823
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45824
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
43907
45825
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
43908
45826
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
43909
45827
|
elementTypeKey: HelpLayoutElementKey;
|
|
@@ -43921,6 +45839,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
43921
45839
|
};
|
|
43922
45840
|
export declare enum HelpLayoutElementKey {
|
|
43923
45841
|
Announcement = "ANNOUNCEMENT",
|
|
45842
|
+
Breadcrumb = "BREADCRUMB",
|
|
43924
45843
|
Connect = "CONNECT",
|
|
43925
45844
|
Editor = "EDITOR",
|
|
43926
45845
|
Forge = "FORGE",
|
|
@@ -44148,12 +46067,14 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
44148
46067
|
data?: Maybe<HelpLayoutPortalsListData>;
|
|
44149
46068
|
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
44150
46069
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
46070
|
+
expandButtonTextColor?: Maybe<Scalars['String']['output']>;
|
|
44151
46071
|
id: Scalars['ID']['output'];
|
|
44152
46072
|
portals?: Maybe<Array<Maybe<HelpLayoutPortalCard>>>;
|
|
44153
46073
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
44154
46074
|
};
|
|
44155
46075
|
export declare type HelpLayoutPortalsListInput = {
|
|
44156
46076
|
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
46077
|
+
expandButtonTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
44157
46078
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
44158
46079
|
};
|
|
44159
46080
|
export declare enum HelpLayoutProjectType {
|
|
@@ -44163,10 +46084,15 @@ export declare enum HelpLayoutProjectType {
|
|
|
44163
46084
|
export declare type HelpLayoutQueryApi = {
|
|
44164
46085
|
__typename?: 'HelpLayoutQueryApi';
|
|
44165
46086
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
46087
|
+
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
44166
46088
|
layout?: Maybe<HelpLayoutResult>;
|
|
44167
46089
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
44168
46090
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
44169
46091
|
};
|
|
46092
|
+
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
46093
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
46094
|
+
ids: Array<Scalars['ID']['input']>;
|
|
46095
|
+
};
|
|
44170
46096
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
44171
46097
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
44172
46098
|
id: Scalars['ID']['input'];
|
|
@@ -46365,6 +48291,7 @@ export declare type JiraAutodevDeletedPayload = Payload & {
|
|
|
46365
48291
|
};
|
|
46366
48292
|
export declare type JiraAutodevJob = {
|
|
46367
48293
|
__typename?: 'JiraAutodevJob';
|
|
48294
|
+
agent?: Maybe<DevAiRovoAgent>;
|
|
46368
48295
|
branchName?: Maybe<Scalars['String']['output']>;
|
|
46369
48296
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
46370
48297
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
@@ -46373,6 +48300,7 @@ export declare type JiraAutodevJob = {
|
|
|
46373
48300
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
46374
48301
|
id: Scalars['ID']['output'];
|
|
46375
48302
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
48303
|
+
issueScopingScore?: Maybe<DevAiIssueScopingResult>;
|
|
46376
48304
|
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
46377
48305
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
46378
48306
|
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -46385,6 +48313,12 @@ export declare type JiraAutodevJob = {
|
|
|
46385
48313
|
status?: Maybe<JiraAutodevStatus>;
|
|
46386
48314
|
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
46387
48315
|
};
|
|
48316
|
+
export declare type JiraAutodevJobAgentArgs = {
|
|
48317
|
+
cloudId: Scalars['ID']['input'];
|
|
48318
|
+
};
|
|
48319
|
+
export declare type JiraAutodevJobIssueScopingScoreArgs = {
|
|
48320
|
+
cloudId: Scalars['ID']['input'];
|
|
48321
|
+
};
|
|
46388
48322
|
export declare type JiraAutodevJobJobLogsArgs = {
|
|
46389
48323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46390
48324
|
cloudId: Scalars['ID']['input'];
|
|
@@ -46678,6 +48612,103 @@ export declare enum JiraBoardType {
|
|
|
46678
48612
|
Kanban = "KANBAN",
|
|
46679
48613
|
Scrum = "SCRUM"
|
|
46680
48614
|
}
|
|
48615
|
+
export declare type JiraBoardView = {
|
|
48616
|
+
__typename?: 'JiraBoardView';
|
|
48617
|
+
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48618
|
+
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48619
|
+
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
48620
|
+
error?: Maybe<QueryError>;
|
|
48621
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48622
|
+
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48623
|
+
id: Scalars['ID']['output'];
|
|
48624
|
+
};
|
|
48625
|
+
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48627
|
+
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48629
|
+
};
|
|
48630
|
+
export declare type JiraBoardViewColumnsArgs = {
|
|
48631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48633
|
+
};
|
|
48634
|
+
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
48635
|
+
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
48636
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48637
|
+
id: Scalars['ID']['output'];
|
|
48638
|
+
user?: Maybe<User>;
|
|
48639
|
+
};
|
|
48640
|
+
export declare type JiraBoardViewCardOption = {
|
|
48641
|
+
id: Scalars['ID']['output'];
|
|
48642
|
+
};
|
|
48643
|
+
export declare type JiraBoardViewCardOptionConnection = {
|
|
48644
|
+
__typename?: 'JiraBoardViewCardOptionConnection';
|
|
48645
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewCardOptionEdge>>>;
|
|
48646
|
+
errors?: Maybe<Array<QueryError>>;
|
|
48647
|
+
pageInfo?: Maybe<PageInfo>;
|
|
48648
|
+
};
|
|
48649
|
+
export declare type JiraBoardViewCardOptionEdge = {
|
|
48650
|
+
__typename?: 'JiraBoardViewCardOptionEdge';
|
|
48651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48652
|
+
node?: Maybe<JiraBoardViewCardOption>;
|
|
48653
|
+
};
|
|
48654
|
+
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
48655
|
+
__typename?: 'JiraBoardViewCategoryColumn';
|
|
48656
|
+
category?: Maybe<JiraOption>;
|
|
48657
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48658
|
+
id: Scalars['ID']['output'];
|
|
48659
|
+
};
|
|
48660
|
+
export declare type JiraBoardViewColumn = {
|
|
48661
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48662
|
+
id: Scalars['ID']['output'];
|
|
48663
|
+
};
|
|
48664
|
+
export declare type JiraBoardViewColumnConnection = {
|
|
48665
|
+
__typename?: 'JiraBoardViewColumnConnection';
|
|
48666
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewColumnEdge>>>;
|
|
48667
|
+
errors?: Maybe<Array<QueryError>>;
|
|
48668
|
+
pageInfo?: Maybe<PageInfo>;
|
|
48669
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48670
|
+
};
|
|
48671
|
+
export declare type JiraBoardViewColumnEdge = {
|
|
48672
|
+
__typename?: 'JiraBoardViewColumnEdge';
|
|
48673
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48674
|
+
node?: Maybe<JiraBoardViewColumn>;
|
|
48675
|
+
};
|
|
48676
|
+
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
48677
|
+
__typename?: 'JiraBoardViewFieldCardOption';
|
|
48678
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48679
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48680
|
+
field?: Maybe<JiraField>;
|
|
48681
|
+
id: Scalars['ID']['output'];
|
|
48682
|
+
};
|
|
48683
|
+
export declare type JiraBoardViewInput = {
|
|
48684
|
+
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
48685
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
48686
|
+
};
|
|
48687
|
+
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
48688
|
+
__typename?: 'JiraBoardViewPriorityColumn';
|
|
48689
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48690
|
+
id: Scalars['ID']['output'];
|
|
48691
|
+
priority?: Maybe<JiraPriority>;
|
|
48692
|
+
};
|
|
48693
|
+
export declare type JiraBoardViewProjectKeyAndItemIdQuery = {
|
|
48694
|
+
cloudId: Scalars['ID']['input'];
|
|
48695
|
+
itemId: Scalars['String']['input'];
|
|
48696
|
+
projectKey: Scalars['String']['input'];
|
|
48697
|
+
};
|
|
48698
|
+
export declare type JiraBoardViewQueryInput = {
|
|
48699
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraBoardViewProjectKeyAndItemIdQuery>;
|
|
48700
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
48701
|
+
};
|
|
48702
|
+
export declare type JiraBoardViewSettings = {
|
|
48703
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
48704
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
48705
|
+
};
|
|
48706
|
+
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
48707
|
+
__typename?: 'JiraBoardViewStatusColumn';
|
|
48708
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48709
|
+
id: Scalars['ID']['output'];
|
|
48710
|
+
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48711
|
+
};
|
|
46681
48712
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
46682
48713
|
__typename?: 'JiraBooleanField';
|
|
46683
48714
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -47537,9 +49568,12 @@ export declare type JiraComment = {
|
|
|
47537
49568
|
};
|
|
47538
49569
|
export declare type JiraCommentChildCommentsArgs = {
|
|
47539
49570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49571
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
47540
49572
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49573
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
47541
49574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47542
49575
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49576
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
47543
49577
|
};
|
|
47544
49578
|
export declare type JiraCommentConnection = {
|
|
47545
49579
|
__typename?: 'JiraCommentConnection';
|
|
@@ -48237,7 +50271,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
48237
50271
|
node?: Maybe<JiraCustomBackground>;
|
|
48238
50272
|
};
|
|
48239
50273
|
export declare type JiraCustomFieldOptionInput = {
|
|
48240
|
-
externalUuid
|
|
50274
|
+
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
48241
50275
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
48242
50276
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
48243
50277
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -48512,6 +50546,7 @@ export declare type JiraDeleteCustomFieldInput = {
|
|
|
48512
50546
|
};
|
|
48513
50547
|
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
48514
50548
|
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
50549
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
48515
50550
|
errors?: Maybe<Array<MutationError>>;
|
|
48516
50551
|
success: Scalars['Boolean']['output'];
|
|
48517
50552
|
};
|
|
@@ -49173,6 +51208,7 @@ export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssocia
|
|
|
49173
51208
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
49174
51209
|
field?: Maybe<JiraField>;
|
|
49175
51210
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
51211
|
+
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
49176
51212
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
49177
51213
|
id: Scalars['ID']['output'];
|
|
49178
51214
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -49241,6 +51277,22 @@ export declare type JiraFieldOperation = {
|
|
|
49241
51277
|
canModifyOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
49242
51278
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
49243
51279
|
};
|
|
51280
|
+
export declare type JiraFieldOption = {
|
|
51281
|
+
__typename?: 'JiraFieldOption';
|
|
51282
|
+
optionId?: Maybe<Scalars['Long']['output']>;
|
|
51283
|
+
parentOptionId?: Maybe<Scalars['Long']['output']>;
|
|
51284
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
51285
|
+
};
|
|
51286
|
+
export declare type JiraFieldOptionConnection = {
|
|
51287
|
+
__typename?: 'JiraFieldOptionConnection';
|
|
51288
|
+
edges?: Maybe<Array<Maybe<JiraFieldOptionEdge>>>;
|
|
51289
|
+
pageInfo: PageInfo;
|
|
51290
|
+
};
|
|
51291
|
+
export declare type JiraFieldOptionEdge = {
|
|
51292
|
+
__typename?: 'JiraFieldOptionEdge';
|
|
51293
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51294
|
+
node?: Maybe<JiraFieldOption>;
|
|
51295
|
+
};
|
|
49244
51296
|
export declare type JiraFieldOptionIdsFilterInput = {
|
|
49245
51297
|
operation: JiraFieldOptionIdsFilterOperation;
|
|
49246
51298
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -50171,6 +52223,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
50171
52223
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
50172
52224
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
50173
52225
|
key: Scalars['String']['output'];
|
|
52226
|
+
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
50174
52227
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
50175
52228
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
50176
52229
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
@@ -50193,6 +52246,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
50193
52246
|
priorityField?: Maybe<JiraPriorityField>;
|
|
50194
52247
|
projectField?: Maybe<JiraProjectField>;
|
|
50195
52248
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
52249
|
+
redactedFields?: Maybe<JiraFieldConnection>;
|
|
52250
|
+
redactions?: Maybe<JiraRedactionConnection>;
|
|
50196
52251
|
reporter?: Maybe<User>;
|
|
50197
52252
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
50198
52253
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -50353,6 +52408,19 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
50353
52408
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50354
52409
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50355
52410
|
};
|
|
52411
|
+
export declare type JiraIssueRedactedFieldsArgs = {
|
|
52412
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52413
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
52414
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52415
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52416
|
+
};
|
|
52417
|
+
export declare type JiraIssueRedactionsArgs = {
|
|
52418
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52419
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
52420
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52421
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52422
|
+
sortBy?: InputMaybe<JiraRedactionSortInput>;
|
|
52423
|
+
};
|
|
50356
52424
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
50357
52425
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50358
52426
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50635,11 +52703,15 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
50635
52703
|
};
|
|
50636
52704
|
export declare type JiraIssueEdge = {
|
|
50637
52705
|
__typename?: 'JiraIssueEdge';
|
|
52706
|
+
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
50638
52707
|
cursor: Scalars['String']['output'];
|
|
50639
52708
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
50640
52709
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
50641
52710
|
node?: Maybe<JiraIssue>;
|
|
50642
52711
|
};
|
|
52712
|
+
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
52713
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
52714
|
+
};
|
|
50643
52715
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
50644
52716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50645
52717
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -51307,6 +53379,12 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
|
51307
53379
|
errors?: Maybe<Array<MutationError>>;
|
|
51308
53380
|
success: Scalars['Boolean']['output'];
|
|
51309
53381
|
};
|
|
53382
|
+
export declare type JiraIssueSearchHideDonePreferenceMutationPayload = Payload & {
|
|
53383
|
+
__typename?: 'JiraIssueSearchHideDonePreferenceMutationPayload';
|
|
53384
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53385
|
+
isHideDoneEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53386
|
+
success: Scalars['Boolean']['output'];
|
|
53387
|
+
};
|
|
51310
53388
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
51311
53389
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
51312
53390
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -51321,8 +53399,10 @@ export declare type JiraIssueSearchInput = {
|
|
|
51321
53399
|
};
|
|
51322
53400
|
export declare enum JiraIssueSearchOperationScope {
|
|
51323
53401
|
NinGlobal = "NIN_GLOBAL",
|
|
53402
|
+
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
51324
53403
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
51325
53404
|
NinProject = "NIN_PROJECT",
|
|
53405
|
+
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
51326
53406
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
51327
53407
|
}
|
|
51328
53408
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -51653,6 +53733,10 @@ export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
|
51653
53733
|
NewestFirst = "NEWEST_FIRST",
|
|
51654
53734
|
OldestFirst = "OLDEST_FIRST"
|
|
51655
53735
|
}
|
|
53736
|
+
export declare enum JiraIssueViewActivityLayout {
|
|
53737
|
+
Horizontal = "HORIZONTAL",
|
|
53738
|
+
Vertical = "VERTICAL"
|
|
53739
|
+
}
|
|
51656
53740
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
51657
53741
|
ListView = "LIST_VIEW",
|
|
51658
53742
|
StripView = "STRIP_VIEW"
|
|
@@ -52912,6 +54996,7 @@ export declare type JiraMutation = {
|
|
|
52912
54996
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
52913
54997
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
52914
54998
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
54999
|
+
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
52915
55000
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
52916
55001
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
52917
55002
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -52932,6 +55017,7 @@ export declare type JiraMutation = {
|
|
|
52932
55017
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
52933
55018
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
52934
55019
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
55020
|
+
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
52935
55021
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
52936
55022
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
52937
55023
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -52973,6 +55059,7 @@ export declare type JiraMutation = {
|
|
|
52973
55059
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
52974
55060
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
52975
55061
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
55062
|
+
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
52976
55063
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
52977
55064
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
52978
55065
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -53224,6 +55311,10 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
53224
55311
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
53225
55312
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
53226
55313
|
};
|
|
55314
|
+
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
55315
|
+
cloudId: Scalars['ID']['input'];
|
|
55316
|
+
input: JiraWorkManagementAssociateFieldInput;
|
|
55317
|
+
};
|
|
53227
55318
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
53228
55319
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
53229
55320
|
};
|
|
@@ -53285,6 +55376,9 @@ export declare type JiraMutationRankNavigationItemArgs = {
|
|
|
53285
55376
|
export declare type JiraMutationRemoveActiveBackgroundArgs = {
|
|
53286
55377
|
input: JiraRemoveActiveBackgroundInput;
|
|
53287
55378
|
};
|
|
55379
|
+
export declare type JiraMutationRemoveCustomFieldArgs = {
|
|
55380
|
+
input: JiraRemoveCustomFieldInput;
|
|
55381
|
+
};
|
|
53288
55382
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
53289
55383
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
53290
55384
|
};
|
|
@@ -53426,6 +55520,10 @@ export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
|
53426
55520
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
53427
55521
|
viewId: Scalars['ID']['input'];
|
|
53428
55522
|
};
|
|
55523
|
+
export declare type JiraMutationUpdateIssueSearchHideDonePreferenceArgs = {
|
|
55524
|
+
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
55525
|
+
viewId: Scalars['ID']['input'];
|
|
55526
|
+
};
|
|
53429
55527
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
53430
55528
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
53431
55529
|
viewId: Scalars['ID']['input'];
|
|
@@ -53699,24 +55797,30 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
53699
55797
|
Calendar = "CALENDAR",
|
|
53700
55798
|
Code = "CODE",
|
|
53701
55799
|
Components = "COMPONENTS",
|
|
53702
|
-
Dependencies = "DEPENDENCIES",
|
|
53703
55800
|
Deployments = "DEPLOYMENTS",
|
|
53704
55801
|
Development = "DEVELOPMENT",
|
|
53705
55802
|
Forms = "FORMS",
|
|
55803
|
+
GetStarted = "GET_STARTED",
|
|
53706
55804
|
Goals = "GOALS",
|
|
53707
55805
|
Incidents = "INCIDENTS",
|
|
53708
55806
|
Issues = "ISSUES",
|
|
53709
55807
|
List = "LIST",
|
|
53710
55808
|
OnCall = "ON_CALL",
|
|
53711
55809
|
Pages = "PAGES",
|
|
53712
|
-
|
|
55810
|
+
PlanCalendar = "PLAN_CALENDAR",
|
|
55811
|
+
PlanDependencies = "PLAN_DEPENDENCIES",
|
|
55812
|
+
PlanProgram = "PLAN_PROGRAM",
|
|
55813
|
+
PlanReleases = "PLAN_RELEASES",
|
|
55814
|
+
PlanSummary = "PLAN_SUMMARY",
|
|
55815
|
+
PlanTeams = "PLAN_TEAMS",
|
|
55816
|
+
PlanTimeline = "PLAN_TIMELINE",
|
|
55817
|
+
Queue = "QUEUE",
|
|
53713
55818
|
Releases = "RELEASES",
|
|
53714
55819
|
Reports = "REPORTS",
|
|
53715
55820
|
Requests = "REQUESTS",
|
|
53716
55821
|
Security = "SECURITY",
|
|
53717
55822
|
Shortcuts = "SHORTCUTS",
|
|
53718
55823
|
Summary = "SUMMARY",
|
|
53719
|
-
Teams = "TEAMS",
|
|
53720
55824
|
Timeline = "TIMELINE"
|
|
53721
55825
|
}
|
|
53722
55826
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -53862,6 +55966,7 @@ export declare type JiraOAuthAppsApp = {
|
|
|
53862
55966
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
53863
55967
|
homeUrl: Scalars['String']['output'];
|
|
53864
55968
|
id: Scalars['ID']['output'];
|
|
55969
|
+
installationStatus?: Maybe<JiraOAuthAppsInstallationStatus>;
|
|
53865
55970
|
logoUrl: Scalars['String']['output'];
|
|
53866
55971
|
name: Scalars['String']['output'];
|
|
53867
55972
|
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
@@ -53962,6 +56067,12 @@ export declare type JiraOAuthAppsInstallAppInput = {
|
|
|
53962
56067
|
appId: Scalars['ID']['input'];
|
|
53963
56068
|
clientMutationId?: InputMaybe<Scalars['ID']['input']>;
|
|
53964
56069
|
};
|
|
56070
|
+
export declare enum JiraOAuthAppsInstallationStatus {
|
|
56071
|
+
Complete = "COMPLETE",
|
|
56072
|
+
Failed = "FAILED",
|
|
56073
|
+
Pending = "PENDING",
|
|
56074
|
+
Running = "RUNNING"
|
|
56075
|
+
}
|
|
53965
56076
|
export declare type JiraOAuthAppsMutation = {
|
|
53966
56077
|
__typename?: 'JiraOAuthAppsMutation';
|
|
53967
56078
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
@@ -54495,9 +56606,12 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
54495
56606
|
};
|
|
54496
56607
|
export declare type JiraPlatformCommentChildCommentsArgs = {
|
|
54497
56608
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56609
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
54498
56610
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
56611
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
54499
56612
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54500
56613
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56614
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
54501
56615
|
};
|
|
54502
56616
|
export declare type JiraPlaybook = Node & {
|
|
54503
56617
|
__typename?: 'JiraPlaybook';
|
|
@@ -55400,6 +57514,12 @@ export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
|
55400
57514
|
project?: Maybe<JiraProject>;
|
|
55401
57515
|
success: Scalars['Boolean']['output'];
|
|
55402
57516
|
};
|
|
57517
|
+
export declare type JiraProjectUpdateBackgroundMutationPayload = Payload & {
|
|
57518
|
+
__typename?: 'JiraProjectUpdateBackgroundMutationPayload';
|
|
57519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57520
|
+
project?: Maybe<JiraProject>;
|
|
57521
|
+
success: Scalars['Boolean']['output'];
|
|
57522
|
+
};
|
|
55403
57523
|
export declare type JiraProjectUpdateNameInput = {
|
|
55404
57524
|
cloudId: Scalars['ID']['input'];
|
|
55405
57525
|
name: Scalars['String']['input'];
|
|
@@ -55611,6 +57731,7 @@ export declare type JiraQuery = {
|
|
|
55611
57731
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
55612
57732
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
55613
57733
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
57734
|
+
reportsPage?: Maybe<JiraReportsPage>;
|
|
55614
57735
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
55615
57736
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
55616
57737
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -56381,6 +58502,10 @@ export declare type JiraQueryRecentQueuesArgs = {
|
|
|
56381
58502
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
56382
58503
|
ids: Array<Scalars['ID']['input']>;
|
|
56383
58504
|
};
|
|
58505
|
+
export declare type JiraQueryReportsPageArgs = {
|
|
58506
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
58507
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58508
|
+
};
|
|
56384
58509
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
56385
58510
|
cloudId: Scalars['ID']['input'];
|
|
56386
58511
|
templateId: Scalars['ID']['input'];
|
|
@@ -56619,6 +58744,38 @@ export declare enum JiraRecommendationCategory {
|
|
|
56619
58744
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
56620
58745
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
56621
58746
|
}
|
|
58747
|
+
export declare type JiraRedaction = {
|
|
58748
|
+
__typename?: 'JiraRedaction';
|
|
58749
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
58750
|
+
externalRedactionId?: Maybe<Scalars['String']['output']>;
|
|
58751
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
58752
|
+
id: Scalars['ID']['output'];
|
|
58753
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
58754
|
+
redactedBy?: Maybe<User>;
|
|
58755
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
58756
|
+
};
|
|
58757
|
+
export declare type JiraRedactionConnection = {
|
|
58758
|
+
__typename?: 'JiraRedactionConnection';
|
|
58759
|
+
edges?: Maybe<Array<Maybe<JiraRedactionEdge>>>;
|
|
58760
|
+
pageInfo: PageInfo;
|
|
58761
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
58762
|
+
};
|
|
58763
|
+
export declare type JiraRedactionEdge = {
|
|
58764
|
+
__typename?: 'JiraRedactionEdge';
|
|
58765
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58766
|
+
node?: Maybe<JiraRedaction>;
|
|
58767
|
+
};
|
|
58768
|
+
export declare enum JiraRedactionSortField {
|
|
58769
|
+
Created = "CREATED",
|
|
58770
|
+
Field = "FIELD",
|
|
58771
|
+
Reason = "REASON",
|
|
58772
|
+
RedactedBy = "REDACTED_BY",
|
|
58773
|
+
Updated = "UPDATED"
|
|
58774
|
+
}
|
|
58775
|
+
export declare type JiraRedactionSortInput = {
|
|
58776
|
+
field: JiraRedactionSortField;
|
|
58777
|
+
order?: SortDirection;
|
|
58778
|
+
};
|
|
56622
58779
|
export declare type JiraReleaseNotesConfiguration = {
|
|
56623
58780
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
56624
58781
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -56796,6 +58953,17 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
56796
58953
|
errors?: Maybe<Array<MutationError>>;
|
|
56797
58954
|
success: Scalars['Boolean']['output'];
|
|
56798
58955
|
};
|
|
58956
|
+
export declare type JiraRemoveCustomFieldInput = {
|
|
58957
|
+
cloudId: Scalars['ID']['input'];
|
|
58958
|
+
fieldId: Scalars['String']['input'];
|
|
58959
|
+
projectId: Scalars['String']['input'];
|
|
58960
|
+
};
|
|
58961
|
+
export declare type JiraRemoveCustomFieldPayload = Payload & {
|
|
58962
|
+
__typename?: 'JiraRemoveCustomFieldPayload';
|
|
58963
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
58964
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58965
|
+
success: Scalars['Boolean']['output'];
|
|
58966
|
+
};
|
|
56799
58967
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
56800
58968
|
issueIds: Array<Scalars['ID']['input']>;
|
|
56801
58969
|
};
|
|
@@ -56856,6 +59024,22 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
56856
59024
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
56857
59025
|
success: Scalars['Boolean']['output'];
|
|
56858
59026
|
};
|
|
59027
|
+
export declare type JiraReorderBoardViewColumnInput = {
|
|
59028
|
+
columnId: Scalars['ID']['input'];
|
|
59029
|
+
position: JiraReorderBoardViewColumnPosition;
|
|
59030
|
+
relativeColumnId: Scalars['ID']['input'];
|
|
59031
|
+
viewId: Scalars['ID']['input'];
|
|
59032
|
+
};
|
|
59033
|
+
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
59034
|
+
__typename?: 'JiraReorderBoardViewColumnPayload';
|
|
59035
|
+
boardView?: Maybe<JiraBoardView>;
|
|
59036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59037
|
+
success: Scalars['Boolean']['output'];
|
|
59038
|
+
};
|
|
59039
|
+
export declare enum JiraReorderBoardViewColumnPosition {
|
|
59040
|
+
After = "AFTER",
|
|
59041
|
+
Before = "BEFORE"
|
|
59042
|
+
}
|
|
56859
59043
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
56860
59044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56861
59045
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56863,6 +59047,25 @@ export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
56863
59047
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56864
59048
|
nodes: Array<Scalars['String']['input']>;
|
|
56865
59049
|
};
|
|
59050
|
+
export declare type JiraReport = {
|
|
59051
|
+
__typename?: 'JiraReport';
|
|
59052
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59053
|
+
id: Scalars['ID']['output'];
|
|
59054
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
59055
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
59056
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
59057
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
59058
|
+
};
|
|
59059
|
+
export declare type JiraReportCategory = {
|
|
59060
|
+
__typename?: 'JiraReportCategory';
|
|
59061
|
+
id: Scalars['ID']['output'];
|
|
59062
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
59063
|
+
reports?: Maybe<Array<Maybe<JiraReport>>>;
|
|
59064
|
+
};
|
|
59065
|
+
export declare type JiraReportsPage = {
|
|
59066
|
+
__typename?: 'JiraReportsPage';
|
|
59067
|
+
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
59068
|
+
};
|
|
56866
59069
|
export declare type JiraResolution = Node & {
|
|
56867
59070
|
__typename?: 'JiraResolution';
|
|
56868
59071
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -57576,9 +59779,12 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
57576
59779
|
};
|
|
57577
59780
|
export declare type JiraServiceManagementCommentChildCommentsArgs = {
|
|
57578
59781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59782
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
57579
59783
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
59784
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
57580
59785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57581
59786
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59787
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
57582
59788
|
};
|
|
57583
59789
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
57584
59790
|
Internal = "INTERNAL",
|
|
@@ -58428,6 +60634,38 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
58428
60634
|
key: Scalars['String']['input'];
|
|
58429
60635
|
value: Scalars['String']['input'];
|
|
58430
60636
|
};
|
|
60637
|
+
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
60638
|
+
fieldId: Scalars['String']['input'];
|
|
60639
|
+
selected: Scalars['Boolean']['input'];
|
|
60640
|
+
viewId: Scalars['ID']['input'];
|
|
60641
|
+
};
|
|
60642
|
+
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
60643
|
+
__typename?: 'JiraSetBoardViewCardFieldSelectedPayload';
|
|
60644
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60645
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60646
|
+
success: Scalars['Boolean']['output'];
|
|
60647
|
+
};
|
|
60648
|
+
export declare type JiraSetBoardViewColumnStateInput = {
|
|
60649
|
+
collapsed: Scalars['Boolean']['input'];
|
|
60650
|
+
columnId: Scalars['ID']['input'];
|
|
60651
|
+
viewId: Scalars['ID']['input'];
|
|
60652
|
+
};
|
|
60653
|
+
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
60654
|
+
__typename?: 'JiraSetBoardViewColumnStatePayload';
|
|
60655
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60656
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60657
|
+
success: Scalars['Boolean']['output'];
|
|
60658
|
+
};
|
|
60659
|
+
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
60660
|
+
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
60661
|
+
viewId: Scalars['ID']['input'];
|
|
60662
|
+
};
|
|
60663
|
+
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
60664
|
+
__typename?: 'JiraSetBoardViewCompletedIssueSearchCutOffPayload';
|
|
60665
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60666
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60667
|
+
success: Scalars['Boolean']['output'];
|
|
60668
|
+
};
|
|
58431
60669
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
58432
60670
|
id: Scalars['ID']['input'];
|
|
58433
60671
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -58479,6 +60717,26 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
58479
60717
|
errors?: Maybe<Array<MutationError>>;
|
|
58480
60718
|
success: Scalars['Boolean']['output'];
|
|
58481
60719
|
};
|
|
60720
|
+
export declare type JiraSetViewFilterInput = {
|
|
60721
|
+
jql: Scalars['String']['input'];
|
|
60722
|
+
viewId: Scalars['ID']['input'];
|
|
60723
|
+
};
|
|
60724
|
+
export declare type JiraSetViewFilterPayload = Payload & {
|
|
60725
|
+
__typename?: 'JiraSetViewFilterPayload';
|
|
60726
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60727
|
+
success: Scalars['Boolean']['output'];
|
|
60728
|
+
view?: Maybe<JiraView>;
|
|
60729
|
+
};
|
|
60730
|
+
export declare type JiraSetViewGroupByInput = {
|
|
60731
|
+
fieldId: Scalars['String']['input'];
|
|
60732
|
+
viewId: Scalars['ID']['input'];
|
|
60733
|
+
};
|
|
60734
|
+
export declare type JiraSetViewGroupByPayload = Payload & {
|
|
60735
|
+
__typename?: 'JiraSetViewGroupByPayload';
|
|
60736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60737
|
+
success: Scalars['Boolean']['output'];
|
|
60738
|
+
view?: Maybe<JiraView>;
|
|
60739
|
+
};
|
|
58482
60740
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
58483
60741
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
58484
60742
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -60242,6 +62500,7 @@ export declare type JiraUserPreferences = {
|
|
|
60242
62500
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60243
62501
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
60244
62502
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
62503
|
+
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
60245
62504
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
60246
62505
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
60247
62506
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -60841,6 +63100,15 @@ export declare type JiraView = {
|
|
|
60841
63100
|
error?: Maybe<QueryError>;
|
|
60842
63101
|
id: Scalars['ID']['output'];
|
|
60843
63102
|
};
|
|
63103
|
+
export declare type JiraViewFilterConfig = {
|
|
63104
|
+
__typename?: 'JiraViewFilterConfig';
|
|
63105
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
63106
|
+
};
|
|
63107
|
+
export declare type JiraViewGroupByConfig = {
|
|
63108
|
+
__typename?: 'JiraViewGroupByConfig';
|
|
63109
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
63110
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
63111
|
+
};
|
|
60844
63112
|
export declare type JiraViewScopeInput = {
|
|
60845
63113
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
60846
63114
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -60993,6 +63261,17 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
60993
63261
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60994
63262
|
};
|
|
60995
63263
|
export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
|
|
63264
|
+
export declare type JiraWorkManagementAssociateFieldInput = {
|
|
63265
|
+
fieldId: Scalars['String']['input'];
|
|
63266
|
+
issueTypeIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
63267
|
+
projectId: Scalars['Long']['input'];
|
|
63268
|
+
};
|
|
63269
|
+
export declare type JiraWorkManagementAssociateFieldPayload = Payload & {
|
|
63270
|
+
__typename?: 'JiraWorkManagementAssociateFieldPayload';
|
|
63271
|
+
associatedIssueTypeIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
|
|
63272
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63273
|
+
success: Scalars['Boolean']['output'];
|
|
63274
|
+
};
|
|
60996
63275
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
60997
63276
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
60998
63277
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -62312,10 +64591,13 @@ export declare type KnowledgeBaseMutationApi = {
|
|
|
62312
64591
|
};
|
|
62313
64592
|
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
62314
64593
|
container: Scalars['ID']['input'];
|
|
62315
|
-
|
|
64594
|
+
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
64595
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
62316
64596
|
};
|
|
62317
64597
|
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
62318
|
-
|
|
64598
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
64599
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
64600
|
+
linkedSourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
62319
64601
|
};
|
|
62320
64602
|
export declare type KnowledgeBaseQueryApi = {
|
|
62321
64603
|
__typename?: 'KnowledgeBaseQueryApi';
|
|
@@ -62334,6 +64616,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
62334
64616
|
id: Scalars['ID']['output'];
|
|
62335
64617
|
name: Scalars['String']['output'];
|
|
62336
64618
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
64619
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
62337
64620
|
url: Scalars['String']['output'];
|
|
62338
64621
|
};
|
|
62339
64622
|
export declare type KnowledgeBaseSourcePermissionsArgs = {
|
|
@@ -63133,6 +65416,24 @@ export declare type LookAndFeelSettings = {
|
|
|
63133
65416
|
selected?: Maybe<Scalars['String']['output']>;
|
|
63134
65417
|
theme?: Maybe<LookAndFeel>;
|
|
63135
65418
|
};
|
|
65419
|
+
export declare type LoomMeeting = Node & {
|
|
65420
|
+
__typename?: 'LoomMeeting';
|
|
65421
|
+
endsAt?: Maybe<Scalars['String']['output']>;
|
|
65422
|
+
external?: Maybe<Scalars['Boolean']['output']>;
|
|
65423
|
+
id: Scalars['ID']['output'];
|
|
65424
|
+
recorder?: Maybe<User>;
|
|
65425
|
+
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
65426
|
+
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
65427
|
+
source?: Maybe<LoomMeetingSource>;
|
|
65428
|
+
startsAt?: Maybe<Scalars['String']['output']>;
|
|
65429
|
+
title: Scalars['String']['output'];
|
|
65430
|
+
video?: Maybe<LoomVideo>;
|
|
65431
|
+
};
|
|
65432
|
+
export declare enum LoomMeetingSource {
|
|
65433
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
65434
|
+
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
65435
|
+
Zoom = "ZOOM"
|
|
65436
|
+
}
|
|
63136
65437
|
export declare type LoomSpace = Node & {
|
|
63137
65438
|
__typename?: 'LoomSpace';
|
|
63138
65439
|
id: Scalars['ID']['output'];
|
|
@@ -63711,6 +66012,7 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
63711
66012
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
63712
66013
|
};
|
|
63713
66014
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
66015
|
+
assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
|
|
63714
66016
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
63715
66017
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
63716
66018
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63768,6 +66070,10 @@ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse =
|
|
|
63768
66070
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
63769
66071
|
success: Scalars['Boolean']['output'];
|
|
63770
66072
|
};
|
|
66073
|
+
export declare type MarketplaceConsoleCreateVersionAssetsInput = {
|
|
66074
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
|
|
66075
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
|
|
66076
|
+
};
|
|
63771
66077
|
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
63772
66078
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
63773
66079
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -63968,6 +66274,10 @@ export declare type MarketplaceConsoleGetVersionsListInput = {
|
|
|
63968
66274
|
legacyAppVersionApprovalStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionApprovalStatus>>;
|
|
63969
66275
|
legacyAppVersionStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionStatus>>;
|
|
63970
66276
|
};
|
|
66277
|
+
export declare type MarketplaceConsoleHighlightAssetInput = {
|
|
66278
|
+
screenshotUrl: Scalars['String']['input'];
|
|
66279
|
+
thumbnailUrl?: InputMaybe<Scalars['String']['input']>;
|
|
66280
|
+
};
|
|
63971
66281
|
export declare enum MarketplaceConsoleHosting {
|
|
63972
66282
|
Cloud = "CLOUD",
|
|
63973
66283
|
DataCenter = "DATA_CENTER",
|
|
@@ -63977,6 +66287,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
63977
66287
|
__typename?: 'MarketplaceConsoleHostingOption';
|
|
63978
66288
|
hosting: MarketplaceConsoleHosting;
|
|
63979
66289
|
};
|
|
66290
|
+
export declare type MarketplaceConsoleImageAssetInput = {
|
|
66291
|
+
url: Scalars['String']['input'];
|
|
66292
|
+
};
|
|
63980
66293
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
63981
66294
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
63982
66295
|
altText?: Maybe<Scalars['String']['output']>;
|
|
@@ -65640,6 +67953,8 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
65640
67953
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65641
67954
|
};
|
|
65642
67955
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
67956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65643
67958
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
65644
67959
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
65645
67960
|
};
|
|
@@ -65938,29 +68253,6 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
65938
68253
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
65939
68254
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
65940
68255
|
};
|
|
65941
|
-
export declare type MercuryJiraAlignEpic = HasMercuryProjectFields & Node & {
|
|
65942
|
-
__typename?: 'MercuryJiraAlignEpic';
|
|
65943
|
-
id: Scalars['ID']['output'];
|
|
65944
|
-
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
65945
|
-
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
65946
|
-
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
65947
|
-
mercuryProjectOwner?: Maybe<User>;
|
|
65948
|
-
mercuryProjectOwnerId?: Maybe<Scalars['String']['output']>;
|
|
65949
|
-
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
65950
|
-
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
65951
|
-
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
65952
|
-
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
65953
|
-
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
65954
|
-
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
65955
|
-
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
65956
|
-
};
|
|
65957
|
-
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
65958
|
-
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
65959
|
-
jiraAlignEpicsByAris?: Maybe<Array<MercuryJiraAlignEpic>>;
|
|
65960
|
-
};
|
|
65961
|
-
export declare type MercuryJiraAlignProviderQueryApiJiraAlignEpicsByArisArgs = {
|
|
65962
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65963
|
-
};
|
|
65964
68256
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
65965
68257
|
focusAreaAri: Scalars['String']['input'];
|
|
65966
68258
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -66203,11 +68495,6 @@ export declare enum MercuryProjectStatusColor {
|
|
|
66203
68495
|
Red = "RED",
|
|
66204
68496
|
Yellow = "YELLOW"
|
|
66205
68497
|
}
|
|
66206
|
-
export declare type MercuryProjectStatusImpl = MercuryProjectStatus & {
|
|
66207
|
-
__typename?: 'MercuryProjectStatusImpl';
|
|
66208
|
-
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
66209
|
-
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
66210
|
-
};
|
|
66211
68498
|
export declare enum MercuryProjectTargetDateType {
|
|
66212
68499
|
Day = "DAY",
|
|
66213
68500
|
Month = "MONTH",
|
|
@@ -67081,6 +69368,12 @@ export declare type Mutation = {
|
|
|
67081
69368
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
67082
69369
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
67083
69370
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
69371
|
+
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
69372
|
+
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
69373
|
+
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
69374
|
+
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69375
|
+
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69376
|
+
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
67084
69377
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
67085
69378
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
67086
69379
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -67161,6 +69454,8 @@ export declare type Mutation = {
|
|
|
67161
69454
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
67162
69455
|
devAi?: Maybe<DevAiMutations>;
|
|
67163
69456
|
devOps?: Maybe<DevOpsMutation>;
|
|
69457
|
+
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
69458
|
+
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
67164
69459
|
disableExperiment?: Maybe<TapExperiment>;
|
|
67165
69460
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
67166
69461
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -67190,6 +69485,13 @@ export declare type Mutation = {
|
|
|
67190
69485
|
jira?: Maybe<JiraMutation>;
|
|
67191
69486
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
67192
69487
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
69488
|
+
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
69489
|
+
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
69490
|
+
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
69491
|
+
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
69492
|
+
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
69493
|
+
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
69494
|
+
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
67193
69495
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
67194
69496
|
jsw?: Maybe<JswMutation>;
|
|
67195
69497
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -67903,6 +70205,30 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
67903
70205
|
cloudId: Scalars['ID']['input'];
|
|
67904
70206
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
67905
70207
|
};
|
|
70208
|
+
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
70209
|
+
cloudId: Scalars['ID']['input'];
|
|
70210
|
+
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
70211
|
+
};
|
|
70212
|
+
export declare type MutationConfluence_DeleteSubCalendarEventArgs = {
|
|
70213
|
+
cloudId: Scalars['ID']['input'];
|
|
70214
|
+
input: ConfluenceDeleteSubCalendarEventInput;
|
|
70215
|
+
};
|
|
70216
|
+
export declare type MutationConfluence_DeleteSubCalendarHiddenEventsArgs = {
|
|
70217
|
+
cloudId: Scalars['ID']['input'];
|
|
70218
|
+
input: Array<ConfluenceDeleteSubCalendarHiddenEventsInput>;
|
|
70219
|
+
};
|
|
70220
|
+
export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
70221
|
+
cloudId: Scalars['ID']['input'];
|
|
70222
|
+
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
70223
|
+
};
|
|
70224
|
+
export declare type MutationConfluence_InviteUsersArgs = {
|
|
70225
|
+
cloudId: Scalars['ID']['input'];
|
|
70226
|
+
input: ConfluenceInviteUserInput;
|
|
70227
|
+
};
|
|
70228
|
+
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
70229
|
+
cloudId: Scalars['ID']['input'];
|
|
70230
|
+
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
70231
|
+
};
|
|
67906
70232
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
67907
70233
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
67908
70234
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68172,6 +70498,16 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
68172
70498
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
68173
70499
|
id: Scalars['ID']['input'];
|
|
68174
70500
|
};
|
|
70501
|
+
export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
70502
|
+
cloudId: Scalars['ID']['input'];
|
|
70503
|
+
jobId: Scalars['ID']['input'];
|
|
70504
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
70505
|
+
repoUrl: Scalars['String']['input'];
|
|
70506
|
+
};
|
|
70507
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
70508
|
+
agentId: Scalars['ID']['input'];
|
|
70509
|
+
issueId: Scalars['ID']['input'];
|
|
70510
|
+
};
|
|
68175
70511
|
export declare type MutationDisableExperimentArgs = {
|
|
68176
70512
|
experimentKey: Scalars['String']['input'];
|
|
68177
70513
|
};
|
|
@@ -68226,6 +70562,27 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
68226
70562
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
68227
70563
|
input: InvokePolarisObjectInput;
|
|
68228
70564
|
};
|
|
70565
|
+
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
70566
|
+
input: JiraReorderBoardViewColumnInput;
|
|
70567
|
+
};
|
|
70568
|
+
export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
|
|
70569
|
+
input: JiraSetBoardViewCardFieldSelectedInput;
|
|
70570
|
+
};
|
|
70571
|
+
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
70572
|
+
input: JiraSetBoardViewColumnStateInput;
|
|
70573
|
+
};
|
|
70574
|
+
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
70575
|
+
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
70576
|
+
};
|
|
70577
|
+
export declare type MutationJira_SetViewFilterArgs = {
|
|
70578
|
+
input: JiraSetViewFilterInput;
|
|
70579
|
+
};
|
|
70580
|
+
export declare type MutationJira_SetViewGroupByArgs = {
|
|
70581
|
+
input: JiraSetViewGroupByInput;
|
|
70582
|
+
};
|
|
70583
|
+
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
70584
|
+
input: JiraUpdateBackgroundInput;
|
|
70585
|
+
};
|
|
68229
70586
|
export declare type MutationKnowledgeBaseArgs = {
|
|
68230
70587
|
cloudId: Scalars['ID']['input'];
|
|
68231
70588
|
};
|
|
@@ -69248,10 +71605,11 @@ export declare type PeapProgram = {
|
|
|
69248
71605
|
status: PeapProgramStatus;
|
|
69249
71606
|
updatedAt: Scalars['Date']['output'];
|
|
69250
71607
|
};
|
|
69251
|
-
export declare type PeapProgramConnection = HasPageInfo & {
|
|
71608
|
+
export declare type PeapProgramConnection = HasPageInfo & HasTotal & {
|
|
69252
71609
|
__typename?: 'PEAPProgramConnection';
|
|
69253
71610
|
edges?: Maybe<Array<Maybe<PeapProgramEdge>>>;
|
|
69254
71611
|
pageInfo: PageInfo;
|
|
71612
|
+
totalCount: Scalars['Int']['output'];
|
|
69255
71613
|
};
|
|
69256
71614
|
export declare type PeapProgramEdge = {
|
|
69257
71615
|
__typename?: 'PEAPProgramEdge';
|
|
@@ -70361,6 +72719,10 @@ export declare enum PolarisFieldType {
|
|
|
70361
72719
|
PolarisIdeaPlayField = "PolarisIdeaPlayField",
|
|
70362
72720
|
PolarisJiraField = "PolarisJiraField"
|
|
70363
72721
|
}
|
|
72722
|
+
export declare enum PolarisFilterEnumType {
|
|
72723
|
+
BoardColumn = "BOARD_COLUMN",
|
|
72724
|
+
ViewGroup = "VIEW_GROUP"
|
|
72725
|
+
}
|
|
70364
72726
|
export declare type PolarisFilterInput = {
|
|
70365
72727
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
70366
72728
|
};
|
|
@@ -70830,6 +73192,7 @@ export declare type PolarisViewFilterInput = {
|
|
|
70830
73192
|
values: Array<PolarisViewFilterValueInput>;
|
|
70831
73193
|
};
|
|
70832
73194
|
export declare enum PolarisViewFilterKind {
|
|
73195
|
+
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
70833
73196
|
FieldIdentity = "FIELD_IDENTITY",
|
|
70834
73197
|
FieldNumeric = "FIELD_NUMERIC",
|
|
70835
73198
|
Interval = "INTERVAL",
|
|
@@ -70849,11 +73212,13 @@ export declare enum PolarisViewFilterOperator {
|
|
|
70849
73212
|
}
|
|
70850
73213
|
export declare type PolarisViewFilterValue = {
|
|
70851
73214
|
__typename?: 'PolarisViewFilterValue';
|
|
73215
|
+
enumValue?: Maybe<PolarisFilterEnumType>;
|
|
70852
73216
|
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
70853
73217
|
operator?: Maybe<PolarisViewFilterOperator>;
|
|
70854
73218
|
stringValue?: Maybe<Scalars['String']['output']>;
|
|
70855
73219
|
};
|
|
70856
73220
|
export declare type PolarisViewFilterValueInput = {
|
|
73221
|
+
enumValue?: InputMaybe<PolarisFilterEnumType>;
|
|
70857
73222
|
operator?: InputMaybe<PolarisViewFilterOperator>;
|
|
70858
73223
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
70859
73224
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -71521,6 +73886,7 @@ export declare type Query = {
|
|
|
71521
73886
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
71522
73887
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
71523
73888
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
73889
|
+
confluence_template?: Maybe<ContentTemplate>;
|
|
71524
73890
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
71525
73891
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
71526
73892
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
@@ -71553,6 +73919,7 @@ export declare type Query = {
|
|
|
71553
73919
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
71554
73920
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
71555
73921
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
73922
|
+
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
71556
73923
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
71557
73924
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
71558
73925
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -71588,10 +73955,13 @@ export declare type Query = {
|
|
|
71588
73955
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
71589
73956
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
71590
73957
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
73958
|
+
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
71591
73959
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
73960
|
+
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
71592
73961
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
71593
73962
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
71594
73963
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
73964
|
+
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
71595
73965
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
71596
73966
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
71597
73967
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -71687,6 +74057,8 @@ export declare type Query = {
|
|
|
71687
74057
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
71688
74058
|
jiraReleases?: Maybe<JiraReleases>;
|
|
71689
74059
|
jiraServers?: Maybe<JiraServersResult>;
|
|
74060
|
+
jira_boardView?: Maybe<JiraBoardView>;
|
|
74061
|
+
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
71690
74062
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
71691
74063
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
71692
74064
|
jsw?: Maybe<JswQuery>;
|
|
@@ -71699,9 +74071,13 @@ export declare type Query = {
|
|
|
71699
74071
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
71700
74072
|
loomToken?: Maybe<LoomToken>;
|
|
71701
74073
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
74074
|
+
loom_meeting?: Maybe<LoomMeeting>;
|
|
74075
|
+
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
71702
74076
|
loom_space?: Maybe<LoomSpace>;
|
|
74077
|
+
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
71703
74078
|
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
71704
74079
|
loom_video?: Maybe<LoomVideo>;
|
|
74080
|
+
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
71705
74081
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
71706
74082
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
71707
74083
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -71714,7 +74090,6 @@ export declare type Query = {
|
|
|
71714
74090
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
71715
74091
|
me: AuthenticationContext;
|
|
71716
74092
|
mercury?: Maybe<MercuryQueryApi>;
|
|
71717
|
-
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
71718
74093
|
migration: MigrationQuery;
|
|
71719
74094
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
71720
74095
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -73067,6 +75442,10 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
73067
75442
|
export declare type QueryConfluence_StorageArgs = {
|
|
73068
75443
|
cloudId: Scalars['ID']['input'];
|
|
73069
75444
|
};
|
|
75445
|
+
export declare type QueryConfluence_TemplateArgs = {
|
|
75446
|
+
cloudId: Scalars['ID']['input'];
|
|
75447
|
+
contentTemplateId: Scalars['String']['input'];
|
|
75448
|
+
};
|
|
73070
75449
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
73071
75450
|
cloudId: Scalars['ID']['input'];
|
|
73072
75451
|
};
|
|
@@ -73240,6 +75619,10 @@ export declare type QueryContentWatchersArgs = {
|
|
|
73240
75619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73241
75620
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
73242
75621
|
};
|
|
75622
|
+
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
75623
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75624
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
75625
|
+
};
|
|
73243
75626
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
73244
75627
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
73245
75628
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -73378,11 +75761,19 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
73378
75761
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
73379
75762
|
ids: Array<Scalars['ID']['input']>;
|
|
73380
75763
|
};
|
|
75764
|
+
export declare type QueryDevai_AutodevAgentForJobArgs = {
|
|
75765
|
+
cloudId: Scalars['ID']['input'];
|
|
75766
|
+
jobId: Scalars['ID']['input'];
|
|
75767
|
+
};
|
|
73381
75768
|
export declare type QueryDevai_AutodevIssueScopingArgs = {
|
|
73382
75769
|
issueDescription?: InputMaybe<Scalars['String']['input']>;
|
|
73383
75770
|
issueId: Scalars['ID']['input'];
|
|
73384
75771
|
issueSummary: Scalars['String']['input'];
|
|
73385
75772
|
};
|
|
75773
|
+
export declare type QueryDevai_AutodevIssueScopingScoreForJobArgs = {
|
|
75774
|
+
cloudId: Scalars['ID']['input'];
|
|
75775
|
+
jobId: Scalars['ID']['input'];
|
|
75776
|
+
};
|
|
73386
75777
|
export declare type QueryDevai_AutodevJobFileContentsArgs = {
|
|
73387
75778
|
cloudId: Scalars['ID']['input'];
|
|
73388
75779
|
endLine?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -73404,6 +75795,12 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
73404
75795
|
jobId: Scalars['ID']['input'];
|
|
73405
75796
|
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
73406
75797
|
};
|
|
75798
|
+
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
75799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75800
|
+
cloudId: Scalars['ID']['input'];
|
|
75801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75802
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
75803
|
+
};
|
|
73407
75804
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
73408
75805
|
appId: Scalars['ID']['input'];
|
|
73409
75806
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -73692,6 +76089,12 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
73692
76089
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73693
76090
|
id: Scalars['ID']['input'];
|
|
73694
76091
|
};
|
|
76092
|
+
export declare type QueryJira_BoardViewArgs = {
|
|
76093
|
+
input: JiraBoardViewInput;
|
|
76094
|
+
};
|
|
76095
|
+
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
76096
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76097
|
+
};
|
|
73695
76098
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
73696
76099
|
cloudId: Scalars['ID']['input'];
|
|
73697
76100
|
idOrKey: Scalars['String']['input'];
|
|
@@ -73713,9 +76116,18 @@ export declare type QueryLabelSearchArgs = {
|
|
|
73713
76116
|
export declare type QueryLookAndFeelArgs = {
|
|
73714
76117
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
73715
76118
|
};
|
|
76119
|
+
export declare type QueryLoom_MeetingArgs = {
|
|
76120
|
+
id: Scalars['ID']['input'];
|
|
76121
|
+
};
|
|
76122
|
+
export declare type QueryLoom_MeetingsArgs = {
|
|
76123
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76124
|
+
};
|
|
73716
76125
|
export declare type QueryLoom_SpaceArgs = {
|
|
73717
76126
|
id: Scalars['ID']['input'];
|
|
73718
76127
|
};
|
|
76128
|
+
export declare type QueryLoom_SpacesArgs = {
|
|
76129
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76130
|
+
};
|
|
73719
76131
|
export declare type QueryLoom_SpacesSearchArgs = {
|
|
73720
76132
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
73721
76133
|
siteId: Scalars['ID']['input'];
|
|
@@ -73723,6 +76135,9 @@ export declare type QueryLoom_SpacesSearchArgs = {
|
|
|
73723
76135
|
export declare type QueryLoom_VideoArgs = {
|
|
73724
76136
|
id: Scalars['ID']['input'];
|
|
73725
76137
|
};
|
|
76138
|
+
export declare type QueryLoom_VideosArgs = {
|
|
76139
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76140
|
+
};
|
|
73726
76141
|
export declare type QueryMacroBodyRendererArgs = {
|
|
73727
76142
|
adf: Scalars['String']['input'];
|
|
73728
76143
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76994,7 +79409,9 @@ export declare enum SearchSortOrder {
|
|
|
76994
79409
|
Desc = "DESC"
|
|
76995
79410
|
}
|
|
76996
79411
|
export declare type SearchThirdPartyFilter = {
|
|
79412
|
+
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76997
79413
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79414
|
+
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76998
79415
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
76999
79416
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
77000
79417
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -77287,6 +79704,26 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
77287
79704
|
strategy: SwimlaneStrategy;
|
|
77288
79705
|
success: Scalars['Boolean']['output'];
|
|
77289
79706
|
};
|
|
79707
|
+
export declare type SettingsDisplayProperty = {
|
|
79708
|
+
__typename?: 'SettingsDisplayProperty';
|
|
79709
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
79710
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
79711
|
+
};
|
|
79712
|
+
export declare type SettingsDisplayPropertyConnection = {
|
|
79713
|
+
__typename?: 'SettingsDisplayPropertyConnection';
|
|
79714
|
+
edges?: Maybe<Array<SettingsDisplayPropertyEdge>>;
|
|
79715
|
+
nodes?: Maybe<Array<Maybe<SettingsDisplayProperty>>>;
|
|
79716
|
+
pageInfo: PageInfo;
|
|
79717
|
+
};
|
|
79718
|
+
export declare type SettingsDisplayPropertyEdge = {
|
|
79719
|
+
__typename?: 'SettingsDisplayPropertyEdge';
|
|
79720
|
+
cursor: Scalars['String']['output'];
|
|
79721
|
+
node?: Maybe<SettingsDisplayProperty>;
|
|
79722
|
+
};
|
|
79723
|
+
export declare type SettingsDisplayPropertyInput = {
|
|
79724
|
+
key: Scalars['ID']['input'];
|
|
79725
|
+
value: Scalars['String']['input'];
|
|
79726
|
+
};
|
|
77290
79727
|
export declare type SettingsMenuItem = {
|
|
77291
79728
|
__typename?: 'SettingsMenuItem';
|
|
77292
79729
|
menuId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -77309,8 +79746,13 @@ export declare type SettingsMenuItemInput = {
|
|
|
77309
79746
|
};
|
|
77310
79747
|
export declare type SettingsNavigationCustomisation = {
|
|
77311
79748
|
__typename?: 'SettingsNavigationCustomisation';
|
|
79749
|
+
properties?: Maybe<SettingsDisplayPropertyConnection>;
|
|
77312
79750
|
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
77313
79751
|
};
|
|
79752
|
+
export declare type SettingsNavigationCustomisationPropertiesArgs = {
|
|
79753
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79754
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79755
|
+
};
|
|
77314
79756
|
export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
77315
79757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77316
79758
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -77318,6 +79760,7 @@ export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
|
77318
79760
|
export declare type SettingsNavigationCustomisationInput = {
|
|
77319
79761
|
entityAri: Scalars['ID']['input'];
|
|
77320
79762
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79763
|
+
properties?: InputMaybe<Array<InputMaybe<SettingsDisplayPropertyInput>>>;
|
|
77321
79764
|
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
77322
79765
|
};
|
|
77323
79766
|
export declare type ShareResourceInput = {
|
|
@@ -77879,16 +80322,6 @@ export declare type ShepherdCreateAlertsPayload = Payload & {
|
|
|
77879
80322
|
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
77880
80323
|
success: Scalars['Boolean']['output'];
|
|
77881
80324
|
};
|
|
77882
|
-
export declare type ShepherdCreateExampleAlertInput = {
|
|
77883
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77884
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
77885
|
-
};
|
|
77886
|
-
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
77887
|
-
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
77888
|
-
errors?: Maybe<Array<MutationError>>;
|
|
77889
|
-
node?: Maybe<ShepherdAlert>;
|
|
77890
|
-
success: Scalars['Boolean']['output'];
|
|
77891
|
-
};
|
|
77892
80325
|
export declare type ShepherdCreateSlackInput = {
|
|
77893
80326
|
authToken: Scalars['String']['input'];
|
|
77894
80327
|
callbackURL: Scalars['URL']['input'];
|
|
@@ -78210,7 +80643,6 @@ export declare type ShepherdMutation = {
|
|
|
78210
80643
|
actor?: Maybe<ShepherdActorMutations>;
|
|
78211
80644
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
78212
80645
|
createAlerts?: Maybe<ShepherdCreateAlertsPayload>;
|
|
78213
|
-
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
78214
80646
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
78215
80647
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
78216
80648
|
redaction?: Maybe<ShepherdRedactionMutations>;
|
|
@@ -78226,9 +80658,6 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
78226
80658
|
export declare type ShepherdMutationCreateAlertsArgs = {
|
|
78227
80659
|
input: Array<ShepherdCreateAlertInput>;
|
|
78228
80660
|
};
|
|
78229
|
-
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
78230
|
-
input: ShepherdCreateExampleAlertInput;
|
|
78231
|
-
};
|
|
78232
80661
|
export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
78233
80662
|
workspaceId: Scalars['ID']['input'];
|
|
78234
80663
|
};
|
|
@@ -78262,7 +80691,6 @@ export declare type ShepherdQuery = {
|
|
|
78262
80691
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
78263
80692
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
78264
80693
|
shepherdAppInfo: ShepherdAppInfo;
|
|
78265
|
-
shepherdUser?: Maybe<ShepherdUser>;
|
|
78266
80694
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
78267
80695
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
78268
80696
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
@@ -78285,9 +80713,6 @@ export declare type ShepherdQueryShepherdActorArgs = {
|
|
|
78285
80713
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
78286
80714
|
id: Scalars['ID']['input'];
|
|
78287
80715
|
};
|
|
78288
|
-
export declare type ShepherdQueryShepherdUserArgs = {
|
|
78289
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78290
|
-
};
|
|
78291
80716
|
export declare type ShepherdQuerySubscriptionsArgs = {
|
|
78292
80717
|
workspaceId: Scalars['ID']['input'];
|
|
78293
80718
|
};
|
|
@@ -82506,6 +84931,7 @@ export declare type TrelloCardLocation = {
|
|
|
82506
84931
|
address?: Maybe<Scalars['String']['output']>;
|
|
82507
84932
|
coordinates?: Maybe<TrelloCardCoordinates>;
|
|
82508
84933
|
name?: Maybe<Scalars['String']['output']>;
|
|
84934
|
+
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
82509
84935
|
};
|
|
82510
84936
|
export declare enum TrelloCardRole {
|
|
82511
84937
|
Board = "BOARD",
|
|
@@ -82531,6 +84957,7 @@ export declare type TrelloCardUpdated = {
|
|
|
82531
84957
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
82532
84958
|
name?: Maybe<Scalars['String']['output']>;
|
|
82533
84959
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
84960
|
+
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
82534
84961
|
position?: Maybe<Scalars['Float']['output']>;
|
|
82535
84962
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
82536
84963
|
};
|
|
@@ -82546,6 +84973,7 @@ export declare type TrelloCardViewer = {
|
|
|
82546
84973
|
export declare type TrelloCheckItem = {
|
|
82547
84974
|
__typename?: 'TrelloCheckItem';
|
|
82548
84975
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
84976
|
+
member?: Maybe<TrelloMember>;
|
|
82549
84977
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
82550
84978
|
objectId: Scalars['ID']['output'];
|
|
82551
84979
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -82602,6 +85030,10 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
82602
85030
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
82603
85031
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
82604
85032
|
};
|
|
85033
|
+
export declare type TrelloChecklistDeleted = {
|
|
85034
|
+
__typename?: 'TrelloChecklistDeleted';
|
|
85035
|
+
objectId: Scalars['ID']['output'];
|
|
85036
|
+
};
|
|
82605
85037
|
export declare type TrelloChecklistEdge = {
|
|
82606
85038
|
__typename?: 'TrelloChecklistEdge';
|
|
82607
85039
|
cursor: Scalars['String']['output'];
|
|
@@ -82639,6 +85071,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
82639
85071
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
82640
85072
|
errors?: Maybe<Array<MutationError>>;
|
|
82641
85073
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
85074
|
+
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
82642
85075
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
82643
85076
|
success: Scalars['Boolean']['output'];
|
|
82644
85077
|
};
|
|
@@ -82920,7 +85353,7 @@ export declare type TrelloMember = Node & {
|
|
|
82920
85353
|
__typename?: 'TrelloMember';
|
|
82921
85354
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
82922
85355
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
82923
|
-
avatarUrl?: Maybe<Scalars['
|
|
85356
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
82924
85357
|
bio?: Maybe<Scalars['String']['output']>;
|
|
82925
85358
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
82926
85359
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -82934,7 +85367,7 @@ export declare type TrelloMember = Node & {
|
|
|
82934
85367
|
objectId: Scalars['ID']['output'];
|
|
82935
85368
|
planner?: Maybe<TrelloPlanner>;
|
|
82936
85369
|
referrer?: Maybe<TrelloMember>;
|
|
82937
|
-
url?: Maybe<Scalars['
|
|
85370
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
82938
85371
|
user?: Maybe<User>;
|
|
82939
85372
|
username?: Maybe<Scalars['String']['output']>;
|
|
82940
85373
|
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
@@ -82957,7 +85390,7 @@ export declare type TrelloMemberEdge = {
|
|
|
82957
85390
|
};
|
|
82958
85391
|
export declare type TrelloMemberNonPublicData = {
|
|
82959
85392
|
__typename?: 'TrelloMemberNonPublicData';
|
|
82960
|
-
avatarUrl?: Maybe<Scalars['
|
|
85393
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
82961
85394
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
82962
85395
|
initials?: Maybe<Scalars['String']['output']>;
|
|
82963
85396
|
};
|
|
@@ -83221,7 +85654,7 @@ export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
|
83221
85654
|
};
|
|
83222
85655
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
83223
85656
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
83224
|
-
url?: Maybe<Scalars['
|
|
85657
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
83225
85658
|
};
|
|
83226
85659
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
83227
85660
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -83259,6 +85692,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
83259
85692
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
83260
85693
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
83261
85694
|
};
|
|
85695
|
+
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
83262
85696
|
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
83263
85697
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
83264
85698
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
@@ -83322,11 +85756,12 @@ export declare type TrelloPowerUpDataFilterInput = {
|
|
|
83322
85756
|
export declare enum TrelloPowerUpDataScope {
|
|
83323
85757
|
Board = "BOARD",
|
|
83324
85758
|
Card = "CARD",
|
|
85759
|
+
Member = "MEMBER",
|
|
83325
85760
|
Organization = "ORGANIZATION"
|
|
83326
85761
|
}
|
|
83327
85762
|
export declare type TrelloPowerUpIcon = {
|
|
83328
85763
|
__typename?: 'TrelloPowerUpIcon';
|
|
83329
|
-
url?: Maybe<Scalars['
|
|
85764
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
83330
85765
|
};
|
|
83331
85766
|
export declare type TrelloPowerUpUpdated = {
|
|
83332
85767
|
__typename?: 'TrelloPowerUpUpdated';
|
|
@@ -83438,6 +85873,7 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
83438
85873
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83439
85874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83440
85875
|
id: Scalars['ID']['input'];
|
|
85876
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
83441
85877
|
workspaceId: Scalars['ID']['input'];
|
|
83442
85878
|
};
|
|
83443
85879
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
@@ -83487,7 +85923,7 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
83487
85923
|
export declare type TrelloScaleProps = {
|
|
83488
85924
|
__typename?: 'TrelloScaleProps';
|
|
83489
85925
|
height?: Maybe<Scalars['Int']['output']>;
|
|
83490
|
-
url?: Maybe<Scalars['
|
|
85926
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
83491
85927
|
width?: Maybe<Scalars['Int']['output']>;
|
|
83492
85928
|
};
|
|
83493
85929
|
export declare type TrelloSticker = {
|
|
@@ -83573,7 +86009,7 @@ export declare type TrelloTemplateGalleryFilterInput = {
|
|
|
83573
86009
|
export declare type TrelloTemplateGalleryItemInfo = {
|
|
83574
86010
|
__typename?: 'TrelloTemplateGalleryItemInfo';
|
|
83575
86011
|
avatarShape?: Maybe<Scalars['String']['output']>;
|
|
83576
|
-
avatarUrl?: Maybe<Scalars['
|
|
86012
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
83577
86013
|
blurb?: Maybe<Scalars['String']['output']>;
|
|
83578
86014
|
byline?: Maybe<Scalars['String']['output']>;
|
|
83579
86015
|
category: TrelloTemplateGalleryCategory;
|
|
@@ -83684,6 +86120,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
83684
86120
|
};
|
|
83685
86121
|
export declare type TrelloWorkspace = Node & {
|
|
83686
86122
|
__typename?: 'TrelloWorkspace';
|
|
86123
|
+
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
83687
86124
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
83688
86125
|
description?: Maybe<Scalars['String']['output']>;
|
|
83689
86126
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -83700,7 +86137,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
83700
86137
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
83701
86138
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
83702
86139
|
tags?: Maybe<TrelloTagConnection>;
|
|
83703
|
-
url?: Maybe<Scalars['
|
|
86140
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
83704
86141
|
website?: Maybe<Scalars['String']['output']>;
|
|
83705
86142
|
};
|
|
83706
86143
|
export declare type TrelloWorkspaceMembersArgs = {
|
|
@@ -83851,6 +86288,19 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
83851
86288
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
83852
86289
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
83853
86290
|
};
|
|
86291
|
+
export declare type UnifiedCacheInvalidationResult = {
|
|
86292
|
+
__typename?: 'UnifiedCacheInvalidationResult';
|
|
86293
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
86294
|
+
success: Scalars['Boolean']['output'];
|
|
86295
|
+
};
|
|
86296
|
+
export declare type UnifiedCachingMutation = {
|
|
86297
|
+
__typename?: 'UnifiedCachingMutation';
|
|
86298
|
+
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
86299
|
+
};
|
|
86300
|
+
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
86301
|
+
aaid: Scalars['String']['input'];
|
|
86302
|
+
dataPoint: Scalars['String']['input'];
|
|
86303
|
+
};
|
|
83854
86304
|
export declare type UnifiedForums = UnifiedINode & {
|
|
83855
86305
|
__typename?: 'UnifiedForums';
|
|
83856
86306
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
@@ -83889,6 +86339,7 @@ export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
|
83889
86339
|
};
|
|
83890
86340
|
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
83891
86341
|
__typename?: 'UnifiedForumsGroup';
|
|
86342
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
83892
86343
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
83893
86344
|
description?: Maybe<Scalars['String']['output']>;
|
|
83894
86345
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -84170,6 +86621,7 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
84170
86621
|
export declare type UnifiedMutation = {
|
|
84171
86622
|
__typename?: 'UnifiedMutation';
|
|
84172
86623
|
account?: Maybe<UnifiedAccountMutation>;
|
|
86624
|
+
caching?: Maybe<UnifiedCachingMutation>;
|
|
84173
86625
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
84174
86626
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
84175
86627
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
@@ -85067,6 +87519,11 @@ export declare type UpdateUserInstallationRulesInput = {
|
|
|
85067
87519
|
cloudId: Scalars['ID']['input'];
|
|
85068
87520
|
rule: UserInstallationRuleValue;
|
|
85069
87521
|
};
|
|
87522
|
+
export declare type UpgradeableByRollout = {
|
|
87523
|
+
__typename?: 'UpgradeableByRollout';
|
|
87524
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
87525
|
+
upgradeableByRollout: Scalars['Boolean']['output'];
|
|
87526
|
+
};
|
|
85070
87527
|
export declare type User = {
|
|
85071
87528
|
accountId: Scalars['ID']['output'];
|
|
85072
87529
|
accountStatus: AccountStatus;
|