@forge/cli-shared 8.14.0-next.1 → 8.14.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 +13 -0
- package/LICENSE.txt +1 -1
- package/out/graphql/graphql-types.d.ts +959 -457
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -9
- package/package.json +2 -2
|
@@ -158,19 +158,45 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
158
158
|
errors?: Maybe<Array<MutationError>>;
|
|
159
159
|
success: Scalars['Boolean']['output'];
|
|
160
160
|
};
|
|
161
|
+
export declare type AvpAnalyticsDimension = {
|
|
162
|
+
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
163
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
164
|
+
};
|
|
165
|
+
export declare type AvpAnalyticsDimensionValueData = {
|
|
166
|
+
__typename?: 'AVPAnalyticsDimensionValueData';
|
|
167
|
+
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
168
|
+
name: Scalars['String']['output'];
|
|
169
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
170
|
+
};
|
|
171
|
+
export declare type AvpAnalyticsDimensionValueDataRow = {
|
|
172
|
+
__typename?: 'AVPAnalyticsDimensionValueDataRow';
|
|
173
|
+
dimensionValueDataList: Array<AvpAnalyticsDimensionValueData>;
|
|
174
|
+
};
|
|
175
|
+
export declare type AvpAnalyticsGetModelDataRequest = {
|
|
176
|
+
cloudId: Scalars['ID']['input'];
|
|
177
|
+
dimensions?: InputMaybe<Array<InputMaybe<AvpAnalyticsDimension>>>;
|
|
178
|
+
modelId: Scalars['String']['input'];
|
|
179
|
+
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
180
|
+
product: AvpAnalyticsProductType;
|
|
181
|
+
type: AvpAnalyticsModelType;
|
|
182
|
+
workspaceId: Scalars['ID']['input'];
|
|
183
|
+
};
|
|
184
|
+
export declare type AvpAnalyticsGetModelDataResponse = {
|
|
185
|
+
__typename?: 'AVPAnalyticsGetModelDataResponse';
|
|
186
|
+
dimensionValueDataRows: Array<AvpAnalyticsDimensionValueDataRow>;
|
|
187
|
+
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
188
|
+
};
|
|
161
189
|
export declare type AvpAnalyticsListModelsRequest = {
|
|
162
190
|
cloudId: Scalars['ID']['input'];
|
|
163
|
-
|
|
164
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
191
|
+
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
165
192
|
product: AvpAnalyticsProductType;
|
|
166
193
|
type: AvpAnalyticsModelType;
|
|
167
194
|
workspaceId: Scalars['ID']['input'];
|
|
168
195
|
};
|
|
169
196
|
export declare type AvpAnalyticsListModelsResponse = {
|
|
170
197
|
__typename?: 'AVPAnalyticsListModelsResponse';
|
|
171
|
-
hasMore: Scalars['Boolean']['output'];
|
|
172
198
|
models: Array<AvpAnalyticsModelSummary>;
|
|
173
|
-
|
|
199
|
+
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
174
200
|
};
|
|
175
201
|
export declare enum AvpAnalyticsModelStatus {
|
|
176
202
|
Active = "ACTIVE",
|
|
@@ -194,6 +220,17 @@ export declare enum AvpAnalyticsModelType {
|
|
|
194
220
|
Primary = "PRIMARY",
|
|
195
221
|
UserDefined = "USER_DEFINED"
|
|
196
222
|
}
|
|
223
|
+
export declare type AvpAnalyticsPaginationRequest = {
|
|
224
|
+
page?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
pageSize: Scalars['Int']['input'];
|
|
226
|
+
};
|
|
227
|
+
export declare type AvpAnalyticsPaginationResponse = {
|
|
228
|
+
__typename?: 'AVPAnalyticsPaginationResponse';
|
|
229
|
+
currentPageSize: Scalars['Int']['output'];
|
|
230
|
+
isLastPage: Scalars['Boolean']['output'];
|
|
231
|
+
nextPage?: Maybe<Scalars['String']['output']>;
|
|
232
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
233
|
+
};
|
|
197
234
|
export declare enum AvpAnalyticsProductType {
|
|
198
235
|
Assets = "ASSETS",
|
|
199
236
|
Jira = "JIRA"
|
|
@@ -8146,6 +8183,11 @@ export declare type BlockServiceDeleteBlockPayload = {
|
|
|
8146
8183
|
blockAri: Scalars['String']['output'];
|
|
8147
8184
|
deleted: Scalars['Boolean']['output'];
|
|
8148
8185
|
};
|
|
8186
|
+
export declare type BlockServiceDocumentReferenceBlocksPayload = {
|
|
8187
|
+
__typename?: 'BlockServiceDocumentReferenceBlocksPayload';
|
|
8188
|
+
blocks: Array<BlockServiceBlockPayload>;
|
|
8189
|
+
errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
|
|
8190
|
+
};
|
|
8149
8191
|
export declare type BlockSmartLink = SmartLink & {
|
|
8150
8192
|
__typename?: 'BlockSmartLink';
|
|
8151
8193
|
url: Scalars['String']['output'];
|
|
@@ -9861,6 +9903,13 @@ export declare enum CcpPaymentMethodType {
|
|
|
9861
9903
|
Deferred = "DEFERRED",
|
|
9862
9904
|
Paypal = "PAYPAL"
|
|
9863
9905
|
}
|
|
9906
|
+
export declare type CcpPhase = {
|
|
9907
|
+
__typename?: 'CcpPhase';
|
|
9908
|
+
chargeDetails?: Maybe<CcpNextCycleChargeDetails>;
|
|
9909
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
9910
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
9911
|
+
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
9912
|
+
};
|
|
9864
9913
|
export declare type CcpPlaceOrderLiteExperienceCapability = CommerceExperienceCapability & {
|
|
9865
9914
|
__typename?: 'CcpPlaceOrderLiteExperienceCapability';
|
|
9866
9915
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -10649,6 +10698,7 @@ export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
|
10649
10698
|
export declare type CcpScheduledChanges = {
|
|
10650
10699
|
__typename?: 'CcpScheduledChanges';
|
|
10651
10700
|
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
10701
|
+
phases?: Maybe<Array<Maybe<CcpPhase>>>;
|
|
10652
10702
|
};
|
|
10653
10703
|
export declare type CcpSearchFieldRangeInput = {
|
|
10654
10704
|
bounds: CcpSearchTimestampBoundsInput;
|
|
@@ -10848,6 +10898,23 @@ export declare type CcpUsageUpdateCadence = {
|
|
|
10848
10898
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
10849
10899
|
name?: Maybe<Scalars['String']['output']>;
|
|
10850
10900
|
};
|
|
10901
|
+
export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
|
|
10902
|
+
__typename?: 'ChangeManagementRovoRiskAssessmentSettingsPayload';
|
|
10903
|
+
isBusinessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10904
|
+
isComplianceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10905
|
+
isOperationalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10906
|
+
isTechnicalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10907
|
+
knowledgeBases?: Maybe<Array<Scalars['String']['output']>>;
|
|
10908
|
+
};
|
|
10909
|
+
export declare type ChangeManagementUpdateRovoRiskAssessmentSettingsInput = {
|
|
10910
|
+
cloudId: Scalars['ID']['input'];
|
|
10911
|
+
isBusinessEnabled: Scalars['Boolean']['input'];
|
|
10912
|
+
isComplianceEnabled: Scalars['Boolean']['input'];
|
|
10913
|
+
isOperationalEnabled: Scalars['Boolean']['input'];
|
|
10914
|
+
isTechnicalEnabled: Scalars['Boolean']['input'];
|
|
10915
|
+
knowledgeBases: Array<Scalars['String']['input']>;
|
|
10916
|
+
projectId: Scalars['String']['input'];
|
|
10917
|
+
};
|
|
10851
10918
|
export declare type ChangeOwnerWarning = {
|
|
10852
10919
|
__typename?: 'ChangeOwnerWarning';
|
|
10853
10920
|
contentId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -16924,6 +16991,10 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
16924
16991
|
__typename?: 'ConfluenceAdminReportStatus';
|
|
16925
16992
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
16926
16993
|
};
|
|
16994
|
+
export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
16995
|
+
__typename?: 'ConfluenceAdvancedDiagramsFeature';
|
|
16996
|
+
isEntitled: Scalars['Boolean']['output'];
|
|
16997
|
+
};
|
|
16927
16998
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
16928
16999
|
Database = "database",
|
|
16929
17000
|
Page = "page",
|
|
@@ -20360,7 +20431,6 @@ export declare type ConfluencePlaylist = {
|
|
|
20360
20431
|
__typename?: 'ConfluencePlaylist';
|
|
20361
20432
|
accountId: Scalars['ID']['output'];
|
|
20362
20433
|
tracks: ConfluencePaginatedTracks;
|
|
20363
|
-
user?: Maybe<Person>;
|
|
20364
20434
|
};
|
|
20365
20435
|
export declare type ConfluencePlaylistTracksArgs = {
|
|
20366
20436
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22177,6 +22247,7 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
22177
22247
|
};
|
|
22178
22248
|
export declare type ConfluenceUpdateSpaceSettingsInput = {
|
|
22179
22249
|
id: Scalars['String']['input'];
|
|
22250
|
+
pdfExportNoCodeStylingOptedIn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22180
22251
|
routeOverrideEnabled: Scalars['Boolean']['input'];
|
|
22181
22252
|
};
|
|
22182
22253
|
export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
@@ -24681,10 +24752,14 @@ export declare enum ConvoAiActionStatus {
|
|
|
24681
24752
|
export declare type ConvoAiAgentAction = {
|
|
24682
24753
|
__typename?: 'ConvoAiAgentAction';
|
|
24683
24754
|
actionId?: Maybe<Scalars['String']['output']>;
|
|
24755
|
+
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
24684
24756
|
data: Scalars['JSON']['output'];
|
|
24757
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24758
|
+
humanMessageId?: Maybe<Scalars['String']['output']>;
|
|
24685
24759
|
invocationId: Scalars['String']['output'];
|
|
24686
24760
|
key: Scalars['String']['output'];
|
|
24687
24761
|
status?: Maybe<ConvoAiActionStatus>;
|
|
24762
|
+
toolSource?: Maybe<Scalars['String']['output']>;
|
|
24688
24763
|
};
|
|
24689
24764
|
export declare type ConvoAiAgentMessage = {
|
|
24690
24765
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
@@ -25285,6 +25360,11 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
|
25285
25360
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
25286
25361
|
};
|
|
25287
25362
|
export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
|
|
25363
|
+
export declare type CplsPlanSettings = {
|
|
25364
|
+
__typename?: 'CplsPlanSettings';
|
|
25365
|
+
filters?: Maybe<CplsFilters>;
|
|
25366
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
25367
|
+
};
|
|
25288
25368
|
export declare type CplsQueryErrorExtension = QueryErrorExtension & {
|
|
25289
25369
|
__typename?: 'CplsQueryErrorExtension';
|
|
25290
25370
|
errorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -25299,6 +25379,7 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
25299
25379
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25300
25380
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
25301
25381
|
};
|
|
25382
|
+
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
25302
25383
|
export declare type CplsTimeCell = {
|
|
25303
25384
|
__typename?: 'CplsTimeCell';
|
|
25304
25385
|
endDate: Scalars['Date']['output'];
|
|
@@ -25927,6 +26008,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
25927
26008
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
25928
26009
|
name: Scalars['String']['input'];
|
|
25929
26010
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
26011
|
+
taskId?: InputMaybe<Scalars['ID']['input']>;
|
|
25930
26012
|
type: JiraPlaybookStepType;
|
|
25931
26013
|
};
|
|
25932
26014
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
@@ -26399,6 +26481,11 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
26399
26481
|
errors?: Maybe<Array<MutationError>>;
|
|
26400
26482
|
success: Scalars['Boolean']['output'];
|
|
26401
26483
|
};
|
|
26484
|
+
export declare type CsmAiDeleteClientKeyPayload = Payload & {
|
|
26485
|
+
__typename?: 'CsmAiDeleteClientKeyPayload';
|
|
26486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26487
|
+
success: Scalars['Boolean']['output'];
|
|
26488
|
+
};
|
|
26402
26489
|
export declare type CsmAiDeleteCoachingContentPayload = Payload & {
|
|
26403
26490
|
__typename?: 'CsmAiDeleteCoachingContentPayload';
|
|
26404
26491
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26733,7 +26820,7 @@ export declare type CsmAiWidgetUpdateInput = {
|
|
|
26733
26820
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26734
26821
|
position?: InputMaybe<CsmAiWidgetPosition>;
|
|
26735
26822
|
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
26736
|
-
type
|
|
26823
|
+
type?: InputMaybe<CsmAiWidgetType>;
|
|
26737
26824
|
};
|
|
26738
26825
|
export declare type CumulativeFlowDiagram = {
|
|
26739
26826
|
__typename?: 'CumulativeFlowDiagram';
|
|
@@ -27985,6 +28072,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
27985
28072
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
27986
28073
|
helpCenterId: Scalars['ID']['output'];
|
|
27987
28074
|
id: Scalars['ID']['output'];
|
|
28075
|
+
isAiFillable?: Maybe<Scalars['Boolean']['output']>;
|
|
27988
28076
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
27989
28077
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
27990
28078
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -32356,6 +32444,7 @@ export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch |
|
|
|
32356
32444
|
export declare type ExternalAttachment = {
|
|
32357
32445
|
__typename?: 'ExternalAttachment';
|
|
32358
32446
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
32447
|
+
fileType?: Maybe<Scalars['String']['output']>;
|
|
32359
32448
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
32360
32449
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
32361
32450
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -32614,7 +32703,8 @@ export declare type ExternalConversation = Node & {
|
|
|
32614
32703
|
export declare enum ExternalConversationType {
|
|
32615
32704
|
Channel = "CHANNEL",
|
|
32616
32705
|
DirectMessage = "DIRECT_MESSAGE",
|
|
32617
|
-
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
32706
|
+
GroupDirectMessage = "GROUP_DIRECT_MESSAGE",
|
|
32707
|
+
GroupMeeting = "GROUP_MEETING"
|
|
32618
32708
|
}
|
|
32619
32709
|
export declare type ExternalCue = {
|
|
32620
32710
|
__typename?: 'ExternalCue';
|
|
@@ -33410,6 +33500,8 @@ export declare type ExternalSpace = Node & {
|
|
|
33410
33500
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
33411
33501
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
33412
33502
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
33503
|
+
parent?: Maybe<ExternalEntity>;
|
|
33504
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
33413
33505
|
provider?: Maybe<ExternalProvider>;
|
|
33414
33506
|
spaceType?: Maybe<Scalars['String']['output']>;
|
|
33415
33507
|
subtype?: Maybe<ExternalSpaceSubtype>;
|
|
@@ -39624,6 +39716,8 @@ export declare type GraphStore = {
|
|
|
39624
39716
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
39625
39717
|
jiraRepoIsProviderRepo?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoConnection>;
|
|
39626
39718
|
jiraRepoIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection>;
|
|
39719
|
+
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
39720
|
+
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
39627
39721
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
39628
39722
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
39629
39723
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
@@ -40022,6 +40116,8 @@ export declare type GraphStore = {
|
|
|
40022
40116
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
40023
40117
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
40024
40118
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
40119
|
+
userInvitedUser?: Maybe<GraphStoreSimplifiedUserInvitedUserConnection>;
|
|
40120
|
+
userInvitedUserInverse?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseConnection>;
|
|
40025
40121
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
40026
40122
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
40027
40123
|
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
@@ -42893,6 +42989,22 @@ export declare type GraphStoreJiraRepoIsProviderRepoInverseArgs = {
|
|
|
42893
42989
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
42894
42990
|
sort?: InputMaybe<GraphStoreJiraRepoIsProviderRepoSortInput>;
|
|
42895
42991
|
};
|
|
42992
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentArgs = {
|
|
42993
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42994
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42996
|
+
id: Scalars['ID']['input'];
|
|
42997
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
42998
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
42999
|
+
};
|
|
43000
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
43001
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43002
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43003
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43004
|
+
id: Scalars['ID']['input'];
|
|
43005
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43006
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
43007
|
+
};
|
|
42896
43008
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
42897
43009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42898
43010
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45967,6 +46079,22 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
|
45967
46079
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45968
46080
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
45969
46081
|
};
|
|
46082
|
+
export declare type GraphStoreUserInvitedUserArgs = {
|
|
46083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46084
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46085
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46086
|
+
id: Scalars['ID']['input'];
|
|
46087
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46088
|
+
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46089
|
+
};
|
|
46090
|
+
export declare type GraphStoreUserInvitedUserInverseArgs = {
|
|
46091
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46092
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46093
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46094
|
+
id: Scalars['ID']['input'];
|
|
46095
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46096
|
+
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46097
|
+
};
|
|
45970
46098
|
export declare type GraphStoreUserIsInTeamArgs = {
|
|
45971
46099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45972
46100
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54093,6 +54221,9 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
|
54093
54221
|
export declare type GraphStoreJiraRepoIsProviderRepoSortInput = {
|
|
54094
54222
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54095
54223
|
};
|
|
54224
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
54225
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54226
|
+
};
|
|
54096
54227
|
export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
54097
54228
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
54098
54229
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -58764,6 +58895,34 @@ export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseEdge = {
|
|
|
58764
58895
|
};
|
|
58765
58896
|
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseUnion = DevOpsRepository | ExternalRepository;
|
|
58766
58897
|
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoUnion = BitbucketRepository;
|
|
58898
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection = HasPageInfo & {
|
|
58899
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection';
|
|
58900
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge>>>;
|
|
58901
|
+
pageInfo: PageInfo;
|
|
58902
|
+
};
|
|
58903
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge = {
|
|
58904
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge';
|
|
58905
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58906
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58907
|
+
id: Scalars['ID']['output'];
|
|
58908
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58909
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion>;
|
|
58910
|
+
};
|
|
58911
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection = HasPageInfo & {
|
|
58912
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection';
|
|
58913
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge>>>;
|
|
58914
|
+
pageInfo: PageInfo;
|
|
58915
|
+
};
|
|
58916
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge = {
|
|
58917
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge';
|
|
58918
|
+
createdAt: Scalars['DateTime']['output'];
|
|
58919
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58920
|
+
id: Scalars['ID']['output'];
|
|
58921
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
58922
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion>;
|
|
58923
|
+
};
|
|
58924
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
58925
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
58767
58926
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
58768
58927
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
58769
58928
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
@@ -63020,6 +63179,34 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
|
63020
63179
|
};
|
|
63021
63180
|
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63022
63181
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
63182
|
+
export declare type GraphStoreSimplifiedUserInvitedUserConnection = HasPageInfo & {
|
|
63183
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserConnection';
|
|
63184
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserEdge>>>;
|
|
63185
|
+
pageInfo: PageInfo;
|
|
63186
|
+
};
|
|
63187
|
+
export declare type GraphStoreSimplifiedUserInvitedUserEdge = {
|
|
63188
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserEdge';
|
|
63189
|
+
createdAt: Scalars['DateTime']['output'];
|
|
63190
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
63191
|
+
id: Scalars['ID']['output'];
|
|
63192
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
63193
|
+
node?: Maybe<GraphStoreSimplifiedUserInvitedUserUnion>;
|
|
63194
|
+
};
|
|
63195
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseConnection = HasPageInfo & {
|
|
63196
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseConnection';
|
|
63197
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserInverseEdge>>>;
|
|
63198
|
+
pageInfo: PageInfo;
|
|
63199
|
+
};
|
|
63200
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseEdge = {
|
|
63201
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseEdge';
|
|
63202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
63203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
63204
|
+
id: Scalars['ID']['output'];
|
|
63205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
63206
|
+
node?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseUnion>;
|
|
63207
|
+
};
|
|
63208
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63209
|
+
export declare type GraphStoreSimplifiedUserInvitedUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63023
63210
|
export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
|
|
63024
63211
|
__typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
|
|
63025
63212
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
|
|
@@ -65809,6 +65996,9 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
|
65809
65996
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
65810
65997
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65811
65998
|
};
|
|
65999
|
+
export declare type GraphStoreUserInvitedUserSortInput = {
|
|
66000
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66001
|
+
};
|
|
65812
66002
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
65813
66003
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65814
66004
|
};
|
|
@@ -66119,18 +66309,12 @@ export declare type GraphStoreV2 = {
|
|
|
66119
66309
|
atlassianUserCreatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceSpaceInverseConnection>;
|
|
66120
66310
|
atlassianUserCreatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardConnection>;
|
|
66121
66311
|
atlassianUserCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
66122
|
-
atlassianUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection>;
|
|
66123
|
-
atlassianUserCreatedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection>;
|
|
66124
66312
|
atlassianUserCreatedExternalComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection>;
|
|
66125
66313
|
atlassianUserCreatedExternalCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInverseConnection>;
|
|
66126
|
-
atlassianUserCreatedExternalDocument?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection>;
|
|
66127
|
-
atlassianUserCreatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection>;
|
|
66128
66314
|
atlassianUserCreatedExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection>;
|
|
66129
66315
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
66130
66316
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
66131
66317
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
66132
|
-
atlassianUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection>;
|
|
66133
|
-
atlassianUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection>;
|
|
66134
66318
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
66135
66319
|
atlassianUserCreatedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseInverseConnection>;
|
|
66136
66320
|
atlassianUserCreatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraWorkItemConnection>;
|
|
@@ -66165,6 +66349,8 @@ export declare type GraphStoreV2 = {
|
|
|
66165
66349
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
66166
66350
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
66167
66351
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
66352
|
+
atlassianUserInvitedAtlassianUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection>;
|
|
66353
|
+
atlassianUserInvitedAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection>;
|
|
66168
66354
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
66169
66355
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
66170
66356
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
@@ -66175,14 +66361,10 @@ export declare type GraphStoreV2 = {
|
|
|
66175
66361
|
atlassianUserLikedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLikedConfluencePageInverseConnection>;
|
|
66176
66362
|
atlassianUserLinksExternalUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserLinksExternalUserConnection>;
|
|
66177
66363
|
atlassianUserLinksExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseConnection>;
|
|
66178
|
-
atlassianUserMemberOfExternalConversation?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection>;
|
|
66179
|
-
atlassianUserMemberOfExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection>;
|
|
66180
66364
|
atlassianUserMentionedInConfluenceComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection>;
|
|
66181
66365
|
atlassianUserMentionedInConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentInverseConnection>;
|
|
66182
66366
|
atlassianUserMentionedInConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageConnection>;
|
|
66183
66367
|
atlassianUserMentionedInConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageInverseConnection>;
|
|
66184
|
-
atlassianUserMentionedInExternalConversation?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationConnection>;
|
|
66185
|
-
atlassianUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection>;
|
|
66186
66368
|
atlassianUserMentionedInJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection>;
|
|
66187
66369
|
atlassianUserMentionedInJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentInverseConnection>;
|
|
66188
66370
|
atlassianUserMentionedInLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection>;
|
|
@@ -66197,12 +66379,8 @@ export declare type GraphStoreV2 = {
|
|
|
66197
66379
|
atlassianUserOwnsConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsConfluencePageInverseConnection>;
|
|
66198
66380
|
atlassianUserOwnsExternalBranch?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchConnection>;
|
|
66199
66381
|
atlassianUserOwnsExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverseConnection>;
|
|
66200
|
-
atlassianUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection>;
|
|
66201
|
-
atlassianUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection>;
|
|
66202
66382
|
atlassianUserOwnsExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection>;
|
|
66203
66383
|
atlassianUserOwnsExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInverseConnection>;
|
|
66204
|
-
atlassianUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection>;
|
|
66205
|
-
atlassianUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection>;
|
|
66206
66384
|
atlassianUserOwnsFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection>;
|
|
66207
66385
|
atlassianUserOwnsFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskInverseConnection>;
|
|
66208
66386
|
atlassianUserOwnsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaConnection>;
|
|
@@ -66215,8 +66393,6 @@ export declare type GraphStoreV2 = {
|
|
|
66215
66393
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
66216
66394
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
66217
66395
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
66218
|
-
atlassianUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection>;
|
|
66219
|
-
atlassianUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection>;
|
|
66220
66396
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
66221
66397
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
66222
66398
|
atlassianUserSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskConnection>;
|
|
@@ -66237,8 +66413,6 @@ export declare type GraphStoreV2 = {
|
|
|
66237
66413
|
atlassianUserUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceSpaceInverseConnection>;
|
|
66238
66414
|
atlassianUserUpdatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardConnection>;
|
|
66239
66415
|
atlassianUserUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
66240
|
-
atlassianUserUpdatedExternalDocument?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection>;
|
|
66241
|
-
atlassianUserUpdatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection>;
|
|
66242
66416
|
atlassianUserUpdatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection>;
|
|
66243
66417
|
atlassianUserUpdatedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemInverseConnection>;
|
|
66244
66418
|
atlassianUserViewedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalConnection>;
|
|
@@ -66404,6 +66578,8 @@ export declare type GraphStoreV2 = {
|
|
|
66404
66578
|
externalUserCollaboratedOnExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseConnection>;
|
|
66405
66579
|
externalUserCreatedExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection>;
|
|
66406
66580
|
externalUserCreatedExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseConnection>;
|
|
66581
|
+
externalUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection>;
|
|
66582
|
+
externalUserCreatedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection>;
|
|
66407
66583
|
externalUserCreatedExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection>;
|
|
66408
66584
|
externalUserCreatedExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitInverseConnection>;
|
|
66409
66585
|
externalUserCreatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCustomerContactConnection>;
|
|
@@ -66420,6 +66596,8 @@ export declare type GraphStoreV2 = {
|
|
|
66420
66596
|
externalUserCreatedExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDealInverseConnection>;
|
|
66421
66597
|
externalUserCreatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDesignConnection>;
|
|
66422
66598
|
externalUserCreatedExternalDesignInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInverseConnection>;
|
|
66599
|
+
externalUserCreatedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection>;
|
|
66600
|
+
externalUserCreatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection>;
|
|
66423
66601
|
externalUserCreatedExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection>;
|
|
66424
66602
|
externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
66425
66603
|
externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
@@ -66432,14 +66610,22 @@ export declare type GraphStoreV2 = {
|
|
|
66432
66610
|
externalUserCreatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamInverseConnection>;
|
|
66433
66611
|
externalUserCreatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestConnection>;
|
|
66434
66612
|
externalUserCreatedExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection>;
|
|
66613
|
+
externalUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection>;
|
|
66614
|
+
externalUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection>;
|
|
66435
66615
|
externalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection>;
|
|
66436
66616
|
externalUserFavoritedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection>;
|
|
66437
66617
|
externalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection>;
|
|
66438
66618
|
externalUserFavoritedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseConnection>;
|
|
66439
66619
|
externalUserLastUpdatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection>;
|
|
66440
66620
|
externalUserLastUpdatedExternalDesignInverse?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignInverseConnection>;
|
|
66621
|
+
externalUserMemberOfExternalConversation?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection>;
|
|
66622
|
+
externalUserMemberOfExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection>;
|
|
66623
|
+
externalUserMentionedInExternalConversation?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection>;
|
|
66624
|
+
externalUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection>;
|
|
66441
66625
|
externalUserMentionedInExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection>;
|
|
66442
66626
|
externalUserMentionedInExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseConnection>;
|
|
66627
|
+
externalUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection>;
|
|
66628
|
+
externalUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection>;
|
|
66443
66629
|
externalUserOwnsExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection>;
|
|
66444
66630
|
externalUserOwnsExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactInverseConnection>;
|
|
66445
66631
|
externalUserOwnsExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerOrgConnection>;
|
|
@@ -66452,6 +66638,8 @@ export declare type GraphStoreV2 = {
|
|
|
66452
66638
|
externalUserOwnsExternalDataTableInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDataTableInverseConnection>;
|
|
66453
66639
|
externalUserOwnsExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDealConnection>;
|
|
66454
66640
|
externalUserOwnsExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseConnection>;
|
|
66641
|
+
externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
66642
|
+
externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
66455
66643
|
externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
66456
66644
|
externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
66457
66645
|
externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -66460,6 +66648,8 @@ export declare type GraphStoreV2 = {
|
|
|
66460
66648
|
externalUserOwnsExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamInverseConnection>;
|
|
66461
66649
|
externalUserOwnsExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestConnection>;
|
|
66462
66650
|
externalUserOwnsExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection>;
|
|
66651
|
+
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
66652
|
+
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
66463
66653
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
66464
66654
|
externalUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactInverseConnection>;
|
|
66465
66655
|
externalUserUpdatedExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerOrgConnection>;
|
|
@@ -66472,6 +66662,8 @@ export declare type GraphStoreV2 = {
|
|
|
66472
66662
|
externalUserUpdatedExternalDataTableInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDataTableInverseConnection>;
|
|
66473
66663
|
externalUserUpdatedExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDealConnection>;
|
|
66474
66664
|
externalUserUpdatedExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverseConnection>;
|
|
66665
|
+
externalUserUpdatedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection>;
|
|
66666
|
+
externalUserUpdatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection>;
|
|
66475
66667
|
externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
66476
66668
|
externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
66477
66669
|
externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -66584,6 +66776,8 @@ export declare type GraphStoreV2 = {
|
|
|
66584
66776
|
jiraWorkItemBlocksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemBlocksJiraWorkItemInverseConnection>;
|
|
66585
66777
|
jiraWorkItemChangesCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentConnection>;
|
|
66586
66778
|
jiraWorkItemChangesCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInverseConnection>;
|
|
66779
|
+
jiraWorkItemCommentHasChildJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection>;
|
|
66780
|
+
jiraWorkItemCommentHasChildJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection>;
|
|
66587
66781
|
jiraWorkItemContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection>;
|
|
66588
66782
|
jiraWorkItemContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseConnection>;
|
|
66589
66783
|
jiraWorkItemHasAtlassianAutodevJob?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection>;
|
|
@@ -67219,22 +67413,6 @@ export declare type GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardInverseA
|
|
|
67219
67413
|
id: Scalars['ID']['input'];
|
|
67220
67414
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardSortInput>;
|
|
67221
67415
|
};
|
|
67222
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventArgs = {
|
|
67223
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67224
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67225
|
-
filter?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput>;
|
|
67226
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67227
|
-
id: Scalars['ID']['input'];
|
|
67228
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput>;
|
|
67229
|
-
};
|
|
67230
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventInverseArgs = {
|
|
67231
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67232
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67233
|
-
filter?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput>;
|
|
67234
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67235
|
-
id: Scalars['ID']['input'];
|
|
67236
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput>;
|
|
67237
|
-
};
|
|
67238
67416
|
export declare type GraphStoreV2AtlassianUserCreatedExternalCommentArgs = {
|
|
67239
67417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67240
67418
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67249,20 +67427,6 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalCommentInverseArgs =
|
|
|
67249
67427
|
id: Scalars['ID']['input'];
|
|
67250
67428
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCommentSortInput>;
|
|
67251
67429
|
};
|
|
67252
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentArgs = {
|
|
67253
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67254
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67255
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67256
|
-
id: Scalars['ID']['input'];
|
|
67257
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput>;
|
|
67258
|
-
};
|
|
67259
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentInverseArgs = {
|
|
67260
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67261
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67262
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67263
|
-
id: Scalars['ID']['input'];
|
|
67264
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput>;
|
|
67265
|
-
};
|
|
67266
67430
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkArgs = {
|
|
67267
67431
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67268
67432
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67291,20 +67455,6 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
67291
67455
|
id: Scalars['ID']['input'];
|
|
67292
67456
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
67293
67457
|
};
|
|
67294
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemArgs = {
|
|
67295
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67296
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67297
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67298
|
-
id: Scalars['ID']['input'];
|
|
67299
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput>;
|
|
67300
|
-
};
|
|
67301
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemInverseArgs = {
|
|
67302
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67303
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67304
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67305
|
-
id: Scalars['ID']['input'];
|
|
67306
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput>;
|
|
67307
|
-
};
|
|
67308
67458
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseArgs = {
|
|
67309
67459
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67310
67460
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67545,6 +67695,20 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceInverseArgs = {
|
|
|
67545
67695
|
id: Scalars['ID']['input'];
|
|
67546
67696
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput>;
|
|
67547
67697
|
};
|
|
67698
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserArgs = {
|
|
67699
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67700
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67701
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67702
|
+
id: Scalars['ID']['input'];
|
|
67703
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
67704
|
+
};
|
|
67705
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserInverseArgs = {
|
|
67706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67707
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67709
|
+
id: Scalars['ID']['input'];
|
|
67710
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
67711
|
+
};
|
|
67548
67712
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingArgs = {
|
|
67549
67713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67550
67714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67617,20 +67781,6 @@ export declare type GraphStoreV2AtlassianUserLinksExternalUserInverseArgs = {
|
|
|
67617
67781
|
id: Scalars['ID']['input'];
|
|
67618
67782
|
sort?: InputMaybe<GraphStoreV2AtlassianUserLinksExternalUserSortInput>;
|
|
67619
67783
|
};
|
|
67620
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationArgs = {
|
|
67621
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67622
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67623
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67624
|
-
id: Scalars['ID']['input'];
|
|
67625
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput>;
|
|
67626
|
-
};
|
|
67627
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationInverseArgs = {
|
|
67628
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67629
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67630
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67631
|
-
id: Scalars['ID']['input'];
|
|
67632
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput>;
|
|
67633
|
-
};
|
|
67634
67784
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluenceCommentArgs = {
|
|
67635
67785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67636
67786
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67659,20 +67809,6 @@ export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageInverseArg
|
|
|
67659
67809
|
id: Scalars['ID']['input'];
|
|
67660
67810
|
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput>;
|
|
67661
67811
|
};
|
|
67662
|
-
export declare type GraphStoreV2AtlassianUserMentionedInExternalConversationArgs = {
|
|
67663
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67664
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67665
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67666
|
-
id: Scalars['ID']['input'];
|
|
67667
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInExternalConversationSortInput>;
|
|
67668
|
-
};
|
|
67669
|
-
export declare type GraphStoreV2AtlassianUserMentionedInExternalConversationInverseArgs = {
|
|
67670
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67671
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67672
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67673
|
-
id: Scalars['ID']['input'];
|
|
67674
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInExternalConversationSortInput>;
|
|
67675
|
-
};
|
|
67676
67812
|
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentArgs = {
|
|
67677
67813
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67678
67814
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67773,20 +67909,6 @@ export declare type GraphStoreV2AtlassianUserOwnsExternalBranchInverseArgs = {
|
|
|
67773
67909
|
id: Scalars['ID']['input'];
|
|
67774
67910
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalBranchSortInput>;
|
|
67775
67911
|
};
|
|
67776
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventArgs = {
|
|
67777
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67778
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67779
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67780
|
-
id: Scalars['ID']['input'];
|
|
67781
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput>;
|
|
67782
|
-
};
|
|
67783
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventInverseArgs = {
|
|
67784
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67785
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67786
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67787
|
-
id: Scalars['ID']['input'];
|
|
67788
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput>;
|
|
67789
|
-
};
|
|
67790
67912
|
export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkArgs = {
|
|
67791
67913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67792
67914
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67801,20 +67923,6 @@ export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkInverseArgs =
|
|
|
67801
67923
|
id: Scalars['ID']['input'];
|
|
67802
67924
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRemoteLinkSortInput>;
|
|
67803
67925
|
};
|
|
67804
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositoryArgs = {
|
|
67805
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67806
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67807
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67808
|
-
id: Scalars['ID']['input'];
|
|
67809
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput>;
|
|
67810
|
-
};
|
|
67811
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositoryInverseArgs = {
|
|
67812
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67813
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67814
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67815
|
-
id: Scalars['ID']['input'];
|
|
67816
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput>;
|
|
67817
|
-
};
|
|
67818
67926
|
export declare type GraphStoreV2AtlassianUserOwnsFocusAskArgs = {
|
|
67819
67927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67820
67928
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67899,20 +68007,6 @@ export declare type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
67899
68007
|
id: Scalars['ID']['input'];
|
|
67900
68008
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
67901
68009
|
};
|
|
67902
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestArgs = {
|
|
67903
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67904
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67905
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67906
|
-
id: Scalars['ID']['input'];
|
|
67907
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput>;
|
|
67908
|
-
};
|
|
67909
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestInverseArgs = {
|
|
67910
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67911
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67912
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67913
|
-
id: Scalars['ID']['input'];
|
|
67914
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput>;
|
|
67915
|
-
};
|
|
67916
68010
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageArgs = {
|
|
67917
68011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67918
68012
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68053,20 +68147,6 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardInverseA
|
|
|
68053
68147
|
id: Scalars['ID']['input'];
|
|
68054
68148
|
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput>;
|
|
68055
68149
|
};
|
|
68056
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentArgs = {
|
|
68057
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68058
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68059
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68060
|
-
id: Scalars['ID']['input'];
|
|
68061
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput>;
|
|
68062
|
-
};
|
|
68063
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentInverseArgs = {
|
|
68064
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68065
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68066
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68067
|
-
id: Scalars['ID']['input'];
|
|
68068
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput>;
|
|
68069
|
-
};
|
|
68070
68150
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemArgs = {
|
|
68071
68151
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68072
68152
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69227,6 +69307,22 @@ export declare type GraphStoreV2ExternalUserCreatedExternalBranchInverseArgs = {
|
|
|
69227
69307
|
id: Scalars['ID']['input'];
|
|
69228
69308
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalBranchSortInput>;
|
|
69229
69309
|
};
|
|
69310
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventArgs = {
|
|
69311
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69312
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69313
|
+
filter?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput>;
|
|
69314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69315
|
+
id: Scalars['ID']['input'];
|
|
69316
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput>;
|
|
69317
|
+
};
|
|
69318
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventInverseArgs = {
|
|
69319
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69320
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69321
|
+
filter?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput>;
|
|
69322
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69323
|
+
id: Scalars['ID']['input'];
|
|
69324
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput>;
|
|
69325
|
+
};
|
|
69230
69326
|
export declare type GraphStoreV2ExternalUserCreatedExternalCommitArgs = {
|
|
69231
69327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69232
69328
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69339,6 +69435,20 @@ export declare type GraphStoreV2ExternalUserCreatedExternalDesignInverseArgs = {
|
|
|
69339
69435
|
id: Scalars['ID']['input'];
|
|
69340
69436
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDesignSortInput>;
|
|
69341
69437
|
};
|
|
69438
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentArgs = {
|
|
69439
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69440
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69442
|
+
id: Scalars['ID']['input'];
|
|
69443
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDocumentSortInput>;
|
|
69444
|
+
};
|
|
69445
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentInverseArgs = {
|
|
69446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69447
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69448
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69449
|
+
id: Scalars['ID']['input'];
|
|
69450
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDocumentSortInput>;
|
|
69451
|
+
};
|
|
69342
69452
|
export declare type GraphStoreV2ExternalUserCreatedExternalMessageArgs = {
|
|
69343
69453
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69344
69454
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69423,6 +69533,20 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
|
69423
69533
|
id: Scalars['ID']['input'];
|
|
69424
69534
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
69425
69535
|
};
|
|
69536
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemArgs = {
|
|
69537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69538
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69540
|
+
id: Scalars['ID']['input'];
|
|
69541
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput>;
|
|
69542
|
+
};
|
|
69543
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemInverseArgs = {
|
|
69544
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69545
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69547
|
+
id: Scalars['ID']['input'];
|
|
69548
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput>;
|
|
69549
|
+
};
|
|
69426
69550
|
export declare type GraphStoreV2ExternalUserFavoritedAtlassianGoalArgs = {
|
|
69427
69551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69428
69552
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69465,6 +69589,34 @@ export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignInverseArgs
|
|
|
69465
69589
|
id: Scalars['ID']['input'];
|
|
69466
69590
|
sort?: InputMaybe<GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput>;
|
|
69467
69591
|
};
|
|
69592
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationArgs = {
|
|
69593
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69594
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69595
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69596
|
+
id: Scalars['ID']['input'];
|
|
69597
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMemberOfExternalConversationSortInput>;
|
|
69598
|
+
};
|
|
69599
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationInverseArgs = {
|
|
69600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69601
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69602
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69603
|
+
id: Scalars['ID']['input'];
|
|
69604
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMemberOfExternalConversationSortInput>;
|
|
69605
|
+
};
|
|
69606
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationArgs = {
|
|
69607
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69608
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69609
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69610
|
+
id: Scalars['ID']['input'];
|
|
69611
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalConversationSortInput>;
|
|
69612
|
+
};
|
|
69613
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationInverseArgs = {
|
|
69614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69615
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69617
|
+
id: Scalars['ID']['input'];
|
|
69618
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalConversationSortInput>;
|
|
69619
|
+
};
|
|
69468
69620
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageArgs = {
|
|
69469
69621
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69470
69622
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69479,6 +69631,20 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalMessageInverseArg
|
|
|
69479
69631
|
id: Scalars['ID']['input'];
|
|
69480
69632
|
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalMessageSortInput>;
|
|
69481
69633
|
};
|
|
69634
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventArgs = {
|
|
69635
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69636
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69638
|
+
id: Scalars['ID']['input'];
|
|
69639
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput>;
|
|
69640
|
+
};
|
|
69641
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventInverseArgs = {
|
|
69642
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69643
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69645
|
+
id: Scalars['ID']['input'];
|
|
69646
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput>;
|
|
69647
|
+
};
|
|
69482
69648
|
export declare type GraphStoreV2ExternalUserOwnsExternalCustomerContactArgs = {
|
|
69483
69649
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69484
69650
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69563,6 +69729,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalDealInverseArgs = {
|
|
|
69563
69729
|
id: Scalars['ID']['input'];
|
|
69564
69730
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalDealSortInput>;
|
|
69565
69731
|
};
|
|
69732
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositoryArgs = {
|
|
69733
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69734
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69736
|
+
id: Scalars['ID']['input'];
|
|
69737
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
69738
|
+
};
|
|
69739
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
69740
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69741
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69743
|
+
id: Scalars['ID']['input'];
|
|
69744
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
69745
|
+
};
|
|
69566
69746
|
export declare type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
69567
69747
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69568
69748
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69619,6 +69799,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
|
69619
69799
|
id: Scalars['ID']['input'];
|
|
69620
69800
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
69621
69801
|
};
|
|
69802
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestArgs = {
|
|
69803
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69804
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69805
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69806
|
+
id: Scalars['ID']['input'];
|
|
69807
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
69808
|
+
};
|
|
69809
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestInverseArgs = {
|
|
69810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69811
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69813
|
+
id: Scalars['ID']['input'];
|
|
69814
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
69815
|
+
};
|
|
69622
69816
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactArgs = {
|
|
69623
69817
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69624
69818
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69703,6 +69897,20 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalDealInverseArgs = {
|
|
|
69703
69897
|
id: Scalars['ID']['input'];
|
|
69704
69898
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDealSortInput>;
|
|
69705
69899
|
};
|
|
69900
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentArgs = {
|
|
69901
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69902
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69903
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69904
|
+
id: Scalars['ID']['input'];
|
|
69905
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput>;
|
|
69906
|
+
};
|
|
69907
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentInverseArgs = {
|
|
69908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69909
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69911
|
+
id: Scalars['ID']['input'];
|
|
69912
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput>;
|
|
69913
|
+
};
|
|
69706
69914
|
export declare type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
69707
69915
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69708
69916
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70517,6 +70725,20 @@ export declare type GraphStoreV2JiraWorkItemChangesCompassComponentInverseArgs =
|
|
|
70517
70725
|
id: Scalars['ID']['input'];
|
|
70518
70726
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemChangesCompassComponentSortInput>;
|
|
70519
70727
|
};
|
|
70728
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentArgs = {
|
|
70729
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70730
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70731
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70732
|
+
id: Scalars['ID']['input'];
|
|
70733
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput>;
|
|
70734
|
+
};
|
|
70735
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentInverseArgs = {
|
|
70736
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70737
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70738
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70739
|
+
id: Scalars['ID']['input'];
|
|
70740
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput>;
|
|
70741
|
+
};
|
|
70520
70742
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalArgs = {
|
|
70521
70743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70522
70744
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71231,41 +71453,15 @@ export declare type GraphStoreV2AtlassianUserCreatedConfluenceSpaceSortInput = {
|
|
|
71231
71453
|
export declare type GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardSortInput = {
|
|
71232
71454
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71233
71455
|
};
|
|
71234
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput = {
|
|
71235
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
71236
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
71237
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
71238
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
71239
|
-
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
71240
|
-
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
71241
|
-
};
|
|
71242
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput = {
|
|
71243
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
71244
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
71245
|
-
};
|
|
71246
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput = {
|
|
71247
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71248
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71249
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71250
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71251
|
-
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
71252
|
-
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
71253
|
-
};
|
|
71254
71456
|
export declare type GraphStoreV2AtlassianUserCreatedExternalCommentSortInput = {
|
|
71255
71457
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71256
71458
|
};
|
|
71257
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput = {
|
|
71258
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71259
|
-
};
|
|
71260
71459
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput = {
|
|
71261
71460
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71262
71461
|
};
|
|
71263
71462
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
71264
71463
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71265
71464
|
};
|
|
71266
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput = {
|
|
71267
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71268
|
-
};
|
|
71269
71465
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseSortInput = {
|
|
71270
71466
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71271
71467
|
};
|
|
@@ -71367,6 +71563,9 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
|
71367
71563
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71368
71564
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71369
71565
|
};
|
|
71566
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput = {
|
|
71567
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71568
|
+
};
|
|
71370
71569
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
71371
71570
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71372
71571
|
};
|
|
@@ -71403,18 +71602,12 @@ export declare type GraphStoreV2AtlassianUserLinksExternalUserSortInput = {
|
|
|
71403
71602
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
71404
71603
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
71405
71604
|
};
|
|
71406
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput = {
|
|
71407
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71408
|
-
};
|
|
71409
71605
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluenceCommentSortInput = {
|
|
71410
71606
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71411
71607
|
};
|
|
71412
71608
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput = {
|
|
71413
71609
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71414
71610
|
};
|
|
71415
|
-
export declare type GraphStoreV2AtlassianUserMentionedInExternalConversationSortInput = {
|
|
71416
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71417
|
-
};
|
|
71418
71611
|
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput = {
|
|
71419
71612
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71420
71613
|
};
|
|
@@ -71449,15 +71642,9 @@ export declare type GraphStoreV2AtlassianUserOwnsConfluencePageSortInput = {
|
|
|
71449
71642
|
export declare type GraphStoreV2AtlassianUserOwnsExternalBranchSortInput = {
|
|
71450
71643
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71451
71644
|
};
|
|
71452
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput = {
|
|
71453
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71454
|
-
};
|
|
71455
71645
|
export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkSortInput = {
|
|
71456
71646
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71457
71647
|
};
|
|
71458
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput = {
|
|
71459
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71460
|
-
};
|
|
71461
71648
|
export declare type GraphStoreV2AtlassianUserOwnsFocusAskSortInput = {
|
|
71462
71649
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71463
71650
|
};
|
|
@@ -71476,9 +71663,6 @@ export declare type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
71476
71663
|
export declare type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
71477
71664
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71478
71665
|
};
|
|
71479
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput = {
|
|
71480
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71481
|
-
};
|
|
71482
71666
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageSortInput = {
|
|
71483
71667
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71484
71668
|
};
|
|
@@ -71509,9 +71693,6 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceSpaceSortInput = {
|
|
|
71509
71693
|
export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput = {
|
|
71510
71694
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71511
71695
|
};
|
|
71512
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput = {
|
|
71513
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71514
|
-
};
|
|
71515
71696
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemSortInput = {
|
|
71516
71697
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71517
71698
|
};
|
|
@@ -72702,6 +72883,26 @@ export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortIn
|
|
|
72702
72883
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchSortInput = {
|
|
72703
72884
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72704
72885
|
};
|
|
72886
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput = {
|
|
72887
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72888
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72889
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72890
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72891
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
72892
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
72893
|
+
};
|
|
72894
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput = {
|
|
72895
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
72896
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
72897
|
+
};
|
|
72898
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput = {
|
|
72899
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72900
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72901
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72902
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72903
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
72904
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
72905
|
+
};
|
|
72705
72906
|
export declare type GraphStoreV2ExternalUserCreatedExternalCommitSortInput = {
|
|
72706
72907
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72707
72908
|
};
|
|
@@ -72726,6 +72927,9 @@ export declare type GraphStoreV2ExternalUserCreatedExternalDealSortInput = {
|
|
|
72726
72927
|
export declare type GraphStoreV2ExternalUserCreatedExternalDesignSortInput = {
|
|
72727
72928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72728
72929
|
};
|
|
72930
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentSortInput = {
|
|
72931
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72932
|
+
};
|
|
72729
72933
|
export declare type GraphStoreV2ExternalUserCreatedExternalMessageSortInput = {
|
|
72730
72934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72731
72935
|
};
|
|
@@ -72744,6 +72948,9 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTeamSortInput = {
|
|
|
72744
72948
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestSortInput = {
|
|
72745
72949
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72746
72950
|
};
|
|
72951
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput = {
|
|
72952
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72953
|
+
};
|
|
72747
72954
|
export declare type GraphStoreV2ExternalUserFavoritedAtlassianGoalSortInput = {
|
|
72748
72955
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72749
72956
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -72759,9 +72966,18 @@ export declare type GraphStoreV2ExternalUserFavoritedAtlassianProjectSortInput =
|
|
|
72759
72966
|
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput = {
|
|
72760
72967
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72761
72968
|
};
|
|
72969
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationSortInput = {
|
|
72970
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72971
|
+
};
|
|
72972
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationSortInput = {
|
|
72973
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72974
|
+
};
|
|
72762
72975
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageSortInput = {
|
|
72763
72976
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72764
72977
|
};
|
|
72978
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput = {
|
|
72979
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72980
|
+
};
|
|
72765
72981
|
export declare type GraphStoreV2ExternalUserOwnsExternalCustomerContactSortInput = {
|
|
72766
72982
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72767
72983
|
};
|
|
@@ -72780,6 +72996,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalDataTableSortInput = {
|
|
|
72780
72996
|
export declare type GraphStoreV2ExternalUserOwnsExternalDealSortInput = {
|
|
72781
72997
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72782
72998
|
};
|
|
72999
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositorySortInput = {
|
|
73000
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73001
|
+
};
|
|
72783
73002
|
export declare type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceSortInput = {
|
|
72784
73003
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72785
73004
|
};
|
|
@@ -72792,6 +73011,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTeamSortInput = {
|
|
|
72792
73011
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestSortInput = {
|
|
72793
73012
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72794
73013
|
};
|
|
73014
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
73015
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73016
|
+
};
|
|
72795
73017
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactSortInput = {
|
|
72796
73018
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72797
73019
|
};
|
|
@@ -72810,6 +73032,9 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalDataTableSortInput =
|
|
|
72810
73032
|
export declare type GraphStoreV2ExternalUserUpdatedExternalDealSortInput = {
|
|
72811
73033
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72812
73034
|
};
|
|
73035
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput = {
|
|
73036
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73037
|
+
};
|
|
72813
73038
|
export declare type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceSortInput = {
|
|
72814
73039
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72815
73040
|
};
|
|
@@ -73749,6 +73974,9 @@ export declare type GraphStoreV2JiraWorkItemChangesCompassComponentSortInput = {
|
|
|
73749
73974
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73750
73975
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
73751
73976
|
};
|
|
73977
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput = {
|
|
73978
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73979
|
+
};
|
|
73752
73980
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput = {
|
|
73753
73981
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73754
73982
|
};
|
|
@@ -75439,38 +75667,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboa
|
|
|
75439
75667
|
};
|
|
75440
75668
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75441
75669
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
75442
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
75443
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection';
|
|
75444
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge>>>;
|
|
75445
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
75446
|
-
pageInfo: PageInfo;
|
|
75447
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75448
|
-
};
|
|
75449
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge = {
|
|
75450
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge';
|
|
75451
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75452
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75453
|
-
id: Scalars['ID']['output'];
|
|
75454
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75455
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventUnion>;
|
|
75456
|
-
};
|
|
75457
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
75458
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection';
|
|
75459
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge>>>;
|
|
75460
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
75461
|
-
pageInfo: PageInfo;
|
|
75462
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75463
|
-
};
|
|
75464
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge = {
|
|
75465
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge';
|
|
75466
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75467
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75468
|
-
id: Scalars['ID']['output'];
|
|
75469
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75470
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseUnion>;
|
|
75471
|
-
};
|
|
75472
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75473
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
75474
75670
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection = HasPageInfo & {
|
|
75475
75671
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection';
|
|
75476
75672
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentEdge>>>;
|
|
@@ -75499,34 +75695,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInv
|
|
|
75499
75695
|
};
|
|
75500
75696
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75501
75697
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentUnion = ExternalComment;
|
|
75502
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection = HasPageInfo & {
|
|
75503
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection';
|
|
75504
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge>>>;
|
|
75505
|
-
pageInfo: PageInfo;
|
|
75506
|
-
};
|
|
75507
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge = {
|
|
75508
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge';
|
|
75509
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75510
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75511
|
-
id: Scalars['ID']['output'];
|
|
75512
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75513
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentUnion>;
|
|
75514
|
-
};
|
|
75515
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
75516
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection';
|
|
75517
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge>>>;
|
|
75518
|
-
pageInfo: PageInfo;
|
|
75519
|
-
};
|
|
75520
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge = {
|
|
75521
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge';
|
|
75522
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75523
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75524
|
-
id: Scalars['ID']['output'];
|
|
75525
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75526
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseUnion>;
|
|
75527
|
-
};
|
|
75528
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75529
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
75530
75698
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection = HasPageInfo & {
|
|
75531
75699
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection';
|
|
75532
75700
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkEdge>>>;
|
|
@@ -75583,34 +75751,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
75583
75751
|
};
|
|
75584
75752
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75585
75753
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
75586
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
75587
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection';
|
|
75588
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge>>>;
|
|
75589
|
-
pageInfo: PageInfo;
|
|
75590
|
-
};
|
|
75591
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge = {
|
|
75592
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge';
|
|
75593
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75594
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75595
|
-
id: Scalars['ID']['output'];
|
|
75596
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75597
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemUnion>;
|
|
75598
|
-
};
|
|
75599
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection = HasPageInfo & {
|
|
75600
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection';
|
|
75601
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge>>>;
|
|
75602
|
-
pageInfo: PageInfo;
|
|
75603
|
-
};
|
|
75604
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge = {
|
|
75605
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge';
|
|
75606
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75607
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75608
|
-
id: Scalars['ID']['output'];
|
|
75609
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75610
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseUnion>;
|
|
75611
|
-
};
|
|
75612
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75613
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemUnion = ExternalWorkItem;
|
|
75614
75754
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection = HasPageInfo & {
|
|
75615
75755
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection';
|
|
75616
75756
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseEdge>>>;
|
|
@@ -76099,6 +76239,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInver
|
|
|
76099
76239
|
};
|
|
76100
76240
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76101
76241
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceUnion = JiraProject;
|
|
76242
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection = HasPageInfo & {
|
|
76243
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection';
|
|
76244
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge>>>;
|
|
76245
|
+
pageInfo: PageInfo;
|
|
76246
|
+
};
|
|
76247
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge = {
|
|
76248
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge';
|
|
76249
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76250
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76251
|
+
id: Scalars['ID']['output'];
|
|
76252
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76253
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion>;
|
|
76254
|
+
};
|
|
76255
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection = HasPageInfo & {
|
|
76256
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection';
|
|
76257
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge>>>;
|
|
76258
|
+
pageInfo: PageInfo;
|
|
76259
|
+
};
|
|
76260
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge = {
|
|
76261
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge';
|
|
76262
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76263
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76264
|
+
id: Scalars['ID']['output'];
|
|
76265
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76266
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion>;
|
|
76267
|
+
};
|
|
76268
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76269
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76102
76270
|
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
76103
76271
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
76104
76272
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -76243,34 +76411,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseE
|
|
|
76243
76411
|
};
|
|
76244
76412
|
export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76245
76413
|
export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserUnion = ThirdPartyUser;
|
|
76246
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection = HasPageInfo & {
|
|
76247
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection';
|
|
76248
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge>>>;
|
|
76249
|
-
pageInfo: PageInfo;
|
|
76250
|
-
};
|
|
76251
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge = {
|
|
76252
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge';
|
|
76253
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76254
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76255
|
-
id: Scalars['ID']['output'];
|
|
76256
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76257
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationUnion>;
|
|
76258
|
-
};
|
|
76259
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection = HasPageInfo & {
|
|
76260
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection';
|
|
76261
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge>>>;
|
|
76262
|
-
pageInfo: PageInfo;
|
|
76263
|
-
};
|
|
76264
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge = {
|
|
76265
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge';
|
|
76266
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76267
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76268
|
-
id: Scalars['ID']['output'];
|
|
76269
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76270
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseUnion>;
|
|
76271
|
-
};
|
|
76272
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76273
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationUnion = ExternalConversation;
|
|
76274
76414
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection = HasPageInfo & {
|
|
76275
76415
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection';
|
|
76276
76416
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentEdge>>>;
|
|
@@ -76327,34 +76467,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePage
|
|
|
76327
76467
|
};
|
|
76328
76468
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76329
76469
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageUnion = ConfluencePage;
|
|
76330
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationConnection = HasPageInfo & {
|
|
76331
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationConnection';
|
|
76332
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge>>>;
|
|
76333
|
-
pageInfo: PageInfo;
|
|
76334
|
-
};
|
|
76335
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge = {
|
|
76336
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge';
|
|
76337
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76338
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76339
|
-
id: Scalars['ID']['output'];
|
|
76340
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76341
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationUnion>;
|
|
76342
|
-
};
|
|
76343
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection = HasPageInfo & {
|
|
76344
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection';
|
|
76345
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge>>>;
|
|
76346
|
-
pageInfo: PageInfo;
|
|
76347
|
-
};
|
|
76348
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge = {
|
|
76349
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge';
|
|
76350
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76351
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76352
|
-
id: Scalars['ID']['output'];
|
|
76353
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76354
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseUnion>;
|
|
76355
|
-
};
|
|
76356
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76357
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationUnion = ExternalConversation;
|
|
76358
76470
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection = HasPageInfo & {
|
|
76359
76471
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection';
|
|
76360
76472
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentEdge>>>;
|
|
@@ -76555,34 +76667,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverse
|
|
|
76555
76667
|
};
|
|
76556
76668
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76557
76669
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchUnion = ExternalBranch;
|
|
76558
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
76559
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection';
|
|
76560
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge>>>;
|
|
76561
|
-
pageInfo: PageInfo;
|
|
76562
|
-
};
|
|
76563
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge = {
|
|
76564
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge';
|
|
76565
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76566
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76567
|
-
id: Scalars['ID']['output'];
|
|
76568
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76569
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventUnion>;
|
|
76570
|
-
};
|
|
76571
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
76572
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection';
|
|
76573
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge>>>;
|
|
76574
|
-
pageInfo: PageInfo;
|
|
76575
|
-
};
|
|
76576
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge = {
|
|
76577
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge';
|
|
76578
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76579
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76580
|
-
id: Scalars['ID']['output'];
|
|
76581
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76582
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseUnion>;
|
|
76583
|
-
};
|
|
76584
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76585
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
76586
76670
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection = HasPageInfo & {
|
|
76587
76671
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection';
|
|
76588
76672
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkEdge>>>;
|
|
@@ -76611,34 +76695,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInv
|
|
|
76611
76695
|
};
|
|
76612
76696
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76613
76697
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkUnion = ExternalRemoteLink;
|
|
76614
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection = HasPageInfo & {
|
|
76615
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection';
|
|
76616
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge>>>;
|
|
76617
|
-
pageInfo: PageInfo;
|
|
76618
|
-
};
|
|
76619
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge = {
|
|
76620
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge';
|
|
76621
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76622
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76623
|
-
id: Scalars['ID']['output'];
|
|
76624
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76625
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryUnion>;
|
|
76626
|
-
};
|
|
76627
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection = HasPageInfo & {
|
|
76628
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection';
|
|
76629
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge>>>;
|
|
76630
|
-
pageInfo: PageInfo;
|
|
76631
|
-
};
|
|
76632
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge = {
|
|
76633
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge';
|
|
76634
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76635
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76636
|
-
id: Scalars['ID']['output'];
|
|
76637
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76638
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseUnion>;
|
|
76639
|
-
};
|
|
76640
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76641
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
76642
76698
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection = HasPageInfo & {
|
|
76643
76699
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection';
|
|
76644
76700
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskEdge>>>;
|
|
@@ -76807,34 +76863,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInvers
|
|
|
76807
76863
|
};
|
|
76808
76864
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76809
76865
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
|
|
76810
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
76811
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection';
|
|
76812
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge>>>;
|
|
76813
|
-
pageInfo: PageInfo;
|
|
76814
|
-
};
|
|
76815
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge = {
|
|
76816
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge';
|
|
76817
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76818
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76819
|
-
id: Scalars['ID']['output'];
|
|
76820
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76821
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestUnion>;
|
|
76822
|
-
};
|
|
76823
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection = HasPageInfo & {
|
|
76824
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection';
|
|
76825
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge>>>;
|
|
76826
|
-
pageInfo: PageInfo;
|
|
76827
|
-
};
|
|
76828
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge = {
|
|
76829
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge';
|
|
76830
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76831
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76832
|
-
id: Scalars['ID']['output'];
|
|
76833
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76834
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseUnion>;
|
|
76835
|
-
};
|
|
76836
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76837
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
76838
76866
|
export declare type GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
76839
76867
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection';
|
|
76840
76868
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -77115,34 +77143,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboa
|
|
|
77115
77143
|
};
|
|
77116
77144
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
77117
77145
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
77118
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection = HasPageInfo & {
|
|
77119
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection';
|
|
77120
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge>>>;
|
|
77121
|
-
pageInfo: PageInfo;
|
|
77122
|
-
};
|
|
77123
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge = {
|
|
77124
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge';
|
|
77125
|
-
createdAt: Scalars['DateTime']['output'];
|
|
77126
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
77127
|
-
id: Scalars['ID']['output'];
|
|
77128
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
77129
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentUnion>;
|
|
77130
|
-
};
|
|
77131
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
77132
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection';
|
|
77133
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge>>>;
|
|
77134
|
-
pageInfo: PageInfo;
|
|
77135
|
-
};
|
|
77136
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge = {
|
|
77137
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge';
|
|
77138
|
-
createdAt: Scalars['DateTime']['output'];
|
|
77139
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
77140
|
-
id: Scalars['ID']['output'];
|
|
77141
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
77142
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseUnion>;
|
|
77143
|
-
};
|
|
77144
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77145
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
77146
77146
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection = HasPageInfo & {
|
|
77147
77147
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection';
|
|
77148
77148
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemEdge>>>;
|
|
@@ -79467,6 +79467,38 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInver
|
|
|
79467
79467
|
};
|
|
79468
79468
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79469
79469
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchUnion = ExternalBranch;
|
|
79470
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
79471
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection';
|
|
79472
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge>>>;
|
|
79473
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79474
|
+
pageInfo: PageInfo;
|
|
79475
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79476
|
+
};
|
|
79477
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge = {
|
|
79478
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge';
|
|
79479
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79480
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79481
|
+
id: Scalars['ID']['output'];
|
|
79482
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79483
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventUnion>;
|
|
79484
|
+
};
|
|
79485
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
79486
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection';
|
|
79487
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge>>>;
|
|
79488
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79489
|
+
pageInfo: PageInfo;
|
|
79490
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79491
|
+
};
|
|
79492
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge = {
|
|
79493
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge';
|
|
79494
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79495
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79496
|
+
id: Scalars['ID']['output'];
|
|
79497
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79498
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseUnion>;
|
|
79499
|
+
};
|
|
79500
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79501
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
79470
79502
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection = HasPageInfo & {
|
|
79471
79503
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection';
|
|
79472
79504
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitEdge>>>;
|
|
@@ -79691,6 +79723,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInver
|
|
|
79691
79723
|
};
|
|
79692
79724
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79693
79725
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignUnion = DevOpsDesign | ExternalDesign;
|
|
79726
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection = HasPageInfo & {
|
|
79727
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection';
|
|
79728
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge>>>;
|
|
79729
|
+
pageInfo: PageInfo;
|
|
79730
|
+
};
|
|
79731
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge = {
|
|
79732
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge';
|
|
79733
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79734
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79735
|
+
id: Scalars['ID']['output'];
|
|
79736
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79737
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentUnion>;
|
|
79738
|
+
};
|
|
79739
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
79740
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection';
|
|
79741
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge>>>;
|
|
79742
|
+
pageInfo: PageInfo;
|
|
79743
|
+
};
|
|
79744
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge = {
|
|
79745
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge';
|
|
79746
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79747
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79748
|
+
id: Scalars['ID']['output'];
|
|
79749
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79750
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseUnion>;
|
|
79751
|
+
};
|
|
79752
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79753
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
79694
79754
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection = HasPageInfo & {
|
|
79695
79755
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection';
|
|
79696
79756
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageEdge>>>;
|
|
@@ -79859,6 +79919,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverse
|
|
|
79859
79919
|
};
|
|
79860
79920
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79861
79921
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion = ExternalTest;
|
|
79922
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
79923
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection';
|
|
79924
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge>>>;
|
|
79925
|
+
pageInfo: PageInfo;
|
|
79926
|
+
};
|
|
79927
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge = {
|
|
79928
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge';
|
|
79929
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79930
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79931
|
+
id: Scalars['ID']['output'];
|
|
79932
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79933
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemUnion>;
|
|
79934
|
+
};
|
|
79935
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection = HasPageInfo & {
|
|
79936
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection';
|
|
79937
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge>>>;
|
|
79938
|
+
pageInfo: PageInfo;
|
|
79939
|
+
};
|
|
79940
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge = {
|
|
79941
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge';
|
|
79942
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79943
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79944
|
+
id: Scalars['ID']['output'];
|
|
79945
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79946
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseUnion>;
|
|
79947
|
+
};
|
|
79948
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79949
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemUnion = ExternalWorkItem;
|
|
79862
79950
|
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection = HasPageInfo & HasTotal & {
|
|
79863
79951
|
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection';
|
|
79864
79952
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge>>>;
|
|
@@ -79951,6 +80039,62 @@ export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignI
|
|
|
79951
80039
|
};
|
|
79952
80040
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79953
80041
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignUnion = DevOpsDesign | ExternalDesign;
|
|
80042
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection = HasPageInfo & {
|
|
80043
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection';
|
|
80044
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge>>>;
|
|
80045
|
+
pageInfo: PageInfo;
|
|
80046
|
+
};
|
|
80047
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge = {
|
|
80048
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge';
|
|
80049
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80050
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80051
|
+
id: Scalars['ID']['output'];
|
|
80052
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80053
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationUnion>;
|
|
80054
|
+
};
|
|
80055
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection = HasPageInfo & {
|
|
80056
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection';
|
|
80057
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge>>>;
|
|
80058
|
+
pageInfo: PageInfo;
|
|
80059
|
+
};
|
|
80060
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge = {
|
|
80061
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge';
|
|
80062
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80063
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80064
|
+
id: Scalars['ID']['output'];
|
|
80065
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80066
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseUnion>;
|
|
80067
|
+
};
|
|
80068
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80069
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationUnion = ExternalConversation;
|
|
80070
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection = HasPageInfo & {
|
|
80071
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection';
|
|
80072
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge>>>;
|
|
80073
|
+
pageInfo: PageInfo;
|
|
80074
|
+
};
|
|
80075
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge = {
|
|
80076
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge';
|
|
80077
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80078
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80079
|
+
id: Scalars['ID']['output'];
|
|
80080
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80081
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationUnion>;
|
|
80082
|
+
};
|
|
80083
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection = HasPageInfo & {
|
|
80084
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection';
|
|
80085
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge>>>;
|
|
80086
|
+
pageInfo: PageInfo;
|
|
80087
|
+
};
|
|
80088
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge = {
|
|
80089
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge';
|
|
80090
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80091
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80092
|
+
id: Scalars['ID']['output'];
|
|
80093
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80094
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseUnion>;
|
|
80095
|
+
};
|
|
80096
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80097
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationUnion = ExternalConversation;
|
|
79954
80098
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection = HasPageInfo & {
|
|
79955
80099
|
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection';
|
|
79956
80100
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageEdge>>>;
|
|
@@ -79979,6 +80123,34 @@ export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessage
|
|
|
79979
80123
|
};
|
|
79980
80124
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79981
80125
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageUnion = ExternalMessage;
|
|
80126
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
80127
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection';
|
|
80128
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge>>>;
|
|
80129
|
+
pageInfo: PageInfo;
|
|
80130
|
+
};
|
|
80131
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge = {
|
|
80132
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge';
|
|
80133
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80134
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80135
|
+
id: Scalars['ID']['output'];
|
|
80136
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80137
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventUnion>;
|
|
80138
|
+
};
|
|
80139
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
80140
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection';
|
|
80141
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge>>>;
|
|
80142
|
+
pageInfo: PageInfo;
|
|
80143
|
+
};
|
|
80144
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge = {
|
|
80145
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge';
|
|
80146
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80147
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80148
|
+
id: Scalars['ID']['output'];
|
|
80149
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80150
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseUnion>;
|
|
80151
|
+
};
|
|
80152
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80153
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
79982
80154
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection = HasPageInfo & {
|
|
79983
80155
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection';
|
|
79984
80156
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactEdge>>>;
|
|
@@ -80147,6 +80319,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseEdg
|
|
|
80147
80319
|
};
|
|
80148
80320
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80149
80321
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealUnion = ExternalDeal;
|
|
80322
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection = HasPageInfo & {
|
|
80323
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection';
|
|
80324
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge>>>;
|
|
80325
|
+
pageInfo: PageInfo;
|
|
80326
|
+
};
|
|
80327
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge = {
|
|
80328
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge';
|
|
80329
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80330
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80331
|
+
id: Scalars['ID']['output'];
|
|
80332
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80333
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion>;
|
|
80334
|
+
};
|
|
80335
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection = HasPageInfo & {
|
|
80336
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection';
|
|
80337
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge>>>;
|
|
80338
|
+
pageInfo: PageInfo;
|
|
80339
|
+
};
|
|
80340
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge = {
|
|
80341
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge';
|
|
80342
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80343
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80344
|
+
id: Scalars['ID']['output'];
|
|
80345
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80346
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion>;
|
|
80347
|
+
};
|
|
80348
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80349
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
80150
80350
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection = HasPageInfo & {
|
|
80151
80351
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection';
|
|
80152
80352
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceEdge>>>;
|
|
@@ -80259,6 +80459,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdg
|
|
|
80259
80459
|
};
|
|
80260
80460
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80261
80461
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion = ExternalTest;
|
|
80462
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
80463
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection';
|
|
80464
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge>>>;
|
|
80465
|
+
pageInfo: PageInfo;
|
|
80466
|
+
};
|
|
80467
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge = {
|
|
80468
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge';
|
|
80469
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80470
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80471
|
+
id: Scalars['ID']['output'];
|
|
80472
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80473
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion>;
|
|
80474
|
+
};
|
|
80475
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection = HasPageInfo & {
|
|
80476
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection';
|
|
80477
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge>>>;
|
|
80478
|
+
pageInfo: PageInfo;
|
|
80479
|
+
};
|
|
80480
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge = {
|
|
80481
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge';
|
|
80482
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80483
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80484
|
+
id: Scalars['ID']['output'];
|
|
80485
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80486
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion>;
|
|
80487
|
+
};
|
|
80488
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80489
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
80262
80490
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
80263
80491
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection';
|
|
80264
80492
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -80427,6 +80655,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverse
|
|
|
80427
80655
|
};
|
|
80428
80656
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80429
80657
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealUnion = ExternalDeal;
|
|
80658
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection = HasPageInfo & {
|
|
80659
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection';
|
|
80660
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge>>>;
|
|
80661
|
+
pageInfo: PageInfo;
|
|
80662
|
+
};
|
|
80663
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge = {
|
|
80664
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge';
|
|
80665
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80666
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80667
|
+
id: Scalars['ID']['output'];
|
|
80668
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80669
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentUnion>;
|
|
80670
|
+
};
|
|
80671
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
80672
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection';
|
|
80673
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge>>>;
|
|
80674
|
+
pageInfo: PageInfo;
|
|
80675
|
+
};
|
|
80676
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge = {
|
|
80677
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge';
|
|
80678
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80679
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80680
|
+
id: Scalars['ID']['output'];
|
|
80681
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80682
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseUnion>;
|
|
80683
|
+
};
|
|
80684
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80685
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
80430
80686
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
80431
80687
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection';
|
|
80432
80688
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceEdge>>>;
|
|
@@ -82147,6 +82403,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInv
|
|
|
82147
82403
|
};
|
|
82148
82404
|
export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInverseUnion = JiraIssue;
|
|
82149
82405
|
export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentUnion = CompassComponent;
|
|
82406
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection = HasPageInfo & {
|
|
82407
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection';
|
|
82408
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge>>>;
|
|
82409
|
+
pageInfo: PageInfo;
|
|
82410
|
+
};
|
|
82411
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge = {
|
|
82412
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge';
|
|
82413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82415
|
+
id: Scalars['ID']['output'];
|
|
82416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82417
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentUnion>;
|
|
82418
|
+
};
|
|
82419
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection = HasPageInfo & {
|
|
82420
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection';
|
|
82421
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge>>>;
|
|
82422
|
+
pageInfo: PageInfo;
|
|
82423
|
+
};
|
|
82424
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge = {
|
|
82425
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge';
|
|
82426
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82427
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82428
|
+
id: Scalars['ID']['output'];
|
|
82429
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82430
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseUnion>;
|
|
82431
|
+
};
|
|
82432
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82433
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82150
82434
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection = HasPageInfo & {
|
|
82151
82435
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection';
|
|
82152
82436
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalEdge>>>;
|
|
@@ -92441,6 +92725,8 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
92441
92725
|
};
|
|
92442
92726
|
export declare type JiraDetailedViewValidateJqlArgs = {
|
|
92443
92727
|
issueSearchInput: JiraIssueSearchInput;
|
|
92728
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92729
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
92444
92730
|
};
|
|
92445
92731
|
export declare type JiraDevInfoConfigError = {
|
|
92446
92732
|
__typename?: 'JiraDevInfoConfigError';
|
|
@@ -94608,6 +94894,8 @@ export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
|
94608
94894
|
};
|
|
94609
94895
|
export declare type JiraGroupedListViewValidateJqlArgs = {
|
|
94610
94896
|
issueSearchInput: JiraIssueSearchInput;
|
|
94897
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94898
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
94611
94899
|
};
|
|
94612
94900
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
94613
94901
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94848,6 +95136,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
94848
95136
|
contextPanels?: Maybe<JiraIssueContextPanelConnection>;
|
|
94849
95137
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
94850
95138
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
95139
|
+
defaultAssignee?: Maybe<User>;
|
|
94851
95140
|
delegator?: Maybe<User>;
|
|
94852
95141
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
94853
95142
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
@@ -96803,6 +97092,8 @@ export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
|
96803
97092
|
};
|
|
96804
97093
|
export declare type JiraIssueSearchViewValidateJqlArgs = {
|
|
96805
97094
|
issueSearchInput: JiraIssueSearchInput;
|
|
97095
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97096
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
96806
97097
|
};
|
|
96807
97098
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
96808
97099
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
@@ -96908,6 +97199,8 @@ export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
|
96908
97199
|
};
|
|
96909
97200
|
export declare type JiraIssueSearchViewMetadataValidateJqlArgs = {
|
|
96910
97201
|
issueSearchInput: JiraIssueSearchInput;
|
|
97202
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97203
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
96911
97204
|
};
|
|
96912
97205
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
96913
97206
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
@@ -98436,6 +98729,8 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
98436
98729
|
};
|
|
98437
98730
|
export declare type JiraListViewValidateJqlArgs = {
|
|
98438
98731
|
issueSearchInput: JiraIssueSearchInput;
|
|
98732
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98733
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
98439
98734
|
};
|
|
98440
98735
|
export declare type JiraListViewViewSettingsArgs = {
|
|
98441
98736
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98487,6 +98782,11 @@ export declare type JiraMediaContext = {
|
|
|
98487
98782
|
__typename?: 'JiraMediaContext';
|
|
98488
98783
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
98489
98784
|
};
|
|
98785
|
+
export declare type JiraMediaReadConfig = {
|
|
98786
|
+
__typename?: 'JiraMediaReadConfig';
|
|
98787
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
98788
|
+
endpointUrl?: Maybe<Scalars['String']['output']>;
|
|
98789
|
+
};
|
|
98490
98790
|
export declare type JiraMediaReadToken = {
|
|
98491
98791
|
__typename?: 'JiraMediaReadToken';
|
|
98492
98792
|
clientId?: Maybe<Scalars['String']['output']>;
|
|
@@ -101117,6 +101417,8 @@ export declare type JiraPlaybookInstanceStep = Node & {
|
|
|
101117
101417
|
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
101118
101418
|
name?: Maybe<Scalars['String']['output']>;
|
|
101119
101419
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
101420
|
+
task?: Maybe<JiraIssue>;
|
|
101421
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101120
101422
|
type?: Maybe<JiraPlaybookStepType>;
|
|
101121
101423
|
};
|
|
101122
101424
|
export declare type JiraPlaybookIssueFilter = {
|
|
@@ -101184,6 +101486,7 @@ export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
|
101184
101486
|
};
|
|
101185
101487
|
export declare enum JiraPlaybookScopeType {
|
|
101186
101488
|
Global = "GLOBAL",
|
|
101489
|
+
Issue = "ISSUE",
|
|
101187
101490
|
Project = "PROJECT",
|
|
101188
101491
|
Team = "TEAM"
|
|
101189
101492
|
}
|
|
@@ -101199,6 +101502,8 @@ export declare type JiraPlaybookStep = {
|
|
|
101199
101502
|
name?: Maybe<Scalars['String']['output']>;
|
|
101200
101503
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
101201
101504
|
stepId: Scalars['ID']['output'];
|
|
101505
|
+
task?: Maybe<JiraIssue>;
|
|
101506
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101202
101507
|
type?: Maybe<JiraPlaybookStepType>;
|
|
101203
101508
|
};
|
|
101204
101509
|
export declare type JiraPlaybookStepOutput = {
|
|
@@ -101226,6 +101531,7 @@ export declare type JiraPlaybookStepRun = Node & {
|
|
|
101226
101531
|
stepOutput?: Maybe<Array<JiraPlaybookStepOutput>>;
|
|
101227
101532
|
stepStatus?: Maybe<JiraPlaybookStepRunStatus>;
|
|
101228
101533
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
101534
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101229
101535
|
triggeredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
101230
101536
|
triggeredBy?: Maybe<User>;
|
|
101231
101537
|
};
|
|
@@ -101259,7 +101565,8 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
101259
101565
|
}
|
|
101260
101566
|
export declare enum JiraPlaybookStepType {
|
|
101261
101567
|
AutomationRule = "AUTOMATION_RULE",
|
|
101262
|
-
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
101568
|
+
InstructionalRule = "INSTRUCTIONAL_RULE",
|
|
101569
|
+
Task = "TASK"
|
|
101263
101570
|
}
|
|
101264
101571
|
export declare type JiraPlaybookStepUsage = Node & {
|
|
101265
101572
|
__typename?: 'JiraPlaybookStepUsage';
|
|
@@ -104863,6 +105170,8 @@ export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
|
104863
105170
|
success: Scalars['Boolean']['output'];
|
|
104864
105171
|
};
|
|
104865
105172
|
export declare type JiraScheduleTimelineItemInput = {
|
|
105173
|
+
aggregatedEndDate?: InputMaybe<JiraDateInput>;
|
|
105174
|
+
aggregatedStartDate?: InputMaybe<JiraDateInput>;
|
|
104866
105175
|
endDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
104867
105176
|
issueId: Scalars['ID']['input'];
|
|
104868
105177
|
operation: JiraScheduleTimelineItemOperation;
|
|
@@ -106980,6 +107289,8 @@ export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
|
106980
107289
|
};
|
|
106981
107290
|
export declare type JiraSpreadsheetViewValidateJqlArgs = {
|
|
106982
107291
|
issueSearchInput: JiraIssueSearchInput;
|
|
107292
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107293
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
106983
107294
|
};
|
|
106984
107295
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
106985
107296
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107913,6 +108224,8 @@ export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
|
107913
108224
|
};
|
|
107914
108225
|
export declare type JiraTimelineViewValidateJqlArgs = {
|
|
107915
108226
|
issueSearchInput: JiraIssueSearchInput;
|
|
108227
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108228
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
107916
108229
|
};
|
|
107917
108230
|
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
107918
108231
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -111699,6 +112012,20 @@ export declare type KitsuneFeedback = Node & {
|
|
|
111699
112012
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
111700
112013
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
111701
112014
|
};
|
|
112015
|
+
export declare type KitsuneFeedbackEvent = {
|
|
112016
|
+
__typename?: 'KitsuneFeedbackEvent';
|
|
112017
|
+
content: Scalars['KitsuneADF']['output'];
|
|
112018
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112019
|
+
externalId?: Maybe<Scalars['ID']['output']>;
|
|
112020
|
+
id: Scalars['ID']['output'];
|
|
112021
|
+
sourceCategoryId: Scalars['ID']['output'];
|
|
112022
|
+
spaceId: Scalars['ID']['output'];
|
|
112023
|
+
tenantId: Scalars['ID']['output'];
|
|
112024
|
+
title: Scalars['String']['output'];
|
|
112025
|
+
type: Scalars['String']['output'];
|
|
112026
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
112027
|
+
url: Scalars['String']['output'];
|
|
112028
|
+
};
|
|
111702
112029
|
export declare type KitsuneNode = {
|
|
111703
112030
|
_id: Scalars['ID']['output'];
|
|
111704
112031
|
};
|
|
@@ -117227,7 +117554,8 @@ export declare type MercuryChangeProposalRankEdge = {
|
|
|
117227
117554
|
node?: Maybe<MercuryRankedChangeProposal>;
|
|
117228
117555
|
};
|
|
117229
117556
|
export declare type MercuryChangeProposalSort = {
|
|
117230
|
-
field
|
|
117557
|
+
field?: InputMaybe<MercuryChangeProposalSortField>;
|
|
117558
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
117231
117559
|
order: SortOrder;
|
|
117232
117560
|
};
|
|
117233
117561
|
export declare enum MercuryChangeProposalSortField {
|
|
@@ -117476,6 +117804,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
117476
117804
|
success: Scalars['Boolean']['output'];
|
|
117477
117805
|
};
|
|
117478
117806
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
117807
|
+
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
117479
117808
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
117480
117809
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
117481
117810
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
@@ -117499,6 +117828,9 @@ export declare type MercuryCreateCustomFieldDefinitionPayload = {
|
|
|
117499
117828
|
errors?: Maybe<Array<MutationError>>;
|
|
117500
117829
|
success: Scalars['Boolean']['output'];
|
|
117501
117830
|
};
|
|
117831
|
+
export declare type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
117832
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
117833
|
+
};
|
|
117502
117834
|
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
117503
117835
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
117504
117836
|
startMonthNumber: Scalars['Int']['input'];
|
|
@@ -117666,6 +117998,7 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
117666
117998
|
Name = "NAME"
|
|
117667
117999
|
}
|
|
117668
118000
|
export declare type MercuryCustomFieldInput = {
|
|
118001
|
+
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
117669
118002
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
117670
118003
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
117671
118004
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
@@ -117675,6 +118008,30 @@ export declare type MercuryCustomSelectFieldOption = {
|
|
|
117675
118008
|
id: Scalars['ID']['output'];
|
|
117676
118009
|
value: Scalars['String']['output'];
|
|
117677
118010
|
};
|
|
118011
|
+
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
118012
|
+
__typename?: 'MercuryDateCustomField';
|
|
118013
|
+
createdBy?: Maybe<User>;
|
|
118014
|
+
createdDate: Scalars['DateTime']['output'];
|
|
118015
|
+
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
118016
|
+
definition?: Maybe<MercuryDateCustomFieldDefinition>;
|
|
118017
|
+
updatedBy?: Maybe<User>;
|
|
118018
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
118019
|
+
};
|
|
118020
|
+
export declare type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
118021
|
+
__typename?: 'MercuryDateCustomFieldDefinition';
|
|
118022
|
+
createdBy?: Maybe<User>;
|
|
118023
|
+
createdDate: Scalars['DateTime']['output'];
|
|
118024
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
118025
|
+
id: Scalars['ID']['output'];
|
|
118026
|
+
name: Scalars['String']['output'];
|
|
118027
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
118028
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
118029
|
+
updatedBy?: Maybe<User>;
|
|
118030
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
118031
|
+
};
|
|
118032
|
+
export declare type MercuryDateCustomFieldInput = {
|
|
118033
|
+
dateValue?: InputMaybe<Scalars['Date']['input']>;
|
|
118034
|
+
};
|
|
117678
118035
|
export declare type MercuryDefaultJiraWorkStatusMapping = MercuryBaseJiraWorkStatusMapping & {
|
|
117679
118036
|
__typename?: 'MercuryDefaultJiraWorkStatusMapping';
|
|
117680
118037
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
@@ -118609,6 +118966,23 @@ export declare type MercuryInvestmentCategorySetSort = {
|
|
|
118609
118966
|
export declare enum MercuryInvestmentCategorySetSortField {
|
|
118610
118967
|
Name = "NAME"
|
|
118611
118968
|
}
|
|
118969
|
+
export declare type MercuryInviteInput = {
|
|
118970
|
+
cloudId: Scalars['ID']['input'];
|
|
118971
|
+
userId: Scalars['ID']['input'];
|
|
118972
|
+
};
|
|
118973
|
+
export declare type MercuryInvitePayload = Payload & {
|
|
118974
|
+
__typename?: 'MercuryInvitePayload';
|
|
118975
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118976
|
+
status?: Maybe<MercuryInviteStatus>;
|
|
118977
|
+
success: Scalars['Boolean']['output'];
|
|
118978
|
+
};
|
|
118979
|
+
export declare enum MercuryInviteStatus {
|
|
118980
|
+
Invited = "INVITED",
|
|
118981
|
+
InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
|
|
118982
|
+
NotInvited = "NOT_INVITED",
|
|
118983
|
+
PendingInviteExists = "PENDING_INVITE_EXISTS",
|
|
118984
|
+
UserExists = "USER_EXISTS"
|
|
118985
|
+
}
|
|
118612
118986
|
export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
118613
118987
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
118614
118988
|
ari: Scalars['ID']['output'];
|
|
@@ -118842,6 +119216,7 @@ export declare type MercuryMutationApi = {
|
|
|
118842
119216
|
deletePortfolio?: Maybe<MercuryDeletePortfolioPayload>;
|
|
118843
119217
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
118844
119218
|
deletePreference?: Maybe<MercuryDeletePreferencePayload>;
|
|
119219
|
+
invite?: Maybe<MercuryInvitePayload>;
|
|
118845
119220
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
118846
119221
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
118847
119222
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
@@ -118923,6 +119298,9 @@ export declare type MercuryMutationApiDeletePortfolioFocusAreaLinkArgs = {
|
|
|
118923
119298
|
export declare type MercuryMutationApiDeletePreferenceArgs = {
|
|
118924
119299
|
input: MercuryDeletePreferenceInput;
|
|
118925
119300
|
};
|
|
119301
|
+
export declare type MercuryMutationApiInviteArgs = {
|
|
119302
|
+
input: MercuryInviteInput;
|
|
119303
|
+
};
|
|
118926
119304
|
export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
|
|
118927
119305
|
input: MercuryLinkFocusAreasToFocusAreaInput;
|
|
118928
119306
|
};
|
|
@@ -121000,6 +121378,7 @@ export declare type Mutation = {
|
|
|
121000
121378
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
121001
121379
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
121002
121380
|
ccp?: Maybe<CcpMutationApi>;
|
|
121381
|
+
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
121003
121382
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
121004
121383
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
121005
121384
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -121188,6 +121567,7 @@ export declare type Mutation = {
|
|
|
121188
121567
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
121189
121568
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
121190
121569
|
csmAi_deleteWidget?: Maybe<CsmAiDeleteWidgetPayload>;
|
|
121570
|
+
csmAi_deleteWidgetClientKey?: Maybe<CsmAiDeleteClientKeyPayload>;
|
|
121191
121571
|
csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
|
|
121192
121572
|
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
121193
121573
|
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
@@ -121299,6 +121679,7 @@ export declare type Mutation = {
|
|
|
121299
121679
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
121300
121680
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
121301
121681
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
121682
|
+
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
121302
121683
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
121303
121684
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
121304
121685
|
goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
|
|
@@ -121551,6 +121932,7 @@ export declare type Mutation = {
|
|
|
121551
121932
|
projects_editTextCustomField?: Maybe<TownsquareProjectsEditTextCustomFieldPayload>;
|
|
121552
121933
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
121553
121934
|
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
121935
|
+
projects_grantAccess?: Maybe<TownsquareProjectGrantAccessPayload>;
|
|
121554
121936
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
121555
121937
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
121556
121938
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -121560,7 +121942,9 @@ export declare type Mutation = {
|
|
|
121560
121942
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
121561
121943
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
121562
121944
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
121945
|
+
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
121563
121946
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
121947
|
+
projects_setUserWatchingTeam?: Maybe<TownsquareProjectsSetUserWatchingTeamPayload>;
|
|
121564
121948
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
121565
121949
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
121566
121950
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
@@ -122426,6 +122810,9 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
122426
122810
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
122427
122811
|
spaceKey: Scalars['String']['input'];
|
|
122428
122812
|
};
|
|
122813
|
+
export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArgs = {
|
|
122814
|
+
input: ChangeManagementUpdateRovoRiskAssessmentSettingsInput;
|
|
122815
|
+
};
|
|
122429
122816
|
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
122430
122817
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
122431
122818
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123134,6 +123521,11 @@ export declare type MutationCsmAi_DeleteWidgetArgs = {
|
|
|
123134
123521
|
helpCenterAri: Scalars['ID']['input'];
|
|
123135
123522
|
widgetId: Scalars['ID']['input'];
|
|
123136
123523
|
};
|
|
123524
|
+
export declare type MutationCsmAi_DeleteWidgetClientKeyArgs = {
|
|
123525
|
+
clientKeyId: Scalars['ID']['input'];
|
|
123526
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
123527
|
+
widgetId: Scalars['ID']['input'];
|
|
123528
|
+
};
|
|
123137
123529
|
export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
|
|
123138
123530
|
helpCenterAri: Scalars['ID']['input'];
|
|
123139
123531
|
widgetId: Scalars['ID']['input'];
|
|
@@ -123509,6 +123901,9 @@ export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
|
123509
123901
|
export declare type MutationGoals_DeleteRiskArgs = {
|
|
123510
123902
|
input: TownsquareGoalsDeleteRiskInput;
|
|
123511
123903
|
};
|
|
123904
|
+
export declare type MutationGoals_EditArgs = {
|
|
123905
|
+
input?: InputMaybe<TownsquareGoalsEditInput>;
|
|
123906
|
+
};
|
|
123512
123907
|
export declare type MutationGoals_EditCommentArgs = {
|
|
123513
123908
|
input: TownsquareGoalsEditCommentInput;
|
|
123514
123909
|
};
|
|
@@ -124258,6 +124653,9 @@ export declare type MutationProjects_EditUpdateArgs = {
|
|
|
124258
124653
|
export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
124259
124654
|
input: TownsquareProjectsEditUserCustomFieldInput;
|
|
124260
124655
|
};
|
|
124656
|
+
export declare type MutationProjects_GrantAccessArgs = {
|
|
124657
|
+
input: TownsquareProjectGrantAccessInput;
|
|
124658
|
+
};
|
|
124261
124659
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
124262
124660
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
124263
124661
|
};
|
|
@@ -124285,9 +124683,15 @@ export declare type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
124285
124683
|
export declare type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
124286
124684
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
124287
124685
|
};
|
|
124686
|
+
export declare type MutationProjects_RevokeAccessArgs = {
|
|
124687
|
+
input: TownsquareProjectRevokeAccessInput;
|
|
124688
|
+
};
|
|
124288
124689
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
124289
124690
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
124290
124691
|
};
|
|
124692
|
+
export declare type MutationProjects_SetUserWatchingTeamArgs = {
|
|
124693
|
+
input: TownsquareProjectsSetUserWatchingTeamInput;
|
|
124694
|
+
};
|
|
124291
124695
|
export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
124292
124696
|
input?: InputMaybe<TownsquareProjectsSetWatchingProjectInput>;
|
|
124293
124697
|
};
|
|
@@ -127873,6 +128277,7 @@ export declare type PublishedContentProperties = {
|
|
|
127873
128277
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
127874
128278
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
127875
128279
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
128280
|
+
hasBeenTitled?: Maybe<Scalars['Boolean']['output']>;
|
|
127876
128281
|
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
127877
128282
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
127878
128283
|
};
|
|
@@ -128119,11 +128524,13 @@ export declare type Query = {
|
|
|
128119
128524
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
128120
128525
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
128121
128526
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
128527
|
+
avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
|
|
128122
128528
|
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
128123
128529
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
128124
128530
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
128125
128531
|
blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
128126
128532
|
blockService_getBlock?: Maybe<BlockServiceBlockPayload>;
|
|
128533
|
+
blockService_getDocumentReferenceBlocks?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
|
|
128127
128534
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
128128
128535
|
boardScope?: Maybe<BoardScope>;
|
|
128129
128536
|
buildsByApp?: Maybe<BuildConnection>;
|
|
@@ -128154,6 +128561,7 @@ export declare type Query = {
|
|
|
128154
128561
|
ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
128155
128562
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
128156
128563
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
128564
|
+
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
128157
128565
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
128158
128566
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
128159
128567
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -128338,6 +128746,7 @@ export declare type Query = {
|
|
|
128338
128746
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
128339
128747
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
128340
128748
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
128749
|
+
cpls_settings?: Maybe<CplsSettings>;
|
|
128341
128750
|
cpls_testFeatureGate?: Maybe<Scalars['Boolean']['output']>;
|
|
128342
128751
|
cpls_workView?: Maybe<CplsWorkView>;
|
|
128343
128752
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
@@ -128478,11 +128887,13 @@ export declare type Query = {
|
|
|
128478
128887
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
128479
128888
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
128480
128889
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
128890
|
+
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
128481
128891
|
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
128482
128892
|
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
128483
128893
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
128484
128894
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
128485
128895
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
128896
|
+
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
128486
128897
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
128487
128898
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
128488
128899
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -128597,6 +129008,7 @@ export declare type Query = {
|
|
|
128597
129008
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
128598
129009
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
128599
129010
|
jsw?: Maybe<JswQuery>;
|
|
129011
|
+
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
128600
129012
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
128601
129013
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
128602
129014
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -129650,8 +130062,10 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
129650
130062
|
};
|
|
129651
130063
|
export declare type QueryAssetsDm_DataSourceTypesArgs = {
|
|
129652
130064
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130065
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129653
130066
|
cloudId: Scalars['String']['input'];
|
|
129654
130067
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130068
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129655
130069
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
129656
130070
|
sortBy?: InputMaybe<AssetsDmSortByInput>;
|
|
129657
130071
|
workspaceId: Scalars['String']['input'];
|
|
@@ -129879,6 +130293,9 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
129879
130293
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
129880
130294
|
input: AvpGetDashboardTemplatesInput;
|
|
129881
130295
|
};
|
|
130296
|
+
export declare type QueryAvpanalytics_GetmodeldataArgs = {
|
|
130297
|
+
input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
|
|
130298
|
+
};
|
|
129882
130299
|
export declare type QueryAvpanalytics_ListModelsArgs = {
|
|
129883
130300
|
input?: InputMaybe<AvpAnalyticsListModelsRequest>;
|
|
129884
130301
|
};
|
|
@@ -129894,6 +130311,9 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
129894
130311
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
129895
130312
|
blockAri: Scalars['String']['input'];
|
|
129896
130313
|
};
|
|
130314
|
+
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
130315
|
+
documentAri: Scalars['String']['input'];
|
|
130316
|
+
};
|
|
129897
130317
|
export declare type QueryBlockedAccessRestrictionsArgs = {
|
|
129898
130318
|
accessType: ResourceAccessType;
|
|
129899
130319
|
contentId: Scalars['Long']['input'];
|
|
@@ -130004,6 +130424,10 @@ export declare type QueryCfo_AnalyticsArgs = {
|
|
|
130004
130424
|
endDate: Scalars['String']['input'];
|
|
130005
130425
|
startDate: Scalars['String']['input'];
|
|
130006
130426
|
};
|
|
130427
|
+
export declare type QueryChangeManagement_RovoRiskAssessmentSettingsArgs = {
|
|
130428
|
+
cloudId: Scalars['ID']['input'];
|
|
130429
|
+
projectId: Scalars['String']['input'];
|
|
130430
|
+
};
|
|
130007
130431
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
130008
130432
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
130009
130433
|
};
|
|
@@ -130924,6 +131348,9 @@ export declare type QueryCpls_PeopleViewArgs = {
|
|
|
130924
131348
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
130925
131349
|
id: Scalars['ID']['input'];
|
|
130926
131350
|
};
|
|
131351
|
+
export declare type QueryCpls_SettingsArgs = {
|
|
131352
|
+
id: Scalars['ID']['input'];
|
|
131353
|
+
};
|
|
130927
131354
|
export declare type QueryCpls_TestFeatureGateArgs = {
|
|
130928
131355
|
cloudId: Scalars['ID']['input'];
|
|
130929
131356
|
};
|
|
@@ -131465,6 +131892,12 @@ export declare type QueryGoals_ByIdsArgs = {
|
|
|
131465
131892
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
131466
131893
|
goalTypeId: Scalars['ID']['input'];
|
|
131467
131894
|
};
|
|
131895
|
+
export declare type QueryGoals_GoalTypesArgs = {
|
|
131896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131897
|
+
containerId: Scalars['ID']['input'];
|
|
131898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131899
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131900
|
+
};
|
|
131468
131901
|
export declare type QueryGoals_GoalTypesByIdsArgs = {
|
|
131469
131902
|
goalTypeIds: Array<Scalars['ID']['input']>;
|
|
131470
131903
|
};
|
|
@@ -131484,6 +131917,13 @@ export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
|
131484
131917
|
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
131485
131918
|
metricIds: Array<Scalars['ID']['input']>;
|
|
131486
131919
|
};
|
|
131920
|
+
export declare type QueryGoals_SearchArgs = {
|
|
131921
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131922
|
+
containerId: Scalars['ID']['input'];
|
|
131923
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131924
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
131925
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
131926
|
+
};
|
|
131487
131927
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
131488
131928
|
contextAri: Scalars['ID']['input'];
|
|
131489
131929
|
};
|
|
@@ -131912,6 +132352,10 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
131912
132352
|
conversationAri: Scalars['ID']['input'];
|
|
131913
132353
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131914
132354
|
};
|
|
132355
|
+
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
132356
|
+
id: Scalars['ID']['input'];
|
|
132357
|
+
spaceAri: Scalars['ID']['input'];
|
|
132358
|
+
};
|
|
131915
132359
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
131916
132360
|
ids: Array<Scalars['ID']['input']>;
|
|
131917
132361
|
};
|
|
@@ -132204,6 +132648,7 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
132204
132648
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132205
132649
|
issueId: Scalars['String']['input'];
|
|
132206
132650
|
projectKey: Scalars['String']['input'];
|
|
132651
|
+
scopeType?: InputMaybe<JiraPlaybookScopeType>;
|
|
132207
132652
|
};
|
|
132208
132653
|
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
132209
132654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -156154,6 +156599,7 @@ export declare type SoftwareBoard = {
|
|
|
156154
156599
|
id?: Maybe<Scalars['ID']['output']>;
|
|
156155
156600
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
156156
156601
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
156602
|
+
mediaReadConfig?: Maybe<JiraMediaReadConfig>;
|
|
156157
156603
|
name?: Maybe<Scalars['String']['output']>;
|
|
156158
156604
|
rankCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
156159
156605
|
showDaysInColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -156186,6 +156632,7 @@ export declare type SoftwareCard = {
|
|
|
156186
156632
|
fixVersionsIds: Array<Scalars['ID']['output']>;
|
|
156187
156633
|
flagged?: Maybe<Scalars['Boolean']['output']>;
|
|
156188
156634
|
id?: Maybe<Scalars['ID']['output']>;
|
|
156635
|
+
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
156189
156636
|
key?: Maybe<Scalars['String']['output']>;
|
|
156190
156637
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
156191
156638
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -159188,7 +159635,7 @@ export declare type Subscription = {
|
|
|
159188
159635
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
159189
159636
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
159190
159637
|
jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
|
|
159191
|
-
kitsune_onFeedbackCreated?: Maybe<
|
|
159638
|
+
kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
|
|
159192
159639
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
159193
159640
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
159194
159641
|
migration: MigrationSubscription;
|
|
@@ -159261,7 +159708,6 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
|
|
|
159261
159708
|
workItemId: Scalars['ID']['input'];
|
|
159262
159709
|
};
|
|
159263
159710
|
export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
159264
|
-
id: Scalars['ID']['input'];
|
|
159265
159711
|
spaceAri: Scalars['ID']['input'];
|
|
159266
159712
|
};
|
|
159267
159713
|
export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
@@ -161853,6 +162299,15 @@ export declare type TownsquareGoalsEditGoalTypePairInput = {
|
|
|
161853
162299
|
goalType: TownsquareEditGoalTypeInputV2;
|
|
161854
162300
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
161855
162301
|
};
|
|
162302
|
+
export declare type TownsquareGoalsEditInput = {
|
|
162303
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162304
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
162305
|
+
goalId: Scalars['ID']['input'];
|
|
162306
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
162307
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
162308
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
162309
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
162310
|
+
};
|
|
161856
162311
|
export declare type TownsquareGoalsEditLearningInput = {
|
|
161857
162312
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161858
162313
|
learningId: Scalars['ID']['input'];
|
|
@@ -161901,6 +162356,12 @@ export declare type TownsquareGoalsEditNumberCustomFieldPayload = {
|
|
|
161901
162356
|
success: Scalars['Boolean']['output'];
|
|
161902
162357
|
valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
161903
162358
|
};
|
|
162359
|
+
export declare type TownsquareGoalsEditPayload = {
|
|
162360
|
+
__typename?: 'TownsquareGoalsEditPayload';
|
|
162361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162362
|
+
goal?: Maybe<TownsquareGoal>;
|
|
162363
|
+
success: Scalars['Boolean']['output'];
|
|
162364
|
+
};
|
|
161904
162365
|
export declare type TownsquareGoalsEditRiskInput = {
|
|
161905
162366
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161906
162367
|
riskId: Scalars['ID']['input'];
|
|
@@ -162551,6 +163012,10 @@ export declare enum TownsquareProjectAccessRole {
|
|
|
162551
163012
|
Editor = "EDITOR",
|
|
162552
163013
|
Viewer = "VIEWER"
|
|
162553
163014
|
}
|
|
163015
|
+
export declare enum TownsquareProjectAccessRoleInput {
|
|
163016
|
+
Editor = "EDITOR",
|
|
163017
|
+
Viewer = "VIEWER"
|
|
163018
|
+
}
|
|
162554
163019
|
export declare type TownsquareProjectCapabilities = {
|
|
162555
163020
|
__typename?: 'TownsquareProjectCapabilities';
|
|
162556
163021
|
canAddContributors?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162655,6 +163120,19 @@ export declare enum TownsquareProjectFusionField {
|
|
|
162655
163120
|
Status = "STATUS",
|
|
162656
163121
|
Summary = "SUMMARY"
|
|
162657
163122
|
}
|
|
163123
|
+
export declare type TownsquareProjectGrantAccessInput = {
|
|
163124
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163125
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
163126
|
+
projectId: Scalars['ID']['input'];
|
|
163127
|
+
role: TownsquareProjectAccessRoleInput;
|
|
163128
|
+
};
|
|
163129
|
+
export declare type TownsquareProjectGrantAccessPayload = {
|
|
163130
|
+
__typename?: 'TownsquareProjectGrantAccessPayload';
|
|
163131
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
163132
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163133
|
+
project?: Maybe<TownsquareProject>;
|
|
163134
|
+
success: Scalars['Boolean']['output'];
|
|
163135
|
+
};
|
|
162658
163136
|
export declare enum TownsquareProjectPhase {
|
|
162659
163137
|
Done = "done",
|
|
162660
163138
|
InProgress = "in_progress",
|
|
@@ -162667,6 +163145,17 @@ export declare type TownsquareProjectPhaseDetails = {
|
|
|
162667
163145
|
id: Scalars['Int']['output'];
|
|
162668
163146
|
name?: Maybe<TownsquareProjectPhase>;
|
|
162669
163147
|
};
|
|
163148
|
+
export declare type TownsquareProjectRevokeAccessInput = {
|
|
163149
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
163150
|
+
projectId: Scalars['ID']['input'];
|
|
163151
|
+
};
|
|
163152
|
+
export declare type TownsquareProjectRevokeAccessPayload = {
|
|
163153
|
+
__typename?: 'TownsquareProjectRevokeAccessPayload';
|
|
163154
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163155
|
+
project?: Maybe<TownsquareProject>;
|
|
163156
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
163157
|
+
success: Scalars['Boolean']['output'];
|
|
163158
|
+
};
|
|
162670
163159
|
export declare enum TownsquareProjectSortEnum {
|
|
162671
163160
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
162672
163161
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -163236,6 +163725,17 @@ export declare type TownsquareProjectsSetDependencyPayload = {
|
|
|
163236
163725
|
projectDependency?: Maybe<TownsquareProjectDependency>;
|
|
163237
163726
|
success: Scalars['Boolean']['output'];
|
|
163238
163727
|
};
|
|
163728
|
+
export declare type TownsquareProjectsSetUserWatchingTeamInput = {
|
|
163729
|
+
containerId: Scalars['ID']['input'];
|
|
163730
|
+
isWatching: Scalars['Boolean']['input'];
|
|
163731
|
+
teamId: Scalars['ID']['input'];
|
|
163732
|
+
};
|
|
163733
|
+
export declare type TownsquareProjectsSetUserWatchingTeamPayload = {
|
|
163734
|
+
__typename?: 'TownsquareProjectsSetUserWatchingTeamPayload';
|
|
163735
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163736
|
+
success: Scalars['Boolean']['output'];
|
|
163737
|
+
team?: Maybe<TeamV2>;
|
|
163738
|
+
};
|
|
163239
163739
|
export declare type TownsquareProjectsSetWatchingProjectInput = {
|
|
163240
163740
|
isWatching: Scalars['Boolean']['input'];
|
|
163241
163741
|
projectId: Scalars['ID']['input'];
|
|
@@ -170037,6 +170537,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
170037
170537
|
name: Scalars['String']['input'];
|
|
170038
170538
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
170039
170539
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
170540
|
+
taskId?: InputMaybe<Scalars['ID']['input']>;
|
|
170040
170541
|
type: JiraPlaybookStepType;
|
|
170041
170542
|
};
|
|
170042
170543
|
export declare type UpdateMetadataInput = {
|
|
@@ -171532,6 +172033,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
171532
172033
|
};
|
|
171533
172034
|
export declare type WhiteboardFeatures = {
|
|
171534
172035
|
__typename?: 'WhiteboardFeatures';
|
|
172036
|
+
advancedDiagrams?: Maybe<ConfluenceAdvancedDiagramsFeature>;
|
|
171535
172037
|
cloudArchitectureShapes?: Maybe<ConfluenceCloudArchitectureShapesFeature>;
|
|
171536
172038
|
smartConnectors?: Maybe<SmartConnectorsFeature>;
|
|
171537
172039
|
smartSections?: Maybe<SmartSectionsFeature>;
|