@forge/cli-shared 8.0.1-next.5 → 8.0.1-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +404 -316
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +37 -48
- package/package.json +2 -2
|
@@ -325,6 +325,14 @@ export declare enum AvpDashboardStatus {
|
|
|
325
325
|
Archived = "ARCHIVED",
|
|
326
326
|
Trashed = "TRASHED"
|
|
327
327
|
}
|
|
328
|
+
export declare type AvpDatasourceLocator = {
|
|
329
|
+
__typename?: 'AVPDatasourceLocator';
|
|
330
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
331
|
+
datasourceAri?: Maybe<Scalars['String']['output']>;
|
|
332
|
+
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
333
|
+
dstype?: Maybe<Scalars['String']['output']>;
|
|
334
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
};
|
|
328
336
|
export declare type AvpDeleteChartInput = {
|
|
329
337
|
chartAri: Scalars['ID']['input'];
|
|
330
338
|
};
|
|
@@ -339,7 +347,7 @@ export declare type AvpEnvVar = {
|
|
|
339
347
|
chartId?: Maybe<Scalars['ID']['output']>;
|
|
340
348
|
dataType?: Maybe<AvpEnvVarDataType>;
|
|
341
349
|
defaultValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
342
|
-
hotTierFilterConfig?: Maybe<Array<Maybe<
|
|
350
|
+
hotTierFilterConfig?: Maybe<Array<Maybe<AvpHotTierFilterConfig>>>;
|
|
343
351
|
id?: Maybe<Scalars['ID']['output']>;
|
|
344
352
|
name?: Maybe<Scalars['String']['output']>;
|
|
345
353
|
operator?: Maybe<Scalars['String']['output']>;
|
|
@@ -353,6 +361,13 @@ export declare enum AvpEnvVarDataType {
|
|
|
353
361
|
NumberRange = "NUMBER_RANGE",
|
|
354
362
|
Text = "TEXT"
|
|
355
363
|
}
|
|
364
|
+
export declare type AvpHotTierFilterConfig = {
|
|
365
|
+
__typename?: 'AVPHotTierFilterConfig';
|
|
366
|
+
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
367
|
+
dimension?: Maybe<Scalars['String']['output']>;
|
|
368
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
369
|
+
semanticModel?: Maybe<Scalars['String']['output']>;
|
|
370
|
+
};
|
|
356
371
|
export declare type AvpMoveCanvasElementInput = {
|
|
357
372
|
dashboardAri: Scalars['ID']['input'];
|
|
358
373
|
sourceElementId: Scalars['ID']['input'];
|
|
@@ -3069,6 +3084,119 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3069
3084
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3070
3085
|
title: Scalars['String']['output'];
|
|
3071
3086
|
};
|
|
3087
|
+
export declare type AssetsDmAdapter = {
|
|
3088
|
+
__typename?: 'AssetsDMAdapter';
|
|
3089
|
+
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
3090
|
+
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
3091
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
3092
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
3093
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3094
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
3095
|
+
};
|
|
3096
|
+
export declare type AssetsDmAdapters = {
|
|
3097
|
+
__typename?: 'AssetsDMAdapters';
|
|
3098
|
+
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3099
|
+
product?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
3100
|
+
};
|
|
3101
|
+
export declare type AssetsDmAutoColumnMappingInput = {
|
|
3102
|
+
delimiter?: InputMaybe<Scalars['String']['input']>;
|
|
3103
|
+
header?: InputMaybe<Scalars['String']['input']>;
|
|
3104
|
+
};
|
|
3105
|
+
export declare type AssetsDmAutoColumnMappingResponse = {
|
|
3106
|
+
__typename?: 'AssetsDMAutoColumnMappingResponse';
|
|
3107
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
3108
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3109
|
+
returnValue?: Maybe<Array<Maybe<AssetsDmMappedColumn>>>;
|
|
3110
|
+
};
|
|
3111
|
+
export declare type AssetsDmDataSource = {
|
|
3112
|
+
__typename?: 'AssetsDMDataSource';
|
|
3113
|
+
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3114
|
+
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3115
|
+
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3116
|
+
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3117
|
+
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3118
|
+
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3119
|
+
statusText?: Maybe<Scalars['String']['output']>;
|
|
3120
|
+
};
|
|
3121
|
+
export declare type AssetsDmDataSourceFormFields = {
|
|
3122
|
+
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3123
|
+
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3124
|
+
dateFormats: Array<AssetsDmDateFormats>;
|
|
3125
|
+
};
|
|
3126
|
+
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
3127
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3128
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3129
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3130
|
+
};
|
|
3131
|
+
export declare type AssetsDmDataSourceInput = {
|
|
3132
|
+
adapterType: Scalars['String']['input'];
|
|
3133
|
+
configuration: Scalars['JSON']['input'];
|
|
3134
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3135
|
+
};
|
|
3136
|
+
export declare type AssetsDmDataSourceResponse = {
|
|
3137
|
+
__typename?: 'AssetsDMDataSourceResponse';
|
|
3138
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3139
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3140
|
+
success: Scalars['Boolean']['output'];
|
|
3141
|
+
};
|
|
3142
|
+
export declare type AssetsDmDataSourceTypes = {
|
|
3143
|
+
__typename?: 'AssetsDMDataSourceTypes';
|
|
3144
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
3145
|
+
defaultGap: Scalars['Int']['output'];
|
|
3146
|
+
name: Scalars['String']['output'];
|
|
3147
|
+
tenantId: Scalars['String']['output'];
|
|
3148
|
+
};
|
|
3149
|
+
export declare type AssetsDmDataSourceTypesConnection = {
|
|
3150
|
+
__typename?: 'AssetsDMDataSourceTypesConnection';
|
|
3151
|
+
nodes: Array<AssetsDmDataSourceTypes>;
|
|
3152
|
+
pageInfo: PageInfo;
|
|
3153
|
+
totalCount: Scalars['Int']['output'];
|
|
3154
|
+
};
|
|
3155
|
+
export declare type AssetsDmDateFormats = {
|
|
3156
|
+
__typename?: 'AssetsDMDateFormats';
|
|
3157
|
+
createdBy: Scalars['String']['output'];
|
|
3158
|
+
dateFormatId: Scalars['ID']['output'];
|
|
3159
|
+
format: Scalars['String']['output'];
|
|
3160
|
+
name: Scalars['String']['output'];
|
|
3161
|
+
tenantId: Scalars['String']['output'];
|
|
3162
|
+
};
|
|
3163
|
+
export declare type AssetsDmGenerateAdapterTokenInput = {
|
|
3164
|
+
adapterType: Scalars['String']['input'];
|
|
3165
|
+
password: Scalars['String']['input'];
|
|
3166
|
+
username: Scalars['String']['input'];
|
|
3167
|
+
};
|
|
3168
|
+
export declare type AssetsDmGenerateAdapterTokenResponse = {
|
|
3169
|
+
__typename?: 'AssetsDMGenerateAdapterTokenResponse';
|
|
3170
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3171
|
+
success: Scalars['Boolean']['output'];
|
|
3172
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
3173
|
+
};
|
|
3174
|
+
export declare type AssetsDmMappedColumn = {
|
|
3175
|
+
__typename?: 'AssetsDMMappedColumn';
|
|
3176
|
+
columnMappingId?: Maybe<Scalars['ID']['output']>;
|
|
3177
|
+
columnType?: Maybe<Scalars['Int']['output']>;
|
|
3178
|
+
dateFormatId?: Maybe<Scalars['String']['output']>;
|
|
3179
|
+
destinationColumnName?: Maybe<Scalars['String']['output']>;
|
|
3180
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3181
|
+
sourceColumnName?: Maybe<Scalars['String']['output']>;
|
|
3182
|
+
};
|
|
3183
|
+
export declare type AssetsDmObjectClass = {
|
|
3184
|
+
__typename?: 'AssetsDMObjectClass';
|
|
3185
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
3186
|
+
computedIssuesCount?: Maybe<Scalars['String']['output']>;
|
|
3187
|
+
dataSources?: Maybe<Array<Maybe<AssetsDmDataSource>>>;
|
|
3188
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3189
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
3190
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
3191
|
+
uniqueRecordsCount?: Maybe<Scalars['String']['output']>;
|
|
3192
|
+
};
|
|
3193
|
+
export declare enum AssetsDmObjectClassEnum {
|
|
3194
|
+
Compute = "Compute",
|
|
3195
|
+
Network = "Network",
|
|
3196
|
+
People = "People",
|
|
3197
|
+
Peripherals = "Peripherals",
|
|
3198
|
+
Software = "Software"
|
|
3199
|
+
}
|
|
3072
3200
|
export declare type AssignIssueParentInput = {
|
|
3073
3201
|
boardId: Scalars['ID']['input'];
|
|
3074
3202
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -6622,6 +6750,7 @@ export declare type CompassCampaignQuery = {
|
|
|
6622
6750
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
6623
6751
|
};
|
|
6624
6752
|
export declare type CompassCampaignQueryFilter = {
|
|
6753
|
+
componentId?: InputMaybe<Scalars['ID']['input']>;
|
|
6625
6754
|
createdByUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
6626
6755
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
6627
6756
|
};
|
|
@@ -7061,7 +7190,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
7061
7190
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
7062
7191
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
7063
7192
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
7064
|
-
topScorecards?: Maybe<
|
|
7193
|
+
topScorecards?: Maybe<CompassTopScorecardConnection>;
|
|
7065
7194
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
7066
7195
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
7067
7196
|
};
|
|
@@ -11059,6 +11188,43 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
11059
11188
|
cursor: Scalars['String']['output'];
|
|
11060
11189
|
node?: Maybe<CompassTeamMetricSource>;
|
|
11061
11190
|
};
|
|
11191
|
+
export declare type CompassTopComponentsQuery = {
|
|
11192
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11193
|
+
sort?: InputMaybe<CompassTopComponentsQuerySort>;
|
|
11194
|
+
};
|
|
11195
|
+
export declare type CompassTopComponentsQuerySort = {
|
|
11196
|
+
order: CompassScorecardQuerySortOrder;
|
|
11197
|
+
};
|
|
11198
|
+
export declare type CompassTopScorecardComponentConnection = {
|
|
11199
|
+
__typename?: 'CompassTopScorecardComponentConnection';
|
|
11200
|
+
edges?: Maybe<Array<CompassTopScorecardComponentEdge>>;
|
|
11201
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
11202
|
+
pageInfo: PageInfo;
|
|
11203
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
11204
|
+
};
|
|
11205
|
+
export declare type CompassTopScorecardComponentEdge = {
|
|
11206
|
+
__typename?: 'CompassTopScorecardComponentEdge';
|
|
11207
|
+
cursor: Scalars['String']['output'];
|
|
11208
|
+
node?: Maybe<CompassComponent>;
|
|
11209
|
+
};
|
|
11210
|
+
export declare type CompassTopScorecardConnection = {
|
|
11211
|
+
__typename?: 'CompassTopScorecardConnection';
|
|
11212
|
+
edges?: Maybe<Array<CompassTopScorecardEdge>>;
|
|
11213
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
11214
|
+
pageInfo: PageInfo;
|
|
11215
|
+
};
|
|
11216
|
+
export declare type CompassTopScorecardEdge = {
|
|
11217
|
+
__typename?: 'CompassTopScorecardEdge';
|
|
11218
|
+
compositeScore: Scalars['Int']['output'];
|
|
11219
|
+
cursor: Scalars['String']['output'];
|
|
11220
|
+
node?: Maybe<CompassScorecard>;
|
|
11221
|
+
topComponents?: Maybe<CompassTopScorecardComponentConnection>;
|
|
11222
|
+
};
|
|
11223
|
+
export declare type CompassTopScorecardEdgeTopComponentsArgs = {
|
|
11224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11226
|
+
query?: InputMaybe<CompassTopComponentsQuery>;
|
|
11227
|
+
};
|
|
11062
11228
|
export declare type CompassTopScorecardsQuery = {
|
|
11063
11229
|
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
11064
11230
|
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
@@ -14100,6 +14266,7 @@ export declare enum ContainerType {
|
|
|
14100
14266
|
}
|
|
14101
14267
|
export declare type Content = {
|
|
14102
14268
|
__typename?: 'Content';
|
|
14269
|
+
aiProperty?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
14103
14270
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
14104
14271
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
14105
14272
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -14171,6 +14338,11 @@ export declare type Content = {
|
|
|
14171
14338
|
version?: Maybe<Version>;
|
|
14172
14339
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
14173
14340
|
};
|
|
14341
|
+
export declare type ContentAiPropertyArgs = {
|
|
14342
|
+
cloudId: Scalars['String']['input'];
|
|
14343
|
+
contentType: KnowledgeGraphContentType;
|
|
14344
|
+
objectType: KnowledgeGraphObjectType;
|
|
14345
|
+
};
|
|
14174
14346
|
export declare type ContentAttachmentsArgs = {
|
|
14175
14347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14176
14348
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -19279,6 +19451,23 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
19279
19451
|
Starting = "STARTING",
|
|
19280
19452
|
Stopped = "STOPPED"
|
|
19281
19453
|
}
|
|
19454
|
+
export declare type DevAiFlowRepository = {
|
|
19455
|
+
__typename?: 'DevAiFlowRepository';
|
|
19456
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
19457
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19458
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19459
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19460
|
+
};
|
|
19461
|
+
export declare type DevAiFlowRepositoryConnection = {
|
|
19462
|
+
__typename?: 'DevAiFlowRepositoryConnection';
|
|
19463
|
+
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
19464
|
+
pageInfo: PageInfo;
|
|
19465
|
+
};
|
|
19466
|
+
export declare type DevAiFlowRepositoryEdge = {
|
|
19467
|
+
__typename?: 'DevAiFlowRepositoryEdge';
|
|
19468
|
+
cursor: Scalars['String']['output'];
|
|
19469
|
+
node?: Maybe<DevAiFlowRepository>;
|
|
19470
|
+
};
|
|
19282
19471
|
export declare type DevAiFlowSession = {
|
|
19283
19472
|
__typename?: 'DevAiFlowSession';
|
|
19284
19473
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -28728,12 +28917,16 @@ export declare type GraphStore = {
|
|
|
28728
28917
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28729
28918
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28730
28919
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28920
|
+
userSnapshottedConfluencePage?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageConnection>;
|
|
28921
|
+
userSnapshottedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection>;
|
|
28731
28922
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28732
28923
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28733
28924
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28734
28925
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28735
28926
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
28736
28927
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
28928
|
+
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
28929
|
+
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
28737
28930
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28738
28931
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28739
28932
|
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
@@ -33140,6 +33333,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
33140
33333
|
id: Scalars['ID']['input'];
|
|
33141
33334
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
33142
33335
|
};
|
|
33336
|
+
export declare type GraphStoreUserSnapshottedConfluencePageArgs = {
|
|
33337
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33338
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33339
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33340
|
+
id: Scalars['ID']['input'];
|
|
33341
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33342
|
+
};
|
|
33343
|
+
export declare type GraphStoreUserSnapshottedConfluencePageInverseArgs = {
|
|
33344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33346
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33347
|
+
id: Scalars['ID']['input'];
|
|
33348
|
+
sort?: InputMaybe<GraphStoreUserSnapshottedConfluencePageSortInput>;
|
|
33349
|
+
};
|
|
33143
33350
|
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
33144
33351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33145
33352
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33182,6 +33389,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
33182
33389
|
id: Scalars['ID']['input'];
|
|
33183
33390
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
33184
33391
|
};
|
|
33392
|
+
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
33393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33394
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33396
|
+
id: Scalars['ID']['input'];
|
|
33397
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33398
|
+
};
|
|
33399
|
+
export declare type GraphStoreUserTrashedConfluenceContentInverseArgs = {
|
|
33400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33401
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33403
|
+
id: Scalars['ID']['input'];
|
|
33404
|
+
sort?: InputMaybe<GraphStoreUserTrashedConfluenceContentSortInput>;
|
|
33405
|
+
};
|
|
33185
33406
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
33186
33407
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33187
33408
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35261,7 +35482,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35261
35482
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35262
35483
|
id: Scalars['ID']['output'];
|
|
35263
35484
|
};
|
|
35264
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35485
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35265
35486
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
35266
35487
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
35267
35488
|
value: Scalars['Int']['output'];
|
|
@@ -35296,7 +35517,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
35296
35517
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
35297
35518
|
id: Scalars['ID']['output'];
|
|
35298
35519
|
};
|
|
35299
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35520
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35300
35521
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
35301
35522
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
35302
35523
|
value: Scalars['String']['output'];
|
|
@@ -35306,19 +35527,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35306
35527
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35307
35528
|
id: Scalars['ID']['output'];
|
|
35308
35529
|
};
|
|
35309
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35530
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35310
35531
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
35311
35532
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
35312
35533
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
35313
35534
|
id: Scalars['ID']['output'];
|
|
35314
35535
|
};
|
|
35315
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35536
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35316
35537
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
35317
35538
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
35318
35539
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
35319
35540
|
id: Scalars['ID']['output'];
|
|
35320
35541
|
};
|
|
35321
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35542
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35322
35543
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
35323
35544
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
35324
35545
|
value: Scalars['Boolean']['output'];
|
|
@@ -35417,7 +35638,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
35417
35638
|
V2 = "V2",
|
|
35418
35639
|
V3 = "V3"
|
|
35419
35640
|
}
|
|
35420
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition |
|
|
35641
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | 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 | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35421
35642
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35422
35643
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35423
35644
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -47321,6 +47542,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
47321
47542
|
};
|
|
47322
47543
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47323
47544
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47545
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
47546
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageConnection';
|
|
47547
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageEdge>>>;
|
|
47548
|
+
pageInfo: PageInfo;
|
|
47549
|
+
};
|
|
47550
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageEdge = {
|
|
47551
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageEdge';
|
|
47552
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47553
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47554
|
+
id: Scalars['ID']['output'];
|
|
47555
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47556
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageUnion>;
|
|
47557
|
+
};
|
|
47558
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection = HasPageInfo & {
|
|
47559
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseConnection';
|
|
47560
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge>>>;
|
|
47561
|
+
pageInfo: PageInfo;
|
|
47562
|
+
};
|
|
47563
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge = {
|
|
47564
|
+
__typename?: 'GraphStoreSimplifiedUserSnapshottedConfluencePageInverseEdge';
|
|
47565
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47566
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47567
|
+
id: Scalars['ID']['output'];
|
|
47568
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47569
|
+
node?: Maybe<GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion>;
|
|
47570
|
+
};
|
|
47571
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47572
|
+
export declare type GraphStoreSimplifiedUserSnapshottedConfluencePageUnion = ConfluencePage;
|
|
47324
47573
|
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
47325
47574
|
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
47326
47575
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
@@ -47405,6 +47654,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47405
47654
|
};
|
|
47406
47655
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47407
47656
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
47657
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
47658
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
47659
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
47660
|
+
pageInfo: PageInfo;
|
|
47661
|
+
};
|
|
47662
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentEdge = {
|
|
47663
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentEdge';
|
|
47664
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47665
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47666
|
+
id: Scalars['ID']['output'];
|
|
47667
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47668
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentUnion>;
|
|
47669
|
+
};
|
|
47670
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection = HasPageInfo & {
|
|
47671
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection';
|
|
47672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge>>>;
|
|
47673
|
+
pageInfo: PageInfo;
|
|
47674
|
+
};
|
|
47675
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge = {
|
|
47676
|
+
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentInverseEdge';
|
|
47677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47678
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47679
|
+
id: Scalars['ID']['output'];
|
|
47680
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47681
|
+
node?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion>;
|
|
47682
|
+
};
|
|
47683
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47684
|
+
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentUnion = ConfluenceBlogPost | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
47408
47685
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47409
47686
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47410
47687
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -48992,6 +49269,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
48992
49269
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
48993
49270
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48994
49271
|
};
|
|
49272
|
+
export declare type GraphStoreUserSnapshottedConfluencePageSortInput = {
|
|
49273
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49274
|
+
};
|
|
48995
49275
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
48996
49276
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48997
49277
|
};
|
|
@@ -49001,6 +49281,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
49001
49281
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
49002
49282
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49003
49283
|
};
|
|
49284
|
+
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
49285
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49286
|
+
};
|
|
49004
49287
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
49005
49288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49006
49289
|
};
|
|
@@ -55512,6 +55795,18 @@ export declare type JiraCreateBoardSource = {
|
|
|
55512
55795
|
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
55513
55796
|
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
55514
55797
|
};
|
|
55798
|
+
export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
55799
|
+
name: Scalars['String']['input'];
|
|
55800
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55801
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
55802
|
+
viewId: Scalars['ID']['input'];
|
|
55803
|
+
};
|
|
55804
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
55805
|
+
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
55806
|
+
boardView?: Maybe<JiraBoardView>;
|
|
55807
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55808
|
+
success: Scalars['Boolean']['output'];
|
|
55809
|
+
};
|
|
55515
55810
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
55516
55811
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
55517
55812
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56033,6 +56328,18 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
56033
56328
|
journeyId: Scalars['ID']['input'];
|
|
56034
56329
|
journeyVersion: Scalars['Long']['input'];
|
|
56035
56330
|
};
|
|
56331
|
+
export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
56332
|
+
columnId: Scalars['ID']['input'];
|
|
56333
|
+
replacementStatusId: Scalars['ID']['input'];
|
|
56334
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56335
|
+
viewId: Scalars['ID']['input'];
|
|
56336
|
+
};
|
|
56337
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56338
|
+
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56339
|
+
boardView?: Maybe<JiraBoardView>;
|
|
56340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56341
|
+
success: Scalars['Boolean']['output'];
|
|
56342
|
+
};
|
|
56036
56343
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
56037
56344
|
cloudId: Scalars['ID']['input'];
|
|
56038
56345
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -65851,6 +66158,18 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
65851
66158
|
errors?: Maybe<Array<MutationError>>;
|
|
65852
66159
|
success: Scalars['Boolean']['output'];
|
|
65853
66160
|
};
|
|
66161
|
+
export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
66162
|
+
columnId: Scalars['ID']['input'];
|
|
66163
|
+
name: Scalars['String']['input'];
|
|
66164
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66165
|
+
viewId: Scalars['ID']['input'];
|
|
66166
|
+
};
|
|
66167
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66168
|
+
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66169
|
+
boardView?: Maybe<JiraBoardView>;
|
|
66170
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66171
|
+
success: Scalars['Boolean']['output'];
|
|
66172
|
+
};
|
|
65854
66173
|
export declare type JiraRenameNavigationItemInput = {
|
|
65855
66174
|
id: Scalars['ID']['input'];
|
|
65856
66175
|
label: Scalars['String']['input'];
|
|
@@ -66899,6 +67218,10 @@ export declare type JiraServiceManagementDecisionEdge = {
|
|
|
66899
67218
|
cursor: Scalars['String']['output'];
|
|
66900
67219
|
node?: Maybe<JiraServiceManagementDecision>;
|
|
66901
67220
|
};
|
|
67221
|
+
export declare type JiraServiceManagementDefaultCommentBehavior = {
|
|
67222
|
+
__typename?: 'JiraServiceManagementDefaultCommentBehavior';
|
|
67223
|
+
issueView?: Maybe<JiraServiceManagementIssueViewDefaultCommentBehavior>;
|
|
67224
|
+
};
|
|
66902
67225
|
export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
66903
67226
|
__typename?: 'JiraServiceManagementDueDatePreviewField';
|
|
66904
67227
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -66974,6 +67297,10 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
66974
67297
|
name: Scalars['String']['output'];
|
|
66975
67298
|
type: Scalars['String']['output'];
|
|
66976
67299
|
};
|
|
67300
|
+
export declare enum JiraServiceManagementIssueViewDefaultCommentBehavior {
|
|
67301
|
+
InternalNote = "INTERNAL_NOTE",
|
|
67302
|
+
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
67303
|
+
}
|
|
66977
67304
|
export declare type JiraServiceManagementLanguage = {
|
|
66978
67305
|
__typename?: 'JiraServiceManagementLanguage';
|
|
66979
67306
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -68626,10 +68953,13 @@ export declare type JiraSubscription = {
|
|
|
68626
68953
|
onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
|
|
68627
68954
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
68628
68955
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68956
|
+
onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
68629
68957
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68958
|
+
onIssueDeletedByProjectsNoEnrichment?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68630
68959
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68631
68960
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
68632
68961
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68962
|
+
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68633
68963
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
68634
68964
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68635
68965
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -68687,10 +69017,18 @@ export declare type JiraSubscriptionOnIssueCreatedByProjectNoEnrichmentArgs = {
|
|
|
68687
69017
|
cloudId: Scalars['ID']['input'];
|
|
68688
69018
|
projectId: Scalars['String']['input'];
|
|
68689
69019
|
};
|
|
69020
|
+
export declare type JiraSubscriptionOnIssueCreatedByProjectsNoEnrichmentArgs = {
|
|
69021
|
+
cloudId: Scalars['ID']['input'];
|
|
69022
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69023
|
+
};
|
|
68690
69024
|
export declare type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
68691
69025
|
cloudId: Scalars['ID']['input'];
|
|
68692
69026
|
projectId: Scalars['String']['input'];
|
|
68693
69027
|
};
|
|
69028
|
+
export declare type JiraSubscriptionOnIssueDeletedByProjectsNoEnrichmentArgs = {
|
|
69029
|
+
cloudId: Scalars['ID']['input'];
|
|
69030
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69031
|
+
};
|
|
68694
69032
|
export declare type JiraSubscriptionOnIssueExportedArgs = {
|
|
68695
69033
|
input: JiraIssueExportInput;
|
|
68696
69034
|
};
|
|
@@ -68702,6 +69040,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
|
68702
69040
|
cloudId: Scalars['ID']['input'];
|
|
68703
69041
|
projectId: Scalars['String']['input'];
|
|
68704
69042
|
};
|
|
69043
|
+
export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
69044
|
+
cloudId: Scalars['ID']['input'];
|
|
69045
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
69046
|
+
};
|
|
68705
69047
|
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
68706
69048
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68707
69049
|
cloudId: Scalars['ID']['input'];
|
|
@@ -78612,6 +78954,9 @@ export declare type Mutation = {
|
|
|
78612
78954
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
78613
78955
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
78614
78956
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
78957
|
+
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
78958
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
78959
|
+
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
78615
78960
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
78616
78961
|
attachDanglingComment?: Maybe<Comment>;
|
|
78617
78962
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
@@ -78836,9 +79181,11 @@ export declare type Mutation = {
|
|
|
78836
79181
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
78837
79182
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
78838
79183
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79184
|
+
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
78839
79185
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
78840
79186
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
78841
79187
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79188
|
+
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
78842
79189
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
78843
79190
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
78844
79191
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
@@ -78847,6 +79194,7 @@ export declare type Mutation = {
|
|
|
78847
79194
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
78848
79195
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
78849
79196
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
79197
|
+
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
78850
79198
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
78851
79199
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
78852
79200
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
@@ -78989,15 +79337,11 @@ export declare type Mutation = {
|
|
|
78989
79337
|
shepherd?: Maybe<ShepherdMutation>;
|
|
78990
79338
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
78991
79339
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
78992
|
-
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
78993
79340
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
78994
79341
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
78995
|
-
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
78996
|
-
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
78997
79342
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
78998
79343
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
78999
79344
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
79000
|
-
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
79001
79345
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
79002
79346
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
79003
79347
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -79008,18 +79352,6 @@ export declare type Mutation = {
|
|
|
79008
79352
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79009
79353
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
79010
79354
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79011
|
-
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
79012
|
-
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
79013
|
-
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
79014
|
-
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
79015
|
-
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
79016
|
-
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
79017
|
-
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
79018
|
-
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
79019
|
-
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
79020
|
-
spf_updateDependencySubmitter?: Maybe<SpfUpdateDependencyPayload>;
|
|
79021
|
-
spf_updateDependencySubmittingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
79022
|
-
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
79023
79355
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
79024
79356
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
79025
79357
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -79195,6 +79527,21 @@ export declare type MutationArchivePolarisInsightsArgs = {
|
|
|
79195
79527
|
export declare type MutationArchiveSpaceArgs = {
|
|
79196
79528
|
input: ArchiveSpaceInput;
|
|
79197
79529
|
};
|
|
79530
|
+
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
79531
|
+
autoColumnMappingInput?: InputMaybe<AssetsDmAutoColumnMappingInput>;
|
|
79532
|
+
cloudId: Scalars['ID']['input'];
|
|
79533
|
+
workspaceId: Scalars['ID']['input'];
|
|
79534
|
+
};
|
|
79535
|
+
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
79536
|
+
cloudId: Scalars['ID']['input'];
|
|
79537
|
+
input: AssetsDmDataSourceInput;
|
|
79538
|
+
workspaceId: Scalars['ID']['input'];
|
|
79539
|
+
};
|
|
79540
|
+
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
79541
|
+
cloudId: Scalars['ID']['input'];
|
|
79542
|
+
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
79543
|
+
workspaceId: Scalars['ID']['input'];
|
|
79544
|
+
};
|
|
79198
79545
|
export declare type MutationAssignIssueParentArgs = {
|
|
79199
79546
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
79200
79547
|
};
|
|
@@ -79940,6 +80287,9 @@ export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
|
79940
80287
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
79941
80288
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
79942
80289
|
};
|
|
80290
|
+
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
80291
|
+
input: JiraCreateBoardViewStatusColumnInput;
|
|
80292
|
+
};
|
|
79943
80293
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
79944
80294
|
input: JiraCreateCustomBackgroundInput;
|
|
79945
80295
|
};
|
|
@@ -79951,6 +80301,9 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
79951
80301
|
cloudId: Scalars['ID']['input'];
|
|
79952
80302
|
input: JiraCreateGlobalCustomFieldInput;
|
|
79953
80303
|
};
|
|
80304
|
+
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80305
|
+
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80306
|
+
};
|
|
79954
80307
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
79955
80308
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
79956
80309
|
};
|
|
@@ -79978,6 +80331,9 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
79978
80331
|
cloudId: Scalars['ID']['input'];
|
|
79979
80332
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
79980
80333
|
};
|
|
80334
|
+
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
80335
|
+
input: JiraRenameBoardViewStatusColumnInput;
|
|
80336
|
+
};
|
|
79981
80337
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
79982
80338
|
input: JiraReorderBoardViewColumnInput;
|
|
79983
80339
|
};
|
|
@@ -80401,21 +80757,12 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
80401
80757
|
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
80402
80758
|
input: SpfAttachAskLinkInput;
|
|
80403
80759
|
};
|
|
80404
|
-
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
80405
|
-
input: SpfAttachRelatedContentInput;
|
|
80406
|
-
};
|
|
80407
80760
|
export declare type MutationSpf_CreateAskArgs = {
|
|
80408
80761
|
input: SpfCreateAskInput;
|
|
80409
80762
|
};
|
|
80410
80763
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
80411
80764
|
input: SpfCreateAskCommentInput;
|
|
80412
80765
|
};
|
|
80413
|
-
export declare type MutationSpf_CreateCommentArgs = {
|
|
80414
|
-
input: SpfCreateCommentInput;
|
|
80415
|
-
};
|
|
80416
|
-
export declare type MutationSpf_CreateDependencyArgs = {
|
|
80417
|
-
input: SpfCreateDependencyInput;
|
|
80418
|
-
};
|
|
80419
80766
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
80420
80767
|
input: SpfDeleteAskInput;
|
|
80421
80768
|
};
|
|
@@ -80425,9 +80772,6 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
80425
80772
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
80426
80773
|
input: SpfDeleteAskLinkInput;
|
|
80427
80774
|
};
|
|
80428
|
-
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
80429
|
-
input: SpfDeleteDependencyInput;
|
|
80430
|
-
};
|
|
80431
80775
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
80432
80776
|
input: SpfUpdateAskCommentDataInput;
|
|
80433
80777
|
};
|
|
@@ -80458,42 +80802,6 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
80458
80802
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
80459
80803
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
80460
80804
|
};
|
|
80461
|
-
export declare type MutationSpf_UpdateCommentArgs = {
|
|
80462
|
-
input: SpfUpdateCommentDataInput;
|
|
80463
|
-
};
|
|
80464
|
-
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
80465
|
-
input: SpfUpdateDependencyDescriptionInput;
|
|
80466
|
-
};
|
|
80467
|
-
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
80468
|
-
input: SpfUpdateDependencyImpactedWorkInput;
|
|
80469
|
-
};
|
|
80470
|
-
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
80471
|
-
input: SpfUpdateDependencyJustificationInput;
|
|
80472
|
-
};
|
|
80473
|
-
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
80474
|
-
input: SpfUpdateDependencyNameInput;
|
|
80475
|
-
};
|
|
80476
|
-
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
80477
|
-
input: SpfUpdateDependencyOwnerInput;
|
|
80478
|
-
};
|
|
80479
|
-
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
80480
|
-
input: SpfUpdateDependencyPriorityInput;
|
|
80481
|
-
};
|
|
80482
|
-
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
80483
|
-
input: SpfUpdateDependencyReceivingTeamInput;
|
|
80484
|
-
};
|
|
80485
|
-
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
80486
|
-
input: SpfUpdateDependencyStatusInput;
|
|
80487
|
-
};
|
|
80488
|
-
export declare type MutationSpf_UpdateDependencySubmitterArgs = {
|
|
80489
|
-
input: SpfUpdateDependencySubmitterInput;
|
|
80490
|
-
};
|
|
80491
|
-
export declare type MutationSpf_UpdateDependencySubmittingTeamArgs = {
|
|
80492
|
-
input: SpfUpdateDependencySubmittingTeamInput;
|
|
80493
|
-
};
|
|
80494
|
-
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
80495
|
-
input: SpfUpdateDependencyTargetDateInput;
|
|
80496
|
-
};
|
|
80497
80805
|
export declare type MutationSplitIssueArgs = {
|
|
80498
80806
|
input?: InputMaybe<SplitIssueInput>;
|
|
80499
80807
|
};
|
|
@@ -83580,6 +83888,9 @@ export declare type Query = {
|
|
|
83580
83888
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
83581
83889
|
apps?: Maybe<AppConnection>;
|
|
83582
83890
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
83891
|
+
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
83892
|
+
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
83893
|
+
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
83583
83894
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83584
83895
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
83585
83896
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -83747,6 +84058,7 @@ export declare type Query = {
|
|
|
83747
84058
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
83748
84059
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
83749
84060
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
84061
|
+
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
83750
84062
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
83751
84063
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
83752
84064
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
@@ -83863,6 +84175,7 @@ export declare type Query = {
|
|
|
83863
84175
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83864
84176
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
83865
84177
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84178
|
+
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
83866
84179
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
83867
84180
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
83868
84181
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -84050,9 +84363,6 @@ export declare type Query = {
|
|
|
84050
84363
|
spf_ask?: Maybe<SpfAskResult>;
|
|
84051
84364
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
84052
84365
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
84053
|
-
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
84054
|
-
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
84055
|
-
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
84056
84366
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
84057
84367
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
84058
84368
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -84310,6 +84620,18 @@ export declare type QueryAppsArgs = {
|
|
|
84310
84620
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
84311
84621
|
cloudId: Scalars['ID']['input'];
|
|
84312
84622
|
};
|
|
84623
|
+
export declare type QueryAssetsDm_AdaptersArgs = {
|
|
84624
|
+
cloudId: Scalars['ID']['input'];
|
|
84625
|
+
workspaceId: Scalars['ID']['input'];
|
|
84626
|
+
};
|
|
84627
|
+
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
84628
|
+
cloudId: Scalars['ID']['input'];
|
|
84629
|
+
workspaceId: Scalars['ID']['input'];
|
|
84630
|
+
};
|
|
84631
|
+
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
84632
|
+
cloudId: Scalars['ID']['input'];
|
|
84633
|
+
workspaceId: Scalars['ID']['input'];
|
|
84634
|
+
};
|
|
84313
84635
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
84314
84636
|
issueId: Scalars['ID']['input'];
|
|
84315
84637
|
};
|
|
@@ -85094,6 +85416,10 @@ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
|
85094
85416
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85095
85417
|
issueKey: Scalars['String']['input'];
|
|
85096
85418
|
};
|
|
85419
|
+
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
85420
|
+
cloudId: Scalars['ID']['input'];
|
|
85421
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
85422
|
+
};
|
|
85097
85423
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
85098
85424
|
id: Scalars['ID']['input'];
|
|
85099
85425
|
};
|
|
@@ -85470,6 +85796,9 @@ export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
|
85470
85796
|
export declare type QueryJira_IssuesByIdsArgs = {
|
|
85471
85797
|
ids: Array<Scalars['ID']['input']>;
|
|
85472
85798
|
};
|
|
85799
|
+
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
85800
|
+
cloudId: Scalars['ID']['input'];
|
|
85801
|
+
};
|
|
85473
85802
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
85474
85803
|
cloudId: Scalars['ID']['input'];
|
|
85475
85804
|
idOrKey: Scalars['String']['input'];
|
|
@@ -86146,18 +86475,6 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
86146
86475
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
86147
86476
|
ids: Array<Scalars['ID']['input']>;
|
|
86148
86477
|
};
|
|
86149
|
-
export declare type QuerySpf_DependenciesArgs = {
|
|
86150
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
86151
|
-
cloudId: Scalars['ID']['input'];
|
|
86152
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86153
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
86154
|
-
};
|
|
86155
|
-
export declare type QuerySpf_DependenciesByIdsArgs = {
|
|
86156
|
-
ids: Array<Scalars['ID']['input']>;
|
|
86157
|
-
};
|
|
86158
|
-
export declare type QuerySpf_DependencyArgs = {
|
|
86159
|
-
id: Scalars['ID']['input'];
|
|
86160
|
-
};
|
|
86161
86478
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
86162
86479
|
appId: Scalars['ID']['input'];
|
|
86163
86480
|
installationId: Scalars['ID']['input'];
|
|
@@ -92404,37 +92721,6 @@ export declare type SpfAttachAskLinkPayload = Payload & {
|
|
|
92404
92721
|
link?: Maybe<SpfAskLink>;
|
|
92405
92722
|
success: Scalars['Boolean']['output'];
|
|
92406
92723
|
};
|
|
92407
|
-
export declare type SpfAttachRelatedContentInput = {
|
|
92408
|
-
dependencyId: Scalars['ID']['input'];
|
|
92409
|
-
url: Scalars['URL']['input'];
|
|
92410
|
-
};
|
|
92411
|
-
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
92412
|
-
__typename?: 'SpfAttachRelatedContentPayload';
|
|
92413
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92414
|
-
relatedContent?: Maybe<SpfRelatedContent>;
|
|
92415
|
-
success: Scalars['Boolean']['output'];
|
|
92416
|
-
};
|
|
92417
|
-
export declare type SpfComment = {
|
|
92418
|
-
__typename?: 'SpfComment';
|
|
92419
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92420
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92421
|
-
data: Scalars['String']['output'];
|
|
92422
|
-
dependencyId: Scalars['String']['output'];
|
|
92423
|
-
id: Scalars['ID']['output'];
|
|
92424
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92425
|
-
};
|
|
92426
|
-
export declare type SpfCommentConnection = {
|
|
92427
|
-
__typename?: 'SpfCommentConnection';
|
|
92428
|
-
edges?: Maybe<Array<Maybe<SpfCommentEdge>>>;
|
|
92429
|
-
pageInfo: PageInfo;
|
|
92430
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92431
|
-
};
|
|
92432
|
-
export declare type SpfCommentEdge = {
|
|
92433
|
-
__typename?: 'SpfCommentEdge';
|
|
92434
|
-
cursor: Scalars['String']['output'];
|
|
92435
|
-
node?: Maybe<SpfCommentResult>;
|
|
92436
|
-
};
|
|
92437
|
-
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
92438
92724
|
export declare type SpfCreateAskCommentInput = {
|
|
92439
92725
|
askId: Scalars['ID']['input'];
|
|
92440
92726
|
data: Scalars['String']['input'];
|
|
@@ -92465,36 +92751,6 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
92465
92751
|
errors?: Maybe<Array<MutationError>>;
|
|
92466
92752
|
success: Scalars['Boolean']['output'];
|
|
92467
92753
|
};
|
|
92468
|
-
export declare type SpfCreateCommentInput = {
|
|
92469
|
-
data: Scalars['String']['input'];
|
|
92470
|
-
dependencyId: Scalars['ID']['input'];
|
|
92471
|
-
};
|
|
92472
|
-
export declare type SpfCreateCommentPayload = Payload & {
|
|
92473
|
-
__typename?: 'SpfCreateCommentPayload';
|
|
92474
|
-
comment?: Maybe<SpfComment>;
|
|
92475
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92476
|
-
success: Scalars['Boolean']['output'];
|
|
92477
|
-
};
|
|
92478
|
-
export declare type SpfCreateDependencyInput = {
|
|
92479
|
-
cloudId: Scalars['ID']['input'];
|
|
92480
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92481
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92482
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92483
|
-
name: Scalars['String']['input'];
|
|
92484
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92485
|
-
priority: SpfPriority;
|
|
92486
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92487
|
-
status: SpfDependencyStatus;
|
|
92488
|
-
submitterId: Scalars['String']['input'];
|
|
92489
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92490
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92491
|
-
};
|
|
92492
|
-
export declare type SpfCreateDependencyPayload = Payload & {
|
|
92493
|
-
__typename?: 'SpfCreateDependencyPayload';
|
|
92494
|
-
dependency?: Maybe<SpfDependency>;
|
|
92495
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92496
|
-
success: Scalars['Boolean']['output'];
|
|
92497
|
-
};
|
|
92498
92754
|
export declare type SpfDeleteAskCommentInput = {
|
|
92499
92755
|
id: Scalars['ID']['input'];
|
|
92500
92756
|
};
|
|
@@ -92522,115 +92778,7 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
92522
92778
|
id: Scalars['ID']['output'];
|
|
92523
92779
|
success: Scalars['Boolean']['output'];
|
|
92524
92780
|
};
|
|
92525
|
-
export declare type SpfDeleteDependencyInput = {
|
|
92526
|
-
id: Scalars['ID']['input'];
|
|
92527
|
-
};
|
|
92528
|
-
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
92529
|
-
__typename?: 'SpfDeleteDependencyPayload';
|
|
92530
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92531
|
-
success: Scalars['Boolean']['output'];
|
|
92532
|
-
};
|
|
92533
|
-
export declare type SpfDependency = Node & {
|
|
92534
|
-
__typename?: 'SpfDependency';
|
|
92535
|
-
comments?: Maybe<SpfCommentConnection>;
|
|
92536
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92537
|
-
createdBy?: Maybe<User>;
|
|
92538
|
-
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
92539
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
92540
|
-
id: Scalars['ID']['output'];
|
|
92541
|
-
impactedWork?: Maybe<SpfImpactedWork>;
|
|
92542
|
-
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
92543
|
-
justification?: Maybe<Scalars['String']['output']>;
|
|
92544
|
-
name: Scalars['String']['output'];
|
|
92545
|
-
owner?: Maybe<User>;
|
|
92546
|
-
ownerId?: Maybe<Scalars['String']['output']>;
|
|
92547
|
-
priority: SpfPriority;
|
|
92548
|
-
receivingTeam?: Maybe<TeamV2>;
|
|
92549
|
-
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92550
|
-
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
92551
|
-
status: SpfDependencyStatus;
|
|
92552
|
-
submitter?: Maybe<User>;
|
|
92553
|
-
submitterId: Scalars['String']['output'];
|
|
92554
|
-
submittingTeam?: Maybe<TeamV2>;
|
|
92555
|
-
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
92556
|
-
targetDate?: Maybe<SpfTargetDate>;
|
|
92557
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92558
|
-
updatedBy?: Maybe<User>;
|
|
92559
|
-
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92560
|
-
};
|
|
92561
|
-
export declare type SpfDependencyCommentsArgs = {
|
|
92562
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92563
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92564
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92565
|
-
};
|
|
92566
|
-
export declare type SpfDependencyRelatedContentArgs = {
|
|
92567
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
92568
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92569
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
92570
|
-
};
|
|
92571
|
-
export declare type SpfDependencyConnection = {
|
|
92572
|
-
__typename?: 'SpfDependencyConnection';
|
|
92573
|
-
edges?: Maybe<Array<Maybe<SpfDependencyEdge>>>;
|
|
92574
|
-
pageInfo: PageInfo;
|
|
92575
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92576
|
-
};
|
|
92577
|
-
export declare type SpfDependencyEdge = {
|
|
92578
|
-
__typename?: 'SpfDependencyEdge';
|
|
92579
|
-
cursor: Scalars['String']['output'];
|
|
92580
|
-
node?: Maybe<SpfDependencyResult>;
|
|
92581
|
-
};
|
|
92582
|
-
export declare type SpfDependencyResult = QueryError | SpfDependency;
|
|
92583
|
-
export declare enum SpfDependencyStatus {
|
|
92584
|
-
Accepted = "ACCEPTED",
|
|
92585
|
-
Canceled = "CANCELED",
|
|
92586
|
-
Denied = "DENIED",
|
|
92587
|
-
Draft = "DRAFT",
|
|
92588
|
-
InReview = "IN_REVIEW",
|
|
92589
|
-
Revising = "REVISING",
|
|
92590
|
-
Submitted = "SUBMITTED"
|
|
92591
|
-
}
|
|
92592
92781
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
92593
|
-
export declare enum SpfPriority {
|
|
92594
|
-
Critical = "CRITICAL",
|
|
92595
|
-
High = "HIGH",
|
|
92596
|
-
Highest = "HIGHEST",
|
|
92597
|
-
Low = "LOW",
|
|
92598
|
-
Medium = "MEDIUM"
|
|
92599
|
-
}
|
|
92600
|
-
export declare type SpfRelatedContent = {
|
|
92601
|
-
__typename?: 'SpfRelatedContent';
|
|
92602
|
-
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
92603
|
-
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
92604
|
-
dependencyId: Scalars['String']['output'];
|
|
92605
|
-
id: Scalars['ID']['output'];
|
|
92606
|
-
url: Scalars['URL']['output'];
|
|
92607
|
-
};
|
|
92608
|
-
export declare type SpfRelatedContentConnection = {
|
|
92609
|
-
__typename?: 'SpfRelatedContentConnection';
|
|
92610
|
-
edges?: Maybe<Array<Maybe<SpfRelatedContentEdge>>>;
|
|
92611
|
-
pageInfo: PageInfo;
|
|
92612
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92613
|
-
};
|
|
92614
|
-
export declare type SpfRelatedContentEdge = {
|
|
92615
|
-
__typename?: 'SpfRelatedContentEdge';
|
|
92616
|
-
cursor: Scalars['String']['output'];
|
|
92617
|
-
node?: Maybe<SpfRelatedContentResult>;
|
|
92618
|
-
};
|
|
92619
|
-
export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
|
|
92620
|
-
export declare type SpfTargetDate = {
|
|
92621
|
-
__typename?: 'SpfTargetDate';
|
|
92622
|
-
targetDate?: Maybe<Scalars['String']['output']>;
|
|
92623
|
-
targetDateType?: Maybe<SpfTargetDateType>;
|
|
92624
|
-
};
|
|
92625
|
-
export declare type SpfTargetDateInput = {
|
|
92626
|
-
targetDate: Scalars['String']['input'];
|
|
92627
|
-
targetDateType: SpfTargetDateType;
|
|
92628
|
-
};
|
|
92629
|
-
export declare enum SpfTargetDateType {
|
|
92630
|
-
Day = "DAY",
|
|
92631
|
-
Month = "MONTH",
|
|
92632
|
-
Quarter = "QUARTER"
|
|
92633
|
-
}
|
|
92634
92782
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
92635
92783
|
data: Scalars['String']['input'];
|
|
92636
92784
|
id: Scalars['ID']['input'];
|
|
@@ -92683,66 +92831,6 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
92683
92831
|
id: Scalars['ID']['input'];
|
|
92684
92832
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92685
92833
|
};
|
|
92686
|
-
export declare type SpfUpdateCommentDataInput = {
|
|
92687
|
-
data: Scalars['String']['input'];
|
|
92688
|
-
id: Scalars['ID']['input'];
|
|
92689
|
-
};
|
|
92690
|
-
export declare type SpfUpdateCommentPayload = Payload & {
|
|
92691
|
-
__typename?: 'SpfUpdateCommentPayload';
|
|
92692
|
-
comment?: Maybe<SpfComment>;
|
|
92693
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92694
|
-
success: Scalars['Boolean']['output'];
|
|
92695
|
-
};
|
|
92696
|
-
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
92697
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
92698
|
-
id: Scalars['ID']['input'];
|
|
92699
|
-
};
|
|
92700
|
-
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
92701
|
-
id: Scalars['ID']['input'];
|
|
92702
|
-
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
92703
|
-
};
|
|
92704
|
-
export declare type SpfUpdateDependencyJustificationInput = {
|
|
92705
|
-
id: Scalars['ID']['input'];
|
|
92706
|
-
justification?: InputMaybe<Scalars['String']['input']>;
|
|
92707
|
-
};
|
|
92708
|
-
export declare type SpfUpdateDependencyNameInput = {
|
|
92709
|
-
id: Scalars['ID']['input'];
|
|
92710
|
-
name: Scalars['String']['input'];
|
|
92711
|
-
};
|
|
92712
|
-
export declare type SpfUpdateDependencyOwnerInput = {
|
|
92713
|
-
id: Scalars['ID']['input'];
|
|
92714
|
-
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
92715
|
-
};
|
|
92716
|
-
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
92717
|
-
__typename?: 'SpfUpdateDependencyPayload';
|
|
92718
|
-
dependency?: Maybe<SpfDependency>;
|
|
92719
|
-
errors?: Maybe<Array<MutationError>>;
|
|
92720
|
-
success: Scalars['Boolean']['output'];
|
|
92721
|
-
};
|
|
92722
|
-
export declare type SpfUpdateDependencyPriorityInput = {
|
|
92723
|
-
id: Scalars['ID']['input'];
|
|
92724
|
-
priority: SpfPriority;
|
|
92725
|
-
};
|
|
92726
|
-
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
92727
|
-
id: Scalars['ID']['input'];
|
|
92728
|
-
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92729
|
-
};
|
|
92730
|
-
export declare type SpfUpdateDependencyStatusInput = {
|
|
92731
|
-
id: Scalars['ID']['input'];
|
|
92732
|
-
status: SpfDependencyStatus;
|
|
92733
|
-
};
|
|
92734
|
-
export declare type SpfUpdateDependencySubmitterInput = {
|
|
92735
|
-
id: Scalars['ID']['input'];
|
|
92736
|
-
submitterId: Scalars['String']['input'];
|
|
92737
|
-
};
|
|
92738
|
-
export declare type SpfUpdateDependencySubmittingTeamInput = {
|
|
92739
|
-
id: Scalars['ID']['input'];
|
|
92740
|
-
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92741
|
-
};
|
|
92742
|
-
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
92743
|
-
id: Scalars['ID']['input'];
|
|
92744
|
-
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
92745
|
-
};
|
|
92746
92834
|
export declare type SplitIssueInput = {
|
|
92747
92835
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
92748
92836
|
originalIssue: OriginalSplitIssue;
|