@forge/cli-shared 8.14.0-next.1 → 8.14.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/LICENSE.txt +1 -1
- package/out/graphql/graphql-types.d.ts +1794 -669
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +73 -28
- package/package.json +2 -2
|
@@ -158,19 +158,45 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
158
158
|
errors?: Maybe<Array<MutationError>>;
|
|
159
159
|
success: Scalars['Boolean']['output'];
|
|
160
160
|
};
|
|
161
|
+
export declare type AvpAnalyticsDimension = {
|
|
162
|
+
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
163
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
164
|
+
};
|
|
165
|
+
export declare type AvpAnalyticsDimensionValueData = {
|
|
166
|
+
__typename?: 'AVPAnalyticsDimensionValueData';
|
|
167
|
+
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
168
|
+
name: Scalars['String']['output'];
|
|
169
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
170
|
+
};
|
|
171
|
+
export declare type AvpAnalyticsDimensionValueDataRow = {
|
|
172
|
+
__typename?: 'AVPAnalyticsDimensionValueDataRow';
|
|
173
|
+
dimensionValueDataList: Array<AvpAnalyticsDimensionValueData>;
|
|
174
|
+
};
|
|
175
|
+
export declare type AvpAnalyticsGetModelDataRequest = {
|
|
176
|
+
cloudId: Scalars['ID']['input'];
|
|
177
|
+
dimensions?: InputMaybe<Array<InputMaybe<AvpAnalyticsDimension>>>;
|
|
178
|
+
modelId: Scalars['String']['input'];
|
|
179
|
+
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
180
|
+
product: AvpAnalyticsProductType;
|
|
181
|
+
type: AvpAnalyticsModelType;
|
|
182
|
+
workspaceId: Scalars['ID']['input'];
|
|
183
|
+
};
|
|
184
|
+
export declare type AvpAnalyticsGetModelDataResponse = {
|
|
185
|
+
__typename?: 'AVPAnalyticsGetModelDataResponse';
|
|
186
|
+
dimensionValueDataRows: Array<AvpAnalyticsDimensionValueDataRow>;
|
|
187
|
+
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
188
|
+
};
|
|
161
189
|
export declare type AvpAnalyticsListModelsRequest = {
|
|
162
190
|
cloudId: Scalars['ID']['input'];
|
|
163
|
-
|
|
164
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
191
|
+
paginationRequest: AvpAnalyticsPaginationRequest;
|
|
165
192
|
product: AvpAnalyticsProductType;
|
|
166
193
|
type: AvpAnalyticsModelType;
|
|
167
194
|
workspaceId: Scalars['ID']['input'];
|
|
168
195
|
};
|
|
169
196
|
export declare type AvpAnalyticsListModelsResponse = {
|
|
170
197
|
__typename?: 'AVPAnalyticsListModelsResponse';
|
|
171
|
-
hasMore: Scalars['Boolean']['output'];
|
|
172
198
|
models: Array<AvpAnalyticsModelSummary>;
|
|
173
|
-
|
|
199
|
+
paginationResponse: AvpAnalyticsPaginationResponse;
|
|
174
200
|
};
|
|
175
201
|
export declare enum AvpAnalyticsModelStatus {
|
|
176
202
|
Active = "ACTIVE",
|
|
@@ -194,6 +220,17 @@ export declare enum AvpAnalyticsModelType {
|
|
|
194
220
|
Primary = "PRIMARY",
|
|
195
221
|
UserDefined = "USER_DEFINED"
|
|
196
222
|
}
|
|
223
|
+
export declare type AvpAnalyticsPaginationRequest = {
|
|
224
|
+
page?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
+
pageSize: Scalars['Int']['input'];
|
|
226
|
+
};
|
|
227
|
+
export declare type AvpAnalyticsPaginationResponse = {
|
|
228
|
+
__typename?: 'AVPAnalyticsPaginationResponse';
|
|
229
|
+
currentPageSize: Scalars['Int']['output'];
|
|
230
|
+
isLastPage: Scalars['Boolean']['output'];
|
|
231
|
+
nextPage?: Maybe<Scalars['String']['output']>;
|
|
232
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
233
|
+
};
|
|
197
234
|
export declare enum AvpAnalyticsProductType {
|
|
198
235
|
Assets = "ASSETS",
|
|
199
236
|
Jira = "JIRA"
|
|
@@ -1766,6 +1803,20 @@ export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
|
1766
1803
|
errors?: Maybe<Array<MutationError>>;
|
|
1767
1804
|
success: Scalars['Boolean']['output'];
|
|
1768
1805
|
};
|
|
1806
|
+
export declare type AdminAuditLogEventIpAddress = {
|
|
1807
|
+
__typename?: 'AdminAuditLogEventIpAddress';
|
|
1808
|
+
ip: Scalars['String']['output'];
|
|
1809
|
+
};
|
|
1810
|
+
export declare type AdminAuditLogEventIpAddressConnection = {
|
|
1811
|
+
__typename?: 'AdminAuditLogEventIpAddressConnection';
|
|
1812
|
+
edges?: Maybe<Array<AdminAuditLogEventIpAddressEdge>>;
|
|
1813
|
+
pageInfo: PageInfo;
|
|
1814
|
+
};
|
|
1815
|
+
export declare type AdminAuditLogEventIpAddressEdge = {
|
|
1816
|
+
__typename?: 'AdminAuditLogEventIpAddressEdge';
|
|
1817
|
+
cursor: Scalars['String']['output'];
|
|
1818
|
+
node: AdminAuditLogEventIpAddress;
|
|
1819
|
+
};
|
|
1769
1820
|
export declare type AdminAuditLogEventLocation = {
|
|
1770
1821
|
__typename?: 'AdminAuditLogEventLocation';
|
|
1771
1822
|
cityName: Scalars['String']['output'];
|
|
@@ -4595,6 +4646,7 @@ export declare type AppInstallation = {
|
|
|
4595
4646
|
isRecoverable: Scalars['Boolean']['output'];
|
|
4596
4647
|
license?: Maybe<AppInstallationLicense>;
|
|
4597
4648
|
provisionedExternally?: Maybe<Scalars['Boolean']['output']>;
|
|
4649
|
+
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
4598
4650
|
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4599
4651
|
version?: Maybe<AppVersion>;
|
|
4600
4652
|
};
|
|
@@ -4823,12 +4875,14 @@ export declare type AppLogsWithMetaData = {
|
|
|
4823
4875
|
appId: Scalars['String']['output'];
|
|
4824
4876
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
4825
4877
|
cloudwatchId?: Maybe<Scalars['String']['output']>;
|
|
4878
|
+
container?: Maybe<Scalars['String']['output']>;
|
|
4826
4879
|
context?: Maybe<Context>;
|
|
4827
4880
|
edition?: Maybe<EditionValue>;
|
|
4828
4881
|
environmentId: Scalars['String']['output'];
|
|
4829
4882
|
error?: Maybe<Scalars['String']['output']>;
|
|
4830
4883
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
4831
4884
|
installationContext?: Maybe<Scalars['String']['output']>;
|
|
4885
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
4832
4886
|
invocationId: Scalars['String']['output'];
|
|
4833
4887
|
licenseState?: Maybe<LicenseValue>;
|
|
4834
4888
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4838,6 +4892,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
4838
4892
|
other?: Maybe<Scalars['String']['output']>;
|
|
4839
4893
|
p?: Maybe<Scalars['String']['output']>;
|
|
4840
4894
|
product?: Maybe<Scalars['String']['output']>;
|
|
4895
|
+
service?: Maybe<Scalars['String']['output']>;
|
|
4841
4896
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
4842
4897
|
ts: Scalars['String']['output'];
|
|
4843
4898
|
};
|
|
@@ -5797,6 +5852,20 @@ export declare type AssetsDmAutoColumnMappingResponse = {
|
|
|
5797
5852
|
isSuccessful: Scalars['Boolean']['output'];
|
|
5798
5853
|
message: Scalars['String']['output'];
|
|
5799
5854
|
};
|
|
5855
|
+
export declare type AssetsDmBatchCreateComputeDictionaryValueResult = {
|
|
5856
|
+
__typename?: 'AssetsDMBatchCreateComputeDictionaryValueResult';
|
|
5857
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5858
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5859
|
+
name: Scalars['String']['output'];
|
|
5860
|
+
};
|
|
5861
|
+
export declare type AssetsDmBatchCreateComputeDictionaryValuesResponse = {
|
|
5862
|
+
__typename?: 'AssetsDMBatchCreateComputeDictionaryValuesResponse';
|
|
5863
|
+
failureCount: Scalars['Int']['output'];
|
|
5864
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5865
|
+
results: Array<AssetsDmBatchCreateComputeDictionaryValueResult>;
|
|
5866
|
+
successCount: Scalars['Int']['output'];
|
|
5867
|
+
totalCount: Scalars['Int']['output'];
|
|
5868
|
+
};
|
|
5800
5869
|
export declare type AssetsDmChangeDataSourceStatusArgs = {
|
|
5801
5870
|
cloudId: Scalars['ID']['input'];
|
|
5802
5871
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -5886,11 +5955,6 @@ export declare type AssetsDmCreateComputeDictionaryValueInput = {
|
|
|
5886
5955
|
isImported: Scalars['Boolean']['input'];
|
|
5887
5956
|
name: Scalars['String']['input'];
|
|
5888
5957
|
};
|
|
5889
|
-
export declare type AssetsDmCreateComputeDictionaryValueResponse = {
|
|
5890
|
-
__typename?: 'AssetsDMCreateComputeDictionaryValueResponse';
|
|
5891
|
-
isSuccessful: Scalars['Boolean']['output'];
|
|
5892
|
-
message: Scalars['String']['output'];
|
|
5893
|
-
};
|
|
5894
5958
|
export declare type AssetsDmCreateDataDictionaryGroupInput = {
|
|
5895
5959
|
computeDictionaryId: Scalars['ID']['input'];
|
|
5896
5960
|
name: Scalars['String']['input'];
|
|
@@ -6359,6 +6423,7 @@ export declare type AssetsDmDataSourceFormFields = {
|
|
|
6359
6423
|
schemaObjectTypes: Array<AssetsDmSchemaObjectType>;
|
|
6360
6424
|
};
|
|
6361
6425
|
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
6426
|
+
createDataSourceTypeIfMissing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6362
6427
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6363
6428
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
6364
6429
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8098,6 +8163,7 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
8098
8163
|
};
|
|
8099
8164
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
8100
8165
|
blockAris: Array<Scalars['String']['input']>;
|
|
8166
|
+
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
8101
8167
|
};
|
|
8102
8168
|
export declare type BlockServiceBatchRetrieveBlocksPayload = {
|
|
8103
8169
|
__typename?: 'BlockServiceBatchRetrieveBlocksPayload';
|
|
@@ -8135,6 +8201,7 @@ export declare type BlockServiceCreateBlockInput = {
|
|
|
8135
8201
|
content: Scalars['String']['input'];
|
|
8136
8202
|
product: BlockServiceBlockProduct;
|
|
8137
8203
|
sourceAri: Scalars['String']['input'];
|
|
8204
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
8138
8205
|
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
8139
8206
|
};
|
|
8140
8207
|
export declare type BlockServiceDeleteBlockInput = {
|
|
@@ -8146,6 +8213,16 @@ export declare type BlockServiceDeleteBlockPayload = {
|
|
|
8146
8213
|
blockAri: Scalars['String']['output'];
|
|
8147
8214
|
deleted: Scalars['Boolean']['output'];
|
|
8148
8215
|
};
|
|
8216
|
+
export declare type BlockServiceDocumentReferenceBlocksPayload = {
|
|
8217
|
+
__typename?: 'BlockServiceDocumentReferenceBlocksPayload';
|
|
8218
|
+
blocks: Array<BlockServiceBlockPayload>;
|
|
8219
|
+
errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
|
|
8220
|
+
};
|
|
8221
|
+
export declare type BlockServiceUpdateBlockInput = {
|
|
8222
|
+
blockAri: Scalars['String']['input'];
|
|
8223
|
+
content: Scalars['String']['input'];
|
|
8224
|
+
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
8225
|
+
};
|
|
8149
8226
|
export declare type BlockSmartLink = SmartLink & {
|
|
8150
8227
|
__typename?: 'BlockSmartLink';
|
|
8151
8228
|
url: Scalars['String']['output'];
|
|
@@ -9861,6 +9938,13 @@ export declare enum CcpPaymentMethodType {
|
|
|
9861
9938
|
Deferred = "DEFERRED",
|
|
9862
9939
|
Paypal = "PAYPAL"
|
|
9863
9940
|
}
|
|
9941
|
+
export declare type CcpPhase = {
|
|
9942
|
+
__typename?: 'CcpPhase';
|
|
9943
|
+
chargeDetails?: Maybe<CcpNextCycleChargeDetails>;
|
|
9944
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
9945
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
9946
|
+
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
9947
|
+
};
|
|
9864
9948
|
export declare type CcpPlaceOrderLiteExperienceCapability = CommerceExperienceCapability & {
|
|
9865
9949
|
__typename?: 'CcpPlaceOrderLiteExperienceCapability';
|
|
9866
9950
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -10649,6 +10733,7 @@ export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
|
10649
10733
|
export declare type CcpScheduledChanges = {
|
|
10650
10734
|
__typename?: 'CcpScheduledChanges';
|
|
10651
10735
|
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
10736
|
+
phases?: Maybe<Array<Maybe<CcpPhase>>>;
|
|
10652
10737
|
};
|
|
10653
10738
|
export declare type CcpSearchFieldRangeInput = {
|
|
10654
10739
|
bounds: CcpSearchTimestampBoundsInput;
|
|
@@ -10848,6 +10933,42 @@ export declare type CcpUsageUpdateCadence = {
|
|
|
10848
10933
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
10849
10934
|
name?: Maybe<Scalars['String']['output']>;
|
|
10850
10935
|
};
|
|
10936
|
+
export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
|
|
10937
|
+
__typename?: 'ChangeManagementGlobalRiskAssessmentSettingsPayload';
|
|
10938
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10939
|
+
};
|
|
10940
|
+
export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
10941
|
+
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
10942
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
10943
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
10944
|
+
};
|
|
10945
|
+
export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
|
|
10946
|
+
__typename?: 'ChangeManagementRovoRiskAssessmentSettingsPayload';
|
|
10947
|
+
isBusinessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10948
|
+
isComplianceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10949
|
+
isOperationalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10950
|
+
isTechnicalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10951
|
+
knowledgeBases?: Maybe<Array<Scalars['String']['output']>>;
|
|
10952
|
+
};
|
|
10953
|
+
export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
|
|
10954
|
+
cloudId: Scalars['ID']['input'];
|
|
10955
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
10956
|
+
projectId: Scalars['String']['input'];
|
|
10957
|
+
};
|
|
10958
|
+
export declare type ChangeManagementUpdateLastRovoRiskAssessmentInput = {
|
|
10959
|
+
cloudId: Scalars['ID']['input'];
|
|
10960
|
+
issueId: Scalars['String']['input'];
|
|
10961
|
+
response: Scalars['String']['input'];
|
|
10962
|
+
};
|
|
10963
|
+
export declare type ChangeManagementUpdateRovoRiskAssessmentSettingsInput = {
|
|
10964
|
+
cloudId: Scalars['ID']['input'];
|
|
10965
|
+
isBusinessEnabled: Scalars['Boolean']['input'];
|
|
10966
|
+
isComplianceEnabled: Scalars['Boolean']['input'];
|
|
10967
|
+
isOperationalEnabled: Scalars['Boolean']['input'];
|
|
10968
|
+
isTechnicalEnabled: Scalars['Boolean']['input'];
|
|
10969
|
+
knowledgeBases: Array<Scalars['String']['input']>;
|
|
10970
|
+
projectId: Scalars['String']['input'];
|
|
10971
|
+
};
|
|
10851
10972
|
export declare type ChangeOwnerWarning = {
|
|
10852
10973
|
__typename?: 'ChangeOwnerWarning';
|
|
10853
10974
|
contentId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -16838,6 +16959,11 @@ export declare type ConfluenceAcceptAnswerPayload = Payload & {
|
|
|
16838
16959
|
errors?: Maybe<Array<MutationError>>;
|
|
16839
16960
|
success: Scalars['Boolean']['output'];
|
|
16840
16961
|
};
|
|
16962
|
+
export declare type ConfluenceAccessRequestSettings = {
|
|
16963
|
+
__typename?: 'ConfluenceAccessRequestSettings';
|
|
16964
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16965
|
+
messageContent?: Maybe<Scalars['String']['output']>;
|
|
16966
|
+
};
|
|
16841
16967
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
16842
16968
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
16843
16969
|
displayName: Scalars['String']['input'];
|
|
@@ -16924,6 +17050,10 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
16924
17050
|
__typename?: 'ConfluenceAdminReportStatus';
|
|
16925
17051
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
16926
17052
|
};
|
|
17053
|
+
export declare type ConfluenceAdvancedDiagramsFeature = {
|
|
17054
|
+
__typename?: 'ConfluenceAdvancedDiagramsFeature';
|
|
17055
|
+
isEntitled: Scalars['Boolean']['output'];
|
|
17056
|
+
};
|
|
16927
17057
|
export declare enum ConfluenceAnalyticsCommentContentType {
|
|
16928
17058
|
Database = "database",
|
|
16929
17059
|
Page = "page",
|
|
@@ -17737,6 +17867,7 @@ export declare type ConfluenceContentTemplateRef = {
|
|
|
17737
17867
|
__typename?: 'ConfluenceContentTemplateRef';
|
|
17738
17868
|
id: Scalars['ID']['output'];
|
|
17739
17869
|
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
17870
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17740
17871
|
templateId?: Maybe<Scalars['ID']['output']>;
|
|
17741
17872
|
};
|
|
17742
17873
|
export declare type ConfluenceContentTitleEmoji = {
|
|
@@ -20306,6 +20437,107 @@ export declare enum ConfluencePermission {
|
|
|
20306
20437
|
Edit = "EDIT",
|
|
20307
20438
|
View = "VIEW"
|
|
20308
20439
|
}
|
|
20440
|
+
export declare type ConfluencePermissionCombinationPrincipalTypeAssignmentInput = {
|
|
20441
|
+
principalType: ConfluencePermissionTransitionPrincipalType;
|
|
20442
|
+
removeAccess: Scalars['Boolean']['input'];
|
|
20443
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
20444
|
+
};
|
|
20445
|
+
export declare type ConfluencePermissionCombinationRoleAssignmentInput = {
|
|
20446
|
+
permissionCombinationId: Scalars['ID']['input'];
|
|
20447
|
+
principalTypeAssignment: Array<InputMaybe<ConfluencePermissionCombinationPrincipalTypeAssignmentInput>>;
|
|
20448
|
+
};
|
|
20449
|
+
export declare type ConfluencePermissionTransitionBulkAssignRolesInput = {
|
|
20450
|
+
assignments: Array<InputMaybe<ConfluencePermissionCombinationRoleAssignmentInput>>;
|
|
20451
|
+
spaceSelection: ConfluencePermissionTransitionSpaceTargetSelectionInput;
|
|
20452
|
+
};
|
|
20453
|
+
export declare type ConfluencePermissionTransitionBulkAssignRolesPayload = Payload & {
|
|
20454
|
+
__typename?: 'ConfluencePermissionTransitionBulkAssignRolesPayload';
|
|
20455
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20456
|
+
success: Scalars['Boolean']['output'];
|
|
20457
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
20458
|
+
};
|
|
20459
|
+
export declare type ConfluencePermissionTransitionBulkRemoveAccessInput = {
|
|
20460
|
+
permissionCombinationIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
20461
|
+
spaceTargetSelection: ConfluencePermissionTransitionSpaceTargetSelectionInput;
|
|
20462
|
+
};
|
|
20463
|
+
export declare type ConfluencePermissionTransitionBulkRemoveAccessPayload = Payload & {
|
|
20464
|
+
__typename?: 'ConfluencePermissionTransitionBulkRemoveAccessPayload';
|
|
20465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20466
|
+
success: Scalars['Boolean']['output'];
|
|
20467
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
20468
|
+
};
|
|
20469
|
+
export declare type ConfluencePermissionTransitionPrincipal = {
|
|
20470
|
+
__typename?: 'ConfluencePermissionTransitionPrincipal';
|
|
20471
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
20472
|
+
id: Scalars['ID']['output'];
|
|
20473
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
20474
|
+
name: Scalars['String']['output'];
|
|
20475
|
+
profilePicture?: Maybe<Icon>;
|
|
20476
|
+
type: ConfluencePermissionTransitionPrincipalType;
|
|
20477
|
+
};
|
|
20478
|
+
export declare type ConfluencePermissionTransitionPrincipalEdge = {
|
|
20479
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalEdge';
|
|
20480
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20481
|
+
node: ConfluencePermissionTransitionPrincipal;
|
|
20482
|
+
};
|
|
20483
|
+
export declare type ConfluencePermissionTransitionPrincipalPageInfo = {
|
|
20484
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalPageInfo';
|
|
20485
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
20486
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
20487
|
+
};
|
|
20488
|
+
export declare enum ConfluencePermissionTransitionPrincipalType {
|
|
20489
|
+
Anonymous = "ANONYMOUS",
|
|
20490
|
+
Group = "GROUP",
|
|
20491
|
+
Guest = "GUEST",
|
|
20492
|
+
User = "USER"
|
|
20493
|
+
}
|
|
20494
|
+
export declare type ConfluencePermissionTransitionPrincipalsConnection = {
|
|
20495
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalsConnection';
|
|
20496
|
+
edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionPrincipalEdge>>>;
|
|
20497
|
+
pageInfo: ConfluencePermissionTransitionPrincipalPageInfo;
|
|
20498
|
+
};
|
|
20499
|
+
export declare type ConfluencePermissionTransitionSpace = {
|
|
20500
|
+
__typename?: 'ConfluencePermissionTransitionSpace';
|
|
20501
|
+
icon: Scalars['String']['output'];
|
|
20502
|
+
id: Scalars['ID']['output'];
|
|
20503
|
+
isPersonalSpace: Scalars['Boolean']['output'];
|
|
20504
|
+
key: Scalars['String']['output'];
|
|
20505
|
+
name: Scalars['String']['output'];
|
|
20506
|
+
owner: ConfluencePermissionTransitionSpaceOwner;
|
|
20507
|
+
};
|
|
20508
|
+
export declare type ConfluencePermissionTransitionSpaceConnection = {
|
|
20509
|
+
__typename?: 'ConfluencePermissionTransitionSpaceConnection';
|
|
20510
|
+
edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionSpaceEdge>>>;
|
|
20511
|
+
pageInfo: ConfluenceSpacePermissionPageInfo;
|
|
20512
|
+
};
|
|
20513
|
+
export declare type ConfluencePermissionTransitionSpaceEdge = {
|
|
20514
|
+
__typename?: 'ConfluencePermissionTransitionSpaceEdge';
|
|
20515
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20516
|
+
node: ConfluencePermissionTransitionSpace;
|
|
20517
|
+
};
|
|
20518
|
+
export declare type ConfluencePermissionTransitionSpaceOwner = {
|
|
20519
|
+
__typename?: 'ConfluencePermissionTransitionSpaceOwner';
|
|
20520
|
+
email: Scalars['String']['output'];
|
|
20521
|
+
name: Scalars['String']['output'];
|
|
20522
|
+
profilePicture: Icon;
|
|
20523
|
+
};
|
|
20524
|
+
export declare type ConfluencePermissionTransitionSpaceTargetSelectionInput = {
|
|
20525
|
+
selectedSpaces?: InputMaybe<Array<InputMaybe<ConfluenceSpaceTargetInput>>>;
|
|
20526
|
+
spaceType: ConfluencePermissionTransitionSpaceType;
|
|
20527
|
+
};
|
|
20528
|
+
export declare enum ConfluencePermissionTransitionSpaceType {
|
|
20529
|
+
All = "ALL",
|
|
20530
|
+
AllExceptPersonal = "ALL_EXCEPT_PERSONAL",
|
|
20531
|
+
AllExceptSpecific = "ALL_EXCEPT_SPECIFIC",
|
|
20532
|
+
Personal = "PERSONAL",
|
|
20533
|
+
Specific = "SPECIFIC"
|
|
20534
|
+
}
|
|
20535
|
+
export declare enum ConfluencePermissionTransitionSpaceTypeFilter {
|
|
20536
|
+
Collaboration = "COLLABORATION",
|
|
20537
|
+
Global = "GLOBAL",
|
|
20538
|
+
KnowledgeBase = "KNOWLEDGE_BASE",
|
|
20539
|
+
Personal = "PERSONAL"
|
|
20540
|
+
}
|
|
20309
20541
|
export declare enum ConfluencePermissionTypeAssignabilityCode {
|
|
20310
20542
|
AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
|
|
20311
20543
|
Assignable = "ASSIGNABLE",
|
|
@@ -20360,7 +20592,6 @@ export declare type ConfluencePlaylist = {
|
|
|
20360
20592
|
__typename?: 'ConfluencePlaylist';
|
|
20361
20593
|
accountId: Scalars['ID']['output'];
|
|
20362
20594
|
tracks: ConfluencePaginatedTracks;
|
|
20363
|
-
user?: Maybe<Person>;
|
|
20364
20595
|
};
|
|
20365
20596
|
export declare type ConfluencePlaylistTracksArgs = {
|
|
20366
20597
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21027,6 +21258,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
21027
21258
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
21028
21259
|
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
21029
21260
|
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
21261
|
+
contentAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
21030
21262
|
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
21031
21263
|
editorDefaultWidth?: Maybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
21032
21264
|
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
@@ -21060,6 +21292,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
21060
21292
|
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
21061
21293
|
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
21062
21294
|
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
21295
|
+
spaceAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
21063
21296
|
teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
21064
21297
|
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
21065
21298
|
};
|
|
@@ -21297,6 +21530,10 @@ export declare enum ConfluenceSpaceStatus {
|
|
|
21297
21530
|
Current = "CURRENT",
|
|
21298
21531
|
Trashed = "TRASHED"
|
|
21299
21532
|
}
|
|
21533
|
+
export declare type ConfluenceSpaceTargetInput = {
|
|
21534
|
+
id: Scalars['ID']['input'];
|
|
21535
|
+
key: Scalars['String']['input'];
|
|
21536
|
+
};
|
|
21300
21537
|
export declare enum ConfluenceSpaceType {
|
|
21301
21538
|
Global = "GLOBAL",
|
|
21302
21539
|
Personal = "PERSONAL"
|
|
@@ -21624,6 +21861,15 @@ export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
|
21624
21861
|
errors?: Maybe<Array<MutationError>>;
|
|
21625
21862
|
success: Scalars['Boolean']['output'];
|
|
21626
21863
|
};
|
|
21864
|
+
export declare type ConfluenceUpdateAccessRequestSettingsInput = {
|
|
21865
|
+
enabled: Scalars['Boolean']['input'];
|
|
21866
|
+
messageContent?: InputMaybe<Scalars['String']['input']>;
|
|
21867
|
+
};
|
|
21868
|
+
export declare type ConfluenceUpdateAccessRequestSettingsPayload = Payload & {
|
|
21869
|
+
__typename?: 'ConfluenceUpdateAccessRequestSettingsPayload';
|
|
21870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21871
|
+
success: Scalars['Boolean']['output'];
|
|
21872
|
+
};
|
|
21627
21873
|
export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
21628
21874
|
appearance?: InputMaybe<Scalars['String']['input']>;
|
|
21629
21875
|
content?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22177,6 +22423,7 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
22177
22423
|
};
|
|
22178
22424
|
export declare type ConfluenceUpdateSpaceSettingsInput = {
|
|
22179
22425
|
id: Scalars['String']['input'];
|
|
22426
|
+
pdfExportNoCodeStylingOptedIn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22180
22427
|
routeOverrideEnabled: Scalars['Boolean']['input'];
|
|
22181
22428
|
};
|
|
22182
22429
|
export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
@@ -24681,15 +24928,30 @@ export declare enum ConvoAiActionStatus {
|
|
|
24681
24928
|
export declare type ConvoAiAgentAction = {
|
|
24682
24929
|
__typename?: 'ConvoAiAgentAction';
|
|
24683
24930
|
actionId?: Maybe<Scalars['String']['output']>;
|
|
24931
|
+
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
24684
24932
|
data: Scalars['JSON']['output'];
|
|
24933
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24934
|
+
humanMessageId?: Maybe<Scalars['String']['output']>;
|
|
24685
24935
|
invocationId: Scalars['String']['output'];
|
|
24686
24936
|
key: Scalars['String']['output'];
|
|
24687
24937
|
status?: Maybe<ConvoAiActionStatus>;
|
|
24938
|
+
toolSource?: Maybe<Scalars['String']['output']>;
|
|
24688
24939
|
};
|
|
24689
24940
|
export declare type ConvoAiAgentMessage = {
|
|
24690
24941
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
24691
24942
|
timeCreated: Scalars['DateTime']['output'];
|
|
24692
24943
|
};
|
|
24944
|
+
export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
|
|
24945
|
+
__typename?: 'ConvoAiAgentSession';
|
|
24946
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
24947
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
24948
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24949
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
24950
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
24951
|
+
};
|
|
24952
|
+
export declare type ConvoAiAgentSessionNode = {
|
|
24953
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24954
|
+
};
|
|
24693
24955
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
24694
24956
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
24695
24957
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
@@ -25239,12 +25501,14 @@ export declare type CplsFilters = {
|
|
|
25239
25501
|
__typename?: 'CplsFilters';
|
|
25240
25502
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25241
25503
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25504
|
+
jiraWorkItemStatuses?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25242
25505
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25243
25506
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
25244
25507
|
};
|
|
25245
25508
|
export declare type CplsFiltersInput = {
|
|
25246
25509
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25247
25510
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25511
|
+
jiraWorkItemStatuses?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25248
25512
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25249
25513
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
25250
25514
|
};
|
|
@@ -25285,6 +25549,11 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
|
25285
25549
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
25286
25550
|
};
|
|
25287
25551
|
export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
|
|
25552
|
+
export declare type CplsPlanSettings = {
|
|
25553
|
+
__typename?: 'CplsPlanSettings';
|
|
25554
|
+
filters?: Maybe<CplsFilters>;
|
|
25555
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
25556
|
+
};
|
|
25288
25557
|
export declare type CplsQueryErrorExtension = QueryErrorExtension & {
|
|
25289
25558
|
__typename?: 'CplsQueryErrorExtension';
|
|
25290
25559
|
errorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -25299,6 +25568,7 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
25299
25568
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25300
25569
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
25301
25570
|
};
|
|
25571
|
+
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
25302
25572
|
export declare type CplsTimeCell = {
|
|
25303
25573
|
__typename?: 'CplsTimeCell';
|
|
25304
25574
|
endDate: Scalars['Date']['output'];
|
|
@@ -25927,6 +26197,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
25927
26197
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
25928
26198
|
name: Scalars['String']['input'];
|
|
25929
26199
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
26200
|
+
taskId?: InputMaybe<Scalars['ID']['input']>;
|
|
25930
26201
|
type: JiraPlaybookStepType;
|
|
25931
26202
|
};
|
|
25932
26203
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
@@ -26399,6 +26670,11 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
26399
26670
|
errors?: Maybe<Array<MutationError>>;
|
|
26400
26671
|
success: Scalars['Boolean']['output'];
|
|
26401
26672
|
};
|
|
26673
|
+
export declare type CsmAiDeleteClientKeyPayload = Payload & {
|
|
26674
|
+
__typename?: 'CsmAiDeleteClientKeyPayload';
|
|
26675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26676
|
+
success: Scalars['Boolean']['output'];
|
|
26677
|
+
};
|
|
26402
26678
|
export declare type CsmAiDeleteCoachingContentPayload = Payload & {
|
|
26403
26679
|
__typename?: 'CsmAiDeleteCoachingContentPayload';
|
|
26404
26680
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26733,7 +27009,7 @@ export declare type CsmAiWidgetUpdateInput = {
|
|
|
26733
27009
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26734
27010
|
position?: InputMaybe<CsmAiWidgetPosition>;
|
|
26735
27011
|
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
26736
|
-
type
|
|
27012
|
+
type?: InputMaybe<CsmAiWidgetType>;
|
|
26737
27013
|
};
|
|
26738
27014
|
export declare type CumulativeFlowDiagram = {
|
|
26739
27015
|
__typename?: 'CumulativeFlowDiagram';
|
|
@@ -27985,6 +28261,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
27985
28261
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
27986
28262
|
helpCenterId: Scalars['ID']['output'];
|
|
27987
28263
|
id: Scalars['ID']['output'];
|
|
28264
|
+
isAiFillable?: Maybe<Scalars['Boolean']['output']>;
|
|
27988
28265
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
27989
28266
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
27990
28267
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -29311,6 +29588,17 @@ export declare type DevAiRovoDevBulkSessionResult = {
|
|
|
29311
29588
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
29312
29589
|
session?: Maybe<DevAiRovoDevSession>;
|
|
29313
29590
|
};
|
|
29591
|
+
export declare type DevAiRovoDevCreatePullRequestInput = {
|
|
29592
|
+
branchName?: InputMaybe<Scalars['String']['input']>;
|
|
29593
|
+
codeChanges?: InputMaybe<Scalars['String']['input']>;
|
|
29594
|
+
sessionAri: Scalars['ID']['input'];
|
|
29595
|
+
};
|
|
29596
|
+
export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
|
|
29597
|
+
__typename?: 'DevAiRovoDevCreatePullRequestPayload';
|
|
29598
|
+
errors: Array<MutationError>;
|
|
29599
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
29600
|
+
success: Scalars['Boolean']['output'];
|
|
29601
|
+
};
|
|
29314
29602
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
29315
29603
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
29316
29604
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32352,10 +32640,11 @@ export declare type ExternalAssociationEdge = {
|
|
|
32352
32640
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
32353
32641
|
node?: Maybe<ExternalAssociation>;
|
|
32354
32642
|
};
|
|
32355
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
32643
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
32356
32644
|
export declare type ExternalAttachment = {
|
|
32357
32645
|
__typename?: 'ExternalAttachment';
|
|
32358
32646
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
32647
|
+
fileType?: Maybe<Scalars['String']['output']>;
|
|
32359
32648
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
32360
32649
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
32361
32650
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -32614,7 +32903,8 @@ export declare type ExternalConversation = Node & {
|
|
|
32614
32903
|
export declare enum ExternalConversationType {
|
|
32615
32904
|
Channel = "CHANNEL",
|
|
32616
32905
|
DirectMessage = "DIRECT_MESSAGE",
|
|
32617
|
-
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
32906
|
+
GroupDirectMessage = "GROUP_DIRECT_MESSAGE",
|
|
32907
|
+
GroupMeeting = "GROUP_MEETING"
|
|
32618
32908
|
}
|
|
32619
32909
|
export declare type ExternalCue = {
|
|
32620
32910
|
__typename?: 'ExternalCue';
|
|
@@ -33009,12 +33299,13 @@ export declare type ExternalEntities = {
|
|
|
33009
33299
|
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
33010
33300
|
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
33011
33301
|
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
33302
|
+
testStatus?: Maybe<Array<Maybe<ExternalTestStatus>>>;
|
|
33012
33303
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
33013
33304
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
33014
33305
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
33015
33306
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
33016
33307
|
};
|
|
33017
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
33308
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
33018
33309
|
export declare type ExternalEntityExtendedValue = {
|
|
33019
33310
|
__typename?: 'ExternalEntityExtendedValue';
|
|
33020
33311
|
fieldDisplayName?: Maybe<ExternalEntityExtendedValueDisplayName>;
|
|
@@ -33410,6 +33701,8 @@ export declare type ExternalSpace = Node & {
|
|
|
33410
33701
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
33411
33702
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
33412
33703
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
33704
|
+
parent?: Maybe<ExternalEntity>;
|
|
33705
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
33413
33706
|
provider?: Maybe<ExternalProvider>;
|
|
33414
33707
|
spaceType?: Maybe<Scalars['String']['output']>;
|
|
33415
33708
|
subtype?: Maybe<ExternalSpaceSubtype>;
|
|
@@ -33550,6 +33843,32 @@ export declare type ExternalTestRun = Node & {
|
|
|
33550
33843
|
url?: Maybe<Scalars['String']['output']>;
|
|
33551
33844
|
version?: Maybe<Scalars['String']['output']>;
|
|
33552
33845
|
};
|
|
33846
|
+
export declare type ExternalTestStatus = Node & {
|
|
33847
|
+
__typename?: 'ExternalTestStatus';
|
|
33848
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
33849
|
+
container?: Maybe<ExternalEntity>;
|
|
33850
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
33851
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33852
|
+
createdBy?: Maybe<ExternalUser>;
|
|
33853
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33854
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
33855
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
33856
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
33857
|
+
id: Scalars['ID']['output'];
|
|
33858
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
33859
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
33860
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
33861
|
+
parent?: Maybe<ExternalEntity>;
|
|
33862
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
33863
|
+
provider?: Maybe<ExternalProvider>;
|
|
33864
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
33865
|
+
statusPrecedence?: Maybe<Scalars['String']['output']>;
|
|
33866
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
33867
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
33868
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
33869
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
33870
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
33871
|
+
};
|
|
33553
33872
|
export declare type ExternalThumbnail = {
|
|
33554
33873
|
__typename?: 'ExternalThumbnail';
|
|
33555
33874
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -36315,6 +36634,11 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
36315
36634
|
McpTool = "MCP_TOOL",
|
|
36316
36635
|
Skill = "SKILL"
|
|
36317
36636
|
}
|
|
36637
|
+
export declare type GraphIntegrationIcon = {
|
|
36638
|
+
__typename?: 'GraphIntegrationIcon';
|
|
36639
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
36640
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
36641
|
+
};
|
|
36318
36642
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
36319
36643
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
36320
36644
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge>>;
|
|
@@ -36559,6 +36883,7 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
36559
36883
|
contextAri: Scalars['ID']['output'];
|
|
36560
36884
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36561
36885
|
description: Scalars['String']['output'];
|
|
36886
|
+
icon?: Maybe<GraphIntegrationIcon>;
|
|
36562
36887
|
iconKey: Scalars['String']['output'];
|
|
36563
36888
|
id: Scalars['String']['output'];
|
|
36564
36889
|
maxInstallations: Scalars['Int']['output'];
|
|
@@ -36579,6 +36904,7 @@ export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
36579
36904
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
36580
36905
|
availableCapabilities: Array<GraphIntegrationAppCapability>;
|
|
36581
36906
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36907
|
+
icon?: Maybe<GraphIntegrationIcon>;
|
|
36582
36908
|
iconKey: Scalars['String']['output'];
|
|
36583
36909
|
maxInstallations: Scalars['Int']['output'];
|
|
36584
36910
|
name: Scalars['String']['output'];
|
|
@@ -39624,6 +39950,10 @@ export declare type GraphStore = {
|
|
|
39624
39950
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
39625
39951
|
jiraRepoIsProviderRepo?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoConnection>;
|
|
39626
39952
|
jiraRepoIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection>;
|
|
39953
|
+
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
39954
|
+
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
39955
|
+
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
39956
|
+
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
39627
39957
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
39628
39958
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
39629
39959
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
@@ -40022,6 +40352,8 @@ export declare type GraphStore = {
|
|
|
40022
40352
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
40023
40353
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
40024
40354
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
40355
|
+
userInvitedUser?: Maybe<GraphStoreSimplifiedUserInvitedUserConnection>;
|
|
40356
|
+
userInvitedUserInverse?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseConnection>;
|
|
40025
40357
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
40026
40358
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
40027
40359
|
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
@@ -42893,6 +43225,38 @@ export declare type GraphStoreJiraRepoIsProviderRepoInverseArgs = {
|
|
|
42893
43225
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
42894
43226
|
sort?: InputMaybe<GraphStoreJiraRepoIsProviderRepoSortInput>;
|
|
42895
43227
|
};
|
|
43228
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentArgs = {
|
|
43229
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43230
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43231
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43232
|
+
id: Scalars['ID']['input'];
|
|
43233
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43234
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
43235
|
+
};
|
|
43236
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
43237
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43238
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43239
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43240
|
+
id: Scalars['ID']['input'];
|
|
43241
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43242
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
43243
|
+
};
|
|
43244
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectArgs = {
|
|
43245
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43246
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43248
|
+
id: Scalars['ID']['input'];
|
|
43249
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43250
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemLinksAssetObjectSortInput>;
|
|
43251
|
+
};
|
|
43252
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectInverseArgs = {
|
|
43253
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43254
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43255
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43256
|
+
id: Scalars['ID']['input'];
|
|
43257
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43258
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemLinksAssetObjectSortInput>;
|
|
43259
|
+
};
|
|
42896
43260
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
42897
43261
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42898
43262
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45967,6 +46331,22 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
|
45967
46331
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45968
46332
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
45969
46333
|
};
|
|
46334
|
+
export declare type GraphStoreUserInvitedUserArgs = {
|
|
46335
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46336
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46337
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46338
|
+
id: Scalars['ID']['input'];
|
|
46339
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46340
|
+
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46341
|
+
};
|
|
46342
|
+
export declare type GraphStoreUserInvitedUserInverseArgs = {
|
|
46343
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46344
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46345
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46346
|
+
id: Scalars['ID']['input'];
|
|
46347
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46348
|
+
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46349
|
+
};
|
|
45970
46350
|
export declare type GraphStoreUserIsInTeamArgs = {
|
|
45971
46351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45972
46352
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47874,7 +48254,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
47874
48254
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
47875
48255
|
id: Scalars['ID']['output'];
|
|
47876
48256
|
};
|
|
47877
|
-
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;
|
|
48257
|
+
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 | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47878
48258
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
47879
48259
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
47880
48260
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -50640,7 +51020,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
50640
51020
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
50641
51021
|
id: Scalars['ID']['output'];
|
|
50642
51022
|
};
|
|
50643
|
-
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;
|
|
51023
|
+
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 | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50644
51024
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
50645
51025
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
50646
51026
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54093,6 +54473,12 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
|
54093
54473
|
export declare type GraphStoreJiraRepoIsProviderRepoSortInput = {
|
|
54094
54474
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54095
54475
|
};
|
|
54476
|
+
export declare type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
54477
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54478
|
+
};
|
|
54479
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectSortInput = {
|
|
54480
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54481
|
+
};
|
|
54096
54482
|
export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
54097
54483
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
54098
54484
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -56774,7 +57160,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
56774
57160
|
lastUpdated: Scalars['DateTime']['output'];
|
|
56775
57161
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
56776
57162
|
};
|
|
56777
|
-
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;
|
|
57163
|
+
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 | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56778
57164
|
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;
|
|
56779
57165
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
56780
57166
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -58764,6 +59150,62 @@ export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseEdge = {
|
|
|
58764
59150
|
};
|
|
58765
59151
|
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseUnion = DevOpsRepository | ExternalRepository;
|
|
58766
59152
|
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoUnion = BitbucketRepository;
|
|
59153
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection = HasPageInfo & {
|
|
59154
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection';
|
|
59155
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge>>>;
|
|
59156
|
+
pageInfo: PageInfo;
|
|
59157
|
+
};
|
|
59158
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge = {
|
|
59159
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentEdge';
|
|
59160
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59161
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59162
|
+
id: Scalars['ID']['output'];
|
|
59163
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59164
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion>;
|
|
59165
|
+
};
|
|
59166
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection = HasPageInfo & {
|
|
59167
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection';
|
|
59168
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge>>>;
|
|
59169
|
+
pageInfo: PageInfo;
|
|
59170
|
+
};
|
|
59171
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge = {
|
|
59172
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseEdge';
|
|
59173
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59174
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59175
|
+
id: Scalars['ID']['output'];
|
|
59176
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59177
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion>;
|
|
59178
|
+
};
|
|
59179
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
59180
|
+
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
59181
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
59182
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
59183
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
59184
|
+
pageInfo: PageInfo;
|
|
59185
|
+
};
|
|
59186
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge = {
|
|
59187
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge';
|
|
59188
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59189
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59190
|
+
id: Scalars['ID']['output'];
|
|
59191
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59192
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectUnion>;
|
|
59193
|
+
};
|
|
59194
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection = HasPageInfo & {
|
|
59195
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection';
|
|
59196
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge>>>;
|
|
59197
|
+
pageInfo: PageInfo;
|
|
59198
|
+
};
|
|
59199
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge = {
|
|
59200
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge';
|
|
59201
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59202
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59203
|
+
id: Scalars['ID']['output'];
|
|
59204
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59205
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseUnion>;
|
|
59206
|
+
};
|
|
59207
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseUnion = JiraIssue;
|
|
59208
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectUnion = AssetsObject;
|
|
58767
59209
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
58768
59210
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
58769
59211
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
@@ -63020,6 +63462,34 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
|
63020
63462
|
};
|
|
63021
63463
|
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63022
63464
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
63465
|
+
export declare type GraphStoreSimplifiedUserInvitedUserConnection = HasPageInfo & {
|
|
63466
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserConnection';
|
|
63467
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserEdge>>>;
|
|
63468
|
+
pageInfo: PageInfo;
|
|
63469
|
+
};
|
|
63470
|
+
export declare type GraphStoreSimplifiedUserInvitedUserEdge = {
|
|
63471
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserEdge';
|
|
63472
|
+
createdAt: Scalars['DateTime']['output'];
|
|
63473
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
63474
|
+
id: Scalars['ID']['output'];
|
|
63475
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
63476
|
+
node?: Maybe<GraphStoreSimplifiedUserInvitedUserUnion>;
|
|
63477
|
+
};
|
|
63478
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseConnection = HasPageInfo & {
|
|
63479
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseConnection';
|
|
63480
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserInverseEdge>>>;
|
|
63481
|
+
pageInfo: PageInfo;
|
|
63482
|
+
};
|
|
63483
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseEdge = {
|
|
63484
|
+
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseEdge';
|
|
63485
|
+
createdAt: Scalars['DateTime']['output'];
|
|
63486
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
63487
|
+
id: Scalars['ID']['output'];
|
|
63488
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
63489
|
+
node?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseUnion>;
|
|
63490
|
+
};
|
|
63491
|
+
export declare type GraphStoreSimplifiedUserInvitedUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63492
|
+
export declare type GraphStoreSimplifiedUserInvitedUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63023
63493
|
export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
|
|
63024
63494
|
__typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
|
|
63025
63495
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
|
|
@@ -65809,6 +66279,9 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
|
65809
66279
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
65810
66280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65811
66281
|
};
|
|
66282
|
+
export declare type GraphStoreUserInvitedUserSortInput = {
|
|
66283
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66284
|
+
};
|
|
65812
66285
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
65813
66286
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65814
66287
|
};
|
|
@@ -66119,18 +66592,12 @@ export declare type GraphStoreV2 = {
|
|
|
66119
66592
|
atlassianUserCreatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceSpaceInverseConnection>;
|
|
66120
66593
|
atlassianUserCreatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardConnection>;
|
|
66121
66594
|
atlassianUserCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
66122
|
-
atlassianUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection>;
|
|
66123
|
-
atlassianUserCreatedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection>;
|
|
66124
66595
|
atlassianUserCreatedExternalComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection>;
|
|
66125
66596
|
atlassianUserCreatedExternalCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInverseConnection>;
|
|
66126
|
-
atlassianUserCreatedExternalDocument?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection>;
|
|
66127
|
-
atlassianUserCreatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection>;
|
|
66128
66597
|
atlassianUserCreatedExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection>;
|
|
66129
66598
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
66130
66599
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
66131
66600
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
66132
|
-
atlassianUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection>;
|
|
66133
|
-
atlassianUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection>;
|
|
66134
66601
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
66135
66602
|
atlassianUserCreatedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseInverseConnection>;
|
|
66136
66603
|
atlassianUserCreatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraWorkItemConnection>;
|
|
@@ -66145,6 +66612,10 @@ export declare type GraphStoreV2 = {
|
|
|
66145
66612
|
atlassianUserCreatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseConnection>;
|
|
66146
66613
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
66147
66614
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
66615
|
+
atlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection>;
|
|
66616
|
+
atlassianUserFavoritedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection>;
|
|
66617
|
+
atlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection>;
|
|
66618
|
+
atlassianUserFavoritedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection>;
|
|
66148
66619
|
atlassianUserFavoritedConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection>;
|
|
66149
66620
|
atlassianUserFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
66150
66621
|
atlassianUserFavoritedConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -66165,6 +66636,8 @@ export declare type GraphStoreV2 = {
|
|
|
66165
66636
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
66166
66637
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
66167
66638
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
66639
|
+
atlassianUserInvitedAtlassianUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection>;
|
|
66640
|
+
atlassianUserInvitedAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection>;
|
|
66168
66641
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
66169
66642
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
66170
66643
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
@@ -66175,16 +66648,14 @@ export declare type GraphStoreV2 = {
|
|
|
66175
66648
|
atlassianUserLikedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLikedConfluencePageInverseConnection>;
|
|
66176
66649
|
atlassianUserLinksExternalUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserLinksExternalUserConnection>;
|
|
66177
66650
|
atlassianUserLinksExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseConnection>;
|
|
66178
|
-
atlassianUserMemberOfExternalConversation?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection>;
|
|
66179
|
-
atlassianUserMemberOfExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection>;
|
|
66180
66651
|
atlassianUserMentionedInConfluenceComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection>;
|
|
66181
66652
|
atlassianUserMentionedInConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentInverseConnection>;
|
|
66182
66653
|
atlassianUserMentionedInConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageConnection>;
|
|
66183
66654
|
atlassianUserMentionedInConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageInverseConnection>;
|
|
66184
|
-
|
|
66185
|
-
atlassianUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection>;
|
|
66655
|
+
atlassianUserMentionedInJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection>;
|
|
66186
66656
|
atlassianUserMentionedInJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection>;
|
|
66187
66657
|
atlassianUserMentionedInJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentInverseConnection>;
|
|
66658
|
+
atlassianUserMentionedInJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection>;
|
|
66188
66659
|
atlassianUserMentionedInLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection>;
|
|
66189
66660
|
atlassianUserMentionedInLoomVideoCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentInverseConnection>;
|
|
66190
66661
|
atlassianUserOwnsAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsAtlassianGoalConnection>;
|
|
@@ -66197,12 +66668,8 @@ export declare type GraphStoreV2 = {
|
|
|
66197
66668
|
atlassianUserOwnsConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsConfluencePageInverseConnection>;
|
|
66198
66669
|
atlassianUserOwnsExternalBranch?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchConnection>;
|
|
66199
66670
|
atlassianUserOwnsExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverseConnection>;
|
|
66200
|
-
atlassianUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection>;
|
|
66201
|
-
atlassianUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection>;
|
|
66202
66671
|
atlassianUserOwnsExternalRemoteLink?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection>;
|
|
66203
66672
|
atlassianUserOwnsExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInverseConnection>;
|
|
66204
|
-
atlassianUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection>;
|
|
66205
|
-
atlassianUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection>;
|
|
66206
66673
|
atlassianUserOwnsFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection>;
|
|
66207
66674
|
atlassianUserOwnsFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskInverseConnection>;
|
|
66208
66675
|
atlassianUserOwnsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaConnection>;
|
|
@@ -66215,8 +66682,6 @@ export declare type GraphStoreV2 = {
|
|
|
66215
66682
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
66216
66683
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
66217
66684
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
66218
|
-
atlassianUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection>;
|
|
66219
|
-
atlassianUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection>;
|
|
66220
66685
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
66221
66686
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
66222
66687
|
atlassianUserSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskConnection>;
|
|
@@ -66237,8 +66702,6 @@ export declare type GraphStoreV2 = {
|
|
|
66237
66702
|
atlassianUserUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceSpaceInverseConnection>;
|
|
66238
66703
|
atlassianUserUpdatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardConnection>;
|
|
66239
66704
|
atlassianUserUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
66240
|
-
atlassianUserUpdatedExternalDocument?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection>;
|
|
66241
|
-
atlassianUserUpdatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection>;
|
|
66242
66705
|
atlassianUserUpdatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection>;
|
|
66243
66706
|
atlassianUserUpdatedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemInverseConnection>;
|
|
66244
66707
|
atlassianUserViewedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalConnection>;
|
|
@@ -66340,8 +66803,6 @@ export declare type GraphStoreV2 = {
|
|
|
66340
66803
|
externalDocumentHasChildExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentInverseConnection>;
|
|
66341
66804
|
externalDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
66342
66805
|
externalEntityIsThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection>;
|
|
66343
|
-
externalMeetingHasExternalMeetingNotesPage?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection>;
|
|
66344
|
-
externalMeetingHasExternalMeetingNotesPageInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection>;
|
|
66345
66806
|
externalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection>;
|
|
66346
66807
|
externalMeetingRecurrenceHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceInverseConnection>;
|
|
66347
66808
|
externalMessageHasChildExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalMessageHasChildExternalMessageConnection>;
|
|
@@ -66404,6 +66865,8 @@ export declare type GraphStoreV2 = {
|
|
|
66404
66865
|
externalUserCollaboratedOnExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCollaboratedOnExternalDocumentInverseConnection>;
|
|
66405
66866
|
externalUserCreatedExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchConnection>;
|
|
66406
66867
|
externalUserCreatedExternalBranchInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseConnection>;
|
|
66868
|
+
externalUserCreatedExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection>;
|
|
66869
|
+
externalUserCreatedExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection>;
|
|
66407
66870
|
externalUserCreatedExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection>;
|
|
66408
66871
|
externalUserCreatedExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitInverseConnection>;
|
|
66409
66872
|
externalUserCreatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCustomerContactConnection>;
|
|
@@ -66420,6 +66883,8 @@ export declare type GraphStoreV2 = {
|
|
|
66420
66883
|
externalUserCreatedExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDealInverseConnection>;
|
|
66421
66884
|
externalUserCreatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDesignConnection>;
|
|
66422
66885
|
externalUserCreatedExternalDesignInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInverseConnection>;
|
|
66886
|
+
externalUserCreatedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection>;
|
|
66887
|
+
externalUserCreatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection>;
|
|
66423
66888
|
externalUserCreatedExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection>;
|
|
66424
66889
|
externalUserCreatedExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageInverseConnection>;
|
|
66425
66890
|
externalUserCreatedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalPullRequestConnection>;
|
|
@@ -66432,14 +66897,18 @@ export declare type GraphStoreV2 = {
|
|
|
66432
66897
|
externalUserCreatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamInverseConnection>;
|
|
66433
66898
|
externalUserCreatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestConnection>;
|
|
66434
66899
|
externalUserCreatedExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection>;
|
|
66435
|
-
|
|
66436
|
-
|
|
66437
|
-
externalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection>;
|
|
66438
|
-
externalUserFavoritedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseConnection>;
|
|
66900
|
+
externalUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection>;
|
|
66901
|
+
externalUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection>;
|
|
66439
66902
|
externalUserLastUpdatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection>;
|
|
66440
66903
|
externalUserLastUpdatedExternalDesignInverse?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignInverseConnection>;
|
|
66904
|
+
externalUserMemberOfExternalConversation?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection>;
|
|
66905
|
+
externalUserMemberOfExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection>;
|
|
66906
|
+
externalUserMentionedInExternalConversation?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection>;
|
|
66907
|
+
externalUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection>;
|
|
66441
66908
|
externalUserMentionedInExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection>;
|
|
66442
66909
|
externalUserMentionedInExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseConnection>;
|
|
66910
|
+
externalUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection>;
|
|
66911
|
+
externalUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection>;
|
|
66443
66912
|
externalUserOwnsExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection>;
|
|
66444
66913
|
externalUserOwnsExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactInverseConnection>;
|
|
66445
66914
|
externalUserOwnsExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerOrgConnection>;
|
|
@@ -66452,6 +66921,8 @@ export declare type GraphStoreV2 = {
|
|
|
66452
66921
|
externalUserOwnsExternalDataTableInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDataTableInverseConnection>;
|
|
66453
66922
|
externalUserOwnsExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDealConnection>;
|
|
66454
66923
|
externalUserOwnsExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseConnection>;
|
|
66924
|
+
externalUserOwnsExternalRepository?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection>;
|
|
66925
|
+
externalUserOwnsExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection>;
|
|
66455
66926
|
externalUserOwnsExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection>;
|
|
66456
66927
|
externalUserOwnsExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceInverseConnection>;
|
|
66457
66928
|
externalUserOwnsExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSpaceConnection>;
|
|
@@ -66460,6 +66931,8 @@ export declare type GraphStoreV2 = {
|
|
|
66460
66931
|
externalUserOwnsExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamInverseConnection>;
|
|
66461
66932
|
externalUserOwnsExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestConnection>;
|
|
66462
66933
|
externalUserOwnsExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection>;
|
|
66934
|
+
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
66935
|
+
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
66463
66936
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
66464
66937
|
externalUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactInverseConnection>;
|
|
66465
66938
|
externalUserUpdatedExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerOrgConnection>;
|
|
@@ -66472,6 +66945,8 @@ export declare type GraphStoreV2 = {
|
|
|
66472
66945
|
externalUserUpdatedExternalDataTableInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDataTableInverseConnection>;
|
|
66473
66946
|
externalUserUpdatedExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDealConnection>;
|
|
66474
66947
|
externalUserUpdatedExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverseConnection>;
|
|
66948
|
+
externalUserUpdatedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection>;
|
|
66949
|
+
externalUserUpdatedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection>;
|
|
66475
66950
|
externalUserUpdatedExternalSoftwareService?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection>;
|
|
66476
66951
|
externalUserUpdatedExternalSoftwareServiceInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceInverseConnection>;
|
|
66477
66952
|
externalUserUpdatedExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSpaceConnection>;
|
|
@@ -66584,6 +67059,8 @@ export declare type GraphStoreV2 = {
|
|
|
66584
67059
|
jiraWorkItemBlocksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemBlocksJiraWorkItemInverseConnection>;
|
|
66585
67060
|
jiraWorkItemChangesCompassComponent?: Maybe<GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentConnection>;
|
|
66586
67061
|
jiraWorkItemChangesCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInverseConnection>;
|
|
67062
|
+
jiraWorkItemCommentHasChildJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection>;
|
|
67063
|
+
jiraWorkItemCommentHasChildJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection>;
|
|
66587
67064
|
jiraWorkItemContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection>;
|
|
66588
67065
|
jiraWorkItemContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalInverseConnection>;
|
|
66589
67066
|
jiraWorkItemHasAtlassianAutodevJob?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasAtlassianAutodevJobConnection>;
|
|
@@ -66598,6 +67075,8 @@ export declare type GraphStoreV2 = {
|
|
|
66598
67075
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
66599
67076
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
66600
67077
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
67078
|
+
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
67079
|
+
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
66601
67080
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
66602
67081
|
jiraWorkItemLinksConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardInverseConnection>;
|
|
66603
67082
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
@@ -66639,6 +67118,8 @@ export declare type GraphStoreV2 = {
|
|
|
66639
67118
|
jsmSpaceLinksExternalServiceInverse?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksExternalServiceInverseConnection>;
|
|
66640
67119
|
jsmSpaceLinksKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityConnection>;
|
|
66641
67120
|
jsmSpaceLinksKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInverseConnection>;
|
|
67121
|
+
loomMeetingHasConfluenceMeetingNotesPage?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection>;
|
|
67122
|
+
loomMeetingHasConfluenceMeetingNotesPageInverse?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection>;
|
|
66642
67123
|
loomMeetingHasJiraSpace?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection>;
|
|
66643
67124
|
loomMeetingHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceInverseConnection>;
|
|
66644
67125
|
loomMeetingHasLoomVideo?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasLoomVideoConnection>;
|
|
@@ -67219,22 +67700,6 @@ export declare type GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardInverseA
|
|
|
67219
67700
|
id: Scalars['ID']['input'];
|
|
67220
67701
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardSortInput>;
|
|
67221
67702
|
};
|
|
67222
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventArgs = {
|
|
67223
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67224
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67225
|
-
filter?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput>;
|
|
67226
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67227
|
-
id: Scalars['ID']['input'];
|
|
67228
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput>;
|
|
67229
|
-
};
|
|
67230
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventInverseArgs = {
|
|
67231
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67232
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67233
|
-
filter?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput>;
|
|
67234
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67235
|
-
id: Scalars['ID']['input'];
|
|
67236
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput>;
|
|
67237
|
-
};
|
|
67238
67703
|
export declare type GraphStoreV2AtlassianUserCreatedExternalCommentArgs = {
|
|
67239
67704
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67240
67705
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67249,20 +67714,6 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalCommentInverseArgs =
|
|
|
67249
67714
|
id: Scalars['ID']['input'];
|
|
67250
67715
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCommentSortInput>;
|
|
67251
67716
|
};
|
|
67252
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentArgs = {
|
|
67253
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67254
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67255
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67256
|
-
id: Scalars['ID']['input'];
|
|
67257
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput>;
|
|
67258
|
-
};
|
|
67259
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentInverseArgs = {
|
|
67260
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67261
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67262
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67263
|
-
id: Scalars['ID']['input'];
|
|
67264
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput>;
|
|
67265
|
-
};
|
|
67266
67717
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkArgs = {
|
|
67267
67718
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67268
67719
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67291,20 +67742,6 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
67291
67742
|
id: Scalars['ID']['input'];
|
|
67292
67743
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
67293
67744
|
};
|
|
67294
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemArgs = {
|
|
67295
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67296
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67297
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67298
|
-
id: Scalars['ID']['input'];
|
|
67299
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput>;
|
|
67300
|
-
};
|
|
67301
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemInverseArgs = {
|
|
67302
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67303
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67304
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67305
|
-
id: Scalars['ID']['input'];
|
|
67306
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput>;
|
|
67307
|
-
};
|
|
67308
67745
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseArgs = {
|
|
67309
67746
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67310
67747
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67405,6 +67842,34 @@ export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
|
|
|
67405
67842
|
id: Scalars['ID']['input'];
|
|
67406
67843
|
sort?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
67407
67844
|
};
|
|
67845
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalArgs = {
|
|
67846
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67847
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67848
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67849
|
+
id: Scalars['ID']['input'];
|
|
67850
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput>;
|
|
67851
|
+
};
|
|
67852
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalInverseArgs = {
|
|
67853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67854
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67856
|
+
id: Scalars['ID']['input'];
|
|
67857
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput>;
|
|
67858
|
+
};
|
|
67859
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectArgs = {
|
|
67860
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67861
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67863
|
+
id: Scalars['ID']['input'];
|
|
67864
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput>;
|
|
67865
|
+
};
|
|
67866
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectInverseArgs = {
|
|
67867
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67868
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67869
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67870
|
+
id: Scalars['ID']['input'];
|
|
67871
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput>;
|
|
67872
|
+
};
|
|
67408
67873
|
export declare type GraphStoreV2AtlassianUserFavoritedConfluenceBlogpostArgs = {
|
|
67409
67874
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67410
67875
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67545,6 +68010,20 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceInverseArgs = {
|
|
|
67545
68010
|
id: Scalars['ID']['input'];
|
|
67546
68011
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput>;
|
|
67547
68012
|
};
|
|
68013
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserArgs = {
|
|
68014
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68015
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68017
|
+
id: Scalars['ID']['input'];
|
|
68018
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
68019
|
+
};
|
|
68020
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserInverseArgs = {
|
|
68021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68024
|
+
id: Scalars['ID']['input'];
|
|
68025
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
68026
|
+
};
|
|
67548
68027
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingArgs = {
|
|
67549
68028
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67550
68029
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67617,20 +68096,6 @@ export declare type GraphStoreV2AtlassianUserLinksExternalUserInverseArgs = {
|
|
|
67617
68096
|
id: Scalars['ID']['input'];
|
|
67618
68097
|
sort?: InputMaybe<GraphStoreV2AtlassianUserLinksExternalUserSortInput>;
|
|
67619
68098
|
};
|
|
67620
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationArgs = {
|
|
67621
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67622
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67623
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67624
|
-
id: Scalars['ID']['input'];
|
|
67625
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput>;
|
|
67626
|
-
};
|
|
67627
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationInverseArgs = {
|
|
67628
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67629
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67630
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67631
|
-
id: Scalars['ID']['input'];
|
|
67632
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput>;
|
|
67633
|
-
};
|
|
67634
68099
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluenceCommentArgs = {
|
|
67635
68100
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67636
68101
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67659,33 +68124,33 @@ export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageInverseArg
|
|
|
67659
68124
|
id: Scalars['ID']['input'];
|
|
67660
68125
|
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput>;
|
|
67661
68126
|
};
|
|
67662
|
-
export declare type
|
|
68127
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemArgs = {
|
|
67663
68128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67664
68129
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67665
68130
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67666
68131
|
id: Scalars['ID']['input'];
|
|
67667
|
-
sort?: InputMaybe<
|
|
68132
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput>;
|
|
67668
68133
|
};
|
|
67669
|
-
export declare type
|
|
68134
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentArgs = {
|
|
67670
68135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67671
68136
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67672
68137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67673
68138
|
id: Scalars['ID']['input'];
|
|
67674
|
-
sort?: InputMaybe<
|
|
68139
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput>;
|
|
67675
68140
|
};
|
|
67676
|
-
export declare type
|
|
68141
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentInverseArgs = {
|
|
67677
68142
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67678
68143
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67679
68144
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67680
68145
|
id: Scalars['ID']['input'];
|
|
67681
68146
|
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput>;
|
|
67682
68147
|
};
|
|
67683
|
-
export declare type
|
|
68148
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemInverseArgs = {
|
|
67684
68149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67685
68150
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67686
68151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67687
68152
|
id: Scalars['ID']['input'];
|
|
67688
|
-
sort?: InputMaybe<
|
|
68153
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput>;
|
|
67689
68154
|
};
|
|
67690
68155
|
export declare type GraphStoreV2AtlassianUserMentionedInLoomVideoCommentArgs = {
|
|
67691
68156
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67773,20 +68238,6 @@ export declare type GraphStoreV2AtlassianUserOwnsExternalBranchInverseArgs = {
|
|
|
67773
68238
|
id: Scalars['ID']['input'];
|
|
67774
68239
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalBranchSortInput>;
|
|
67775
68240
|
};
|
|
67776
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventArgs = {
|
|
67777
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67778
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67779
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67780
|
-
id: Scalars['ID']['input'];
|
|
67781
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput>;
|
|
67782
|
-
};
|
|
67783
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventInverseArgs = {
|
|
67784
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67785
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67786
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67787
|
-
id: Scalars['ID']['input'];
|
|
67788
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput>;
|
|
67789
|
-
};
|
|
67790
68241
|
export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkArgs = {
|
|
67791
68242
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67792
68243
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67801,20 +68252,6 @@ export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkInverseArgs =
|
|
|
67801
68252
|
id: Scalars['ID']['input'];
|
|
67802
68253
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRemoteLinkSortInput>;
|
|
67803
68254
|
};
|
|
67804
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositoryArgs = {
|
|
67805
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67806
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67807
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67808
|
-
id: Scalars['ID']['input'];
|
|
67809
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput>;
|
|
67810
|
-
};
|
|
67811
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositoryInverseArgs = {
|
|
67812
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67813
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67814
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67815
|
-
id: Scalars['ID']['input'];
|
|
67816
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput>;
|
|
67817
|
-
};
|
|
67818
68255
|
export declare type GraphStoreV2AtlassianUserOwnsFocusAskArgs = {
|
|
67819
68256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67820
68257
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67899,20 +68336,6 @@ export declare type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
67899
68336
|
id: Scalars['ID']['input'];
|
|
67900
68337
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
67901
68338
|
};
|
|
67902
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestArgs = {
|
|
67903
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67904
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67905
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67906
|
-
id: Scalars['ID']['input'];
|
|
67907
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput>;
|
|
67908
|
-
};
|
|
67909
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestInverseArgs = {
|
|
67910
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67911
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67912
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67913
|
-
id: Scalars['ID']['input'];
|
|
67914
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput>;
|
|
67915
|
-
};
|
|
67916
68339
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageArgs = {
|
|
67917
68340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67918
68341
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68053,20 +68476,6 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardInverseA
|
|
|
68053
68476
|
id: Scalars['ID']['input'];
|
|
68054
68477
|
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput>;
|
|
68055
68478
|
};
|
|
68056
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentArgs = {
|
|
68057
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68058
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68059
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68060
|
-
id: Scalars['ID']['input'];
|
|
68061
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput>;
|
|
68062
|
-
};
|
|
68063
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentInverseArgs = {
|
|
68064
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68065
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68066
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68067
|
-
id: Scalars['ID']['input'];
|
|
68068
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput>;
|
|
68069
|
-
};
|
|
68070
68479
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemArgs = {
|
|
68071
68480
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68072
68481
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68775,20 +69184,6 @@ export declare type GraphStoreV2ExternalEntityIsThirdPartyEntityInverseArgs = {
|
|
|
68775
69184
|
id: Scalars['ID']['input'];
|
|
68776
69185
|
sort?: InputMaybe<GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput>;
|
|
68777
69186
|
};
|
|
68778
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageArgs = {
|
|
68779
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68780
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68781
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68782
|
-
id: Scalars['ID']['input'];
|
|
68783
|
-
sort?: InputMaybe<GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput>;
|
|
68784
|
-
};
|
|
68785
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageInverseArgs = {
|
|
68786
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68787
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68788
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68789
|
-
id: Scalars['ID']['input'];
|
|
68790
|
-
sort?: InputMaybe<GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput>;
|
|
68791
|
-
};
|
|
68792
69187
|
export declare type GraphStoreV2ExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
68793
69188
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68794
69189
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69227,6 +69622,22 @@ export declare type GraphStoreV2ExternalUserCreatedExternalBranchInverseArgs = {
|
|
|
69227
69622
|
id: Scalars['ID']['input'];
|
|
69228
69623
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalBranchSortInput>;
|
|
69229
69624
|
};
|
|
69625
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventArgs = {
|
|
69626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69627
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69628
|
+
filter?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput>;
|
|
69629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69630
|
+
id: Scalars['ID']['input'];
|
|
69631
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput>;
|
|
69632
|
+
};
|
|
69633
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventInverseArgs = {
|
|
69634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69635
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69636
|
+
filter?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput>;
|
|
69637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69638
|
+
id: Scalars['ID']['input'];
|
|
69639
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput>;
|
|
69640
|
+
};
|
|
69230
69641
|
export declare type GraphStoreV2ExternalUserCreatedExternalCommitArgs = {
|
|
69231
69642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69232
69643
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69339,6 +69750,20 @@ export declare type GraphStoreV2ExternalUserCreatedExternalDesignInverseArgs = {
|
|
|
69339
69750
|
id: Scalars['ID']['input'];
|
|
69340
69751
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDesignSortInput>;
|
|
69341
69752
|
};
|
|
69753
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentArgs = {
|
|
69754
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69755
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69756
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69757
|
+
id: Scalars['ID']['input'];
|
|
69758
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDocumentSortInput>;
|
|
69759
|
+
};
|
|
69760
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentInverseArgs = {
|
|
69761
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69762
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69764
|
+
id: Scalars['ID']['input'];
|
|
69765
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalDocumentSortInput>;
|
|
69766
|
+
};
|
|
69342
69767
|
export declare type GraphStoreV2ExternalUserCreatedExternalMessageArgs = {
|
|
69343
69768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69344
69769
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69423,47 +69848,61 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
|
69423
69848
|
id: Scalars['ID']['input'];
|
|
69424
69849
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
69425
69850
|
};
|
|
69426
|
-
export declare type
|
|
69851
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemArgs = {
|
|
69427
69852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69428
69853
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69429
69854
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69430
69855
|
id: Scalars['ID']['input'];
|
|
69431
|
-
sort?: InputMaybe<
|
|
69856
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput>;
|
|
69432
69857
|
};
|
|
69433
|
-
export declare type
|
|
69858
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemInverseArgs = {
|
|
69434
69859
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69435
69860
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69436
69861
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69437
69862
|
id: Scalars['ID']['input'];
|
|
69438
|
-
sort?: InputMaybe<
|
|
69863
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput>;
|
|
69439
69864
|
};
|
|
69440
|
-
export declare type
|
|
69865
|
+
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignArgs = {
|
|
69441
69866
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69442
69867
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69443
69868
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69444
69869
|
id: Scalars['ID']['input'];
|
|
69445
|
-
sort?: InputMaybe<
|
|
69870
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput>;
|
|
69446
69871
|
};
|
|
69447
|
-
export declare type
|
|
69872
|
+
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignInverseArgs = {
|
|
69448
69873
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69449
69874
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69450
69875
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69451
69876
|
id: Scalars['ID']['input'];
|
|
69452
|
-
sort?: InputMaybe<
|
|
69877
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput>;
|
|
69453
69878
|
};
|
|
69454
|
-
export declare type
|
|
69879
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationArgs = {
|
|
69455
69880
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69456
69881
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69457
69882
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69458
69883
|
id: Scalars['ID']['input'];
|
|
69459
|
-
sort?: InputMaybe<
|
|
69884
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMemberOfExternalConversationSortInput>;
|
|
69460
69885
|
};
|
|
69461
|
-
export declare type
|
|
69886
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationInverseArgs = {
|
|
69462
69887
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69463
69888
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69464
69889
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69465
69890
|
id: Scalars['ID']['input'];
|
|
69466
|
-
sort?: InputMaybe<
|
|
69891
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMemberOfExternalConversationSortInput>;
|
|
69892
|
+
};
|
|
69893
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationArgs = {
|
|
69894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69897
|
+
id: Scalars['ID']['input'];
|
|
69898
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalConversationSortInput>;
|
|
69899
|
+
};
|
|
69900
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationInverseArgs = {
|
|
69901
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69902
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69903
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69904
|
+
id: Scalars['ID']['input'];
|
|
69905
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalConversationSortInput>;
|
|
69467
69906
|
};
|
|
69468
69907
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageArgs = {
|
|
69469
69908
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69479,6 +69918,20 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalMessageInverseArg
|
|
|
69479
69918
|
id: Scalars['ID']['input'];
|
|
69480
69919
|
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalMessageSortInput>;
|
|
69481
69920
|
};
|
|
69921
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventArgs = {
|
|
69922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69923
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69924
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69925
|
+
id: Scalars['ID']['input'];
|
|
69926
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput>;
|
|
69927
|
+
};
|
|
69928
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventInverseArgs = {
|
|
69929
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69930
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69931
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69932
|
+
id: Scalars['ID']['input'];
|
|
69933
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput>;
|
|
69934
|
+
};
|
|
69482
69935
|
export declare type GraphStoreV2ExternalUserOwnsExternalCustomerContactArgs = {
|
|
69483
69936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69484
69937
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69563,6 +70016,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalDealInverseArgs = {
|
|
|
69563
70016
|
id: Scalars['ID']['input'];
|
|
69564
70017
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalDealSortInput>;
|
|
69565
70018
|
};
|
|
70019
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositoryArgs = {
|
|
70020
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70021
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70022
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70023
|
+
id: Scalars['ID']['input'];
|
|
70024
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
70025
|
+
};
|
|
70026
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositoryInverseArgs = {
|
|
70027
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70028
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70029
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70030
|
+
id: Scalars['ID']['input'];
|
|
70031
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalRepositorySortInput>;
|
|
70032
|
+
};
|
|
69566
70033
|
export declare type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceArgs = {
|
|
69567
70034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69568
70035
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69619,6 +70086,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
|
69619
70086
|
id: Scalars['ID']['input'];
|
|
69620
70087
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
69621
70088
|
};
|
|
70089
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestArgs = {
|
|
70090
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70091
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70092
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70093
|
+
id: Scalars['ID']['input'];
|
|
70094
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
70095
|
+
};
|
|
70096
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestInverseArgs = {
|
|
70097
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70098
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70100
|
+
id: Scalars['ID']['input'];
|
|
70101
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput>;
|
|
70102
|
+
};
|
|
69622
70103
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactArgs = {
|
|
69623
70104
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69624
70105
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69703,6 +70184,20 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalDealInverseArgs = {
|
|
|
69703
70184
|
id: Scalars['ID']['input'];
|
|
69704
70185
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDealSortInput>;
|
|
69705
70186
|
};
|
|
70187
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentArgs = {
|
|
70188
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70189
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70190
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70191
|
+
id: Scalars['ID']['input'];
|
|
70192
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput>;
|
|
70193
|
+
};
|
|
70194
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentInverseArgs = {
|
|
70195
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70196
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70197
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70198
|
+
id: Scalars['ID']['input'];
|
|
70199
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput>;
|
|
70200
|
+
};
|
|
69706
70201
|
export declare type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceArgs = {
|
|
69707
70202
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69708
70203
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70517,6 +71012,20 @@ export declare type GraphStoreV2JiraWorkItemChangesCompassComponentInverseArgs =
|
|
|
70517
71012
|
id: Scalars['ID']['input'];
|
|
70518
71013
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemChangesCompassComponentSortInput>;
|
|
70519
71014
|
};
|
|
71015
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentArgs = {
|
|
71016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71017
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71018
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71019
|
+
id: Scalars['ID']['input'];
|
|
71020
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput>;
|
|
71021
|
+
};
|
|
71022
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentInverseArgs = {
|
|
71023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71024
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71026
|
+
id: Scalars['ID']['input'];
|
|
71027
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput>;
|
|
71028
|
+
};
|
|
70520
71029
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalArgs = {
|
|
70521
71030
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70522
71031
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70617,6 +71126,20 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
70617
71126
|
id: Scalars['ID']['input'];
|
|
70618
71127
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
70619
71128
|
};
|
|
71129
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectArgs = {
|
|
71130
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71131
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71132
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71133
|
+
id: Scalars['ID']['input'];
|
|
71134
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetObjectSortInput>;
|
|
71135
|
+
};
|
|
71136
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectInverseArgs = {
|
|
71137
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71138
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71139
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71140
|
+
id: Scalars['ID']['input'];
|
|
71141
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetObjectSortInput>;
|
|
71142
|
+
};
|
|
70620
71143
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
70621
71144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70622
71145
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70912,6 +71435,20 @@ export declare type GraphStoreV2JsmSpaceLinksKnowledgeBaseEntityInverseArgs = {
|
|
|
70912
71435
|
id: Scalars['ID']['input'];
|
|
70913
71436
|
sort?: InputMaybe<GraphStoreV2JsmSpaceLinksKnowledgeBaseEntitySortInput>;
|
|
70914
71437
|
};
|
|
71438
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageArgs = {
|
|
71439
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71440
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71442
|
+
id: Scalars['ID']['input'];
|
|
71443
|
+
sort?: InputMaybe<GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput>;
|
|
71444
|
+
};
|
|
71445
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageInverseArgs = {
|
|
71446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71447
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71448
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71449
|
+
id: Scalars['ID']['input'];
|
|
71450
|
+
sort?: InputMaybe<GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput>;
|
|
71451
|
+
};
|
|
70915
71452
|
export declare type GraphStoreV2LoomMeetingHasJiraSpaceArgs = {
|
|
70916
71453
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70917
71454
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71231,41 +71768,15 @@ export declare type GraphStoreV2AtlassianUserCreatedConfluenceSpaceSortInput = {
|
|
|
71231
71768
|
export declare type GraphStoreV2AtlassianUserCreatedConfluenceWhiteboardSortInput = {
|
|
71232
71769
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71233
71770
|
};
|
|
71234
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput = {
|
|
71235
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
71236
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
71237
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
71238
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
71239
|
-
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
71240
|
-
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
71241
|
-
};
|
|
71242
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventFilterInput = {
|
|
71243
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
71244
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreV2AtlassianUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
71245
|
-
};
|
|
71246
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalCalendarEventSortInput = {
|
|
71247
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71248
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71249
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71250
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71251
|
-
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
71252
|
-
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
71253
|
-
};
|
|
71254
71771
|
export declare type GraphStoreV2AtlassianUserCreatedExternalCommentSortInput = {
|
|
71255
71772
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71256
71773
|
};
|
|
71257
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalDocumentSortInput = {
|
|
71258
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71259
|
-
};
|
|
71260
71774
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput = {
|
|
71261
71775
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71262
71776
|
};
|
|
71263
71777
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
71264
71778
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71265
71779
|
};
|
|
71266
|
-
export declare type GraphStoreV2AtlassianUserCreatedExternalWorkItemSortInput = {
|
|
71267
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71268
|
-
};
|
|
71269
71780
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseSortInput = {
|
|
71270
71781
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71271
71782
|
};
|
|
@@ -71331,6 +71842,18 @@ export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
|
|
|
71331
71842
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71332
71843
|
to_dismissedCategories?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
71333
71844
|
};
|
|
71845
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput = {
|
|
71846
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71847
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71848
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71849
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71850
|
+
};
|
|
71851
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput = {
|
|
71852
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71853
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71854
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71855
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71856
|
+
};
|
|
71334
71857
|
export declare type GraphStoreV2AtlassianUserFavoritedConfluenceBlogpostSortInput = {
|
|
71335
71858
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71336
71859
|
};
|
|
@@ -71367,6 +71890,9 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
|
71367
71890
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71368
71891
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71369
71892
|
};
|
|
71893
|
+
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput = {
|
|
71894
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71895
|
+
};
|
|
71370
71896
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
71371
71897
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71372
71898
|
};
|
|
@@ -71403,19 +71929,16 @@ export declare type GraphStoreV2AtlassianUserLinksExternalUserSortInput = {
|
|
|
71403
71929
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
71404
71930
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
71405
71931
|
};
|
|
71406
|
-
export declare type GraphStoreV2AtlassianUserMemberOfExternalConversationSortInput = {
|
|
71407
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71408
|
-
};
|
|
71409
71932
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluenceCommentSortInput = {
|
|
71410
71933
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71411
71934
|
};
|
|
71412
71935
|
export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput = {
|
|
71413
71936
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71414
71937
|
};
|
|
71415
|
-
export declare type
|
|
71938
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput = {
|
|
71416
71939
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71417
71940
|
};
|
|
71418
|
-
export declare type
|
|
71941
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput = {
|
|
71419
71942
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71420
71943
|
};
|
|
71421
71944
|
export declare type GraphStoreV2AtlassianUserMentionedInLoomVideoCommentSortInput = {
|
|
@@ -71449,15 +71972,9 @@ export declare type GraphStoreV2AtlassianUserOwnsConfluencePageSortInput = {
|
|
|
71449
71972
|
export declare type GraphStoreV2AtlassianUserOwnsExternalBranchSortInput = {
|
|
71450
71973
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71451
71974
|
};
|
|
71452
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalCalendarEventSortInput = {
|
|
71453
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71454
|
-
};
|
|
71455
71975
|
export declare type GraphStoreV2AtlassianUserOwnsExternalRemoteLinkSortInput = {
|
|
71456
71976
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71457
71977
|
};
|
|
71458
|
-
export declare type GraphStoreV2AtlassianUserOwnsExternalRepositorySortInput = {
|
|
71459
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71460
|
-
};
|
|
71461
71978
|
export declare type GraphStoreV2AtlassianUserOwnsFocusAskSortInput = {
|
|
71462
71979
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71463
71980
|
};
|
|
@@ -71476,9 +71993,6 @@ export declare type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
71476
71993
|
export declare type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
71477
71994
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71478
71995
|
};
|
|
71479
|
-
export declare type GraphStoreV2AtlassianUserReviewedExternalPullRequestSortInput = {
|
|
71480
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71481
|
-
};
|
|
71482
71996
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageSortInput = {
|
|
71483
71997
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71484
71998
|
};
|
|
@@ -71509,9 +72023,6 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceSpaceSortInput = {
|
|
|
71509
72023
|
export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput = {
|
|
71510
72024
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71511
72025
|
};
|
|
71512
|
-
export declare type GraphStoreV2AtlassianUserUpdatedExternalDocumentSortInput = {
|
|
71513
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71514
|
-
};
|
|
71515
72026
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemSortInput = {
|
|
71516
72027
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71517
72028
|
};
|
|
@@ -71708,73 +72219,73 @@ export declare type GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommenda
|
|
|
71708
72219
|
export declare type GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput = {
|
|
71709
72220
|
dismissedCategories?: InputMaybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
71710
72221
|
};
|
|
71711
|
-
export declare type
|
|
72222
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalAliasInput = {
|
|
71712
72223
|
from: Scalars['ID']['input'];
|
|
71713
72224
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71714
72225
|
to: Scalars['ID']['input'];
|
|
71715
72226
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71716
72227
|
};
|
|
71717
|
-
export declare type
|
|
71718
|
-
aliases: Array<
|
|
72228
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalInput = {
|
|
72229
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalAliasInput>;
|
|
71719
72230
|
};
|
|
71720
|
-
export declare type
|
|
71721
|
-
__typename?: '
|
|
72231
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload = {
|
|
72232
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload';
|
|
71722
72233
|
errors?: Maybe<Array<MutationError>>;
|
|
71723
72234
|
success: Scalars['Boolean']['output'];
|
|
71724
72235
|
};
|
|
71725
|
-
export declare type
|
|
72236
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectAliasInput = {
|
|
71726
72237
|
from: Scalars['ID']['input'];
|
|
71727
72238
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71728
72239
|
to: Scalars['ID']['input'];
|
|
71729
72240
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71730
72241
|
};
|
|
71731
|
-
export declare type
|
|
71732
|
-
aliases: Array<
|
|
72242
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectInput = {
|
|
72243
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectAliasInput>;
|
|
71733
72244
|
};
|
|
71734
|
-
export declare type
|
|
71735
|
-
__typename?: '
|
|
72245
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload = {
|
|
72246
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload';
|
|
71736
72247
|
errors?: Maybe<Array<MutationError>>;
|
|
71737
72248
|
success: Scalars['Boolean']['output'];
|
|
71738
72249
|
};
|
|
71739
|
-
export declare type
|
|
72250
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderAliasInput = {
|
|
71740
72251
|
from: Scalars['ID']['input'];
|
|
71741
72252
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71742
72253
|
to: Scalars['ID']['input'];
|
|
71743
72254
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71744
72255
|
};
|
|
71745
|
-
export declare type
|
|
71746
|
-
aliases: Array<
|
|
72256
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderInput = {
|
|
72257
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderAliasInput>;
|
|
71747
72258
|
};
|
|
71748
|
-
export declare type
|
|
71749
|
-
__typename?: '
|
|
72259
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload = {
|
|
72260
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload';
|
|
71750
72261
|
errors?: Maybe<Array<MutationError>>;
|
|
71751
72262
|
success: Scalars['Boolean']['output'];
|
|
71752
72263
|
};
|
|
71753
|
-
export declare type
|
|
72264
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceAliasInput = {
|
|
71754
72265
|
from: Scalars['ID']['input'];
|
|
71755
72266
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71756
72267
|
to: Scalars['ID']['input'];
|
|
71757
72268
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71758
72269
|
};
|
|
71759
|
-
export declare type
|
|
71760
|
-
aliases: Array<
|
|
72270
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceInput = {
|
|
72271
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceAliasInput>;
|
|
71761
72272
|
};
|
|
71762
|
-
export declare type
|
|
71763
|
-
__typename?: '
|
|
72273
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload = {
|
|
72274
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload';
|
|
71764
72275
|
errors?: Maybe<Array<MutationError>>;
|
|
71765
72276
|
success: Scalars['Boolean']['output'];
|
|
71766
72277
|
};
|
|
71767
|
-
export declare type
|
|
72278
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceAliasInput = {
|
|
71768
72279
|
from: Scalars['ID']['input'];
|
|
71769
72280
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71770
72281
|
to: Scalars['ID']['input'];
|
|
71771
72282
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71772
72283
|
};
|
|
71773
|
-
export declare type
|
|
71774
|
-
aliases: Array<
|
|
72284
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceInput = {
|
|
72285
|
+
aliases: Array<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceAliasInput>;
|
|
71775
72286
|
};
|
|
71776
|
-
export declare type
|
|
71777
|
-
__typename?: '
|
|
72287
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload = {
|
|
72288
|
+
__typename?: 'GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload';
|
|
71778
72289
|
errors?: Maybe<Array<MutationError>>;
|
|
71779
72290
|
success: Scalars['Boolean']['output'];
|
|
71780
72291
|
};
|
|
@@ -72231,6 +72742,30 @@ export declare type GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommenda
|
|
|
72231
72742
|
errors?: Maybe<Array<MutationError>>;
|
|
72232
72743
|
success: Scalars['Boolean']['output'];
|
|
72233
72744
|
};
|
|
72745
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalAliasInput = {
|
|
72746
|
+
from: Scalars['ID']['input'];
|
|
72747
|
+
to: Scalars['ID']['input'];
|
|
72748
|
+
};
|
|
72749
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalInput = {
|
|
72750
|
+
aliases: Array<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalAliasInput>;
|
|
72751
|
+
};
|
|
72752
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload = {
|
|
72753
|
+
__typename?: 'GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload';
|
|
72754
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72755
|
+
success: Scalars['Boolean']['output'];
|
|
72756
|
+
};
|
|
72757
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectAliasInput = {
|
|
72758
|
+
from: Scalars['ID']['input'];
|
|
72759
|
+
to: Scalars['ID']['input'];
|
|
72760
|
+
};
|
|
72761
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectInput = {
|
|
72762
|
+
aliases: Array<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectAliasInput>;
|
|
72763
|
+
};
|
|
72764
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload = {
|
|
72765
|
+
__typename?: 'GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload';
|
|
72766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72767
|
+
success: Scalars['Boolean']['output'];
|
|
72768
|
+
};
|
|
72234
72769
|
export declare type GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderAliasInput = {
|
|
72235
72770
|
from: Scalars['ID']['input'];
|
|
72236
72771
|
to: Scalars['ID']['input'];
|
|
@@ -72267,30 +72802,6 @@ export declare type GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpacePaylo
|
|
|
72267
72802
|
errors?: Maybe<Array<MutationError>>;
|
|
72268
72803
|
success: Scalars['Boolean']['output'];
|
|
72269
72804
|
};
|
|
72270
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalAliasInput = {
|
|
72271
|
-
from: Scalars['ID']['input'];
|
|
72272
|
-
to: Scalars['ID']['input'];
|
|
72273
|
-
};
|
|
72274
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalInput = {
|
|
72275
|
-
aliases: Array<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalAliasInput>;
|
|
72276
|
-
};
|
|
72277
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload = {
|
|
72278
|
-
__typename?: 'GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload';
|
|
72279
|
-
errors?: Maybe<Array<MutationError>>;
|
|
72280
|
-
success: Scalars['Boolean']['output'];
|
|
72281
|
-
};
|
|
72282
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectAliasInput = {
|
|
72283
|
-
from: Scalars['ID']['input'];
|
|
72284
|
-
to: Scalars['ID']['input'];
|
|
72285
|
-
};
|
|
72286
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectInput = {
|
|
72287
|
-
aliases: Array<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectAliasInput>;
|
|
72288
|
-
};
|
|
72289
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload = {
|
|
72290
|
-
__typename?: 'GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload';
|
|
72291
|
-
errors?: Maybe<Array<MutationError>>;
|
|
72292
|
-
success: Scalars['Boolean']['output'];
|
|
72293
|
-
};
|
|
72294
72805
|
export declare type GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionAliasInput = {
|
|
72295
72806
|
from: Scalars['ID']['input'];
|
|
72296
72807
|
to: Scalars['ID']['input'];
|
|
@@ -72564,9 +73075,6 @@ export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput
|
|
|
72564
73075
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput = {
|
|
72565
73076
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72566
73077
|
};
|
|
72567
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput = {
|
|
72568
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72569
|
-
};
|
|
72570
73078
|
export declare type GraphStoreV2ExternalMeetingRecurrenceHasJiraSpaceSortInput = {
|
|
72571
73079
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72572
73080
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -72702,6 +73210,26 @@ export declare type GraphStoreV2ExternalUserCollaboratedOnExternalDocumentSortIn
|
|
|
72702
73210
|
export declare type GraphStoreV2ExternalUserCreatedExternalBranchSortInput = {
|
|
72703
73211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72704
73212
|
};
|
|
73213
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput = {
|
|
73214
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
73215
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
73216
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
73217
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
73218
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
73219
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
73220
|
+
};
|
|
73221
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventFilterInput = {
|
|
73222
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
73223
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreV2ExternalUserCreatedExternalCalendarEventConditionalFilterInput>>>;
|
|
73224
|
+
};
|
|
73225
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalCalendarEventSortInput = {
|
|
73226
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
73227
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
73228
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73229
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
73230
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
73231
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
73232
|
+
};
|
|
72705
73233
|
export declare type GraphStoreV2ExternalUserCreatedExternalCommitSortInput = {
|
|
72706
73234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72707
73235
|
};
|
|
@@ -72726,6 +73254,9 @@ export declare type GraphStoreV2ExternalUserCreatedExternalDealSortInput = {
|
|
|
72726
73254
|
export declare type GraphStoreV2ExternalUserCreatedExternalDesignSortInput = {
|
|
72727
73255
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72728
73256
|
};
|
|
73257
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalDocumentSortInput = {
|
|
73258
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73259
|
+
};
|
|
72729
73260
|
export declare type GraphStoreV2ExternalUserCreatedExternalMessageSortInput = {
|
|
72730
73261
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72731
73262
|
};
|
|
@@ -72744,24 +73275,24 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTeamSortInput = {
|
|
|
72744
73275
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestSortInput = {
|
|
72745
73276
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72746
73277
|
};
|
|
72747
|
-
export declare type
|
|
72748
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72749
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
73278
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput = {
|
|
72750
73279
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72751
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72752
73280
|
};
|
|
72753
|
-
export declare type
|
|
72754
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72755
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
73281
|
+
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput = {
|
|
72756
73282
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72757
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72758
73283
|
};
|
|
72759
|
-
export declare type
|
|
73284
|
+
export declare type GraphStoreV2ExternalUserMemberOfExternalConversationSortInput = {
|
|
73285
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73286
|
+
};
|
|
73287
|
+
export declare type GraphStoreV2ExternalUserMentionedInExternalConversationSortInput = {
|
|
72760
73288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72761
73289
|
};
|
|
72762
73290
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageSortInput = {
|
|
72763
73291
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72764
73292
|
};
|
|
73293
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput = {
|
|
73294
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73295
|
+
};
|
|
72765
73296
|
export declare type GraphStoreV2ExternalUserOwnsExternalCustomerContactSortInput = {
|
|
72766
73297
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72767
73298
|
};
|
|
@@ -72780,6 +73311,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalDataTableSortInput = {
|
|
|
72780
73311
|
export declare type GraphStoreV2ExternalUserOwnsExternalDealSortInput = {
|
|
72781
73312
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72782
73313
|
};
|
|
73314
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalRepositorySortInput = {
|
|
73315
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73316
|
+
};
|
|
72783
73317
|
export declare type GraphStoreV2ExternalUserOwnsExternalSoftwareServiceSortInput = {
|
|
72784
73318
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72785
73319
|
};
|
|
@@ -72792,6 +73326,9 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTeamSortInput = {
|
|
|
72792
73326
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestSortInput = {
|
|
72793
73327
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72794
73328
|
};
|
|
73329
|
+
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
73330
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73331
|
+
};
|
|
72795
73332
|
export declare type GraphStoreV2ExternalUserUpdatedExternalCustomerContactSortInput = {
|
|
72796
73333
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72797
73334
|
};
|
|
@@ -72810,6 +73347,9 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalDataTableSortInput =
|
|
|
72810
73347
|
export declare type GraphStoreV2ExternalUserUpdatedExternalDealSortInput = {
|
|
72811
73348
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72812
73349
|
};
|
|
73350
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalDocumentSortInput = {
|
|
73351
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73352
|
+
};
|
|
72813
73353
|
export declare type GraphStoreV2ExternalUserUpdatedExternalSoftwareServiceSortInput = {
|
|
72814
73354
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72815
73355
|
};
|
|
@@ -73749,6 +74289,9 @@ export declare type GraphStoreV2JiraWorkItemChangesCompassComponentSortInput = {
|
|
|
73749
74289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73750
74290
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
73751
74291
|
};
|
|
74292
|
+
export declare type GraphStoreV2JiraWorkItemCommentHasChildJiraWorkItemCommentSortInput = {
|
|
74293
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74294
|
+
};
|
|
73752
74295
|
export declare type GraphStoreV2JiraWorkItemContributesToAtlassianGoalSortInput = {
|
|
73753
74296
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73754
74297
|
};
|
|
@@ -73805,6 +74348,9 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
73805
74348
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
73806
74349
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73807
74350
|
};
|
|
74351
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectSortInput = {
|
|
74352
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74353
|
+
};
|
|
73808
74354
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardConditionalFilterInput = {
|
|
73809
74355
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
73810
74356
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -74061,6 +74607,9 @@ export declare type GraphStoreV2JsmSpaceLinksExternalServiceSortInput = {
|
|
|
74061
74607
|
export declare type GraphStoreV2JsmSpaceLinksKnowledgeBaseEntitySortInput = {
|
|
74062
74608
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74063
74609
|
};
|
|
74610
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput = {
|
|
74611
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74612
|
+
};
|
|
74064
74613
|
export declare type GraphStoreV2LoomMeetingHasJiraSpaceSortInput = {
|
|
74065
74614
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
74066
74615
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -74097,11 +74646,11 @@ export declare type GraphStoreV2Mutation = {
|
|
|
74097
74646
|
createAtlassianTeamHasChildAtlassianTeam?: Maybe<GraphStoreV2CreateAtlassianTeamHasChildAtlassianTeamPayload>;
|
|
74098
74647
|
createAtlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2CreateAtlassianTeamLinksSpaceEntityPayload>;
|
|
74099
74648
|
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
74649
|
+
createAtlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload>;
|
|
74650
|
+
createAtlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload>;
|
|
74100
74651
|
createAtlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload>;
|
|
74101
74652
|
createAtlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload>;
|
|
74102
74653
|
createExternalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload>;
|
|
74103
|
-
createExternalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2CreateExternalUserFavoritedAtlassianGoalPayload>;
|
|
74104
|
-
createExternalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2CreateExternalUserFavoritedAtlassianProjectPayload>;
|
|
74105
74654
|
createJiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2CreateJiraSpaceHasJiraReleaseVersionPayload>;
|
|
74106
74655
|
createJiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2CreateJiraSpaceLinksDocumentEntityPayload>;
|
|
74107
74656
|
createJiraSpaceLinksExternalSecurityContainer?: Maybe<GraphStoreV2CreateJiraSpaceLinksExternalSecurityContainerPayload>;
|
|
@@ -74125,11 +74674,11 @@ export declare type GraphStoreV2Mutation = {
|
|
|
74125
74674
|
deleteAtlassianTeamHasChildAtlassianTeam?: Maybe<GraphStoreV2DeleteAtlassianTeamHasChildAtlassianTeamPayload>;
|
|
74126
74675
|
deleteAtlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2DeleteAtlassianTeamLinksSpaceEntityPayload>;
|
|
74127
74676
|
deleteAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
74677
|
+
deleteAtlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload>;
|
|
74678
|
+
deleteAtlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload>;
|
|
74128
74679
|
deleteAtlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderPayload>;
|
|
74129
74680
|
deleteAtlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2DeleteAtlassianUserHasRelevantJiraSpacePayload>;
|
|
74130
74681
|
deleteExternalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpacePayload>;
|
|
74131
|
-
deleteExternalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload>;
|
|
74132
|
-
deleteExternalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload>;
|
|
74133
74682
|
deleteJiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionPayload>;
|
|
74134
74683
|
deleteJiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2DeleteJiraSpaceLinksDocumentEntityPayload>;
|
|
74135
74684
|
deleteJiraSpaceLinksExternalSecurityContainer?: Maybe<GraphStoreV2DeleteJiraSpaceLinksExternalSecurityContainerPayload>;
|
|
@@ -74162,6 +74711,12 @@ export declare type GraphStoreV2MutationCreateAtlassianTeamLinksSpaceEntityArgs
|
|
|
74162
74711
|
export declare type GraphStoreV2MutationCreateAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
74163
74712
|
input?: InputMaybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
74164
74713
|
};
|
|
74714
|
+
export declare type GraphStoreV2MutationCreateAtlassianUserFavoritedAtlassianGoalArgs = {
|
|
74715
|
+
input?: InputMaybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalInput>;
|
|
74716
|
+
};
|
|
74717
|
+
export declare type GraphStoreV2MutationCreateAtlassianUserFavoritedAtlassianProjectArgs = {
|
|
74718
|
+
input?: InputMaybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectInput>;
|
|
74719
|
+
};
|
|
74165
74720
|
export declare type GraphStoreV2MutationCreateAtlassianUserHasConfluenceMeetingNotesFolderArgs = {
|
|
74166
74721
|
input?: InputMaybe<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderInput>;
|
|
74167
74722
|
};
|
|
@@ -74171,12 +74726,6 @@ export declare type GraphStoreV2MutationCreateAtlassianUserHasRelevantJiraSpaceA
|
|
|
74171
74726
|
export declare type GraphStoreV2MutationCreateExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
74172
74727
|
input?: InputMaybe<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceInput>;
|
|
74173
74728
|
};
|
|
74174
|
-
export declare type GraphStoreV2MutationCreateExternalUserFavoritedAtlassianGoalArgs = {
|
|
74175
|
-
input?: InputMaybe<GraphStoreV2CreateExternalUserFavoritedAtlassianGoalInput>;
|
|
74176
|
-
};
|
|
74177
|
-
export declare type GraphStoreV2MutationCreateExternalUserFavoritedAtlassianProjectArgs = {
|
|
74178
|
-
input?: InputMaybe<GraphStoreV2CreateExternalUserFavoritedAtlassianProjectInput>;
|
|
74179
|
-
};
|
|
74180
74729
|
export declare type GraphStoreV2MutationCreateJiraSpaceHasJiraReleaseVersionArgs = {
|
|
74181
74730
|
input?: InputMaybe<GraphStoreV2CreateJiraSpaceHasJiraReleaseVersionInput>;
|
|
74182
74731
|
};
|
|
@@ -74246,6 +74795,12 @@ export declare type GraphStoreV2MutationDeleteAtlassianTeamLinksSpaceEntityArgs
|
|
|
74246
74795
|
export declare type GraphStoreV2MutationDeleteAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
74247
74796
|
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
74248
74797
|
};
|
|
74798
|
+
export declare type GraphStoreV2MutationDeleteAtlassianUserFavoritedAtlassianGoalArgs = {
|
|
74799
|
+
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalInput>;
|
|
74800
|
+
};
|
|
74801
|
+
export declare type GraphStoreV2MutationDeleteAtlassianUserFavoritedAtlassianProjectArgs = {
|
|
74802
|
+
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectInput>;
|
|
74803
|
+
};
|
|
74249
74804
|
export declare type GraphStoreV2MutationDeleteAtlassianUserHasConfluenceMeetingNotesFolderArgs = {
|
|
74250
74805
|
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderInput>;
|
|
74251
74806
|
};
|
|
@@ -74255,12 +74810,6 @@ export declare type GraphStoreV2MutationDeleteAtlassianUserHasRelevantJiraSpaceA
|
|
|
74255
74810
|
export declare type GraphStoreV2MutationDeleteExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
74256
74811
|
input?: InputMaybe<GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpaceInput>;
|
|
74257
74812
|
};
|
|
74258
|
-
export declare type GraphStoreV2MutationDeleteExternalUserFavoritedAtlassianGoalArgs = {
|
|
74259
|
-
input?: InputMaybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalInput>;
|
|
74260
|
-
};
|
|
74261
|
-
export declare type GraphStoreV2MutationDeleteExternalUserFavoritedAtlassianProjectArgs = {
|
|
74262
|
-
input?: InputMaybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectInput>;
|
|
74263
|
-
};
|
|
74264
74813
|
export declare type GraphStoreV2MutationDeleteJiraSpaceHasJiraReleaseVersionArgs = {
|
|
74265
74814
|
input?: InputMaybe<GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionInput>;
|
|
74266
74815
|
};
|
|
@@ -75439,38 +75988,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboa
|
|
|
75439
75988
|
};
|
|
75440
75989
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75441
75990
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
75442
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
75443
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventConnection';
|
|
75444
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge>>>;
|
|
75445
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
75446
|
-
pageInfo: PageInfo;
|
|
75447
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75448
|
-
};
|
|
75449
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge = {
|
|
75450
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventEdge';
|
|
75451
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75452
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75453
|
-
id: Scalars['ID']['output'];
|
|
75454
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75455
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventUnion>;
|
|
75456
|
-
};
|
|
75457
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
75458
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseConnection';
|
|
75459
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge>>>;
|
|
75460
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
75461
|
-
pageInfo: PageInfo;
|
|
75462
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75463
|
-
};
|
|
75464
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge = {
|
|
75465
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseEdge';
|
|
75466
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75467
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75468
|
-
id: Scalars['ID']['output'];
|
|
75469
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75470
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseUnion>;
|
|
75471
|
-
};
|
|
75472
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75473
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
75474
75991
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection = HasPageInfo & {
|
|
75475
75992
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentConnection';
|
|
75476
75993
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentEdge>>>;
|
|
@@ -75499,34 +76016,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInv
|
|
|
75499
76016
|
};
|
|
75500
76017
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75501
76018
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalCommentUnion = ExternalComment;
|
|
75502
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection = HasPageInfo & {
|
|
75503
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentConnection';
|
|
75504
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge>>>;
|
|
75505
|
-
pageInfo: PageInfo;
|
|
75506
|
-
};
|
|
75507
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge = {
|
|
75508
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentEdge';
|
|
75509
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75510
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75511
|
-
id: Scalars['ID']['output'];
|
|
75512
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75513
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentUnion>;
|
|
75514
|
-
};
|
|
75515
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
75516
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseConnection';
|
|
75517
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge>>>;
|
|
75518
|
-
pageInfo: PageInfo;
|
|
75519
|
-
};
|
|
75520
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge = {
|
|
75521
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseEdge';
|
|
75522
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75523
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75524
|
-
id: Scalars['ID']['output'];
|
|
75525
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75526
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseUnion>;
|
|
75527
|
-
};
|
|
75528
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75529
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
75530
76019
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection = HasPageInfo & {
|
|
75531
76020
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkConnection';
|
|
75532
76021
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkEdge>>>;
|
|
@@ -75583,34 +76072,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
75583
76072
|
};
|
|
75584
76073
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75585
76074
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
75586
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
75587
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemConnection';
|
|
75588
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge>>>;
|
|
75589
|
-
pageInfo: PageInfo;
|
|
75590
|
-
};
|
|
75591
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge = {
|
|
75592
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemEdge';
|
|
75593
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75594
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75595
|
-
id: Scalars['ID']['output'];
|
|
75596
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75597
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemUnion>;
|
|
75598
|
-
};
|
|
75599
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection = HasPageInfo & {
|
|
75600
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseConnection';
|
|
75601
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge>>>;
|
|
75602
|
-
pageInfo: PageInfo;
|
|
75603
|
-
};
|
|
75604
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge = {
|
|
75605
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseEdge';
|
|
75606
|
-
createdAt: Scalars['DateTime']['output'];
|
|
75607
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
75608
|
-
id: Scalars['ID']['output'];
|
|
75609
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
75610
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseUnion>;
|
|
75611
|
-
};
|
|
75612
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
75613
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalWorkItemUnion = ExternalWorkItem;
|
|
75614
76075
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection = HasPageInfo & {
|
|
75615
76076
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection';
|
|
75616
76077
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseEdge>>>;
|
|
@@ -75811,6 +76272,70 @@ export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecomm
|
|
|
75811
76272
|
};
|
|
75812
76273
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75813
76274
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
76275
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection = HasPageInfo & HasTotal & {
|
|
76276
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection';
|
|
76277
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge>>>;
|
|
76278
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76279
|
+
pageInfo: PageInfo;
|
|
76280
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76281
|
+
};
|
|
76282
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge = {
|
|
76283
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge';
|
|
76284
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76285
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76286
|
+
id: Scalars['ID']['output'];
|
|
76287
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76288
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalUnion>;
|
|
76289
|
+
};
|
|
76290
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
76291
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection';
|
|
76292
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge>>>;
|
|
76293
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76294
|
+
pageInfo: PageInfo;
|
|
76295
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76296
|
+
};
|
|
76297
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge = {
|
|
76298
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge';
|
|
76299
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76300
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76301
|
+
id: Scalars['ID']['output'];
|
|
76302
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76303
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseUnion>;
|
|
76304
|
+
};
|
|
76305
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76306
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalUnion = TownsquareGoal;
|
|
76307
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection = HasPageInfo & HasTotal & {
|
|
76308
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection';
|
|
76309
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge>>>;
|
|
76310
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76311
|
+
pageInfo: PageInfo;
|
|
76312
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76313
|
+
};
|
|
76314
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge = {
|
|
76315
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge';
|
|
76316
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76317
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76318
|
+
id: Scalars['ID']['output'];
|
|
76319
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76320
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectUnion>;
|
|
76321
|
+
};
|
|
76322
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
76323
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection';
|
|
76324
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge>>>;
|
|
76325
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76326
|
+
pageInfo: PageInfo;
|
|
76327
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76328
|
+
};
|
|
76329
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge = {
|
|
76330
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge';
|
|
76331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76333
|
+
id: Scalars['ID']['output'];
|
|
76334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76335
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseUnion>;
|
|
76336
|
+
};
|
|
76337
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76338
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectUnion = TownsquareProject;
|
|
75814
76339
|
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
75815
76340
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection';
|
|
75816
76341
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -76099,6 +76624,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInver
|
|
|
76099
76624
|
};
|
|
76100
76625
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76101
76626
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceUnion = JiraProject;
|
|
76627
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection = HasPageInfo & {
|
|
76628
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection';
|
|
76629
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge>>>;
|
|
76630
|
+
pageInfo: PageInfo;
|
|
76631
|
+
};
|
|
76632
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge = {
|
|
76633
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge';
|
|
76634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76636
|
+
id: Scalars['ID']['output'];
|
|
76637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76638
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion>;
|
|
76639
|
+
};
|
|
76640
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection = HasPageInfo & {
|
|
76641
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection';
|
|
76642
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge>>>;
|
|
76643
|
+
pageInfo: PageInfo;
|
|
76644
|
+
};
|
|
76645
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge = {
|
|
76646
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge';
|
|
76647
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76649
|
+
id: Scalars['ID']['output'];
|
|
76650
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76651
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion>;
|
|
76652
|
+
};
|
|
76653
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76654
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76102
76655
|
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
76103
76656
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
76104
76657
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -76243,34 +76796,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseE
|
|
|
76243
76796
|
};
|
|
76244
76797
|
export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76245
76798
|
export declare type GraphStoreV2SimplifiedAtlassianUserLinksExternalUserUnion = ThirdPartyUser;
|
|
76246
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection = HasPageInfo & {
|
|
76247
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationConnection';
|
|
76248
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge>>>;
|
|
76249
|
-
pageInfo: PageInfo;
|
|
76250
|
-
};
|
|
76251
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge = {
|
|
76252
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationEdge';
|
|
76253
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76254
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76255
|
-
id: Scalars['ID']['output'];
|
|
76256
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76257
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationUnion>;
|
|
76258
|
-
};
|
|
76259
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection = HasPageInfo & {
|
|
76260
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseConnection';
|
|
76261
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge>>>;
|
|
76262
|
-
pageInfo: PageInfo;
|
|
76263
|
-
};
|
|
76264
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge = {
|
|
76265
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseEdge';
|
|
76266
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76267
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76268
|
-
id: Scalars['ID']['output'];
|
|
76269
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76270
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseUnion>;
|
|
76271
|
-
};
|
|
76272
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76273
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMemberOfExternalConversationUnion = ExternalConversation;
|
|
76274
76799
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection = HasPageInfo & {
|
|
76275
76800
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentConnection';
|
|
76276
76801
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentEdge>>>;
|
|
@@ -76327,34 +76852,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePage
|
|
|
76327
76852
|
};
|
|
76328
76853
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76329
76854
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageUnion = ConfluencePage;
|
|
76330
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationConnection = HasPageInfo & {
|
|
76331
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationConnection';
|
|
76332
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge>>>;
|
|
76333
|
-
pageInfo: PageInfo;
|
|
76334
|
-
};
|
|
76335
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge = {
|
|
76336
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationEdge';
|
|
76337
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76338
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76339
|
-
id: Scalars['ID']['output'];
|
|
76340
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76341
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationUnion>;
|
|
76342
|
-
};
|
|
76343
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection = HasPageInfo & {
|
|
76344
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseConnection';
|
|
76345
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge>>>;
|
|
76346
|
-
pageInfo: PageInfo;
|
|
76347
|
-
};
|
|
76348
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge = {
|
|
76349
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseEdge';
|
|
76350
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76351
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76352
|
-
id: Scalars['ID']['output'];
|
|
76353
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76354
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseUnion>;
|
|
76355
|
-
};
|
|
76356
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76357
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInExternalConversationUnion = ExternalConversation;
|
|
76358
76855
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection = HasPageInfo & {
|
|
76359
76856
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection';
|
|
76360
76857
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentEdge>>>;
|
|
@@ -76383,6 +76880,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCo
|
|
|
76383
76880
|
};
|
|
76384
76881
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76385
76882
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
76883
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection = HasPageInfo & {
|
|
76884
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection';
|
|
76885
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge>>>;
|
|
76886
|
+
pageInfo: PageInfo;
|
|
76887
|
+
};
|
|
76888
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge = {
|
|
76889
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge';
|
|
76890
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76891
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76892
|
+
id: Scalars['ID']['output'];
|
|
76893
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76894
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemUnion>;
|
|
76895
|
+
};
|
|
76896
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection = HasPageInfo & {
|
|
76897
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection';
|
|
76898
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge>>>;
|
|
76899
|
+
pageInfo: PageInfo;
|
|
76900
|
+
};
|
|
76901
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge = {
|
|
76902
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge';
|
|
76903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76905
|
+
id: Scalars['ID']['output'];
|
|
76906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76907
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseUnion>;
|
|
76908
|
+
};
|
|
76909
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76910
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemUnion = JiraIssue;
|
|
76386
76911
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection = HasPageInfo & {
|
|
76387
76912
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection';
|
|
76388
76913
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentEdge>>>;
|
|
@@ -76555,34 +77080,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverse
|
|
|
76555
77080
|
};
|
|
76556
77081
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76557
77082
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalBranchUnion = ExternalBranch;
|
|
76558
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
76559
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventConnection';
|
|
76560
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge>>>;
|
|
76561
|
-
pageInfo: PageInfo;
|
|
76562
|
-
};
|
|
76563
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge = {
|
|
76564
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventEdge';
|
|
76565
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76566
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76567
|
-
id: Scalars['ID']['output'];
|
|
76568
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76569
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventUnion>;
|
|
76570
|
-
};
|
|
76571
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
76572
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseConnection';
|
|
76573
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge>>>;
|
|
76574
|
-
pageInfo: PageInfo;
|
|
76575
|
-
};
|
|
76576
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge = {
|
|
76577
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseEdge';
|
|
76578
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76579
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76580
|
-
id: Scalars['ID']['output'];
|
|
76581
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76582
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseUnion>;
|
|
76583
|
-
};
|
|
76584
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76585
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
76586
77083
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection = HasPageInfo & {
|
|
76587
77084
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkConnection';
|
|
76588
77085
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkEdge>>>;
|
|
@@ -76611,34 +77108,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInv
|
|
|
76611
77108
|
};
|
|
76612
77109
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76613
77110
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRemoteLinkUnion = ExternalRemoteLink;
|
|
76614
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection = HasPageInfo & {
|
|
76615
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryConnection';
|
|
76616
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge>>>;
|
|
76617
|
-
pageInfo: PageInfo;
|
|
76618
|
-
};
|
|
76619
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge = {
|
|
76620
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryEdge';
|
|
76621
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76622
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76623
|
-
id: Scalars['ID']['output'];
|
|
76624
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76625
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryUnion>;
|
|
76626
|
-
};
|
|
76627
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection = HasPageInfo & {
|
|
76628
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseConnection';
|
|
76629
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge>>>;
|
|
76630
|
-
pageInfo: PageInfo;
|
|
76631
|
-
};
|
|
76632
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge = {
|
|
76633
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseEdge';
|
|
76634
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76635
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76636
|
-
id: Scalars['ID']['output'];
|
|
76637
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76638
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseUnion>;
|
|
76639
|
-
};
|
|
76640
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76641
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
76642
77111
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection = HasPageInfo & {
|
|
76643
77112
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskConnection';
|
|
76644
77113
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskEdge>>>;
|
|
@@ -76807,34 +77276,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInvers
|
|
|
76807
77276
|
};
|
|
76808
77277
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76809
77278
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
|
|
76810
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
76811
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestConnection';
|
|
76812
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge>>>;
|
|
76813
|
-
pageInfo: PageInfo;
|
|
76814
|
-
};
|
|
76815
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge = {
|
|
76816
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestEdge';
|
|
76817
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76818
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76819
|
-
id: Scalars['ID']['output'];
|
|
76820
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76821
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestUnion>;
|
|
76822
|
-
};
|
|
76823
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection = HasPageInfo & {
|
|
76824
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseConnection';
|
|
76825
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge>>>;
|
|
76826
|
-
pageInfo: PageInfo;
|
|
76827
|
-
};
|
|
76828
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge = {
|
|
76829
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseEdge';
|
|
76830
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76831
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76832
|
-
id: Scalars['ID']['output'];
|
|
76833
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76834
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseUnion>;
|
|
76835
|
-
};
|
|
76836
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
76837
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
76838
77279
|
export declare type GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
76839
77280
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection';
|
|
76840
77281
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -77115,34 +77556,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboa
|
|
|
77115
77556
|
};
|
|
77116
77557
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
77117
77558
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
77118
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection = HasPageInfo & {
|
|
77119
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentConnection';
|
|
77120
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge>>>;
|
|
77121
|
-
pageInfo: PageInfo;
|
|
77122
|
-
};
|
|
77123
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge = {
|
|
77124
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentEdge';
|
|
77125
|
-
createdAt: Scalars['DateTime']['output'];
|
|
77126
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
77127
|
-
id: Scalars['ID']['output'];
|
|
77128
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
77129
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentUnion>;
|
|
77130
|
-
};
|
|
77131
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
77132
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseConnection';
|
|
77133
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge>>>;
|
|
77134
|
-
pageInfo: PageInfo;
|
|
77135
|
-
};
|
|
77136
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge = {
|
|
77137
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseEdge';
|
|
77138
|
-
createdAt: Scalars['DateTime']['output'];
|
|
77139
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
77140
|
-
id: Scalars['ID']['output'];
|
|
77141
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
77142
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseUnion>;
|
|
77143
|
-
};
|
|
77144
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
77145
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
77146
77559
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection = HasPageInfo & {
|
|
77147
77560
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection';
|
|
77148
77561
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemEdge>>>;
|
|
@@ -78097,7 +78510,7 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
78097
78510
|
lastUpdated: Scalars['DateTime']['output'];
|
|
78098
78511
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
78099
78512
|
};
|
|
78100
|
-
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;
|
|
78513
|
+
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 | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
78101
78514
|
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;
|
|
78102
78515
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
78103
78516
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
@@ -78547,34 +78960,6 @@ export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInvers
|
|
|
78547
78960
|
node?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseUnion>;
|
|
78548
78961
|
};
|
|
78549
78962
|
export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
78550
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection = HasPageInfo & {
|
|
78551
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection';
|
|
78552
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge>>>;
|
|
78553
|
-
pageInfo: PageInfo;
|
|
78554
|
-
};
|
|
78555
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge = {
|
|
78556
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge';
|
|
78557
|
-
createdAt: Scalars['DateTime']['output'];
|
|
78558
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
78559
|
-
id: Scalars['ID']['output'];
|
|
78560
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
78561
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageUnion>;
|
|
78562
|
-
};
|
|
78563
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection = HasPageInfo & {
|
|
78564
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection';
|
|
78565
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge>>>;
|
|
78566
|
-
pageInfo: PageInfo;
|
|
78567
|
-
};
|
|
78568
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge = {
|
|
78569
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge';
|
|
78570
|
-
createdAt: Scalars['DateTime']['output'];
|
|
78571
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
78572
|
-
id: Scalars['ID']['output'];
|
|
78573
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
78574
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseUnion>;
|
|
78575
|
-
};
|
|
78576
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseUnion = LoomMeeting;
|
|
78577
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageUnion = ConfluencePage;
|
|
78578
78963
|
export declare type GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
78579
78964
|
__typename?: 'GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection';
|
|
78580
78965
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceEdge>>>;
|
|
@@ -79467,6 +79852,38 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInver
|
|
|
79467
79852
|
};
|
|
79468
79853
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79469
79854
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalBranchUnion = ExternalBranch;
|
|
79855
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
79856
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventConnection';
|
|
79857
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge>>>;
|
|
79858
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79859
|
+
pageInfo: PageInfo;
|
|
79860
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79861
|
+
};
|
|
79862
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge = {
|
|
79863
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventEdge';
|
|
79864
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79865
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79866
|
+
id: Scalars['ID']['output'];
|
|
79867
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79868
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventUnion>;
|
|
79869
|
+
};
|
|
79870
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
79871
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseConnection';
|
|
79872
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge>>>;
|
|
79873
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79874
|
+
pageInfo: PageInfo;
|
|
79875
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79876
|
+
};
|
|
79877
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge = {
|
|
79878
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseEdge';
|
|
79879
|
+
createdAt: Scalars['DateTime']['output'];
|
|
79880
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
79881
|
+
id: Scalars['ID']['output'];
|
|
79882
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
79883
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseUnion>;
|
|
79884
|
+
};
|
|
79885
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79886
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
79470
79887
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection = HasPageInfo & {
|
|
79471
79888
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalCommitConnection';
|
|
79472
79889
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalCommitEdge>>>;
|
|
@@ -79691,6 +80108,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInver
|
|
|
79691
80108
|
};
|
|
79692
80109
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79693
80110
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDesignUnion = DevOpsDesign | ExternalDesign;
|
|
80111
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection = HasPageInfo & {
|
|
80112
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentConnection';
|
|
80113
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge>>>;
|
|
80114
|
+
pageInfo: PageInfo;
|
|
80115
|
+
};
|
|
80116
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge = {
|
|
80117
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentEdge';
|
|
80118
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80119
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80120
|
+
id: Scalars['ID']['output'];
|
|
80121
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80122
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentUnion>;
|
|
80123
|
+
};
|
|
80124
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
80125
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseConnection';
|
|
80126
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge>>>;
|
|
80127
|
+
pageInfo: PageInfo;
|
|
80128
|
+
};
|
|
80129
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge = {
|
|
80130
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseEdge';
|
|
80131
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80132
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80133
|
+
id: Scalars['ID']['output'];
|
|
80134
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80135
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseUnion>;
|
|
80136
|
+
};
|
|
80137
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80138
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
79694
80139
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection = HasPageInfo & {
|
|
79695
80140
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalMessageConnection';
|
|
79696
80141
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalMessageEdge>>>;
|
|
@@ -79859,70 +80304,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverse
|
|
|
79859
80304
|
};
|
|
79860
80305
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79861
80306
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion = ExternalTest;
|
|
79862
|
-
export declare type
|
|
79863
|
-
__typename?: '
|
|
79864
|
-
edges?: Maybe<Array<Maybe<
|
|
79865
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79866
|
-
pageInfo: PageInfo;
|
|
79867
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79868
|
-
};
|
|
79869
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge = {
|
|
79870
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge';
|
|
79871
|
-
createdAt: Scalars['DateTime']['output'];
|
|
79872
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
79873
|
-
id: Scalars['ID']['output'];
|
|
79874
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
79875
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalUnion>;
|
|
79876
|
-
};
|
|
79877
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
79878
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection';
|
|
79879
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge>>>;
|
|
79880
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79881
|
-
pageInfo: PageInfo;
|
|
79882
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79883
|
-
};
|
|
79884
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge = {
|
|
79885
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge';
|
|
79886
|
-
createdAt: Scalars['DateTime']['output'];
|
|
79887
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
79888
|
-
id: Scalars['ID']['output'];
|
|
79889
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
79890
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseUnion>;
|
|
79891
|
-
};
|
|
79892
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
79893
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalUnion = TownsquareGoal;
|
|
79894
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection = HasPageInfo & HasTotal & {
|
|
79895
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection';
|
|
79896
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectEdge>>>;
|
|
79897
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
80307
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
80308
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection';
|
|
80309
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge>>>;
|
|
79898
80310
|
pageInfo: PageInfo;
|
|
79899
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79900
80311
|
};
|
|
79901
|
-
export declare type
|
|
79902
|
-
__typename?: '
|
|
80312
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge = {
|
|
80313
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemEdge';
|
|
79903
80314
|
createdAt: Scalars['DateTime']['output'];
|
|
79904
80315
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
79905
80316
|
id: Scalars['ID']['output'];
|
|
79906
80317
|
lastUpdated: Scalars['DateTime']['output'];
|
|
79907
|
-
node?: Maybe<
|
|
80318
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemUnion>;
|
|
79908
80319
|
};
|
|
79909
|
-
export declare type
|
|
79910
|
-
__typename?: '
|
|
79911
|
-
edges?: Maybe<Array<Maybe<
|
|
79912
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
80320
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection = HasPageInfo & {
|
|
80321
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection';
|
|
80322
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge>>>;
|
|
79913
80323
|
pageInfo: PageInfo;
|
|
79914
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79915
80324
|
};
|
|
79916
|
-
export declare type
|
|
79917
|
-
__typename?: '
|
|
80325
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge = {
|
|
80326
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseEdge';
|
|
79918
80327
|
createdAt: Scalars['DateTime']['output'];
|
|
79919
80328
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
79920
80329
|
id: Scalars['ID']['output'];
|
|
79921
80330
|
lastUpdated: Scalars['DateTime']['output'];
|
|
79922
|
-
node?: Maybe<
|
|
80331
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseUnion>;
|
|
79923
80332
|
};
|
|
79924
|
-
export declare type
|
|
79925
|
-
export declare type
|
|
80333
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80334
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemUnion = ExternalWorkItem;
|
|
79926
80335
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection = HasPageInfo & {
|
|
79927
80336
|
__typename?: 'GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection';
|
|
79928
80337
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignEdge>>>;
|
|
@@ -79951,6 +80360,62 @@ export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignI
|
|
|
79951
80360
|
};
|
|
79952
80361
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79953
80362
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignUnion = DevOpsDesign | ExternalDesign;
|
|
80363
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection = HasPageInfo & {
|
|
80364
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection';
|
|
80365
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge>>>;
|
|
80366
|
+
pageInfo: PageInfo;
|
|
80367
|
+
};
|
|
80368
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge = {
|
|
80369
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationEdge';
|
|
80370
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80371
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80372
|
+
id: Scalars['ID']['output'];
|
|
80373
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80374
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationUnion>;
|
|
80375
|
+
};
|
|
80376
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection = HasPageInfo & {
|
|
80377
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseConnection';
|
|
80378
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge>>>;
|
|
80379
|
+
pageInfo: PageInfo;
|
|
80380
|
+
};
|
|
80381
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge = {
|
|
80382
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseEdge';
|
|
80383
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80384
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80385
|
+
id: Scalars['ID']['output'];
|
|
80386
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80387
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseUnion>;
|
|
80388
|
+
};
|
|
80389
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80390
|
+
export declare type GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationUnion = ExternalConversation;
|
|
80391
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection = HasPageInfo & {
|
|
80392
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationConnection';
|
|
80393
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge>>>;
|
|
80394
|
+
pageInfo: PageInfo;
|
|
80395
|
+
};
|
|
80396
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge = {
|
|
80397
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationEdge';
|
|
80398
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80399
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80400
|
+
id: Scalars['ID']['output'];
|
|
80401
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80402
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationUnion>;
|
|
80403
|
+
};
|
|
80404
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection = HasPageInfo & {
|
|
80405
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection';
|
|
80406
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge>>>;
|
|
80407
|
+
pageInfo: PageInfo;
|
|
80408
|
+
};
|
|
80409
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge = {
|
|
80410
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseEdge';
|
|
80411
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80412
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80413
|
+
id: Scalars['ID']['output'];
|
|
80414
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80415
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseUnion>;
|
|
80416
|
+
};
|
|
80417
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80418
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationUnion = ExternalConversation;
|
|
79954
80419
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection = HasPageInfo & {
|
|
79955
80420
|
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection';
|
|
79956
80421
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageEdge>>>;
|
|
@@ -79979,6 +80444,34 @@ export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessage
|
|
|
79979
80444
|
};
|
|
79980
80445
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79981
80446
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageUnion = ExternalMessage;
|
|
80447
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
80448
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection';
|
|
80449
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge>>>;
|
|
80450
|
+
pageInfo: PageInfo;
|
|
80451
|
+
};
|
|
80452
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge = {
|
|
80453
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge';
|
|
80454
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80455
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80456
|
+
id: Scalars['ID']['output'];
|
|
80457
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80458
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventUnion>;
|
|
80459
|
+
};
|
|
80460
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
80461
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection';
|
|
80462
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge>>>;
|
|
80463
|
+
pageInfo: PageInfo;
|
|
80464
|
+
};
|
|
80465
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge = {
|
|
80466
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseEdge';
|
|
80467
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80468
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80469
|
+
id: Scalars['ID']['output'];
|
|
80470
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80471
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseUnion>;
|
|
80472
|
+
};
|
|
80473
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80474
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
79982
80475
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection = HasPageInfo & {
|
|
79983
80476
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactConnection';
|
|
79984
80477
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCustomerContactEdge>>>;
|
|
@@ -80147,6 +80640,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseEdg
|
|
|
80147
80640
|
};
|
|
80148
80641
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80149
80642
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalDealUnion = ExternalDeal;
|
|
80643
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection = HasPageInfo & {
|
|
80644
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryConnection';
|
|
80645
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge>>>;
|
|
80646
|
+
pageInfo: PageInfo;
|
|
80647
|
+
};
|
|
80648
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge = {
|
|
80649
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryEdge';
|
|
80650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80652
|
+
id: Scalars['ID']['output'];
|
|
80653
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80654
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion>;
|
|
80655
|
+
};
|
|
80656
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection = HasPageInfo & {
|
|
80657
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseConnection';
|
|
80658
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge>>>;
|
|
80659
|
+
pageInfo: PageInfo;
|
|
80660
|
+
};
|
|
80661
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge = {
|
|
80662
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseEdge';
|
|
80663
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80664
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80665
|
+
id: Scalars['ID']['output'];
|
|
80666
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80667
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion>;
|
|
80668
|
+
};
|
|
80669
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80670
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
80150
80671
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection = HasPageInfo & {
|
|
80151
80672
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceConnection';
|
|
80152
80673
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalSoftwareServiceEdge>>>;
|
|
@@ -80259,6 +80780,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdg
|
|
|
80259
80780
|
};
|
|
80260
80781
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80261
80782
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion = ExternalTest;
|
|
80783
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
80784
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection';
|
|
80785
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge>>>;
|
|
80786
|
+
pageInfo: PageInfo;
|
|
80787
|
+
};
|
|
80788
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge = {
|
|
80789
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestEdge';
|
|
80790
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80791
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80792
|
+
id: Scalars['ID']['output'];
|
|
80793
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80794
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion>;
|
|
80795
|
+
};
|
|
80796
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection = HasPageInfo & {
|
|
80797
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection';
|
|
80798
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge>>>;
|
|
80799
|
+
pageInfo: PageInfo;
|
|
80800
|
+
};
|
|
80801
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge = {
|
|
80802
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseEdge';
|
|
80803
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80804
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80805
|
+
id: Scalars['ID']['output'];
|
|
80806
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80807
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion>;
|
|
80808
|
+
};
|
|
80809
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80810
|
+
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
80262
80811
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
80263
80812
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection';
|
|
80264
80813
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -80427,6 +80976,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverse
|
|
|
80427
80976
|
};
|
|
80428
80977
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80429
80978
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDealUnion = ExternalDeal;
|
|
80979
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection = HasPageInfo & {
|
|
80980
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentConnection';
|
|
80981
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge>>>;
|
|
80982
|
+
pageInfo: PageInfo;
|
|
80983
|
+
};
|
|
80984
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge = {
|
|
80985
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentEdge';
|
|
80986
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80987
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80988
|
+
id: Scalars['ID']['output'];
|
|
80989
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80990
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentUnion>;
|
|
80991
|
+
};
|
|
80992
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection = HasPageInfo & {
|
|
80993
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseConnection';
|
|
80994
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge>>>;
|
|
80995
|
+
pageInfo: PageInfo;
|
|
80996
|
+
};
|
|
80997
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge = {
|
|
80998
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseEdge';
|
|
80999
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81000
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81001
|
+
id: Scalars['ID']['output'];
|
|
81002
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81003
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseUnion>;
|
|
81004
|
+
};
|
|
81005
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
81006
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
80430
81007
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection = HasPageInfo & {
|
|
80431
81008
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceConnection';
|
|
80432
81009
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalSoftwareServiceEdge>>>;
|
|
@@ -82147,6 +82724,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInv
|
|
|
82147
82724
|
};
|
|
82148
82725
|
export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentInverseUnion = JiraIssue;
|
|
82149
82726
|
export declare type GraphStoreV2SimplifiedJiraWorkItemChangesCompassComponentUnion = CompassComponent;
|
|
82727
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection = HasPageInfo & {
|
|
82728
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentConnection';
|
|
82729
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge>>>;
|
|
82730
|
+
pageInfo: PageInfo;
|
|
82731
|
+
};
|
|
82732
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge = {
|
|
82733
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentEdge';
|
|
82734
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82735
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82736
|
+
id: Scalars['ID']['output'];
|
|
82737
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82738
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentUnion>;
|
|
82739
|
+
};
|
|
82740
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection = HasPageInfo & {
|
|
82741
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseConnection';
|
|
82742
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge>>>;
|
|
82743
|
+
pageInfo: PageInfo;
|
|
82744
|
+
};
|
|
82745
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge = {
|
|
82746
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseEdge';
|
|
82747
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82749
|
+
id: Scalars['ID']['output'];
|
|
82750
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82751
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseUnion>;
|
|
82752
|
+
};
|
|
82753
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82754
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemCommentHasChildJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82150
82755
|
export declare type GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection = HasPageInfo & {
|
|
82151
82756
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalConnection';
|
|
82152
82757
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemContributesToAtlassianGoalEdge>>>;
|
|
@@ -82347,6 +82952,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
82347
82952
|
};
|
|
82348
82953
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
82349
82954
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82955
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
82956
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
82957
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
82958
|
+
pageInfo: PageInfo;
|
|
82959
|
+
};
|
|
82960
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge = {
|
|
82961
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge';
|
|
82962
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82963
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82964
|
+
id: Scalars['ID']['output'];
|
|
82965
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82966
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectUnion>;
|
|
82967
|
+
};
|
|
82968
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection = HasPageInfo & {
|
|
82969
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection';
|
|
82970
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge>>>;
|
|
82971
|
+
pageInfo: PageInfo;
|
|
82972
|
+
};
|
|
82973
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge = {
|
|
82974
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge';
|
|
82975
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82976
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82977
|
+
id: Scalars['ID']['output'];
|
|
82978
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82979
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseUnion>;
|
|
82980
|
+
};
|
|
82981
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseUnion = JiraIssue;
|
|
82982
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectUnion = AssetsObject;
|
|
82350
82983
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
82351
82984
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection';
|
|
82352
82985
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardEdge>>>;
|
|
@@ -82977,6 +83610,34 @@ export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInvers
|
|
|
82977
83610
|
};
|
|
82978
83611
|
export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInverseUnion = JiraProject;
|
|
82979
83612
|
export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityUnion = ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
83613
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection = HasPageInfo & {
|
|
83614
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection';
|
|
83615
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge>>>;
|
|
83616
|
+
pageInfo: PageInfo;
|
|
83617
|
+
};
|
|
83618
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge = {
|
|
83619
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge';
|
|
83620
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83621
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83622
|
+
id: Scalars['ID']['output'];
|
|
83623
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83624
|
+
node?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageUnion>;
|
|
83625
|
+
};
|
|
83626
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection = HasPageInfo & {
|
|
83627
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection';
|
|
83628
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge>>>;
|
|
83629
|
+
pageInfo: PageInfo;
|
|
83630
|
+
};
|
|
83631
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge = {
|
|
83632
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge';
|
|
83633
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83634
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83635
|
+
id: Scalars['ID']['output'];
|
|
83636
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83637
|
+
node?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseUnion>;
|
|
83638
|
+
};
|
|
83639
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseUnion = LoomMeeting;
|
|
83640
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageUnion = ConfluencePage;
|
|
82980
83641
|
export declare type GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
82981
83642
|
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection';
|
|
82982
83643
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceEdge>>>;
|
|
@@ -87886,6 +88547,7 @@ export declare type JiraAiAgentSession = {
|
|
|
87886
88547
|
__typename?: 'JiraAiAgentSession';
|
|
87887
88548
|
agent?: Maybe<User>;
|
|
87888
88549
|
conversationId: Scalars['ID']['output'];
|
|
88550
|
+
convoAiSession?: Maybe<ConvoAiAgentSession>;
|
|
87889
88551
|
};
|
|
87890
88552
|
export declare type JiraAiAgentSessionConnection = {
|
|
87891
88553
|
__typename?: 'JiraAiAgentSessionConnection';
|
|
@@ -89494,6 +90156,9 @@ export declare type JiraBoardViewIsEmptyArgs = {
|
|
|
89494
90156
|
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
89495
90157
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89496
90158
|
};
|
|
90159
|
+
export declare type JiraBoardViewLayoutArgs = {
|
|
90160
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90161
|
+
};
|
|
89497
90162
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
89498
90163
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89499
90164
|
};
|
|
@@ -89605,12 +90270,25 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
89605
90270
|
field?: Maybe<JiraField>;
|
|
89606
90271
|
id: Scalars['ID']['output'];
|
|
89607
90272
|
};
|
|
90273
|
+
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node & {
|
|
90274
|
+
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
90275
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
90276
|
+
field?: Maybe<JiraField>;
|
|
90277
|
+
id: Scalars['ID']['output'];
|
|
90278
|
+
value?: Maybe<JiraBoardViewFieldSwimlaneValue>;
|
|
90279
|
+
};
|
|
90280
|
+
export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
90281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90283
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90284
|
+
};
|
|
90285
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraOption | JiraPriority;
|
|
89608
90286
|
export declare type JiraBoardViewInput = {
|
|
89609
90287
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
89610
90288
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89611
90289
|
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
89612
90290
|
};
|
|
89613
|
-
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
90291
|
+
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
89614
90292
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
89615
90293
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
89616
90294
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89650,6 +90328,7 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
89650
90328
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
89651
90329
|
name?: Maybe<Scalars['String']['output']>;
|
|
89652
90330
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
90331
|
+
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
89653
90332
|
};
|
|
89654
90333
|
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
89655
90334
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89671,6 +90350,35 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
89671
90350
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89672
90351
|
node?: Maybe<JiraBoardViewStatus>;
|
|
89673
90352
|
};
|
|
90353
|
+
export declare type JiraBoardViewSwimlane = {
|
|
90354
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
90355
|
+
id: Scalars['ID']['output'];
|
|
90356
|
+
};
|
|
90357
|
+
export declare type JiraBoardViewSwimlaneCellsArgs = {
|
|
90358
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90359
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90360
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90361
|
+
};
|
|
90362
|
+
export declare type JiraBoardViewSwimlaneConnection = {
|
|
90363
|
+
__typename?: 'JiraBoardViewSwimlaneConnection';
|
|
90364
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewSwimlaneEdge>>>;
|
|
90365
|
+
errors?: Maybe<Array<QueryError>>;
|
|
90366
|
+
pageInfo?: Maybe<PageInfo>;
|
|
90367
|
+
};
|
|
90368
|
+
export declare type JiraBoardViewSwimlaneEdge = {
|
|
90369
|
+
__typename?: 'JiraBoardViewSwimlaneEdge';
|
|
90370
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90371
|
+
node?: Maybe<JiraBoardViewSwimlane>;
|
|
90372
|
+
};
|
|
90373
|
+
export declare type JiraBoardViewSwimlaneLayout = Node & {
|
|
90374
|
+
__typename?: 'JiraBoardViewSwimlaneLayout';
|
|
90375
|
+
id: Scalars['ID']['output'];
|
|
90376
|
+
swimlanes?: Maybe<JiraBoardViewSwimlaneConnection>;
|
|
90377
|
+
};
|
|
90378
|
+
export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
90379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90381
|
+
};
|
|
89674
90382
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
89675
90383
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
89676
90384
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -92441,6 +93149,8 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
92441
93149
|
};
|
|
92442
93150
|
export declare type JiraDetailedViewValidateJqlArgs = {
|
|
92443
93151
|
issueSearchInput: JiraIssueSearchInput;
|
|
93152
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93153
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
92444
93154
|
};
|
|
92445
93155
|
export declare type JiraDevInfoConfigError = {
|
|
92446
93156
|
__typename?: 'JiraDevInfoConfigError';
|
|
@@ -94315,6 +95025,9 @@ export declare type JiraFormulaReferencedFieldType = {
|
|
|
94315
95025
|
__typename?: 'JiraFormulaReferencedFieldType';
|
|
94316
95026
|
key: Scalars['String']['output'];
|
|
94317
95027
|
};
|
|
95028
|
+
export declare type JiraGenerateIssueAiSummaryInput = {
|
|
95029
|
+
issueId: Scalars['ID']['input'];
|
|
95030
|
+
};
|
|
94318
95031
|
export declare type JiraGeneratedJqlInvalidError = {
|
|
94319
95032
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
94320
95033
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -94608,6 +95321,8 @@ export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
|
94608
95321
|
};
|
|
94609
95322
|
export declare type JiraGroupedListViewValidateJqlArgs = {
|
|
94610
95323
|
issueSearchInput: JiraIssueSearchInput;
|
|
95324
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95325
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
94611
95326
|
};
|
|
94612
95327
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
94613
95328
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94848,6 +95563,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
94848
95563
|
contextPanels?: Maybe<JiraIssueContextPanelConnection>;
|
|
94849
95564
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
94850
95565
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
95566
|
+
defaultAssignee?: Maybe<User>;
|
|
94851
95567
|
delegator?: Maybe<User>;
|
|
94852
95568
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
94853
95569
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
@@ -96803,6 +97519,8 @@ export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
|
96803
97519
|
};
|
|
96804
97520
|
export declare type JiraIssueSearchViewValidateJqlArgs = {
|
|
96805
97521
|
issueSearchInput: JiraIssueSearchInput;
|
|
97522
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97523
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
96806
97524
|
};
|
|
96807
97525
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
96808
97526
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
@@ -96908,6 +97626,8 @@ export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
|
96908
97626
|
};
|
|
96909
97627
|
export declare type JiraIssueSearchViewMetadataValidateJqlArgs = {
|
|
96910
97628
|
issueSearchInput: JiraIssueSearchInput;
|
|
97629
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97630
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
96911
97631
|
};
|
|
96912
97632
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
96913
97633
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
@@ -97736,6 +98456,15 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
|
97736
98456
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
97737
98457
|
jqlTerm: Scalars['String']['output'];
|
|
97738
98458
|
};
|
|
98459
|
+
export declare type JiraJqlDateBucketFieldValue = JiraJqlFieldValue & {
|
|
98460
|
+
__typename?: 'JiraJqlDateBucketFieldValue';
|
|
98461
|
+
displayName: Scalars['String']['output'];
|
|
98462
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
98463
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
98464
|
+
jqlTerm: Scalars['String']['output'];
|
|
98465
|
+
rangeEnd?: Maybe<Scalars['String']['output']>;
|
|
98466
|
+
rangeStart?: Maybe<Scalars['String']['output']>;
|
|
98467
|
+
};
|
|
97739
98468
|
export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
|
|
97740
98469
|
__typename?: 'JiraJqlEmptyFieldValue';
|
|
97741
98470
|
displayName: Scalars['String']['output'];
|
|
@@ -98436,6 +99165,8 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
98436
99165
|
};
|
|
98437
99166
|
export declare type JiraListViewValidateJqlArgs = {
|
|
98438
99167
|
issueSearchInput: JiraIssueSearchInput;
|
|
99168
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99169
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
98439
99170
|
};
|
|
98440
99171
|
export declare type JiraListViewViewSettingsArgs = {
|
|
98441
99172
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98487,6 +99218,11 @@ export declare type JiraMediaContext = {
|
|
|
98487
99218
|
__typename?: 'JiraMediaContext';
|
|
98488
99219
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
98489
99220
|
};
|
|
99221
|
+
export declare type JiraMediaReadConfig = {
|
|
99222
|
+
__typename?: 'JiraMediaReadConfig';
|
|
99223
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
99224
|
+
endpointUrl?: Maybe<Scalars['String']['output']>;
|
|
99225
|
+
};
|
|
98490
99226
|
export declare type JiraMediaReadToken = {
|
|
98491
99227
|
__typename?: 'JiraMediaReadToken';
|
|
98492
99228
|
clientId?: Maybe<Scalars['String']['output']>;
|
|
@@ -98947,6 +99683,7 @@ export declare type JiraMutation = {
|
|
|
98947
99683
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
98948
99684
|
forge: JiraForgeMutation;
|
|
98949
99685
|
generateCFORecommendations?: Maybe<JiraCfoCreateRecommendationsPayload>;
|
|
99686
|
+
generateIssueAISummary?: Maybe<JiraIssueAiSummaryResult>;
|
|
98950
99687
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
98951
99688
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
98952
99689
|
issueRemoteLinkMutation?: Maybe<JiraIssueRemoteIssueLinkPayload>;
|
|
@@ -99350,6 +100087,9 @@ export declare type JiraMutationEditCustomFieldArgs = {
|
|
|
99350
100087
|
export declare type JiraMutationGenerateCfoRecommendationsArgs = {
|
|
99351
100088
|
cloudId: Scalars['ID']['input'];
|
|
99352
100089
|
};
|
|
100090
|
+
export declare type JiraMutationGenerateIssueAiSummaryArgs = {
|
|
100091
|
+
input: JiraGenerateIssueAiSummaryInput;
|
|
100092
|
+
};
|
|
99353
100093
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
99354
100094
|
cloudId: Scalars['ID']['input'];
|
|
99355
100095
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -100151,11 +100891,15 @@ export declare type JiraNumberFieldOperationInput = {
|
|
|
100151
100891
|
number?: InputMaybe<Scalars['Float']['input']>;
|
|
100152
100892
|
operation: JiraSingleValueFieldOperations;
|
|
100153
100893
|
};
|
|
100154
|
-
export declare type JiraNumberFieldPayload = Payload & {
|
|
100894
|
+
export declare type JiraNumberFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
100155
100895
|
__typename?: 'JiraNumberFieldPayload';
|
|
100156
100896
|
errors?: Maybe<Array<MutationError>>;
|
|
100157
100897
|
field?: Maybe<JiraNumberField>;
|
|
100158
100898
|
success: Scalars['Boolean']['output'];
|
|
100899
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
100900
|
+
};
|
|
100901
|
+
export declare type JiraNumberFieldPayloadUpdatedDependentFieldsArgs = {
|
|
100902
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100159
100903
|
};
|
|
100160
100904
|
export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
100161
100905
|
__typename?: 'JiraNumberFormulaField';
|
|
@@ -101117,6 +101861,8 @@ export declare type JiraPlaybookInstanceStep = Node & {
|
|
|
101117
101861
|
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
101118
101862
|
name?: Maybe<Scalars['String']['output']>;
|
|
101119
101863
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
101864
|
+
task?: Maybe<JiraIssue>;
|
|
101865
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101120
101866
|
type?: Maybe<JiraPlaybookStepType>;
|
|
101121
101867
|
};
|
|
101122
101868
|
export declare type JiraPlaybookIssueFilter = {
|
|
@@ -101184,6 +101930,7 @@ export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
|
101184
101930
|
};
|
|
101185
101931
|
export declare enum JiraPlaybookScopeType {
|
|
101186
101932
|
Global = "GLOBAL",
|
|
101933
|
+
Issue = "ISSUE",
|
|
101187
101934
|
Project = "PROJECT",
|
|
101188
101935
|
Team = "TEAM"
|
|
101189
101936
|
}
|
|
@@ -101199,6 +101946,8 @@ export declare type JiraPlaybookStep = {
|
|
|
101199
101946
|
name?: Maybe<Scalars['String']['output']>;
|
|
101200
101947
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
101201
101948
|
stepId: Scalars['ID']['output'];
|
|
101949
|
+
task?: Maybe<JiraIssue>;
|
|
101950
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101202
101951
|
type?: Maybe<JiraPlaybookStepType>;
|
|
101203
101952
|
};
|
|
101204
101953
|
export declare type JiraPlaybookStepOutput = {
|
|
@@ -101226,6 +101975,7 @@ export declare type JiraPlaybookStepRun = Node & {
|
|
|
101226
101975
|
stepOutput?: Maybe<Array<JiraPlaybookStepOutput>>;
|
|
101227
101976
|
stepStatus?: Maybe<JiraPlaybookStepRunStatus>;
|
|
101228
101977
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
101978
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
101229
101979
|
triggeredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
101230
101980
|
triggeredBy?: Maybe<User>;
|
|
101231
101981
|
};
|
|
@@ -101259,7 +102009,8 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
101259
102009
|
}
|
|
101260
102010
|
export declare enum JiraPlaybookStepType {
|
|
101261
102011
|
AutomationRule = "AUTOMATION_RULE",
|
|
101262
|
-
InstructionalRule = "INSTRUCTIONAL_RULE"
|
|
102012
|
+
InstructionalRule = "INSTRUCTIONAL_RULE",
|
|
102013
|
+
Task = "TASK"
|
|
101263
102014
|
}
|
|
101264
102015
|
export declare type JiraPlaybookStepUsage = Node & {
|
|
101265
102016
|
__typename?: 'JiraPlaybookStepUsage';
|
|
@@ -101585,6 +102336,8 @@ export declare type JiraProjectAssignableUsersArgs = {
|
|
|
101585
102336
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
101586
102337
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101587
102338
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
102339
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
102340
|
+
recommend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101588
102341
|
};
|
|
101589
102342
|
export declare type JiraProjectAssociatedComponentsArgs = {
|
|
101590
102343
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101771,6 +102524,7 @@ export declare type JiraProjectAccessRequestDetails = {
|
|
|
101771
102524
|
accessUrl?: Maybe<Scalars['String']['output']>;
|
|
101772
102525
|
createdAt: Scalars['Long']['output'];
|
|
101773
102526
|
id: Scalars['ID']['output'];
|
|
102527
|
+
isPending?: Maybe<Scalars['Boolean']['output']>;
|
|
101774
102528
|
note?: Maybe<Scalars['String']['output']>;
|
|
101775
102529
|
requester?: Maybe<User>;
|
|
101776
102530
|
user?: Maybe<User>;
|
|
@@ -104863,6 +105617,8 @@ export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
|
104863
105617
|
success: Scalars['Boolean']['output'];
|
|
104864
105618
|
};
|
|
104865
105619
|
export declare type JiraScheduleTimelineItemInput = {
|
|
105620
|
+
aggregatedEndDate?: InputMaybe<JiraDateInput>;
|
|
105621
|
+
aggregatedStartDate?: InputMaybe<JiraDateInput>;
|
|
104866
105622
|
endDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
104867
105623
|
issueId: Scalars['ID']['input'];
|
|
104868
105624
|
operation: JiraScheduleTimelineItemOperation;
|
|
@@ -106980,6 +107736,8 @@ export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
|
106980
107736
|
};
|
|
106981
107737
|
export declare type JiraSpreadsheetViewValidateJqlArgs = {
|
|
106982
107738
|
issueSearchInput: JiraIssueSearchInput;
|
|
107739
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107740
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
106983
107741
|
};
|
|
106984
107742
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
106985
107743
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107226,11 +107984,15 @@ export declare type JiraStoryPointEstimateFieldOperationInput = {
|
|
|
107226
107984
|
operation: JiraSingleValueFieldOperations;
|
|
107227
107985
|
storyPoint?: InputMaybe<Scalars['Float']['input']>;
|
|
107228
107986
|
};
|
|
107229
|
-
export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
107987
|
+
export declare type JiraStoryPointEstimateFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107230
107988
|
__typename?: 'JiraStoryPointEstimateFieldPayload';
|
|
107231
107989
|
errors?: Maybe<Array<MutationError>>;
|
|
107232
107990
|
field?: Maybe<JiraNumberField>;
|
|
107233
107991
|
success: Scalars['Boolean']['output'];
|
|
107992
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
107993
|
+
};
|
|
107994
|
+
export declare type JiraStoryPointEstimateFieldPayloadUpdatedDependentFieldsArgs = {
|
|
107995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107234
107996
|
};
|
|
107235
107997
|
export declare type JiraStreamHubResourceIdentifier = {
|
|
107236
107998
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
@@ -107588,6 +108350,13 @@ export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
|
107588
108350
|
errors?: Maybe<Array<QueryError>>;
|
|
107589
108351
|
pageInfo: PageInfo;
|
|
107590
108352
|
};
|
|
108353
|
+
export declare type JiraSupportsUpdatedDependentFields = {
|
|
108354
|
+
field?: Maybe<JiraIssueField>;
|
|
108355
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108356
|
+
};
|
|
108357
|
+
export declare type JiraSupportsUpdatedDependentFieldsUpdatedDependentFieldsArgs = {
|
|
108358
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108359
|
+
};
|
|
107591
108360
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
107592
108361
|
CardCover = "CARD_COVER",
|
|
107593
108362
|
Pages = "PAGES"
|
|
@@ -107913,6 +108682,8 @@ export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
|
107913
108682
|
};
|
|
107914
108683
|
export declare type JiraTimelineViewValidateJqlArgs = {
|
|
107915
108684
|
issueSearchInput: JiraIssueSearchInput;
|
|
108685
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108686
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
107916
108687
|
};
|
|
107917
108688
|
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
107918
108689
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107996,6 +108767,11 @@ export declare type JiraTransition = Node & {
|
|
|
107996
108767
|
to?: Maybe<JiraStatus>;
|
|
107997
108768
|
transitionId?: Maybe<Scalars['Int']['output']>;
|
|
107998
108769
|
};
|
|
108770
|
+
export declare type JiraTransitionAgent = {
|
|
108771
|
+
__typename?: 'JiraTransitionAgent';
|
|
108772
|
+
accountId: Scalars['ID']['output'];
|
|
108773
|
+
agent?: Maybe<User>;
|
|
108774
|
+
};
|
|
107999
108775
|
export declare type JiraTransitionConnection = {
|
|
108000
108776
|
__typename?: 'JiraTransitionConnection';
|
|
108001
108777
|
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
@@ -111699,6 +112475,20 @@ export declare type KitsuneFeedback = Node & {
|
|
|
111699
112475
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
111700
112476
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
111701
112477
|
};
|
|
112478
|
+
export declare type KitsuneFeedbackEvent = {
|
|
112479
|
+
__typename?: 'KitsuneFeedbackEvent';
|
|
112480
|
+
content: Scalars['KitsuneADF']['output'];
|
|
112481
|
+
createdAt: Scalars['DateTime']['output'];
|
|
112482
|
+
externalId?: Maybe<Scalars['ID']['output']>;
|
|
112483
|
+
id: Scalars['ID']['output'];
|
|
112484
|
+
sourceCategoryId: Scalars['ID']['output'];
|
|
112485
|
+
spaceId: Scalars['ID']['output'];
|
|
112486
|
+
tenantId: Scalars['ID']['output'];
|
|
112487
|
+
title: Scalars['String']['output'];
|
|
112488
|
+
type: Scalars['String']['output'];
|
|
112489
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
112490
|
+
url: Scalars['String']['output'];
|
|
112491
|
+
};
|
|
111702
112492
|
export declare type KitsuneNode = {
|
|
111703
112493
|
_id: Scalars['ID']['output'];
|
|
111704
112494
|
};
|
|
@@ -111714,9 +112504,9 @@ export declare type KitsuneSourceInput = {
|
|
|
111714
112504
|
export declare type KitsuneSourceInputWeb = {
|
|
111715
112505
|
url: Scalars['String']['input'];
|
|
111716
112506
|
};
|
|
111717
|
-
export declare type KitsuneSpace =
|
|
112507
|
+
export declare type KitsuneSpace = Node & {
|
|
111718
112508
|
__typename?: 'KitsuneSpace';
|
|
111719
|
-
|
|
112509
|
+
id: Scalars['ID']['output'];
|
|
111720
112510
|
name?: Maybe<Scalars['String']['output']>;
|
|
111721
112511
|
};
|
|
111722
112512
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
@@ -113233,18 +114023,21 @@ export declare type LogDetails = {
|
|
|
113233
114023
|
export declare type LogQueryInput = {
|
|
113234
114024
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
113235
114025
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114026
|
+
container?: InputMaybe<Scalars['String']['input']>;
|
|
113236
114027
|
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
113237
114028
|
dates?: InputMaybe<DateSearchInput>;
|
|
113238
114029
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
113239
114030
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
113240
114031
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
113241
114032
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
114033
|
+
instance?: InputMaybe<Scalars['String']['input']>;
|
|
113242
114034
|
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
113243
114035
|
licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
|
|
113244
114036
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
113245
114037
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
113246
114038
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
113247
114039
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
114040
|
+
service?: InputMaybe<Scalars['String']['input']>;
|
|
113248
114041
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
113249
114042
|
};
|
|
113250
114043
|
export declare type LookAndFeel = {
|
|
@@ -117227,7 +118020,8 @@ export declare type MercuryChangeProposalRankEdge = {
|
|
|
117227
118020
|
node?: Maybe<MercuryRankedChangeProposal>;
|
|
117228
118021
|
};
|
|
117229
118022
|
export declare type MercuryChangeProposalSort = {
|
|
117230
|
-
field
|
|
118023
|
+
field?: InputMaybe<MercuryChangeProposalSortField>;
|
|
118024
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
117231
118025
|
order: SortOrder;
|
|
117232
118026
|
};
|
|
117233
118027
|
export declare enum MercuryChangeProposalSortField {
|
|
@@ -117476,6 +118270,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
117476
118270
|
success: Scalars['Boolean']['output'];
|
|
117477
118271
|
};
|
|
117478
118272
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
118273
|
+
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
117479
118274
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
117480
118275
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
117481
118276
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
@@ -117499,6 +118294,9 @@ export declare type MercuryCreateCustomFieldDefinitionPayload = {
|
|
|
117499
118294
|
errors?: Maybe<Array<MutationError>>;
|
|
117500
118295
|
success: Scalars['Boolean']['output'];
|
|
117501
118296
|
};
|
|
118297
|
+
export declare type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
118298
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
118299
|
+
};
|
|
117502
118300
|
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
117503
118301
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
117504
118302
|
startMonthNumber: Scalars['Int']['input'];
|
|
@@ -117666,6 +118464,7 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
117666
118464
|
Name = "NAME"
|
|
117667
118465
|
}
|
|
117668
118466
|
export declare type MercuryCustomFieldInput = {
|
|
118467
|
+
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
117669
118468
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
117670
118469
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
117671
118470
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
@@ -117675,6 +118474,30 @@ export declare type MercuryCustomSelectFieldOption = {
|
|
|
117675
118474
|
id: Scalars['ID']['output'];
|
|
117676
118475
|
value: Scalars['String']['output'];
|
|
117677
118476
|
};
|
|
118477
|
+
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
118478
|
+
__typename?: 'MercuryDateCustomField';
|
|
118479
|
+
createdBy?: Maybe<User>;
|
|
118480
|
+
createdDate: Scalars['DateTime']['output'];
|
|
118481
|
+
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
118482
|
+
definition?: Maybe<MercuryDateCustomFieldDefinition>;
|
|
118483
|
+
updatedBy?: Maybe<User>;
|
|
118484
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
118485
|
+
};
|
|
118486
|
+
export declare type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
118487
|
+
__typename?: 'MercuryDateCustomFieldDefinition';
|
|
118488
|
+
createdBy?: Maybe<User>;
|
|
118489
|
+
createdDate: Scalars['DateTime']['output'];
|
|
118490
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
118491
|
+
id: Scalars['ID']['output'];
|
|
118492
|
+
name: Scalars['String']['output'];
|
|
118493
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
118494
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
118495
|
+
updatedBy?: Maybe<User>;
|
|
118496
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
118497
|
+
};
|
|
118498
|
+
export declare type MercuryDateCustomFieldInput = {
|
|
118499
|
+
dateValue?: InputMaybe<Scalars['Date']['input']>;
|
|
118500
|
+
};
|
|
117678
118501
|
export declare type MercuryDefaultJiraWorkStatusMapping = MercuryBaseJiraWorkStatusMapping & {
|
|
117679
118502
|
__typename?: 'MercuryDefaultJiraWorkStatusMapping';
|
|
117680
118503
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
@@ -118367,6 +119190,7 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
118367
119190
|
__typename?: 'MercuryFundsMonthlySummary';
|
|
118368
119191
|
amountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
118369
119192
|
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
119193
|
+
fiscalQuarter?: Maybe<Scalars['Int']['output']>;
|
|
118370
119194
|
fundsType?: Maybe<MercuryFundsType>;
|
|
118371
119195
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
118372
119196
|
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
@@ -118609,6 +119433,23 @@ export declare type MercuryInvestmentCategorySetSort = {
|
|
|
118609
119433
|
export declare enum MercuryInvestmentCategorySetSortField {
|
|
118610
119434
|
Name = "NAME"
|
|
118611
119435
|
}
|
|
119436
|
+
export declare type MercuryInviteInput = {
|
|
119437
|
+
cloudId: Scalars['ID']['input'];
|
|
119438
|
+
userId: Scalars['ID']['input'];
|
|
119439
|
+
};
|
|
119440
|
+
export declare type MercuryInvitePayload = Payload & {
|
|
119441
|
+
__typename?: 'MercuryInvitePayload';
|
|
119442
|
+
errors?: Maybe<Array<MutationError>>;
|
|
119443
|
+
status?: Maybe<MercuryInviteStatus>;
|
|
119444
|
+
success: Scalars['Boolean']['output'];
|
|
119445
|
+
};
|
|
119446
|
+
export declare enum MercuryInviteStatus {
|
|
119447
|
+
Invited = "INVITED",
|
|
119448
|
+
InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
|
|
119449
|
+
NotInvited = "NOT_INVITED",
|
|
119450
|
+
PendingInviteExists = "PENDING_INVITE_EXISTS",
|
|
119451
|
+
UserExists = "USER_EXISTS"
|
|
119452
|
+
}
|
|
118612
119453
|
export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
118613
119454
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
118614
119455
|
ari: Scalars['ID']['output'];
|
|
@@ -118842,6 +119683,7 @@ export declare type MercuryMutationApi = {
|
|
|
118842
119683
|
deletePortfolio?: Maybe<MercuryDeletePortfolioPayload>;
|
|
118843
119684
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
118844
119685
|
deletePreference?: Maybe<MercuryDeletePreferencePayload>;
|
|
119686
|
+
invite?: Maybe<MercuryInvitePayload>;
|
|
118845
119687
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
118846
119688
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
118847
119689
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
@@ -118923,6 +119765,9 @@ export declare type MercuryMutationApiDeletePortfolioFocusAreaLinkArgs = {
|
|
|
118923
119765
|
export declare type MercuryMutationApiDeletePreferenceArgs = {
|
|
118924
119766
|
input: MercuryDeletePreferenceInput;
|
|
118925
119767
|
};
|
|
119768
|
+
export declare type MercuryMutationApiInviteArgs = {
|
|
119769
|
+
input: MercuryInviteInput;
|
|
119770
|
+
};
|
|
118926
119771
|
export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
|
|
118927
119772
|
input: MercuryLinkFocusAreasToFocusAreaInput;
|
|
118928
119773
|
};
|
|
@@ -120913,12 +121758,12 @@ export declare type Mutation = {
|
|
|
120913
121758
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
120914
121759
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
120915
121760
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
121761
|
+
assetsDM_batchCreateComputeDictionaryValues?: Maybe<AssetsDmBatchCreateComputeDictionaryValuesResponse>;
|
|
120916
121762
|
assetsDM_changeDataSourceStatus?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
120917
121763
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
120918
121764
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
120919
121765
|
assetsDM_createAttributePriority?: Maybe<AssetsDmCreateAttributePriorityPayload>;
|
|
120920
121766
|
assetsDM_createCleansingReason?: Maybe<AssetsDmCreateCleansingReasonResponse>;
|
|
120921
|
-
assetsDM_createComputeDictionaryValue?: Maybe<AssetsDmCreateComputeDictionaryValueResponse>;
|
|
120922
121767
|
assetsDM_createDataDictionaryGroup?: Maybe<AssetsDmCreateDataDictionaryGroupResponse>;
|
|
120923
121768
|
assetsDM_createDataDictionaryGroupValue?: Maybe<AssetsDmCreateDataDictionaryGroupValueResponse>;
|
|
120924
121769
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
@@ -120990,6 +121835,7 @@ export declare type Mutation = {
|
|
|
120990
121835
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
120991
121836
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
120992
121837
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
121838
|
+
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
120993
121839
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
120994
121840
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
120995
121841
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -121000,6 +121846,9 @@ export declare type Mutation = {
|
|
|
121000
121846
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
121001
121847
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
121002
121848
|
ccp?: Maybe<CcpMutationApi>;
|
|
121849
|
+
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
121850
|
+
changeManagement_updateGlobalRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
121851
|
+
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
121003
121852
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
121004
121853
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
121005
121854
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -121016,7 +121865,9 @@ export declare type Mutation = {
|
|
|
121016
121865
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
121017
121866
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
121018
121867
|
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
121868
|
+
confluence_bulkAssignRolesForCombinationId?: Maybe<ConfluencePermissionTransitionBulkAssignRolesPayload>;
|
|
121019
121869
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
121870
|
+
confluence_bulkRemoveAccess?: Maybe<ConfluencePermissionTransitionBulkRemoveAccessPayload>;
|
|
121020
121871
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
121021
121872
|
confluence_convertToBlogpost?: Maybe<ConfluenceConvertContentToBlogpostPayload>;
|
|
121022
121873
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
@@ -121087,6 +121938,7 @@ export declare type Mutation = {
|
|
|
121087
121938
|
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
121088
121939
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
121089
121940
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
121941
|
+
confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
121090
121942
|
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
121091
121943
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
121092
121944
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
@@ -121100,6 +121952,7 @@ export declare type Mutation = {
|
|
|
121100
121952
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
121101
121953
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
121102
121954
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
121955
|
+
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
121103
121956
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
121104
121957
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
121105
121958
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -121188,6 +122041,7 @@ export declare type Mutation = {
|
|
|
121188
122041
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
121189
122042
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
121190
122043
|
csmAi_deleteWidget?: Maybe<CsmAiDeleteWidgetPayload>;
|
|
122044
|
+
csmAi_deleteWidgetClientKey?: Maybe<CsmAiDeleteClientKeyPayload>;
|
|
121191
122045
|
csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
|
|
121192
122046
|
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
121193
122047
|
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
@@ -121247,6 +122101,7 @@ export declare type Mutation = {
|
|
|
121247
122101
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
121248
122102
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
121249
122103
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
122104
|
+
devai_createPullRequest?: Maybe<DevAiRovoDevCreatePullRequestPayload>;
|
|
121250
122105
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
121251
122106
|
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
121252
122107
|
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
@@ -121299,6 +122154,7 @@ export declare type Mutation = {
|
|
|
121299
122154
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
121300
122155
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
121301
122156
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
122157
|
+
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
121302
122158
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
121303
122159
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
121304
122160
|
goals_editDropdownCustomField?: Maybe<TownsquareGoalsEditDropdownCustomFieldPayload>;
|
|
@@ -121326,6 +122182,7 @@ export declare type Mutation = {
|
|
|
121326
122182
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
121327
122183
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
121328
122184
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
122185
|
+
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
121329
122186
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
121330
122187
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
121331
122188
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
@@ -121472,6 +122329,7 @@ export declare type Mutation = {
|
|
|
121472
122329
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
121473
122330
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
121474
122331
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
122332
|
+
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
121475
122333
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
121476
122334
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
121477
122335
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -121551,6 +122409,7 @@ export declare type Mutation = {
|
|
|
121551
122409
|
projects_editTextCustomField?: Maybe<TownsquareProjectsEditTextCustomFieldPayload>;
|
|
121552
122410
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
121553
122411
|
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
122412
|
+
projects_grantAccess?: Maybe<TownsquareProjectGrantAccessPayload>;
|
|
121554
122413
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
121555
122414
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
121556
122415
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -121560,7 +122419,9 @@ export declare type Mutation = {
|
|
|
121560
122419
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
121561
122420
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
121562
122421
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
122422
|
+
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
121563
122423
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
122424
|
+
projects_setUserWatchingTeam?: Maybe<TownsquareProjectsSetUserWatchingTeamPayload>;
|
|
121564
122425
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
121565
122426
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
121566
122427
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
@@ -121711,6 +122572,7 @@ export declare type Mutation = {
|
|
|
121711
122572
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
121712
122573
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
121713
122574
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
122575
|
+
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
121714
122576
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
121715
122577
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
121716
122578
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -122058,10 +122920,15 @@ export declare type MutationAssetsDm_AssociateObjectTagArgs = {
|
|
|
122058
122920
|
workspaceId: Scalars['ID']['input'];
|
|
122059
122921
|
};
|
|
122060
122922
|
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
122061
|
-
autoColumnMappingInput
|
|
122923
|
+
autoColumnMappingInput: AssetsDmAutoColumnMappingInput;
|
|
122062
122924
|
cloudId: Scalars['ID']['input'];
|
|
122063
122925
|
workspaceId: Scalars['ID']['input'];
|
|
122064
122926
|
};
|
|
122927
|
+
export declare type MutationAssetsDm_BatchCreateComputeDictionaryValuesArgs = {
|
|
122928
|
+
cloudId: Scalars['ID']['input'];
|
|
122929
|
+
inputs: Array<AssetsDmCreateComputeDictionaryValueInput>;
|
|
122930
|
+
workspaceId: Scalars['ID']['input'];
|
|
122931
|
+
};
|
|
122065
122932
|
export declare type MutationAssetsDm_ChangeDataSourceStatusArgs = {
|
|
122066
122933
|
cloudId: Scalars['ID']['input'];
|
|
122067
122934
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -122090,11 +122957,6 @@ export declare type MutationAssetsDm_CreateCleansingReasonArgs = {
|
|
|
122090
122957
|
input: AssetsDmCreateCleansingReasonInput;
|
|
122091
122958
|
workspaceId: Scalars['ID']['input'];
|
|
122092
122959
|
};
|
|
122093
|
-
export declare type MutationAssetsDm_CreateComputeDictionaryValueArgs = {
|
|
122094
|
-
cloudId: Scalars['ID']['input'];
|
|
122095
|
-
input: AssetsDmCreateComputeDictionaryValueInput;
|
|
122096
|
-
workspaceId: Scalars['ID']['input'];
|
|
122097
|
-
};
|
|
122098
122960
|
export declare type MutationAssetsDm_CreateDataDictionaryGroupArgs = {
|
|
122099
122961
|
cloudId: Scalars['ID']['input'];
|
|
122100
122962
|
input: AssetsDmCreateDataDictionaryGroupInput;
|
|
@@ -122396,6 +123258,9 @@ export declare type MutationBlockService_CreateBlockArgs = {
|
|
|
122396
123258
|
export declare type MutationBlockService_DeleteBlockArgs = {
|
|
122397
123259
|
input: BlockServiceDeleteBlockInput;
|
|
122398
123260
|
};
|
|
123261
|
+
export declare type MutationBlockService_UpdateBlockArgs = {
|
|
123262
|
+
input: BlockServiceUpdateBlockInput;
|
|
123263
|
+
};
|
|
122399
123264
|
export declare type MutationBoardCardMoveArgs = {
|
|
122400
123265
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
122401
123266
|
};
|
|
@@ -122426,6 +123291,15 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
122426
123291
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
122427
123292
|
spaceKey: Scalars['String']['input'];
|
|
122428
123293
|
};
|
|
123294
|
+
export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
|
|
123295
|
+
input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
|
|
123296
|
+
};
|
|
123297
|
+
export declare type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
|
|
123298
|
+
input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
|
|
123299
|
+
};
|
|
123300
|
+
export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArgs = {
|
|
123301
|
+
input: ChangeManagementUpdateRovoRiskAssessmentSettingsInput;
|
|
123302
|
+
};
|
|
122429
123303
|
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
122430
123304
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
122431
123305
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -122480,10 +123354,18 @@ export declare type MutationConfluence_BatchFollowTeammatesArgs = {
|
|
|
122480
123354
|
cloudId: Scalars['ID']['input'];
|
|
122481
123355
|
input: ConfluenceBatchFollowTeammatesInput;
|
|
122482
123356
|
};
|
|
123357
|
+
export declare type MutationConfluence_BulkAssignRolesForCombinationIdArgs = {
|
|
123358
|
+
cloudId: Scalars['ID']['input'];
|
|
123359
|
+
input: ConfluencePermissionTransitionBulkAssignRolesInput;
|
|
123360
|
+
};
|
|
122483
123361
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
122484
123362
|
cloudId: Scalars['ID']['input'];
|
|
122485
123363
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
122486
123364
|
};
|
|
123365
|
+
export declare type MutationConfluence_BulkRemoveAccessArgs = {
|
|
123366
|
+
cloudId: Scalars['ID']['input'];
|
|
123367
|
+
input: ConfluencePermissionTransitionBulkRemoveAccessInput;
|
|
123368
|
+
};
|
|
122487
123369
|
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
122488
123370
|
input: ConfluenceConvertNoteInput;
|
|
122489
123371
|
};
|
|
@@ -122762,6 +123644,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
122762
123644
|
cloudId: Scalars['ID']['input'];
|
|
122763
123645
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
122764
123646
|
};
|
|
123647
|
+
export declare type MutationConfluence_UpdateContentAccessRequestSettingsArgs = {
|
|
123648
|
+
cloudId: Scalars['ID']['input'];
|
|
123649
|
+
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
123650
|
+
};
|
|
122765
123651
|
export declare type MutationConfluence_UpdateContentAppearanceArgs = {
|
|
122766
123652
|
cloudId: Scalars['ID']['input'];
|
|
122767
123653
|
input: ConfluenceUpdateContentAppearanceInput;
|
|
@@ -122816,6 +123702,10 @@ export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
|
122816
123702
|
cloudId: Scalars['ID']['input'];
|
|
122817
123703
|
input: ConfluenceUpdateShareableLinksInput;
|
|
122818
123704
|
};
|
|
123705
|
+
export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
123706
|
+
cloudId: Scalars['ID']['input'];
|
|
123707
|
+
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
123708
|
+
};
|
|
122819
123709
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
122820
123710
|
cloudId: Scalars['ID']['input'];
|
|
122821
123711
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -123134,6 +124024,11 @@ export declare type MutationCsmAi_DeleteWidgetArgs = {
|
|
|
123134
124024
|
helpCenterAri: Scalars['ID']['input'];
|
|
123135
124025
|
widgetId: Scalars['ID']['input'];
|
|
123136
124026
|
};
|
|
124027
|
+
export declare type MutationCsmAi_DeleteWidgetClientKeyArgs = {
|
|
124028
|
+
clientKeyId: Scalars['ID']['input'];
|
|
124029
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
124030
|
+
widgetId: Scalars['ID']['input'];
|
|
124031
|
+
};
|
|
123137
124032
|
export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
|
|
123138
124033
|
helpCenterAri: Scalars['ID']['input'];
|
|
123139
124034
|
widgetId: Scalars['ID']['input'];
|
|
@@ -123349,6 +124244,9 @@ export declare type MutationDevai_CreateFlowArgs = {
|
|
|
123349
124244
|
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
123350
124245
|
repoUrl: Scalars['URL']['input'];
|
|
123351
124246
|
};
|
|
124247
|
+
export declare type MutationDevai_CreatePullRequestArgs = {
|
|
124248
|
+
input: DevAiRovoDevCreatePullRequestInput;
|
|
124249
|
+
};
|
|
123352
124250
|
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
123353
124251
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
123354
124252
|
issueAri: Scalars['ID']['input'];
|
|
@@ -123509,6 +124407,9 @@ export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
|
123509
124407
|
export declare type MutationGoals_DeleteRiskArgs = {
|
|
123510
124408
|
input: TownsquareGoalsDeleteRiskInput;
|
|
123511
124409
|
};
|
|
124410
|
+
export declare type MutationGoals_EditArgs = {
|
|
124411
|
+
input?: InputMaybe<TownsquareGoalsEditInput>;
|
|
124412
|
+
};
|
|
123512
124413
|
export declare type MutationGoals_EditCommentArgs = {
|
|
123513
124414
|
input: TownsquareGoalsEditCommentInput;
|
|
123514
124415
|
};
|
|
@@ -123590,6 +124491,9 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
123590
124491
|
export declare type MutationGoals_ShareUpdateArgs = {
|
|
123591
124492
|
input: TownsquareGoalsShareUpdateInput;
|
|
123592
124493
|
};
|
|
124494
|
+
export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
124495
|
+
input: TownsquareGoalsUnlinkJiraAlignProjectInput;
|
|
124496
|
+
};
|
|
123593
124497
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
123594
124498
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
123595
124499
|
};
|
|
@@ -124033,11 +124937,15 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
124033
124937
|
workspaceAri: Scalars['ID']['input'];
|
|
124034
124938
|
};
|
|
124035
124939
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
124036
|
-
|
|
124940
|
+
feedbackAri: Scalars['ID']['input'];
|
|
124037
124941
|
};
|
|
124038
124942
|
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
124039
|
-
projectAri: Scalars['ID']['input'];
|
|
124040
124943
|
title: Scalars['String']['input'];
|
|
124944
|
+
workspaceAri: Scalars['ID']['input'];
|
|
124945
|
+
};
|
|
124946
|
+
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
124947
|
+
id: Scalars['ID']['input'];
|
|
124948
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
124041
124949
|
};
|
|
124042
124950
|
export declare type MutationKnowledgeBaseArgs = {
|
|
124043
124951
|
cloudId: Scalars['ID']['input'];
|
|
@@ -124258,6 +125166,9 @@ export declare type MutationProjects_EditUpdateArgs = {
|
|
|
124258
125166
|
export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
124259
125167
|
input: TownsquareProjectsEditUserCustomFieldInput;
|
|
124260
125168
|
};
|
|
125169
|
+
export declare type MutationProjects_GrantAccessArgs = {
|
|
125170
|
+
input: TownsquareProjectGrantAccessInput;
|
|
125171
|
+
};
|
|
124261
125172
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
124262
125173
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
124263
125174
|
};
|
|
@@ -124285,9 +125196,15 @@ export declare type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
124285
125196
|
export declare type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
124286
125197
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
124287
125198
|
};
|
|
125199
|
+
export declare type MutationProjects_RevokeAccessArgs = {
|
|
125200
|
+
input: TownsquareProjectRevokeAccessInput;
|
|
125201
|
+
};
|
|
124288
125202
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
124289
125203
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
124290
125204
|
};
|
|
125205
|
+
export declare type MutationProjects_SetUserWatchingTeamArgs = {
|
|
125206
|
+
input: TownsquareProjectsSetUserWatchingTeamInput;
|
|
125207
|
+
};
|
|
124291
125208
|
export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
124292
125209
|
input?: InputMaybe<TownsquareProjectsSetWatchingProjectInput>;
|
|
124293
125210
|
};
|
|
@@ -124770,6 +125687,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
124770
125687
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
124771
125688
|
draftPageId: Scalars['String']['input'];
|
|
124772
125689
|
};
|
|
125690
|
+
export declare type MutationStakeholderComms_RemoveCustomDomainArgs = {
|
|
125691
|
+
input: StakeholderCommsRemoveCustomDomainInput;
|
|
125692
|
+
};
|
|
124773
125693
|
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
124774
125694
|
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
124775
125695
|
};
|
|
@@ -127873,6 +128793,7 @@ export declare type PublishedContentProperties = {
|
|
|
127873
128793
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
127874
128794
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
127875
128795
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
128796
|
+
hasBeenTitled?: Maybe<Scalars['Boolean']['output']>;
|
|
127876
128797
|
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
127877
128798
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
127878
128799
|
};
|
|
@@ -127957,6 +128878,7 @@ export declare type Query = {
|
|
|
127957
128878
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
127958
128879
|
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
127959
128880
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
128881
|
+
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
127960
128882
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
127961
128883
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
127962
128884
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
@@ -127995,6 +128917,7 @@ export declare type Query = {
|
|
|
127995
128917
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
127996
128918
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
127997
128919
|
agentStudio_batchEvaluationJobList?: Maybe<AgentStudioBatchEvaluationJobsResult>;
|
|
128920
|
+
agentStudio_batchEvaluationResultByConversationId?: Maybe<AgentStudioEvaluationResult>;
|
|
127998
128921
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
127999
128922
|
agentStudio_canAddMcpServer?: Maybe<AgentStudioCanAddMcpServerResult>;
|
|
128000
128923
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
@@ -128119,11 +129042,13 @@ export declare type Query = {
|
|
|
128119
129042
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
128120
129043
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
128121
129044
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
129045
|
+
avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
|
|
128122
129046
|
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
128123
129047
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
128124
129048
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
128125
129049
|
blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
128126
129050
|
blockService_getBlock?: Maybe<BlockServiceBlockPayload>;
|
|
129051
|
+
blockService_getDocumentReferenceBlocks?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
|
|
128127
129052
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
128128
129053
|
boardScope?: Maybe<BoardScope>;
|
|
128129
129054
|
buildsByApp?: Maybe<BuildConnection>;
|
|
@@ -128154,6 +129079,9 @@ export declare type Query = {
|
|
|
128154
129079
|
ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
128155
129080
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
128156
129081
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
129082
|
+
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
129083
|
+
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
129084
|
+
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
128157
129085
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
128158
129086
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
128159
129087
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -128229,6 +129157,7 @@ export declare type Query = {
|
|
|
128229
129157
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
128230
129158
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
128231
129159
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
129160
|
+
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
128232
129161
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
128233
129162
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
128234
129163
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -128258,6 +129187,7 @@ export declare type Query = {
|
|
|
128258
129187
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
128259
129188
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
128260
129189
|
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
129190
|
+
confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
|
|
128261
129191
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
128262
129192
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
128263
129193
|
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
@@ -128277,6 +129207,7 @@ export declare type Query = {
|
|
|
128277
129207
|
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
128278
129208
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
128279
129209
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
129210
|
+
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
128280
129211
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
128281
129212
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
128282
129213
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
@@ -128323,6 +129254,8 @@ export declare type Query = {
|
|
|
128323
129254
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
128324
129255
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
128325
129256
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
129257
|
+
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
129258
|
+
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
128326
129259
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
128327
129260
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
128328
129261
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
@@ -128338,6 +129271,7 @@ export declare type Query = {
|
|
|
128338
129271
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
128339
129272
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
128340
129273
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
129274
|
+
cpls_settings?: Maybe<CplsSettings>;
|
|
128341
129275
|
cpls_testFeatureGate?: Maybe<Scalars['Boolean']['output']>;
|
|
128342
129276
|
cpls_workView?: Maybe<CplsWorkView>;
|
|
128343
129277
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
@@ -128477,12 +129411,15 @@ export declare type Query = {
|
|
|
128477
129411
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
128478
129412
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
128479
129413
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
129414
|
+
goals_byKey?: Maybe<TownsquareGoal>;
|
|
128480
129415
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
129416
|
+
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
128481
129417
|
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
128482
129418
|
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
128483
129419
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
128484
129420
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
128485
129421
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
129422
|
+
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
128486
129423
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
128487
129424
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
128488
129425
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -128597,8 +129534,10 @@ export declare type Query = {
|
|
|
128597
129534
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
128598
129535
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
128599
129536
|
jsw?: Maybe<JswQuery>;
|
|
129537
|
+
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
128600
129538
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
128601
129539
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
129540
|
+
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
128602
129541
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
128603
129542
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
128604
129543
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
@@ -128999,6 +129938,14 @@ export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
|
128999
129938
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129000
129939
|
orgId: Scalars['ID']['input'];
|
|
129001
129940
|
};
|
|
129941
|
+
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
129942
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129943
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129944
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
129945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129946
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129947
|
+
orgId: Scalars['ID']['input'];
|
|
129948
|
+
};
|
|
129002
129949
|
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
129003
129950
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129004
129951
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129221,6 +130168,13 @@ export declare type QueryAgentStudio_BatchEvaluationJobListArgs = {
|
|
|
129221
130168
|
productType: AgentStudioProductType;
|
|
129222
130169
|
projectContainerAri: Scalars['ID']['input'];
|
|
129223
130170
|
};
|
|
130171
|
+
export declare type QueryAgentStudio_BatchEvaluationResultByConversationIdArgs = {
|
|
130172
|
+
cloudId: Scalars['String']['input'];
|
|
130173
|
+
conversationId: Scalars['ID']['input'];
|
|
130174
|
+
productType: AgentStudioProductType;
|
|
130175
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
130176
|
+
runId: Scalars['ID']['input'];
|
|
130177
|
+
};
|
|
129224
130178
|
export declare type QueryAgentStudio_BatchEvaluationSummaryArgs = {
|
|
129225
130179
|
cloudId: Scalars['String']['input'];
|
|
129226
130180
|
productType: AgentStudioProductType;
|
|
@@ -129650,8 +130604,10 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
129650
130604
|
};
|
|
129651
130605
|
export declare type QueryAssetsDm_DataSourceTypesArgs = {
|
|
129652
130606
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
130607
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129653
130608
|
cloudId: Scalars['String']['input'];
|
|
129654
130609
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130610
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129655
130611
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
129656
130612
|
sortBy?: InputMaybe<AssetsDmSortByInput>;
|
|
129657
130613
|
workspaceId: Scalars['String']['input'];
|
|
@@ -129670,6 +130626,7 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
129670
130626
|
export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
|
|
129671
130627
|
cloudId: Scalars['ID']['input'];
|
|
129672
130628
|
filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
|
|
130629
|
+
objectClassId?: InputMaybe<Scalars['ID']['input']>;
|
|
129673
130630
|
pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
|
|
129674
130631
|
sortBy?: InputMaybe<AssetsDmDefaultAttributeMappingSortBy>;
|
|
129675
130632
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -129879,6 +130836,9 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
129879
130836
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
129880
130837
|
input: AvpGetDashboardTemplatesInput;
|
|
129881
130838
|
};
|
|
130839
|
+
export declare type QueryAvpanalytics_GetmodeldataArgs = {
|
|
130840
|
+
input?: InputMaybe<AvpAnalyticsGetModelDataRequest>;
|
|
130841
|
+
};
|
|
129882
130842
|
export declare type QueryAvpanalytics_ListModelsArgs = {
|
|
129883
130843
|
input?: InputMaybe<AvpAnalyticsListModelsRequest>;
|
|
129884
130844
|
};
|
|
@@ -129893,6 +130853,10 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
129893
130853
|
};
|
|
129894
130854
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
129895
130855
|
blockAri: Scalars['String']['input'];
|
|
130856
|
+
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
130857
|
+
};
|
|
130858
|
+
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
130859
|
+
documentAri: Scalars['String']['input'];
|
|
129896
130860
|
};
|
|
129897
130861
|
export declare type QueryBlockedAccessRestrictionsArgs = {
|
|
129898
130862
|
accessType: ResourceAccessType;
|
|
@@ -130004,6 +130968,18 @@ export declare type QueryCfo_AnalyticsArgs = {
|
|
|
130004
130968
|
endDate: Scalars['String']['input'];
|
|
130005
130969
|
startDate: Scalars['String']['input'];
|
|
130006
130970
|
};
|
|
130971
|
+
export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsArgs = {
|
|
130972
|
+
cloudId: Scalars['ID']['input'];
|
|
130973
|
+
projectId: Scalars['String']['input'];
|
|
130974
|
+
};
|
|
130975
|
+
export declare type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
|
|
130976
|
+
cloudId: Scalars['ID']['input'];
|
|
130977
|
+
issueId: Scalars['String']['input'];
|
|
130978
|
+
};
|
|
130979
|
+
export declare type QueryChangeManagement_RovoRiskAssessmentSettingsArgs = {
|
|
130980
|
+
cloudId: Scalars['ID']['input'];
|
|
130981
|
+
projectId: Scalars['String']['input'];
|
|
130982
|
+
};
|
|
130007
130983
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
130008
130984
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
130009
130985
|
};
|
|
@@ -130336,6 +131312,9 @@ export declare type QueryConfluence_GetPlaylistArgs = {
|
|
|
130336
131312
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130337
131313
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130338
131314
|
};
|
|
131315
|
+
export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
131316
|
+
cloudId: Scalars['ID']['input'];
|
|
131317
|
+
};
|
|
130339
131318
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
130340
131319
|
cloudId: Scalars['ID']['input'];
|
|
130341
131320
|
};
|
|
@@ -130468,6 +131447,13 @@ export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
|
130468
131447
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130469
131448
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130470
131449
|
};
|
|
131450
|
+
export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
131451
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131452
|
+
cloudId: Scalars['ID']['input'];
|
|
131453
|
+
combinationId: Scalars['String']['input'];
|
|
131454
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131455
|
+
principalTypes?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionPrincipalType>>>;
|
|
131456
|
+
};
|
|
130471
131457
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
130472
131458
|
cloudId: Scalars['ID']['input'];
|
|
130473
131459
|
spaceKey: Scalars['String']['input'];
|
|
@@ -130576,6 +131562,14 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
|
130576
131562
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
130577
131563
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
130578
131564
|
};
|
|
131565
|
+
export declare type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
131566
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131567
|
+
cloudId: Scalars['ID']['input'];
|
|
131568
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131569
|
+
permissionCombinationId: Scalars['String']['input'];
|
|
131570
|
+
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
131571
|
+
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
131572
|
+
};
|
|
130579
131573
|
export declare type QueryConfluence_StorageArgs = {
|
|
130580
131574
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130581
131575
|
};
|
|
@@ -130824,6 +131818,13 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
130824
131818
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130825
131819
|
pageId: Scalars['ID']['input'];
|
|
130826
131820
|
};
|
|
131821
|
+
export declare type QueryConvoAiAgentSession_GetByIdArgs = {
|
|
131822
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
131823
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
131824
|
+
};
|
|
131825
|
+
export declare type QueryConvoAiAgentSession_GetByIdsArgs = {
|
|
131826
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
131827
|
+
};
|
|
130827
131828
|
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
130828
131829
|
cloudId: Scalars['ID']['input'];
|
|
130829
131830
|
pageTitle: Scalars['String']['input'];
|
|
@@ -130924,6 +131925,9 @@ export declare type QueryCpls_PeopleViewArgs = {
|
|
|
130924
131925
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
130925
131926
|
id: Scalars['ID']['input'];
|
|
130926
131927
|
};
|
|
131928
|
+
export declare type QueryCpls_SettingsArgs = {
|
|
131929
|
+
id: Scalars['ID']['input'];
|
|
131930
|
+
};
|
|
130927
131931
|
export declare type QueryCpls_TestFeatureGateArgs = {
|
|
130928
131932
|
cloudId: Scalars['ID']['input'];
|
|
130929
131933
|
};
|
|
@@ -131462,9 +132466,19 @@ export declare type QueryGoals_ByIdArgs = {
|
|
|
131462
132466
|
export declare type QueryGoals_ByIdsArgs = {
|
|
131463
132467
|
goalIds: Array<Scalars['ID']['input']>;
|
|
131464
132468
|
};
|
|
132469
|
+
export declare type QueryGoals_ByKeyArgs = {
|
|
132470
|
+
containerId: Scalars['ID']['input'];
|
|
132471
|
+
goalKey: Scalars['String']['input'];
|
|
132472
|
+
};
|
|
131465
132473
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
131466
132474
|
goalTypeId: Scalars['ID']['input'];
|
|
131467
132475
|
};
|
|
132476
|
+
export declare type QueryGoals_GoalTypesArgs = {
|
|
132477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132478
|
+
containerId: Scalars['ID']['input'];
|
|
132479
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132480
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
132481
|
+
};
|
|
131468
132482
|
export declare type QueryGoals_GoalTypesByIdsArgs = {
|
|
131469
132483
|
goalTypeIds: Array<Scalars['ID']['input']>;
|
|
131470
132484
|
};
|
|
@@ -131484,6 +132498,13 @@ export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
|
131484
132498
|
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
131485
132499
|
metricIds: Array<Scalars['ID']['input']>;
|
|
131486
132500
|
};
|
|
132501
|
+
export declare type QueryGoals_SearchArgs = {
|
|
132502
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132503
|
+
containerId: Scalars['ID']['input'];
|
|
132504
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132505
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
132506
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
132507
|
+
};
|
|
131487
132508
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
131488
132509
|
contextAri: Scalars['ID']['input'];
|
|
131489
132510
|
};
|
|
@@ -131912,12 +132933,19 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
131912
132933
|
conversationAri: Scalars['ID']['input'];
|
|
131913
132934
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131914
132935
|
};
|
|
132936
|
+
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
132937
|
+
id: Scalars['ID']['input'];
|
|
132938
|
+
spaceAri: Scalars['ID']['input'];
|
|
132939
|
+
};
|
|
131915
132940
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
131916
132941
|
ids: Array<Scalars['ID']['input']>;
|
|
131917
132942
|
};
|
|
131918
132943
|
export declare type QueryKitsune_NodeArgs = {
|
|
131919
132944
|
id: Scalars['ID']['input'];
|
|
131920
132945
|
};
|
|
132946
|
+
export declare type QueryKitsune_SpacesArgs = {
|
|
132947
|
+
ids: Array<Scalars['ID']['input']>;
|
|
132948
|
+
};
|
|
131921
132949
|
export declare type QueryKnowledgeBaseArgs = {
|
|
131922
132950
|
cloudId: Scalars['ID']['input'];
|
|
131923
132951
|
};
|
|
@@ -132204,6 +133232,7 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
132204
133232
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132205
133233
|
issueId: Scalars['String']['input'];
|
|
132206
133234
|
projectKey: Scalars['String']['input'];
|
|
133235
|
+
scopeType?: InputMaybe<JiraPlaybookScopeType>;
|
|
132207
133236
|
};
|
|
132208
133237
|
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
132209
133238
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154332,6 +155361,7 @@ export declare type ShepherdActorActivity = {
|
|
|
154332
155361
|
eventType: Scalars['String']['output'];
|
|
154333
155362
|
id: Scalars['String']['output'];
|
|
154334
155363
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
155364
|
+
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
154335
155365
|
time: Scalars['DateTime']['output'];
|
|
154336
155366
|
};
|
|
154337
155367
|
export declare type ShepherdActorInput = {
|
|
@@ -154727,6 +155757,12 @@ export declare type ShepherdBulkRedactionInput = {
|
|
|
154727
155757
|
redactions: Array<ShepherdBulkRedactionItemInput>;
|
|
154728
155758
|
workspaceId: Scalars['ID']['input'];
|
|
154729
155759
|
};
|
|
155760
|
+
export declare type ShepherdBulkRedactionItemErrorPayload = {
|
|
155761
|
+
__typename?: 'ShepherdBulkRedactionItemErrorPayload';
|
|
155762
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
155763
|
+
id: Scalars['ID']['output'];
|
|
155764
|
+
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
155765
|
+
};
|
|
154730
155766
|
export declare type ShepherdBulkRedactionItemInput = {
|
|
154731
155767
|
contentHash?: InputMaybe<Scalars['String']['input']>;
|
|
154732
155768
|
detection: Scalars['String']['input'];
|
|
@@ -154739,15 +155775,15 @@ export declare type ShepherdBulkRedactionItemInput = {
|
|
|
154739
155775
|
};
|
|
154740
155776
|
export declare enum ShepherdBulkRedactionItemStatus {
|
|
154741
155777
|
Failed = "FAILED",
|
|
154742
|
-
|
|
155778
|
+
InProgress = "IN_PROGRESS",
|
|
155779
|
+
Succeeded = "SUCCEEDED"
|
|
155780
|
+
}
|
|
155781
|
+
export declare enum ShepherdBulkRedactionJobStatus {
|
|
155782
|
+
Failed = "FAILED",
|
|
155783
|
+
InProgress = "IN_PROGRESS",
|
|
155784
|
+
PartiallySucceeded = "PARTIALLY_SUCCEEDED",
|
|
154743
155785
|
Succeeded = "SUCCEEDED"
|
|
154744
155786
|
}
|
|
154745
|
-
export declare type ShepherdBulkRedactionItemStatusPayload = {
|
|
154746
|
-
__typename?: 'ShepherdBulkRedactionItemStatusPayload';
|
|
154747
|
-
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
154748
|
-
id: Scalars['ID']['output'];
|
|
154749
|
-
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
154750
|
-
};
|
|
154751
155787
|
export declare type ShepherdBulkRedactionPayload = {
|
|
154752
155788
|
__typename?: 'ShepherdBulkRedactionPayload';
|
|
154753
155789
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -154757,7 +155793,8 @@ export declare type ShepherdBulkRedactionPayload = {
|
|
|
154757
155793
|
};
|
|
154758
155794
|
export declare type ShepherdBulkRedactionStatusPayload = {
|
|
154759
155795
|
__typename?: 'ShepherdBulkRedactionStatusPayload';
|
|
154760
|
-
|
|
155796
|
+
jobStatus?: Maybe<ShepherdBulkRedactionJobStatus>;
|
|
155797
|
+
redactionErrors: Array<ShepherdBulkRedactionItemErrorPayload>;
|
|
154761
155798
|
};
|
|
154762
155799
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
154763
155800
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
@@ -156154,6 +157191,7 @@ export declare type SoftwareBoard = {
|
|
|
156154
157191
|
id?: Maybe<Scalars['ID']['output']>;
|
|
156155
157192
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
156156
157193
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
157194
|
+
mediaReadConfig?: Maybe<JiraMediaReadConfig>;
|
|
156157
157195
|
name?: Maybe<Scalars['String']['output']>;
|
|
156158
157196
|
rankCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
156159
157197
|
showDaysInColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -156186,6 +157224,7 @@ export declare type SoftwareCard = {
|
|
|
156186
157224
|
fixVersionsIds: Array<Scalars['ID']['output']>;
|
|
156187
157225
|
flagged?: Maybe<Scalars['Boolean']['output']>;
|
|
156188
157226
|
id?: Maybe<Scalars['ID']['output']>;
|
|
157227
|
+
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
156189
157228
|
key?: Maybe<Scalars['String']['output']>;
|
|
156190
157229
|
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
156191
157230
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -156917,6 +157956,8 @@ export declare type SpfAsk = Node & {
|
|
|
156917
157956
|
owner?: Maybe<User>;
|
|
156918
157957
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
156919
157958
|
priority: SpfAskPriority;
|
|
157959
|
+
proposedBy?: Maybe<User>;
|
|
157960
|
+
proposedDate?: Maybe<SpfAskTargetDate>;
|
|
156920
157961
|
receivingTeam?: Maybe<TeamV2>;
|
|
156921
157962
|
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
156922
157963
|
status: SpfAskStatus;
|
|
@@ -157176,8 +158217,12 @@ export declare type SpfAskUpdate = {
|
|
|
157176
158217
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
157177
158218
|
description?: Maybe<Scalars['String']['output']>;
|
|
157178
158219
|
id: Scalars['ID']['output'];
|
|
158220
|
+
newProposedBy?: Maybe<Scalars['String']['output']>;
|
|
158221
|
+
newProposedDate?: Maybe<SpfAskTargetDate>;
|
|
157179
158222
|
newStatus?: Maybe<SpfAskStatus>;
|
|
157180
158223
|
newTargetDate?: Maybe<SpfAskTargetDate>;
|
|
158224
|
+
oldProposedBy?: Maybe<Scalars['String']['output']>;
|
|
158225
|
+
oldProposedDate?: Maybe<SpfAskTargetDate>;
|
|
157181
158226
|
oldStatus?: Maybe<SpfAskStatus>;
|
|
157182
158227
|
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
157183
158228
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -157241,6 +158286,7 @@ export declare type SpfCreateAskInput = {
|
|
|
157241
158286
|
export declare type SpfCreateAskUpdateInput = {
|
|
157242
158287
|
askId: Scalars['String']['input'];
|
|
157243
158288
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
158289
|
+
proposedDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
157244
158290
|
status?: InputMaybe<SpfAskStatus>;
|
|
157245
158291
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
157246
158292
|
};
|
|
@@ -158602,6 +159648,17 @@ export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
|
158602
159648
|
message?: Maybe<Scalars['String']['output']>;
|
|
158603
159649
|
title?: Maybe<Scalars['String']['output']>;
|
|
158604
159650
|
};
|
|
159651
|
+
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
159652
|
+
domain: Scalars['String']['input'];
|
|
159653
|
+
pageId: Scalars['String']['input'];
|
|
159654
|
+
};
|
|
159655
|
+
export declare type StakeholderCommsRemoveCustomDomainResponse = {
|
|
159656
|
+
__typename?: 'StakeholderCommsRemoveCustomDomainResponse';
|
|
159657
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
159658
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
159659
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
159660
|
+
success: Scalars['Boolean']['output'];
|
|
159661
|
+
};
|
|
158605
159662
|
export declare type StakeholderCommsResendInviteInput = {
|
|
158606
159663
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
158607
159664
|
emailId: Scalars['String']['input'];
|
|
@@ -159188,7 +160245,7 @@ export declare type Subscription = {
|
|
|
159188
160245
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
159189
160246
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
159190
160247
|
jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
|
|
159191
|
-
kitsune_onFeedbackCreated?: Maybe<
|
|
160248
|
+
kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
|
|
159192
160249
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
159193
160250
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
159194
160251
|
migration: MigrationSubscription;
|
|
@@ -159261,7 +160318,6 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
|
|
|
159261
160318
|
workItemId: Scalars['ID']['input'];
|
|
159262
160319
|
};
|
|
159263
160320
|
export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
159264
|
-
id: Scalars['ID']['input'];
|
|
159265
160321
|
spaceAri: Scalars['ID']['input'];
|
|
159266
160322
|
};
|
|
159267
160323
|
export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
@@ -161853,6 +162909,15 @@ export declare type TownsquareGoalsEditGoalTypePairInput = {
|
|
|
161853
162909
|
goalType: TownsquareEditGoalTypeInputV2;
|
|
161854
162910
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
161855
162911
|
};
|
|
162912
|
+
export declare type TownsquareGoalsEditInput = {
|
|
162913
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162914
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
162915
|
+
goalId: Scalars['ID']['input'];
|
|
162916
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
162917
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
162918
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
162919
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
162920
|
+
};
|
|
161856
162921
|
export declare type TownsquareGoalsEditLearningInput = {
|
|
161857
162922
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161858
162923
|
learningId: Scalars['ID']['input'];
|
|
@@ -161901,6 +162966,12 @@ export declare type TownsquareGoalsEditNumberCustomFieldPayload = {
|
|
|
161901
162966
|
success: Scalars['Boolean']['output'];
|
|
161902
162967
|
valueNode?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
|
|
161903
162968
|
};
|
|
162969
|
+
export declare type TownsquareGoalsEditPayload = {
|
|
162970
|
+
__typename?: 'TownsquareGoalsEditPayload';
|
|
162971
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162972
|
+
goal?: Maybe<TownsquareGoal>;
|
|
162973
|
+
success: Scalars['Boolean']['output'];
|
|
162974
|
+
};
|
|
161904
162975
|
export declare type TownsquareGoalsEditRiskInput = {
|
|
161905
162976
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
161906
162977
|
riskId: Scalars['ID']['input'];
|
|
@@ -162094,6 +163165,17 @@ export declare type TownsquareGoalsShareUpdatePayload = {
|
|
|
162094
163165
|
isShared: Scalars['Boolean']['output'];
|
|
162095
163166
|
success: Scalars['Boolean']['output'];
|
|
162096
163167
|
};
|
|
163168
|
+
export declare type TownsquareGoalsUnlinkJiraAlignProjectInput = {
|
|
163169
|
+
goalId: Scalars['ID']['input'];
|
|
163170
|
+
jiraAlignProjectId: Scalars['ID']['input'];
|
|
163171
|
+
};
|
|
163172
|
+
export declare type TownsquareGoalsUnlinkJiraAlignProjectPayload = {
|
|
163173
|
+
__typename?: 'TownsquareGoalsUnlinkJiraAlignProjectPayload';
|
|
163174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163175
|
+
goalId?: Maybe<Scalars['ID']['output']>;
|
|
163176
|
+
jiraAlignProjectId?: Maybe<Scalars['ID']['output']>;
|
|
163177
|
+
success: Scalars['Boolean']['output'];
|
|
163178
|
+
};
|
|
162097
163179
|
export declare type TownsquareGoalsUnlinkWorkItemInput = {
|
|
162098
163180
|
goalId: Scalars['ID']['input'];
|
|
162099
163181
|
workItemId: Scalars['ID']['input'];
|
|
@@ -162551,6 +163633,10 @@ export declare enum TownsquareProjectAccessRole {
|
|
|
162551
163633
|
Editor = "EDITOR",
|
|
162552
163634
|
Viewer = "VIEWER"
|
|
162553
163635
|
}
|
|
163636
|
+
export declare enum TownsquareProjectAccessRoleInput {
|
|
163637
|
+
Editor = "EDITOR",
|
|
163638
|
+
Viewer = "VIEWER"
|
|
163639
|
+
}
|
|
162554
163640
|
export declare type TownsquareProjectCapabilities = {
|
|
162555
163641
|
__typename?: 'TownsquareProjectCapabilities';
|
|
162556
163642
|
canAddContributors?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162655,6 +163741,19 @@ export declare enum TownsquareProjectFusionField {
|
|
|
162655
163741
|
Status = "STATUS",
|
|
162656
163742
|
Summary = "SUMMARY"
|
|
162657
163743
|
}
|
|
163744
|
+
export declare type TownsquareProjectGrantAccessInput = {
|
|
163745
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163746
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
163747
|
+
projectId: Scalars['ID']['input'];
|
|
163748
|
+
role: TownsquareProjectAccessRoleInput;
|
|
163749
|
+
};
|
|
163750
|
+
export declare type TownsquareProjectGrantAccessPayload = {
|
|
163751
|
+
__typename?: 'TownsquareProjectGrantAccessPayload';
|
|
163752
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
163753
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163754
|
+
project?: Maybe<TownsquareProject>;
|
|
163755
|
+
success: Scalars['Boolean']['output'];
|
|
163756
|
+
};
|
|
162658
163757
|
export declare enum TownsquareProjectPhase {
|
|
162659
163758
|
Done = "done",
|
|
162660
163759
|
InProgress = "in_progress",
|
|
@@ -162667,6 +163766,17 @@ export declare type TownsquareProjectPhaseDetails = {
|
|
|
162667
163766
|
id: Scalars['Int']['output'];
|
|
162668
163767
|
name?: Maybe<TownsquareProjectPhase>;
|
|
162669
163768
|
};
|
|
163769
|
+
export declare type TownsquareProjectRevokeAccessInput = {
|
|
163770
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
163771
|
+
projectId: Scalars['ID']['input'];
|
|
163772
|
+
};
|
|
163773
|
+
export declare type TownsquareProjectRevokeAccessPayload = {
|
|
163774
|
+
__typename?: 'TownsquareProjectRevokeAccessPayload';
|
|
163775
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163776
|
+
project?: Maybe<TownsquareProject>;
|
|
163777
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
163778
|
+
success: Scalars['Boolean']['output'];
|
|
163779
|
+
};
|
|
162670
163780
|
export declare enum TownsquareProjectSortEnum {
|
|
162671
163781
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
162672
163782
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -163236,6 +164346,17 @@ export declare type TownsquareProjectsSetDependencyPayload = {
|
|
|
163236
164346
|
projectDependency?: Maybe<TownsquareProjectDependency>;
|
|
163237
164347
|
success: Scalars['Boolean']['output'];
|
|
163238
164348
|
};
|
|
164349
|
+
export declare type TownsquareProjectsSetUserWatchingTeamInput = {
|
|
164350
|
+
containerId: Scalars['ID']['input'];
|
|
164351
|
+
isWatching: Scalars['Boolean']['input'];
|
|
164352
|
+
teamId: Scalars['ID']['input'];
|
|
164353
|
+
};
|
|
164354
|
+
export declare type TownsquareProjectsSetUserWatchingTeamPayload = {
|
|
164355
|
+
__typename?: 'TownsquareProjectsSetUserWatchingTeamPayload';
|
|
164356
|
+
errors?: Maybe<Array<MutationError>>;
|
|
164357
|
+
success: Scalars['Boolean']['output'];
|
|
164358
|
+
team?: Maybe<TeamV2>;
|
|
164359
|
+
};
|
|
163239
164360
|
export declare type TownsquareProjectsSetWatchingProjectInput = {
|
|
163240
164361
|
isWatching: Scalars['Boolean']['input'];
|
|
163241
164362
|
projectId: Scalars['ID']['input'];
|
|
@@ -166137,6 +167258,8 @@ export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
|
166137
167258
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
166138
167259
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
166139
167260
|
boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
|
|
167261
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
167262
|
+
id: Scalars['ID']['output'];
|
|
166140
167263
|
};
|
|
166141
167264
|
export declare type TrelloMemberPrefs = {
|
|
166142
167265
|
__typename?: 'TrelloMemberPrefs';
|
|
@@ -170037,6 +171160,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
170037
171160
|
name: Scalars['String']['input'];
|
|
170038
171161
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
170039
171162
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
171163
|
+
taskId?: InputMaybe<Scalars['ID']['input']>;
|
|
170040
171164
|
type: JiraPlaybookStepType;
|
|
170041
171165
|
};
|
|
170042
171166
|
export declare type UpdateMetadataInput = {
|
|
@@ -171532,6 +172656,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
171532
172656
|
};
|
|
171533
172657
|
export declare type WhiteboardFeatures = {
|
|
171534
172658
|
__typename?: 'WhiteboardFeatures';
|
|
172659
|
+
advancedDiagrams?: Maybe<ConfluenceAdvancedDiagramsFeature>;
|
|
171535
172660
|
cloudArchitectureShapes?: Maybe<ConfluenceCloudArchitectureShapesFeature>;
|
|
171536
172661
|
smartConnectors?: Maybe<SmartConnectorsFeature>;
|
|
171537
172662
|
smartSections?: Maybe<SmartSectionsFeature>;
|