@forge/cli-shared 8.13.0-next.5 → 8.13.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 +25 -0
- package/out/graphql/graphql-types.d.ts +864 -18
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +64 -33
- package/package.json +2 -2
|
@@ -154,6 +154,60 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
154
154
|
errors?: Maybe<Array<MutationError>>;
|
|
155
155
|
success: Scalars['Boolean']['output'];
|
|
156
156
|
};
|
|
157
|
+
export declare type AvpAnalyticsListModelsRequest = {
|
|
158
|
+
category: AvpAnalyticsModelCategory;
|
|
159
|
+
cloudId: Scalars['ID']['input'];
|
|
160
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
161
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
162
|
+
product: AvpAnalyticsProductType;
|
|
163
|
+
type: AvpAnalyticsModelType;
|
|
164
|
+
workspaceId: Scalars['ID']['input'];
|
|
165
|
+
};
|
|
166
|
+
export declare type AvpAnalyticsListModelsResponse = {
|
|
167
|
+
__typename?: 'AVPAnalyticsListModelsResponse';
|
|
168
|
+
hasMore: Scalars['Boolean']['output'];
|
|
169
|
+
models: Array<AvpAnalyticsModelSummary>;
|
|
170
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
};
|
|
172
|
+
export declare enum AvpAnalyticsModelCategory {
|
|
173
|
+
Dynamic = "DYNAMIC",
|
|
174
|
+
Static = "STATIC"
|
|
175
|
+
}
|
|
176
|
+
export declare enum AvpAnalyticsModelStatus {
|
|
177
|
+
Active = "ACTIVE",
|
|
178
|
+
Draft = "DRAFT"
|
|
179
|
+
}
|
|
180
|
+
export declare type AvpAnalyticsModelSummary = {
|
|
181
|
+
__typename?: 'AVPAnalyticsModelSummary';
|
|
182
|
+
category: AvpAnalyticsModelCategory;
|
|
183
|
+
createdAt: Scalars['DateTime']['output'];
|
|
184
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
185
|
+
isTemplate: Scalars['Boolean']['output'];
|
|
186
|
+
modelId: Scalars['String']['output'];
|
|
187
|
+
name: Scalars['String']['output'];
|
|
188
|
+
numberOfAttributes: Scalars['Int']['output'];
|
|
189
|
+
numberOfModelsLinked: Scalars['Int']['output'];
|
|
190
|
+
product: AvpAnalyticsProductType;
|
|
191
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
sourceType?: Maybe<AvpAnalyticsSourceType>;
|
|
193
|
+
status: AvpAnalyticsModelStatus;
|
|
194
|
+
templateModelId?: Maybe<Scalars['String']['output']>;
|
|
195
|
+
type: AvpAnalyticsModelType;
|
|
196
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
197
|
+
version: Scalars['Int']['output'];
|
|
198
|
+
};
|
|
199
|
+
export declare enum AvpAnalyticsModelType {
|
|
200
|
+
System = "SYSTEM",
|
|
201
|
+
UserDefined = "USER_DEFINED"
|
|
202
|
+
}
|
|
203
|
+
export declare enum AvpAnalyticsProductType {
|
|
204
|
+
Assets = "ASSETS",
|
|
205
|
+
Jira = "JIRA"
|
|
206
|
+
}
|
|
207
|
+
export declare enum AvpAnalyticsSourceType {
|
|
208
|
+
AssetObjectType = "ASSET_OBJECT_TYPE",
|
|
209
|
+
AssetSchemaType = "ASSET_SCHEMA_TYPE"
|
|
210
|
+
}
|
|
157
211
|
export declare enum AvpCanvasRowHeight {
|
|
158
212
|
Large = "large",
|
|
159
213
|
Medium = "medium",
|
|
@@ -655,7 +709,8 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
655
709
|
};
|
|
656
710
|
export declare enum AvpIntegrationId {
|
|
657
711
|
JsmAssets = "JSM_ASSETS",
|
|
658
|
-
JsmSummaryPage = "JSM_SUMMARY_PAGE"
|
|
712
|
+
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
713
|
+
Townsquare = "TOWNSQUARE"
|
|
659
714
|
}
|
|
660
715
|
export declare type AvpMetricsConfiguration = {
|
|
661
716
|
__typename?: 'AVPMetricsConfiguration';
|
|
@@ -1674,6 +1729,7 @@ export declare type AdminAuditLogEvent = {
|
|
|
1674
1729
|
};
|
|
1675
1730
|
export declare type AdminAuditLogEventAction = {
|
|
1676
1731
|
__typename?: 'AdminAuditLogEventAction';
|
|
1732
|
+
id: Scalars['String']['output'];
|
|
1677
1733
|
name: Scalars['String']['output'];
|
|
1678
1734
|
};
|
|
1679
1735
|
export declare type AdminAuditLogEventConnection = {
|
|
@@ -1974,6 +2030,28 @@ export declare type AdminGroupEdge = {
|
|
|
1974
2030
|
cursor: Scalars['String']['output'];
|
|
1975
2031
|
node?: Maybe<AdminGroup>;
|
|
1976
2032
|
};
|
|
2033
|
+
export declare type AdminGroupRoleAssignment = {
|
|
2034
|
+
__typename?: 'AdminGroupRoleAssignment';
|
|
2035
|
+
defaultRole?: Maybe<Scalars['String']['output']>;
|
|
2036
|
+
resourceId: Scalars['String']['output'];
|
|
2037
|
+
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2038
|
+
};
|
|
2039
|
+
export declare type AdminGroupRoleAssignmentEdge = {
|
|
2040
|
+
__typename?: 'AdminGroupRoleAssignmentEdge';
|
|
2041
|
+
cursor: Scalars['String']['output'];
|
|
2042
|
+
node?: Maybe<AdminGroupRoleAssignment>;
|
|
2043
|
+
};
|
|
2044
|
+
export declare type AdminGroupRoleAssignmentsConnection = {
|
|
2045
|
+
__typename?: 'AdminGroupRoleAssignmentsConnection';
|
|
2046
|
+
edges?: Maybe<Array<AdminGroupRoleAssignmentEdge>>;
|
|
2047
|
+
pageInfo: PageInfo;
|
|
2048
|
+
};
|
|
2049
|
+
export declare type AdminGroupRoleAssignmentsInput = {
|
|
2050
|
+
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2051
|
+
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2052
|
+
resourceOwners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2053
|
+
roleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2054
|
+
};
|
|
1977
2055
|
export declare type AdminGroupStatsQueryInput = {
|
|
1978
2056
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1979
2057
|
includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2584,6 +2662,11 @@ export declare type AdminUnitsForOrgSearchInput = {
|
|
|
2584
2662
|
export declare type AdminUnitsForOrgSortInput = {
|
|
2585
2663
|
name: SortDirection;
|
|
2586
2664
|
};
|
|
2665
|
+
export declare type AdminUnlinkScimUserResponsePayload = Payload & {
|
|
2666
|
+
__typename?: 'AdminUnlinkScimUserResponsePayload';
|
|
2667
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2668
|
+
success: Scalars['Boolean']['output'];
|
|
2669
|
+
};
|
|
2587
2670
|
export declare type AdminUpdateInvitePolicyInput = {
|
|
2588
2671
|
allowedAction?: InputMaybe<AdminInviteAllowedAction>;
|
|
2589
2672
|
appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
|
|
@@ -2654,12 +2737,32 @@ export declare type AdminUserEdge = {
|
|
|
2654
2737
|
cursor: Scalars['String']['output'];
|
|
2655
2738
|
node?: Maybe<AdminUser>;
|
|
2656
2739
|
};
|
|
2740
|
+
export declare type AdminUserEmailInput = {
|
|
2741
|
+
email: Scalars['String']['input'];
|
|
2742
|
+
};
|
|
2657
2743
|
export declare type AdminUserInviteAppliesTo = AdminInviteGroup | AdminResourceRole;
|
|
2658
2744
|
export declare type AdminUserManagement = {
|
|
2659
2745
|
__typename?: 'AdminUserManagement';
|
|
2660
2746
|
availableRoles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2661
2747
|
userAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2662
2748
|
};
|
|
2749
|
+
export declare type AdminUserProvisioningScimLink = {
|
|
2750
|
+
__typename?: 'AdminUserProvisioningScimLink';
|
|
2751
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2752
|
+
orgId: Scalars['ID']['output'];
|
|
2753
|
+
scimDirectoryId: Scalars['ID']['output'];
|
|
2754
|
+
scimUserId: Scalars['ID']['output'];
|
|
2755
|
+
};
|
|
2756
|
+
export declare type AdminUserProvisioningScimLinkConnection = {
|
|
2757
|
+
__typename?: 'AdminUserProvisioningScimLinkConnection';
|
|
2758
|
+
edges?: Maybe<Array<AdminUserProvisioningScimLinkEdge>>;
|
|
2759
|
+
pageInfo: PageInfo;
|
|
2760
|
+
};
|
|
2761
|
+
export declare type AdminUserProvisioningScimLinkEdge = {
|
|
2762
|
+
__typename?: 'AdminUserProvisioningScimLinkEdge';
|
|
2763
|
+
cursor: Scalars['String']['output'];
|
|
2764
|
+
node?: Maybe<AdminUserProvisioningScimLink>;
|
|
2765
|
+
};
|
|
2663
2766
|
export declare type AdminUserRole = {
|
|
2664
2767
|
__typename?: 'AdminUserRole';
|
|
2665
2768
|
name: Scalars['String']['output'];
|
|
@@ -4449,6 +4552,7 @@ export declare type AppHostServiceScope = {
|
|
|
4449
4552
|
description: Scalars['String']['output'];
|
|
4450
4553
|
key: Scalars['String']['output'];
|
|
4451
4554
|
name: Scalars['String']['output'];
|
|
4555
|
+
restricted?: Maybe<Scalars['Boolean']['output']>;
|
|
4452
4556
|
service: AppHostService;
|
|
4453
4557
|
};
|
|
4454
4558
|
export declare type AppInstallation = {
|
|
@@ -8563,7 +8667,7 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
8563
8667
|
}
|
|
8564
8668
|
export declare type CcpCreateEntitlementInput = {
|
|
8565
8669
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
8566
|
-
|
|
8670
|
+
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
8567
8671
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
8568
8672
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
8569
8673
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
@@ -15231,6 +15335,7 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQuery = {
|
|
|
15231
15335
|
filter?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
15232
15336
|
};
|
|
15233
15337
|
export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
15338
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15234
15339
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15235
15340
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
15236
15341
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
@@ -16772,6 +16877,7 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
16772
16877
|
};
|
|
16773
16878
|
export declare type ConfluenceBlogPostProperty = {
|
|
16774
16879
|
__typename?: 'ConfluenceBlogPostProperty';
|
|
16880
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
16775
16881
|
key: Scalars['String']['output'];
|
|
16776
16882
|
value: Scalars['String']['output'];
|
|
16777
16883
|
};
|
|
@@ -19249,6 +19355,7 @@ export declare type ConfluenceNbmPerfPages = {
|
|
|
19249
19355
|
__typename?: 'ConfluenceNbmPerfPages';
|
|
19250
19356
|
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
19251
19357
|
dashboardCount?: Maybe<Scalars['Long']['output']>;
|
|
19358
|
+
panelToExpandPageIds: Array<Maybe<Scalars['String']['output']>>;
|
|
19252
19359
|
severity?: Maybe<ConfluenceNbmPerfPageSeverity>;
|
|
19253
19360
|
sqlDuplicates: Array<ConfluenceNbmPerfSqlDuplicate>;
|
|
19254
19361
|
tableJoinerChains: Array<ConfluenceNbmPerfTableJoinerChain>;
|
|
@@ -19658,6 +19765,7 @@ export declare type ConfluencePageMoved = {
|
|
|
19658
19765
|
};
|
|
19659
19766
|
export declare type ConfluencePageProperty = {
|
|
19660
19767
|
__typename?: 'ConfluencePageProperty';
|
|
19768
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19661
19769
|
key: Scalars['String']['output'];
|
|
19662
19770
|
value: Scalars['String']['output'];
|
|
19663
19771
|
};
|
|
@@ -22266,6 +22374,7 @@ export declare type Content = {
|
|
|
22266
22374
|
status?: Maybe<Scalars['String']['output']>;
|
|
22267
22375
|
subType?: Maybe<Scalars['String']['output']>;
|
|
22268
22376
|
title?: Maybe<Scalars['String']['output']>;
|
|
22377
|
+
titleIsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
22269
22378
|
type?: Maybe<Scalars['String']['output']>;
|
|
22270
22379
|
version?: Maybe<Version>;
|
|
22271
22380
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
@@ -24773,6 +24882,21 @@ export declare type CplsFiltersInput = {
|
|
|
24773
24882
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24774
24883
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
24775
24884
|
};
|
|
24885
|
+
export declare type CplsImportCapacityDataInput = {
|
|
24886
|
+
cloudId: Scalars['ID']['input'];
|
|
24887
|
+
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
24888
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24889
|
+
contributorWorkAssociations?: InputMaybe<Array<CplsContributorWorkAssociation>>;
|
|
24890
|
+
scopeId: Scalars['ID']['input'];
|
|
24891
|
+
};
|
|
24892
|
+
export declare type CplsImportCapacityDataPayload = Payload & {
|
|
24893
|
+
__typename?: 'CplsImportCapacityDataPayload';
|
|
24894
|
+
contributionResults?: Maybe<CplsAddContributionsPayload>;
|
|
24895
|
+
contributorScopeAssociationResults?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
24896
|
+
contributorWorkAssociationResults?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
24897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24898
|
+
success: Scalars['Boolean']['output'];
|
|
24899
|
+
};
|
|
24776
24900
|
export declare type CplsJiraWorkItem = {
|
|
24777
24901
|
__typename?: 'CplsJiraWorkItem';
|
|
24778
24902
|
jiraWorkItem?: Maybe<JiraIssue>;
|
|
@@ -26203,9 +26327,15 @@ export declare type CsmAiWidgetClientKey = {
|
|
|
26203
26327
|
clientKeySecret: Scalars['String']['output'];
|
|
26204
26328
|
enabled: Scalars['Boolean']['output'];
|
|
26205
26329
|
};
|
|
26330
|
+
export declare type CsmAiWidgetClientKeyStatus = {
|
|
26331
|
+
__typename?: 'CsmAiWidgetClientKeyStatus';
|
|
26332
|
+
clientKeyId: Scalars['String']['output'];
|
|
26333
|
+
enabled: Scalars['Boolean']['output'];
|
|
26334
|
+
};
|
|
26206
26335
|
export declare type CsmAiWidgetConfig = {
|
|
26207
26336
|
__typename?: 'CsmAiWidgetConfig';
|
|
26208
26337
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
26338
|
+
clientKeys?: Maybe<Array<CsmAiWidgetClientKeyStatus>>;
|
|
26209
26339
|
description?: Maybe<Scalars['String']['output']>;
|
|
26210
26340
|
id: Scalars['ID']['output'];
|
|
26211
26341
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28838,6 +28968,7 @@ export declare type DevAiRovoDevBulkSessionResult = {
|
|
|
28838
28968
|
};
|
|
28839
28969
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
28840
28970
|
cloudId: Scalars['ID']['input'];
|
|
28971
|
+
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28841
28972
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
28842
28973
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
28843
28974
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -28846,6 +28977,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
28846
28977
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
28847
28978
|
};
|
|
28848
28979
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
28980
|
+
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28849
28981
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
28850
28982
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
28851
28983
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -30860,6 +30992,32 @@ export declare enum DistributionStatus {
|
|
|
30860
30992
|
Development = "DEVELOPMENT",
|
|
30861
30993
|
Public = "PUBLIC"
|
|
30862
30994
|
}
|
|
30995
|
+
export declare type DlpDetectorClassificationMappingListResponse = {
|
|
30996
|
+
__typename?: 'DlpDetectorClassificationMappingListResponse';
|
|
30997
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
30998
|
+
detectorClassificationMappingResponseList?: Maybe<Array<Maybe<DlpDetectorClassificationMappingResponse>>>;
|
|
30999
|
+
};
|
|
31000
|
+
export declare type DlpDetectorClassificationMappingRequestInput = {
|
|
31001
|
+
classificationAri?: InputMaybe<Scalars['String']['input']>;
|
|
31002
|
+
detectorId?: InputMaybe<Scalars['String']['input']>;
|
|
31003
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
31004
|
+
status?: InputMaybe<DlpMappingStatus>;
|
|
31005
|
+
};
|
|
31006
|
+
export declare type DlpDetectorClassificationMappingResponse = {
|
|
31007
|
+
__typename?: 'DlpDetectorClassificationMappingResponse';
|
|
31008
|
+
changedBy?: Maybe<Scalars['String']['output']>;
|
|
31009
|
+
changedOn?: Maybe<Scalars['String']['output']>;
|
|
31010
|
+
classificationAri?: Maybe<Scalars['String']['output']>;
|
|
31011
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
31012
|
+
createdOn?: Maybe<Scalars['String']['output']>;
|
|
31013
|
+
detectorId?: Maybe<Scalars['String']['output']>;
|
|
31014
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
31015
|
+
status?: Maybe<DlpMappingStatus>;
|
|
31016
|
+
};
|
|
31017
|
+
export declare enum DlpMappingStatus {
|
|
31018
|
+
Draft = "DRAFT",
|
|
31019
|
+
Published = "PUBLISHED"
|
|
31020
|
+
}
|
|
30863
31021
|
export declare type DocumentBody = {
|
|
30864
31022
|
__typename?: 'DocumentBody';
|
|
30865
31023
|
representation: DocumentRepresentation;
|
|
@@ -36051,6 +36209,7 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
36051
36209
|
description: Scalars['String']['output'];
|
|
36052
36210
|
icon: Scalars['String']['output'];
|
|
36053
36211
|
id: Scalars['String']['output'];
|
|
36212
|
+
maxInstallations: Scalars['Int']['output'];
|
|
36054
36213
|
name: Scalars['String']['output'];
|
|
36055
36214
|
productAri: Scalars['ID']['output'];
|
|
36056
36215
|
};
|
|
@@ -36068,6 +36227,7 @@ export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
36068
36227
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
36069
36228
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36070
36229
|
icon: Scalars['String']['output'];
|
|
36230
|
+
maxInstallations: Scalars['Int']['output'];
|
|
36071
36231
|
name: Scalars['String']['output'];
|
|
36072
36232
|
productAri: Scalars['ID']['output'];
|
|
36073
36233
|
};
|
|
@@ -38813,8 +38973,12 @@ export declare type GraphStore = {
|
|
|
38813
38973
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
38814
38974
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
38815
38975
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
38976
|
+
atlassianUserCreatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection>;
|
|
38977
|
+
atlassianUserCreatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection>;
|
|
38816
38978
|
atlassianUserCreatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection>;
|
|
38817
38979
|
atlassianUserCreatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection>;
|
|
38980
|
+
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
38981
|
+
atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
38818
38982
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38819
38983
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38820
38984
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -38823,10 +38987,18 @@ export declare type GraphStore = {
|
|
|
38823
38987
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38824
38988
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
38825
38989
|
atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38990
|
+
atlassianUserOwnsExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection>;
|
|
38991
|
+
atlassianUserOwnsExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection>;
|
|
38826
38992
|
atlassianUserOwnsExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection>;
|
|
38827
38993
|
atlassianUserOwnsExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection>;
|
|
38994
|
+
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
38995
|
+
atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
38996
|
+
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
38997
|
+
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
38828
38998
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
38829
38999
|
atlassianUserUpdatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection>;
|
|
39000
|
+
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
39001
|
+
atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
38830
39002
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
38831
39003
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
38832
39004
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -38904,6 +39076,14 @@ export declare type GraphStore = {
|
|
|
38904
39076
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
38905
39077
|
dynamicRelationshipAssetToAsset?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToAssetConnection>;
|
|
38906
39078
|
dynamicRelationshipAssetToAssetInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseConnection>;
|
|
39079
|
+
dynamicRelationshipAssetToGroup?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection>;
|
|
39080
|
+
dynamicRelationshipAssetToGroupInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection>;
|
|
39081
|
+
dynamicRelationshipAssetToProject?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection>;
|
|
39082
|
+
dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
|
|
39083
|
+
dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
|
|
39084
|
+
dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
|
|
39085
|
+
dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
|
|
39086
|
+
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
38907
39087
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
38908
39088
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
38909
39089
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -38920,6 +39100,8 @@ export declare type GraphStore = {
|
|
|
38920
39100
|
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
38921
39101
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
38922
39102
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
39103
|
+
externalTeamWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection>;
|
|
39104
|
+
externalTeamWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
38923
39105
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
38924
39106
|
externalWorkerConflatesToIdentity3pUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection>;
|
|
38925
39107
|
externalWorkerConflatesToUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserConnection>;
|
|
@@ -40070,6 +40252,22 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
40070
40252
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40071
40253
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
40072
40254
|
};
|
|
40255
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactArgs = {
|
|
40256
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40257
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40259
|
+
id: Scalars['ID']['input'];
|
|
40260
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40261
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput>;
|
|
40262
|
+
};
|
|
40263
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactInverseArgs = {
|
|
40264
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40265
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40266
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40267
|
+
id: Scalars['ID']['input'];
|
|
40268
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40269
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput>;
|
|
40270
|
+
};
|
|
40073
40271
|
export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryArgs = {
|
|
40074
40272
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40075
40273
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40086,6 +40284,22 @@ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryInv
|
|
|
40086
40284
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40087
40285
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput>;
|
|
40088
40286
|
};
|
|
40287
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamArgs = {
|
|
40288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40289
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40291
|
+
id: Scalars['ID']['input'];
|
|
40292
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40293
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
40294
|
+
};
|
|
40295
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamInverseArgs = {
|
|
40296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40297
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40299
|
+
id: Scalars['ID']['input'];
|
|
40300
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40301
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
40302
|
+
};
|
|
40089
40303
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
40090
40304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40091
40305
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40150,6 +40364,22 @@ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs
|
|
|
40150
40364
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40151
40365
|
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
40152
40366
|
};
|
|
40367
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactArgs = {
|
|
40368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40369
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40371
|
+
id: Scalars['ID']['input'];
|
|
40372
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40373
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput>;
|
|
40374
|
+
};
|
|
40375
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactInverseArgs = {
|
|
40376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40379
|
+
id: Scalars['ID']['input'];
|
|
40380
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40381
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput>;
|
|
40382
|
+
};
|
|
40153
40383
|
export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryArgs = {
|
|
40154
40384
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40155
40385
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40166,6 +40396,38 @@ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryInvers
|
|
|
40166
40396
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40167
40397
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput>;
|
|
40168
40398
|
};
|
|
40399
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamArgs = {
|
|
40400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40401
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40403
|
+
id: Scalars['ID']['input'];
|
|
40404
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40405
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
40406
|
+
};
|
|
40407
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamInverseArgs = {
|
|
40408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40409
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40411
|
+
id: Scalars['ID']['input'];
|
|
40412
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40413
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
40414
|
+
};
|
|
40415
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
40416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40417
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40418
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40419
|
+
id: Scalars['ID']['input'];
|
|
40420
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40421
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput>;
|
|
40422
|
+
};
|
|
40423
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactInverseArgs = {
|
|
40424
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40425
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40426
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40427
|
+
id: Scalars['ID']['input'];
|
|
40428
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40429
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput>;
|
|
40430
|
+
};
|
|
40169
40431
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryArgs = {
|
|
40170
40432
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40171
40433
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40182,6 +40444,22 @@ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryInv
|
|
|
40182
40444
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40183
40445
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput>;
|
|
40184
40446
|
};
|
|
40447
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamArgs = {
|
|
40448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40449
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40451
|
+
id: Scalars['ID']['input'];
|
|
40452
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40453
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
40454
|
+
};
|
|
40455
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamInverseArgs = {
|
|
40456
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40457
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40458
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40459
|
+
id: Scalars['ID']['input'];
|
|
40460
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40461
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
40462
|
+
};
|
|
40185
40463
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
40186
40464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40187
40465
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40775,6 +41053,70 @@ export declare type GraphStoreDynamicRelationshipAssetToAssetInverseArgs = {
|
|
|
40775
41053
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40776
41054
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToAssetSortInput>;
|
|
40777
41055
|
};
|
|
41056
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupArgs = {
|
|
41057
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41058
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41059
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41060
|
+
id: Scalars['ID']['input'];
|
|
41061
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41062
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToGroupSortInput>;
|
|
41063
|
+
};
|
|
41064
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupInverseArgs = {
|
|
41065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41068
|
+
id: Scalars['ID']['input'];
|
|
41069
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41070
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToGroupSortInput>;
|
|
41071
|
+
};
|
|
41072
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectArgs = {
|
|
41073
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41074
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41075
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41076
|
+
id: Scalars['ID']['input'];
|
|
41077
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41078
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToProjectSortInput>;
|
|
41079
|
+
};
|
|
41080
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectInverseArgs = {
|
|
41081
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41082
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41084
|
+
id: Scalars['ID']['input'];
|
|
41085
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41086
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToProjectSortInput>;
|
|
41087
|
+
};
|
|
41088
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoArgs = {
|
|
41089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41092
|
+
id: Scalars['ID']['input'];
|
|
41093
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41094
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
41095
|
+
};
|
|
41096
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoInverseArgs = {
|
|
41097
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41098
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41100
|
+
id: Scalars['ID']['input'];
|
|
41101
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41102
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
41103
|
+
};
|
|
41104
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserArgs = {
|
|
41105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41106
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41108
|
+
id: Scalars['ID']['input'];
|
|
41109
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41110
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
41111
|
+
};
|
|
41112
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserInverseArgs = {
|
|
41113
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41114
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41115
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41116
|
+
id: Scalars['ID']['input'];
|
|
41117
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41118
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
41119
|
+
};
|
|
40778
41120
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
40779
41121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40780
41122
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40903,6 +41245,22 @@ export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs
|
|
|
40903
41245
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40904
41246
|
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
40905
41247
|
};
|
|
41248
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogArgs = {
|
|
41249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41250
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41252
|
+
id: Scalars['ID']['input'];
|
|
41253
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41254
|
+
sort?: InputMaybe<GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput>;
|
|
41255
|
+
};
|
|
41256
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogInverseArgs = {
|
|
41257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41258
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41259
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41260
|
+
id: Scalars['ID']['input'];
|
|
41261
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41262
|
+
sort?: InputMaybe<GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput>;
|
|
41263
|
+
};
|
|
40906
41264
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
40907
41265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40908
41266
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46657,9 +47015,15 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
|
46657
47015
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
46658
47016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46659
47017
|
};
|
|
47018
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput = {
|
|
47019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47020
|
+
};
|
|
46660
47021
|
export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput = {
|
|
46661
47022
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46662
47023
|
};
|
|
47024
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
47025
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47026
|
+
};
|
|
46663
47027
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
46664
47028
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46665
47029
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -46710,12 +47074,24 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
46710
47074
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
46711
47075
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46712
47076
|
};
|
|
47077
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput = {
|
|
47078
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47079
|
+
};
|
|
46713
47080
|
export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput = {
|
|
46714
47081
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46715
47082
|
};
|
|
47083
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
47084
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47085
|
+
};
|
|
47086
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
47087
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47088
|
+
};
|
|
46716
47089
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput = {
|
|
46717
47090
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46718
47091
|
};
|
|
47092
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
47093
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47094
|
+
};
|
|
46719
47095
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
46720
47096
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
46721
47097
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -46936,7 +47312,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
46936
47312
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
46937
47313
|
id: Scalars['ID']['output'];
|
|
46938
47314
|
};
|
|
46939
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47315
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46940
47316
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
46941
47317
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
46942
47318
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -46961,7 +47337,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
46961
47337
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
46962
47338
|
id: Scalars['ID']['output'];
|
|
46963
47339
|
};
|
|
46964
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47340
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46965
47341
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
46966
47342
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
46967
47343
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -48730,7 +49106,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
48730
49106
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
48731
49107
|
id: Scalars['ID']['output'];
|
|
48732
49108
|
};
|
|
48733
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49109
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48734
49110
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
48735
49111
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
48736
49112
|
value: Scalars['String']['output'];
|
|
@@ -48744,13 +49120,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
48744
49120
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
48745
49121
|
id: Scalars['ID']['output'];
|
|
48746
49122
|
};
|
|
48747
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49123
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48748
49124
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
48749
49125
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
48750
49126
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
48751
49127
|
id: Scalars['ID']['output'];
|
|
48752
49128
|
};
|
|
48753
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49129
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48754
49130
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
48755
49131
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
48756
49132
|
value: Scalars['Boolean']['output'];
|
|
@@ -48863,7 +49239,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
48863
49239
|
V2 = "V2",
|
|
48864
49240
|
V3 = "V3"
|
|
48865
49241
|
}
|
|
48866
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49242
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48867
49243
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
48868
49244
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
48869
49245
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -49314,6 +49690,18 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
49314
49690
|
export declare type GraphStoreDynamicRelationshipAssetToAssetSortInput = {
|
|
49315
49691
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49316
49692
|
};
|
|
49693
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupSortInput = {
|
|
49694
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49695
|
+
};
|
|
49696
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectSortInput = {
|
|
49697
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49698
|
+
};
|
|
49699
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoSortInput = {
|
|
49700
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49701
|
+
};
|
|
49702
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
49703
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49704
|
+
};
|
|
49317
49705
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
49318
49706
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49319
49707
|
};
|
|
@@ -49344,6 +49732,9 @@ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
|
49344
49732
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
49345
49733
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49346
49734
|
};
|
|
49735
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput = {
|
|
49736
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49737
|
+
};
|
|
49347
49738
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
49348
49739
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49349
49740
|
};
|
|
@@ -49642,7 +50033,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
49642
50033
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
49643
50034
|
id: Scalars['ID']['output'];
|
|
49644
50035
|
};
|
|
49645
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50036
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49646
50037
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
49647
50038
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
49648
50039
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -49656,7 +50047,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
49656
50047
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
49657
50048
|
id: Scalars['ID']['output'];
|
|
49658
50049
|
};
|
|
49659
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50050
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49660
50051
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
49661
50052
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
49662
50053
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54745,6 +55136,34 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
54745
55136
|
};
|
|
54746
55137
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
54747
55138
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
55139
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection = HasPageInfo & {
|
|
55140
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection';
|
|
55141
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge>>>;
|
|
55142
|
+
pageInfo: PageInfo;
|
|
55143
|
+
};
|
|
55144
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge = {
|
|
55145
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge';
|
|
55146
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55147
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55148
|
+
id: Scalars['ID']['output'];
|
|
55149
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55150
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactUnion>;
|
|
55151
|
+
};
|
|
55152
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55153
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection';
|
|
55154
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge>>>;
|
|
55155
|
+
pageInfo: PageInfo;
|
|
55156
|
+
};
|
|
55157
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge = {
|
|
55158
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge';
|
|
55159
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55160
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55161
|
+
id: Scalars['ID']['output'];
|
|
55162
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55163
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseUnion>;
|
|
55164
|
+
};
|
|
55165
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55166
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactUnion = ExternalCustomerContact;
|
|
54748
55167
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
54749
55168
|
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection';
|
|
54750
55169
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -54773,6 +55192,34 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgC
|
|
|
54773
55192
|
};
|
|
54774
55193
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
54775
55194
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55195
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection = HasPageInfo & {
|
|
55196
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection';
|
|
55197
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge>>>;
|
|
55198
|
+
pageInfo: PageInfo;
|
|
55199
|
+
};
|
|
55200
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge = {
|
|
55201
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge';
|
|
55202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55204
|
+
id: Scalars['ID']['output'];
|
|
55205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55206
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamUnion>;
|
|
55207
|
+
};
|
|
55208
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection = HasPageInfo & {
|
|
55209
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection';
|
|
55210
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge>>>;
|
|
55211
|
+
pageInfo: PageInfo;
|
|
55212
|
+
};
|
|
55213
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge = {
|
|
55214
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge';
|
|
55215
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55217
|
+
id: Scalars['ID']['output'];
|
|
55218
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55219
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion>;
|
|
55220
|
+
};
|
|
55221
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55222
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamUnion = ExternalTeam;
|
|
54776
55223
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
54777
55224
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
54778
55225
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -54833,6 +55280,34 @@ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverse
|
|
|
54833
55280
|
};
|
|
54834
55281
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54835
55282
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
|
|
55283
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection = HasPageInfo & {
|
|
55284
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection';
|
|
55285
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge>>>;
|
|
55286
|
+
pageInfo: PageInfo;
|
|
55287
|
+
};
|
|
55288
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge = {
|
|
55289
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge';
|
|
55290
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55291
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55292
|
+
id: Scalars['ID']['output'];
|
|
55293
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55294
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactUnion>;
|
|
55295
|
+
};
|
|
55296
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55297
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection';
|
|
55298
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge>>>;
|
|
55299
|
+
pageInfo: PageInfo;
|
|
55300
|
+
};
|
|
55301
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge = {
|
|
55302
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge';
|
|
55303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55305
|
+
id: Scalars['ID']['output'];
|
|
55306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55307
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseUnion>;
|
|
55308
|
+
};
|
|
55309
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55310
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactUnion = ExternalCustomerContact;
|
|
54836
55311
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
54837
55312
|
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection';
|
|
54838
55313
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -54861,6 +55336,62 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCate
|
|
|
54861
55336
|
};
|
|
54862
55337
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
54863
55338
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55339
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection = HasPageInfo & {
|
|
55340
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection';
|
|
55341
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge>>>;
|
|
55342
|
+
pageInfo: PageInfo;
|
|
55343
|
+
};
|
|
55344
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge = {
|
|
55345
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge';
|
|
55346
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55347
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55348
|
+
id: Scalars['ID']['output'];
|
|
55349
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55350
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamUnion>;
|
|
55351
|
+
};
|
|
55352
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection = HasPageInfo & {
|
|
55353
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection';
|
|
55354
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge>>>;
|
|
55355
|
+
pageInfo: PageInfo;
|
|
55356
|
+
};
|
|
55357
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge = {
|
|
55358
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge';
|
|
55359
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55360
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55361
|
+
id: Scalars['ID']['output'];
|
|
55362
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55363
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion>;
|
|
55364
|
+
};
|
|
55365
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55366
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamUnion = ExternalTeam;
|
|
55367
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
55368
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
55369
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
55370
|
+
pageInfo: PageInfo;
|
|
55371
|
+
};
|
|
55372
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge = {
|
|
55373
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge';
|
|
55374
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55375
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55376
|
+
id: Scalars['ID']['output'];
|
|
55377
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55378
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactUnion>;
|
|
55379
|
+
};
|
|
55380
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55381
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection';
|
|
55382
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge>>>;
|
|
55383
|
+
pageInfo: PageInfo;
|
|
55384
|
+
};
|
|
55385
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge = {
|
|
55386
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge';
|
|
55387
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55388
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55389
|
+
id: Scalars['ID']['output'];
|
|
55390
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55391
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseUnion>;
|
|
55392
|
+
};
|
|
55393
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55394
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactUnion = ExternalCustomerContact;
|
|
54864
55395
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
54865
55396
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection';
|
|
54866
55397
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -54889,6 +55420,34 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgC
|
|
|
54889
55420
|
};
|
|
54890
55421
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
54891
55422
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55423
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection = HasPageInfo & {
|
|
55424
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection';
|
|
55425
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge>>>;
|
|
55426
|
+
pageInfo: PageInfo;
|
|
55427
|
+
};
|
|
55428
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge = {
|
|
55429
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge';
|
|
55430
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55431
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55432
|
+
id: Scalars['ID']['output'];
|
|
55433
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55434
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamUnion>;
|
|
55435
|
+
};
|
|
55436
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection = HasPageInfo & {
|
|
55437
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection';
|
|
55438
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge>>>;
|
|
55439
|
+
pageInfo: PageInfo;
|
|
55440
|
+
};
|
|
55441
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge = {
|
|
55442
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge';
|
|
55443
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55444
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55445
|
+
id: Scalars['ID']['output'];
|
|
55446
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55447
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion>;
|
|
55448
|
+
};
|
|
55449
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55450
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamUnion = ExternalTeam;
|
|
54892
55451
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
54893
55452
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
54894
55453
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -55563,8 +56122,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
55563
56122
|
lastUpdated: Scalars['DateTime']['output'];
|
|
55564
56123
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
55565
56124
|
};
|
|
55566
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55567
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56125
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56126
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55568
56127
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
55569
56128
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
55570
56129
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -55761,6 +56320,118 @@ export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseEd
|
|
|
55761
56320
|
};
|
|
55762
56321
|
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseUnion = AssetsObject;
|
|
55763
56322
|
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetUnion = AssetsObject;
|
|
56323
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection = HasPageInfo & {
|
|
56324
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection';
|
|
56325
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge>>>;
|
|
56326
|
+
pageInfo: PageInfo;
|
|
56327
|
+
};
|
|
56328
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge = {
|
|
56329
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge';
|
|
56330
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56332
|
+
id: Scalars['ID']['output'];
|
|
56333
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56334
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupUnion>;
|
|
56335
|
+
};
|
|
56336
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection = HasPageInfo & {
|
|
56337
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection';
|
|
56338
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge>>>;
|
|
56339
|
+
pageInfo: PageInfo;
|
|
56340
|
+
};
|
|
56341
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge = {
|
|
56342
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge';
|
|
56343
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56344
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56345
|
+
id: Scalars['ID']['output'];
|
|
56346
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56347
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseUnion>;
|
|
56348
|
+
};
|
|
56349
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseUnion = AssetsObject;
|
|
56350
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupUnion = IdentityGroup;
|
|
56351
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection = HasPageInfo & {
|
|
56352
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection';
|
|
56353
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge>>>;
|
|
56354
|
+
pageInfo: PageInfo;
|
|
56355
|
+
};
|
|
56356
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge = {
|
|
56357
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge';
|
|
56358
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56360
|
+
id: Scalars['ID']['output'];
|
|
56361
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56362
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectUnion>;
|
|
56363
|
+
};
|
|
56364
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection = HasPageInfo & {
|
|
56365
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection';
|
|
56366
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge>>>;
|
|
56367
|
+
pageInfo: PageInfo;
|
|
56368
|
+
};
|
|
56369
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge = {
|
|
56370
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge';
|
|
56371
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56372
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56373
|
+
id: Scalars['ID']['output'];
|
|
56374
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56375
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseUnion>;
|
|
56376
|
+
};
|
|
56377
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseUnion = AssetsObject;
|
|
56378
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectUnion = JiraProject;
|
|
56379
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection = HasPageInfo & {
|
|
56380
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection';
|
|
56381
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge>>>;
|
|
56382
|
+
pageInfo: PageInfo;
|
|
56383
|
+
};
|
|
56384
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge = {
|
|
56385
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge';
|
|
56386
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56387
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56388
|
+
id: Scalars['ID']['output'];
|
|
56389
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56390
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion>;
|
|
56391
|
+
};
|
|
56392
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection = HasPageInfo & {
|
|
56393
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection';
|
|
56394
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge>>>;
|
|
56395
|
+
pageInfo: PageInfo;
|
|
56396
|
+
};
|
|
56397
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge = {
|
|
56398
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge';
|
|
56399
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56400
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56401
|
+
id: Scalars['ID']['output'];
|
|
56402
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56403
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion>;
|
|
56404
|
+
};
|
|
56405
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion = AssetsObject;
|
|
56406
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion = BitbucketRepository;
|
|
56407
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection = HasPageInfo & {
|
|
56408
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection';
|
|
56409
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge>>>;
|
|
56410
|
+
pageInfo: PageInfo;
|
|
56411
|
+
};
|
|
56412
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge = {
|
|
56413
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge';
|
|
56414
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56415
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56416
|
+
id: Scalars['ID']['output'];
|
|
56417
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56418
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion>;
|
|
56419
|
+
};
|
|
56420
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection = HasPageInfo & {
|
|
56421
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection';
|
|
56422
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge>>>;
|
|
56423
|
+
pageInfo: PageInfo;
|
|
56424
|
+
};
|
|
56425
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge = {
|
|
56426
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge';
|
|
56427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56429
|
+
id: Scalars['ID']['output'];
|
|
56430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56431
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion>;
|
|
56432
|
+
};
|
|
56433
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion = AssetsObject;
|
|
56434
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55764
56435
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
55765
56436
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
55766
56437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -55993,6 +56664,34 @@ export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionI
|
|
|
55993
56664
|
};
|
|
55994
56665
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
55995
56666
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion = ExternalPosition;
|
|
56667
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
56668
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection';
|
|
56669
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge>>>;
|
|
56670
|
+
pageInfo: PageInfo;
|
|
56671
|
+
};
|
|
56672
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge = {
|
|
56673
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge';
|
|
56674
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56675
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56676
|
+
id: Scalars['ID']['output'];
|
|
56677
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56678
|
+
node?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogUnion>;
|
|
56679
|
+
};
|
|
56680
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection = HasPageInfo & {
|
|
56681
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection';
|
|
56682
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge>>>;
|
|
56683
|
+
pageInfo: PageInfo;
|
|
56684
|
+
};
|
|
56685
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge = {
|
|
56686
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge';
|
|
56687
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56688
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56689
|
+
id: Scalars['ID']['output'];
|
|
56690
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56691
|
+
node?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseUnion>;
|
|
56692
|
+
};
|
|
56693
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseUnion = ExternalTeam;
|
|
56694
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogUnion = JiraWorklog;
|
|
55996
56695
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection = HasPageInfo & {
|
|
55997
56696
|
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection';
|
|
55998
56697
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserEdge>>>;
|
|
@@ -69255,7 +69954,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
69255
69954
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
69256
69955
|
id: Scalars['ID']['output'];
|
|
69257
69956
|
};
|
|
69258
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
69957
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
69259
69958
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
69260
69959
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
69261
69960
|
value: Scalars['Boolean']['output'];
|
|
@@ -74470,8 +75169,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
74470
75169
|
lastUpdated: Scalars['DateTime']['output'];
|
|
74471
75170
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
74472
75171
|
};
|
|
74473
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
74474
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
75172
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
75173
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
74475
75174
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
74476
75175
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
74477
75176
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
|
|
@@ -87546,6 +88245,16 @@ export declare type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
|
|
|
87546
88245
|
errors?: Maybe<Array<MutationError>>;
|
|
87547
88246
|
success: Scalars['Boolean']['output'];
|
|
87548
88247
|
};
|
|
88248
|
+
export declare type JiraDismissForYouRecommendedActionInput = {
|
|
88249
|
+
category: JiraRecommendedActionCategoryType;
|
|
88250
|
+
entityAri: Scalars['ID']['input'];
|
|
88251
|
+
};
|
|
88252
|
+
export declare type JiraDismissForYouRecommendedActionPayload = Payload & {
|
|
88253
|
+
__typename?: 'JiraDismissForYouRecommendedActionPayload';
|
|
88254
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
88255
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88256
|
+
success: Scalars['Boolean']['output'];
|
|
88257
|
+
};
|
|
87549
88258
|
export declare type JiraDismissInContextConfigPromptInput = {
|
|
87550
88259
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87551
88260
|
locations: Array<JiraDevOpsInContextConfigPromptLocation>;
|
|
@@ -88892,7 +89601,7 @@ export declare type JiraFormulaFieldFunctionInfo = {
|
|
|
88892
89601
|
};
|
|
88893
89602
|
export declare type JiraFormulaFieldIssuePreview = {
|
|
88894
89603
|
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
88895
|
-
missingFields?: Maybe<Array<
|
|
89604
|
+
missingFields?: Maybe<Array<JiraFormulaReferencedField>>;
|
|
88896
89605
|
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
88897
89606
|
value?: Maybe<JiraFormulaFieldValue>;
|
|
88898
89607
|
};
|
|
@@ -92125,6 +92834,15 @@ export declare enum JiraJourneyTriggerType {
|
|
|
92125
92834
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
92126
92835
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
92127
92836
|
}
|
|
92837
|
+
export declare type JiraJourneyTypeCreatedEventPayload = {
|
|
92838
|
+
__typename?: 'JiraJourneyTypeCreatedEventPayload';
|
|
92839
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92840
|
+
createdBy?: Maybe<User>;
|
|
92841
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
92842
|
+
journeyTypeId: Scalars['ID']['output'];
|
|
92843
|
+
projectId: Scalars['Long']['output'];
|
|
92844
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
92845
|
+
};
|
|
92128
92846
|
export declare type JiraJourneyTypeUpdatedEventPayload = {
|
|
92129
92847
|
__typename?: 'JiraJourneyTypeUpdatedEventPayload';
|
|
92130
92848
|
etag?: Maybe<Scalars['String']['output']>;
|
|
@@ -93570,6 +94288,7 @@ export declare type JiraMutation = {
|
|
|
93570
94288
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
93571
94289
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
93572
94290
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
94291
|
+
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
93573
94292
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
93574
94293
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
93575
94294
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -93985,6 +94704,10 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
93985
94704
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
93986
94705
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
93987
94706
|
};
|
|
94707
|
+
export declare type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
94708
|
+
cloudId: Scalars['ID']['input'];
|
|
94709
|
+
input: JiraDismissForYouRecommendedActionInput;
|
|
94710
|
+
};
|
|
93988
94711
|
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
93989
94712
|
cloudId: Scalars['ID']['input'];
|
|
93990
94713
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -100345,6 +101068,7 @@ export declare type JiraServiceManagementRequestType = Node & {
|
|
|
100345
101068
|
__typename?: 'JiraServiceManagementRequestType';
|
|
100346
101069
|
avatar?: Maybe<JiraAvatar>;
|
|
100347
101070
|
description?: Maybe<Scalars['String']['output']>;
|
|
101071
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100348
101072
|
helpText?: Maybe<Scalars['String']['output']>;
|
|
100349
101073
|
id: Scalars['ID']['output'];
|
|
100350
101074
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -101832,6 +102556,7 @@ export declare type JiraSubscription = {
|
|
|
101832
102556
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
101833
102557
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
101834
102558
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
102559
|
+
onJourneyTypeCreated?: Maybe<JiraJourneyTypeCreatedEventPayload>;
|
|
101835
102560
|
onJourneyTypeUpdated?: Maybe<JiraJourneyTypeUpdatedEventPayload>;
|
|
101836
102561
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
101837
102562
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -101953,6 +102678,10 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
101953
102678
|
events: Array<Scalars['String']['input']>;
|
|
101954
102679
|
projectIds: Array<Scalars['String']['input']>;
|
|
101955
102680
|
};
|
|
102681
|
+
export declare type JiraSubscriptionOnJourneyTypeCreatedArgs = {
|
|
102682
|
+
cloudId: Scalars['ID']['input'];
|
|
102683
|
+
projectId: Scalars['String']['input'];
|
|
102684
|
+
};
|
|
101956
102685
|
export declare type JiraSubscriptionOnJourneyTypeUpdatedArgs = {
|
|
101957
102686
|
cloudId: Scalars['ID']['input'];
|
|
101958
102687
|
journeyTypeId: Scalars['ID']['input'];
|
|
@@ -107947,6 +108676,12 @@ export declare enum LoomUserStatus {
|
|
|
107947
108676
|
Mastered = "MASTERED",
|
|
107948
108677
|
NotFound = "NOT_FOUND"
|
|
107949
108678
|
}
|
|
108679
|
+
export declare type LoomValidateSlackUserIds = {
|
|
108680
|
+
__typename?: 'LoomValidateSlackUserIds';
|
|
108681
|
+
atlassianAccountId?: Maybe<Scalars['String']['output']>;
|
|
108682
|
+
hasConnection: Scalars['Boolean']['output'];
|
|
108683
|
+
slackUserId: Scalars['ID']['output'];
|
|
108684
|
+
};
|
|
107950
108685
|
export declare type LoomVideo = Node & {
|
|
107951
108686
|
__typename?: 'LoomVideo';
|
|
107952
108687
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -110415,6 +111150,11 @@ export declare type MarketplaceStoreCompatibilityRanges = {
|
|
|
110415
111150
|
end?: Maybe<Scalars['String']['output']>;
|
|
110416
111151
|
start?: Maybe<Scalars['String']['output']>;
|
|
110417
111152
|
};
|
|
111153
|
+
export declare type MarketplaceStoreCompatibleAtlassianProduct = {
|
|
111154
|
+
__typename?: 'MarketplaceStoreCompatibleAtlassianProduct';
|
|
111155
|
+
id: Scalars['ID']['output'];
|
|
111156
|
+
name: Scalars['String']['output'];
|
|
111157
|
+
};
|
|
110418
111158
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
110419
111159
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
110420
111160
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -110992,6 +111732,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
110992
111732
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
110993
111733
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
110994
111734
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
111735
|
+
getAppMigration: MarketplaceStoreProductMigrationResponse;
|
|
110995
111736
|
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
110996
111737
|
homePage: MarketplaceStoreHomePageResponse;
|
|
110997
111738
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -111066,6 +111807,9 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
|
111066
111807
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
111067
111808
|
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
111068
111809
|
};
|
|
111810
|
+
export declare type MarketplaceStoreQueryApiGetAppMigrationArgs = {
|
|
111811
|
+
appKey: Scalars['String']['input'];
|
|
111812
|
+
};
|
|
111069
111813
|
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
111070
111814
|
productId: Scalars['ID']['input'];
|
|
111071
111815
|
};
|
|
@@ -111179,6 +111923,7 @@ export declare type MarketplaceStoreSiteDetailsInput = {
|
|
|
111179
111923
|
};
|
|
111180
111924
|
export declare type MarketplaceStoreSiteDetailsResponse = {
|
|
111181
111925
|
__typename?: 'MarketplaceStoreSiteDetailsResponse';
|
|
111926
|
+
additionalCompatibleProducts?: Maybe<Array<Maybe<MarketplaceStoreCompatibleAtlassianProduct>>>;
|
|
111182
111927
|
cloudId: Scalars['String']['output'];
|
|
111183
111928
|
compatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
111184
111929
|
installedAppUsers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -112899,7 +113644,7 @@ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
|
112899
113644
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
112900
113645
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112901
113646
|
focusAreaId: Scalars['ID']['input'];
|
|
112902
|
-
workContainerAri
|
|
113647
|
+
workContainerAri: Scalars['String']['input'];
|
|
112903
113648
|
};
|
|
112904
113649
|
export declare type MercuryIntegrationsContext = {
|
|
112905
113650
|
__typename?: 'MercuryIntegrationsContext';
|
|
@@ -115207,6 +115952,7 @@ export declare type Mutation = {
|
|
|
115207
115952
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
115208
115953
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
115209
115954
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
115955
|
+
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
115210
115956
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
115211
115957
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
115212
115958
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
@@ -115447,6 +116193,7 @@ export declare type Mutation = {
|
|
|
115447
116193
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
115448
116194
|
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
115449
116195
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
116196
|
+
cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
|
|
115450
116197
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
115451
116198
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
115452
116199
|
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
@@ -115585,6 +116332,7 @@ export declare type Mutation = {
|
|
|
115585
116332
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
115586
116333
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
115587
116334
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
116335
|
+
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
115588
116336
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
115589
116337
|
editSprint?: Maybe<SprintResponse>;
|
|
115590
116338
|
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
@@ -115603,6 +116351,7 @@ export declare type Mutation = {
|
|
|
115603
116351
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
115604
116352
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
115605
116353
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
116354
|
+
goals_create?: Maybe<TownsquareGoalsCreatePayload>;
|
|
115606
116355
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
115607
116356
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
115608
116357
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
@@ -116010,6 +116759,7 @@ export declare type Mutation = {
|
|
|
116010
116759
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
116011
116760
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
116012
116761
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
116762
|
+
stakeholderComms_deleteSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
116013
116763
|
stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
|
|
116014
116764
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
116015
116765
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -116168,7 +116918,7 @@ export declare type MutationAdmin_ImpersonateUserArgs = {
|
|
|
116168
116918
|
input: AdminImpersonateUserInput;
|
|
116169
116919
|
};
|
|
116170
116920
|
export declare type MutationAdmin_InviteArgs = {
|
|
116171
|
-
inviteInput
|
|
116921
|
+
inviteInput: AdminInviteInput;
|
|
116172
116922
|
orgId: Scalars['ID']['input'];
|
|
116173
116923
|
};
|
|
116174
116924
|
export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
|
|
@@ -116188,6 +116938,11 @@ export declare type MutationAdmin_UnitCreateArgs = {
|
|
|
116188
116938
|
orgId: Scalars['ID']['input'];
|
|
116189
116939
|
unit: AdminUnitCreateInput;
|
|
116190
116940
|
};
|
|
116941
|
+
export declare type MutationAdmin_UnlinkScimUserArgs = {
|
|
116942
|
+
orgId: Scalars['ID']['input'];
|
|
116943
|
+
scimDirectoryId: Scalars['ID']['input'];
|
|
116944
|
+
scimUserId: Scalars['ID']['input'];
|
|
116945
|
+
};
|
|
116191
116946
|
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
116192
116947
|
orgId: Scalars['ID']['input'];
|
|
116193
116948
|
policyId: Scalars['ID']['input'];
|
|
@@ -117142,6 +117897,9 @@ export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
|
117142
117897
|
export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
117143
117898
|
input: CplsDeleteContributorWorkAssociationInput;
|
|
117144
117899
|
};
|
|
117900
|
+
export declare type MutationCpls_ImportCapacityDataArgs = {
|
|
117901
|
+
input: CplsImportCapacityDataInput;
|
|
117902
|
+
};
|
|
117145
117903
|
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
117146
117904
|
input: CplsUpdateCustomContributionTargetInput;
|
|
117147
117905
|
};
|
|
@@ -117649,6 +118407,10 @@ export declare type MutationDisableExperimentArgs = {
|
|
|
117649
118407
|
export declare type MutationDisablePublicLinkForPageArgs = {
|
|
117650
118408
|
pageId: Scalars['ID']['input'];
|
|
117651
118409
|
};
|
|
118410
|
+
export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
|
|
118411
|
+
mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
|
|
118412
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
118413
|
+
};
|
|
117652
118414
|
export declare type MutationEditSprintArgs = {
|
|
117653
118415
|
input?: InputMaybe<EditSprintInput>;
|
|
117654
118416
|
};
|
|
@@ -117690,6 +118452,9 @@ export declare type MutationGoals_ArchiveMetricArgs = {
|
|
|
117690
118452
|
export declare type MutationGoals_CloneArgs = {
|
|
117691
118453
|
input: TownsquareGoalsCloneInput;
|
|
117692
118454
|
};
|
|
118455
|
+
export declare type MutationGoals_CreateArgs = {
|
|
118456
|
+
input: TownsquareGoalsCreateInput;
|
|
118457
|
+
};
|
|
117693
118458
|
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
117694
118459
|
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
117695
118460
|
};
|
|
@@ -118938,6 +119703,9 @@ export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
|
118938
119703
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
118939
119704
|
id: Scalars['String']['input'];
|
|
118940
119705
|
};
|
|
119706
|
+
export declare type MutationStakeholderComms_DeleteSubscribersArgs = {
|
|
119707
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
119708
|
+
};
|
|
118941
119709
|
export declare type MutationStakeholderComms_GetPreSignedUrlArgs = {
|
|
118942
119710
|
input: StakeholderCommsPreSignedUrlInput;
|
|
118943
119711
|
};
|
|
@@ -122119,6 +122887,7 @@ export declare type Query = {
|
|
|
122119
122887
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
122120
122888
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
122121
122889
|
admin_group?: Maybe<AdminGroup>;
|
|
122890
|
+
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
122122
122891
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
122123
122892
|
admin_identityProviderDirectories?: Maybe<Array<AdminIdentityProviderDirectorySummary>>;
|
|
122124
122893
|
admin_identityProviderDirectoryDetails?: Maybe<AdminIdentityProviderDirectoryDetails>;
|
|
@@ -122134,6 +122903,7 @@ export declare type Query = {
|
|
|
122134
122903
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
122135
122904
|
admin_user?: Maybe<AdminUser>;
|
|
122136
122905
|
admin_userAuthPolicy?: Maybe<AdminUserAuthPolicy>;
|
|
122906
|
+
admin_userProvisioningScimLinks?: Maybe<AdminUserProvisioningScimLinkConnection>;
|
|
122137
122907
|
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
122138
122908
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
122139
122909
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -122271,6 +123041,7 @@ export declare type Query = {
|
|
|
122271
123041
|
avp_getChart?: Maybe<AvpChart>;
|
|
122272
123042
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
122273
123043
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
123044
|
+
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
122274
123045
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
122275
123046
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
122276
123047
|
blockService_health?: Maybe<Scalars['String']['output']>;
|
|
@@ -122297,6 +123068,7 @@ export declare type Query = {
|
|
|
122297
123068
|
ccp_pricingPlan?: Maybe<CcpPricingPlan>;
|
|
122298
123069
|
ccp_pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
122299
123070
|
ccp_product?: Maybe<CcpProduct>;
|
|
123071
|
+
ccp_products?: Maybe<Array<Maybe<CcpProduct>>>;
|
|
122300
123072
|
ccp_promotions?: Maybe<Array<Maybe<CcpPromotion>>>;
|
|
122301
123073
|
ccp_quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
122302
123074
|
ccp_shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
|
|
@@ -122570,6 +123342,7 @@ export declare type Query = {
|
|
|
122570
123342
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
122571
123343
|
devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
|
|
122572
123344
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
123345
|
+
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
122573
123346
|
dvcs?: Maybe<DvcsQuery>;
|
|
122574
123347
|
echo?: Maybe<Scalars['String']['output']>;
|
|
122575
123348
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -122779,6 +123552,7 @@ export declare type Query = {
|
|
|
122779
123552
|
loom_space?: Maybe<LoomSpace>;
|
|
122780
123553
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
122781
123554
|
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
123555
|
+
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
122782
123556
|
loom_video?: Maybe<LoomVideo>;
|
|
122783
123557
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
122784
123558
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
@@ -123167,6 +123941,15 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
123167
123941
|
export declare type QueryAdmin_GroupArgs = {
|
|
123168
123942
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
123169
123943
|
};
|
|
123944
|
+
export declare type QueryAdmin_GroupRoleAssignmentsArgs = {
|
|
123945
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
123946
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
123947
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
123948
|
+
groupId: Scalars['ID']['input'];
|
|
123949
|
+
groupRoleAssignmentsInput?: InputMaybe<AdminGroupRoleAssignmentsInput>;
|
|
123950
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
123951
|
+
orgId: Scalars['ID']['input'];
|
|
123952
|
+
};
|
|
123170
123953
|
export declare type QueryAdmin_GroupsArgs = {
|
|
123171
123954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123172
123955
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123244,6 +124027,14 @@ export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
|
123244
124027
|
orgId: Scalars['ID']['input'];
|
|
123245
124028
|
userId: Scalars['ID']['input'];
|
|
123246
124029
|
};
|
|
124030
|
+
export declare type QueryAdmin_UserProvisioningScimLinksArgs = {
|
|
124031
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
124032
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
124033
|
+
email: AdminUserEmailInput;
|
|
124034
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124035
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124036
|
+
orgId: Scalars['ID']['input'];
|
|
124037
|
+
};
|
|
123247
124038
|
export declare type QueryAdmin_UserRolesArgs = {
|
|
123248
124039
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123249
124040
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123434,6 +124225,8 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
123434
124225
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
123435
124226
|
cloudId: Scalars['String']['input'];
|
|
123436
124227
|
externalReference: Scalars['String']['input'];
|
|
124228
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
124229
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
123437
124230
|
};
|
|
123438
124231
|
export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
123439
124232
|
cloudId: Scalars['String']['input'];
|
|
@@ -123988,6 +124781,9 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
123988
124781
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
123989
124782
|
input: AvpGetDashboardTemplatesInput;
|
|
123990
124783
|
};
|
|
124784
|
+
export declare type QueryAvpanalytics_ListModelsArgs = {
|
|
124785
|
+
input?: InputMaybe<AvpAnalyticsListModelsRequest>;
|
|
124786
|
+
};
|
|
123991
124787
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
123992
124788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123993
124789
|
cloudId: Scalars['ID']['input'];
|
|
@@ -124081,6 +124877,9 @@ export declare type QueryCcp_PricingPlansArgs = {
|
|
|
124081
124877
|
export declare type QueryCcp_ProductArgs = {
|
|
124082
124878
|
id: Scalars['ID']['input'];
|
|
124083
124879
|
};
|
|
124880
|
+
export declare type QueryCcp_ProductsArgs = {
|
|
124881
|
+
ids: Array<Scalars['ID']['input']>;
|
|
124882
|
+
};
|
|
124084
124883
|
export declare type QueryCcp_PromotionsArgs = {
|
|
124085
124884
|
ids: Array<Scalars['ID']['input']>;
|
|
124086
124885
|
};
|
|
@@ -125372,6 +126171,11 @@ export declare type QueryDevelopmentInformationArgs = {
|
|
|
125372
126171
|
export declare type QueryDevopsmetrics_EchoArgs = {
|
|
125373
126172
|
message: Scalars['String']['input'];
|
|
125374
126173
|
};
|
|
126174
|
+
export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
126175
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
126176
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
126177
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
126178
|
+
};
|
|
125375
126179
|
export declare type QueryEditorConversionSettingsArgs = {
|
|
125376
126180
|
spaceKey: Scalars['String']['input'];
|
|
125377
126181
|
};
|
|
@@ -126099,6 +126903,9 @@ export declare type QueryLoom_SpacesSearchArgs = {
|
|
|
126099
126903
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
126100
126904
|
siteId: Scalars['ID']['input'];
|
|
126101
126905
|
};
|
|
126906
|
+
export declare type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
126907
|
+
userIds: Array<Scalars['ID']['input']>;
|
|
126908
|
+
};
|
|
126102
126909
|
export declare type QueryLoom_VideoArgs = {
|
|
126103
126910
|
id: Scalars['ID']['input'];
|
|
126104
126911
|
};
|
|
@@ -126549,6 +127356,7 @@ export declare type QueryRadar_WorktypeAllocationsAveragesByEntityArgs = {
|
|
|
126549
127356
|
cloudId: Scalars['ID']['input'];
|
|
126550
127357
|
entity: RadarPositionsByEntityType;
|
|
126551
127358
|
id: Scalars['ID']['input'];
|
|
127359
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
126552
127360
|
};
|
|
126553
127361
|
export declare type QueryReactedUsersArgs = {
|
|
126554
127362
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -127751,6 +128559,7 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
127751
128559
|
};
|
|
127752
128560
|
export declare type RadarPositionLaborCostEstimateSettings = {
|
|
127753
128561
|
__typename?: 'RadarPositionLaborCostEstimateSettings';
|
|
128562
|
+
currency: Scalars['String']['output'];
|
|
127754
128563
|
defaultAmount?: Maybe<RadarMoney>;
|
|
127755
128564
|
fieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
127756
128565
|
id: Scalars['ID']['output'];
|
|
@@ -127858,6 +128667,7 @@ export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
|
127858
128667
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
127859
128668
|
};
|
|
127860
128669
|
export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
128670
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
127861
128671
|
defaultAmount?: InputMaybe<RadarMoneyInput>;
|
|
127862
128672
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127863
128673
|
};
|
|
@@ -130001,6 +130811,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
130001
130811
|
export declare type SearchItemConnection = {
|
|
130002
130812
|
__typename?: 'SearchItemConnection';
|
|
130003
130813
|
abTest?: Maybe<SearchAbTest>;
|
|
130814
|
+
autocompleteSuggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
130004
130815
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
130005
130816
|
edges: Array<SearchResultItemEdge>;
|
|
130006
130817
|
errors?: Maybe<Array<SearchError>>;
|
|
@@ -152757,8 +153568,10 @@ export declare type StakeholderCommsSubscriptionData = {
|
|
|
152757
153568
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
152758
153569
|
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
152759
153570
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
153571
|
+
webhookEndpoint?: InputMaybe<Scalars['String']['input']>;
|
|
152760
153572
|
};
|
|
152761
153573
|
export declare type StakeholderCommsSubscriptionRequest = {
|
|
153574
|
+
captchaToken?: InputMaybe<Scalars['String']['input']>;
|
|
152762
153575
|
itemId: Scalars['String']['input'];
|
|
152763
153576
|
itemType: StakeholderCommsSubscriberItemType;
|
|
152764
153577
|
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
@@ -153151,6 +153964,7 @@ export declare type SupportRequest = {
|
|
|
153151
153964
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
153152
153965
|
reporter: SupportRequestUser;
|
|
153153
153966
|
requestTypeName: Scalars['String']['output'];
|
|
153967
|
+
requesterQmId?: Maybe<Scalars['String']['output']>;
|
|
153154
153968
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
153155
153969
|
sourceLicense?: Maybe<Scalars['String']['output']>;
|
|
153156
153970
|
sourceSystemLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -153896,6 +154710,7 @@ export declare enum TeamSearchField {
|
|
|
153896
154710
|
export declare type TeamSearchFilter = {
|
|
153897
154711
|
membership?: InputMaybe<TeamMembershipFilter>;
|
|
153898
154712
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
154713
|
+
teamTypes?: InputMaybe<TeamTypeFilter>;
|
|
153899
154714
|
};
|
|
153900
154715
|
export declare type TeamSearchResult = {
|
|
153901
154716
|
__typename?: 'TeamSearchResult';
|
|
@@ -153985,6 +154800,9 @@ export declare type TeamTypeEdge = {
|
|
|
153985
154800
|
cursor: Scalars['String']['output'];
|
|
153986
154801
|
node?: Maybe<TeamType>;
|
|
153987
154802
|
};
|
|
154803
|
+
export declare type TeamTypeFilter = {
|
|
154804
|
+
teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
154805
|
+
};
|
|
153988
154806
|
export declare enum TeamTypeState {
|
|
153989
154807
|
Active = "ACTIVE",
|
|
153990
154808
|
DeleteInProgress = "DELETE_IN_PROGRESS"
|
|
@@ -155503,6 +156321,14 @@ export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
|
155503
156321
|
goalType: TownsquareCreateGoalTypeInputV2;
|
|
155504
156322
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
155505
156323
|
};
|
|
156324
|
+
export declare type TownsquareGoalsCreateInput = {
|
|
156325
|
+
containerId: Scalars['ID']['input'];
|
|
156326
|
+
goalTypeId: Scalars['ID']['input'];
|
|
156327
|
+
name: Scalars['String']['input'];
|
|
156328
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
156329
|
+
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
156330
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
156331
|
+
};
|
|
155506
156332
|
export declare type TownsquareGoalsCreateLearningInput = {
|
|
155507
156333
|
description: Scalars['String']['input'];
|
|
155508
156334
|
goalId: Scalars['ID']['input'];
|
|
@@ -155514,6 +156340,12 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
155514
156340
|
learning?: Maybe<TownsquareLearning>;
|
|
155515
156341
|
success: Scalars['Boolean']['output'];
|
|
155516
156342
|
};
|
|
156343
|
+
export declare type TownsquareGoalsCreatePayload = {
|
|
156344
|
+
__typename?: 'TownsquareGoalsCreatePayload';
|
|
156345
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156346
|
+
goal?: Maybe<TownsquareGoal>;
|
|
156347
|
+
success: Scalars['Boolean']['output'];
|
|
156348
|
+
};
|
|
155517
156349
|
export declare type TownsquareGoalsCreateRiskInput = {
|
|
155518
156350
|
description: Scalars['String']['input'];
|
|
155519
156351
|
goalId: Scalars['ID']['input'];
|
|
@@ -159921,6 +160753,7 @@ export declare type TrelloMemberPrefs = {
|
|
|
159921
160753
|
__typename?: 'TrelloMemberPrefs';
|
|
159922
160754
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
159923
160755
|
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
160756
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
159924
160757
|
};
|
|
159925
160758
|
export declare type TrelloMemberReferral = {
|
|
159926
160759
|
__typename?: 'TrelloMemberReferral';
|
|
@@ -160150,6 +160983,7 @@ export declare type TrelloMutationApi = {
|
|
|
160150
160983
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
160151
160984
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
160152
160985
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
160986
|
+
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
160153
160987
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
160154
160988
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
160155
160989
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
@@ -160340,6 +161174,9 @@ export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
160340
161174
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
160341
161175
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
160342
161176
|
};
|
|
161177
|
+
export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
161178
|
+
input: TrelloUpdateMemberTimezoneInput;
|
|
161179
|
+
};
|
|
160343
161180
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
160344
161181
|
input: TrelloUpdateOAuth2ClientInput;
|
|
160345
161182
|
};
|
|
@@ -161796,6 +162633,15 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
161796
162633
|
errors?: Maybe<Array<MutationError>>;
|
|
161797
162634
|
success: Scalars['Boolean']['output'];
|
|
161798
162635
|
};
|
|
162636
|
+
export declare type TrelloUpdateMemberTimezoneInput = {
|
|
162637
|
+
value: Scalars['String']['input'];
|
|
162638
|
+
};
|
|
162639
|
+
export declare type TrelloUpdateMemberTimezonePayload = Payload & {
|
|
162640
|
+
__typename?: 'TrelloUpdateMemberTimezonePayload';
|
|
162641
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162642
|
+
member?: Maybe<TrelloMember>;
|
|
162643
|
+
success: Scalars['Boolean']['output'];
|
|
162644
|
+
};
|
|
161799
162645
|
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
161800
162646
|
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
161801
162647
|
appDescription?: InputMaybe<Scalars['String']['input']>;
|